summary refs log tree commit diff stats
path: root/cpu-common.c
diff options
context:
space:
mode:
authorAkihiko Odaki <akihiko.odaki@daynix.com>2024-07-14 19:46:52 +0900
committerPaolo Bonzini <pbonzini@redhat.com>2024-07-16 12:47:44 +0200
commitf8b64d35a625e49ee73f7d54ae80cb5503be975b (patch)
treead2138351f1447c88a9f071f6b51be11bf1474da /cpu-common.c
parente0bf95443ee9326d44031373420cf9f3513ee255 (diff)
downloadfocaccia-qemu-f8b64d35a625e49ee73f7d54ae80cb5503be975b.tar.gz
focaccia-qemu-f8b64d35a625e49ee73f7d54ae80cb5503be975b.zip
cpu: Free queued CPU work
Running qemu-system-aarch64 -M virt -nographic and terminating it will
result in a LeakSanitizer error due to remaining queued CPU work so
free it.

Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Link: https://lore.kernel.org/r/20240714-cpu-v1-1-19c2f8de2055@daynix.com
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'cpu-common.c')
-rw-r--r--cpu-common.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/cpu-common.c b/cpu-common.c
index ce78273af5..7ae136f98c 100644
--- a/cpu-common.c
+++ b/cpu-common.c
@@ -331,6 +331,17 @@ void async_safe_run_on_cpu(CPUState *cpu, run_on_cpu_func func,
     queue_work_on_cpu(cpu, wi);
 }
 
+void free_queued_cpu_work(CPUState *cpu)
+{
+    while (!QSIMPLEQ_EMPTY(&cpu->work_list)) {
+        struct qemu_work_item *wi = QSIMPLEQ_FIRST(&cpu->work_list);
+        QSIMPLEQ_REMOVE_HEAD(&cpu->work_list, node);
+        if (wi->free) {
+            g_free(wi);
+        }
+    }
+}
+
 void process_queued_cpu_work(CPUState *cpu)
 {
     struct qemu_work_item *wi;