qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Andreas Färber" <afaerber@suse.de>
To: qemu-devel@nongnu.org
Cc: "Eduardo Habkost" <ehabkost@redhat.com>,
	"Andreas Färber" <afaerber@suse.de>
Subject: [Qemu-devel] [PULL 04/19] target-i386: Pass FeatureWord argument to report_unavailable_features()
Date: Thu, 26 Jun 2014 00:12:04 +0200	[thread overview]
Message-ID: <1403734339-14405-5-git-send-email-afaerber@suse.de> (raw)
In-Reply-To: <1403734339-14405-1-git-send-email-afaerber@suse.de>

From: Eduardo Habkost <ehabkost@redhat.com>

This will help us simplify the code that calls
report_unavailable_features() later.

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
---
 target-i386/cpu.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/target-i386/cpu.c b/target-i386/cpu.c
index f8c4993..f2c3583 100644
--- a/target-i386/cpu.c
+++ b/target-i386/cpu.c
@@ -1234,8 +1234,9 @@ static const TypeInfo host_x86_cpu_type_info = {
 
 #endif
 
-static void report_unavailable_features(FeatureWordInfo *f, uint32_t mask)
+static void report_unavailable_features(FeatureWord w, uint32_t mask)
 {
+    FeatureWordInfo *f = &feature_word_info[w];
     int i;
 
     for (i = 0; i < 32; ++i) {
@@ -1840,7 +1841,7 @@ static int filter_features_for_kvm(X86CPU *cpu)
         cpu->filtered_features[w] = requested_features & ~env->features[w];
         if (cpu->filtered_features[w]) {
             if (cpu->check_cpuid || cpu->enforce_cpuid) {
-                report_unavailable_features(wi, cpu->filtered_features[w]);
+                report_unavailable_features(w, cpu->filtered_features[w]);
             }
             rv = 1;
         }
-- 
1.8.4.5

  parent reply	other threads:[~2014-06-25 22:12 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-25 22:12 [Qemu-devel] [PULL 00/19] QOM CPUState patch queue 2014-06-26 Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 01/19] target-i386: kvm: Don't enable MONITOR by default on any CPU model Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 02/19] target-i386: Simplify reporting of unavailable features Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 03/19] target-i386: Merge feature filtering/checking functions Andreas Färber
2014-06-25 22:12 ` Andreas Färber [this message]
2014-06-25 22:12 ` [Qemu-devel] [PULL 05/19] target-i386: Isolate KVM-specific code on CPU feature filtering logic Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 06/19] target-i386: Make TCG feature filtering more readable Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 07/19] target-i386: Filter FEAT_7_0_EBX TCG features too Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 08/19] target-i386: Filter KVM and 0xC0000001 features on TCG Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 09/19] target-i386: Define TCG_*_FEATURES earlier in cpu.c Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 10/19] target-i386: Loop-based copying and setting/unsetting of feature words Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 11/19] target-i386: Loop-based feature word filtering in TCG mode Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 12/19] target-i386: Support check/enforce flags in TCG mode, too Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 13/19] target-i386: Add "migratable" property to "host" CPU model Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 14/19] target-i386: Set migratable=yes by default on "host" CPU mooel Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 15/19] savevm: check vmsd for migratability status Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 16/19] target-i386: block migration and savevm if invariant tsc is exposed Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 17/19] target-i386: Support "invariant tsc" flag Andreas Färber
2014-08-08  7:07   ` chenliang (T)
2014-08-08 21:42     ` Marcelo Tosatti
2014-06-25 22:12 ` [Qemu-devel] [PULL 18/19] target-i386: Fix indentation of CPU model definitions Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 19/19] target-i386: Broadwell CPU model Andreas Färber
2014-06-26 12:57 ` [Qemu-devel] [PULL 00/19] QOM CPUState patch queue 2014-06-26 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=1403734339-14405-5-git-send-email-afaerber@suse.de \
    --to=afaerber@suse.de \
    --cc=ehabkost@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /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).