summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2026-04-30 10:37:55 +0100
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2026-05-12 22:35:54 +0200
commitd6aefbc524e4f76548fe96c1437ef58d9b679eac (patch)
treefefbf3434f495792833517b317cfe0957b040974 /plugins
parent85ea0ab9e7f2dd16517670e671ff43f2a469304e (diff)
downloadqemu-d6aefbc524e4f76548fe96c1437ef58d9b679eac.tar.gz
qemu-d6aefbc524e4f76548fe96c1437ef58d9b679eac.zip
target: Rename cpu_get_phys_page_{,attrs_}debug
Rename cpu_phys_page_debug() and cpu_phys_page_attrs_debug() to cpu_phys_addr_debug() and cpu_phys_addr_attrs_debug(). Commit created with: sed -i -e 's/cpu_get_phys_page_debug/cpu_get_phys_addr_debug/g;s/cpu_get_phys_page_attrs_debug/cpu_get_phys_addr_attrs_debug/g' $(git grep -l cpu_get_phys_page) Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20260417173105.1648172-10-peter.maydell@linaro.org Message-ID: <20260430093810.2762539-11-peter.maydell@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/api.c b/plugins/api.c
index 0c348a789b..4b6fad4999 100644
--- a/plugins/api.c
+++ b/plugins/api.c
@@ -619,7 +619,7 @@ bool qemu_plugin_translate_vaddr(uint64_t vaddr, uint64_t *hwaddr)
#ifdef CONFIG_SOFTMMU
g_assert(current_cpu);
- uint64_t res = cpu_get_phys_page_debug(current_cpu, vaddr);
+ uint64_t res = cpu_get_phys_addr_debug(current_cpu, vaddr);
if (res == (uint64_t)-1) {
return false;