ANDROID: GKI: fix up new enum ABI break for PERR_REMOTE
In commita4e99cd415("cgroup/cpuset: Don't allow creation of local partition over a remote one") a new enum prs_errcode was added, PERR_REMOTE. This triggers the ABI check logic to show it as a "break", but as this new enum is only used within the kernel, it is safe to be ignored. Fixes:a4e99cd415("cgroup/cpuset: Don't allow creation of local partition over a remote one") Change-Id: Ic775557acbd1d60b8ffdc7360a2e3dee16c97fcf Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
@@ -311996,6 +311996,10 @@ enumeration {
|
||||
name: "PERR_ACCESS"
|
||||
value: 9
|
||||
}
|
||||
enumerator {
|
||||
name: "PERR_REMOTE"
|
||||
value: 10
|
||||
}
|
||||
}
|
||||
}
|
||||
enumeration {
|
||||
|
||||
5
gki/aarch64/abi.stg.allowed_breaks
Normal file
5
gki/aarch64/abi.stg.allowed_breaks
Normal file
@@ -0,0 +1,5 @@
|
||||
# How to use this file: http://go/approve-abi-break
|
||||
# ABI freeze commit: 0690b3438b4acb24f7ecfd946cf9a9ac5954ef20
|
||||
|
||||
type 'enum prs_errcode' changed
|
||||
enumerator 'PERR_REMOTE' (10) was added
|
||||
@@ -36,6 +36,7 @@ enum prs_errcode {
|
||||
PERR_ACCESS,
|
||||
PERR_REMOTE,
|
||||
};
|
||||
ANDROID_KABI_ENUMERATOR_IGNORE(prs_errcode, PERR_REMOTE);
|
||||
|
||||
/* bits in struct cpuset flags field */
|
||||
typedef enum {
|
||||
|
||||
Reference in New Issue
Block a user