From: Peter Maydell <[email protected]> We want to remove the cpu_get_phys_addr_debug() function; update the plugin code to use cpu_translate_for_debug() instead.
Signed-off-by: Peter Maydell <[email protected]> Reviewed-by: Philippe Mathieu-Daudé <[email protected]> Reviewed-by: Richard Henderson <[email protected]> Message-ID: <[email protected]> Signed-off-by: Philippe Mathieu-Daudé <[email protected]> --- plugins/api.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/api.c b/plugins/api.c index c97cc688825..2d5fe9327f7 100644 --- a/plugins/api.c +++ b/plugins/api.c @@ -617,15 +617,15 @@ qemu_plugin_write_memory_hwaddr(hwaddr addr, GByteArray *data) bool qemu_plugin_translate_vaddr(uint64_t vaddr, uint64_t *hwaddr) { #ifdef CONFIG_SOFTMMU + TranslateForDebugResult tres; + g_assert(current_cpu); - uint64_t res = cpu_get_phys_addr_debug(current_cpu, vaddr); - - if (res == (uint64_t)-1) { + if (!cpu_translate_for_debug(current_cpu, vaddr, &tres)) { return false; } - *hwaddr = res; + *hwaddr = tres.physaddr; return true; #else -- 2.53.0
