diff options
author | John Johansen <john.johansen@canonical.com> | 2022-07-16 13:29:19 +0300 |
---|---|---|
committer | John Johansen <john.johansen@canonical.com> | 2022-10-04 00:49:03 +0300 |
commit | ae6d35ed0a481824a8730c39d5b319c8a76ea00e (patch) | |
tree | 920f39dc7574d2336cfdc0f00f948fd8122845fe /security/apparmor/include/perms.h | |
parent | b06a62ebf5a3f041b22def1608f1a8ab9bbfa951 (diff) | |
download | linux-ae6d35ed0a481824a8730c39d5b319c8a76ea00e.tar.xz |
apparmor: extend xindex size
Allow the xindex to have 2^24 entries.
Signed-off-by: John Johansen <john.johansen@canonical.com>
Diffstat (limited to 'security/apparmor/include/perms.h')
-rw-r--r-- | security/apparmor/include/perms.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/apparmor/include/perms.h b/security/apparmor/include/perms.h index 1014a7bbc027..8739cef73549 100644 --- a/security/apparmor/include/perms.h +++ b/security/apparmor/include/perms.h @@ -78,7 +78,7 @@ struct aa_perms { u32 quiet; /* set only when ~allow | deny */ u32 hide; /* set only when ~allow | deny */ - u16 xindex; + u32 xindex; }; #define ALL_PERMS_MASK 0xffffffff |