diff options
author | Steve French <sfrench@us.ibm.com> | 2006-11-09 16:25:37 -0500 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2006-11-09 16:25:37 -0500 |
commit | f7b2e8c76b3423a1d2501b9399261e9c9a33e100 (patch) | |
tree | bdbcec5d47991cb668fcd39065ae62f997205f61 /fs/cifs | |
parent | 6e659c63998881e8f4a842edbe86ac8c5cdaee41 (diff) |
[CIFS] Fix minor problem with previous patch
The patch
NFS stress test generates flood of "close with pending write
was missing an if
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/file.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/cifs/file.c b/fs/cifs/file.c index 4b07a8cc4633..2436ed8fc840 100644 --- a/fs/cifs/file.c +++ b/fs/cifs/file.c | |||
@@ -498,7 +498,8 @@ int cifs_close(struct inode *inode, struct file *file) | |||
498 | msleep(timeout); | 498 | msleep(timeout); |
499 | timeout *= 4; | 499 | timeout *= 4; |
500 | } | 500 | } |
501 | cERROR(1,("close with pending writes")); | 501 | if(atomic_read(&pSMBFile->wrtPending)) |
502 | cERROR(1,("close with pending writes")); | ||
502 | rc = CIFSSMBClose(xid, pTcon, | 503 | rc = CIFSSMBClose(xid, pTcon, |
503 | pSMBFile->netfid); | 504 | pSMBFile->netfid); |
504 | } | 505 | } |