aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/inode.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/cifs/inode.c')
-rw-r--r--fs/cifs/inode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c
index 0a46a9395ec4..b21038b99fc2 100644
--- a/fs/cifs/inode.c
+++ b/fs/cifs/inode.c
@@ -1166,7 +1166,7 @@ int cifs_setattr(struct dentry *direntry, struct iattr *attrs)
1166 nfid, npid, FALSE); 1166 nfid, npid, FALSE);
1167 atomic_dec(&open_file->wrtPending); 1167 atomic_dec(&open_file->wrtPending);
1168 cFYI(1,("SetFSize for attrs rc = %d", rc)); 1168 cFYI(1,("SetFSize for attrs rc = %d", rc));
1169 if((rc == -EINVAL) ||(rc == -EOPNOTSUPP)) { 1169 if((rc == -EINVAL) || (rc == -EOPNOTSUPP)) {
1170 int bytes_written; 1170 int bytes_written;
1171 rc = CIFSSMBWrite(xid, pTcon, 1171 rc = CIFSSMBWrite(xid, pTcon,
1172 nfid, 0, attrs->ia_size, 1172 nfid, 0, attrs->ia_size,
@@ -1188,7 +1188,7 @@ int cifs_setattr(struct dentry *direntry, struct iattr *attrs)
1188 cifs_sb->mnt_cifs_flags & 1188 cifs_sb->mnt_cifs_flags &
1189 CIFS_MOUNT_MAP_SPECIAL_CHR); 1189 CIFS_MOUNT_MAP_SPECIAL_CHR);
1190 cFYI(1, ("SetEOF by path (setattrs) rc = %d", rc)); 1190 cFYI(1, ("SetEOF by path (setattrs) rc = %d", rc));
1191 if(rc == -EINVAL) { 1191 if((rc == -EINVAL) || (rc == -EOPNOTSUPP)) {
1192 __u16 netfid; 1192 __u16 netfid;
1193 int oplock = FALSE; 1193 int oplock = FALSE;
1194 1194