From: Shyam Prasad N Date: Fri, 10 Mar 2023 15:32:01 +0000 (+0000) Subject: cifs: generate signkey for the channel that's reconnecting X-Git-Tag: baikal/mips/sdk6.1~61 X-Git-Url: https://git.baikalelectronics.ru/sdk/?a=commitdiff_plain;h=6ad7b410005ea6aa1793281a4cb73dbccc4f1fa7;p=kernel.git cifs: generate signkey for the channel that's reconnecting commit 405e9d28776f4f3e32969d6eb9746c4596907bc1 upstream. Before my changes to how multichannel reconnects work, the primary channel was always used to do a non-binding session setup. With my changes, that is not the case anymore. Missed this place where channel at index 0 was forcibly updated with the signing key. Signed-off-by: Shyam Prasad N Reviewed-by: Paulo Alcantara (SUSE) Cc: stable@vger.kernel.org Signed-off-by: Steve French Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/cifs/smb2transport.c b/fs/cifs/smb2transport.c index 381babc1212c9..d827b7547ffad 100644 --- a/fs/cifs/smb2transport.c +++ b/fs/cifs/smb2transport.c @@ -425,7 +425,7 @@ generate_smb3signingkey(struct cifs_ses *ses, /* safe to access primary channel, since it will never go away */ spin_lock(&ses->chan_lock); - memcpy(ses->chans[0].signkey, ses->smb3signingkey, + memcpy(ses->chans[chan_index].signkey, ses->smb3signingkey, SMB3_SIGN_KEY_SIZE); spin_unlock(&ses->chan_lock);