linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PATCH] PCI patches for 2.6.20-rc1
@ 2006-12-20 20:01 Greg KH
  2006-12-21  7:36 ` Grant Grundler
  0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2006-12-20 20:01 UTC (permalink / raw)
  To: Linus Torvalds, Andrew Morton; +Cc: linux-kernel, linux-pci, pcihpd-discuss

Here are some PCI patches for 2.6.20-rc1

They contain a number of PCI quirk fixes and some PCI hotplug driver
fixes and changes, and some other stuff that is detailed below.

All of these patches have been in the -mm tree for a while.

Please pull from:
	git://git.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 list, if anyone
wants to see them.

thanks,

greg k-h

 arch/i386/pci/fixup.c              |   13 ++-
 arch/powerpc/sysdev/mpic.c         |    2 +-
 drivers/ide/pci/atiixp.c           |    1 -
 drivers/pci/hotplug/acpiphp_glue.c |    2 +-
 drivers/pci/hotplug/rpaphp_slot.c  |   47 ++++----
 drivers/pci/hotplug/shpchp.h       |  238 ++++++++++--------------------------
 drivers/pci/hotplug/shpchp_core.c  |  116 ++----------------
 drivers/pci/hotplug/shpchp_ctrl.c  |   21 ++--
 drivers/pci/hotplug/shpchp_hpc.c   |  223 ++++++++++------------------------
 drivers/pci/htirq.c                |    9 +--
 drivers/pci/pci-driver.c           |   12 +-
 drivers/pci/pci.c                  |  112 +++++++++++++++--
 drivers/pci/pcie/portdrv_pci.c     |    2 +-
 drivers/pci/probe.c                |   11 +-
 drivers/pci/quirks.c               |  217 ++++++++++++++++++++++-----------
 drivers/pci/search.c               |   38 +++---
 drivers/pci/setup-res.c            |   19 +++-
 include/asm-generic/vmlinux.lds.h  |    3 +
 include/linux/Kbuild               |    2 -
 include/linux/ioport.h             |    3 +
 include/linux/pci.h                |   29 ++++-
 include/linux/pci_ids.h            |    4 +
 include/linux/pci_regs.h           |   19 +++-
 23 files changed, 537 insertions(+), 606 deletions(-)

---------------

Adrian Bunk (1):
      PCI: don't export device IDs to userspace

Alan Cox (2):
      pci: Introduce pci_find_present
      PCI: Fix multiple problems with VIA hardware

Conke Hu (1):
      PCI: ATI sb600 sata quirk

David Rientjes (1):
      PCI quirks: remove redundant check

Inaky Perez-Gonzalez (1):
      pci: add class codes for Wireless RF controllers

Jesper Juhl (1):
      PCI: Be a bit defensive in quirk_nvidia_ck804() so we don't risk dereferencing a NULL pdev.

Kenji Kaneshige (5):
      PCI: pcieport-driver: remove invalid warning message
      shpchp: remove unnecessary struct php_ctlr
      shpchp: cleanup struct controller
      shpchp: remove shpchprm_get_physical_slot_number
      shpchp: cleanup shpchp.h

Kristen Carlson Accardi (1):
      acpiphp: Link-time error for PCI Hotplug

Linas Vepstas (1):
      rpaphp: compiler warning cleanup

Michael Ellerman (6):
      PCI: Create __pci_bus_find_cap_start() from __pci_bus_find_cap()
      PCI: Add pci_find_ht_capability() for finding Hypertransport capabilities
      PCI: Use pci_find_ht_capability() in drivers/pci/htirq.c
      PCI: Add #defines for Hypertransport MSI fields
      PCI: Use pci_find_ht_capability() in drivers/pci/quirks.c
      PCI: Only check the HT capability bits in mpic.c

Ralf Baechle (1):
      PCI legacy resource fix

Russell King (1):
      PCI: use /sys/bus/pci/drivers/<driver>/new_id first


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

* Re: [GIT PATCH] PCI patches for 2.6.20-rc1
  2006-12-20 20:01 [GIT PATCH] PCI patches for 2.6.20-rc1 Greg KH
@ 2006-12-21  7:36 ` Grant Grundler
  2006-12-21  8:04   ` Andrew Morton
  0 siblings, 1 reply; 4+ messages in thread
From: Grant Grundler @ 2006-12-21  7:36 UTC (permalink / raw)
  To: Greg KH
  Cc: Linus Torvalds, Andrew Morton, linux-kernel, linux-pci, pcihpd-discuss

On Wed, Dec 20, 2006 at 12:01:42PM -0800, Greg KH wrote:
> Here are some PCI patches for 2.6.20-rc1
> 
> They contain a number of PCI quirk fixes and some PCI hotplug driver
> fixes and changes, and some other stuff that is detailed below.

Any reasons why the Documentation/pci.txt patch isn't included?
Did I botch something?
Should I resubmit?

thanks,
grant

> 
> All of these patches have been in the -mm tree for a while.
> 
> Please pull from:
> 	git://git.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 list, if anyone
> wants to see them.
> 
> thanks,
> 
> greg k-h
> 
>  arch/i386/pci/fixup.c              |   13 ++-
>  arch/powerpc/sysdev/mpic.c         |    2 +-
>  drivers/ide/pci/atiixp.c           |    1 -
>  drivers/pci/hotplug/acpiphp_glue.c |    2 +-
>  drivers/pci/hotplug/rpaphp_slot.c  |   47 ++++----
>  drivers/pci/hotplug/shpchp.h       |  238 ++++++++++--------------------------
>  drivers/pci/hotplug/shpchp_core.c  |  116 ++----------------
>  drivers/pci/hotplug/shpchp_ctrl.c  |   21 ++--
>  drivers/pci/hotplug/shpchp_hpc.c   |  223 ++++++++++------------------------
>  drivers/pci/htirq.c                |    9 +--
>  drivers/pci/pci-driver.c           |   12 +-
>  drivers/pci/pci.c                  |  112 +++++++++++++++--
>  drivers/pci/pcie/portdrv_pci.c     |    2 +-
>  drivers/pci/probe.c                |   11 +-
>  drivers/pci/quirks.c               |  217 ++++++++++++++++++++++-----------
>  drivers/pci/search.c               |   38 +++---
>  drivers/pci/setup-res.c            |   19 +++-
>  include/asm-generic/vmlinux.lds.h  |    3 +
>  include/linux/Kbuild               |    2 -
>  include/linux/ioport.h             |    3 +
>  include/linux/pci.h                |   29 ++++-
>  include/linux/pci_ids.h            |    4 +
>  include/linux/pci_regs.h           |   19 +++-
>  23 files changed, 537 insertions(+), 606 deletions(-)
> 
> ---------------
> 
> Adrian Bunk (1):
>       PCI: don't export device IDs to userspace
> 
> Alan Cox (2):
>       pci: Introduce pci_find_present
>       PCI: Fix multiple problems with VIA hardware
> 
> Conke Hu (1):
>       PCI: ATI sb600 sata quirk
> 
> David Rientjes (1):
>       PCI quirks: remove redundant check
> 
> Inaky Perez-Gonzalez (1):
>       pci: add class codes for Wireless RF controllers
> 
> Jesper Juhl (1):
>       PCI: Be a bit defensive in quirk_nvidia_ck804() so we don't risk dereferencing a NULL pdev.
> 
> Kenji Kaneshige (5):
>       PCI: pcieport-driver: remove invalid warning message
>       shpchp: remove unnecessary struct php_ctlr
>       shpchp: cleanup struct controller
>       shpchp: remove shpchprm_get_physical_slot_number
>       shpchp: cleanup shpchp.h
> 
> Kristen Carlson Accardi (1):
>       acpiphp: Link-time error for PCI Hotplug
> 
> Linas Vepstas (1):
>       rpaphp: compiler warning cleanup
> 
> Michael Ellerman (6):
>       PCI: Create __pci_bus_find_cap_start() from __pci_bus_find_cap()
>       PCI: Add pci_find_ht_capability() for finding Hypertransport capabilities
>       PCI: Use pci_find_ht_capability() in drivers/pci/htirq.c
>       PCI: Add #defines for Hypertransport MSI fields
>       PCI: Use pci_find_ht_capability() in drivers/pci/quirks.c
>       PCI: Only check the HT capability bits in mpic.c
> 
> Ralf Baechle (1):
>       PCI legacy resource fix
> 
> Russell King (1):
>       PCI: use /sys/bus/pci/drivers/<driver>/new_id first

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

* Re: [GIT PATCH] PCI patches for 2.6.20-rc1
  2006-12-21  7:36 ` Grant Grundler
