qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Eduardo Habkost <ehabkost@redhat.com>
Cc: qemu-devel@nongnu.org, Laszlo Ersek <lersek@redhat.com>,
	Thomas Huth <thuth@redhat.com>, Alexander Graf <agraf@suse.de>,
	Markus Armbruster <armbru@redhat.com>,
	Marcel Apfelbaum <marcel@redhat.com>,
	Peter Maydell <peter.maydell@linaro.org>,
	"Gabriel L . Somlo" <somlo@cmu.edu>
Subject: Re: [Qemu-devel] [PATCH RESEND v2 14/21] fw_cfg: Remove user_creatable flag
Date: Wed, 3 May 2017 23:49:13 +0300	[thread overview]
Message-ID: <20170503234855-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <20170503203604.31462-15-ehabkost@redhat.com>

On Wed, May 03, 2017 at 05:35:57PM -0300, Eduardo Habkost wrote:
> fw_cfg won't work with -device, as:
> * fw_cfg_init1() won't get called for the device;
> * The device won't appear at /machine/fw_cfg, and won't work with
>   the -fw_cfg command-line option.
> 
> Remove the user_creatable flag from the device class.
> 
> Cc: Marcel Apfelbaum <marcel@redhat.com>
> Cc: "Michael S. Tsirkin" <mst@redhat.com>
> Cc: Laszlo Ersek <lersek@redhat.com>
> Cc: Gabriel L. Somlo <somlo@cmu.edu>
> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
> Acked-by: Marcel Apfelbaum <marcel@redhat.com>
> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>

Acked-by: Michael S. Tsirkin <mst@redhat.com>

