diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-05-05 18:29:41 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-10-01 09:58:12 -0400 |
commit | 87b0e714dee438309efca998616a2dbb064ca1a0 (patch) | |
tree | 6332ed704f450884a3deb65d006d4625be8da773 /arch/unicore32 | |
parent | ac19fe5bf1db7a6fda2d7c5a92df08083f184c08 (diff) | |
download | linux-87b0e714dee438309efca998616a2dbb064ca1a0.tar.gz linux-87b0e714dee438309efca998616a2dbb064ca1a0.tar.bz2 linux-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/unicore32')
-rw-r--r-- | arch/unicore32/include/asm/thread_info.h | 3 |
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__ */ |