netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/22] ixgb, e1000 fixes
@ 2006-12-08 23:02 Kok, Auke
  2006-12-08 23:02 ` [PATCH 01/22] e1000: Fix early TSO completion Kok, Auke
                   ` (21 more replies)
  0 siblings, 22 replies; 37+ messages in thread
From: Kok, Auke @ 2006-12-08 23:02 UTC (permalink / raw)
  To: Garzik, Jeff
  Cc: netdev, Brandeburg, Jesse, Kok, Auke, Kok, Auke, Ronciak, John


Hi,

This patch series contains exclusively fixes for ixgb and e1000. Most
importantly, it addresses two issues in the recently merged msi interrupt
handler and dynamic itr code, as well as some major manageability
feature handling code.

These patches apply against netdev-2.6 #upstream-linus commit
0ae851352a87db3f829511816a2da227860bf585. Please pull:

git pull git://lost.foo-projects.org/~ahkok/git/netdev-2.6 upstream-linus

to receive them.

Cheers,

Auke

---
Bruce Allan <bruce.w.allan@intel.com>:
     e1000: Fix PBA allocation calculations
     e1000: set max frame size before enabling new link settings

Jesse Brandeburg <jesse.brandeburg@intel.com>:
     e1000: Fix early TSO completion
     ixgb: Maybe stop TX if not enough free descriptors
     e1000: dynamic itr code fixes
     e1000: minor tso ipv6 cleanups
     e1000: omit stats for broken counter in 82543
     e1000: Fix all manageability workarounds
     e1000: Make copybreak parameter changeable by user.
     e1000: Fire a link even interrupt instead of a watchdog at init.
     e1000: Fix powerdown link loss when forced to gig speed
     e1000: disable TSO when debugging slab
     e1000: always turn on receives on esb2
     e1000: simplify msi specific interrupt handler
     e1000: Rewrite parm handling code to warn when forcing autoneg to gig only.
     e1000: Don't set tipg (fiber) timings for pci-e adapters to fix fiber output
     e1000: Fix poor quad port performance with NAPI

Jeff Kirsher <jeffrey.t.kirsher@intel.com>:
     e1000: For older adapters, we know that the pci bus type is pci.

Auke Kok <auke-jan.h.kok@intel.com>:
     e1000: display FC link properties
     e1000: Version increment 7.3.20-k2 and minor cleanups

Aaron Salter <aaron.k.salter@intel.com>:
     ixgb: Write RA register high word first, increment version

---
 drivers/net/e1000/e1000.h         |    7 +-
 drivers/net/e1000/e1000_ethtool.c |    3 +
 drivers/net/e1000/e1000_hw.c      |   59 +++---
 drivers/net/e1000/e1000_hw.h      |    2 +
 drivers/net/e1000/e1000_main.c    |  455 ++++++++++++++++++++++++-------------
 drivers/net/e1000/e1000_osdep.h   |    9 +-
 drivers/net/e1000/e1000_param.c   |   19 +-
 drivers/net/ixgb/ixgb.h           |    1 +
 drivers/net/ixgb/ixgb_ethtool.c   |    1 +
 drivers/net/ixgb/ixgb_hw.c        |    3 +-
 drivers/net/ixgb/ixgb_main.c      |   60 +++++-
 11 files changed, 398 insertions(+), 221 deletions(-)


---
Auke Kok <auke-jan.h.kok@intel.com>

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

end of thread, other threads:[~2006-12-15  2:42 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-08 23:02 [PATCH 00/22] ixgb, e1000 fixes Kok, Auke
2006-12-08 23:02 ` [PATCH 01/22] e1000: Fix early TSO completion Kok, Auke
2006-12-11 14:36   ` Jeff Garzik
2006-12-08 23:02 ` [PATCH 02/22] ixgb: Maybe stop TX if not enough free descriptors Kok, Auke
2006-12-11 14:37   ` Jeff Garzik
2006-12-08 23:02 ` [PATCH 03/22] ixgb: Write RA register high word first, increment version Kok, Auke
2006-12-11 14:37   ` Jeff Garzik
2006-12-08 23:02 ` [PATCH 04/22] e1000: display FC link properties Kok, Auke
2006-12-08 23:02 ` [PATCH 05/22] e1000: dynamic itr code fixes Kok, Auke
2006-12-08 23:02 ` [PATCH 06/22] e1000: minor tso ipv6 cleanups Kok, Auke
2006-12-11 14:42   ` Jeff Garzik
2006-12-08 23:02 ` [PATCH 07/22] e1000: omit stats for broken counter in 82543 Kok, Auke
2006-12-11 14:42   ` Jeff Garzik
2006-12-08 23:03 ` [PATCH 08/22] e1000: Fix all manageability workarounds Kok, Auke
2006-12-11 14:41   ` Jeff Garzik
2006-12-08 23:03 ` [PATCH 09/22] e1000: Fix PBA allocation calculations Kok, Auke
2006-12-08 23:03 ` [PATCH 10/22] e1000: Make copybreak parameter changeable by user Kok, Auke
2006-12-08 23:03 ` [PATCH 11/22] e1000: Fire a link even interrupt instead of a watchdog at init Kok, Auke
2006-12-11 22:48   ` Shaw Vrana
2006-12-08 23:03 ` [PATCH 12/22] e1000: Fix powerdown link loss when forced to gig speed Kok, Auke
2006-12-11 14:46   ` Jeff Garzik
2006-12-08 23:03 ` [PATCH 13/22] e1000: disable TSO when debugging slab Kok, Auke
2006-12-11 14:47   ` Jeff Garzik
2006-12-15  2:42     ` Herbert Xu
2006-12-08 23:03 ` [PATCH 14/22] e1000: always turn on receives on esb2 Kok, Auke
2006-12-11 14:47   ` Jeff Garzik
2006-12-08 23:03 ` [PATCH 15/22] e1000: simplify msi specific interrupt handler Kok, Auke
2006-12-11 14:48   ` Jeff Garzik
2006-12-08 23:03 ` [PATCH 16/22] e1000: Rewrite parm handling code to warn when forcing autoneg to gig only Kok, Auke
2006-12-08 23:03 ` [PATCH 17/22] e1000: set max frame size before enabling new link settings Kok, Auke
2006-12-08 23:03 ` [PATCH 18/22] e1000: For older adapters, we know that the pci bus type is pci Kok, Auke
2006-12-08 23:03 ` [PATCH 19/22] e1000: Don't set tipg (fiber) timings for pci-e adapters to fix fiber output Kok, Auke
2006-12-08 23:03 ` [PATCH 20/22] e1000: Fix poor quad port performance with NAPI Kok, Auke
2006-12-11 14:49   ` Jeff Garzik
2006-12-08 23:03 ` [PATCH 21/22] e1000: Version increment 7.3.20-k2 and minor cleanups Kok, Auke
2006-12-11 14:50   ` Jeff Garzik
2006-12-08 23:03 ` [PATCH 22/22] # This series applies on GIT commit 0ae851352a87db3f829511816a2da227860bf585 Kok, Auke

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