Archived
14
0
Fork 0

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

Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
This commit is contained in:
Steve French 2008-09-24 19:22:52 +00:00
parent 391e575556
commit d388908ec4

View file

@ -752,6 +752,9 @@ cifs_set_file_info(struct inode *inode, struct iattr *attrs, int xid,
set_via_filehandle: set_via_filehandle:
rc = CIFSSMBSetFileInfo(xid, pTcon, &info_buf, netfid, netpid); rc = CIFSSMBSetFileInfo(xid, pTcon, &info_buf, netfid, netpid);
if (!rc)
cifsInode->cifsAttrs = dosattr;
if (open_file == NULL) if (open_file == NULL)
CIFSSMBClose(xid, pTcon, netfid); CIFSSMBClose(xid, pTcon, netfid);
else else
@ -902,6 +905,7 @@ psx_del_no_retry:
if (rc == 0) if (rc == 0)
drop_nlink(inode); drop_nlink(inode);
} }
cifsInode->cifsAttrs = dosattr;
} }
out_reval: out_reval:
if (inode) { if (inode) {