From: Steve French Date: Wed, 24 Jul 2019 03:14:29 +0000 (-0500) Subject: cifs: fix rmmod regression in cifs.ko caused by force_sig changes X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=247bc9470b1eeefc7b58cdf2c39f2866ba651509;p=linux.git cifs: fix rmmod regression in cifs.ko caused by force_sig changes Fixes: 72abe3bcf091 ("signal/cifs: Fix cifs_put_tcp_session to call send_sig instead of force_sig") The global change from force_sig caused module unloading of cifs.ko to fail (since the cifsd process could not be killed, "rmmod cifs" now would always fail) Signed-off-by: Steve French Reviewed-by: Ronnie Sahlberg CC: Eric W. Biederman --- diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index a4830ced0f989..a15a6e738eb53 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c @@ -1113,6 +1113,7 @@ cifs_demultiplex_thread(void *p) mempool_resize(cifs_req_poolp, length + cifs_min_rcv); set_freezable(); + allow_signal(SIGKILL); while (server->tcpStatus != CifsExiting) { if (try_to_freeze()) continue;