projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0bb80ec
)
ksmbd: remove unneeded mark_inode_dirty in set_info_sec()
author
Namjae Jeon
<linkinjeon@kernel.org>
Tue, 12 Sep 2023 14:28:25 +0000
(23:28 +0900)
committer
Steve French
<stfrench@microsoft.com>
Wed, 13 Sep 2023 15:21:05 +0000
(10:21 -0500)
mark_inode_dirty will be called in notify_change().
This patch remove unneeded mark_inode_dirty in set_info_sec().
Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/smb/server/smbacl.c
patch
|
blob
|
history
diff --git
a/fs/smb/server/smbacl.c
b/fs/smb/server/smbacl.c
index e5e438bf54996510da5800ea38ac50f60e36b36c..6c0305be895e56fb11464c5fe17245afc4354447 100644
(file)
--- a/
fs/smb/server/smbacl.c
+++ b/
fs/smb/server/smbacl.c
@@
-1420,7
+1420,6
@@
int set_info_sec(struct ksmbd_conn *conn, struct ksmbd_tree_connect *tcon,
out:
posix_acl_release(fattr.cf_acls);
posix_acl_release(fattr.cf_dacls);
- mark_inode_dirty(inode);
return rc;
}