public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [BK PATCH] PCI update for 2.6.3-rc1
@ 2004-02-09 23:13 Greg KH
  2004-02-09 23:22 ` [PATCH] PCI Update " Greg KH
  0 siblings, 1 reply; 32+ messages in thread
From: Greg KH @ 2004-02-09 23:13 UTC (permalink / raw)
  To: torvalds, akpm; +Cc: linux-kernel

Hi,

Here are some PCI and PCI hotplug patches for 2.6.3-rc1.
The majority of this is the dmapool code that has been moved from the
pci core to the driver core to enable platforms that do not have pci
support to still use dma pools.  There are a number of other minor PCI
hotplug fixups, and I cleaned up the PCI MSI code a bit.

All of these changes have been in the last few -mm trees with no
problems (not including the UML build, which the UML people need to fix
in their own...)

Please pull from:
	bk://kernel.bkbits.net/gregkh/linux/pci-2.6

thanks,

greg k-h

p.s. I'll send these as patches in response to this email to lkml for
those who want to see them.


 drivers/pci/pool.c                 |  404 -------------------------------
 include/linux/pci_msi.h            |  170 -------------
 Documentation/DMA-API.txt          |   87 ++++++
 arch/i386/pci/irq.c                |   44 +++
 drivers/base/Makefile              |    4 
 drivers/base/core.c                |    1 
 drivers/base/dmapool.c             |  480 ++++++++++++++++++++++++++++++++++---
 drivers/pci/Makefile               |    2 
 drivers/pci/hotplug.c              |    6 
 drivers/pci/hotplug/acpiphp_core.c |    6 
 drivers/pci/hotplug/acpiphp_glue.c |   56 ++--
 drivers/pci/hotplug/cpqphp_ctrl.c  |    4 
 drivers/pci/hotplug/cpqphp_pci.c   |   28 +-
 drivers/pci/hotplug/ibmphp_core.c  |  195 +++++----------
 drivers/pci/hotplug/ibmphp_ebda.c  |  118 ++++-----
 drivers/pci/hotplug/ibmphp_pci.c   |   78 +++---
 drivers/pci/hotplug/ibmphp_res.c   |   56 ++--
 drivers/pci/msi.c                  |    3 
 drivers/pci/msi.h                  |  168 ++++++++++++
 drivers/pci/pci-driver.c           |    2 
 drivers/pci/pci.ids                |    8 
 drivers/pci/probe.c                |    4 
 drivers/pci/remove.c               |    2 
 drivers/serial/8250_pci.c          |   27 --
 include/linux/device.h             |    1 
 include/linux/dmapool.h            |   27 ++
 include/linux/pci.h                |   16 -
 include/linux/pci_msi.h            |   29 --
 28 files changed, 1044 insertions(+), 982 deletions(-)
-----


<dlsy:snoqualmie.dp.intel.com>:
  o PCI: Patch to get cpqphp working with IOAPIC

<dsaxena:plexity.net>:
  o PCI: Replace pci_pool with generic dma_pool, part 2
  o PCI: Replace pci_pool with generic dma_pool

<eike-hotplug:sf-tec.de>:
  o PCI Hotplug: Convert error paths in ibmphp to use goto
  o PCI Hotplug: mark functions __init/__exit in acpiphp
  o PCI Hotplug: make ibm_unconfigure_device void
  o PCI Hotplug: kill hpcrc from several functions in ibmphp_core.c
  o PCI Hotplug: very small optimisations for ibmphp_pci.c
  o PCI Hotplug: Coding style fixes for drivers/pci/hotplug.c
  o PCI: avoid two returns directly after each other in pcidriver.c
  o PCI Hotplug: Kill useless instructions from ibmphp_core.c
  o PCI Hotplug: Kill spaces before \n in ibmphp*
  o PCI Hotplug: Whitespace fixes for acpiphp
  o PCI Hotplug: coding style for cpqphp_pci.c

Adam Belay:
  o PCI: Remove uneeded resource structures from pci_dev

David Brownell:
  o PCI: dma_pool fixups

Greg Kroah-Hartman:
  o dmapool: fix up list_for_each() calls to list_for_each_entry()
  o PCI: move pci_msi.h out of include/linux to drivers/pci where it belongs
  o PCI: remove stupid MSI debugging code that was never used
  o dmapool: Remove sentance in documentation that is now false on 2.6
  o dmapool: use dev_err() whenever we can to get the better information in it
  o PCI: add back some pci.ids entries that got deleted in the last big update

Matthew Dobson:
  o PCI: fix "pcibus_class" Device Class, release function


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

end of thread, other threads:[~2004-02-18 19:43 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-02-09 23:13 [BK PATCH] PCI update for 2.6.3-rc1 Greg KH
2004-02-09 23:22 ` [PATCH] PCI Update " Greg KH
2004-02-09 23:22   ` Greg KH
2004-02-09 23:22     ` Greg KH
2004-02-09 23:22       ` Greg KH
2004-02-09 23:22         ` Greg KH
2004-02-09 23:22           ` Greg KH
2004-02-09 23:22             ` Greg KH
2004-02-09 23:22               ` Greg KH
2004-02-09 23:22                 ` Greg KH
2004-02-09 23:22                   ` Greg KH
2004-02-09 23:22                     ` Greg KH
2004-02-09 23:22                       ` Greg KH
2004-02-09 23:22                         ` Greg KH
2004-02-09 23:22                           ` Greg KH
2004-02-09 23:22                             ` Greg KH
2004-02-09 23:22                               ` Greg KH
2004-02-09 23:22                                 ` Greg KH
2004-02-09 23:22                                   ` Greg KH
2004-02-09 23:22                                     ` Greg KH
2004-02-09 23:22                                       ` Greg KH
2004-02-09 23:22                                         ` Greg KH
2004-02-09 23:22                                           ` Greg KH
2004-02-09 23:22                                             ` Greg KH
2004-02-10 11:11                                               ` Marcelo Tosatti
2004-02-10 16:03     ` Geert Uytterhoeven
2004-02-10 16:46       ` Greg KH
2004-02-10 17:03         ` Kai Germaschewski
2004-02-10 17:49         ` Karsten Keil
2004-02-11 22:27           ` Adrian Bunk
2004-02-10 18:05         ` Adam Belay
2004-02-18 19:40           ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox