lkml.org 
[lkml]   [2017]   [Aug]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[[PATCH v1] 35/37] [CIFS] Destroy SMBD transport on exit
Date
From: Long Li <longli@microsoft.com>

When SMBD is used in the SMB session, destroy it on exit.

Signed-off-by: Long Li <longli@microsoft.com>
---
fs/cifs/connect.c | 9 +++++++++
1 file changed, 9 insertions(+)

diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
index 54c1f7c..cc58cd8 100644
--- a/fs/cifs/connect.c
+++ b/fs/cifs/connect.c
@@ -708,6 +708,11 @@ static void clean_demultiplex_info(struct TCP_Server_Info *server)
/* give those requests time to exit */
msleep(125);

+ if (server->rdma && server->rdma_ses) {
+ cifs_destroy_rdma_session(server->rdma_ses);
+ server->rdma_ses = NULL;
+ }
+
if (server->ssocket) {
sock_release(server->ssocket);
server->ssocket = NULL;
@@ -2179,6 +2184,10 @@ cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect)
return;
}

+ if (server->rdma && server->rdma_ses) {
+ cifs_destroy_rdma_session(server->rdma_ses);
+ }
+
put_net(cifs_net_ns(server));

list_del_init(&server->tcp_ses_list);
--
2.7.4
\
 
 \ /
  Last update: 2017-08-02 22:14    [W:0.433 / U:0.384 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site