mirror of https://gitee.com/openkylin/qemu.git
linux-user/aarch64: Reset btype for signals
The kernel sets btype for the signal handler as if for a call. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20201021173749.111103-2-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
091e3e3dbc
commit
0b6a03c044
|
@ -506,10 +506,16 @@ static void target_setup_frame(int usig, struct target_sigaction *ka,
|
|||
+ offsetof(struct target_rt_frame_record, tramp);
|
||||
}
|
||||
env->xregs[0] = usig;
|
||||
env->xregs[31] = frame_addr;
|
||||
env->xregs[29] = frame_addr + fr_ofs;
|
||||
env->pc = ka->_sa_handler;
|
||||
env->xregs[30] = return_addr;
|
||||
env->xregs[31] = frame_addr;
|
||||
env->pc = ka->_sa_handler;
|
||||
|
||||
/* Invoke the signal handler as if by indirect call. */
|
||||
if (cpu_isar_feature(aa64_bti, env_archcpu(env))) {
|
||||
env->btype = 2;
|
||||
}
|
||||
|
||||
if (info) {
|
||||
tswap_siginfo(&frame->info, info);
|
||||
env->xregs[1] = frame_addr + offsetof(struct target_rt_sigframe, info);
|
||||
|
|
Loading…
Reference in New Issue