diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-05-05 16:24:40 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-10-01 09:58:11 -0400 |
commit | ac19fe5bf1db7a6fda2d7c5a92df08083f184c08 (patch) | |
tree | e35f6351b830e068a9503271f32250b1b642b6a5 | |
parent | 45111b5398fd500a14b6048a347c37f3f959945a (diff) |
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>
-rw-r--r-- | arch/mips/include/asm/thread_info.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/mips/include/asm/thread_info.h b/arch/mips/include/asm/thread_info.h index 6bd02dbba452..946e010f2018 100644 --- a/arch/mips/include/asm/thread_info.h +++ b/arch/mips/include/asm/thread_info.h | |||
@@ -140,8 +140,7 @@ register struct thread_info *__current_thread_info __asm__("$28"); | |||
140 | 140 | ||
141 | /* work to do on interrupt/exception return */ | 141 | /* work to do on interrupt/exception return */ |
142 | #define _TIF_WORK_MASK \ | 142 | #define _TIF_WORK_MASK \ |
143 | (_TIF_SIGPENDING | _TIF_NEED_RESCHED | _TIF_NOTIFY_RESUME | \ | 143 | (_TIF_SIGPENDING | _TIF_NEED_RESCHED | _TIF_NOTIFY_RESUME) |
144 | _TIF_RESTORE_SIGMASK) | ||
145 | /* work to do on any return to u-space */ | 144 | /* work to do on any return to u-space */ |
146 | #define _TIF_ALLWORK_MASK (_TIF_WORK_MASK | _TIF_WORK_SYSCALL_EXIT) | 145 | #define _TIF_ALLWORK_MASK (_TIF_WORK_MASK | _TIF_WORK_SYSCALL_EXIT) |
147 | 146 | ||