fs/ntfs3: Update i_ctime when xattr is added
authorKonstantin Komarov <almaz.alexandrovich@paragon-software.com>
Fri, 22 Oct 2021 15:35:43 +0000 (18:35 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 9 Jun 2022 08:22:28 +0000 (10:22 +0200)
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 <almaz.alexandrovich@paragon-software.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/ntfs3/xattr.c

index 480e737436f9ea21531179799503e0e2ad4bb388..48cfc42db4c75685c824a75aff6ae01534df0c7f 100644 (file)
@@ -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;
 }