cifs: fix stray unlock in cifs_chan_skip_or_disable
authorShyam Prasad N <sprasad@microsoft.com>
Tue, 23 Jan 2024 05:07:57 +0000 (05:07 +0000)
committerSteve French <stfrench@microsoft.com>
Wed, 24 Jan 2024 02:23:29 +0000 (20:23 -0600)
A recent change moved the code that decides to skip
a channel or disable multichannel entirely, into a
helper function.

During this, a mutex_unlock of the session_mutex
should have been removed. Doing that here.

Fixes: f591062bdbf4 ("cifs: handle servers that still advertise multichannel after disabling")
Signed-off-by: Shyam Prasad N <sprasad@microsoft.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/smb/client/smb2pdu.c

index 4f2cc8373b675d03e89e8bc5852f7504ad8526c8..86f6f35b7f32e8498e2628350abf43daa0d97f96 100644 (file)
@@ -195,7 +195,6 @@ cifs_chan_skip_or_disable(struct cifs_ses *ses,
                pserver = server->primary_server;
                cifs_signal_cifsd_for_reconnect(pserver, false);
 skip_terminate:
-               mutex_unlock(&ses->session_mutex);
                return -EHOSTDOWN;
        }