acl: Realign struct posix_acl to save 8 bytes
Reduce posix_acl's struct size by 8 bytes by realigning its members. Cc: Christian Brauner <brauner@kernel.org> Reviewed-by: Jan Kara <jack@suse.cz> Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev> Link: https://lore.kernel.org/r/20241015202158.2376-1-thorsten.blum@linux.dev Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
parent
900bbaae67
commit
99bdadbde9
1 changed files with 1 additions and 1 deletions
|
@ -28,8 +28,8 @@ struct posix_acl_entry {
|
||||||
|
|
||||||
struct posix_acl {
|
struct posix_acl {
|
||||||
refcount_t a_refcount;
|
refcount_t a_refcount;
|
||||||
struct rcu_head a_rcu;
|
|
||||||
unsigned int a_count;
|
unsigned int a_count;
|
||||||
|
struct rcu_head a_rcu;
|
||||||
struct posix_acl_entry a_entries[];
|
struct posix_acl_entry a_entries[];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue