diff options
author | Andreas Färber <afaerber@suse.de> | 2013-01-16 03:41:47 +0100 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2013-02-16 14:50:56 +0100 |
commit | 2b6f294cacd9f4e133a7813d22e1b4e87ac6b2a3 (patch) | |
tree | 78bd9f703541dfe423f9fc4a96d7dc31eca89c49 /target-i386/helper.c | |
parent | 149692667f8a46430127ca0555b38965f52177f5 (diff) |
target-i386: Update X86CPU to QOM realizefn
Adapt the signature of x86_cpu_realize(), hook up to
DeviceClass::realize and set realized = true in cpu_x86_init().
The QOM realizefn cannot depend on errp being non-NULL as in
cpu_x86_init(), so use a local Error to preserve error handling behavior
on APIC initialization errors.
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
[AF: Invoke parent's realizefn]
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'target-i386/helper.c')
-rw-r--r-- | target-i386/helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/helper.c b/target-i386/helper.c index d1cb4e2445..1a872fa3d8 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -1282,7 +1282,7 @@ X86CPU *cpu_x86_init(const char *cpu_model) return NULL; } - x86_cpu_realize(OBJECT(cpu), &error); + object_property_set_bool(OBJECT(cpu), true, "realized", &error); if (error) { error_free(error); object_unref(OBJECT(cpu)); |