aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/file.c
diff options
context:
space:
mode:
authorSteve French <sfrench@us.ibm.com>2008-10-30 20:15:22 +0000
committerSteve French <sfrench@us.ibm.com>2008-10-30 20:15:22 +0000
commit61de800d33af585cb7e6f27b5cdd51029c6855cb (patch)
tree3b16b4cca031c646a30a55218adfed6e0c59332e /fs/cifs/file.c
parent[CIFS] Reduce number of socket retries in large write path (diff)
downloadlinux-dev-61de800d33af585cb7e6f27b5cdd51029c6855cb.tar.xz
linux-dev-61de800d33af585cb7e6f27b5cdd51029c6855cb.zip
[CIFS] fix error in smb_send2
smb_send2 exit logic was strange, and with the previous change could cause us to fail large smb writes when all of the smb was not sent as one chunk. Acked-by: Jeff Layton <jlayton@redhat.com> 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 62d8bd8f14c0..ead1a3bb0256 100644
--- a/fs/cifs/file.c
+++ b/fs/cifs/file.c
@@ -1824,7 +1824,7 @@ static int cifs_readpages(struct file *file, struct address_space *mapping,
pTcon = cifs_sb->tcon;
pagevec_init(&lru_pvec, 0);
- cFYI(DBG2, ("rpages: num pages %d", num_pages));
+ cFYI(DBG2, ("rpages: num pages %d", num_pages));
for (i = 0; i < num_pages; ) {
unsigned contig_pages;
struct page *tmp_page;