From patchwork Mon Jan 28 01:54:10 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yinghai Lu X-Patchwork-Id: 216095 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 81CF82C0096 for ; Mon, 28 Jan 2013 12:54:31 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756298Ab3A1Bya (ORCPT ); Sun, 27 Jan 2013 20:54:30 -0500 Received: from userp1040.oracle.com ([156.151.31.81]:49594 "EHLO userp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756103Ab3A1Bya (ORCPT ); Sun, 27 Jan 2013 20:54:30 -0500 Received: from acsinet22.oracle.com (acsinet22.oracle.com [141.146.126.238]) by userp1040.oracle.com (Sentrion-MTA-4.2.2/Sentrion-MTA-4.2.2) with ESMTP id r0S1sHHh015863 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 28 Jan 2013 01:54:18 GMT Received: from acsmt357.oracle.com (acsmt357.oracle.com [141.146.40.157]) by acsinet22.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r0S1sHFL021486 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 28 Jan 2013 01:54:17 GMT Received: from abhmt112.oracle.com (abhmt112.oracle.com [141.146.116.64]) by acsmt357.oracle.com (8.12.11.20060308/8.12.11) with ESMTP id r0S1sH0f012004; Sun, 27 Jan 2013 19:54:17 -0600 Received: from linux-siqj.site (/75.36.251.60) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Sun, 27 Jan 2013 17:54:16 -0800 From: Yinghai Lu To: Bjorn Helgaas , Jiang Liu , "Rafael J. Wysocki" , Taku Izumi , Toshi Kani Cc: "Greg Kroah-Hartman" , Russell King , linux-pci@vger.kernel.org, Yinghai Lu Subject: [PATCH v3 22/22] PCI: Kill pci_root_buses Date: Sun, 27 Jan 2013 17:54:10 -0800 Message-Id: <1359338050-22735-5-git-send-email-yinghai@kernel.org> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1359338050-22735-1-git-send-email-yinghai@kernel.org> References: <1359338050-22735-1-git-send-email-yinghai@kernel.org> X-Source-IP: acsinet22.oracle.com [141.146.126.238] Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org No user now, remove it. Signed-off-by: Yinghai Lu --- drivers/pci/probe.c | 8 -------- include/linux/pci.h | 3 --- 2 files changed, 11 deletions(-) diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index 04ecf0d..8420b9d 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c @@ -23,10 +23,6 @@ struct resource busn_resource = { .flags = IORESOURCE_BUS, }; -/* Ugh. Need to stop exporting this to modules. */ -LIST_HEAD(pci_root_buses); -EXPORT_SYMBOL(pci_root_buses); - static LIST_HEAD(pci_domain_busn_res_list); struct pci_domain_busn_res { @@ -1746,10 +1742,6 @@ struct pci_bus *pci_create_root_bus(struct device *parent, int bus, dev_info(&b->dev, "root bus resource %pR%s\n", res, bus_addr); } - down_write(&pci_bus_sem); - list_add_tail(&b->node, &pci_root_buses); - up_write(&pci_bus_sem); - return b; class_dev_reg_err: diff --git a/include/linux/pci.h b/include/linux/pci.h index bb07db2..b42721b 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -674,9 +674,6 @@ extern enum pcie_bus_config_types pcie_bus_config; extern struct bus_type pci_host_bridge_bus_type; extern struct bus_type pci_bus_type; -/* Do NOT directly access these two variables, unless you are arch specific pci - * code, or pci core code. */ -extern struct list_head pci_root_buses; /* list of all known PCI buses */ /* Some device drivers need know if pci is initiated */ extern int no_pci_devices(void);