qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] Re: [PATCH] pci: fix pci_find_bus()


From: Michael S. Tsirkin
Subject: [Qemu-devel] Re: [PATCH] pci: fix pci_find_bus()
Date: Mon, 8 Feb 2010 12:30:00 +0200
User-agent: Mutt/1.5.19 (2009-01-05)

On Mon, Feb 08, 2010 at 03:38:36PM +0900, Isaku Yamahata wrote:
> typo in c021f8e65f5009a5ab5711d9d5326fcab553ef1c.
> comparison fix.
> 
> Cc: Blue Swirl <address@hidden>
> Cc: "Michael S. Tsirkin" <address@hidden>
> Signed-off-by: Isaku Yamahata <address@hidden>

thanks, applied.

> ---
>  hw/pci.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/hw/pci.c b/hw/pci.c
> index 9ad63dd..e91d2e6 100644
> --- a/hw/pci.c
> +++ b/hw/pci.c
> @@ -1558,7 +1558,7 @@ PCIBus *pci_find_bus(PCIBus *bus, int bus_num)
>      /* try child bus */
>      QLIST_FOREACH(sec, &bus->child, sibling) {
>          if (!bus->parent_dev /* pci host bridge */
> -            || (pci_bus_num(sec) >= bus_num &&
> +            || (pci_bus_num(sec) <= bus_num &&
>                  bus_num <= bus->parent_dev->config[PCI_SUBORDINATE_BUS]) ) {
>              ret = pci_find_bus(sec, bus_num);
>              if (ret) {
> -- 
> 1.6.6.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]