diff options
author | Philippe Mathieu-Daudé | 2021-05-17 12:51:34 +0200 |
---|---|---|
committer | Richard Henderson | 2021-05-27 00:33:59 +0200 |
commit | 83ec01b675a731910b3b2183091302ad31b3482b (patch) | |
tree | aee56ad8c1d872f923d2ca1c479da3a04cb7db59 /hw/core | |
parent | cpu: Move CPUClass::virtio_is_big_endian to SysemuCPUOps (diff) | |
download | qemu-83ec01b675a731910b3b2183091302ad31b3482b.tar.gz qemu-83ec01b675a731910b3b2183091302ad31b3482b.tar.xz qemu-83ec01b675a731910b3b2183091302ad31b3482b.zip |
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>
Diffstat (limited to 'hw/core')
-rw-r--r-- | hw/core/cpu-sysemu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/core/cpu-sysemu.c b/hw/core/cpu-sysemu.c index bad7d2cb01..90b5ac8eb9 100644 --- a/hw/core/cpu-sysemu.c +++ b/hw/core/cpu-sysemu.c @@ -138,8 +138,8 @@ GuestPanicInformation *cpu_get_crash_info(CPUState *cpu) CPUClass *cc = CPU_GET_CLASS(cpu); GuestPanicInformation *res = NULL; - if (cc->get_crash_info) { - res = cc->get_crash_info(cpu); + if (cc->sysemu_ops->get_crash_info) { + res = cc->sysemu_ops->get_crash_info(cpu); } return res; } |