diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2021-11-25 10:48:14 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2021-11-25 10:48:14 -0800 |
commit | 8ef4678f2f8ea3add47e6aeb84d902bd7f71fdf5 (patch) | |
tree | 3947826afb62c305f48d55d3325286adb48894aa /fs/cifs/sess.c | |
parent | b501b85957deb17f1fe0a861fee820255519d526 (diff) | |
parent | 0b03fe6d3ae21a7769d867ccdce33737eb348454 (diff) | |
download | lwn-8ef4678f2f8ea3add47e6aeb84d902bd7f71fdf5.tar.gz lwn-8ef4678f2f8ea3add47e6aeb84d902bd7f71fdf5.zip |
Merge tag '5.16-rc2-smb3-fixes' of git://git.samba.org/sfrench/cifs-2.6
Pull cifs fixes from Steve French:
"Four small cifs/smb3 fixes:
- two multichannel fixes
- fix problem noted by kernel test robot
- update internal version number"
* tag '5.16-rc2-smb3-fixes' of git://git.samba.org/sfrench/cifs-2.6:
cifs: update internal version number
smb2: clarify rc initialization in smb2_reconnect
cifs: populate server_hostname for extra channels
cifs: nosharesock should be set on new server
Diffstat (limited to 'fs/cifs/sess.c')
-rw-r--r-- | fs/cifs/sess.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/cifs/sess.c b/fs/cifs/sess.c index 8ad2993785af..af63548eaf26 100644 --- a/fs/cifs/sess.c +++ b/fs/cifs/sess.c @@ -222,6 +222,7 @@ cifs_ses_add_channel(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses, /* Auth */ ctx.domainauto = ses->domainAuto; ctx.domainname = ses->domainName; + ctx.server_hostname = ses->server->hostname; ctx.username = ses->user_name; ctx.password = ses->password; ctx.sectype = ses->sectype; |