netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [net-next 0/8][pull request] Intel Wired LAN Driver Update
@ 2012-04-04  7:55 Jeff Kirsher
  2012-04-04  7:55 ` [net-next 1/8] e1000: Support RX-ALL flag Jeff Kirsher
                   ` (8 more replies)
  0 siblings, 9 replies; 13+ messages in thread
From: Jeff Kirsher @ 2012-04-04  7:55 UTC (permalink / raw)
  To: davem; +Cc: Jeff Kirsher, netdev, gospo, sassmann

This series of patches contains updates for e1000, e1000e, igb and
ixgbe.  The e1000 patch finishes up the addition of RXALL support
flag from Ben Greear.  The 2 igb patches adds the PTP support
from Richard Cochran.  The remaining patches for e1000e and ixgbe
are cleanup patches (and rev the e1000e driver).

The following are changes since commit 68df25d6c556c4df4dad32a0585317eab356e325:
  bnx2x: Change to driver version 1.72.10-0
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next master

Ben Greear (1):
  e1000: Support RX-ALL flag.

Bruce Allan (3):
  e1000e: cleanup NAPI routine
  e1000e: cleanup indexed register arrays
  e1000e: update driver version number

Emil Tantilov (1):
  ixgbe: consolidate reporting of MSIX vectors into a single function

Matthew Vick (1):
  e1000e: Minor comment clean-up.

Richard Cochran (2):
  igb: add PTP Hardware Clock code
  igb: offer a PTP Hardware Clock instead of the timecompare method

 drivers/net/ethernet/intel/Kconfig              |   11 +
 drivers/net/ethernet/intel/e1000/e1000_main.c   |   26 ++-
 drivers/net/ethernet/intel/e1000e/ethtool.c     |   52 ++--
 drivers/net/ethernet/intel/e1000e/hw.h          |   47 ++--
 drivers/net/ethernet/intel/e1000e/netdev.c      |   81 +++---
 drivers/net/ethernet/intel/igb/Makefile         |    1 +
 drivers/net/ethernet/intel/igb/igb.h            |   21 +-
 drivers/net/ethernet/intel/igb/igb_main.c       |  178 +----------
 drivers/net/ethernet/intel/igb/igb_ptp.c        |  381 +++++++++++++++++++++++
 drivers/net/ethernet/intel/ixgbe/ixgbe_82598.c  |   25 +--
 drivers/net/ethernet/intel/ixgbe/ixgbe_common.c |   29 ++-
 drivers/net/ethernet/intel/ixgbe/ixgbe_common.h |    2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_type.h   |    4 +-
 13 files changed, 571 insertions(+), 287 deletions(-)
 create mode 100644 drivers/net/ethernet/intel/igb/igb_ptp.c

-- 
1.7.7.6

^ permalink raw reply	[flat|nested] 13+ messages in thread
* [net-next 0/8][pull request] Intel Wired LAN Driver Update
@ 2011-09-21 10:12 Jeff Kirsher
  2011-09-21 19:13 ` David Miller
  0 siblings, 1 reply; 13+ messages in thread
From: Jeff Kirsher @ 2011-09-21 10:12 UTC (permalink / raw)
  To: davem; +Cc: Jeff Kirsher, netdev, gospo

The following series contains updates to ixgbe and pci.  The pci patch
is a small update to add a flag to indicate when a device has been
assigned by KVM.  The ixgbe patches consist of the following:

  - reconfigure SR-IOV init to take advantage of the new pci flag
  - DCB cleanups/fixes
  - add WOL support for x540
  - a few cleanup/fixes

The following are changes since commit 9c9b1f24f2aa31a3cea94939edc551f68ebadc89:
  net/phy: add IC+ IP101A and support APS.
and are available in the git repository at:
  git://github.com/Jkirsher/net-next.git

Don Skidmore (1):
  ixgbe: cleanup X540 interrupt enablement

Emil Tantilov (3):
  ixgbe: avoid HW lockup when adapter is reset with Tx work pending
  ixgbe: add WOL support for X540
  ixgbe: remove global reset to the MAC

Greg Rose (2):
  pci: Add flag indicating device has been assigned by KVM
  ixgbe: Reconfigure SR-IOV Init

John Fastabend (2):
  ixgbe: DCB, do not call set_state() from IEEE mode
  ixgbe: dcb, set priority to traffic class mappings

 drivers/net/ethernet/intel/ixgbe/ixgbe.h         |    2 +
 drivers/net/ethernet/intel/ixgbe/ixgbe_82598.c   |   15 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c   |   13 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_common.c  |  145 +++++++++-------
 drivers/net/ethernet/intel/ixgbe/ixgbe_common.h  |    2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb.c     |   36 ++++-
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb.h     |    3 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_nl.c  |   57 +++----
 drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c |   13 ++
 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c    |  141 ++++-----------
 drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c   |  207 +++++++++++++++++++++-
 drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.h   |    5 +
 drivers/net/ethernet/intel/ixgbe/ixgbe_type.h    |   10 +
 drivers/net/ethernet/intel/ixgbe/ixgbe_x540.c    |   31 +---
 include/linux/pci.h                              |    2 +
 virt/kvm/assigned-dev.c                          |    2 +
 virt/kvm/iommu.c                                 |    4 +
 17 files changed, 443 insertions(+), 245 deletions(-)

-- 
1.7.6.2

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

end of thread, other threads:[~2012-04-04  8:26 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-04  7:55 [net-next 0/8][pull request] Intel Wired LAN Driver Update Jeff Kirsher
2012-04-04  7:55 ` [net-next 1/8] e1000: Support RX-ALL flag Jeff Kirsher
2012-04-04  7:55 ` [net-next 2/8] e1000e: Minor comment clean-up Jeff Kirsher
2012-04-04  7:55 ` [net-next 3/8] e1000e: cleanup NAPI routine Jeff Kirsher
2012-04-04  7:55 ` [net-next 4/8] e1000e: cleanup indexed register arrays Jeff Kirsher
2012-04-04  7:55 ` [net-next 5/8] e1000e: update driver version number Jeff Kirsher
2012-04-04  7:55 ` [net-next 6/8] ixgbe: consolidate reporting of MSIX vectors into a single function Jeff Kirsher
2012-04-04  7:55 ` [net-next 7/8] igb: add PTP Hardware Clock code Jeff Kirsher
2012-04-04  7:56 ` [net-next 8/8] igb: offer a PTP Hardware Clock instead of the timecompare method Jeff Kirsher
2012-04-04  8:26 ` [net-next 0/8][pull request] Intel Wired LAN Driver Update David Miller
  -- strict thread matches above, loose matches on Subject: below --
2011-09-21 10:12 Jeff Kirsher
2011-09-21 19:13 ` David Miller
2011-09-21 19:58   ` Rose, Gregory V

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