diff options
Diffstat (limited to 'arch/um/kernel/process.c')
| -rw-r--r-- | arch/um/kernel/process.c | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/um/kernel/process.c b/arch/um/kernel/process.c index 68b9119841cd..a6d922672b9f 100644 --- a/arch/um/kernel/process.c +++ b/arch/um/kernel/process.c @@ -90,12 +90,14 @@ void *__switch_to(struct task_struct *from, struct task_struct *to)  void interrupt_end(void)  { +	struct pt_regs *regs = ¤t->thread.regs; +  	if (need_resched())  		schedule();  	if (test_thread_flag(TIF_SIGPENDING)) -		do_signal(); +		do_signal(regs);  	if (test_and_clear_thread_flag(TIF_NOTIFY_RESUME)) -		tracehook_notify_resume(¤t->thread.regs); +		tracehook_notify_resume(regs);  }  void exit_thread(void)  |