[PATCH] wait: don't wake up freezable wait by freezing fake signal

From: Ming Qian
Date: Tue Aug 22 2023 - 03:46:42 EST


kernel may try to wake up task with fake signal when freezing task,
if the task is waiting event using wait_event_freezable,
it's better to freeze the wait, instead of breaking it.

otherwise the caller may need to retry the wait,
maybe like below code:

if (rc == -ERESTARTSYS && freezing(current)) {
clear_thread_flag(TIF_SIGPENDING);
goto again;
}

Signed-off-by: TaoJiang <tao.jiang_2@xxxxxxx>
Signed-off-by: Ming Qian <ming.qian@xxxxxxx>
---
include/linux/wait.h | 9 +++++++--
kernel/sched/wait.c | 14 ++++++++++++++
2 files changed, 21 insertions(+), 2 deletions(-)

diff --git a/include/linux/wait.h b/include/linux/wait.h
index 5ec7739400f4..975ee67f259a 100644
--- a/include/linux/wait.h
+++ b/include/linux/wait.h
@@ -287,6 +287,7 @@ static inline void wake_up_pollfree(struct wait_queue_head *wq_head)
(state & (TASK_INTERRUPTIBLE | TASK_WAKEKILL)))

extern void init_wait_entry(struct wait_queue_entry *wq_entry, int flags);
+bool freezing_wait(struct wait_queue_entry *wq_entry, int state);

/*
* The below macro ___wait_event() has an explicit shadow of the __ret
@@ -314,8 +315,12 @@ extern void init_wait_entry(struct wait_queue_entry *wq_entry, int flags);
break; \
\
if (___wait_is_interruptible(state) && __int) { \
- __ret = __int; \
- goto __out; \
+ if (unlikely(freezing_wait(&__wq_entry, state))) { \
+ clear_thread_flag(TIF_SIGPENDING); \
+ } else { \
+ __ret = __int; \
+ goto __out; \
+ } \
} \
\
cmd; \
diff --git a/kernel/sched/wait.c b/kernel/sched/wait.c
index 802d98cf2de3..37c3b2bc1fc9 100644
--- a/kernel/sched/wait.c
+++ b/kernel/sched/wait.c
@@ -5,6 +5,8 @@
* (C) 2004 Nadia Yvette Chambers, Oracle
*/

+#include <linux/freezer.h>
+
void __init_waitqueue_head(struct wait_queue_head *wq_head, const char *name, struct lock_class_key *key)
{
spin_lock_init(&wq_head->lock);
@@ -484,3 +486,15 @@ int woken_wake_function(struct wait_queue_entry *wq_entry, unsigned mode, int sy
return default_wake_function(wq_entry, mode, sync, key);
}
EXPORT_SYMBOL(woken_wake_function);
+
+bool freezing_wait(struct wait_queue_entry *wq_entry, int state)
+{
+ if (!(state & TASK_FREEZABLE))
+ return false;
+ if (fatal_signal_pending(wq_entry->private))
+ return false;
+ if (unlikely(freezing(wq_entry->private)))
+ return true;
+ return false;
+}
+EXPORT_SYMBOL(freezing_wait);
--
2.38.1