qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 05/10] qdev: finalize of qbus, qdev will not the


From: Paolo Bonzini
Subject: Re: [Qemu-devel] [PATCH 05/10] qdev: finalize of qbus, qdev will not the right place to free children
Date: Fri, 24 Aug 2012 16:50:06 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:14.0) Gecko/20120717 Thunderbird/14.0

Il 24/08/2012 11:49, Liu Ping Fan ha scritto:
> From: Liu Ping Fan <address@hidden>
> 
> When breaking big lock, the child object can be hold by mmio-dispatch,
> and it is not right to free them when their parent gone.
> We will isolate and release the children by qdev_delete_subtree(),
> and let each object manage its own life cycle.

I think this makes sense, but is it already working at this point of the
series?  That is, before patch 7 starts using qdev_delete_subtree()?

Paolo

> Signed-off-by: Liu Ping Fan <address@hidden>
> ---
>  hw/qdev.c |   30 ++++++++++++------------------
>  1 files changed, 12 insertions(+), 18 deletions(-)
> 
> diff --git a/hw/qdev.c b/hw/qdev.c
> index 570f0bf..d6c8130 100644
> --- a/hw/qdev.c
> +++ b/hw/qdev.c
> @@ -756,10 +756,8 @@ static void device_finalize(Object *obj)
>      DeviceClass *dc = DEVICE_GET_CLASS(dev);
>  
>      if (dev->state == DEV_STATE_INITIALIZED) {
> -        while (dev->num_child_bus) {
> -            bus = QLIST_FIRST(&dev->child_bus);
> -            qbus_free(bus);
> -        }
> +
> +        g_assert(QLIST_EMPTY(&dev->child_bus));
>          if (qdev_get_vmsd(dev)) {
>              vmstate_unregister(dev, qdev_get_vmsd(dev), dev);
>          }
> @@ -770,9 +768,8 @@ static void device_finalize(Object *obj)
>              qemu_opts_del(dev->opts);
>          }
>      }
> -    if (dev->parent_bus) {
> -        bus_remove_child(dev->parent_bus, dev);
> -    }
> +
> +    g_assert((dev->parent_bus == NULL));
>  }
>  
>  static void device_class_base_init(ObjectClass *class, void *data)
> @@ -826,19 +823,16 @@ static void qbus_initfn(Object *obj)
>  static void qbus_finalize(Object *obj)
>  {
>      BusState *bus = BUS(obj);
> -    BusChild *kid;
>  
> -    while ((kid = QTAILQ_FIRST(&bus->children)) != NULL) {
> -        DeviceState *dev = kid->child;
> -        qdev_free(dev);
> -    }
> -    if (bus->parent) {
> -        QLIST_REMOVE(bus, sibling);
> -        bus->parent->num_child_bus--;
> -    } else {
> -        assert(bus != sysbus_get_default()); /* main_system_bus is never 
> freed */
> -        qemu_unregister_reset(qbus_reset_all_fn, bus);
> +    assert(bus != sysbus_get_default()); /* main_system_bus is never freed */
> +    /* just blind check, since bus->parent has been set to NULL */
> +    qemu_unregister_reset(qbus_reset_all_fn, bus);
> +    if (bus->overlap != NULL) {
> +        object_unref(OBJECT(bus->overlap));
>      }
> +    assert(QTAILQ_EMPTY(&bus->children));
> +    /* have reset it to NULL, to prevent reader */
> +    assert((bus->parent == NULL));
>      g_free((char *)bus->name);
>  }
>  
> 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]