Home
last modified time | relevance | path

Searched refs:K_ABI_MASK (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/security/apparmor/include/
H A Dpolicy_compat.h17 #define K_ABI_MASK 0x3ff macro
19 #define VERSION_LT(X, Y) (((X) & K_ABI_MASK) < ((Y) & K_ABI_MASK))
20 #define VERSION_LE(X, Y) (((X) & K_ABI_MASK) <= ((Y) & K_ABI_MASK))
21 #define VERSION_GT(X, Y) (((X) & K_ABI_MASK) > ((Y) & K_ABI_MASK))
/openbmc/linux/security/apparmor/
H A Dpolicy_unpack.c1454 udata->abi = e.version & K_ABI_MASK; in aa_unpack()