]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[CIFS] Fix minor problem with previous patch
authorSteve French <sfrench@us.ibm.com>
Thu, 9 Nov 2006 21:25:37 +0000 (21:25 +0000)
committerSteve French <sfrench@us.ibm.com>
Thu, 9 Nov 2006 21:25:37 +0000 (21:25 +0000)
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>
fs/cifs/file.c

index 4b07a8cc4633e918757d66acf92ec885591b07f0..2436ed8fc8400e2d86b4e5bbb569b122ac013e34 100644 (file)
@@ -498,7 +498,8 @@ int cifs_close(struct inode *inode, struct file *file)
                                        msleep(timeout);
                                        timeout *= 4;
                                }
-                               cERROR(1,("close with pending writes")); 
+                               if(atomic_read(&pSMBFile->wrtPending))
+                                       cERROR(1,("close with pending writes"));
                                rc = CIFSSMBClose(xid, pTcon,
                                                  pSMBFile->netfid);
                        }