VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: Linus Torvalds <torvalds@linux-foundation.org> 2020-10-23 10:06:38 -0700 committer: Linus Torvalds <torvalds@linux-foundation.org> 2020-10-23 10:06:38 -0700 commit: 4a22709e21c2b1bedf90f68c823daf65d8e6b491 parent: 0a14d7649872be966d12bc6c3056bb37c27b94bd
Commit Summary:
Merge tag 'arch-cleanup-2020-10-22' of git://git.kernel.dk/linux-block
Diffstat:
1 file changed, 1 insertion, 1 deletion
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);
 }