From: Eduardo Habkost <ehabkost@redhat.com>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: Paolo Bonzini <pbonzini@redhat.com>,
Richard Henderson <rth@twiddle.net>,
qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 02/11] i386: Add ordering field to CPUClass
Date: Mon, 27 Feb 2017 13:24:52 -0300 [thread overview]
Message-ID: <20170227162501.29280-3-ehabkost@redhat.com> (raw)
In-Reply-To: <20170227162501.29280-1-ehabkost@redhat.com>
Instead of using kvm_enabled to order the "-cpu help" list, use a
new "ordering" field for that.
Message-Id: <20170119210449.11991-3-ehabkost@redhat.com>
Tested-by: Jiri Denemark <jdenemar@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
---
target/i386/cpu-qom.h | 2 ++
target/i386/cpu.c | 8 ++++----
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/target/i386/cpu-qom.h b/target/i386/cpu-qom.h
index 8cd607e9a2..14abd0a8c1 100644
--- a/target/i386/cpu-qom.h
+++ b/target/i386/cpu-qom.h
@@ -48,6 +48,7 @@ typedef struct X86CPUDefinition X86CPUDefinition;
* X86CPUClass:
* @cpu_def: CPU model definition
* @kvm_required: Whether CPU model requires KVM to be enabled.
+ * @ordering: Ordering on the "-cpu help" CPU model list.
* @migration_safe: See CpuDefinitionInfo::migration_safe
* @parent_realize: The parent class' realize handler.
* @parent_reset: The parent class' reset handler.
@@ -63,6 +64,7 @@ typedef struct X86CPUClass {
X86CPUDefinition *cpu_def;
bool kvm_required;
+ int ordering;
bool migration_safe;
/* Optional description of CPU model.
diff --git a/target/i386/cpu.c b/target/i386/cpu.c
index 2adee42035..8efe4de89e 100644
--- a/target/i386/cpu.c
+++ b/target/i386/cpu.c
@@ -1550,6 +1550,7 @@ static void host_x86_cpu_class_init(ObjectClass *oc, void *data)
uint32_t eax = 0, ebx = 0, ecx = 0, edx = 0;
xcc->kvm_required = true;
+ xcc->ordering = 9;
host_cpuid(0x0, 0, &eax, &ebx, &ecx, &edx);
x86_cpu_vendor_words2str(host_cpudef.vendor, ebx, edx, ecx);
@@ -2126,7 +2127,7 @@ static void listflags(FILE *f, fprintf_function print, const char **featureset)
}
}
-/* Sort alphabetically by type name, listing kvm_required models last. */
+/* Sort alphabetically by type name, respecting X86CPUClass::ordering. */
static gint x86_cpu_list_compare(gconstpointer a, gconstpointer b)
{
ObjectClass *class_a = (ObjectClass *)a;
@@ -2135,9 +2136,8 @@ static gint x86_cpu_list_compare(gconstpointer a, gconstpointer b)
X86CPUClass *cc_b = X86_CPU_CLASS(class_b);
const char *name_a, *name_b;
- if (cc_a->kvm_required != cc_b->kvm_required) {
- /* kvm_required items go last */
- return cc_a->kvm_required ? 1 : -1;
+ if (cc_a->ordering != cc_b->ordering) {
+ return cc_a->ordering - cc_b->ordering;
} else {
name_a = object_class_get_name(class_a);
name_b = object_class_get_name(class_b);
--
2.11.0.259.g40922b1
next prev parent reply other threads:[~2017-02-27 16:25 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-27 16:24 [Qemu-devel] [PULL 00/11] x86 queue, 2017-02-27 Eduardo Habkost
2017-02-27 16:24 ` [Qemu-devel] [PULL 01/11] i386: Unset cannot_destroy_with_object_finalize_yet on "host" model Eduardo Habkost
2017-02-27 16:24 ` Eduardo Habkost [this message]
2017-02-27 16:24 ` [Qemu-devel] [PULL 03/11] i386: Rename X86CPU::host_features to X86CPU::max_features Eduardo Habkost
2017-02-27 16:24 ` [Qemu-devel] [PULL 04/11] i386: Reorganize and document CPUID initialization steps Eduardo Habkost
2017-02-27 16:24 ` [Qemu-devel] [PULL 05/11] qapi-schema: Comment about full expansion of non-migration-safe models Eduardo Habkost
2017-02-27 16:24 ` [Qemu-devel] [PULL 06/11] i386: Create "max" CPU model Eduardo Habkost
2017-02-27 16:24 ` [Qemu-devel] [PULL 07/11] i386: Make "max" model not use any host CPUID info on TCG Eduardo Habkost
2017-02-27 16:24 ` [Qemu-devel] [PULL 08/11] i386: Don't set CPUClass::cpu_def on "max" model Eduardo Habkost
2017-02-27 16:24 ` [Qemu-devel] [PULL 09/11] i386: Define static "base" CPU model Eduardo Habkost
2017-02-27 16:25 ` [Qemu-devel] [PULL 10/11] i386: Implement query-cpu-model-expansion QMP command Eduardo Habkost
2017-02-27 16:25 ` [Qemu-devel] [PULL 11/11] i386: Improve query-cpu-model-expansion full mode Eduardo Habkost
2017-02-27 19:16 ` [Qemu-devel] [PULL 00/11] x86 queue, 2017-02-27 Peter Maydell
2017-02-27 19:41 ` [Qemu-devel] travis-ci 'make check' timeouts (was Re: [PULL 00/11] x86 queue, 2017-02-27) Eduardo Habkost
2017-02-27 19:57 ` Greg Kurz
2017-02-28 19:12 ` Eduardo Habkost
2017-02-28 19:17 ` Peter Maydell
2017-03-02 15:39 ` Eduardo Habkost
2017-03-02 15:54 ` Paolo Bonzini
2017-03-02 16:07 ` Eduardo Habkost
2017-03-02 16:16 ` Peter Maydell
2017-03-02 18:00 ` Eduardo Habkost
2017-03-02 16:22 ` Paolo Bonzini
2017-03-02 12:29 ` [Qemu-devel] [PULL 00/11] x86 queue, 2017-02-27 Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170227162501.29280-3-ehabkost@redhat.com \
--to=ehabkost@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).