diff options
Diffstat (limited to 'arch/powerpc/kernel/signal_32.c')
-rw-r--r-- | arch/powerpc/kernel/signal_32.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/kernel/signal_32.c b/arch/powerpc/kernel/signal_32.c index a2b74e057904..f50b708d6d77 100644 --- a/arch/powerpc/kernel/signal_32.c +++ b/arch/powerpc/kernel/signal_32.c | |||
@@ -1245,7 +1245,7 @@ SYSCALL_DEFINE0(rt_sigreturn) | |||
1245 | current->comm, current->pid, | 1245 | current->comm, current->pid, |
1246 | rt_sf, regs->nip, regs->link); | 1246 | rt_sf, regs->nip, regs->link); |
1247 | 1247 | ||
1248 | force_sig(SIGSEGV, current); | 1248 | force_sig(SIGSEGV); |
1249 | return 0; | 1249 | return 0; |
1250 | } | 1250 | } |
1251 | 1251 | ||
@@ -1334,7 +1334,7 @@ SYSCALL_DEFINE3(debug_setcontext, struct ucontext __user *, ctx, | |||
1334 | current->comm, current->pid, | 1334 | current->comm, current->pid, |
1335 | ctx, regs->nip, regs->link); | 1335 | ctx, regs->nip, regs->link); |
1336 | 1336 | ||
1337 | force_sig(SIGSEGV, current); | 1337 | force_sig(SIGSEGV); |
1338 | goto out; | 1338 | goto out; |
1339 | } | 1339 | } |
1340 | 1340 | ||
@@ -1512,6 +1512,6 @@ badframe: | |||
1512 | current->comm, current->pid, | 1512 | current->comm, current->pid, |
1513 | addr, regs->nip, regs->link); | 1513 | addr, regs->nip, regs->link); |
1514 | 1514 | ||
1515 | force_sig(SIGSEGV, current); | 1515 | force_sig(SIGSEGV); |
1516 | return 0; | 1516 | return 0; |
1517 | } | 1517 | } |