summary refs log tree commit diff stats
path: root/hw/arm/digic.c
diff options
context:
space:
mode:
authorLaurent Vivier <lvivier@redhat.com>2017-04-14 10:37:14 +0200
committerMarkus Armbruster <armbru@redhat.com>2017-04-20 17:51:32 +0200
commit53d6e53189334fd0905e0a7c4bd9156d6a0d17fb (patch)
tree5f5f1d3e57dd669ef97863bfe91c10d16fb199d1 /hw/arm/digic.c
parent359c41abe32638adad503e386969fa428cecff52 (diff)
downloadfocaccia-qemu-53d6e53189334fd0905e0a7c4bd9156d6a0d17fb.tar.gz
focaccia-qemu-53d6e53189334fd0905e0a7c4bd9156d6a0d17fb.zip
arm: remove remaining cannot_destroy_with_object_finalize_yet
With commit ce5b1bbf624b ("exec: move cpu_exec_init() calls to
realize functions"), we can now remove all the
remaining cannot_destroy_with_object_finalize_yet as
unsafe references have been moved to cpu_exec_realizefn().
(tested with QOM command provided by commit 4c315c27).

Suggested-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20170414083717.13641-2-lvivier@redhat.com>
Acked-by: Alistair Francis <alistair.francis@xilinx.com>
Acked-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'hw/arm/digic.c')
-rw-r--r--hw/arm/digic.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/hw/arm/digic.c b/hw/arm/digic.c
index d60ea395f4..94f32637f0 100644
--- a/hw/arm/digic.c
+++ b/hw/arm/digic.c
@@ -101,12 +101,6 @@ static void digic_class_init(ObjectClass *oc, void *data)
     DeviceClass *dc = DEVICE_CLASS(oc);
 
     dc->realize = digic_realize;
-
-    /*
-     * Reason: creates an ARM CPU, thus use after free(), see
-     * arm_cpu_class_init()
-     */
-    dc->cannot_destroy_with_object_finalize_yet = true;
 }
 
 static const TypeInfo digic_type_info = {