All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PATCH] PCI patches for 2.6.14
@ 2005-10-28 22:50 Greg KH
  2005-10-28 22:53 ` Matthew Wilcox
  0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2005-10-28 22:50 UTC (permalink / raw)
  To: Linus Torvalds, Andrew Morton; +Cc: linux-kernel, linux-pci

Here are some PCI patches against your latest git tree.  They have all
been in the -mm tree for a while with no problems.

Main things here are:
	- pci-ids.h cleanup
	- shpchp driver cleanup (very good job done here.)
	- more quirks added.


Please pull from:
	rsync://rsync.kernel.org/pub/scm/linux/kernel/git/gregkh/pci-2.6.git/
or if master.kernel.org hasn't synced up yet:
	master.kernel.org:/pub/scm/linux/kernel/git/gregkh/pci-2.6.git/

The full patches will be sent to the linux-pci mailing lists, if anyone
wants to see them.

thanks,

greg k-h

 Documentation/DocBook/kernel-api.tmpl  |    4 
 arch/i386/pci/fixup.c                  |   59 
 drivers/pci/access.c                   |   89 +
 drivers/pci/hotplug/acpiphp_glue.c     |    8 
 drivers/pci/hotplug/cpcihp_zt5550.c    |   25 
 drivers/pci/hotplug/cpqphp_core.c      |   24 
 drivers/pci/hotplug/rpaphp.h           |    3 
 drivers/pci/hotplug/rpaphp_core.c      |    5 
 drivers/pci/hotplug/rpaphp_pci.c       |   11 
 drivers/pci/hotplug/shpchp.h           |  126 -
 drivers/pci/hotplug/shpchp_core.c      |  111 -
 drivers/pci/hotplug/shpchp_ctrl.c      | 2120 +--------------------------------
 drivers/pci/hotplug/shpchp_hpc.c       |  175 --
 drivers/pci/hotplug/shpchp_pci.c       |  879 +------------
 drivers/pci/hotplug/shpchp_sysfs.c     |  197 +--
 drivers/pci/hotplug/shpchprm.h         |   55 
 drivers/pci/hotplug/shpchprm_acpi.c    | 1653 -------------------------
 drivers/pci/hotplug/shpchprm_legacy.c  |  395 ------
 drivers/pci/hotplug/shpchprm_legacy.h  |  113 -
 drivers/pci/hotplug/shpchprm_nonacpi.c |  389 ------
 drivers/pci/hotplug/shpchprm_nonacpi.h |   56 
 drivers/pci/msi.c                      |    2 
 drivers/pci/pci-driver.c               |   17 
 drivers/pci/pci-sysfs.c                |   20 
 drivers/pci/pci.c                      |   21 
 drivers/pci/pci.h                      |    7 
 drivers/pci/probe.c                    |    1 
 drivers/pci/proc.c                     |   28 
 drivers/pci/quirks.c                   |   37 
 drivers/pci/syscall.c                  |   14 
 drivers/scsi/ipr.c                     |    2 
 drivers/scsi/megaraid/megaraid_mbox.c  |   10 
 drivers/video/cirrusfb.c               |   24 
 include/linux/pci.h                    |    7 
 include/linux/pci_ids.h                |  577 --------
 sound/oss/ymfpci.c                     |   17 
 sound/pci/bt87x.c                      |   11 
 37 files changed, 841 insertions(+), 6451 deletions(-)


Andrew Morton:
      PCI: fix edac drivers for radisys 82600 borkage

Bjorn Helgaas:
      cpcihp_zt5550: add pci_enable_device()
      cpqphp: add pci_enable_device()

Brian King:
      PCI: ipr: Block config access during BIST
      PCI: Block config access during BIST

Grant Coady:
      pci_ids: macros: replace partial with whole symbols
      pci_ids: remove duplicates from pci_ids.h
      pci_ids: remove non-referenced symbols from pci_ids.h
      pci_ids: cleanup comments

Jean Delvare:
      PCI: Add quirk for SMBus on HP D530

Jesse Barnes:
      PCI fixup for Toshiba laptops and ohci1394

John W. Linville:
      pci: cleanup need_restore switch statement

Kristen Accardi:
      acpiphp: allocate resources for adapters with bridges

linas:
      ppc64 PCI Hotplug: cleanup unsymmetric API routines

rajesh.shah@intel.com:
      shpchp: remove redundant display of PCI device resources
      shpchp: use the PCI core for hotplug resource management
      shpchp: detect SHPC capability before doing a lot of work
      shpchp: remove redundant data structures
      shpchp: reduce dependence on ACPI
      shpchp: dont save PCI config for hotplug slots/devices
      shpchp: reduce debug message verbosity
      shpchp: miscellaneous cleanups
      shpchp: fix oops at driver unload

Randy Dunlap:
      kernel-doc: PCI fixes
      kernel-doc: fix PCI hotplug

Rudolf Marek:
      PCI: ICH6 ACPI and GPIO quirk
      unhide ICH6 SMBus - take 2

Russell King:
      PCI: Convert megaraid to use pci_driver shutdown method
      PCI: Fixup PCI driver shutdown


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

* Re: [GIT PATCH] PCI patches for 2.6.14
  2005-10-28 22:50 [GIT PATCH] PCI patches for 2.6.14 Greg KH
@ 2005-10-28 22:53 ` Matthew Wilcox
  2005-10-28 23:04   ` Greg KH
  2005-10-28 23:17   ` Rajesh Shah
  0 siblings, 2 replies; 4+ messages in thread
