diff options
Diffstat (limited to 'arch/tile/kernel/signal.c')
-rw-r--r-- | arch/tile/kernel/signal.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/arch/tile/kernel/signal.c b/arch/tile/kernel/signal.c index fb28e85ae3ae..757407e36696 100644 --- a/arch/tile/kernel/signal.c +++ b/arch/tile/kernel/signal.c | |||
@@ -16,7 +16,6 @@ | |||
16 | #include <linux/sched.h> | 16 | #include <linux/sched.h> |
17 | #include <linux/mm.h> | 17 | #include <linux/mm.h> |
18 | #include <linux/smp.h> | 18 | #include <linux/smp.h> |
19 | #include <linux/smp_lock.h> | ||
20 | #include <linux/kernel.h> | 19 | #include <linux/kernel.h> |
21 | #include <linux/signal.h> | 20 | #include <linux/signal.h> |
22 | #include <linux/errno.h> | 21 | #include <linux/errno.h> |
@@ -71,6 +70,9 @@ int restore_sigcontext(struct pt_regs *regs, | |||
71 | for (i = 0; i < sizeof(struct pt_regs)/sizeof(long); ++i) | 70 | for (i = 0; i < sizeof(struct pt_regs)/sizeof(long); ++i) |
72 | err |= __get_user(regs->regs[i], &sc->gregs[i]); | 71 | err |= __get_user(regs->regs[i], &sc->gregs[i]); |
73 | 72 | ||
73 | /* Ensure that the PL is always set to USER_PL. */ | ||
74 | regs->ex1 = PL_ICS_EX1(USER_PL, EX1_ICS(regs->ex1)); | ||
75 | |||
74 | regs->faultnum = INT_SWINT_1_SIGRETURN; | 76 | regs->faultnum = INT_SWINT_1_SIGRETURN; |
75 | 77 | ||
76 | err |= __get_user(*pr0, &sc->gregs[0]); | 78 | err |= __get_user(*pr0, &sc->gregs[0]); |
@@ -330,7 +332,7 @@ void do_signal(struct pt_regs *regs) | |||
330 | current_thread_info()->status &= ~TS_RESTORE_SIGMASK; | 332 | current_thread_info()->status &= ~TS_RESTORE_SIGMASK; |
331 | } | 333 | } |
332 | 334 | ||
333 | return; | 335 | goto done; |
334 | } | 336 | } |
335 | 337 | ||
336 | /* Did we come from a system call? */ | 338 | /* Did we come from a system call? */ |
@@ -358,4 +360,8 @@ void do_signal(struct pt_regs *regs) | |||
358 | current_thread_info()->status &= ~TS_RESTORE_SIGMASK; | 360 | current_thread_info()->status &= ~TS_RESTORE_SIGMASK; |
359 | sigprocmask(SIG_SETMASK, ¤t->saved_sigmask, NULL); | 361 | sigprocmask(SIG_SETMASK, ¤t->saved_sigmask, NULL); |
360 | } | 362 | } |
363 | |||
364 | done: | ||
365 | /* Avoid double syscall restart if there are nested signals. */ | ||
366 | regs->faultnum = INT_SWINT_1_SIGRETURN; | ||
361 | } | 367 | } |