aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2020-10-03 10:49:22 -0600
committerJens Axboe <axboe@kernel.dk>2020-10-17 15:04:36 -0600
commit3c532798ec96b6c2d77706f04ed1d8b566a805df (patch)
treebe05df113944f53ea7d50cdff8ae95c1941c4161 /arch/um
parentmm: use limited read-ahead to satisfy read (diff)
downloadlinux-dev-3c532798ec96b6c2d77706f04ed1d8b566a805df.tar.xz
linux-dev-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/um')
-rw-r--r--arch/um/kernel/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/kernel/process.c b/arch/um/kernel/process.c
index 26b5e243d3fc..3bed09538dd9 100644
--- a/arch/um/kernel/process.c
+++ b/arch/um/kernel/process.c
@@ -101,7 +101,7 @@ void interrupt_end(void)
schedule();
if (test_thread_flag(TIF_SIGPENDING))
do_signal(regs);
- if (test_and_clear_thread_flag(TIF_NOTIFY_RESUME))
+ if (test_thread_flag(TIF_NOTIFY_RESUME))
tracehook_notify_resume(regs);
}