diff options
author | Bernd Schubert <bernd@bsbernd.com> | 2024-12-28 13:21:58 +0100 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2024-12-30 23:04:11 +0100 |
commit | ef2f0c2c08d0a70cbb2d3decf4cadaeab050cc8b (patch) | |
tree | 3519478c40242ba2f9ab71f56efd753678efa176 | |
parent | 2eb7767e2c2a4e6f9f21f7b10f79d4860ebe2831 (diff) | |
download | libfuse-ef2f0c2c08d0a70cbb2d3decf4cadaeab050cc8b.tar.gz |
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 <bernd@bsbernd.com>
-rw-r--r-- | include/fuse_common.h | 1 |
1 files changed, 1 insertions, 0 deletions
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 |