From: Konstantin Komarov Date: Fri, 22 Oct 2021 15:35:43 +0000 (+0300) Subject: fs/ntfs3: Update i_ctime when xattr is added X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=79f44f05e7562707eab6a8d7d2b685f5ad5d5df4;p=linux.git fs/ntfs3: Update i_ctime when xattr is added commit 2d44667c306e7806848a3478820f87343feb5421 upstream. Ctime wasn't updated after setfacl command. This commit fixes xfstest generic/307 Fixes: be71b5cba2e6 ("fs/ntfs3: Add attrib operations") Signed-off-by: Konstantin Komarov Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/ntfs3/xattr.c b/fs/ntfs3/xattr.c index 480e737436f9e..48cfc42db4c75 100644 --- a/fs/ntfs3/xattr.c +++ b/fs/ntfs3/xattr.c @@ -902,6 +902,9 @@ set_new_fa: err = ntfs_set_ea(inode, name, name_len, value, size, flags); out: + inode->i_ctime = current_time(inode); + mark_inode_dirty(inode); + return err; }