You've already forked linux-rockchip
mirror of
https://github.com/armbian/linux-rockchip.git
synced 2026-01-06 11:08:10 -08:00
UPSTREAM: nds32: add support for TIF_NOTIFY_SIGNAL
[ Upstream commitb13e8bf615] Wire up TIF_NOTIFY_SIGNAL handling for nds32. Cc: Nick Hu <nickhu@andestech.com> Cc: Greentime Hu <green.hu@gmail.com> Cc: Vincent Chen <deanbo422@gmail.com> Change-Id: Ic184206ffc5c6981fb590eb0103bc2f623f5402d Signed-off-by: Jens Axboe <axboe@kernel.dk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> (cherry picked from commit57e833a0a0) Bug: 268174392 Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
6eaa6653e4
commit
52a756bf17
@@ -48,6 +48,7 @@ struct thread_info {
|
||||
#define TIF_NEED_RESCHED 2
|
||||
#define TIF_SINGLESTEP 3
|
||||
#define TIF_NOTIFY_RESUME 4 /* callback before returning to user */
|
||||
#define TIF_NOTIFY_SIGNAL 5 /* signal notifications exist */
|
||||
#define TIF_SYSCALL_TRACE 8
|
||||
#define TIF_POLLING_NRFLAG 17
|
||||
#define TIF_MEMDIE 18
|
||||
@@ -57,6 +58,7 @@ struct thread_info {
|
||||
#define _TIF_SIGPENDING (1 << TIF_SIGPENDING)
|
||||
#define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED)
|
||||
#define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME)
|
||||
#define _TIF_NOTIFY_SIGNAL (1 << TIF_NOTIFY_SIGNAL)
|
||||
#define _TIF_SINGLESTEP (1 << TIF_SINGLESTEP)
|
||||
#define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE)
|
||||
#define _TIF_POLLING_NRFLAG (1 << TIF_POLLING_NRFLAG)
|
||||
|
||||
@@ -120,7 +120,7 @@ work_pending:
|
||||
andi $p1, $r1, #_TIF_NEED_RESCHED
|
||||
bnez $p1, work_resched
|
||||
|
||||
andi $p1, $r1, #_TIF_SIGPENDING|#_TIF_NOTIFY_RESUME
|
||||
andi $p1, $r1, #_TIF_SIGPENDING|#_TIF_NOTIFY_RESUME|#_TIF_NOTIFY_SIGNAL
|
||||
beqz $p1, no_work_pending
|
||||
|
||||
move $r0, $sp ! 'regs'
|
||||
|
||||
@@ -376,7 +376,7 @@ static void do_signal(struct pt_regs *regs)
|
||||
asmlinkage void
|
||||
do_notify_resume(struct pt_regs *regs, unsigned int thread_flags)
|
||||
{
|
||||
if (thread_flags & _TIF_SIGPENDING)
|
||||
if (thread_flags & (_TIF_SIGPENDING | _TIF_NOTIFY_SIGNAL))
|
||||
do_signal(regs);
|
||||
|
||||
if (thread_flags & _TIF_NOTIFY_RESUME)
|
||||
|
||||
Reference in New Issue
Block a user