summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Shilovsky <pshilov@microsoft.com>2019-01-03 16:45:13 -0800
committerSteve French <stfrench@microsoft.com>2019-01-10 14:32:36 -0600
commit33fa5c8b8a7dbe6353a56eaa654b790348890d42 (patch)
tree708cde8bdf69f050239ff0f23b2deac9034a377d
parentb983f7e92348d7e7d091db1b78b7915e9dd3d63a (diff)
downloadlinux-0-day-33fa5c8b8a7dbe6353a56eaa654b790348890d42.tar.gz
linux-0-day-33fa5c8b8a7dbe6353a56eaa654b790348890d42.tar.xz
CIFS: Do not set credits to 1 if the server didn't grant anything
Currently we reset the number of total credits granted by the server to 1 if the server didn't grant us anything int the response. This violates the SMB3 protocol - we need to trust the server and use the credit values from the response. Fix this by removing the corresponding code. Signed-off-by: Pavel Shilovsky <pshilov@microsoft.com> Signed-off-by: Steve French <stfrench@microsoft.com> CC: Stable <stable@vger.kernel.org>
-rw-r--r--fs/cifs/transport.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/cifs/transport.c b/fs/cifs/transport.c
index 5be7302853b6c..8e75d689be46d 100644
--- a/fs/cifs/transport.c
+++ b/fs/cifs/transport.c
@@ -894,8 +894,6 @@ compound_send_recv(const unsigned int xid, struct cifs_ses *ses,
for (i = 0; i < num_rqst; i++)
if (midQ[i]->resp_buf)
credits += ses->server->ops->get_credits(midQ[i]);
- if (!credits)
- credits = 1;
for (i = 0; i < num_rqst; i++) {
if (rc < 0)