[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [RFC 6/6] i386: -cpu help: remove reference to specific CPU
From: |
Eduardo Habkost |
Subject: |
[Qemu-devel] [RFC 6/6] i386: -cpu help: remove reference to specific CPUID leaves/registers |
Date: |
Fri, 17 Aug 2012 14:53:42 -0300 |
The -cpu configuration interface is based on a list of feature names or
properties, on a single namespace, so there's no need to mention on
which CPUID leaf/register each flag is located.
Signed-off-by: Eduardo Habkost <address@hidden>
---
target-i386/cpu.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/target-i386/cpu.c b/target-i386/cpu.c
index a71c2fc..0a03c80 100644
--- a/target-i386/cpu.c
+++ b/target-i386/cpu.c
@@ -1297,13 +1297,13 @@ void x86_cpu_list(FILE *f, fprintf_function cpu_fprintf)
}
(*cpu_fprintf)(f, "\nRecognized CPUID flags:\n");
listflags(buf, sizeof(buf), (uint32_t)~0, feature_name, 1);
- (*cpu_fprintf)(f, " f_edx: %s\n", buf);
+ (*cpu_fprintf)(f, " %s\n", buf);
listflags(buf, sizeof(buf), (uint32_t)~0, ext_feature_name, 1);
- (*cpu_fprintf)(f, " f_ecx: %s\n", buf);
+ (*cpu_fprintf)(f, " %s\n", buf);
listflags(buf, sizeof(buf), (uint32_t)~0, ext2_feature_name, 1);
- (*cpu_fprintf)(f, " extf_edx: %s\n", buf);
+ (*cpu_fprintf)(f, " %s\n", buf);
listflags(buf, sizeof(buf), (uint32_t)~0, ext3_feature_name, 1);
- (*cpu_fprintf)(f, " extf_ecx: %s\n", buf);
+ (*cpu_fprintf)(f, " %s\n", buf);
}
CpuDefinitionInfoList *qmp_query_cpu_definitions(Error **errp)
--
1.7.11.2
- [Qemu-devel] [RFC 0/6] i386: CPU: remove duplicate feature names, Eduardo Habkost, 2012/08/17
- [Qemu-devel] [RFC 4/6] i386: kvm: use a #define for the set of alias feature bits, Eduardo Habkost, 2012/08/17
- [Qemu-devel] [RFC 2/6] i386: kill cpudef config section support, Eduardo Habkost, 2012/08/17
- [Qemu-devel] [RFC 3/6] i386: kvm: bit 10 of CPUID[8000_0001].EDX is reserved, Eduardo Habkost, 2012/08/17
- [Qemu-devel] [RFC 1/6] x86_cpudef_setup: coding style change, Eduardo Habkost, 2012/08/17
- [Qemu-devel] [RFC 6/6] i386: -cpu help: remove reference to specific CPUID leaves/registers,
Eduardo Habkost <=
- [Qemu-devel] [RFC 5/6] i386: cpu: eliminate duplicate feature names, Eduardo Habkost, 2012/08/17
- Re: [Qemu-devel] [RFC 0/6] i386: CPU: remove duplicate feature names, Igor Mammedov, 2012/08/20