hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
kernel/include/linux/sched/wake_q.h
....@@ -60,17 +60,6 @@
6060
6161 extern void wake_q_add(struct wake_q_head *head, struct task_struct *task);
6262 extern void wake_q_add_safe(struct wake_q_head *head, struct task_struct *task);
63
-extern void wake_q_add_sleeper(struct wake_q_head *head, struct task_struct *task);
64
-extern void __wake_up_q(struct wake_q_head *head, bool sleeper);
65
-
66
-static inline void wake_up_q(struct wake_q_head *head)
67
-{
68
- __wake_up_q(head, false);
69
-}
70
-
71
-static inline void wake_up_q_sleeper(struct wake_q_head *head)
72
-{
73
- __wake_up_q(head, true);
74
-}
63
+extern void wake_up_q(struct wake_q_head *head);
7564
7665 #endif /* _LINUX_SCHED_WAKE_Q_H */