diff options
-rw-r--r-- | fs/cifs/inode.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c index dd4167762a8e..279f3c5e0ce3 100644 --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c | |||
@@ -1538,6 +1538,11 @@ int cifs_setattr(struct dentry *direntry, struct iattr *attrs) | |||
1538 | } | 1538 | } |
1539 | 1539 | ||
1540 | time_buf.Attributes = 0; | 1540 | time_buf.Attributes = 0; |
1541 | |||
1542 | /* skip mode change if it's just for clearing setuid/setgid */ | ||
1543 | if (attrs->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID)) | ||
1544 | attrs->ia_valid &= ~ATTR_MODE; | ||
1545 | |||
1541 | if (attrs->ia_valid & ATTR_MODE) { | 1546 | if (attrs->ia_valid & ATTR_MODE) { |
1542 | cFYI(1, ("Mode changed to 0x%x", attrs->ia_mode)); | 1547 | cFYI(1, ("Mode changed to 0x%x", attrs->ia_mode)); |
1543 | mode = attrs->ia_mode; | 1548 | mode = attrs->ia_mode; |