diff mbox series

cifs: close the shared root handle on tree disconnect

Message ID 20191107070038.6029-1-lsahlber@redhat.com
State New
Headers show
Series cifs: close the shared root handle on tree disconnect | expand

Commit Message

Ronnie Sahlberg Nov. 7, 2019, 7 a.m. UTC
Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
---
 fs/cifs/smb2pdu.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Steve French Nov. 8, 2019, 6:25 a.m. UTC | #1
merged into cifs-2.6.git for-next

On Thu, Nov 7, 2019 at 1:03 AM Ronnie Sahlberg <lsahlber@redhat.com> wrote:
>
> Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
> ---
>  fs/cifs/smb2pdu.c | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/fs/cifs/smb2pdu.c b/fs/cifs/smb2pdu.c
> index 05149862aea4..acb70f67efc9 100644
> --- a/fs/cifs/smb2pdu.c
> +++ b/fs/cifs/smb2pdu.c
> @@ -1807,6 +1807,8 @@ SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon)
>         if ((tcon->need_reconnect) || (tcon->ses->need_reconnect))
>                 return 0;
>
> +       close_shroot(&tcon->crfid);
> +
>         rc = smb2_plain_req_init(SMB2_TREE_DISCONNECT, tcon, (void **) &req,
>                              &total_len);
>         if (rc)
> --
> 2.13.6
>
diff mbox series

Patch

diff --git a/fs/cifs/smb2pdu.c b/fs/cifs/smb2pdu.c
index 05149862aea4..acb70f67efc9 100644
--- a/fs/cifs/smb2pdu.c
+++ b/fs/cifs/smb2pdu.c
@@ -1807,6 +1807,8 @@  SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon)
 	if ((tcon->need_reconnect) || (tcon->ses->need_reconnect))
 		return 0;
 
+	close_shroot(&tcon->crfid);
+
 	rc = smb2_plain_req_init(SMB2_TREE_DISCONNECT, tcon, (void **) &req,
 			     &total_len);
 	if (rc)