diff options
author | Richard Henderson | 2021-04-26 04:53:13 +0200 |
---|---|---|
committer | Laurent Vivier | 2021-05-15 21:43:23 +0200 |
commit | ddc3e74d9c5ac76562ce8abe9e5908c4ff7cb8f0 (patch) | |
tree | 1863b89cf1a489e5d35f8674a3077d75d90fc60c /linux-user/sh4 | |
parent | linux-user: Pass CPUArchState to do_sigaltstack (diff) | |
download | qemu-ddc3e74d9c5ac76562ce8abe9e5908c4ff7cb8f0.tar.gz qemu-ddc3e74d9c5ac76562ce8abe9e5908c4ff7cb8f0.tar.xz qemu-ddc3e74d9c5ac76562ce8abe9e5908c4ff7cb8f0.zip |
linux-user: Pass CPUArchState to target_restore_altstack
In most cases we were already passing get_sp_from_cpustate
directly to the function. In other cases, we were passing
a local variable which already contained the same value.
In the rest of the cases, we were passing the stack pointer
out of env directly.
Reviewed by: Warner Losh <imp@bsdimp.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20210426025334.1168495-5-richard.henderson@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/sh4')
-rw-r--r-- | linux-user/sh4/signal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/sh4/signal.c b/linux-user/sh4/signal.c index 684f18da58..0451e65806 100644 --- a/linux-user/sh4/signal.c +++ b/linux-user/sh4/signal.c @@ -323,7 +323,7 @@ long do_rt_sigreturn(CPUSH4State *regs) set_sigmask(&blocked); restore_sigcontext(regs, &frame->uc.tuc_mcontext); - target_restore_altstack(&frame->uc.tuc_stack, get_sp_from_cpustate(regs)); + target_restore_altstack(&frame->uc.tuc_stack, regs); unlock_user_struct(frame, frame_addr, 0); return -TARGET_QEMU_ESIGRETURN; |