diff options
author | Miklos Szeredi <mszeredi@redhat.com> | 2021-10-22 18:03:03 +0300 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2021-10-28 10:45:33 +0300 |
commit | c6c745b81033a4c1f0e5f3b16398a10f2d000c29 (patch) | |
tree | 5f4c90689a9e891a43b79a97d862221dece1ce9c /fs/fuse/dir.c | |
parent | ec85537519b330a0deb8fe742fd1b0efc40a1710 (diff) | |
download | linux-c6c745b81033a4c1f0e5f3b16398a10f2d000c29.tar.xz |
fuse: only update necessary attributes
fuse_update_attributes() refreshes metadata for internal use.
Each use needs a particular set of attributes to be refreshed, but
currently that cannot be expressed and all but atime are refreshed.
Add a mask argument, which lets fuse_update_get_attr() to decide based on
the cache_mask and the inval_mask whether a GETATTR call is needed or not.
Reported-by: Yongji Xie <xieyongji@bytedance.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs/fuse/dir.c')
-rw-r--r-- | fs/fuse/dir.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/fuse/dir.c b/fs/fuse/dir.c index 03767bbafb8a..0654bfedcbb0 100644 --- a/fs/fuse/dir.c +++ b/fs/fuse/dir.c @@ -1045,11 +1045,9 @@ static int fuse_update_get_attr(struct inode *inode, struct file *file, return err; } -int fuse_update_attributes(struct inode *inode, struct file *file) +int fuse_update_attributes(struct inode *inode, struct file *file, u32 mask) { - /* Do *not* need to get atime for internal purposes */ - return fuse_update_get_attr(inode, file, NULL, - STATX_BASIC_STATS & ~STATX_ATIME, 0); + return fuse_update_get_attr(inode, file, NULL, mask, 0); } int fuse_reverse_inval_entry(struct fuse_conn *fc, u64 parent_nodeid, |