Skip to content

Commit

Permalink
avr32: missed _TIF_NOTIFY_RESUME on one of do_notify_resume callers
Browse files Browse the repository at this point in the history
we need that not just on syscall returns but on irq ones as well...

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed May 24, 2012
1 parent 617c62a commit 62366c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/avr32/kernel/entry-avr32b.S
Expand Up @@ -587,7 +587,7 @@ fault_exit_work:
ld.w r1, r0[TI_flags]
rjmp fault_exit_work

1: mov r2, _TIF_SIGPENDING | _TIF_RESTORE_SIGMASK
1: mov r2, _TIF_SIGPENDING | _TIF_RESTORE_SIGMASK | _TIF_NOTIFY_RESUME
tst r1, r2
breq 2f
unmask_interrupts
Expand Down

0 comments on commit 62366c8

Please sign in to comment.