From: David Gibson <david@gibson.dropbear.id.au>
To: Greg Kurz <groug@kaod.org>
Cc: qemu-ppc@nongnu.org, qemu-devel@nongnu.org, mst@redhat.com
Subject: Re: [Qemu-devel] [Qemu-ppc] [PATCH v3 5/5] pci: Fold pci_get_bus_devfn() into its sole caller
Date: Wed, 8 May 2019 12:11:01 +1000 [thread overview]
Message-ID: <20190508021101.GO7073@umbus.fritz.box> (raw)
In-Reply-To: <20190507122129.1667a456@bahia.lan>
[-- Attachment #1: Type: text/plain, Size: 4058 bytes --]
On Tue, May 07, 2019 at 12:21:29PM +0200, Greg Kurz wrote:
> On Tue, 7 May 2019 16:23:16 +1000
> David Gibson <david@gibson.dropbear.id.au> wrote:
>
> > The only remaining caller of pci_get_bus_devfn() is pci_nic_init_nofail(),
> > itself an old compatibility function. Fold the two together to avoid
> > re-using the stale interface.
> >
> > While we're there replace the explicit fprintf()s with error_report().
> >
> > Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
> > ---
> > hw/pci/pci.c | 61 +++++++++++++++++++++++++---------------------------
> > 1 file changed, 29 insertions(+), 32 deletions(-)
> >
> > diff --git a/hw/pci/pci.c b/hw/pci/pci.c
> > index 7e5f8d001b..90e2743185 100644
> > --- a/hw/pci/pci.c
> > +++ b/hw/pci/pci.c
> > @@ -723,37 +723,6 @@ static int pci_parse_devaddr(const char *addr, int *domp, int *busp,
> > return 0;
> > }
> >
> > -static PCIBus *pci_get_bus_devfn(int *devfnp, PCIBus *root,
> > - const char *devaddr)
> > -{
> > - int dom, bus;
> > - unsigned slot;
> > -
> > - if (!root) {
> > - fprintf(stderr, "No primary PCI bus\n");
> > - return NULL;
> > - }
> > -
> > - assert(!root->parent_dev);
> > -
> > - if (!devaddr) {
> > - *devfnp = -1;
> > - return pci_find_bus_nr(root, 0);
> > - }
> > -
> > - if (pci_parse_devaddr(devaddr, &dom, &bus, &slot, NULL) < 0) {
> > - return NULL;
> > - }
> > -
> > - if (dom != 0) {
> > - fprintf(stderr, "No support for non-zero PCI domains\n");
> > - return NULL;
> > - }
> > -
> > - *devfnp = PCI_DEVFN(slot, 0);
> > - return pci_find_bus_nr(root, bus);
> > -}
> > -
> > static void pci_init_cmask(PCIDevice *dev)
> > {
> > pci_set_word(dev->cmask + PCI_VENDOR_ID, 0xffff);
> > @@ -1895,6 +1864,8 @@ PCIDevice *pci_nic_init_nofail(NICInfo *nd, PCIBus *rootbus,
> > DeviceState *dev;
> > int devfn;
> > int i;
> > + int dom, busnr;
> > + unsigned slot;
> >
> > if (nd->model && !strcmp(nd->model, "virtio")) {
> > g_free(nd->model);
> > @@ -1928,7 +1899,33 @@ PCIDevice *pci_nic_init_nofail(NICInfo *nd, PCIBus *rootbus,
> > exit(1);
> > }
> >
> > - bus = pci_get_bus_devfn(&devfn, rootbus, devaddr);
> > + if (!rootbus) {
> > + error_report("No primary PCI bus");
> > + exit(1);
> > + }
> > +
> > + assert(!rootbus->parent_dev);
> > +
> > + if (!devaddr) {
> > + devfn = -1;
> > + busnr = 0;
> > + bus = pci_find_bus_nr(rootbus, 0);
>
> This line isn't needed since it is done below...
Oops, missed that when I factored the find_bus_nr out of the if.
Fixed now.
> > + } else {
> > + if (pci_parse_devaddr(devaddr, &dom, &busnr, &slot, NULL) < 0) {
> > + error_report("Invalid PCI device address %s for device %s",
> > + devaddr, nd->model);
> > + exit(1);
> > + }
> > +
> > + if (dom != 0) {
> > + error_report("No support for non-zero PCI domains");
> > + exit(1);
> > + }
> > +
> > + devfn = PCI_DEVFN(slot, 0);
> > + }
> > +
> > + bus = pci_find_bus_nr(rootbus, busnr);
>
> ... here.
>
> > if (!bus) {
> > error_report("Invalid PCI device address %s for device %s",
> > devaddr, nd->model);
>
> Maybe output a different message from the one for pci_parse_devaddr()
> failures ? Here, the address is supposed to be well formatted but we
> couldn't find the requested bus.
I thought about that, but couldn't think of a could way of expressing
it. Since this is only for a legacy option and it was already
ambiguous, I'm not overly concerned by it.
--
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: 833 bytes --]
prev parent reply other threads:[~2019-05-08 2:32 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-07 6:23 [Qemu-devel] [PATCH v3 0/5] Simplify some not-really-necessary PCI bus callbacks David Gibson
2019-05-07 6:23 ` [Qemu-devel] [PATCH v3 1/5] pcie: Remove redundant test in pcie_mmcfg_data_{read, write}() David Gibson
2019-05-07 6:23 ` [Qemu-devel] [PATCH v3 2/5] pci: Simplify pci_bus_is_root() David Gibson
2019-05-07 6:23 ` [Qemu-devel] [PATCH v3 3/5] pcie: Simplify pci_adjust_config_limit() David Gibson
2019-05-07 6:23 ` [Qemu-devel] [PATCH v3 4/5] pci: Make is_bridge a bool David Gibson
2019-05-07 10:02 ` [Qemu-devel] [Qemu-ppc] " Greg Kurz
2019-05-07 6:23 ` [Qemu-devel] [PATCH v3 5/5] pci: Fold pci_get_bus_devfn() into its sole caller David Gibson
2019-05-07 10:21 ` [Qemu-devel] [Qemu-ppc] " Greg Kurz
2019-05-08 2:11 ` David Gibson [this message]
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=20190508021101.GO7073@umbus.fritz.box \
--to=david@gibson.dropbear.id.au \
--cc=groug@kaod.org \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@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).