Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag '5.17-rc8-smb3-fix' of git://git.samba.org/sfrench/cifs-2.6

Pull cifs fix from Steve French:
"Small fix for regression in multiuser mounts.

The additional improvements suggested by Ronnie to make the server and
session status handling code easier to read can wait for the 5.18
merge window."

* tag '5.17-rc8-smb3-fix' of git://git.samba.org/sfrench/cifs-2.6:
smb3: fix incorrect session setup check for multiuser mounts

+2 -1
+2 -1
fs/cifs/connect.c
··· 3924 3924 3925 3925 /* only send once per connect */ 3926 3926 spin_lock(&cifs_tcp_ses_lock); 3927 - if (server->tcpStatus != CifsNeedSessSetup) { 3927 + if ((server->tcpStatus != CifsNeedSessSetup) && 3928 + (ses->status == CifsGood)) { 3928 3929 spin_unlock(&cifs_tcp_ses_lock); 3929 3930 return 0; 3930 3931 }