qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL v3 0/3] QOM CPUState patch queue 2014-09-05
@ 2014-09-05 14:39 Andreas Färber
  2014-09-05 14:39 ` [Qemu-devel] [PULL v3 1/3] exec: Save CPUState::exception_index field Andreas Färber
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Andreas Färber @ 2014-09-05 14:39 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Andreas Färber, Eduardo Habkost

Hello Peter,

This is my (corrected) QOM CPU patch queue. Please pull.

Regards,
Andreas

Cc: Peter Maydell <peter.maydell@linaro.org>

Cc: Eduardo Habkost <ehabkost@redhat.com>

The following changes since commit fd884c07658d02a96a882b8457d6d7a5cd71a407:

  Merge remote-tracking branch 'remotes/afaerber/tags/qom-devices-for-peter' into staging (2014-09-04 19:41:15 +0100)

are available in the git repository at:


  git://github.com/afaerber/qemu-cpu.git tags/qom-cpu-for-peter

for you to fetch changes up to c00c94abbdb82c39c22b6dd72875aa1ae0f4b2c0:

  target-i386: Reject invalid CPU feature names on the command-line (2014-09-05 16:37:07 +0200)

----------------------------------------------------------------
QOM CPUState and X86CPU

* Include exception state in CPU VMState
* Fix -cpu *,migratable=foo
* Error out on unknown -cpu *,+foo,-bar

----------------------------------------------------------------
Eduardo Habkost (2):
      target-i386: Support migratable=no properly
      target-i386: Reject invalid CPU feature names on the command-line

Pavel Dovgaluk (1):
      exec: Save CPUState::exception_index field

 exec.c                | 35 +++++++++++++++++++++++++++++++++++
 target-i386/cpu-qom.h |  1 +
 target-i386/cpu.c     | 32 ++++++++++++++++++++------------
 3 files changed, 56 insertions(+), 12 deletions(-)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Qemu-devel] [PULL v3 1/3] exec: Save CPUState::exception_index field
  2014-09-05 14:39 [Qemu-devel] [PULL v3 0/3] QOM CPUState patch queue 2014-09-05 Andreas Färber
@ 2014-09-05 14:39 ` Andreas Färber
  2014-09-05 14:39 ` [Qemu-devel] [PULL v3 2/3] target-i386: Support migratable=no properly Andreas Färber
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Andreas Färber @ 2014-09-05 14:39 UTC (permalink / raw)
  To: qemu-devel
  Cc: Paolo Bonzini, qemu-stable, Pavel Dovgalyuk, Andreas Färber

From: Pavel Dovgaluk <Pavel.Dovgaluk@ispras.ru>

This patch adds a subsection with exception_index field to the VMState for
correct saving the CPU state.
Without this patch, simulator could miss the pending exception in the saved
virtual machine state.

Signed-off-by: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
Cc: qemu-stable@nongnu.org
Signed-off-by: Andreas Färber <afaerber@suse.de>
---
 exec.c | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/exec.c b/exec.c
index 5122a33..7dddcc8 100644
--- a/exec.c
+++ b/exec.c
@@ -430,15 +430,50 @@ static int cpu_common_post_load(void *opaque, int version_id)
     return 0;
 }
 
+static int cpu_common_pre_load(void *opaque)
+{
+    CPUState *cpu = opaque;
+
+    cpu->exception_index = 0;
+
+    return 0;
+}
+
+static bool cpu_common_exception_index_needed(void *opaque)
+{
+    CPUState *cpu = opaque;
+
+    return cpu->exception_index != 0;
+}
+
+static const VMStateDescription vmstate_cpu_common_exception_index = {
+    .name = "cpu_common/exception_index",
+    .version_id = 1,
+    .minimum_version_id = 1,
+    .fields = (VMStateField[]) {
+        VMSTATE_INT32(exception_index, CPUState),
+        VMSTATE_END_OF_LIST()
+    }
+};
+
 const VMStateDescription vmstate_cpu_common = {
     .name = "cpu_common",
     .version_id = 1,
     .minimum_version_id = 1,
+    .pre_load = cpu_common_pre_load,
     .post_load = cpu_common_post_load,
     .fields = (VMStateField[]) {
         VMSTATE_UINT32(halted, CPUState),
         VMSTATE_UINT32(interrupt_request, CPUState),
         VMSTATE_END_OF_LIST()
+    },
+    .subsections = (VMStateSubsection[]) {
+        {
+            .vmsd = &vmstate_cpu_common_exception_index,
+            .needed = cpu_common_exception_index_needed,
+        } , {
+            /* empty */
+        }
     }
 };
 
-- 
1.8.4.5

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Qemu-devel] [PULL v3 2/3] target-i386: Support migratable=no properly
  2014-09-05 14:39 [Qemu-devel] [PULL v3 0/3] QOM CPUState patch queue 2014-09-05 Andreas Färber
  2014-09-05 14:39 ` [Qemu-devel] [PULL v3 1/3] exec: Save CPUState::exception_index field Andreas Färber
