diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2016-10-10 16:31:45 -0300 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2016-10-17 15:44:49 -0200 |
commit | e9e60febc497ae9d446caba0bdb2e9597a72e37c (patch) | |
tree | 9ea6be3e8ea37418443bcedd8ae1992e9aa11398 /target-i386 | |
parent | 2a138ec3af871cd42a982eb401f16dcb74cba8d3 (diff) |
target-i386: Unset cannot_destroy_with_object_finalize_yet
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 <imammedo@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/cpu.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 5b3ad78758..1372419594 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -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 = { |