[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v3 02/17] hw/core/sysbus: Add a function for cre
From: |
Alistair Francis |
Subject: |
Re: [Qemu-devel] [PATCH v3 02/17] hw/core/sysbus: Add a function for creating and attaching an object |
Date: |
Mon, 16 Jul 2018 14:53:44 -0700 |
On Mon, Jul 16, 2018 at 5:59 AM, Thomas Huth <address@hidden> wrote:
> A lot of functions are initializing an object and attach it immediately
> afterwards to the system bus. Provide a common function for this, which
> also uses object_initialize_child() to make sure that the reference
> counter is correctly initialized to 1 afterwards.
>
> Reviewed-by: Richard Henderson <address@hidden>
> Reviewed-by: Paolo Bonzini <address@hidden>
> Reviewed-by: Eduardo Habkost <address@hidden>
> Signed-off-by: Thomas Huth <address@hidden>
Reviewed-by: Alistair Francis <address@hidden>
Alistair
> ---
> hw/core/sysbus.c | 8 ++++++++
> include/hw/sysbus.h | 17 +++++++++++++++++
> 2 files changed, 25 insertions(+)
>
> diff --git a/hw/core/sysbus.c b/hw/core/sysbus.c
> index ecfb0cf..3c8e53b 100644
> --- a/hw/core/sysbus.c
> +++ b/hw/core/sysbus.c
> @@ -376,6 +376,14 @@ BusState *sysbus_get_default(void)
> return main_system_bus;
> }
>
> +void sysbus_init_child_obj(Object *parent, const char *childname, void
> *child,
> + size_t childsize, const char *childtype)
> +{
> + object_initialize_child(parent, childname, child, childsize, childtype,
> + &error_abort, NULL);
> + qdev_set_parent_bus(DEVICE(child), sysbus_get_default());
> +}
> +
> static void sysbus_register_types(void)
> {
> type_register_static(&system_bus_info);
> diff --git a/include/hw/sysbus.h b/include/hw/sysbus.h
> index e88bb6d..0b59a3b 100644
> --- a/include/hw/sysbus.h
> +++ b/include/hw/sysbus.h
> @@ -96,6 +96,23 @@ void sysbus_add_io(SysBusDevice *dev, hwaddr addr,
> MemoryRegion *mem);
> MemoryRegion *sysbus_address_space(SysBusDevice *dev);
>
> +/**
> + * sysbus_init_child_obj:
> + * @parent: The parent object
> + * @childname: Used as name of the "child<>" property in the parent
> + * @child: A pointer to the memory to be used for the object.
> + * @childsize: The maximum size available at @child for the object.
> + * @childtype: The name of the type of the object to instantiate.
> + *
> + * This function will initialize an object and attach it to the main system
> + * bus. The memory for the object should have already been allocated. The
> + * object will then be added as child to the given parent. The returned
> object
> + * has a reference count of 1 (for the "child<...>" property from the
> parent),
> + * so the object will be finalized automatically when the parent gets
> removed.
> + */
> +void sysbus_init_child_obj(Object *parent, const char *childname, void
> *child,
> + size_t childsize, const char *childtype);
> +
> /* Call func for every dynamically created sysbus device in the system */
> void foreach_dynamic_sysbus_device(FindSysbusDeviceFunc *func, void *opaque);
>
> --
> 1.8.3.1
>
>
- [Qemu-devel] [PATCH v3 00/17] Fix crashes with introspection of ARM devices, Thomas Huth, 2018/07/16
- [Qemu-devel] [PATCH v3 02/17] hw/core/sysbus: Add a function for creating and attaching an object, Thomas Huth, 2018/07/16
- Re: [Qemu-devel] [PATCH v3 02/17] hw/core/sysbus: Add a function for creating and attaching an object,
Alistair Francis <=
- [Qemu-devel] [PATCH v3 03/17] hw/arm/bcm2836: Fix crash with device_add bcm2837 on unsupported machines, Thomas Huth, 2018/07/16
- [Qemu-devel] [PATCH v3 01/17] qom/object: Add a new function object_initialize_child(), Thomas Huth, 2018/07/16
- [Qemu-devel] [PATCH v3 04/17] hw/arm/armv7: Fix crash when introspecting the "iotkit" device, Thomas Huth, 2018/07/16
- [Qemu-devel] [PATCH v3 05/17] hw/cpu/a15mpcore: Fix introspection problem with the a15mpcore_priv device, Thomas Huth, 2018/07/16
- [Qemu-devel] [PATCH v3 06/17] hw/arm/msf2-soc: Fix introspection problem with the "msf2-soc" device, Thomas Huth, 2018/07/16
- [Qemu-devel] [PATCH v3 07/17] hw/cpu/a9mpcore: Fix introspection problems with the "a9mpcore_priv" device, Thomas Huth, 2018/07/16