diff options
author | Max Reitz | 2020-09-09 20:40:23 +0200 |
---|---|---|
committer | Dr. David Alan Gilbert | 2020-10-26 19:35:32 +0100 |
commit | e2577435d3433b66b6f8adcd6482b5da5198689b (patch) | |
tree | 43d44a9003d1f8fe1cbd6f9e70ff61f509c1e2d5 /tools/virtiofsd/fuse_lowlevel.h | |
parent | virtiofsd: Announce FUSE_ATTR_FLAGS (diff) | |
download | qemu-e2577435d3433b66b6f8adcd6482b5da5198689b.tar.gz qemu-e2577435d3433b66b6f8adcd6482b5da5198689b.tar.xz qemu-e2577435d3433b66b6f8adcd6482b5da5198689b.zip |
virtiofsd: Add attr_flags to fuse_entry_param
fuse_entry_param is converted to fuse_attr on the line (by
fill_entry()), so it should have a member that mirrors fuse_attr.flags.
fill_entry() should then copy this fuse_entry_param.attr_flags to
fuse_attr.flags.
Signed-off-by: Max Reitz <mreitz@redhat.com>
Message-Id: <20200909184028.262297-4-mreitz@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'tools/virtiofsd/fuse_lowlevel.h')
-rw-r--r-- | tools/virtiofsd/fuse_lowlevel.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/virtiofsd/fuse_lowlevel.h b/tools/virtiofsd/fuse_lowlevel.h index 562fd5241e..9c06240f9e 100644 --- a/tools/virtiofsd/fuse_lowlevel.h +++ b/tools/virtiofsd/fuse_lowlevel.h @@ -102,6 +102,11 @@ struct fuse_entry_param { * large value. */ double entry_timeout; + + /** + * Flags for fuse_attr.flags that do not fit into attr. + */ + uint32_t attr_flags; }; /** |