From: "Michael S. Tsirkin" <mst@redhat.com>
To: Laszlo Ersek <lersek@redhat.com>
Cc: qemu devel list <qemu-devel@nongnu.org>,
Ben Warren <ben@skyportsystems.com>,
Igor Mammedov <imammedo@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 2/2] hw/acpi/vmgenid: prevent more than one vmgenid device
Date: Mon, 20 Mar 2017 16:16:04 +0200 [thread overview]
Message-ID: <20170320161539-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <20170320115951.25345-3-lersek@redhat.com>
On Mon, Mar 20, 2017 at 12:59:51PM +0100, Laszlo Ersek wrote:
> Multiple instances make no sense.
>
> Cc: "Michael S. Tsirkin" <mst@redhat.com>
> Cc: Ben Warren <ben@skyportsystems.com>
> Cc: Igor Mammedov <imammedo@redhat.com>
> Signed-off-by: Laszlo Ersek <lersek@redhat.com>
find_vmgenid_dev would be a better place for this.
This is where the single instance assumption comes from ATM.
> ---
> hw/acpi/vmgenid.c | 10 ++++++++++
> 1 file changed, 10 insertions(+)
>
> diff --git a/hw/acpi/vmgenid.c b/hw/acpi/vmgenid.c
> index c3ddcc8e7cb0..b5c0dfcf19e1 100644
> --- a/hw/acpi/vmgenid.c
> +++ b/hw/acpi/vmgenid.c
> @@ -214,6 +214,8 @@ static Property vmgenid_properties[] = {
> static void vmgenid_realize(DeviceState *dev, Error **errp)
> {
> VmGenIdState *vms = VMGENID(dev);
> + Object *one_vmgenid;
> + bool ambiguous;
>
> if (!vms->write_pointer_available) {
> error_setg(errp, "%s requires DMA write support in fw_cfg, "
> @@ -221,6 +223,14 @@ static void vmgenid_realize(DeviceState *dev, Error **errp)
> return;
> }
>
> + one_vmgenid = object_resolve_path_type("", VMGENID_DEVICE, &ambiguous);
> + if (one_vmgenid == NULL) {
> + assert(ambiguous);
> + error_setg(errp, "at most one %s device is permitted", VMGENID_DEVICE);
> + return;
> + }
> + assert(one_vmgenid == OBJECT(vms));
> +
> qemu_register_reset(vmgenid_handle_reset, vms);
> }
>
> --
> 2.9.3
next prev parent reply other threads:[~2017-03-20 14:16 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-20 11:59 [Qemu-devel] [PATCH 0/2] some remaining vmgenid tweaks for 2.9 Laszlo Ersek
2017-03-20 11:59 ` [Qemu-devel] [PATCH 1/2] hw/acpi/vmgenid: prevent device realization on pre-2.9 machine types Laszlo Ersek
2017-03-20 14:19 ` Michael S. Tsirkin
2017-03-20 14:39 ` Paolo Bonzini
2017-03-20 15:08 ` Laszlo Ersek
2017-03-20 15:09 ` Paolo Bonzini
2017-03-20 11:59 ` [Qemu-devel] [PATCH 2/2] hw/acpi/vmgenid: prevent more than one vmgenid device Laszlo Ersek
2017-03-20 14:16 ` Michael S. Tsirkin [this message]
2017-03-20 15:13 ` Laszlo Ersek
2017-03-20 16:22 ` Laszlo Ersek
2017-03-20 16:26 ` Michael S. Tsirkin
2017-03-20 16:39 ` Laszlo Ersek
2017-03-20 16:57 ` Michael S. Tsirkin
2017-03-20 17:05 ` Laszlo Ersek
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=20170320161539-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=ben@skyportsystems.com \
--cc=imammedo@redhat.com \
--cc=lersek@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.