* [Qemu-devel] [PATCH] i386: Return migration-safe field on query-cpu-definitions
@ 2017-01-16 18:12 Eduardo Habkost
2017-01-16 18:35 ` David Hildenbrand
0 siblings, 1 reply; 2+ messages in thread
From: Eduardo Habkost @ 2017-01-16 18:12 UTC (permalink / raw)
To: qemu-devel
Cc: Jiri Denemark, David Hildenbrand, Richard Henderson,
Igor Mammedov
Return the migration-safe field on query-cpu-definitions. All CPU
models in x86 are migration-safe except "host".
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
---
target/i386/cpu-qom.h | 2 ++
target/i386/cpu.c | 3 +++
2 files changed, 5 insertions(+)
diff --git a/target/i386/cpu-qom.h b/target/i386/cpu-qom.h
index 7c9a07ae65..8cd607e9a2 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.
+ * @migration_safe: See CpuDefinitionInfo::migration_safe
* @parent_realize: The parent class' realize handler.
* @parent_reset: The parent class' reset handler.
*
@@ -62,6 +63,7 @@ typedef struct X86CPUClass {
X86CPUDefinition *cpu_def;
bool kvm_required;
+ bool migration_safe;
/* Optional description of CPU model.
* If unavailable, cpu_def->model_id is used */
diff --git a/target/i386/cpu.c b/target/i386/cpu.c
index 337636a96a..ec6eaf215c 100644
--- a/target/i386/cpu.c
+++ b/target/i386/cpu.c
@@ -2209,6 +2209,8 @@ static void x86_cpu_definition_entry(gpointer data, gpointer user_data)
x86_cpu_class_check_missing_features(cc, &info->unavailable_features);
info->has_unavailable_features = true;
info->q_typename = g_strdup(object_class_get_name(oc));
+ info->migration_safe = cc->migration_safe;
+ info->has_migration_safe = true;
entry = g_malloc0(sizeof(*entry));
entry->value = info;
@@ -2356,6 +2358,7 @@ static void x86_cpu_cpudef_class_init(ObjectClass *oc, void *data)
X86CPUClass *xcc = X86_CPU_CLASS(oc);
xcc->cpu_def = cpudef;
+ xcc->migration_safe = true;
}
static void x86_register_cpudef_type(X86CPUDefinition *def)
--
2.11.0.259.g40922b1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH] i386: Return migration-safe field on query-cpu-definitions
2017-01-16 18:12 [Qemu-devel] [PATCH] i386: Return migration-safe field on query-cpu-definitions Eduardo Habkost
@ 2017-01-16 18:35 ` David Hildenbrand
0 siblings, 0 replies; 2+ messages in thread
From: David Hildenbrand @ 2017-01-16 18:35 UTC (permalink / raw)
To: Eduardo Habkost, qemu-devel
Cc: Jiri Denemark, Richard Henderson, Igor Mammedov
Am 16.01.2017 um 19:12 schrieb Eduardo Habkost:
> Return the migration-safe field on query-cpu-definitions. All CPU
> models in x86 are migration-safe except "host".
>
> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
> ---
> target/i386/cpu-qom.h | 2 ++
> target/i386/cpu.c | 3 +++
> 2 files changed, 5 insertions(+)
>
> diff --git a/target/i386/cpu-qom.h b/target/i386/cpu-qom.h
> index 7c9a07ae65..8cd607e9a2 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.
> + * @migration_safe: See CpuDefinitionInfo::migration_safe
> * @parent_realize: The parent class' realize handler.
> * @parent_reset: The parent class' reset handler.
> *
> @@ -62,6 +63,7 @@ typedef struct X86CPUClass {
> X86CPUDefinition *cpu_def;
>
> bool kvm_required;
> + bool migration_safe;
>
> /* Optional description of CPU model.
> * If unavailable, cpu_def->model_id is used */
> diff --git a/target/i386/cpu.c b/target/i386/cpu.c
> index 337636a96a..ec6eaf215c 100644
> --- a/target/i386/cpu.c
> +++ b/target/i386/cpu.c
> @@ -2209,6 +2209,8 @@ static void x86_cpu_definition_entry(gpointer data, gpointer user_data)
> x86_cpu_class_check_missing_features(cc, &info->unavailable_features);
> info->has_unavailable_features = true;
> info->q_typename = g_strdup(object_class_get_name(oc));
> + info->migration_safe = cc->migration_safe;
> + info->has_migration_safe = true;
>
> entry = g_malloc0(sizeof(*entry));
> entry->value = info;
> @@ -2356,6 +2358,7 @@ static void x86_cpu_cpudef_class_init(ObjectClass *oc, void *data)
> X86CPUClass *xcc = X86_CPU_CLASS(oc);
>
> xcc->cpu_def = cpudef;
> + xcc->migration_safe = true;
> }
>
> static void x86_register_cpudef_type(X86CPUDefinition *def)
>
Acked-by: David Hildenbrand <david@redhat.com>
--
David
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-01-16 18:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-16 18:12 [Qemu-devel] [PATCH] i386: Return migration-safe field on query-cpu-definitions Eduardo Habkost
2017-01-16 18:35 ` David Hildenbrand
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).