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:
Thorsten Blum 2024-10-15 22:21:54 +02:00 committed by Christian Brauner
parent 900bbaae67
commit 99bdadbde9
No known key found for this signature in database
GPG Key ID: 91C61BC06578DCA2

View File

@ -28,8 +28,8 @@ struct posix_acl_entry {
struct posix_acl {
refcount_t a_refcount;
struct rcu_head a_rcu;
unsigned int a_count;
struct rcu_head a_rcu;
struct posix_acl_entry a_entries[];
};