@ 2014-09-05 14:39 ` Andreas Färber
  2014-09-05 14:39 ` [Qemu-devel] [PULL v3 3/3] target-i386: Reject invalid CPU feature names on the command-line Andreas Färber
  2014-09-05 16:00 ` [Qemu-devel] [PULL v3 0/3] QOM CPUState patch queue 2014-09-05 Peter Maydell
  3 siblings, 0 replies; 5+ messages in thread
From: Andreas Färber @ 2014-09-05 14:39 UTC (permalink / raw)
  To: qemu-devel; +Cc: Eduardo Habkost, Andreas Färber, qemu-stable

From: Eduardo Habkost <ehabkost@redhat.com>

When the "migratable" property was implemented, the behavior was tested
by changing the default on the code, but actually using the option on
the command-line (e.g. "-cpu host,migratable=false") doesn't work as
expected. This is a regression for a common use case of "-cpu host",
which is to enable features that are supported by the host CPU + kernel
before feature-specific code is added to QEMU.

Fix this by initializing the feature words for "-cpu host" on
x86_cpu_parse_featurestr(), right after parsing the CPU options.

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Cc: qemu-stable@nongnu.org
Signed-off-by: Andreas Färber <afaerber@suse.de>
---
 target-i386/cpu-qom.h |  1 +
 target-i386/cpu.c     | 23 +++++++++++++++--------
 2 files changed, 16 insertions(+), 8 deletions(-)

diff --git a/target-i386/cpu-qom.h b/target-i386/cpu-qom.h
index 71a1b97..7755466 100644
--- a/target-i386/cpu-qom.h
+++ b/target-i386/cpu-qom.h
@@ -92,6 +92,7 @@ typedef struct X86CPU {
     bool enforce_cpuid;
     bool expose_kvm;
     bool migratable;
+    bool host_features;
 
     /* if true the CPUID code directly forward host cache leaves to the guest */
     bool cache_info_passthrough;
diff --git a/target-i386/cpu.c b/target-i386/cpu.c
index fa811a0..a5826ec 100644
--- a/target-i386/cpu.c
+++ b/target-i386/cpu.c
@@ -1254,6 +1254,9 @@ void x86_cpu_compat_set_features(const char *cpu_model, FeatureWord w,
     }
 }
 
+static uint32_t x86_cpu_get_supported_feature_word(FeatureWord w,
+                                                   bool migratable_only);
+
 #ifdef CONFIG_KVM
 
 static int cpu_x86_fill_model_id(char *str)
@@ -1310,26 +1313,23 @@ static void host_x86_cpu_class_init(ObjectClass *oc, void *data)
     dc->props = host_x86_cpu_properties;
 }
 
-static uint32_t x86_cpu_get_supported_feature_word(FeatureWord w,
-                                                   bool migratable_only);
-
 static void host_x86_cpu_initfn(Object *obj)
 {
     X86CPU *cpu = X86_CPU(obj);
     CPUX86State *env = &cpu->env;
     KVMState *s = kvm_state;
-    FeatureWord w;
 
     assert(kvm_enabled());
 
+    /* We can't fill the features array here because we don't know yet if
+     * "migratable" is true or false.
+     */
+    cpu->host_features = true;
+
     env->cpuid_level = kvm_arch_get_supported_cpuid(s, 0x0, 0, R_EAX);
     env->cpuid_xlevel = kvm_arch_get_supported_cpuid(s, 0x80000000, 0, R_EAX);
     env->cpuid_xlevel2 = kvm_arch_get_supported_cpuid(s, 0xC0000000, 0, R_EAX);
 
-    for (w = 0; w < FEATURE_WORDS; w++) {
-        env->features[w] =
-            x86_cpu_get_supported_feature_word(w, cpu->migratable);
-    }
     object_property_set_bool(OBJECT(cpu), true, "pmu", &error_abort);
 }
 
@@ -1828,6 +1828,13 @@ static void x86_cpu_parse_featurestr(CPUState *cs, char *features,
         featurestr = strtok(NULL, ",");
     }
 
+    if (cpu->host_features) {
+        for (w = 0; w < FEATURE_WORDS; w++) {
+            env->features[w] =
+                x86_cpu_get_supported_feature_word(w, cpu->migratable);
+        }
+    }
+
     for (w = 0; w < FEATURE_WORDS; w++) {
         env->features[w] |= plus_features[w];
         env->features[w] &= ~minus_features[w];
-- 
1.8.4.5

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Qemu-devel] [PULL v3 3/3] target-i386: Reject invalid CPU feature names on the command-line
  2014-09-05 14:39 [Qemu-devel] [PULL v3 0/3] QOM CPUState patch queue 2014-09-05 Andreas Färber
  2014-09-05 14:39 ` [Qemu-devel] [PULL v3 1/3] exec: Save CPUState::exception_index field Andreas Färber
  2014-09-05 14:39 ` [Qemu-devel] [PULL v3 2/3] target-i386: Support migratable=no properly Andreas Färber
@ 2014-09-05 14:39 ` Andreas Färber
  2014-09-05 16:00 ` [Qemu-devel] [PULL v3 0/3] QOM CPUState patch queue 2014-09-05 Peter Maydell
  3 siblings, 0 replies; 5+ messages in thread
From: Andreas Färber @ 2014-09-05 14:39 UTC (permalink / raw)
  To: qemu-devel; +Cc: Eduardo Habkost, Andreas Färber

From: Eduardo Habkost <ehabkost@redhat.com>

Instead of simply printing a warning, report an error when invalid CPU
options are provided on the CPU model string.

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

diff --git a/target-i386/cpu.c b/target-i386/cpu.c
index a5826ec..88b64d8 100644
--- a/target-i386/cpu.c
+++ b/target-i386/cpu.c
@@ -592,7 +592,8 @@ static bool lookup_feature(uint32_t *pval, const char *s, const char *e,
 }
 
 static void add_flagname_to_bitmaps(const char *flagname,
-                                    FeatureWordArray words)
+                                    FeatureWordArray words,
+                                    Error **errp)
 {
     FeatureWord w;
     for (w = 0; w < FEATURE_WORDS; w++) {
@@ -603,7 +604,7 @@ static void add_flagname_to_bitmaps(const char *flagname,
         }
     }
     if (w == FEATURE_WORDS) {
-        fprintf(stderr, "CPU feature %s not found\n", flagname);
+        error_setg(errp, "CPU feature %s not found", flagname);
     }
 }
 
@@ -1761,9 +1762,9 @@ static void x86_cpu_parse_featurestr(CPUState *cs, char *features,
     while (featurestr) {
         char *val;
         if (featurestr[0] == '+') {
-            add_flagname_to_bitmaps(featurestr + 1, plus_features);
+            add_flagname_to_bitmaps(featurestr + 1, plus_features, &local_err);
         } else if (featurestr[0] == '-') {
-            add_flagname_to_bitmaps(featurestr + 1, minus_features);
+            add_flagname_to_bitmaps(featurestr + 1, minus_features, &local_err);
         } else if ((val = strchr(featurestr, '='))) {
             *val = 0; val++;
             feat2prop(featurestr);
-- 
1.8.4.5

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PULL v3 0/3] QOM CPUState patch queue 2014-09-05
  2014-09-05 14:39 [Qemu-devel] [PULL v3 0/3] QOM CPUState patch queue 2014-09-05 Andreas Färber
                   ` (2 preceding siblings ...)
  2014-09-05 14:39 ` [Qemu-devel] [PULL v3 3/3] target-i386: Reject invalid CPU feature names on the command-line Andreas Färber
@ 2014-09-05 16:00 ` Peter Maydell
  3 siblings, 0 replies; 5+ messages in thread
