netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/23] e100, e1000, ixgb updates
@ 2006-09-19 17:26 Kok, Auke
  2006-09-19 17:28 ` [PATCH 01/23] e100, e1000, ixgb: update copyright header and remove LICENSE Kok, Auke
                   ` (23 more replies)
  0 siblings, 24 replies; 62+ messages in thread
From: Kok, Auke @ 2006-09-19 17:26 UTC (permalink / raw)
  To: Garzik, Jeff
  Cc: netdev, Brandeburg, Jesse, Kok, Auke, Kok, Auke, Ronciak, John

Hi,

The following updates are available through git:

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

And apply against c233289c29369dba7177ca873e9b8ed457af2a78 (Jeff Garzik:
"drivers/net/phy/fixed: #if 0 some incomplete code")

Cheers,

Auke


---

Auke Kok <auke-jan.h.kok@intel.com>:
     e100, e1000, ixgb: update copyright header and remove LICENSE
     e100, e1000, ixgb: Fix an impossible memory overwrite bug
     e100: rework WoL and shutdown handling
     e1000: driver state fixes (race fix)
     e1000: revert 'e1000: Remove 0x1000 as supported device'
     ixgb: convert to netdev_priv(netdev)
     e100, e1000, ixgb: increment version numbers

Bruce Allan <bruce.w.allan@intel.com>:
     e1000: Jumbo frames fixes for 82573
     e1000: handle manageability for pci-e adapters at PHY powerdown
     e1000: don't strip vlan ID if 8021q claims it

Jeff Kirsher <jeffrey.t.kirsher@intel.com>:
     e1000: rename flow control symbols
     e1000: add enums for several link properties
     e1000: allow ethtool to pass arbitrary speed advertisment
     e1000: Fix MANC detection for PCIE adapters
     e1000: gather hardware bit tweaks.
     e1000: add PCI-E capability detection code
     e1000: reduce RAR entries available for ICH8
     e1000: rework polarity, NVM, eeprom code and fixes.

Jesse Brandeburg <jesse.brandeburg@intel.com>:
     e100: Add debugging code for cb cleaning and csum failures.
     e1000: Maybe stop TX if not enough free descriptors
     ixgb: combine more rx descriptors to improve performance

Mitch Williams <mitch.a.williams@intel.com>:
     e1000: add multicast stats counters

Nicholas Nunley <nicholas.d.nunley@intel.com>:
     e1000: remove unused code and make symbols static

---

 drivers/net/e100.c                |  110 +
 drivers/net/e1000/LICENSE         |  339 ++++++
 drivers/net/e1000/Makefile        |   35 
 drivers/net/e1000/e1000.h         |   65 -
 drivers/net/e1000/e1000_ethtool.c |  340 ++----
 drivers/net/e1000/e1000_hw.c      | 2100 ++++++++++++++++++++------------------
 drivers/net/e1000/e1000_hw.h      |  116 --
 drivers/net/e1000/e1000_main.c    |  407 ++-----
 drivers/net/e1000/e1000_osdep.h   |   35 
 drivers/net/e1000/e1000_param.c   |  208 +--
 drivers/net/ixgb/Makefile         |   38 
 drivers/net/ixgb/ixgb.h           |   43 
 drivers/net/ixgb/ixgb_ee.c        |   36 
 drivers/net/ixgb/ixgb_ee.h        |   36 
 drivers/net/ixgb/ixgb_ethtool.c   |   42 
 drivers/net/ixgb/ixgb_hw.c        |   47 
 drivers/net/ixgb/ixgb_hw.h        |   36 
 drivers/net/ixgb/ixgb_ids.h       |   37 
 drivers/net/ixgb/ixgb_main.c      |  190 ---
 drivers/net/ixgb/ixgb_osdep.h     |   36 
 drivers/net/ixgb/ixgb_param.c     |   36 
 21 files changed, 2249 insertions(+), 2083 deletions(-)


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

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

end of thread, other threads:[~2006-09-27 20:13 UTC | newest]

