diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-05-24 03:12:25 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-10-01 09:58:15 -0400 |
commit | ff893577be5f56c97692678a7a3e3397c35e3cec (patch) | |
tree | 85b2bb376391f33de2560d36ebb1d184c301f495 /arch/h8300 | |
parent | 64482bd8ef1700e98d96fb6e240c501d68c8371c (diff) | |
download | op-kernel-dev-ff893577be5f56c97692678a7a3e3397c35e3cec.zip op-kernel-dev-ff893577be5f56c97692678a7a3e3397c35e3cec.tar.gz |
h8300: trim _TIF_WORK_MASK
Only the three usual flags (NEED_RESCHED/SIGPENDING/NOTIFY_RESUME)
are looked at in the code checking _TIF_WORK_MASK on that one.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/h8300')
-rw-r--r-- | arch/h8300/include/asm/thread_info.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/h8300/include/asm/thread_info.h b/arch/h8300/include/asm/thread_info.h index 63cc298..ec2f777 100644 --- a/arch/h8300/include/asm/thread_info.h +++ b/arch/h8300/include/asm/thread_info.h @@ -95,7 +95,8 @@ static inline struct thread_info *current_thread_info(void) #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) #define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME) -#define _TIF_WORK_MASK 0x0000FFFE /* work to do on interrupt/exception return */ +#define _TIF_WORK_MASK (_TIF_SIGPENDING | _TIF_NEED_RESCHED | \ + _TIF_NOTIFY_RESUME) #endif /* __KERNEL__ */ |