diff options
author | Jens Axboe <axboe@kernel.dk> | 2020-10-09 14:42:33 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-12-12 09:17:38 -0700 |
commit | 2f9799ad0111ee742ccc02dd2ea2c87646746fc1 (patch) | |
tree | b4bac0da056a38cec490027cfa4bcd7cee6cd78a /arch/h8300/kernel | |
parent | 6d665a4d8b4264def0fbb72da3a500d9904ffe3e (diff) |
h8300: add support for TIF_NOTIFY_SIGNAL
Wire up TIF_NOTIFY_SIGNAL handling for h8300.
Cc: uclinux-h8-devel@lists.sourceforge.jp
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'arch/h8300/kernel')
-rw-r--r-- | arch/h8300/kernel/signal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/h8300/kernel/signal.c b/arch/h8300/kernel/signal.c index 75d9b7e626b2..75a1c36b105a 100644 --- a/arch/h8300/kernel/signal.c +++ b/arch/h8300/kernel/signal.c @@ -279,7 +279,7 @@ static void do_signal(struct pt_regs *regs) asmlinkage void do_notify_resume(struct pt_regs *regs, u32 thread_info_flags) { - if (thread_info_flags & _TIF_SIGPENDING) + if (thread_info_flags & (_TIF_SIGPENDING | _TIF_NOTIFY_SIGNAL)) do_signal(regs); if (thread_info_flags & _TIF_NOTIFY_RESUME) |