linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/21] PCI: use busn_res to replace bus secondary/subordinate
@ 2012-05-07 20:29 Yinghai Lu
  2012-05-07 20:29 ` [PATCH 01/21] PCI: add busn_res into struct pci_bus Yinghai Lu
                   ` (21 more replies)
  0 siblings, 22 replies; 33+ messages in thread
From: Yinghai Lu @ 2012-05-07 20:29 UTC (permalink / raw)
  To: Bjorn Helgaas, Benjamin Herrenschmidt, Tony Luck, David Miller, x86
  Cc: Dominik Brodowski, Andrew Morton, Linus Torvalds,
	Greg Kroah-Hartman, linux-pci, linux-kernel, linux-arch,
	Yinghai Lu

struct pci_bus will take busn_res instead. and those busn_res will be in
domain busn_res tree.

This could be base of busn_res allocation patchset.

The patches need to apply to pci-next and
	for-pci-hotplug cleanup

could be found at:
        git://git.kernel.org/pub/scm/linux/kernel/git/yinghai/linux-yinghai.git for-pci-busn_res

Bjorn Helgaas (1):
  PCI: print conflicting entry in busn_res inserting

Yinghai Lu (20):
  PCI: add busn_res into struct pci_bus.
  PCI: replace secondary/subordinate with busn_res
  PCI: Remove secondary/subordinate in struct ci_bus
  PCI: Add busn_res for pci domain.
  resource: adjust_resource handle resource without parent
  PCI: Add busn_res operation functions
  PCI: release busn_res when removing bus
  PCI: Insert busn_res in pci_create_root_bus()
  PCI: checking busn_res in pci_scan_root_bus()
  PCI: Add default busn_resource
  PCI: Add default busn_res for pci_scan_bus()
  x86/PCI: add busn_res into resources list for ACPI path
  x86/PCI: put busn resource in pci_root_info for native host bridge
    drivers
  ia64/PCI: register busn_res for root buses
  sparc/PCI: register busn_res for root buses
  powerpc/PCI: register busn_res for root buses
  parisc/PCI: register busn_res for root buses
  tile/PCI: Use pci_scan_root_bus instead pci_scan_bus
  PCI: Register busn_res for iov bus
  PCI: insert busn_res for child bus

 arch/alpha/kernel/pci.c                    |    2 +-
 arch/arm/kernel/bios32.c                   |    2 +-
 arch/ia64/pci/pci.c                        |    4 +-
 arch/microblaze/pci/pci-common.c           |    4 +-
 arch/mips/pci/pci.c                        |    2 +-
 arch/powerpc/include/asm/pci-bridge.h      |    1 +
 arch/powerpc/kernel/pci-common.c           |   17 ++-
 arch/powerpc/kernel/pci_64.c               |    2 +-
 arch/powerpc/kernel/pci_of_scan.c          |    2 +-
 arch/powerpc/platforms/powernv/pci-ioda.c  |    8 +-
 arch/powerpc/platforms/pseries/pci_dlpar.c |    2 +-
 arch/sh/drivers/pci/pci.c                  |    2 +-
 arch/sparc/kernel/pci.c                    |    8 +-
 arch/sparc/kernel/pci_impl.h               |    1 +
 arch/tile/kernel/pci.c                     |    9 +-
 arch/x86/pci/acpi.c                        |    9 +-
 arch/x86/pci/amd_bus.c                     |    7 +-
 arch/x86/pci/bus_numa.c                    |   22 +++-
 arch/x86/pci/bus_numa.h                    |    3 +-
 arch/xtensa/kernel/pci.c                   |    2 +-
 drivers/iommu/intel-iommu.c                |    2 +-
 drivers/net/ethernet/broadcom/tg3.c        |    4 +-
 drivers/parisc/dino.c                      |   16 ++-
 drivers/parisc/iosapic.c                   |    2 +-
 drivers/parisc/lba_pci.c                   |   26 ++--
 drivers/pci/hotplug-pci.c                  |    4 +-
 drivers/pci/hotplug/acpiphp_glue.c         |    8 +-
 drivers/pci/hotplug/shpchp_sysfs.c         |    6 +-
 drivers/pci/iov.c                          |    4 +-
 drivers/pci/pci.c                          |    2 +-
 drivers/pci/probe.c                        |  191 +++++++++++++++++++++++-----
 drivers/pci/remove.c                       |    1 +
 drivers/pci/setup-bus.c                    |   24 ++--
 drivers/pcmcia/cardbus.c                   |    2 +-
 drivers/pcmcia/yenta_socket.c              |   26 ++--
 include/linux/pci.h                        |    8 +-
 kernel/resource.c                          |   13 +-
 37 files changed, 313 insertions(+), 135 deletions(-)

