]> Git Repo - qemu.git/commitdiff
target-i386: Unset cannot_destroy_with_object_finalize_yet
authorEduardo Habkost <[email protected]>
Mon, 10 Oct 2016 19:31:45 +0000 (16:31 -0300)
committerEduardo Habkost <[email protected]>
Mon, 17 Oct 2016 17:44:49 +0000 (15:44 -0200)
TYPE_X86_CPU now call cpu_exec_init() on realize, so we don't
need to set cannot_destroy_with_object_finalize_yet anymore.

Reviewed-by: Igor Mammedov <[email protected]>
Signed-off-by: Eduardo Habkost <[email protected]>
target-i386/cpu.c

index 5b3ad787581e9ca3f186b70c7aa7a37370539a58..1372419594a1d761a6ca72844dee622dd916ad66 100644 (file)
@@ -3582,11 +3582,6 @@ static void x86_cpu_common_class_init(ObjectClass *oc, void *data)
     cc->cpu_exec_exit = x86_cpu_exec_exit;
 
     dc->cannot_instantiate_with_device_add_yet = false;
-    /*
-     * Reason: x86_cpu_initfn() calls cpu_exec_init(), which saves the
-     * object in cpus -> dangling pointer after final object_unref().
-     */
-    dc->cannot_destroy_with_object_finalize_yet = true;
 }
 
 static const TypeInfo x86_cpu_type_info = {
This page took 0.028376 seconds and 4 git commands to generate.