diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2021-10-25 10:50:57 -0500 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2021-10-29 14:31:34 -0500 |
commit | e21294a7aaae32c5d7154b187113a04db5852e37 (patch) | |
tree | fe8235daea64e169bfbd20d2f9bd395ea012b8b1 /arch/powerpc/kernel/signal_32.c | |
parent | 0fdc0c4279c822eda8f5ce3b7689d34f4cac2e82 (diff) | |
download | linux-stable-e21294a7aaae32c5d7154b187113a04db5852e37.tar.gz linux-stable-e21294a7aaae32c5d7154b187113a04db5852e37.tar.bz2 linux-stable-e21294a7aaae32c5d7154b187113a04db5852e37.zip |
signal: Replace force_sigsegv(SIGSEGV) with force_fatal_sig(SIGSEGV)
Now that force_fatal_sig exists it is unnecessary and a bit confusing
to use force_sigsegv in cases where the simpler force_fatal_sig is
wanted. So change every instance we can to make the code clearer.
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Link: https://lkml.kernel.org/r/877de7jrev.fsf@disp2133
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'arch/powerpc/kernel/signal_32.c')
-rw-r--r-- | arch/powerpc/kernel/signal_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/signal_32.c b/arch/powerpc/kernel/signal_32.c index 666f3da41232..933ab95805a6 100644 --- a/arch/powerpc/kernel/signal_32.c +++ b/arch/powerpc/kernel/signal_32.c @@ -1063,7 +1063,7 @@ SYSCALL_DEFINE3(swapcontext, struct ucontext __user *, old_ctx, * We kill the task with a SIGSEGV in this situation. */ if (do_setcontext(new_ctx, regs, 0)) { - force_sigsegv(SIGSEGV); + force_fatal_sig(SIGSEGV); return -EFAULT; } |