All of lore.kernel.org
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: "Daniel P. Berrangé" <berrange@redhat.com>
Cc: Peter Maydell <peter.maydell@linaro.org>,
	 Mark Cave-Ayland <mark.caveayland@nutanix.com>,
	 pbonzini@redhat.com, richard.henderson@linaro.org,
	 mst@redhat.com,  mtosatti@redhat.com, qemu-devel@nongnu.org
Subject: Re: [PATCH 8/9] hw/i386/pc_sysfw.c: convert pflash0 and pflash1 object props to class props
Date: Wed, 08 Jul 2026 13:21:49 +0200	[thread overview]
Message-ID: <87fr1tk9pu.fsf@pond.sub.org> (raw)
In-Reply-To: <ak4lRc9u5ol0DtCM@redhat.com> ("Daniel P. Berrangé"'s message of "Wed, 8 Jul 2026 11:24:05 +0100")

Daniel P. Berrangé <berrange@redhat.com> writes:

> On Wed, Jul 08, 2026 at 11:16:30AM +0100, Peter Maydell wrote:
>> On Fri, 3 Jul 2026 at 10:09, Mark Cave-Ayland
>> <mark.caveayland@nutanix.com> wrote:
>> >
>> > Signed-off-by: Mark Cave-Ayland <mark.caveayland@nutanix.com>
>> > ---
>> >  include/hw/i386/pc.h | 2 ++
>> >  hw/i386/pc.c         | 8 ++++++++
>> >  hw/i386/pc_sysfw.c   | 7 +------
>> >  3 files changed, 11 insertions(+), 6 deletions(-)
>> >
>> > diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h
>> > index 309de2eda1..16cb0ec01f 100644
>> > --- a/include/hw/i386/pc.h
>> > +++ b/include/hw/i386/pc.h
>> > @@ -40,6 +40,8 @@ typedef struct PCMachineState {
>> >
>> >      Object *alias_pcspk;
>> >      Object *alias_rtc_time;
>> > +    Object *alias_pflash0;
>> > +    Object *alias_pflash1;
>> >
>> >      /* Configuration options: */
>> >      uint64_t max_ram_below_4g;
>> > diff --git a/hw/i386/pc.c b/hw/i386/pc.c
>> > index 13c9c1bfc8..11eef176f4 100644
>> > --- a/hw/i386/pc.c
>> > +++ b/hw/i386/pc.c
>> > @@ -1762,6 +1762,14 @@ static void pc_machine_class_init(ObjectClass *oc, const void *data)
>> >                                     offsetof(X86MachineState, acpi_dev),
>> >                                     object_property_allow_set_link,
>> >                                     OBJ_PROP_LINK_STRONG);
>> > +    object_class_property_add_alias(oc, "pflash0",
>> > +                                    offsetof(PCMachineState, alias_pflash0),
>> > +                                    TYPE_PFLASH_CFI01,
>> > +                                    "drive");
>> > +    object_class_property_add_alias(oc, "pflash1",
>> > +                                    offsetof(PCMachineState, alias_pflash1),
>> > +                                    TYPE_PFLASH_CFI01,
>> > +                                    "drive");
>> 
>> Does making these class properties fix
>> https://gitlab.com/qemu-project/qemu/-/work_items/3254
>> (which is a report that "qemu-system-x86_64 -machine pc-q35,help"
>> doesn't list these properties) ?

Not showing object properties is a bug.

Cannot be fixed for object properties that are created outside the
object's instance_init().

Now, object properties created in instance_init() should almost
certainly be class properties instead.  Converting them all fixes the
fixable part of the bug:

> Yes, it ought to, as that CLI logic iterates over class properties.

One property conversion at a time.

There's a quicker fix, though.

-machine TYPE.help uses type_print_class_properties() to show
properties.  Here's its loop:

    object_class_property_iter_init(&iter, klass);
    while ((prop = object_property_iter_next(&iter))) {
        if (!prop->set) {
            continue;
        }

        g_ptr_array_add(array,
                        object_property_help(prop->name, prop->type,
                                             prop->defval, prop->description));
    }

-device TYPE,help uses qmp_device_list_properties() to show both.
Here's its loop:

        obj = object_new_with_class(klass);

        object_property_iter_init(&iter, obj);
        while ((prop = object_property_iter_next(&iter))) {
            ObjectPropertyInfo *info;

            [...]

            info = g_new0(ObjectPropertyInfo, 1);
            info->name = g_strdup(prop->name);
            info->type = g_strdup(prop->type);
            info->description = g_strdup(prop->description);
            info->default_value = qobject_ref(prop->defval);

            QAPI_LIST_PREPEND(prop_list, info);
        }

        object_unref(obj);

Is there any excuse not to do it this way?



  reply	other threads:[~2026-07-08 11:22 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-03  9:07 [PATCH 0/9] hw/i386: convert object props to class props Mark Cave-Ayland
2026-07-03  9:07 ` [PATCH 1/9] qom/object.c: introduce object_alias_get_targetp() lookup function Mark Cave-Ayland
2026-07-03  9:07 ` [PATCH 2/9] qom/object.c: introduce object_class_property_add_alias() Mark Cave-Ayland
2026-07-03  9:07 ` [PATCH 3/9] qom/object.c: introduce object_property_set_alias() function Mark Cave-Ayland
2026-07-03  9:07 ` [PATCH 4/9] hw/i386/pc.c: convert pcspk-audiodev object prop to a class prop Mark Cave-Ayland
2026-07-03  9:07 ` [PATCH 5/9] hw/rtc/mc146818rtc.c: convert date from object prop to " Mark Cave-Ayland
2026-07-06  7:15   ` Philippe Mathieu-Daudé
2026-07-03  9:07 ` [PATCH 6/9] hw/i386/pc.c: convert rtc-time object prop to a " Mark Cave-Ayland
2026-07-07 16:58   ` Daniel P. Berrangé
2026-07-03  9:08 ` [PATCH 7/9] hw/i386/pc.c: convert PC_MACHINE_ACPI_DEVICE_PROP from object prop to " Mark Cave-Ayland
2026-07-07 16:48   ` Daniel P. Berrangé
2026-07-03  9:08 ` [PATCH 8/9] hw/i386/pc_sysfw.c: convert pflash0 and pflash1 object props to class props Mark Cave-Ayland
2026-07-07 16:58   ` Daniel P. Berrangé
2026-07-08  9:40     ` Mark Cave-Ayland
2026-07-08  9:56       ` Daniel P. Berrangé
2026-07-08 10:16   ` Peter Maydell
2026-07-08 10:24     ` Daniel P. Berrangé
2026-07-08 11:21       ` Markus Armbruster [this message]
2026-07-08 11:28         ` Daniel P. Berrangé
2026-07-08 12:50           ` Markus Armbruster
2026-07-08 12:53             ` Daniel P. Berrangé
2026-07-08 12:57               ` Markus Armbruster
2026-07-08 13:27                 ` Peter Maydell
2026-07-10 14:00                   ` Markus Armbruster
2026-07-08 10:28     ` Mark Cave-Ayland
2026-07-03  9:08 ` [PATCH 9/9] hw/i386/sgx-epc.c: convert SGX_EPC_SIZE_PROP object prop to class prop Mark Cave-Ayland
2026-07-07 16:54   ` Daniel P. Berrangé

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=87fr1tk9pu.fsf@pond.sub.org \
    --to=armbru@redhat.com \
    --cc=berrange@redhat.com \
    --cc=mark.caveayland@nutanix.com \
    --cc=mst@redhat.com \
    --cc=mtosatti@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=richard.henderson@linaro.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.