All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: "Marc-André Lureau" <marcandre.lureau@redhat.com>, qemu-devel@nongnu.org
Cc: Paolo Bonzini <pbonzini@redhat.com>,
	"Daniel P . Berrange" <berrange@redhat.com>,
	Eduardo Habkost <ehabkost@redhat.com>
Subject: Re: [PATCH 04/26] qdev: move helper function to monitor/misc
Date: Fri, 10 Jan 2020 20:18:11 +0100	[thread overview]
Message-ID: <356e02e7-53d3-3b79-47e8-5fa0caeef012@redhat.com> (raw)
In-Reply-To: <20200110153039.1379601-5-marcandre.lureau@redhat.com>

On 1/10/20 4:30 PM, Marc-André Lureau wrote:
> Move the one-user function to the place it is being used.
> 
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>

> ---
>   include/hw/qdev-core.h |  2 --
>   hw/core/qdev.c         | 26 --------------------------
>   monitor/misc.c         | 26 ++++++++++++++++++++++++++
>   3 files changed, 26 insertions(+), 28 deletions(-)
> 
> diff --git a/include/hw/qdev-core.h b/include/hw/qdev-core.h
> index 1518495b1e..6b0e7b265d 100644
> --- a/include/hw/qdev-core.h
> +++ b/include/hw/qdev-core.h
> @@ -457,8 +457,6 @@ extern bool qdev_hot_removed;
>   
>   char *qdev_get_dev_path(DeviceState *dev);
>   
> -GSList *qdev_build_hotpluggable_device_list(Object *peripheral);
> -
>   void qbus_set_hotplug_handler(BusState *bus, Object *handler, Error **errp);
>   
>   void qbus_set_bus_hotplug_handler(BusState *bus, Error **errp);
> diff --git a/hw/core/qdev.c b/hw/core/qdev.c
> index c2aa7f91a6..a520d7fa89 100644
> --- a/hw/core/qdev.c
> +++ b/hw/core/qdev.c
> @@ -760,32 +760,6 @@ void qdev_alias_all_properties(DeviceState *target, Object *source)
>       } while (class != object_class_by_name(TYPE_DEVICE));
>   }
>   
> -static int qdev_add_hotpluggable_device(Object *obj, void *opaque)
> -{
> -    GSList **list = opaque;
> -    DeviceState *dev = (DeviceState *)object_dynamic_cast(OBJECT(obj),
> -                                                          TYPE_DEVICE);
> -
> -    if (dev == NULL) {
> -        return 0;
> -    }
> -
> -    if (dev->realized && object_property_get_bool(obj, "hotpluggable", NULL)) {
> -        *list = g_slist_append(*list, dev);
> -    }
> -
> -    return 0;
> -}
> -
> -GSList *qdev_build_hotpluggable_device_list(Object *peripheral)
> -{
> -    GSList *list = NULL;
> -
> -    object_child_foreach(peripheral, qdev_add_hotpluggable_device, &list);
> -
> -    return list;
> -}
> -
>   static bool device_get_realized(Object *obj, Error **errp)
>   {
>       DeviceState *dev = DEVICE(obj);
> diff --git a/monitor/misc.c b/monitor/misc.c
> index a04d7edde0..be3c700511 100644
> --- a/monitor/misc.c
> +++ b/monitor/misc.c
> @@ -1954,6 +1954,32 @@ void object_add_completion(ReadLineState *rs, int nb_args, const char *str)
>       g_slist_free(list);
>   }
>   
> +static int qdev_add_hotpluggable_device(Object *obj, void *opaque)
> +{
> +    GSList **list = opaque;
> +    DeviceState *dev = (DeviceState *)object_dynamic_cast(OBJECT(obj),
> +                                                          TYPE_DEVICE);
> +
> +    if (dev == NULL) {
> +        return 0;
> +    }
> +
> +    if (dev->realized && object_property_get_bool(obj, "hotpluggable", NULL)) {
> +        *list = g_slist_append(*list, dev);
> +    }
> +
> +    return 0;
> +}
> +
> +static GSList *qdev_build_hotpluggable_device_list(Object *peripheral)
> +{
> +    GSList *list = NULL;
> +
> +    object_child_foreach(peripheral, qdev_add_hotpluggable_device, &list);
> +
> +    return list;
> +}
> +
>   static void peripheral_device_del_completion(ReadLineState *rs,
>                                                const char *str, size_t len)
>   {
> 



  reply	other threads:[~2020-01-10 19:19 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-10 15:30 [PATCH 00/26] Various qom & qdev enhancements Marc-André Lureau
2020-01-10 15:30 ` [PATCH 01/26] object: add extra sanity checks Marc-André Lureau
2020-01-10 19:18   ` Philippe Mathieu-Daudé
2020-01-10 15:30 ` [PATCH 02/26] qdev: remove duplicated qdev_property_add_static() doc Marc-André Lureau
2020-01-10 15:30 ` [PATCH 03/26] qdev: remove extraneous error Marc-André Lureau
2020-01-10 15:30 ` [PATCH 04/26] qdev: move helper function to monitor/misc Marc-André Lureau
2020-01-10 19:18   ` Philippe Mathieu-Daudé [this message]
2020-01-10 15:30 ` [PATCH 05/26] object: avoid extra class property key duplication Marc-André Lureau
2020-01-10 15:30 ` [PATCH 06/26] object: add class property initializer Marc-André Lureau
2020-01-10 15:30 ` [PATCH 07/26] object: add object_property_get_defaut() Marc-André Lureau
2020-01-10 15:30 ` [PATCH 08/26] object: make object_class_property_add* return property Marc-André Lureau
2020-01-10 15:30 ` [PATCH 09/26] qstring: add qstring_free() Marc-André Lureau
2020-01-10 15:30 ` [PATCH 10/26] object: add object_property_set_defaut_{bool, str, int, uint}() Marc-André Lureau
2020-01-23 11:28   ` Paolo Bonzini
2020-01-23 11:39     ` Marc-André Lureau
2020-01-23 14:34       ` Paolo Bonzini
2020-01-10 15:30 ` [PATCH 11/26] object: do not free class properties Marc-André Lureau
2020-01-10 15:30 ` [PATCH 12/26] object: check strong flag with & Marc-André Lureau
2020-01-10 15:30 ` [PATCH 13/26] object: rename link "child" to "target" Marc-André Lureau
2020-01-10 15:30 ` [PATCH 14/26] object: add direct link flag Marc-André Lureau
2020-01-10 15:30 ` [PATCH 15/26] object: express const link with link property Marc-André Lureau
2020-01-10 15:30 ` [PATCH 16/26] object: add object_class_property_add_link() Marc-André Lureau
2020-01-10 15:30 ` [PATCH 17/26] object: release all props Marc-André Lureau
2020-01-10 15:30 ` [PATCH 18/26] object: return self in object_ref() Marc-André Lureau
2020-01-10 19:22   ` Philippe Mathieu-Daudé
2020-01-10 15:30 ` [PATCH 19/26] qdev: set properties with device_class_set_props() Marc-André Lureau
2020-01-23 11:08   ` Paolo Bonzini
2020-01-23 11:11     ` Marc-André Lureau
2020-01-10 15:30 ` [PATCH 20/26] qdev: move instance properties to class properties Marc-André Lureau
2020-01-10 15:30 ` [PATCH 21/26] qdev: register properties as " Marc-André Lureau
2020-01-10 15:30 ` [PATCH 22/26] vl: print default value in object help Marc-André Lureau
2020-01-10 15:30 ` [PATCH 23/26] qom: simplify qmp_device_list_properties() Marc-André Lureau
2020-01-10 15:30 ` [PATCH 24/26] qom: introduce object_property_help() Marc-André Lureau
2021-03-12 12:54   ` Thomas Huth
2021-03-12 13:00     ` Marc-André Lureau
2020-01-10 15:30 ` [PATCH 25/26] qapi/qmp: add ObjectPropertyInfo.default-value Marc-André Lureau
2020-01-10 15:30 ` [PATCH 26/26] qdev: use object_property_help() Marc-André Lureau
2020-01-10 15:38 ` [PATCH 00/26] Various qom & qdev enhancements Marc-André Lureau
2020-01-20 16:45   ` Stefan Hajnoczi
2020-01-21 16:57   ` Paolo Bonzini
  -- strict thread matches above, loose matches on Subject: below --
2019-12-01 11:15 [PATCH 00/26] Make QDev use class properties Marc-André Lureau
2019-12-01 11:15 ` [PATCH 04/26] qdev: move helper function to monitor/misc Marc-André Lureau
2019-12-01 19:35   ` Philippe Mathieu-Daudé

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=356e02e7-53d3-3b79-47e8-5fa0caeef012@redhat.com \
    --to=philmd@redhat.com \
    --cc=berrange@redhat.com \
    --cc=ehabkost@redhat.com \
    --cc=marcandre.lureau@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.