Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mips: NOTIFY_RESUME is not needed in TIF masks

If it's set, SIGPENDING is also set. And SIGPENDING is present in
the masks...

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>

Al Viro ac19fe5b 45111b53

+1 -2
+1 -2
arch/mips/include/asm/thread_info.h
··· 140 140 141 141 /* work to do on interrupt/exception return */ 142 142 #define _TIF_WORK_MASK \ 143 - (_TIF_SIGPENDING | _TIF_NEED_RESCHED | _TIF_NOTIFY_RESUME | \ 144 - _TIF_RESTORE_SIGMASK) 143 + (_TIF_SIGPENDING | _TIF_NEED_RESCHED | _TIF_NOTIFY_RESUME) 145 144 /* work to do on any return to u-space */ 146 145 #define _TIF_ALLWORK_MASK (_TIF_WORK_MASK | _TIF_WORK_SYSCALL_EXIT) 147 146