aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorPavel Shilovsky <pshilov@microsoft.com>2019-01-26 12:21:32 -0800
committerSteve French <stfrench@microsoft.com>2019-01-29 17:24:53 -0600
commit8e6e72aeceaaed5aeeb1cb43d3085de7ceb14f79 (patch)
tree115cfa1951b125328cb5836a56c5525a70598e0e /fs
parentCIFS: Fix trace command logging for SMB2 reads and writes (diff)
downloadlinux-dev-8e6e72aeceaaed5aeeb1cb43d3085de7ceb14f79.tar.xz
linux-dev-8e6e72aeceaaed5aeeb1cb43d3085de7ceb14f79.zip
CIFS: Do not count -ENODATA as failure for query directory
Signed-off-by: Pavel Shilovsky <pshilov@microsoft.com> Signed-off-by: Steve French <stfrench@microsoft.com> CC: Stable <stable@vger.kernel.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/cifs/smb2pdu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/smb2pdu.c b/fs/cifs/smb2pdu.c
index 4b5ab9c80cc3..d858dc04fdc3 100644
--- a/fs/cifs/smb2pdu.c
+++ b/fs/cifs/smb2pdu.c
@@ -3845,8 +3845,8 @@ SMB2_query_directory(const unsigned int xid, struct cifs_tcon *tcon,
rsp->sync_hdr.Status == STATUS_NO_MORE_FILES) {
srch_inf->endOfSearch = true;
rc = 0;
- }
- cifs_stats_fail_inc(tcon, SMB2_QUERY_DIRECTORY_HE);
+ } else
+ cifs_stats_fail_inc(tcon, SMB2_QUERY_DIRECTORY_HE);
goto qdir_exit;
}