VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   57 Tags
author: Chengguang Xu <cgxu519@gmx.com> 2018-11-24 17:40:44 +0800 committer: Dave Kleikamp <dave.kleikamp@oracle.com> 2019-01-10 10:05:41 -0600 commit: 7ca5e8f089c2cbe79ee220b5acb4bc6cf4422818 parent: 3a9a12fbed5fea3f062f98d012d4284fc5fdc5bb
Commit Summary:
jfs: compare old and new mode before setting update_mode flag
Diffstat:
1 file changed, 2 insertions, 1 deletion
diff --git a/fs/jfs/acl.c b/fs/jfs/acl.c
index 8c06a6ea862d..ebb299003a5b 100644
--- a/fs/jfs/acl.c
+++ b/fs/jfs/acl.c
@@ -117,7 +117,8 @@ int jfs_set_acl(struct inode *inode, struct posix_acl *acl, int type)
 		rc = posix_acl_update_mode(inode, &mode, &acl);
 		if (rc)
 			goto end_tx;
-		update_mode = 1;
+		if (mode != inode->i_mode)
+			update_mode = 1;
 	}
 	rc = __jfs_set_acl(tid, inode, type, acl);
 	if (!rc) {