]> git.proxmox.com Git - mirror_qemu.git/blobdiff - target-s390x/misc_helper.c
cpu: Use QTAILQ for CPU list
[mirror_qemu.git] / target-s390x / misc_helper.c
index 4afd7dab1c2a81f31f67ffecddb5fd0888ce5b47..16909071696bda612436b6ad3cdbeb7618337081 100644 (file)
@@ -183,12 +183,12 @@ uint32_t HELPER(servc)(CPUS390XState *env, uint64_t r1, uint64_t r2)
 #ifndef CONFIG_USER_ONLY
 static void cpu_reset_all(void)
 {
-    CPUState *cpu;
+    CPUState *cs;
     S390CPUClass *scc;
 
-    for (cpu = first_cpu; cpu; cpu = cpu->next_cpu) {
-        scc = S390_CPU_GET_CLASS(CPU(cpu));
-        scc->cpu_reset(CPU(cpu));
+    CPU_FOREACH(cs) {
+        scc = S390_CPU_GET_CLASS(cs);
+        scc->cpu_reset(cs);
     }
 }