aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/file.c
diff options
context:
space:
mode:
authorSteve French <sfrench@us.ibm.com>2009-02-24 09:44:19 -0500
committerSteve French <sfrench@us.ibm.com>2009-03-11 21:36:20 -0400
commit4717bed6806dab0270e5bfbc45e9f999e63ededd (patch)
treed0a59d62c3fdd24329e970036f052a5138d6579a /fs/cifs/file.c
parent7fc8f4e95bf9564045985bb206af8e28a5e4e28f (diff)
[CIFS] fix build error
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/file.c')
-rw-r--r--fs/cifs/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/file.c b/fs/cifs/file.c
index 6603cb4024fb..e4ecb1cb0b13 100644
--- a/fs/cifs/file.c
+++ b/fs/cifs/file.c
@@ -1584,7 +1584,7 @@ int cifs_fsync(struct file *file, struct dentry *dentry, int datasync)
1584 CIFS_I(inode)->write_behind_rc = 0; 1584 CIFS_I(inode)->write_behind_rc = 0;
1585 tcon = CIFS_SB(inode->i_sb)->tcon; 1585 tcon = CIFS_SB(inode->i_sb)->tcon;
1586 if (!rc && tcon && smbfile && 1586 if (!rc && tcon && smbfile &&
1587 !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_SSYNC)) 1587 !(CIFS_SB(inode->i_sb)->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC))
1588 rc = CIFSSMBFlush(xid, tcon, smbfile->netfid); 1588 rc = CIFSSMBFlush(xid, tcon, smbfile->netfid);
1589 } 1589 }
1590 1590