]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
autofs: use wake_up() instead of wake_up_interruptible(()
authorIan Kent <raven@themaw.net>
Fri, 4 Aug 2023 05:33:18 +0000 (13:33 +0800)
committerChristian Brauner <brauner@kernel.org>
Fri, 4 Aug 2023 11:57:34 +0000 (13:57 +0200)
In autofs_wait_release() wake_up() is used to wake up processes waiting
on a mount callback to complete which matches the wait_event_killable()
in autofs_wait().

But in autofs_catatonic_mode() the wake_up_interruptible() was not also
changed at the time autofs_wait_release() was changed.

Signed-off-by: Ian Kent <raven@themaw.net>
Message-Id: <169112719813.7590.4971499386839952992.stgit@donald.themaw.net>
Signed-off-by: Christian Brauner <brauner@kernel.org>
fs/autofs/waitq.c

index efdc76732faed639104e13a6813a4db220adec55..33dd4660d82f4b65a1ff18b5d06fb3a74bf69c7b 100644 (file)
@@ -32,7 +32,7 @@ void autofs_catatonic_mode(struct autofs_sb_info *sbi)
                wq->status = -ENOENT; /* Magic is gone - report failure */
                kfree(wq->name.name - wq->offset);
                wq->name.name = NULL;
-               wake_up_interruptible(&wq->queue);
+               wake_up(&wq->queue);
                if (!--wq->wait_ctr)
                        kfree(wq);
                wq = nwq;