]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
cpu_x86: Use for loop in x86Decode
authorJiri Denemark <jdenemar@redhat.com>
Thu, 12 May 2016 12:53:31 +0000 (14:53 +0200)
committerJiri Denemark <jdenemar@redhat.com>
Mon, 16 May 2016 13:46:28 +0000 (15:46 +0200)
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
src/cpu/cpu_x86.c

index 56d59fac6158fa9fc33473dbee494b63acda3df0..013d21ad43b1f09cb4098865e63058e46be53ce5 100644 (file)
@@ -1626,8 +1626,7 @@ x86Decode(virCPUDefPtr cpu,
     if (!data || !(map = virCPUx86GetMap()))
         return -1;
 
-    candidate = map->models;
-    while (candidate != NULL) {
+    for (candidate = map->models; candidate; candidate = candidate->next) {
         if (!cpuModelIsAllowed(candidate->name, models, nmodels)) {
             if (preferred && STREQ(candidate->name, preferred)) {
                 if (cpu->fallback != VIR_CPU_FALLBACK_ALLOW) {
@@ -1644,7 +1643,7 @@ x86Decode(virCPUDefPtr cpu,
                 VIR_DEBUG("CPU model %s not allowed by hypervisor; ignoring",
                           candidate->name);
             }
-            goto next;
+            continue;
         }
 
         if (!(cpuCandidate = x86DataToCPU(data, candidate, map)))
@@ -1657,7 +1656,7 @@ x86Decode(virCPUDefPtr cpu,
                       candidate->vendor->name, candidate->name,
                       cpuCandidate->vendor);
             virCPUDefFree(cpuCandidate);
-            goto next;
+            continue;
         }
 
         if ((rc = x86DecodeUseCandidate(cpuModel, cpuCandidate, preferred,
@@ -1670,9 +1669,6 @@ x86Decode(virCPUDefPtr cpu,
         } else {
             virCPUDefFree(cpuCandidate);
         }
-
-    next:
-        candidate = candidate->next;
     }
 
     if (cpuModel == NULL) {