diff options
author | Jens Axboe <axboe@kernel.dk> | 2020-10-08 18:11:42 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-12-12 19:16:34 +0300 |
commit | 5a9a8897c253a075805401d38d987ec1ac1824b6 (patch) | |
tree | 9cb40634f8b43341de2d1f7adce4035cb6197dcf /arch/alpha/kernel/entry.S | |
parent | bec58f40d6c5372d812c93cc3947f3bc97440e57 (diff) | |
download | linux-5a9a8897c253a075805401d38d987ec1ac1824b6.tar.xz |
alpha: add support for TIF_NOTIFY_SIGNAL
Wire up TIF_NOTIFY_SIGNAL handling for alpha.
Cc: linux-alpha@vger.kernel.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'arch/alpha/kernel/entry.S')
-rw-r--r-- | arch/alpha/kernel/entry.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/alpha/kernel/entry.S b/arch/alpha/kernel/entry.S index 2e09248f8324..e227f3a29a43 100644 --- a/arch/alpha/kernel/entry.S +++ b/arch/alpha/kernel/entry.S @@ -544,7 +544,7 @@ $ret_success: .align 4 .type work_pending, @function work_pending: - and $17, _TIF_NOTIFY_RESUME | _TIF_SIGPENDING, $2 + and $17, _TIF_NOTIFY_RESUME | _TIF_SIGPENDING | _TIF_NOTIFY_SIGNAL, $2 bne $2, $work_notifysig $work_resched: |