qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: alex.williamson@redhat.com, qemu-devel@nongnu.org,
	Marcel Apfelbaum <marcel.a@redhat.com>
Subject: Re: [Qemu-devel] [PATCH] hw/pci: fixed crash when using rombar=0 for hotplugged devices
Date: Wed, 22 Oct 2014 09:26:14 +0300	[thread overview]
Message-ID: <20141022062614.GB20771@redhat.com> (raw)
In-Reply-To: <5446D8DA.6000003@redhat.com>

On Wed, Oct 22, 2014 at 12:06:18AM +0200, Paolo Bonzini wrote:
> 
> 
> On 10/21/2014 02:37 PM, Marcel Apfelbaum wrote:
> > ROM images must be loaded at startup. Usage of rombar=0 after that
> > is not allowed, but should not crash QEMU.
> > 
> > Check that the device is not hotplugged before trying to
> > insert the rom file.
> 
> I think it could also make sense to just ignore the option ROM and allow
> the hotplug.
> 
> Sooner or later we should drop the oldest compat machine types...
> everything until 0.12 probably could go.
> 
> Paolo

Unfortunately, we made the mistake of exposing the rombar
attribute to management.

See rom element at
http://libvirt.org/formatdomain.html#elementsHostDevSubsys

and in theory some users might have configured rombar=off
but set file to some value.

I'd be OK with removing support for this combination,
if we want the legacy fw cfg thing, we should have a
separate attribute.


But I'd like someone from libvirt to OK this ...
Eric?


> > Signed-off-by: Marcel Apfelbaum <marcel.a@redhat.com>
> > ---
> >  hw/pci/pci.c | 11 ++++++++++-
> >  1 file changed, 10 insertions(+), 1 deletion(-)
> > 
> > diff --git a/hw/pci/pci.c b/hw/pci/pci.c
> > index 6ce75aa..3907c90 100644
> > --- a/hw/pci/pci.c
> > +++ b/hw/pci/pci.c
> > @@ -1776,7 +1776,12 @@ static int pci_qdev_init(DeviceState *qdev)
> >          pci_dev->romfile = g_strdup(pc->romfile);
> >          is_default_rom = true;
> >      }
> > -    pci_add_option_rom(pci_dev, is_default_rom);
> > +
> > +    rc = pci_add_option_rom(pci_dev, is_default_rom);
> > +    if (rc != 0) {
> > +        pci_unregister_device(DEVICE(pci_dev));
> > +        return rc;
> > +    }
> >  
> >      return 0;
> >  }
> > @@ -1940,6 +1945,10 @@ static int pci_add_option_rom(PCIDevice *pdev, bool is_default_rom)
> >          if (class == 0x0300) {
> >              rom_add_vga(pdev->romfile);
> >          } else {
> > +            if (DEVICE(pdev)->hotplugged) {
> > +                error_report("PCI: rombar can't be 0 for hotplugged devices!");
> > +                return -1;
> > +            }
> >              rom_add_option(pdev->romfile, -1);
> >          }
> >          return 0;
> > 

  reply	other threads:[~2014-10-22  6:22 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-21 12:37 [Qemu-devel] [PATCH] hw/pci: fixed crash when using rombar=0 for hotplugged devices Marcel Apfelbaum
2014-10-21 22:06 ` Paolo Bonzini
2014-10-22  6:26   ` Michael S. Tsirkin [this message]
2014-10-22  7:41   ` Marcel Apfelbaum
2014-10-22  8:02     ` Michael S. Tsirkin
2014-10-22 16:26       ` Alex Williamson
2014-10-22 18:24         ` Marcel Apfelbaum
2014-10-22  6:18 ` Michael S. Tsirkin
2014-10-22  7:34   ` Marcel Apfelbaum
2014-10-22  7:58     ` Michael S. Tsirkin
2014-10-22  8:16       ` Marcel Apfelbaum
2014-10-22  8:31         ` Michael S. Tsirkin
2014-10-22 15:28           ` Marcel Apfelbaum
2014-10-22 15:49             ` Michael S. Tsirkin

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=20141022062614.GB20771@redhat.com \
    --to=mst@redhat.com \
    --cc=alex.williamson@redhat.com \
    --cc=marcel.a@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).