aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2012-05-05 18:29:41 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2012-10-01 09:58:12 -0400
commit87b0e714dee438309efca998616a2dbb064ca1a0 (patch)
tree6332ed704f450884a3deb65d006d4625be8da773 /arch
parentmips: NOTIFY_RESUME is not needed in TIF masks (diff)
downloadlinux-dev-87b0e714dee438309efca998616a2dbb064ca1a0.tar.xz
linux-dev-87b0e714dee438309efca998616a2dbb064ca1a0.zip
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>
Diffstat (limited to 'arch')
-rw-r--r--arch/unicore32/include/asm/thread_info.h3
1 files changed, 2 insertions, 1 deletions
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__ */