mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00
cpu: Move CPUClass::get_crash_info to SysemuCPUOps
cpu_get_crash_info() is called on GUEST_PANICKED events, which only occur in system emulation. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20210517105140.1062037-18-f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
da383e0263
commit
83ec01b675
5 changed files with 9 additions and 5 deletions
|
@ -480,6 +480,7 @@ static void s390_cpu_reset_full(DeviceState *dev)
|
|||
#include "hw/core/sysemu-cpu-ops.h"
|
||||
|
||||
static const struct SysemuCPUOps s390_sysemu_ops = {
|
||||
.get_crash_info = s390_cpu_get_crash_info,
|
||||
.legacy_vmsd = &vmstate_s390_cpu,
|
||||
};
|
||||
#endif
|
||||
|
@ -524,7 +525,6 @@ static void s390_cpu_class_init(ObjectClass *oc, void *data)
|
|||
cc->gdb_write_register = s390_cpu_gdb_write_register;
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
cc->get_phys_page_debug = s390_cpu_get_phys_page_debug;
|
||||
cc->get_crash_info = s390_cpu_get_crash_info;
|
||||
cc->write_elf64_note = s390_cpu_write_elf64_note;
|
||||
cc->sysemu_ops = &s390_sysemu_ops;
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue