Skip to content
Snippets Groups Projects
Commit d388908e authored by Steve French's avatar Steve French
Browse files

[CIFS] update DOS attributes in cifsInode if we successfully changed them

parent 391e5755
No related branches found
No related tags found
No related merge requests found
......@@ -752,6 +752,9 @@ cifs_set_file_info(struct inode *inode, struct iattr *attrs, int xid,
set_via_filehandle:
rc = CIFSSMBSetFileInfo(xid, pTcon, &info_buf, netfid, netpid);
if (!rc)
cifsInode->cifsAttrs = dosattr;
if (open_file == NULL)
CIFSSMBClose(xid, pTcon, netfid);
else
......@@ -902,6 +905,7 @@ int cifs_unlink(struct inode *dir, struct dentry *dentry)
if (rc == 0)
drop_nlink(inode);
}
cifsInode->cifsAttrs = dosattr;
}
out_reval:
if (inode) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment