From: Al Viro Date: Sat, 5 May 2012 22:29:41 +0000 (-0400) Subject: unicore32: unobfuscate _TIF_WORK_MASK X-Git-Tag: next-20120910~4^2~17 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9bea564c9ceaa8f66b964d0f5b796f2413631c56;p=karo-tx-linux.git unicore32: unobfuscate _TIF_WORK_MASK bits 3..7 in flags are never set there, so this 0xff is pointless Signed-off-by: Al Viro --- diff --git a/arch/unicore32/include/asm/thread_info.h b/arch/unicore32/include/asm/thread_info.h index 89f7557583b8..bf1c3e01197b 100644 --- a/arch/unicore32/include/asm/thread_info.h +++ b/arch/unicore32/include/asm/thread_info.h @@ -146,7 +146,8 @@ static inline struct thread_info *current_thread_info(void) /* * Change these and you break ASM code in entry-common.S */ -#define _TIF_WORK_MASK 0x000000ff +#define _TIF_WORK_MASK \ + (_TIF_SIGPENDING | _TIF_NEED_RESCHED | _TIF_NOTIFY_RESUME) #endif /* __KERNEL__ */ #endif /* __UNICORE_THREAD_INFO_H__ */