From: Matthew Wilcox @ 2005-10-28 22:53 UTC (permalink / raw)
  To: Greg KH; +Cc: Linus Torvalds, Andrew Morton, linux-kernel, linux-pci

On Fri, Oct 28, 2005 at 03:50:55PM -0700, Greg KH wrote:
> Here are some PCI patches against your latest git tree.  They have all
> been in the -mm tree for a while with no problems.
> 
> Main things here are:
> 	- pci-ids.h cleanup
> 	- shpchp driver cleanup (very good job done here.)
> 	- more quirks added.

Does this just about clear you out of pending PCI patches?  I want to do
the s/hotplug_slot/pci_slot/ changes soon and it'll cause massive
conflicts with anyone else's pending work.

(I suppose I could do a gradual transition with a #define if preferred,
but a big bang seems like much less effort)

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

* Re: [GIT PATCH] PCI patches for 2.6.14
  2005-10-28 22:53 ` Matthew Wilcox
@ 2005-10-28 23:04   ` Greg KH
  2005-10-28 23:17   ` Rajesh Shah
  1 sibling, 0 replies; 4+ messages in thread
From: Greg KH @ 2005-10-28 23:04 UTC (permalink / raw)
  To: Matthew Wilcox
  Cc: Greg KH, Linus Torvalds, Andrew Morton, linux-kernel, linux-pci

On Fri, Oct 28, 2005 at 04:53:35PM -0600, Matthew Wilcox wrote:
> On Fri, Oct 28, 2005 at 03:50:55PM -0700, Greg KH wrote:
> > Here are some PCI patches against your latest git tree.  They have all
> > been in the -mm tree for a while with no problems.
> > 
> > Main things here are:
> > 	- pci-ids.h cleanup
> > 	- shpchp driver cleanup (very good job done here.)
> > 	- more quirks added.
> 
> Does this just about clear you out of pending PCI patches?  I want to do
> the s/hotplug_slot/pci_slot/ changes soon and it'll cause massive
> conflicts with anyone else's pending work.

Yes, it clears out all PCI patches I have, with the exception of the
.owner patch that was sent yesterday to me.

I do have some other pci_find_device patches in my TODO queue that I
need to look at, but I haven't gotten to them yet.

I don't know of any other pending hotplug work, so feel free to hack
away :)

thanks,

greg k-h

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

* Re: [GIT PATCH] PCI patches for 2.6.14
  2005-10-28 22:53 ` Matthew Wilcox
  2005-10-28 23:04   ` Greg KH
@ 2005-10-28 23:17   ` Rajesh Shah
  1 sibling, 0 replies; 4+ messages in thread
From: Rajesh Shah @ 2005-10-28 23:17 UTC (permalink / raw)
  To: Matthew Wilcox
  Cc: Greg KH, Linus Torvalds, Andrew Morton, linux-kernel, linux-pci

On Fri, Oct 28, 2005 at 04:53:35PM -0600, Matthew Wilcox wrote:
> On Fri, Oct 28, 2005 at 03:50:55PM -0700, Greg KH wrote:
> > Here are some PCI patches against your latest git tree.  They have all
> > been in the -mm tree for a while with no problems.
> > 
> > Main things here are:
> > 	- pci-ids.h cleanup
> > 	- shpchp driver cleanup (very good job done here.)
> > 	- more quirks added.
> 
> Does this just about clear you out of pending PCI patches?  I want to do
> the s/hotplug_slot/pci_slot/ changes soon and it'll cause massive
> conflicts with anyone else's pending work.
> 
> (I suppose I could do a gradual transition with a #define if preferred,
> but a big bang seems like much less effort)

I just got done doing to pciehp what I did to shpchp (major
revamp). The code is working on one machine and I'm testing
on another. I hope to send it out early next week. If you can
wait till then, it'd be great. If I can't send it out by next
week, I can merge my changes on top of yours.

Thanks,
Rajesh

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

end of thread, other threads:[~2005-10-28 23:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-28 22:50 [GIT PATCH] PCI patches for 2.6.14 Greg KH
2005-10-28 22:53 ` Matthew Wilcox
2005-10-28 23:04   ` Greg KH
2005-10-28 23:17   ` Rajesh Shah

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.