From: Marcel Apfelbaum <marcel@redhat.com>
To: Eduardo Habkost <ehabkost@redhat.com>,
qemu-devel@nongnu.org, Markus Armbruster <armbru@redhat.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>, Igor Mammedov <imammedo@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v2 09/10] qdev: Remove qdev_prop_register_global_list()
Date: Tue, 21 Jun 2016 12:09:28 +0300 [thread overview]
Message-ID: <57690448.4020706@redhat.com> (raw)
In-Reply-To: <1466437983-27133-10-git-send-email-ehabkost@redhat.com>
On 06/20/2016 06:53 PM, Eduardo Habkost wrote:
> The function is not used by any QEMU code, except for the
> test-qdev-global-props unit test.
>
> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
> ---
> Changes v1 -> v2:
> * (New patch in series)
> ---
> hw/core/qdev-properties.c | 9 ---------
> include/hw/qdev-properties.h | 1 -
> tests/test-qdev-global-props.c | 12 ++++++------
> 3 files changed, 6 insertions(+), 16 deletions(-)
>
> diff --git a/hw/core/qdev-properties.c b/hw/core/qdev-properties.c
> index 733cc45..cf1d47f 100644
> --- a/hw/core/qdev-properties.c
> +++ b/hw/core/qdev-properties.c
> @@ -1027,15 +1027,6 @@ void qdev_prop_register_global(GlobalProperty *prop)
> global_props = g_list_append(global_props, prop);
> }
>
> -void qdev_prop_register_global_list(GlobalProperty *props)
> -{
> - int i;
> -
> - for (i = 0; props[i].driver != NULL; i++) {
> - qdev_prop_register_global(props+i);
> - }
> -}
> -
> static void qdev_prop_set_globals_for_type(DeviceState *dev,
> const char *typename)
> {
> diff --git a/include/hw/qdev-properties.h b/include/hw/qdev-properties.h
> index 3bd5ea9..3d25c00 100644
> --- a/include/hw/qdev-properties.h
> +++ b/include/hw/qdev-properties.h
> @@ -190,7 +190,6 @@ void qdev_prop_set_enum(DeviceState *dev, const char *name, int value);
> void qdev_prop_set_ptr(DeviceState *dev, const char *name, void *value);
>
> void qdev_prop_register_global(GlobalProperty *prop);
> -void qdev_prop_register_global_list(GlobalProperty *props);
> void qdev_prop_set_globals(DeviceState *dev);
> void error_set_from_qdev_prop_error(Error **errp, int ret, DeviceState *dev,
> Property *prop, const char *value);
> diff --git a/tests/test-qdev-global-props.c b/tests/test-qdev-global-props.c
> index 37394fa..29c704f 100644
> --- a/tests/test-qdev-global-props.c
> +++ b/tests/test-qdev-global-props.c
> @@ -78,12 +78,9 @@ static void test_static_prop(void)
> static void test_static_globalprop(void)
> {
> MyType *mt;
> - static GlobalProperty props[] = {
> - { TYPE_STATIC_PROPS, "prop1", "200" },
> - {}
> - };
> + static GlobalProperty prop = { TYPE_STATIC_PROPS, "prop1", "200" };
>
> - qdev_prop_register_global_list(props);
> + qdev_prop_register_global(&prop);
>
> mt = STATIC_TYPE(object_new(TYPE_STATIC_PROPS));
> qdev_init_nofail(DEVICE(mt));
> @@ -182,6 +179,7 @@ static const TypeInfo nondevice_type = {
> static void test_dynamic_globalprop(void)
> {
> MyType *mt;
> + int i;
> static GlobalProperty props[] = {
> { TYPE_DYNAMIC_PROPS, "prop1", "101", },
> { TYPE_DYNAMIC_PROPS, "prop2", "102", },
> @@ -190,7 +188,9 @@ static void test_dynamic_globalprop(void)
> {}
> };
>
> - qdev_prop_register_global_list(props);
> + for (i = 0; props[i].driver; i++) {
> + qdev_prop_register_global(props + i);
> + }
>
> mt = DYNAMIC_TYPE(object_new(TYPE_DYNAMIC_PROPS));
> qdev_init_nofail(DEVICE(mt));
>
Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
Thanks,
Marcel
next prev parent reply other threads:[~2016-06-21 9:09 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-20 15:52 [Qemu-devel] [PATCH v2 00/10] globals: Clean up validation and error checking Eduardo Habkost
2016-06-20 15:52 ` [Qemu-devel] [PATCH v2 01/10] qdev: Don't stop applying globals on first error Eduardo Habkost
2016-06-23 7:40 ` Markus Armbruster
2016-06-23 11:36 ` Eduardo Habkost
2016-06-20 15:52 ` [Qemu-devel] [PATCH v2 02/10] qdev: Eliminate qemu_add_globals() function Eduardo Habkost
2016-06-23 7:42 ` Markus Armbruster
2016-06-20 15:52 ` [Qemu-devel] [PATCH v2 03/10] vl: Reject invalid class names on -global Eduardo Habkost
2016-06-23 7:52 ` Markus Armbruster
2016-06-23 11:40 ` Eduardo Habkost
2016-06-23 13:30 ` Eduardo Habkost
2016-06-23 11:45 ` Eduardo Habkost
2016-06-20 15:52 ` [Qemu-devel] [PATCH v2 04/10] qdev: GlobalProperty.errp field Eduardo Habkost
2016-06-21 8:11 ` Igor Mammedov
2016-06-21 13:32 ` Eduardo Habkost
2016-06-23 7:54 ` Markus Armbruster
2016-06-20 15:52 ` [Qemu-devel] [PATCH v2 05/10] machine: Add machine_register_compat_props() function Eduardo Habkost
2016-06-23 7:55 ` Markus Armbruster
2016-06-20 15:52 ` [Qemu-devel] [PATCH v2 06/10] vl: Set errp to &error_abort on machine compat_props Eduardo Habkost
2016-06-23 7:56 ` Markus Armbruster
2016-06-20 15:53 ` [Qemu-devel] [PATCH v2 07/10] qdev: Eliminate "global not used" warning Eduardo Habkost
2016-06-21 12:54 ` Igor Mammedov
2016-06-23 8:17 ` Markus Armbruster
2016-06-23 12:10 ` Eduardo Habkost
2016-06-20 15:53 ` [Qemu-devel] [PATCH v2 08/10] qdev: Eliminate GlobalProperty 'used' and 'user_provided' fields Eduardo Habkost
2016-06-21 12:59 ` Igor Mammedov
2016-06-20 15:53 ` [Qemu-devel] [PATCH v2 09/10] qdev: Remove qdev_prop_register_global_list() Eduardo Habkost
2016-06-21 9:09 ` Marcel Apfelbaum [this message]
2016-06-23 8:19 ` Markus Armbruster
2016-06-20 15:53 ` [Qemu-devel] [PATCH v2 10/10] machine: Skip global registration for non-existing classes Eduardo Habkost
2016-06-21 9:10 ` Marcel Apfelbaum
2016-06-23 8:26 ` Markus Armbruster
2016-06-23 11:32 ` Eduardo Habkost
2016-06-23 11:55 ` Eduardo Habkost
2016-06-23 16:24 ` Markus Armbruster
2016-06-22 22:12 ` [Qemu-devel] [PATCH v2 00/10] globals: Clean up validation and error checking Eduardo Habkost
2016-06-23 13:38 ` Eduardo Habkost
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=57690448.4020706@redhat.com \
--to=marcel@redhat.com \
--cc=armbru@redhat.com \
--cc=ehabkost@redhat.com \
--cc=imammedo@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.