Thread overview: 62+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-19 17:26 [PATCH 00/23] e100, e1000, ixgb updates Kok, Auke
2006-09-19 17:28 ` [PATCH 01/23] e100, e1000, ixgb: update copyright header and remove LICENSE Kok, Auke
2006-09-19 17:28 ` [PATCH 02/23] e100, e1000, ixgb: Fix an impossible memory overwrite bug Kok, Auke
2006-09-19 17:28 ` [PATCH 03/23] e100: Add debugging code for cb cleaning and csum failures Kok, Auke
2006-09-19 19:10   ` Jeff Garzik
2006-09-19 22:25     ` Auke Kok
2006-09-19 21:33   ` Dave Jones
2006-09-19 21:40     ` Jeff Garzik
2006-09-19 21:46       ` Dave Jones
2006-09-19 22:21         ` Auke Kok
2006-09-19 17:28 ` [PATCH 04/23] e100: rework WoL and shutdown handling Kok, Auke
2006-09-19 19:10   ` Jeff Garzik
2006-09-19 20:25     ` Auke Kok
2006-09-19 20:30       ` Jeff Garzik
2006-09-19 21:38     ` Auke Kok
2006-09-19 17:28 ` [PATCH 05/23] e1000: rename flow control symbols Kok, Auke
2006-09-19 19:11   ` Jeff Garzik
2006-09-19 21:45     ` Auke Kok
2006-09-19 17:28 ` [PATCH 06/23] e1000: add enums for several link properties Kok, Auke
2006-09-19 17:28 ` [PATCH 07/23] e1000: remove unused code and make symbols static Kok, Auke
2006-09-19 19:28   ` Jeff Garzik
2006-09-19 17:28 ` [PATCH 08/23] e1000: add multicast stats counters Kok, Auke
2006-09-19 19:28   ` Jeff Garzik
2006-09-19 17:28 ` [PATCH 09/23] e1000: allow ethtool to pass arbitrary speed advertisment Kok, Auke
2006-09-19 17:28 ` [PATCH 10/23] e1000: Fix MANC detection for PCIE adapters Kok, Auke
2006-09-19 19:31   ` Jeff Garzik
2006-09-19 17:28 ` [PATCH 11/23] e1000: Jumbo frames fixes for 82573 Kok, Auke
2006-09-19 19:32   ` Jeff Garzik
2006-09-20 15:37     ` Auke Kok
2006-09-19 17:28 ` [PATCH 12/23] e1000: Maybe stop TX if not enough free descriptors Kok, Auke
2006-09-19 19:37   ` Jeff Garzik
2006-09-19 19:38   ` Jeff Garzik
2006-09-19 19:50     ` Stephen Hemminger
2006-09-19 20:45       ` Jeff Garzik
2006-09-19 20:59         ` Stephen Hemminger
2006-09-19 23:26           ` Auke Kok
2006-09-19 23:59             ` Stephen Hemminger
2006-09-20 15:30     ` Auke Kok
     [not found]     ` <4807377b0609211659mb0cb308hcbc78520148300a1@mail.gmail.com>
2006-09-24 11:30       ` Fwd: " Herbert Xu
2006-09-19 17:29 ` [PATCH 13/23] e1000: gather hardware bit tweaks Kok, Auke
2006-09-19 19:36   ` Jeff Garzik
2006-09-27 20:12     ` Auke Kok
2006-09-19 17:29 ` [PATCH 14/23] e1000: handle manageability for pci-e adapters at PHY powerdown Kok, Auke
2006-09-19 19:39   ` Jeff Garzik
2006-09-19 17:29 ` [PATCH 15/23] e1000: add PCI-E capability detection code Kok, Auke
2006-09-19 17:29 ` [PATCH 16/23] e1000: reduce RAR entries available for ICH8 Kok, Auke
2006-09-19 19:39   ` Jeff Garzik
2006-09-19 17:29 ` [PATCH 17/23] e1000: driver state fixes (race fix) Kok, Auke
2006-09-19 19:40   ` Jeff Garzik
2006-09-19 17:29 ` [PATCH 18/23] e1000: revert 'e1000: Remove 0x1000 as supported device' Kok, Auke
2006-09-19 19:40   ` Jeff Garzik
2006-09-19 20:34     ` Auke Kok
2006-09-19 20:43       ` Jeff Garzik
2006-09-19 17:29 ` [PATCH 19/23] e1000: rework polarity, NVM, eeprom code and fixes Kok, Auke
2006-09-19 17:29 ` [PATCH 20/23] e1000: don't strip vlan ID if 8021q claims it Kok, Auke
2006-09-19 19:41   ` Jeff Garzik
2006-09-19 17:29 ` [PATCH 21/23] ixgb: combine more rx descriptors to improve performance Kok, Auke
2006-09-19 17:29 ` [PATCH 22/23] ixgb: convert to netdev_priv(netdev) Kok, Auke
2006-09-19 17:29 ` [PATCH 23/23] e100, e1000, ixgb: increment version numbers Kok, Auke
2006-09-19 19:41   ` Jeff Garzik
2006-09-19 19:42 ` [PATCH 00/23] e100, e1000, ixgb updates Jeff Garzik
2006-09-19 21:06   ` Auke Kok

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