ANDROID: GKI: fix up new enum ABI break for PERR_REMOTE

In commit a4e99cd415 ("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:
Greg Kroah-Hartman
2025-05-22 13:37:20 +00:00
parent 54ab26576b
commit 2348274c38
3 changed files with 10 additions and 0 deletions

View File

@@ -311996,6 +311996,10 @@ enumeration {
name: "PERR_ACCESS"
value: 9
}
enumerator {
name: "PERR_REMOTE"
value: 10
}
}
}
enumeration {

View 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

View File

@@ -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 {