[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAErSpo59DxMDoiym=ZKaATSU0zrEACxowc7XNqP4h0tgig0ufg@mail.gmail.com>
Date: Tue, 25 Jun 2013 21:00:37 -0600
From: Bjorn Helgaas <bhelgaas@...gle.com>
To: Jiang Liu <liuj97@...il.com>
Cc: Yinghai Lu <yinghai@...nel.org>, Jiang Liu <jiang.liu@...wei.com>,
"Rafael J . Wysocki" <rjw@...k.pl>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Gu Zheng <guz.fnst@...fujitsu.com>,
Toshi Kani <toshi.kani@...com>,
Myron Stowe <myron.stowe@...hat.com>,
Yijing Wang <wangyijing@...wei.com>,
"linux-pci@...r.kernel.org" <linux-pci@...r.kernel.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
Mauro Carvalho Chehab <mchehab@...hat.com>,
Doug Thompson <dougthompson@...ssion.com>,
linux-edac@...r.kernel.org
Subject: Re: [PATCH v3, part2 15/20] PCI, EDAC: use hotplug-safe PCI bus
iterators to walk PCI buses
On Tue, Jun 18, 2013 at 10:33 AM, Jiang Liu <liuj97@...il.com> wrote:
> On 06/18/2013 04:18 AM, Bjorn Helgaas wrote:
>> On Sun, May 26, 2013 at 11:53:12PM +0800, Jiang Liu wrote:
>>> Enhance EDAC drviers to use hotplug-safe iterators to walk PCI buses.
>>>
>>> Signed-off-by: Jiang Liu <jiang.liu@...wei.com>
>>> Cc: Mauro Carvalho Chehab <mchehab@...hat.com>
>>> Cc: Doug Thompson <dougthompson@...ssion.com> r
>>> Cc: linux-edac@...r.kernel.org
>>> Cc: linux-kernel@...r.kernel.org
>>> ---
>>> drivers/edac/i7core_edac.c | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/drivers/edac/i7core_edac.c b/drivers/edac/i7core_edac.c
>>> index 0ec3e95..7146e10 100644
>>> --- a/drivers/edac/i7core_edac.c
>>> +++ b/drivers/edac/i7core_edac.c
>>> @@ -1296,7 +1296,7 @@ static unsigned i7core_pci_lastbus(void)
>>> int last_bus = 0, bus;
>>> struct pci_bus *b = NULL;
>>>
>>> - while ((b = pci_find_next_bus(b)) != NULL) {
>>> + for_each_pci_root_bus(b) {
>>
>> This doesn't look equivalent. Previously, we iterated over all PCI
>> buses, so we returned the highest bus number seen anywhere. Now we
>> only look at root buses, so we return the highest bus number of any
>> root bus. But if that root bus has a bridge on it, obviously the
>> bus on the other side has a higher number.
> Hi Bjorn,
> I think the name pci_find_next_bus() is misleading, it should be named
> pci_find_next_root_bus() actually because it returns next root bus indeed.
Oh, you forgot to mention that critical bit of information! That
should be in the changelog of every patch that changes a call to
pci_find_next_bus().
Bjorn
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists