netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [net-next 00/13][pull request] Intel Wired LAN Driver Updates 2013.01.30
@ 2013-01-30 11:44 Jeff Kirsher
  2013-01-30 11:44 ` [net-next 01/13] ixgbe: Reset the NIC if up2tc has changed Jeff Kirsher
                   ` (12 more replies)
  0 siblings, 13 replies; 18+ messages in thread
From: Jeff Kirsher @ 2013-01-30 11:44 UTC (permalink / raw)
  To: davem; +Cc: Jeff Kirsher, netdev, gospo, sassmann

This series contains updates to ixgbe and e1000e.  The ixgbe patches are
a mix of fixes, cleanup and added functionality.  The first fix is for
traffic classes, where if the mapping has changed reset the NIC.  The other
ixgbe fix resolves an issue where the device lookup neglected to do a
pci_dev_put() to decrement the device reference count.

The ixgbe cleanup was done by Josh, where the auto-negotiation variables
were renamed/cleaned up and refactored.

Joseph added Tx encapsulation capability and Alex added the debug counters
for the new feature.

The remaining patches are from Bruce to do additional cleanup on e1000e as
well as bump the driver version.  Most notably is the cleanup to use the
kernel IEEE MII definitions where possible instead of the local MII
definitions.

The following are changes since commit d2ed273d30c5ffd14f6b5ec7ecc751d960f832fc:
  net: disallow drivers with buggy VLAN accel to register_netdevice()
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next master

Alexander Duyck (1):
  ixgbe: Add debug counters for Tx Encap CSUM

Amir Hanania (1):
  ixgbe: Reset the NIC if up2tc has changed

Bruce Allan (6):
  e1000e: cleanup defines.h
  e1000e: cleanup: group OR'ed bit settings with parens
  e1000e: cleanup some whitespace and indentation issues
  e1000e: update driver version string
  e1000e: resolve -Wunused-parameter compile warnings
  e1000e: use generic IEEE MII definitions

Greg Rose (1):
  ixgbe: Fix device ref count bug

Joseph Gasparakis (1):
  ixgbe: Adding Tx encapsulation capability

Josh Hay (3):
  ixgbe: rename autoneg variables
  ixgbe: removed unused variable from setup_link_speed
  ixgbe: autoneg variable refactoring

 drivers/net/ethernet/intel/e1000e/80003es2lan.c  |  28 ++--
 drivers/net/ethernet/intel/e1000e/82571.c        |  17 ++-
 drivers/net/ethernet/intel/e1000e/defines.h      | 128 +++-------------
 drivers/net/ethernet/intel/e1000e/e1000.h        |   1 +
 drivers/net/ethernet/intel/e1000e/ethtool.c      |  40 ++---
 drivers/net/ethernet/intel/e1000e/ich8lan.c      |  18 +--
 drivers/net/ethernet/intel/e1000e/mac.c          |  35 +++--
 drivers/net/ethernet/intel/e1000e/netdev.c       |  66 ++++----
 drivers/net/ethernet/intel/e1000e/param.c        |   3 +-
 drivers/net/ethernet/intel/e1000e/phy.c          | 186 +++++++++++------------
 drivers/net/ethernet/intel/e1000e/ptp.c          |   5 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe.h         |   4 +
 drivers/net/ethernet/intel/ixgbe/ixgbe_82598.c   |  12 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c   |  54 +++----
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_nl.c  |  16 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c |   8 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c    |  87 ++++++++---
 drivers/net/ethernet/intel/ixgbe/ixgbe_phy.c     |   2 -
 drivers/net/ethernet/intel/ixgbe/ixgbe_phy.h     |   1 -
 drivers/net/ethernet/intel/ixgbe/ixgbe_type.h    |   5 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_x540.c    |   7 +-
 21 files changed, 333 insertions(+), 390 deletions(-)

-- 
1.7.11.7

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

end of thread, other threads:[~2013-01-31  0:59 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-30 11:44 [net-next 00/13][pull request] Intel Wired LAN Driver Updates 2013.01.30 Jeff Kirsher
2013-01-30 11:44 ` [net-next 01/13] ixgbe: Reset the NIC if up2tc has changed Jeff Kirsher
2013-01-30 11:44 ` [net-next 02/13] ixgbe: Adding Tx encapsulation capability Jeff Kirsher
2013-01-30 16:58   ` Alexander Duyck
2013-01-30 17:48     ` Eric Dumazet
2013-01-31  0:59       ` Alexander Duyck
2013-01-30 11:44 ` [net-next 03/13] ixgbe: Add debug counters for Tx Encap CSUM Jeff Kirsher
2013-01-30 16:58   ` Alexander Duyck
2013-01-30 11:44 ` [net-next 04/13] ixgbe: Fix device ref count bug Jeff Kirsher
2013-01-30 11:44 ` [net-next 05/13] ixgbe: rename autoneg variables Jeff Kirsher
2013-01-30 11:44 ` [net-next 06/13] ixgbe: removed unused variable from setup_link_speed Jeff Kirsher
2013-01-30 11:44 ` [net-next 07/13] ixgbe: autoneg variable refactoring Jeff Kirsher
2013-01-30 11:44 ` [net-next 08/13] e1000e: cleanup defines.h Jeff Kirsher
2013-01-30 11:44 ` [net-next 09/13] e1000e: cleanup: group OR'ed bit settings with parens Jeff Kirsher
2013-01-30 11:44 ` [net-next 10/13] e1000e: cleanup some whitespace and indentation issues Jeff Kirsher
2013-01-30 11:44 ` [net-next 11/13] e1000e: update driver version string Jeff Kirsher
2013-01-30 11:44 ` [net-next 12/13] e1000e: resolve -Wunused-parameter compile warnings Jeff Kirsher
2013-01-30 11:44 ` [net-next 13/13] e1000e: use generic IEEE MII definitions 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).