diff options
| author | Anton Johansson <anjo@rev.ng> | 2023-08-07 17:56:58 +0200 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2023-08-24 11:21:22 -0700 |
| commit | b67be03e3ac9d20a258f24dcaf1b61c91c1306f5 (patch) | |
| tree | 953c4d329d8a0ae1257f97bb39c63cb4558d0e6f /accel/kvm/kvm-all.c | |
| parent | 50e7a40af372ee5931c99ef7390f5d3d6fbf6ec4 (diff) | |
| download | focaccia-qemu-b67be03e3ac9d20a258f24dcaf1b61c91c1306f5.tar.gz focaccia-qemu-b67be03e3ac9d20a258f24dcaf1b61c91c1306f5.zip | |
accel/kvm: Widen pc/saved_insn for kvm_sw_breakpoint
Widens the pc and saved_insn fields of kvm_sw_breakpoint from target_ulong to vaddr. The pc argument of kvm_find_sw_breakpoint is also widened to match. Signed-off-by: Anton Johansson <anjo@rev.ng> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230807155706.9580-2-anjo@rev.ng> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'accel/kvm/kvm-all.c')
| -rw-r--r-- | accel/kvm/kvm-all.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/accel/kvm/kvm-all.c b/accel/kvm/kvm-all.c index d07f1ecbd3..2ba7521695 100644 --- a/accel/kvm/kvm-all.c +++ b/accel/kvm/kvm-all.c @@ -3309,8 +3309,7 @@ bool kvm_arm_supports_user_irq(void) } #ifdef KVM_CAP_SET_GUEST_DEBUG -struct kvm_sw_breakpoint *kvm_find_sw_breakpoint(CPUState *cpu, - target_ulong pc) +struct kvm_sw_breakpoint *kvm_find_sw_breakpoint(CPUState *cpu, vaddr pc) { struct kvm_sw_breakpoint *bp; |