提交 687127c8 编写于 作者: P Paulo Alcantara 提交者: Steve French

cifs: fix potential race with cifsd thread

To avoid racing with demultiplex thread while it is handling data on
socket, use cifs_signal_cifsd_for_reconnect() helper for marking
current server to reconnect and let the demultiplex thread handle the
rest.

Fixes: dca65818 ("cifs: use a different reconnect helper for non-cifsd threads")
Reviewed-by: NEnzo Matsumiya <ematsumiya@suse.de>
Reviewed-by: NShyam Prasad N <sprasad@microsoft.com>
Signed-off-by: NPaulo Alcantara (SUSE) <pc@cjr.nz>
Signed-off-by: NSteve French <stfrench@microsoft.com>
上级 31231092
......@@ -4465,7 +4465,7 @@ static int tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tco
*/
if (rc && server->current_fullpath != server->origin_fullpath) {
server->current_fullpath = server->origin_fullpath;
cifs_reconnect(tcon->ses->server, true);
cifs_signal_cifsd_for_reconnect(server, true);
}
dfs_cache_free_tgts(tl);
......
......@@ -896,7 +896,7 @@ map_and_check_smb_error(struct mid_q_entry *mid, bool logErr)
if (class == ERRSRV && code == ERRbaduid) {
cifs_dbg(FYI, "Server returned 0x%x, reconnecting session...\n",
code);
cifs_reconnect(mid->server, false);
cifs_signal_cifsd_for_reconnect(mid->server, false);
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册