From: Peter Maydell @ 2014-09-05 16:00 UTC (permalink / raw)
  To: Andreas Färber; +Cc: QEMU Developers, Eduardo Habkost

On 5 September 2014 15:39, Andreas Färber <afaerber@suse.de> wrote:
> Hello Peter,
>
> This is my (corrected) QOM CPU patch queue. Please pull.
>
> Regards,
> Andreas
>
> Cc: Peter Maydell <peter.maydell@linaro.org>
>
> Cc: Eduardo Habkost <ehabkost@redhat.com>
>
> The following changes since commit fd884c07658d02a96a882b8457d6d7a5cd71a407:
>
>   Merge remote-tracking branch 'remotes/afaerber/tags/qom-devices-for-peter' into staging (2014-09-04 19:41:15 +0100)
>
> are available in the git repository at:
>
>
>   git://github.com/afaerber/qemu-cpu.git tags/qom-cpu-for-peter
>
> for you to fetch changes up to c00c94abbdb82c39c22b6dd72875aa1ae0f4b2c0:
>
>   target-i386: Reject invalid CPU feature names on the command-line (2014-09-05 16:37:07 +0200)
>
> ----------------------------------------------------------------
> QOM CPUState and X86CPU
>
> * Include exception state in CPU VMState
> * Fix -cpu *,migratable=foo
> * Error out on unknown -cpu *,+foo,-bar
>
> ----------------------------------------------------------------
> Eduardo Habkost (2):
>       target-i386: Support migratable=no properly
>       target-i386: Reject invalid CPU feature names on the command-line
>
> Pavel Dovgaluk (1):
>       exec: Save CPUState::exception_index field
>
>  exec.c                | 35 +++++++++++++++++++++++++++++++++++
>  target-i386/cpu-qom.h |  1 +
>  target-i386/cpu.c     | 32 ++++++++++++++++++++------------
>  3 files changed, 56 insertions(+), 12 deletions(-)


Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-09-05 16:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-05 14:39 [Qemu-devel] [PULL v3 0/3] QOM CPUState patch queue 2014-09-05 Andreas Färber
2014-09-05 14:39 ` [Qemu-devel] [PULL v3 1/3] exec: Save CPUState::exception_index field Andreas Färber
2014-09-05 14:39 ` [Qemu-devel] [PULL v3 2/3] target-i386: Support migratable=no properly Andreas Färber
2014-09-05 14:39 ` [Qemu-devel] [PULL v3 3/3] target-i386: Reject invalid CPU feature names on the command-line Andreas Färber
2014-09-05 16:00 ` [Qemu-devel] [PULL v3 0/3] QOM CPUState patch queue 2014-09-05 Peter Maydell

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).