CIFS: Fix wrong length in cifs_iovec_read
authorPavel Shilovsky <piastryyy@gmail.com>
Wed, 20 Jul 2011 14:24:09 +0000 (18:24 +0400)
committerSteve French <sfrench@us.ibm.com>
Thu, 21 Jul 2011 00:48:05 +0000 (00:48 +0000)
Signed-off-by: Pavel Shilovsky <piastryyy@gmail.com>
Reviewed-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
fs/cifs/file.c

index bb71471..a9b4a24 100644 (file)
@@ -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;