[PATCH 3/4] afs: fill out change attribute in statx replies
Jeff Layton
jlayton at kernel.org
Tue Aug 16 06:27:58 PDT 2022
Always copy the change attribute in a statx reply, and set the
STATX_CHGATTR bit unconditionally.
Signed-off-by: Jeff Layton <jlayton at kernel.org>
---
fs/afs/inode.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/fs/afs/inode.c b/fs/afs/inode.c
index 6d3a3dbe4928..bc65cc2dd2d5 100644
--- a/fs/afs/inode.c
+++ b/fs/afs/inode.c
@@ -762,6 +762,8 @@ int afs_getattr(struct user_namespace *mnt_userns, const struct path *path,
do {
read_seqbegin_or_lock(&vnode->cb_lock, &seq);
generic_fillattr(&init_user_ns, inode, stat);
+ stat->change_attr = inode_peek_iversion_raw(inode);
+ stat->result_mask |= STATX_CHANGE_ATTR;
if (test_bit(AFS_VNODE_SILLY_DELETED, &vnode->flags) &&
stat->nlink > 0)
stat->nlink -= 1;
--
2.37.2
More information about the linux-afs
mailing list