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 10/10] machine: Skip global registration for non-existing classes
Date: Sun, 19 Jun 2016 19:50:56 +0300 [thread overview]
Message-ID: <5766CD70.6010408@redhat.com> (raw)
In-Reply-To: <5766CAB9.9000608@redhat.com>
On 06/19/2016 07:39 PM, Marcel Apfelbaum wrote:
> On 06/15/2016 11:32 PM, Eduardo Habkost wrote:
>> MachineClass::compat_props may point to class names that are not
>> compiled into the QEMU binary. Skip registering those as global
>> properties. This will allow the qdev global property code to
>> implement stricter checks on the global property values in the
>> future.
>>
>> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
>> ---
>> hw/core/machine.c | 9 +++++++++
>> 1 file changed, 9 insertions(+)
>>
>> diff --git a/hw/core/machine.c b/hw/core/machine.c
>> index d6f6be4..51697cb 100644
>> --- a/hw/core/machine.c
>> +++ b/hw/core/machine.c
>> @@ -583,6 +583,7 @@ static void machine_class_finalize(ObjectClass *klass, void *data)
>> void machine_register_compat_props(MachineState *machine)
>> {
>> MachineClass *mc = MACHINE_GET_CLASS(machine);
>> + ObjectClass *oc;
>> int i;
>> GlobalProperty *p;
>>
>> @@ -592,6 +593,14 @@ void machine_register_compat_props(MachineState *machine)
>>
>> for (i = 0; i < mc->compat_props->len; i++) {
>> p = g_array_index(mc->compat_props, GlobalProperty *, i);
>
> Hi Eduardo,
>
>> +
>> + /* Skip registering globals for non-existing device classes */
>> + oc = object_class_by_name(p->driver);
>
> This I understand. It ensure a corresponding class is in QEMU binary.
> But even so, if such property is not available should we silently continue?
> Maybe the user things the property is set...
Please forgive the spelling errors and disregard the above question.
>
>
>> + oc = object_class_dynamic_cast(oc, TYPE_DEVICE);
>
> This I don't understand. Do we check here?
>
Regarding my last question, it seems you followed an existing pattern
here, however I don't quite understand, we found the class,
why do we need to ensure is a TYPE_DEVICE?
What error case do we want to prevent?
Thanks,
Marcel
> Thanks,
> Marcel
>
>> + if (!oc) {
>> + continue;
>> + }
>> +
>> /* Machine compat_props must never cause errors: */
>> p->errp = &error_abort;
>> qdev_prop_register_global(p);
>>
>
next prev parent reply other threads:[~2016-06-19 16:51 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-15 20:32 [Qemu-devel] [PATCH 00/10] globals: Clean up validation and error checking Eduardo Habkost
2016-06-15 20:32 ` [Qemu-devel] [PATCH 01/10] qdev: Don't stop applying globals on first error Eduardo Habkost
2016-06-19 16:40 ` Marcel Apfelbaum
2016-06-20 7:43 ` Markus Armbruster
2016-06-15 20:32 ` [Qemu-devel] [PATCH 02/10] qdev: Eliminate qemu_add_globals() function Eduardo Habkost
2016-06-20 12:03 ` Igor Mammedov
2016-06-15 20:32 ` [Qemu-devel] [PATCH 03/10] vl: Reject invalid class names on -global Eduardo Habkost
2016-06-20 7:56 ` Markus Armbruster
2016-06-20 12:44 ` Igor Mammedov
2016-06-15 20:32 ` [Qemu-devel] [PATCH 04/10] qdev: Use error_prepend() for errors applying globals Eduardo Habkost
2016-06-20 8:02 ` Markus Armbruster
2016-06-20 13:43 ` Eduardo Habkost
2016-06-15 20:32 ` [Qemu-devel] [PATCH 05/10] qdev: GlobalProperty.errp field Eduardo Habkost
2016-06-20 8:14 ` Markus Armbruster
2016-06-20 13:45 ` Eduardo Habkost
2016-06-15 20:32 ` [Qemu-devel] [PATCH 06/10] machine: Add machine_register_compat_props() function Eduardo Habkost
2016-06-19 16:25 ` Marcel Apfelbaum
2016-06-15 20:32 ` [Qemu-devel] [PATCH 07/10] vl: Set errp to &error_abort on machine compat_props Eduardo Habkost
2016-06-19 16:27 ` Marcel Apfelbaum
2016-06-15 20:32 ` [Qemu-devel] [PATCH 08/10] qdev: Eliminate "global not used" warning Eduardo Habkost
2016-06-15 20:32 ` [Qemu-devel] [PATCH 09/10] qdev: Eliminate GlobalProperty 'used' and 'user_provided' fields Eduardo Habkost
2016-06-15 20:32 ` [Qemu-devel] [PATCH 10/10] machine: Skip global registration for non-existing classes Eduardo Habkost
2016-06-19 16:39 ` Marcel Apfelbaum
2016-06-19 16:50 ` Marcel Apfelbaum [this message]
2016-06-20 13:38 ` Eduardo Habkost
2016-06-20 13:11 ` [Qemu-devel] [PATCH 00/10] globals: Clean up validation and error checking Igor Mammedov
2016-06-20 13:48 ` 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=5766CD70.6010408@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).