Message ID | 20220816132759.43248-4-jlayton@kernel.org |
---|---|
State | New |
Headers | show |
Series | vfs: expose the inode change attribute via statx | expand |
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;
Always copy the change attribute in a statx reply, and set the STATX_CHGATTR bit unconditionally. Signed-off-by: Jeff Layton <jlayton@kernel.org> --- fs/afs/inode.c | 2 ++ 1 file changed, 2 insertions(+)