Commit e2c7554c authored by Al Viro's avatar Al Viro
Browse files

alpha: fix TIF_NOTIFY_SIGNAL handling



it needs to be added to _TIF_WORK_MASK, or we might not reach
do_work_pending() in the first place...

Fixes: 5a9a8897 "alpha: add support for TIF_NOTIFY_SIGNAL"
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 9abf2313
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ register struct thread_info *__current_thread_info __asm__("$8");

/* Work to do on interrupt/exception return.  */
#define _TIF_WORK_MASK		(_TIF_SIGPENDING | _TIF_NEED_RESCHED | \
				 _TIF_NOTIFY_RESUME)
				 _TIF_NOTIFY_RESUME | _TIF_NOTIFY_SIGNAL)

/* Work to do on any return to userspace.  */
#define _TIF_ALLWORK_MASK	(_TIF_WORK_MASK		\