Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 87b0e714 authored by Al Viro's avatar Al Viro
Browse files

unicore32: unobfuscate _TIF_WORK_MASK



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

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent ac19fe5b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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__ */