| From 525d57f0eb92848190d3d0ffe124cc3abefe6678 Mon Sep 17 00:00:00 2001 |
| From: Paul Aurich <paul@darkrain42.org> |
| Date: Fri, 26 Jun 2020 12:58:08 -0700 |
| Subject: [PATCH] SMB3: Honor 'handletimeout' flag for multiuser mounts |
| |
| commit 6b356f6cf941d5054d7fab072cae4a5f8658e3db upstream. |
| |
| 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> |
| Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> |
| |
| diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c |
| index f0bb2219ca22..8924f1427472 100644 |
| --- a/fs/cifs/connect.c |
| +++ b/fs/cifs/connect.c |
| @@ -5174,6 +5174,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->linux_ext = master_tcon->posix_extensions; |
| vol_info->sectype = master_tcon->ses->sectype; |
| -- |
| 2.27.0 |
| |