All of lore.kernel.org
 help / color / mirror / Atom feed
* [net-next 00/17][pull request] 1GbE Intel Wired LAN Driver Updates 2015-12-12
@ 2015-12-13  8:31 Jeff Kirsher
  2015-12-13  8:31 ` [net-next 01/17] e1000: make eeprom read/write scheduler friendly Jeff Kirsher
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: Jeff Kirsher @ 2015-12-13  8:31 UTC (permalink / raw)
  To: davem; +Cc: Jeff Kirsher, netdev, nhorman, sassmann, jogreene, john.ronciak

This series contains updates to e1000, e1000e and igb.

Joern Engel fixes up the e1000 driver to reduce scheduler latencies by
making the eeprom read/write functions scheduler friendly by using a mutex
lock instead of a spin lock.

Todd adds code for igb to initialize the 88E1543 PHY properly.  Then fixed
igb to use the correct i210 register for EEMNGCTL, since the i210 has two
EEPROM access registers (EEARBC and EEMNGCTL).

Dmitry Vyukov provides a fix for e1000 to resolve a data race found with
KernelThreadSanitizer (KTSAN), where no memory barriers were being used
when buffers get recycled, so the recycled buffers can be corrupted.  So
use smp_store_release() to update tx_ring->next_to_clean and
smp_load_acquire() to read tx_ring->next_to_clean to properly hand off
buffers from e1000_clean_tx_irq() to e1000_xmit_frame().

Jarod Wilson fixes igb so that we do not try to unmap a NULL hw_addr.  Then
cleaned up array_rd32() so that it uses igb_rd32() the same as rd32() and
use io_addr() in more places so that we do not have to call E1000_REMOVED().

Janusz Wolak cleans up the e1000 driver by correcting warnings produced
by checkpatch.pl for the driver.

Jean Sacren provides several patches with general cleanups for e1000 and
e1000e, which include code comment fix-ups and cleanup of local variables
not needed.

Dmitry Fleytman fixes a possible division by zero in the receive interrupt
handler for e1000e when working without adaptive interrupt moderation,
which is typically disabled on jumbo MTUs.

Raanan increases the timeout of the polling bit due to timing changes to
the ME firmware on a platform, so increase the timeout to 300ms.  Added
initial support for i219-LM, which is a LOM that will be available on
systems with the Lewisburg Platform Controller HUB (PCH) chipset.

Jan Beulich fixes a NULL dereference in igb, due to the adapter->vf _data
being NULL while adapter->vfs_allocated_count is non-zero.

The following are changes since commit 1d72135dd6be396bf724cd962555758c0277db93:
  Merge branch '10GbE' of git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 1GbE

Dmitriy Vyukov (1):
  e1000: fix data race between tx_ring->next_to_clean

Dmitry Fleytman (1):
  e1000e: fix division by zero on jumbo MTUs

Jan Beulich (1):
  igb: fix NULL derefs due to skipped SR-IOV enabling

Janusz Wolak (2):
  e1000: Remove checkpatch coding style errors
  e1000: Elementary checkpatch warnings and checks removed

Jarod Wilson (2):
  igb: don't unmap NULL hw_addr
  igb: improve handling of disconnected adapters

Jean Sacren (5):
  e1000: clean up the checking logic
  e1000: fix a typo in the comment
  e1000e: clean up the local variable
  e1000: fix kernel-doc argument being missing
  e1000: get rid of duplicate exit path

Joern Engel (1):
  e1000: make eeprom read/write scheduler friendly

Raanan Avargil (2):
  e1000e: Increase timeout of polling bit RSPCIPHY
  e1000e: initial support for i219-LM (3)

Todd Fujinaka (2):
  igb: add 88E1543 initialization code
  igb: use the correct i210 register for EEMNGCTL

 drivers/net/ethernet/intel/e1000/e1000.h       |   7 +-
 drivers/net/ethernet/intel/e1000/e1000_hw.c    | 216 ++++++++++++-------------
 drivers/net/ethernet/intel/e1000/e1000_main.c  | 133 ++++++++-------
 drivers/net/ethernet/intel/e1000e/hw.h         |   1 +
 drivers/net/ethernet/intel/e1000e/ich8lan.c    |  45 ++++--
 drivers/net/ethernet/intel/e1000e/netdev.c     |  12 +-
 drivers/net/ethernet/intel/igb/e1000_82575.c   |   8 +
 drivers/net/ethernet/intel/igb/e1000_defines.h |   1 +
 drivers/net/ethernet/intel/igb/e1000_i210.c    |  27 ++++
 drivers/net/ethernet/intel/igb/e1000_i210.h    |   1 +
 drivers/net/ethernet/intel/igb/e1000_phy.c     |  94 +++++++++++
 drivers/net/ethernet/intel/igb/e1000_phy.h     |   1 +
 drivers/net/ethernet/intel/igb/e1000_regs.h    |   4 +-
 drivers/net/ethernet/intel/igb/igb.h           |   2 +
 drivers/net/ethernet/intel/igb/igb_main.c      |  22 ++-
 15 files changed, 379 insertions(+), 195 deletions(-)

-- 
2.5.0

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

end of thread, other threads:[~2015-12-13 22:11 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-13  8:31 [net-next 00/17][pull request] 1GbE Intel Wired LAN Driver Updates 2015-12-12 Jeff Kirsher
2015-12-13  8:31 ` [net-next 01/17] e1000: make eeprom read/write scheduler friendly Jeff Kirsher
2015-12-13  8:31 ` [net-next 02/17] igb: add 88E1543 initialization code Jeff Kirsher
2015-12-13  8:31 ` [net-next 03/17] e1000: fix data race between tx_ring->next_to_clean Jeff Kirsher
2015-12-13  8:31 ` [net-next 04/17] igb: don't unmap NULL hw_addr Jeff Kirsher
2015-12-13  8:31 ` [net-next 05/17] e1000: Remove checkpatch coding style errors Jeff Kirsher
2015-12-13  8:31 ` [net-next 06/17] igb: use the correct i210 register for EEMNGCTL Jeff Kirsher
2015-12-13  8:31 ` [net-next 07/17] e1000: clean up the checking logic Jeff Kirsher
2015-12-13  8:31 ` [net-next 08/17] e1000: fix a typo in the comment Jeff Kirsher
2015-12-13  8:31 ` [net-next 09/17] e1000e: clean up the local variable Jeff Kirsher
2015-12-13  8:31 ` [net-next 10/17] e1000: fix kernel-doc argument being missing Jeff Kirsher
2015-12-13  8:31 ` [net-next 11/17] e1000: get rid of duplicate exit path Jeff Kirsher
2015-12-13  8:31 ` [net-next 12/17] e1000: Elementary checkpatch warnings and checks removed Jeff Kirsher
2015-12-13  8:31 ` [net-next 13/17] e1000e: fix division by zero on jumbo MTUs Jeff Kirsher
2015-12-13  8:31 ` [net-next 14/17] e1000e: Increase timeout of polling bit RSPCIPHY Jeff Kirsher
2015-12-13  8:31 ` [net-next 15/17] igb: fix NULL derefs due to skipped SR-IOV enabling Jeff Kirsher
2015-12-13  8:31 ` [net-next 16/17] igb: improve handling of disconnected adapters Jeff Kirsher
2015-12-13  8:31 ` [net-next 17/17] e1000e: initial support for i219-LM (3) Jeff Kirsher
2015-12-13 22:11 ` [net-next 00/17][pull request] 1GbE Intel Wired LAN Driver Updates 2015-12-12 David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.