From ef2f0c2c08d0a70cbb2d3decf4cadaeab050cc8b Mon Sep 17 00:00:00 2001 From: Bernd Schubert Date: Sat, 28 Dec 2024 13:21:58 +0100 Subject: [PATCH] Add padding3 in struct fuse_file_info pahole was showing a 4 byte hole - add another padding to fill that hole. Signed-off-by: Bernd Schubert --- include/fuse_common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/fuse_common.h b/include/fuse_common.h index bb66206..0b0ba9b 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -98,6 +98,7 @@ struct fuse_file_info { /** Padding. Reserved for future use*/ unsigned int padding : 23; unsigned int padding2 : 32; + unsigned int padding3 : 32; /** File handle id. May be filled in by filesystem in create, * open, and opendir(). Available in most other file operations on the -- 2.30.2