From a4c857aef058fa7ccee50ea8d01bd78302ce032a Mon Sep 17 00:00:00 2001 From: Peter Maydell Date: Thu, 30 Apr 2026 10:38:08 +0100 Subject: [PATCH] monitor/hmp-cmds: Use cpu_translate_for_debug() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We want to remove the cpu_get_phys_addr_debug() function; update the HMP gva2gpa command implementation to use cpu_translate_for_debug() instead. Signed-off-by: Peter Maydell Reviewed-by: Richard Henderson Reviewed-by: Philippe Mathieu-Daudé Message-ID: <20260430093810.2762539-24-peter.maydell@linaro.org> Signed-off-by: Philippe Mathieu-Daudé --- monitor/hmp-cmds.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/monitor/hmp-cmds.c b/monitor/hmp-cmds.c index 88f9788bd9..443b8c785d 100644 --- a/monitor/hmp-cmds.c +++ b/monitor/hmp-cmds.c @@ -764,18 +764,17 @@ void hmp_gva2gpa(Monitor *mon, const QDict *qdict) { vaddr addr = qdict_get_int(qdict, "addr"); CPUState *cs = mon_get_cpu(mon); - hwaddr gpa; + TranslateForDebugResult tres; if (!cs) { monitor_printf(mon, "No cpu\n"); return; } - gpa = cpu_get_phys_addr_debug(cs, addr); - if (gpa == -1) { + if (!cpu_translate_for_debug(cs, addr, &tres)) { monitor_printf(mon, "Unmapped\n"); } else { - monitor_printf(mon, "gpa: 0x%" HWADDR_PRIx "\n", gpa); + monitor_printf(mon, "gpa: 0x%" HWADDR_PRIx "\n", tres.physaddr); } }