aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve French <stfrench@microsoft.com>2023-11-07 21:38:13 -0600
committerSteve French <stfrench@microsoft.com>2023-11-09 10:25:58 -0600
commit5923d6686a100c2b4cabd4c2ca9d5a12579c7614 (patch)
tree9dae276afcb0cd95971771763800e571ec01dcb1
parentf72d96507640835726d4f5ba26c1c11acbe1bc97 (diff)
downloadchrome-platform-5923d6686a100c2b4cabd4c2ca9d5a12579c7614.tar.gz
smb3: fix caching of ctime on setxattr
Fixes xfstest generic/728 which had been failing due to incorrect ctime after setxattr and removexattr Update ctime on successful set of xattr Cc: stable@vger.kernel.org Signed-off-by: Steve French <stfrench@microsoft.com>
-rw-r--r--fs/smb/client/xattr.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/smb/client/xattr.c b/fs/smb/client/xattr.c
index ac199160bce6d8..6780aa3e98a194 100644
--- a/fs/smb/client/xattr.c
+++ b/fs/smb/client/xattr.c
@@ -150,10 +150,13 @@ static int cifs_xattr_set(const struct xattr_handler *handler,
if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
goto out;
- if (pTcon->ses->server->ops->set_EA)
+ if (pTcon->ses->server->ops->set_EA) {
rc = pTcon->ses->server->ops->set_EA(xid, pTcon,
full_path, name, value, (__u16)size,
cifs_sb->local_nls, cifs_sb);
+ if (rc == 0)
+ inode_set_ctime_current(inode);
+ }
break;
case XATTR_CIFS_ACL: