SMB3: Honor 'handletimeout' flag for multiuser mounts
authorPaul Aurich <paul@darkrain42.org>
Fri, 26 Jun 2020 19:58:08 +0000 (12:58 -0700)
committerSteve French <stfrench@microsoft.com>
Thu, 2 Jul 2020 00:40:33 +0000 (19:40 -0500)
Fixes: ca567eb2b3f0 ("SMB3: Allow persistent handle timeout to be configurable on mount")
Signed-off-by: Paul Aurich <paul@darkrain42.org>
CC: Stable <stable@vger.kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
Reviewed-by: Aurelien Aptel <aaptel@suse.com>
fs/cifs/connect.c

index 6e71a1578e348baf0c9f5c72b8e30457e968b8ad..dada6d51e034842a3caad35bdd0c2e131e708716 100644 (file)
@@ -5309,6 +5309,7 @@ cifs_construct_tcon(struct cifs_sb_info *cifs_sb, kuid_t fsuid)
        vol_info->no_lease = master_tcon->no_lease;
        vol_info->resilient = master_tcon->use_resilient;
        vol_info->persistent = master_tcon->use_persistent;
+       vol_info->handle_timeout = master_tcon->handle_timeout;
        vol_info->no_linux_ext = !master_tcon->unix_ext;
        vol_info->sectype = master_tcon->ses->sectype;
        vol_info->sign = master_tcon->ses->sign;