CIFS: Do not log credits when unmounting a share
authorPavel Shilovsky <pshilov@microsoft.com>
Fri, 25 Jan 2019 18:56:41 +0000 (10:56 -0800)
committerSteve French <stfrench@microsoft.com>
Tue, 5 Mar 2019 02:06:39 +0000 (20:06 -0600)
Currently we only skip credits logging on reconnects. When
unmounting a share the number of credits on the client doesn't
matter, so skip logging in such cases too.

Signed-off-by: Pavel Shilovsky <pshilov@microsoft.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/cifs/smb2ops.c

index ea56b1c..90b1a8e 100644 (file)
@@ -102,7 +102,8 @@ smb2_add_credits(struct TCP_Server_Info *server, const unsigned int add,
        spin_unlock(&server->req_lock);
        wake_up(&server->request_q);
 
-       if (server->tcpStatus == CifsNeedReconnect)
+       if (server->tcpStatus == CifsNeedReconnect
+           || server->tcpStatus == CifsExiting)
                return;
 
        switch (rc) {