> ---
> Changes v1 -> v2:
> * (none)
> ---
>  hw/nvram/fw_cfg.c | 10 ----------
>  1 file changed, 10 deletions(-)
> 
> diff --git a/hw/nvram/fw_cfg.c b/hw/nvram/fw_cfg.c
> index 7993aea792..316fca9bc1 100644
> --- a/hw/nvram/fw_cfg.c
> +++ b/hw/nvram/fw_cfg.c
> @@ -1101,11 +1101,6 @@ static void fw_cfg_io_class_init(ObjectClass *klass, void *data)
>  
>      dc->realize = fw_cfg_io_realize;
>      dc->props = fw_cfg_io_properties;
> -    /*
> -     * FIXME: Set only because we are not sure yet if this device
> -     * will be outside the q35 sysbus whitelist.
> -     */
> -    dc->user_creatable = true;
>  }
>  
>  static const TypeInfo fw_cfg_io_info = {
> @@ -1172,11 +1167,6 @@ static void fw_cfg_mem_class_init(ObjectClass *klass, void *data)
>  
>      dc->realize = fw_cfg_mem_realize;
>      dc->props = fw_cfg_mem_properties;
> -    /*
> -     * FIXME: Set only because we are not sure yet if this device
> -     * will be outside the q35 sysbus whitelist.
> -     */
> -    dc->user_creatable = true;
>  }
>  
>  static const TypeInfo fw_cfg_mem_info = {
> -- 
> 2.11.0.259.g40922b1

  reply	other threads:[~2017-05-03 20:49 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-03 20:35 [Qemu-devel] [PATCH RESEND v2 00/21] qdev/sysbus: Set user_creatable=false by default on sysbus Eduardo Habkost
2017-05-03 20:35 ` [Qemu-devel] [PATCH RESEND v2 01/21] qdev: Replace cannot_instantiate_with_device_add_yet with !user_creatable Eduardo Habkost
2017-05-15  8:31   ` Markus Armbruster
2017-05-03 20:35 ` [Qemu-devel] [PATCH RESEND v2 02/21] sysbus: Set user_creatable=false by default on TYPE_SYS_BUS_DEVICE Eduardo Habkost
2017-05-05  7:36   ` Cornelia Huck
2017-05-05 16:54     ` Eduardo Habkost
2017-05-05 20:36       ` [Qemu-devel] [PATCH] fixup! " Eduardo Habkost
2017-05-08 10:51         ` Cornelia Huck
2017-05-15  8:43   ` [Qemu-devel] [PATCH RESEND v2 02/21] " Markus Armbruster
2017-05-03 20:35 ` [Qemu-devel] [PATCH RESEND v2 03/21] xen-backend: Remove FIXME comment about user_creatable flag Eduardo Habkost
2017-05-15  8:46   ` Markus Armbruster
2017-05-03 20:35 ` [Qemu-devel] [PATCH RESEND v2 04/21] iommu: Remove FIXME comment about user_creatable=true Eduardo Habkost
2017-05-03 20:49   ` Michael S. Tsirkin
2017-05-03 20:35 ` [Qemu-devel] [PATCH RESEND v2 05/21] fdc: Remove user_creatable flag from sysbus-fdc & SUNW, fdtwo Eduardo Habkost
2017-05-03 20:35 ` [Qemu-devel] [PATCH RESEND v2 06/21] pflash_cfi01: Remove user_creatable flag Eduardo Habkost
2017-05-03 20:35 ` [Qemu-devel] [PATCH RESEND v2 07/21] kvmclock: " Eduardo Habkost
2017-05-03 20:35 ` [Qemu-devel] [PATCH RESEND v2 08/21] ioapic: " Eduardo Habkost
2017-05-03 20:35 ` [Qemu-devel] [PATCH RESEND v2 09/21] kvmvapic: " Eduardo Habkost
2017-05-03 20:35 ` [Qemu-devel] [PATCH RESEND v2 10/21] sysbus-ahci: " Eduardo Habkost
2017-05-03 20:35 ` [Qemu-devel] [PATCH RESEND v2 11/21] allwinner-ahci: " Eduardo Habkost
2017-05-03 20:35 ` [Qemu-devel] [PATCH RESEND v2 12/21] isabus-bridge: " Eduardo Habkost
2017-05-03 20:35 ` [Qemu-devel] [PATCH RESEND v2 13/21] unimplemented-device: " Eduardo Habkost
2017-05-03 20:35 ` [Qemu-devel] [PATCH RESEND v2 14/21] fw_cfg: " Eduardo Habkost
2017-05-03 20:49   ` Michael S. Tsirkin [this message]
2017-05-03 20:35 ` [Qemu-devel] [PATCH RESEND v2 15/21] esp: " Eduardo Habkost
2017-05-03 20:35 ` [Qemu-devel] [PATCH RESEND v2 16/21] generic-sdhci: " Eduardo Habkost
2017-05-03 20:36 ` [Qemu-devel] [PATCH RESEND v2 17/21] hpet: " Eduardo Habkost
2017-05-03 20:36 ` [Qemu-devel] [PATCH RESEND v2 18/21] sysbus-ohci: " Eduardo Habkost
2017-05-03 20:36 ` [Qemu-devel] [PATCH RESEND v2 19/21] virtio-mmio: " Eduardo Habkost
2017-05-03 20:48   ` Michael S. Tsirkin
2017-05-03 20:36 ` [Qemu-devel] [PATCH RESEND v2 20/21] xen-sysdev: " Eduardo Habkost
2017-05-03 20:36 ` [Qemu-devel] [PATCH RESEND v2 21/21] s390-pcibus: No need to set user_creatable=false explicitly Eduardo Habkost
2017-05-12 18:44 ` [Qemu-devel] [PATCH RESEND v2 00/21] qdev/sysbus: Set user_creatable=false by default on sysbus 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=20170503234855-mutt-send-email-mst@kernel.org \
    --to=mst@redhat.com \
    --cc=agraf@suse.de \
    --cc=armbru@redhat.com \
    --cc=ehabkost@redhat.com \
    --cc=lersek@redhat.com \
    --cc=marcel@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=somlo@cmu.edu \
    --cc=thuth@redhat.com \
    /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).