aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs
diff options
context:
space:
mode:
authorPavel Shilovsky <piastryyy@gmail.com>2011-07-20 18:24:09 +0400
committerSteve French <sfrench@us.ibm.com>2011-07-21 00:48:05 +0000
commit2cebaa58b7de775386732bbd6cd11c3f5b73faf0 (patch)
treeaaa392677870ded6c3790e1d327fa12f584e767f /fs/cifs
parentcf6ace16a3cd8b728fb0afa68368fd40bbeae19f (diff)
downloadkernel_samsung_smdk4412-2cebaa58b7de775386732bbd6cd11c3f5b73faf0.zip
kernel_samsung_smdk4412-2cebaa58b7de775386732bbd6cd11c3f5b73faf0.tar.gz
kernel_samsung_smdk4412-2cebaa58b7de775386732bbd6cd11c3f5b73faf0.tar.bz2
CIFS: Fix wrong length in cifs_iovec_read
Signed-off-by: Pavel Shilovsky <piastryyy@gmail.com> Reviewed-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs')
-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 bb71471..a9b4a24 100644
--- a/fs/cifs/file.c
+++ b/fs/cifs/file.c
@@ -1737,7 +1737,7 @@ cifs_iovec_read(struct file *file, const struct iovec *iov,
io_parms.pid = pid;
io_parms.tcon = pTcon;
io_parms.offset = *poffset;
- io_parms.length = len;
+ io_parms.length = cur_len;
rc = CIFSSMBRead(xid, &io_parms, &bytes_read,
&read_data, &buf_type);
pSMBr = (struct smb_com_read_rsp *)read_data;