aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2023-10-09 11:52:31 +0400
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2023-10-20 14:46:06 +0200
commit85f3d509b2bed0d9d994fca70ebd3be010fca72b (patch)
tree9222a1715f09596d28f173d3940691898d313c39
parentd3b88b9cf6872b4dd9dcc39efefbe6d937d04057 (diff)
downloadqemu-85f3d509b2bed0d9d994fca70ebd3be010fca72b.zip
qemu-85f3d509b2bed0d9d994fca70ebd3be010fca72b.tar.gz
qemu-85f3d509b2bed0d9d994fca70ebd3be010fca72b.tar.bz2
memory: drop needless argument
The argument is unused since commit bdc44640c ("cpu: Use QTAILQ for CPU list"). Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: David Hildenbrand <david@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <20231009075231.150568-1-marcandre.lureau@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
-rw-r--r--system/memory_mapping.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/memory_mapping.c b/system/memory_mapping.c
index d7f1d09..8ba9968 100644
--- a/system/memory_mapping.c
+++ b/system/memory_mapping.c
@@ -291,7 +291,7 @@ void guest_phys_blocks_append(GuestPhysBlockList *list)
memory_listener_unregister(&g.listener);
}
-static CPUState *find_paging_enabled_cpu(CPUState *start_cpu)
+static CPUState *find_paging_enabled_cpu(void)
{
CPUState *cpu;
@@ -312,7 +312,7 @@ void qemu_get_guest_memory_mapping(MemoryMappingList *list,
GuestPhysBlock *block;
ram_addr_t offset, length;
- first_paging_enabled_cpu = find_paging_enabled_cpu(first_cpu);
+ first_paging_enabled_cpu = find_paging_enabled_cpu();
if (first_paging_enabled_cpu) {
for (cpu = first_paging_enabled_cpu; cpu != NULL;
cpu = CPU_NEXT(cpu)) {