From: Bernd Schubert Date: Sat, 28 Dec 2024 12:21:58 +0000 (+0100) Subject: Add padding3 in struct fuse_file_info X-Git-Tag: fuse-3.17.1-rc0~37^2~8 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ef2f0c2c08d0a70cbb2d3decf4cadaeab050cc8b;p=qemu-gpiodev%2Flibfuse.git 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 --- 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