diff options
author | Shyam Prasad N <sprasad@microsoft.com> | 2022-05-31 12:31:05 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-06-14 16:59:38 +0200 |
commit | 4a31e05be47f5a47366615c0db36d70a9640d52c (patch) | |
tree | 1f7a9f414e9b3f044f420e5f7ed8b8bb5c1fcb2b | |
parent | 8abe88f9653a0396e01afb12e6eeaf45af49106d (diff) | |
download | linux-stable-4a31e05be47f5a47366615c0db36d70a9640d52c.tar.gz linux-stable-4a31e05be47f5a47366615c0db36d70a9640d52c.tar.bz2 linux-stable-4a31e05be47f5a47366615c0db36d70a9640d52c.zip |
cifs: return errors during session setup during reconnects
commit 8ea21823aa584b55ba4b861307093b78054b0c1b upstream.
During reconnects, we check the return value from
cifs_negotiate_protocol, and have handlers for both success
and failures. But if that passes, and cifs_setup_session
returns any errors other than -EACCES, we do not handle
that. This fix adds a handler for that, so that we don't
go ahead and try a tree_connect on a failed session.
Signed-off-by: Shyam Prasad N <sprasad@microsoft.com>
Reviewed-by: Enzo Matsumiya <ematsumiya@suse.de>
Cc: stable@vger.kernel.org
Signed-off-by: Steve French <stfrench@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | fs/cifs/smb2pdu.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/cifs/smb2pdu.c b/fs/cifs/smb2pdu.c index 43478ec6fd67..3485b9bf970f 100644 --- a/fs/cifs/smb2pdu.c +++ b/fs/cifs/smb2pdu.c @@ -265,6 +265,9 @@ smb2_reconnect(__le16 smb2_command, struct cifs_tcon *tcon) rc = -EHOSTDOWN; mutex_unlock(&tcon->ses->session_mutex); goto failed; + } else if (rc) { + mutex_unlock(&ses->session_mutex); + goto out; } } if (rc || !tcon->need_reconnect) { |