diff options
author | Shyam Prasad N <sprasad@microsoft.com> | 2022-02-15 16:55:40 +0300 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2022-03-19 07:12:03 +0300 |
commit | dca65818c80cf06e0f08ba2cf94060a5236e73c2 (patch) | |
tree | c1b02bbda06c8eec10b5caf6a7ca215a72595e7e /fs/cifs/transport.c | |
parent | 9a14b65d590105d393b63f5320e1594edda7c672 (diff) | |
download | linux-dca65818c80cf06e0f08ba2cf94060a5236e73c2.tar.xz |
cifs: use a different reconnect helper for non-cifsd threads
The cifs_demultiplexer_thread should only call cifs_reconnect.
If any other thread wants to trigger a reconnect, they can do
so by updating the server tcpStatus to CifsNeedReconnect.
The last patch attempted to use the same helper function for
both types of threads, but that causes other issues
with lock dependencies.
This patch creates a new helper for non-cifsd threads, that
will indicate to cifsd that the server needs reconnect.
Fixes: 2a05137a0575 ("cifs: mark sessions for reconnection in helper function")
Signed-off-by: Shyam Prasad N <sprasad@microsoft.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs/transport.c')
-rw-r--r-- | fs/cifs/transport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/transport.c b/fs/cifs/transport.c index a4c3e027cca2..eeb1a699bd6f 100644 --- a/fs/cifs/transport.c +++ b/fs/cifs/transport.c @@ -430,7 +430,7 @@ unmask: * be taken as the remainder of this one. We need to kill the * socket so the server throws away the partial SMB */ - cifs_mark_tcp_ses_conns_for_reconnect(server, false); + cifs_signal_cifsd_for_reconnect(server, false); trace_smb3_partial_send_reconnect(server->CurrentMid, server->conn_id, server->hostname); } |