]> Git Repo - qemu.git/blobdiff - target-i386/cpu.c
target-i386: Fix including "host" in -cpu ? output
[qemu.git] / target-i386 / cpu.c
index 6dd993f8473b2a34448670629f9a3b8d9ae9afef..b8690d2c41e832f7287e90cc71b0944bb50d45d5 100644 (file)
@@ -1463,9 +1463,12 @@ void x86_cpu_list(FILE *f, fprintf_function cpu_fprintf)
         snprintf(buf, sizeof(buf), "%s", def->name);
         (*cpu_fprintf)(f, "x86 %16s  %-48s\n", buf, def->model_id);
     }
-    if (kvm_enabled()) {
-        (*cpu_fprintf)(f, "x86 %16s\n", "[host]");
-    }
+#ifdef CONFIG_KVM
+    (*cpu_fprintf)(f, "x86 %16s  %-48s\n", "host",
+                   "KVM processor with all supported host features "
+                   "(only available in KVM mode)");
+#endif
+
     (*cpu_fprintf)(f, "\nRecognized CPUID flags:\n");
     listflags(buf, sizeof(buf), (uint32_t)~0, feature_name, 1);
     (*cpu_fprintf)(f, "  %s\n", buf);
This page took 0.022101 seconds and 4 git commands to generate.