netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [net-next v2 00/14][pull request] Intel Wired LAN Driver Updates 2015-08-26
@ 2015-08-26 22:49 Jeff Kirsher
  2015-08-26 22:49 ` [net-next v2 01/14] i40e: don't degrade __le16 Jeff Kirsher
                   ` (14 more replies)
  0 siblings, 15 replies; 17+ messages in thread
From: Jeff Kirsher @ 2015-08-26 22:49 UTC (permalink / raw)
  To: davem; +Cc: Jeff Kirsher, netdev, nhorman, sassmann, jogreene, john.ronciak

This series contains updates to i40e and i40evf only.

Anjali provides a fix for i40e where the part is not receiving multicast
or VLAN tagged packets when in promiscuous mode.  This can occur when a
software bridge is created on top of the device.  Fixed the legacy and MSI
interrupt mode in the driver, which was non-existent before since we
were assuming MSIX was the only mode that the driver ran in.  Fixed the
i40evf driver, where the wrong defines were getting used in the VF
driver.

Mitch fixes a sparse warning about comparing __le16 to u16 so use
le16_to_cpu() to resolve the warning.  Also fixed a dyslexic spelling
of invalid.

Shannon adds port.crc_errors to receive CRC error counter, since it
is a receive counter.

Catherine provides a fix to move the stopping of the service task and
flow director to i40e_shutdown() instead of i40e_suspend().

Greg fixes the ethtool offline diagnostic with netqueues, which just need
to be treated the same as virtual functions when someone wants to run the
ethtool offline diagnostic test.  Also fixed up code comments for the
i40e ethtool diagnostic test function.  Cleans up redundant and unneeded
messages, since the kernel notifies all VXLAN capable registered drivers,
so no need to log this.

Neerav adds the ability to update statistics per VEB per traffic class
and dump it via ethtool.

Jingjing adds support for virtual channel offload to support receive
polling mode in the VF driver.

v2: dropped patch which added helper functions into a header, feedback from
    David Miller was to make the functions constant to reduce the driver
    footprint, so remove the patch while Anjali works on making the requested
    changes.

The following are changes since commit 8c5bbe77d4cd012668cdaf501bbd1cbfb9ad1d24:
  Merge branch 'act_bpf_lockless'
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue master

Anjali Singhai Jain (4):
  i40e: Fix legacy interrupt mode in the driver
  i40evf: Use the correct defines to match the VF registers
  i40evf: Remove PF specific register definitions from the VF
  i40e/i40evf: add VIRTCHNL_VF_OFFLOAD flag

Catherine Sullivan (2):
  i40e: Move function calls to i40e_shutdown instead of i40e_suspend
  i40e/i40evf: Bump i40e to 1.3.9 and i40evf to 1.3.5

Greg Rose (3):
  i40e: Fix ethtool offline diagnostic with netqueues
  i40e: Fix comment for ethtool diagnostic link test
  i40e: Remove redundant and unneeded messages

Mitch Williams (2):
  i40e: don't degrade __le16
  i40e: correct spelling error

Neerav Parikh (2):
  i40e/i40evf: Add capability to gather VEB per TC stats
  i40e/i40evf: Cache the CEE TLV status returned from firmware

Shannon Nelson (1):
  i40e: add RX to port CRC errors label

 drivers/net/ethernet/intel/i40e/i40e.h             |    2 +
 drivers/net/ethernet/intel/i40e/i40e_dcb.c         |    4 +
 drivers/net/ethernet/intel/i40e/i40e_ethtool.c     |   54 +-
 drivers/net/ethernet/intel/i40e/i40e_main.c        |   66 +-
 drivers/net/ethernet/intel/i40e/i40e_register.h    |    7 +
 drivers/net/ethernet/intel/i40e/i40e_type.h        |    9 +
 drivers/net/ethernet/intel/i40e/i40e_virtchnl.h    |    1 +
 drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c |   19 +-
 drivers/net/ethernet/intel/i40evf/i40e_adminq.c    |   17 +-
 drivers/net/ethernet/intel/i40evf/i40e_common.c    |    2 +-
 drivers/net/ethernet/intel/i40evf/i40e_register.h  | 3093 --------------------
 drivers/net/ethernet/intel/i40evf/i40e_txrx.c      |   28 +-
 drivers/net/ethernet/intel/i40evf/i40e_type.h      |    9 +
 drivers/net/ethernet/intel/i40evf/i40e_virtchnl.h  |    1 +
 drivers/net/ethernet/intel/i40evf/i40evf_main.c    |   42 +-
 15 files changed, 188 insertions(+), 3166 deletions(-)

-- 
2.4.3

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

end of thread, other threads:[~2015-08-27 21:06 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-26 22:49 [net-next v2 00/14][pull request] Intel Wired LAN Driver Updates 2015-08-26 Jeff Kirsher
2015-08-26 22:49 ` [net-next v2 01/14] i40e: don't degrade __le16 Jeff Kirsher
2015-08-26 22:57   ` Joe Perches
2015-08-26 22:49 ` [net-next v2 02/14] i40e: add RX to port CRC errors label Jeff Kirsher
2015-08-26 22:49 ` [net-next v2 03/14] i40e: Move function calls to i40e_shutdown instead of i40e_suspend Jeff Kirsher
2015-08-26 22:49 ` [net-next v2 04/14] i40e: Fix legacy interrupt mode in the driver Jeff Kirsher
2015-08-26 22:49 ` [net-next v2 05/14] i40e: Fix ethtool offline diagnostic with netqueues Jeff Kirsher
2015-08-26 22:49 ` [net-next v2 06/14] i40e/i40evf: Add capability to gather VEB per TC stats Jeff Kirsher
2015-08-26 22:49 ` [net-next v2 07/14] i40e: Fix comment for ethtool diagnostic link test Jeff Kirsher
2015-08-26 22:49 ` [net-next v2 08/14] i40e: correct spelling error Jeff Kirsher
2015-08-26 22:49 ` [net-next v2 09/14] i40evf: Use the correct defines to match the VF registers Jeff Kirsher
2015-08-26 22:49 ` [net-next v2 10/14] i40evf: Remove PF specific register definitions from the VF Jeff Kirsher
2015-08-26 22:49 ` [net-next v2 11/14] i40e: Remove redundant and unneeded messages Jeff Kirsher
2015-08-26 22:49 ` [net-next v2 12/14] i40e/i40evf: add VIRTCHNL_VF_OFFLOAD flag Jeff Kirsher
2015-08-26 22:49 ` [net-next v2 13/14] i40e/i40evf: Cache the CEE TLV status returned from firmware Jeff Kirsher
2015-08-26 22:49 ` [net-next v2 14/14] i40e/i40evf: Bump i40e to 1.3.9 and i40evf to 1.3.5 Jeff Kirsher
2015-08-27 21:06 ` [net-next v2 00/14][pull request] Intel Wired LAN Driver Updates 2015-08-26 David Miller

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