diff options
author | Jens Axboe <axboe@kernel.dk> | 2020-10-10 01:04:39 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-12-12 19:17:38 +0300 |
commit | e296dc4996b8094ccde45d19090d804c4103513e (patch) | |
tree | 3250ce40eeacd53f12b495b3d8942976dc41eca0 /include/linux/tracehook.h | |
parent | 98b89b649fce39dacb9dc036d6d0fdb8caff73f7 (diff) | |
download | linux-e296dc4996b8094ccde45d19090d804c4103513e.tar.xz |
kernel: remove checking for TIF_NOTIFY_SIGNAL
It's available everywhere now, no need to check or add dummy defines.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/linux/tracehook.h')
-rw-r--r-- | include/linux/tracehook.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/tracehook.h b/include/linux/tracehook.h index f7d82e4fafd6..ee9ab7dbc8c3 100644 --- a/include/linux/tracehook.h +++ b/include/linux/tracehook.h @@ -205,12 +205,10 @@ static inline void tracehook_notify_resume(struct pt_regs *regs) */ static inline void tracehook_notify_signal(void) { -#if defined(TIF_NOTIFY_SIGNAL) clear_thread_flag(TIF_NOTIFY_SIGNAL); smp_mb__after_atomic(); if (current->task_works) task_work_run(); -#endif } /* @@ -218,11 +216,9 @@ static inline void tracehook_notify_signal(void) */ static inline void set_notify_signal(struct task_struct *task) { -#if defined(TIF_NOTIFY_SIGNAL) if (!test_and_set_tsk_thread_flag(task, TIF_NOTIFY_SIGNAL) && !wake_up_state(task, TASK_INTERRUPTIBLE)) kick_process(task); -#endif } #endif /* <linux/tracehook.h> */ |