netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [net 0/5][pull request] Intel Wired LAN Driver Updates
@ 2013-12-18  7:19 Jeff Kirsher
  2013-12-18  7:19 ` [net 1/5] net: allow netdev_all_upper_get_next_dev_rcu with rtnl lock held Jeff Kirsher
                   ` (5 more replies)
  0 siblings, 6 replies; 14+ messages in thread
From: Jeff Kirsher @ 2013-12-18  7:19 UTC (permalink / raw)
  To: davem; +Cc: Jeff Kirsher, netdev, gospo, sassmann

This series contains updates to net, ixgbe and e1000e.

David provides compiler fixes for e1000e.

Don provides a fix for ixgbe to resolve a compile warning.

John provides a fix to net where it is useful to be able to walk all
upper devices when bringing a device online where the RTNL lock is held.
In this case, it is safe to walk the all_adj_list because the RTNL lock is
used to protect the write side as well.  This patch adds a check to see
if the RTNL lock is held before throwing a warning in
netdev_all_upper_get_next_dev_rcu().

The following are changes since commit 781069279f049508274db63bfb352e8583e5c977:
  Merge branch 'fixes-for-3.13' of git://gitorious.org/linux-can/linux-can
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net master

David Ertman (3):
  e1000e: fix compiler warnings
  e1000e: fix compiler warning (maybe-unitialized variable)
  e1000e: Fix a compile flag mis-match for suspend/resume

Don Skidmore (1):
  ixgbe: fix for unused variable warning with certain config

John Fastabend (1):
  net: allow netdev_all_upper_get_next_dev_rcu with rtnl lock held

 drivers/net/ethernet/intel/e1000e/80003es2lan.c |  7 +++++--
 drivers/net/ethernet/intel/e1000e/netdev.c      |  4 ++--
 drivers/net/ethernet/intel/e1000e/phy.c         | 10 +++++++---
 drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c  |  2 ++
 include/linux/rtnetlink.h                       |  5 +++++
 net/core/dev.c                                  |  2 +-
 6 files changed, 22 insertions(+), 8 deletions(-)

-- 
1.8.3.1

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [net 0/5][pull request] Intel Wired LAN Driver Updates
@ 2012-10-03 22:27 Jeff Kirsher
  2012-10-04 14:28 ` Richard Cochran
  2012-10-04 19:50 ` David Miller
  0 siblings, 2 replies; 14+ messages in thread
From: Jeff Kirsher @ 2012-10-03 22:27 UTC (permalink / raw)
  To: davem; +Cc: Jeff Kirsher, netdev, gospo, sassmann

This series contains fixes/updates to ixgbe only.  There are three
PTP fixes, polling loop fix and the addition of a device id (X540-AT1).

The following are changes since commit 864499449f256e32815575a9b860267ebefa6d70:
  tg3: Fix sparse warnings.
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net master

Emil Tantilov (1):
  ixgbe: fix poll loop for FDIRCTRL.INIT_DONE bit

Jacob Keller (3):
  ixgbe: Fix PTP X540 SDP alignment code for PPS signal
  ixgbe: (PTP) Fix PPS interrupt code
  ixgbe: fix PTP ethtool timestamping function

joshua.a.hay@intel.com (1):
  ixgbe: add support for X540-AT1

 drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c   |   2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_common.c  |   1 +
 drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c |   5 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c    |  15 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c     | 202 +++++++++++------------
 drivers/net/ethernet/intel/ixgbe/ixgbe_type.h    |   1 +
 6 files changed, 112 insertions(+), 114 deletions(-)

-- 
1.7.11.4

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [net 0/5][pull request] Intel Wired LAN Driver Updates
@ 2012-04-03 22:18 Jeff Kirsher
  0 siblings, 0 replies; 14+ messages in thread
From: Jeff Kirsher @ 2012-04-03 22:18 UTC (permalink / raw)
  To: davem; +Cc: Jeff Kirsher, netdev, gospo, sassmann

This series of patches contains fixes for ixgbe and e1000e.
This also contains the last bit for e1000 to support RXALL flag
from Ben Greear.

The following are changes since commit 01627d968c8b5e2810fe8c417b406b968297c236:
  Merge branch 'drm-fixes-intel' of git://people.freedesktop.org/~airlied/linux
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net master

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

Bruce Allan (1):
  e1000e: prevent oops when adapter is being closed and reset
    simultaneously

Matthew Vick (2):
  e1000e: Guarantee descriptor writeback flush success.
  e1000e: Minor comment clean-up.

Multanen, Eric W (1):
  ixgbe: driver fix for link flap

 drivers/net/ethernet/intel/e1000/e1000_main.c   |   26 ++++-
 drivers/net/ethernet/intel/e1000e/e1000.h       |    6 +
 drivers/net/ethernet/intel/e1000e/netdev.c      |   29 ++++-
 drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_nl.c |  164 +++++++++++------------
 4 files changed, 139 insertions(+), 86 deletions(-)

-- 
1.7.7.6

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

end of thread, other threads:[~2013-12-20  0:24 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-18  7:19 [net 0/5][pull request] Intel Wired LAN Driver Updates Jeff Kirsher
2013-12-18  7:19 ` [net 1/5] net: allow netdev_all_upper_get_next_dev_rcu with rtnl lock held Jeff Kirsher
2013-12-18  7:19 ` [net 2/5] e1000e: fix compiler warnings Jeff Kirsher
2013-12-19  3:51   ` Jeff Kirsher
2013-12-18  7:19 ` [net 3/5] e1000e: fix compiler warning (maybe-unitialized variable) Jeff Kirsher
2013-12-18  7:19 ` [net 4/5] e1000e: Fix a compile flag mis-match for suspend/resume Jeff Kirsher
2013-12-18  7:19 ` [net 5/5] ixgbe: fix for unused variable warning with certain config Jeff Kirsher
2013-12-18 22:58 ` [net 0/5][pull request] Intel Wired LAN Driver Updates David Miller
2013-12-18 23:02   ` Jeff Kirsher
2013-12-20  0:24     ` David Miller
  -- strict thread matches above, loose matches on Subject: below --
2012-10-03 22:27 Jeff Kirsher
2012-10-04 14:28 ` Richard Cochran
2012-10-04 19:50 ` David Miller
2012-04-03 22:18 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).