diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-09-30 09:08:54 +0200 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-10-07 05:03:56 +0200 |
| commit | 4db362f68c7cd28a6b1aa2f9ada68aa3556f9613 (patch) | |
| tree | 2569911d2674ac58a36500c75d1069b567a46e65 /accel/kvm/kvm-all.c | |
| parent | aa60bdb700f4afa8577a495c734870516910864f (diff) | |
| download | focaccia-qemu-4db362f68c7cd28a6b1aa2f9ada68aa3556f9613.tar.gz focaccia-qemu-4db362f68c7cd28a6b1aa2f9ada68aa3556f9613.zip | |
system/physmem: Extract API out of 'system/ram_addr.h' header
Very few files use the Physical Memory API. Declare its methods in their own header: "system/physmem.h". Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Cédric Le Goater <clg@redhat.com> Message-Id: <20251001175448.18933-19-philmd@linaro.org>
Diffstat (limited to 'accel/kvm/kvm-all.c')
| -rw-r--r-- | accel/kvm/kvm-all.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel/kvm/kvm-all.c b/accel/kvm/kvm-all.c index a7ece7db96..58802f7c3c 100644 --- a/accel/kvm/kvm-all.c +++ b/accel/kvm/kvm-all.c @@ -32,13 +32,13 @@ #include "system/runstate.h" #include "system/cpus.h" #include "system/accel-blocker.h" +#include "system/physmem.h" #include "system/ramblock.h" #include "accel/accel-ops.h" #include "qemu/bswap.h" #include "exec/tswap.h" #include "exec/target_page.h" #include "system/memory.h" -#include "system/ram_addr.h" #include "qemu/event_notifier.h" #include "qemu/main-loop.h" #include "trace.h" |