diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-07-07 19:10:58 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2025-07-11 09:42:16 +0200 |
commit | 0492c8929f4cb58372273b956e2f8b3d93bd7e33 (patch) | |
tree | 247dcfb1be62ee6a7189e3be7f072009838595c8 | |
parent | df6fe2abf2e990f767ce755d426bc439c7bba336 (diff) | |
download | qemu-0492c8929f4cb58372273b956e2f8b3d93bd7e33.zip qemu-0492c8929f4cb58372273b956e2f8b3d93bd7e33.tar.gz qemu-0492c8929f4cb58372273b956e2f8b3d93bd7e33.tar.bz2 |
target/s390x/kvm: Use vaddr in find/insert_hw_breakpoint()
Since commit b8a6eb1862a both kvm_arch_insert_hw_breakpoint()
and kvm_arch_remove_hw_breakpoint() use a vaddr type. Use the
same type for the callees.
Fixes: b8a6eb1862a ("sysemu/kvm: Use vaddr for kvm_arch_[insert|remove]_hw_breakpoint")
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-ID: <20250707171059.3064-2-philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r-- | target/s390x/kvm/kvm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/s390x/kvm/kvm.c b/target/s390x/kvm/kvm.c index 67d9a19..491cc5f 100644 --- a/target/s390x/kvm/kvm.c +++ b/target/s390x/kvm/kvm.c @@ -889,7 +889,7 @@ int kvm_arch_remove_sw_breakpoint(CPUState *cs, struct kvm_sw_breakpoint *bp) return 0; } -static struct kvm_hw_breakpoint *find_hw_breakpoint(target_ulong addr, +static struct kvm_hw_breakpoint *find_hw_breakpoint(vaddr addr, int len, int type) { int n; @@ -904,7 +904,7 @@ static struct kvm_hw_breakpoint *find_hw_breakpoint(target_ulong addr, return NULL; } -static int insert_hw_breakpoint(target_ulong addr, int len, int type) +static int insert_hw_breakpoint(vaddr addr, int len, int type) { int size; |