-- 
1.7.7


^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2012-05-21 20:06 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-07 20:29 [PATCH 00/21] PCI: use busn_res to replace bus secondary/subordinate Yinghai Lu
2012-05-07 20:29 ` [PATCH 01/21] PCI: add busn_res into struct pci_bus Yinghai Lu
2012-05-07 20:29 ` [PATCH 02/21] PCI: replace secondary/subordinate with busn_res Yinghai Lu
2012-05-07 20:29 ` [PATCH 03/21] PCI: Remove secondary/subordinate in struct ci_bus Yinghai Lu
2012-05-07 20:29 ` [PATCH 04/21] PCI: Add busn_res for pci domain Yinghai Lu
2012-05-07 20:29 ` [PATCH 05/21] resource: adjust_resource handle resource without parent Yinghai Lu
2012-05-18 17:12   ` Bjorn Helgaas
2012-05-18 17:54     ` Yinghai Lu
2012-05-18 18:06       ` Bjorn Helgaas
2012-05-07 20:29 ` [PATCH 06/21] PCI: Add busn_res operation functions Yinghai Lu
2012-05-07 20:29 ` [PATCH 07/21] PCI: print conflicting entry in busn_res inserting Yinghai Lu
2012-05-07 20:29 ` [PATCH 08/21] PCI: release busn_res when removing bus Yinghai Lu
2012-05-07 20:29 ` [PATCH 09/21] PCI: Insert busn_res in pci_create_root_bus() Yinghai Lu
2012-05-07 20:29 ` [PATCH 10/21] PCI: checking busn_res in pci_scan_root_bus() Yinghai Lu
2012-05-07 20:29 ` [PATCH 11/21] PCI: Add default busn_resource Yinghai Lu
2012-05-07 20:29 ` [PATCH 12/21] PCI: Add default busn_res for pci_scan_bus() Yinghai Lu
2012-05-07 20:29 ` [PATCH 13/21] x86/PCI: add busn_res into resources list for ACPI path Yinghai Lu
2012-05-07 20:29 ` [PATCH 14/21] x86/PCI: put busn resource in pci_root_info for native host bridge drivers Yinghai Lu
2012-05-07 20:30 ` [PATCH 15/21] ia64/PCI: register busn_res for root buses Yinghai Lu
2012-05-07 20:30 ` [PATCH 16/21] sparc/PCI: " Yinghai Lu
2012-05-07 20:43   ` David Miller
2012-05-07 20:30 ` [PATCH 17/21] powerpc/PCI: " Yinghai Lu
2012-05-07 20:30 ` [PATCH 18/21] parisc/PCI: " Yinghai Lu
2012-05-07 20:30 ` [PATCH 19/21] tile/PCI: Use pci_scan_root_bus instead pci_scan_bus Yinghai Lu
2012-05-09 19:32   ` Chris Metcalf
2012-05-09 19:45     ` Yinghai Lu
2012-05-07 20:30 ` [PATCH 20/21] PCI: Register busn_res for iov bus Yinghai Lu
2012-05-07 20:30 ` [PATCH 21/21] PCI: insert busn_res for child bus Yinghai Lu
2012-05-17 22:19 ` [PATCH 00/21] PCI: use busn_res to replace bus secondary/subordinate Bjorn Helgaas
2012-05-18  2:13   ` Yinghai Lu
2012-05-18 23:32     ` Bjorn Helgaas
2012-05-19  4:38       ` Yinghai Lu
2012-05-21 20:06         ` Bjorn Helgaas

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).