@ 2006-12-21  8:04   ` Andrew Morton
  2006-12-21 17:20     ` Grant Grundler
  0 siblings, 1 reply; 4+ messages in thread
From: Andrew Morton @ 2006-12-21  8:04 UTC (permalink / raw)
  To: Grant Grundler
  Cc: Greg KH, Linus Torvalds, linux-kernel, linux-pci, pcihpd-discuss

On Thu, 21 Dec 2006 00:36:09 -0700
Grant Grundler <grundler@parisc-linux.org> wrote:

> On Wed, Dec 20, 2006 at 12:01:42PM -0800, Greg KH wrote:
> > Here are some PCI patches for 2.6.20-rc1
> > 
> > They contain a number of PCI quirk fixes and some PCI hotplug driver
> > fixes and changes, and some other stuff that is detailed below.
> 
> Any reasons why the Documentation/pci.txt patch isn't included?
> Did I botch something?

I saw about 88,000 of them fly past, none of which looked like a final patch
(sane Subject:, changelog and s-o-b).

> Should I resubmit?

s/re// ;)

Yes please.

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

* Re: [GIT PATCH] PCI patches for 2.6.20-rc1
  2006-12-21  8:04   ` Andrew Morton
@ 2006-12-21 17:20     ` Grant Grundler
  0 siblings, 0 replies; 4+ messages in thread
From: Grant Grundler @ 2006-12-21 17:20 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Grant Grundler, Greg KH, Linus Torvalds, linux-kernel, linux-pci,
	pcihpd-discuss

On Thu, Dec 21, 2006 at 12:04:10AM -0800, Andrew Morton wrote:
> On Thu, 21 Dec 2006 00:36:09 -0700
> Grant Grundler <grundler@parisc-linux.org> wrote:
> > Any reasons why the Documentation/pci.txt patch isn't included?
> > Did I botch something?
> 
> I saw about 88,000 of them fly past, none of which looked like a final patch

Isn't that normal for patches? :)

> (sane Subject:, changelog and s-o-b).

This is the 'droid you are looking for:
	http://lkml.org/lkml/2006/12/18/15

AFAIK, the only thing missing is the s-o-b line from gregkh
and/or Hidetoshi Seto (who should also get credit for some
of the new content). But I think they could reply to that
email with their s-o-b line.

> > Should I resubmit?
> 
> s/re// ;)
> 
> Yes please.

thanks!
grant

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

end of thread, other threads:[~2006-12-21 17:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-12-20 20:01 [GIT PATCH] PCI patches for 2.6.20-rc1 Greg KH
2006-12-21  7:36 ` Grant Grundler
2006-12-21  8:04   ` Andrew Morton
2006-12-21 17:20     ` Grant Grundler

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