diff options
author | Jens Axboe <axboe@kernel.dk> | 2020-10-03 10:49:22 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-10-17 15:04:36 -0600 |
commit | 3c532798ec96b6c2d77706f04ed1d8b566a805df (patch) | |
tree | be05df113944f53ea7d50cdff8ae95c1941c4161 /arch/arc | |
parent | 324bcf54c449c7b5b7024c9fa4549fbaaae1935d (diff) | |
download | linux-stable-3c532798ec96b6c2d77706f04ed1d8b566a805df.tar.gz linux-stable-3c532798ec96b6c2d77706f04ed1d8b566a805df.tar.bz2 linux-stable-3c532798ec96b6c2d77706f04ed1d8b566a805df.zip |
tracehook: clear TIF_NOTIFY_RESUME in tracehook_notify_resume()
All the callers currently do this, clean it up and move the clearing
into tracehook_notify_resume() instead.
Reviewed-by: Oleg Nesterov <oleg@redhat.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'arch/arc')
-rw-r--r-- | arch/arc/kernel/signal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arc/kernel/signal.c b/arch/arc/kernel/signal.c index 8222f8c54690..2be55fb96d87 100644 --- a/arch/arc/kernel/signal.c +++ b/arch/arc/kernel/signal.c @@ -394,6 +394,6 @@ void do_notify_resume(struct pt_regs *regs) * ASM glue gaurantees that this is only called when returning to * user mode */ - if (test_and_clear_thread_flag(TIF_NOTIFY_RESUME)) + if (test_thread_flag(TIF_NOTIFY_RESUME)) tracehook_notify_resume(regs); } |