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

unicore32: unobfuscate _TIF_WORK_MASK

bits 3..7 in flags are never set there, so this 0xff is pointless

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

Al Viro 87b0e714 ac19fe5b

+2 -1
+2 -1
arch/unicore32/include/asm/thread_info.h
··· 146 146 /* 147 147 * Change these and you break ASM code in entry-common.S 148 148 */ 149 - #define _TIF_WORK_MASK 0x000000ff 149 + #define _TIF_WORK_MASK \ 150 + (_TIF_SIGPENDING | _TIF_NEED_RESCHED | _TIF_NOTIFY_RESUME) 150 151 151 152 #endif /* __KERNEL__ */ 152 153 #endif /* __UNICORE_THREAD_INFO_H__ */