From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753993AbbCMB6b (ORCPT ); Thu, 12 Mar 2015 21:58:31 -0400 Received: from szxga01-in.huawei.com ([58.251.152.64]:32784 "EHLO szxga01-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751795AbbCMB61 (ORCPT ); Thu, 12 Mar 2015 21:58:27 -0400 Message-ID: <55024405.8040504@huawei.com> Date: Fri, 13 Mar 2015 09:57:25 +0800 From: Yijing Wang User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20100101 Thunderbird/24.0.1 MIME-Version: 1.0 To: Bjorn Helgaas CC: Jiang Liu , , Yinghai Lu , , Marc Zyngier , , Russell King , , Thomas Gleixner , Benjamin Herrenschmidt , Rusty Russell , Tony Luck , , "David S. Miller" , "Guan Xuetao" , , , Liviu Dudau , "Arnd Bergmann" , Geert Uytterhoeven Subject: Re: [PATCH v6 03/30] PCI: Export busn_resource to drivers/pci References: <1425868467-9667-1-git-send-email-wangyijing@huawei.com> <1425868467-9667-4-git-send-email-wangyijing@huawei.com> <20150311222835.GA1082@google.com> <55017BA1.7020700@huawei.com> <20150312193219.GA7346@google.com> In-Reply-To: <20150312193219.GA7346@google.com> Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.177.27.212] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org >> Hi Bjorn, busn_resource may would not be shared by multi domains, >> >> We insert bus number resource like: >> >> pci_add_resource(&resources, &busn_resource); >> pci_bus_insert_busn_res(root_bus, start, bus_max); //start is the root bus number provided by arch pci host driver, bus max here == 255 >> get_pci_domain_busn_res(domain) //for root bus //try to get a domain specific pci_domain_busn_res, if not exist, create it. >> request_resource_conflict(domain_specific_busn_res, res) //request busn res(start, bus_max) from the pci_domain_busn_res. >> >> So every domain has its own pci_domain_busn_res , different domain would not share the same bus number resource. > > The intent of pci_add_resource() and passing the resulting resource list > into pci_scan_root_bus(), etc., is that the host bridge may consume any > resources described by the list. If we pass the same resource to multiple > calls, that means the resource must be shared between the multiple host > bridges involved. For bus numbers, that makes some sense if the platform > considers the bridges to be in the same domain, but not if they are in > different domains. > > If we export busn_resource, we have no control over what domains it becomes > associated with because the domain is passed into pci_scan_root_bus() by > the caller. Agree, I will drop this patch, thanks! > > Bjorn > > . > -- Thanks! Yijing