diff options
Diffstat (limited to 'fs/cifs/cifsfs.c')
-rw-r--r-- | fs/cifs/cifsfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index ae48ef042977..3d5365b9f5ba 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c | |||
@@ -191,13 +191,13 @@ cifs_statfs(struct super_block *sb, struct kstatfs *buf) | |||
191 | #ifdef CONFIG_CIFS_EXPERIMENTAL | 191 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
192 | /* BB we could add a second check for a QFS Unix capability bit */ | 192 | /* BB we could add a second check for a QFS Unix capability bit */ |
193 | if (pTcon->ses->capabilities & CAP_UNIX) | 193 | if (pTcon->ses->capabilities & CAP_UNIX) |
194 | rc = CIFSSMBQFSPosixInfo(xid, pTcon, buf, cifs_sb->local_nls); | 194 | rc = CIFSSMBQFSPosixInfo(xid, pTcon, buf); |
195 | 195 | ||
196 | /* Only need to call the old QFSInfo if failed | 196 | /* Only need to call the old QFSInfo if failed |
197 | on newer one */ | 197 | on newer one */ |
198 | if(rc) | 198 | if(rc) |
199 | #endif /* CIFS_EXPERIMENTAL */ | 199 | #endif /* CIFS_EXPERIMENTAL */ |
200 | rc = CIFSSMBQFSInfo(xid, pTcon, buf, cifs_sb->local_nls); | 200 | rc = CIFSSMBQFSInfo(xid, pTcon, buf); |
201 | 201 | ||
202 | /* | 202 | /* |
203 | int f_type; | 203 | int f_type; |