commit | 09a4707e7638247302c6d798061aed117141fb74 | [log] [tgz] |
---|---|---|
author | Pavel Shilovsky <pshilovsky@samba.org> | Tue Sep 18 16:20:29 2012 -0700 |
committer | Steve French <smfrench@gmail.com> | Mon Sep 24 21:46:27 2012 -0500 |
tree | d31b23d8b91941b30425d6a4d8235d9e91d7afef | |
parent | fc9c59662e0cd37577556d0de865268baeb9b293 [diff] [blame] |
CIFS: Add SMB2 support for cifs_iovec_read Signed-off-by: Pavel Shilovsky <pshilovsky@samba.org> Signed-off-by: Steve French <smfrench@gmail.com>
diff --git a/fs/cifs/file.c b/fs/cifs/file.c index ec7c2e6..29ac8ee4 100644 --- a/fs/cifs/file.c +++ b/fs/cifs/file.c
@@ -2732,6 +2732,10 @@ cifs_stats_bytes_read(tcon, total_read); *poffset += total_read; + /* mask nodata case */ + if (rc == -ENODATA) + rc = 0; + return total_read ? total_read : rc; }