Skip to content

Commit 99bdadb

Browse files
tobluxbrauner
authored andcommitted
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 <[email protected]> Reviewed-by: Jan Kara <[email protected]> Signed-off-by: Thorsten Blum <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Christian Brauner <[email protected]>
1 parent 900bbaa commit 99bdadb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/linux/posix_acl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ struct posix_acl_entry {
2828

2929
struct posix_acl {
3030
refcount_t a_refcount;
31-
struct rcu_head a_rcu;
3231
unsigned int a_count;
32+
struct rcu_head a_rcu;
3333
struct posix_acl_entry a_entries[];
3434
};
3535

0 commit comments

Comments
 (0)