From: David Gibson <david@gibson.dropbear.id.au>
To: Laine Stump <laine@redhat.com>
Cc: libvir-list@redhat.com, Michael Roth <mdroth@linux.vnet.ibm.com>,
Andrea Bolognani <abologna@redhat.com>,
thuth@redhat.com, lvivier@redhat.com, benh@kernel.crashing.org,
marcel@redhat.com, aik@ozlabs.ru, groug@kaod.org,
ehabkost@redhat.com, qemu-devel@nongnu.org, qemu-ppc@nongnu.org,
Alex Williamson <Alex.Williamson@redhat.com>
Subject: Re: [Qemu-devel] Proposal PCI/PCIe device placement on PAPR guests
Date: Fri, 13 Jan 2017 09:56:30 +1100 [thread overview]
Message-ID: <20170112225630.GA13656@umbus.fritz.box> (raw)
In-Reply-To: <75e2809a-dab3-15f8-d125-3d2def5ebeeb@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 4896 bytes --]
On Thu, Jan 12, 2017 at 12:53:28PM -0500, Laine Stump wrote:
> On 01/12/2017 11:35 AM, Michael Roth wrote:
> > Quoting Laine Stump (2017-01-12 08:52:10)
> > > On 01/12/2017 05:31 AM, Andrea Bolognani wrote:
> > > > On Mon, 2017-01-09 at 10:46 +1100, David Gibson wrote:
> > > > > > > * To allow for hotplugged devices, libvirt should also add a number
> > > > > > > of additional, empty vPHBs (the PAPR spec allows for hotplug of
> > > > > > > PHBs, but this is not yet implemented in qemu).
> > > > > >
> > > > > > "A number" here will have to mean "one", same number of
> > > > > > empty PCIe Root Ports libvirt will add to a newly-defined
> > > > > > q35 guest.
> > > > >
> > > > > Umm.. why?
> > > >
> > > > Because some applications using libvirt would inevitably
> > > > start relying on the fact that such spare PHBs are
> > > > available, locking us into providing at least the same
> > > > number forever. In other words, increasing the amount at
> > > > a later time is always possible, but decreasing it isn't.
> > > > We did the same when we started automatically adding PCIe
> > > > Root Ports to q35 machines.
> > > >
> > > > The rationale is that having a single spare hotpluggable
> > > > slot is extremely convenient for basic usage, eg. a simple
> > > > guest created by someone who's not necessarily very
> > > > familiar with virtualization; on the other hand, if you
> > > > are actually deploying in production you ought to conduct
> > > > proper capacity planning and figure out in advance how
> > > > many devices you're likely to need to hotplug throughout
> > > > the guest's life.
> > >
> > > And of course the reason we don't want to add "too many" extra
> > > controllers by default is so that we don't end up with *all* guests
> > > burdened with extra hardware they don't need or want. The libguestfs
> > > appliance is one example of a libvirt consumer that definitely doesn't
> > > want extra baggage in its guests - guest startup time is very important
> > > to libguestfs, so any addition to the hardware list is looked upon with
> > > disappointment.
> > >
> > > >
> > > > Of course this all will be moot once we can hotplug PHBs :)
> > >
> > > Will the guest OSes handle that properly? I remember being told that
> >
> > I believe on pseries we *do* scan for devices on the PHB as part of
> > bringing the PHB online in the hotplug path. But I'm not sure that
> > matters (see below).
> >
> > > Linux, for example, doesn't scan the new bus for devices when a new
> > > controller is added, making it pointless to hotplug a PCI controller (as
> > > usual, it could be that I'm remembering incorrectly...)
> > >
> >
> > Wouldn't that only be an issue if we hotplugged a PHB that already had
> > PCI devices on the bus?
>
>
> Yeah you're right, I'm probably remembering the wrong problem and wrong
> reason for the problem. I just remember there was *some* issue about
> hotplugging new PCI controllers. Possibly the internal representation of the
> bus hierarchy wasn't updated unless you forced a rescan of all the devices
> or something? My memory of it is vague, I just remember being told it wasn't
> just a case of the controller itself being initialized.
>
> Alex or Marcel - since whatever it was I likely heard it from one of you (or
> imagined it in a dream), can you straighten me out?
Regardless, I'm pretty sure it won't be relevant for Power guests.
PHB hotplug has its own protocol in PAPR, and is used routinely for
Linux guests under PowerVM.
>
> > That only seems possible if we had a way to
> > signal phb hotplug *after* we've hotplugged some PCI devices on the bus,
> > which means we'd need some interface to trigger hotplug beyond the
> > standard 'device_add' calls, e.g.:
> >
> > device_add spapr-pci-host-bridge,hotplug-deferred=true,id=phb2,index=2
> > device_add virtio-net-pci,bus=phb2.0,...,hotplug-deferred=true
> > device_signal_hotplug phb2
> >
> > That's actually akin to how it's normally done on pHyp (not only for PHB
> > hotplug, but for PCI hotplug in general, which is why this could be
> > reasonably expected to work on pseries guests), but it seems quite a bit
> > different from how we'd normally handle this on kvm, which I think would
> > be something more like:
> >
> > device_add spapr-pci-host-bridge,id=phb2,index=2
> > <wait for hotplug completion event>
> > device_add virtio-net-pci,bus=phb2.0,...
> >
> > In which case it doesn't really matter if the guest scans the bus at
> > hotplug time or not. Is there some other scenario where this might
> > arise?
> >
>
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2017-01-12 23:42 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20170105054618.GA12106@umbus.fritz.box>
2017-01-06 12:01 ` [Qemu-devel] Proposal PCI/PCIe device placement on PAPR guests Greg Kurz
2017-01-06 17:34 ` Andrea Bolognani
2017-01-08 23:46 ` David Gibson
2017-01-12 10:31 ` Andrea Bolognani
2017-01-12 14:52 ` Laine Stump
2017-01-12 16:35 ` Michael Roth
2017-01-12 17:53 ` Laine Stump
2017-01-12 22:56 ` David Gibson [this message]
2017-01-18 12:21 ` Marcel Apfelbaum
2017-01-12 22:57 ` David Gibson
2017-01-13 16:29 ` Greg Kurz
[not found] ` <20170106125758.4643fb35@bahia.lan>
[not found] ` <20170112035219.GK14026@umbus.fritz.box>
[not found] ` <0bfaa82a-d5f5-eb0f-14a9-f7d13239cee5@ozlabs.ru>
[not found] ` <20170112100823.2a906117@bahia.lan>
[not found] ` <20170113044831.GP13656@umbus.fritz.box>
[not found] ` <20170113095828.302b77f2@bahia.lan>
[not found] ` <20170222120825.0253f2d6@bahia.lan>
[not found] ` <20170223021152.GR12577@umbus.fritz.box>
2017-02-23 7:23 ` [Qemu-devel] [Qemu-ppc] " Greg Kurz
2017-02-23 22:57 ` David Gibson
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=20170112225630.GA13656@umbus.fritz.box \
--to=david@gibson.dropbear.id.au \
--cc=Alex.Williamson@redhat.com \
--cc=abologna@redhat.com \
--cc=aik@ozlabs.ru \
--cc=benh@kernel.crashing.org \
--cc=ehabkost@redhat.com \
--cc=groug@kaod.org \
--cc=laine@redhat.com \
--cc=libvir-list@redhat.com \
--cc=lvivier@redhat.com \
--cc=marcel@redhat.com \
--cc=mdroth@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--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).