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 /include/sysemu/kvm.h | |
parent | 50e7a40af372ee5931c99ef7390f5d3d6fbf6ec4 (diff) |
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 'include/sysemu/kvm.h')
-rw-r--r-- | include/sysemu/kvm.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sysemu/kvm.h b/include/sysemu/kvm.h index ccaf55caf7..407fe183cc 100644 --- a/include/sysemu/kvm.h +++ b/include/sysemu/kvm.h @@ -413,14 +413,14 @@ struct kvm_guest_debug; struct kvm_debug_exit_arch; struct kvm_sw_breakpoint { - target_ulong pc; - target_ulong saved_insn; + vaddr pc; + vaddr saved_insn; int use_count; QTAILQ_ENTRY(kvm_sw_breakpoint) entry; }; struct kvm_sw_breakpoint *kvm_find_sw_breakpoint(CPUState *cpu, - target_ulong pc); + vaddr pc); int kvm_sw_breakpoints_active(CPUState *cpu); |