提交 1d34dff0 编写于 作者: P Paolo Bonzini 提交者: Michael Roth

qom: object_delete should unparent the object first

object_deinit is only called when the reference count goes to zero,
and yet tries to do an object_unparent.  Now, object_unparent
either does nothing or it will decrease the reference count.
Because we know the reference count is zero, the object_unparent
call in object_deinit is useless.

Instead, we need to disconnect the object from its parent just
before we remove the last reference apart from the parent's.  This
happens in object_delete.  Once we do this, all calls to
object_unparent peppered through QEMU can go away.
Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
(cherry picked from commit da5a44e8)
Signed-off-by: NMichael Roth <mdroth@linux.vnet.ibm.com>
上级 5330a894
...@@ -299,7 +299,6 @@ static void acpi_piix_eject_slot(PIIX4PMState *s, unsigned slots) ...@@ -299,7 +299,6 @@ static void acpi_piix_eject_slot(PIIX4PMState *s, unsigned slots)
if (pc->no_hotplug) { if (pc->no_hotplug) {
slot_free = false; slot_free = false;
} else { } else {
object_unparent(OBJECT(dev));
qdev_free(qdev); qdev_free(qdev);
} }
} }
......
...@@ -150,7 +150,6 @@ int qdev_init(DeviceState *dev) ...@@ -150,7 +150,6 @@ int qdev_init(DeviceState *dev)
rc = dc->init(dev); rc = dc->init(dev);
if (rc < 0) { if (rc < 0) {
object_unparent(OBJECT(dev));
qdev_free(dev); qdev_free(dev);
return rc; return rc;
} }
...@@ -241,7 +240,6 @@ void qbus_reset_all_fn(void *opaque) ...@@ -241,7 +240,6 @@ void qbus_reset_all_fn(void *opaque)
int qdev_simple_unplug_cb(DeviceState *dev) int qdev_simple_unplug_cb(DeviceState *dev)
{ {
/* just zap it */ /* just zap it */
object_unparent(OBJECT(dev));
qdev_free(dev); qdev_free(dev);
return 0; return 0;
} }
......
...@@ -87,9 +87,6 @@ static void unplug_nic(PCIBus *b, PCIDevice *d) ...@@ -87,9 +87,6 @@ static void unplug_nic(PCIBus *b, PCIDevice *d)
{ {
if (pci_get_word(d->config + PCI_CLASS_DEVICE) == if (pci_get_word(d->config + PCI_CLASS_DEVICE) ==
PCI_CLASS_NETWORK_ETHERNET) { PCI_CLASS_NETWORK_ETHERNET) {
/* Until qdev_free includes a call to object_unparent, we call it here
*/
object_unparent(&d->qdev.parent_obj);
qdev_free(&d->qdev); qdev_free(&d->qdev);
} }
} }
......
...@@ -347,8 +347,6 @@ static void object_deinit(Object *obj, TypeImpl *type) ...@@ -347,8 +347,6 @@ static void object_deinit(Object *obj, TypeImpl *type)
if (type_has_parent(type)) { if (type_has_parent(type)) {
object_deinit(obj, type_get_parent(type)); object_deinit(obj, type_get_parent(type));
} }
object_unparent(obj);
} }
void object_finalize(void *data) void object_finalize(void *data)
...@@ -385,8 +383,9 @@ Object *object_new(const char *typename) ...@@ -385,8 +383,9 @@ Object *object_new(const char *typename)
void object_delete(Object *obj) void object_delete(Object *obj)
{ {
object_unparent(obj);
g_assert(obj->ref == 1);
object_unref(obj); object_unref(obj);
g_assert(obj->ref == 0);
g_free(obj); g_free(obj);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册