netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [net-next 00/14][pull request] Intel Wired LAN Driver Updates 2013.01.27
@ 2013-01-27 10:39 Jeff Kirsher
  2013-01-27 10:39 ` [net-next 01/14] e1000e: fix ethtool offline register test for I217 Jeff Kirsher
                   ` (14 more replies)
  0 siblings, 15 replies; 17+ messages in thread
From: Jeff Kirsher @ 2013-01-27 10:39 UTC (permalink / raw)
  To: davem; +Cc: Jeff Kirsher, netdev, gospo, sassmann, bruce.w.allan

This series contains updates to e1000e only.  All the updates come
from Bruce Allan and most of the patch fix or enable features on
i217/i218.  Most notably is patch 03 "e1000e: add support for IEEE-1588
PTP", which is v2 of the patch based on feedback from Stephen Hemminger.

Also patch 04 "e1000e: enable ECC on I217/I218 to catch packet buffer
memory errors" should be queued up for stable (as well as net) trees, but
the patch does not apply cleanly to either of those trees currently.
So I will work with Bruce to provide a version of the patch which will
apply cleanly to net (and stable) and we can queue it up at that point
for stable 3.5 tree.

The remaining patches are general cleanups of the code.

The following are changes since commit 031554eab078705edb96e9a39665597e3fd22781:
  Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next master

Bruce Allan (14):
  e1000e: fix ethtool offline register test for I217
  e1000e: fix flow-control thresholds for jumbo frames on
    82579/I217/I218
  e1000e: add support for IEEE-1588 PTP
  e1000e: enable ECC on I217/I218 to catch packet buffer memory errors
  e1000e: prevent hardware from automatically configuring PHY on
    I217/I218
  e1000e: remove prototype of non-existent function
  e1000e: update copyright date
  e1000e: correct maximum frame size on i217/i218
  e1000e: fix PHY init workarounds for i217/i218
  e1000e: remove definition of struct which is no longer used
  e1000e: add comment to spinlock_t definition
  e1000e: cleanup: remove unnecessary function prototypes
  e1000e: do not ignore variables which get set a value
  e1000e: cleanup: do not assign a variable a value when not necessary

 drivers/net/ethernet/intel/Kconfig              |   1 +
 drivers/net/ethernet/intel/e1000e/80003es2lan.c |  24 ++-
 drivers/net/ethernet/intel/e1000e/82571.c       |  18 +-
 drivers/net/ethernet/intel/e1000e/Makefile      |   4 +-
 drivers/net/ethernet/intel/e1000e/defines.h     |  22 +-
 drivers/net/ethernet/intel/e1000e/e1000.h       |  17 +-
 drivers/net/ethernet/intel/e1000e/ethtool.c     |  43 +++-
 drivers/net/ethernet/intel/e1000e/hw.h          |  15 +-
 drivers/net/ethernet/intel/e1000e/ich8lan.c     |  66 +++---
 drivers/net/ethernet/intel/e1000e/mac.c         |   4 +-
 drivers/net/ethernet/intel/e1000e/manage.c      |   2 +-
 drivers/net/ethernet/intel/e1000e/netdev.c      | 178 +++++++++++++--
 drivers/net/ethernet/intel/e1000e/nvm.c         |   2 +-
 drivers/net/ethernet/intel/e1000e/param.c       |   2 +-
 drivers/net/ethernet/intel/e1000e/phy.c         |  13 +-
 drivers/net/ethernet/intel/e1000e/ptp.c         | 276 ++++++++++++++++++++++++
 16 files changed, 587 insertions(+), 100 deletions(-)
 create mode 100644 drivers/net/ethernet/intel/e1000e/ptp.c

-- 
1.7.11.7

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

end of thread, other threads:[~2013-01-28  3:00 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-27 10:39 [net-next 00/14][pull request] Intel Wired LAN Driver Updates 2013.01.27 Jeff Kirsher
2013-01-27 10:39 ` [net-next 01/14] e1000e: fix ethtool offline register test for I217 Jeff Kirsher
2013-01-27 10:39 ` [net-next 02/14] e1000e: fix flow-control thresholds for jumbo frames on 82579/I217/I218 Jeff Kirsher
2013-01-27 10:39 ` [net-next v2 03/14] e1000e: add support for IEEE-1588 PTP Jeff Kirsher
2013-01-27 10:39 ` [net-next 04/14] e1000e: enable ECC on I217/I218 to catch packet buffer memory errors Jeff Kirsher
2013-01-27 10:39 ` [net-next 05/14] e1000e: prevent hardware from automatically configuring PHY on I217/I218 Jeff Kirsher
2013-01-27 10:39 ` [net-next 06/14] e1000e: remove prototype of non-existent function Jeff Kirsher
2013-01-27 10:39 ` [net-next 07/14] e1000e: update copyright date Jeff Kirsher
2013-01-27 10:39 ` [net-next 08/14] e1000e: correct maximum frame size on i217/i218 Jeff Kirsher
2013-01-27 10:39 ` [net-next 09/14] e1000e: fix PHY init workarounds for i217/i218 Jeff Kirsher
2013-01-27 10:39 ` [net-next 10/14] e1000e: remove definition of struct which is no longer used Jeff Kirsher
2013-01-27 10:39 ` [net-next 11/14] e1000e: add comment to spinlock_t definition Jeff Kirsher
2013-01-27 10:39 ` [net-next 12/14] e1000e: cleanup: remove unnecessary function prototypes Jeff Kirsher
2013-01-27 10:39 ` [net-next 13/14] e1000e: do not ignore variables which get set a value Jeff Kirsher
2013-01-27 10:39 ` [net-next 14/14] e1000e: cleanup: do not assign a variable a value when not necessary Jeff Kirsher
2013-01-28  0:07 ` [net-next 00/14][pull request] Intel Wired LAN Driver Updates 2013.01.27 David Miller
2013-01-28  3:00   ` Jeff Kirsher

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