From: Long Li <longli@xxxxxxxxxxxxx> When SMBD is used in the SMB session, destroy it on exit. Signed-off-by: Long Li <longli@xxxxxxxxxxxxx> --- 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 -- To unsubscribe from this list: send the line "unsubscribe linux-cifs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html