netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [net-next 00/20][pull request] 40GbE Intel Wired LAN Driver Updates 2016-12-06
@ 2016-12-07  7:33 Jeff Kirsher
  2016-12-07  7:33 ` [net-next 01/20] i40e: Driver prints log message on link speed change Jeff Kirsher
                   ` (19 more replies)
  0 siblings, 20 replies; 25+ messages in thread
From: Jeff Kirsher @ 2016-12-07  7:33 UTC (permalink / raw)
  To: davem; +Cc: Jeff Kirsher, netdev, nhorman, sassmann, jogreene,
	guru.anbalagane

This series contains updates to i40e and i40evf only.

Filip modifies the i40e to log link speed change and when the link is
brought up and down.

Mitch replaces i40e_txd_use_count() with a new function which is slightly
faster and better documented so the dim witted can better follow the
code.  Fixes the locking of the service task so that it is actually
done in the service task and not in the scheduling function which calls
the service task.

Jacob, being the busy little beaver he is, provides most of the changes
starting restores a workaround that is still needed in some configurations,
specifically the Ethernet Controller XL710 for 40GbE QSFP+.  Removes
duplicate code and simplifies the i40e_vsi_add_vlan() and
i40e_vsi_kill_vlan() functions.  Removes detection of PTP frames over L4
(UDP) on the XL710 MAC, since there was a product decision to defeature
it.  Fixed a previous refactor of active filters which caused issues in
the accounting of active_filters.  Remaining work was done in the VLAN
filters to improve readability and simplify code as much as possible
to reduce inconsistencies.

Alex fixes foul budget accounting in core code by returning actual
work done, capped to budget-1.

Henry fixes the "ethtool -p" function for 1G BaseT PHYs.

Carolyn adds support for 25G devices for i40e and i40evf.

Michal adds functions to apply the correct access method for external PHYs
which could use Clause22 or Clause45 depending on the PHY.

The following are changes since commit d4aea20d889e05575bb331a3dadf176176f7d631:
  tun: Use netif_receive_skb instead of netif_rx
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 40GbE

Alexander Duyck (1):
  i40e/i40evf: napi_poll must return the work done

Bimmy Pujari (1):
  Changed version from 1.6.21 to 1.6.25

Carolyn Wyborny (2):
  i40e: Add support for 25G devices
  i40e: Add FEC for 25g

Filip Sadowski (1):
  i40e: Driver prints log message on link speed change

Henry Tieman (1):
  i40e: Blink LED on 1G BaseT boards

Jacob Keller (11):
  i40e: restore workaround for removing default MAC filter
  i40e: remove code to handle dev_addr specially
  i40e: use unsigned printf format specifier for active_filters count
  i40e: defeature support for PTP L4 frame detection on XL710
  i40e: recalculate vsi->active_filters from hash contents
  i40e: refactor i40e_update_filter_state to avoid passing aq_err
  i40e: delete filter after adding its replacement when converting
  i40e: factor out addition/deletion of VLAN per each MAC address
  i40e: use (add|rm)_vlan_all_mac helper functions when changing PVID
  i40e: move all updates for VLAN mode into i40e_sync_vsi_filters
  i40e: don't allow i40e_vsi_(add|kill)_vlan to operate when VID<1

Michal Kosiarz (1):
  i40e: Add functions which apply correct PHY access method for read and
    write operation

Mitch Williams (2):
  i40e: simplify txd use count calculation
  i40e: lock service task correctly

 drivers/net/ethernet/intel/i40e/i40e.h             |  10 +-
 drivers/net/ethernet/intel/i40e/i40e_adminq_cmd.h  |  51 ++-
 drivers/net/ethernet/intel/i40e/i40e_common.c      |  85 +++-
 drivers/net/ethernet/intel/i40e/i40e_debugfs.c     |   2 +-
 drivers/net/ethernet/intel/i40e/i40e_devids.h      |   2 +
 drivers/net/ethernet/intel/i40e/i40e_ethtool.c     |  51 ++-
 drivers/net/ethernet/intel/i40e/i40e_main.c        | 491 ++++++++++++---------
 drivers/net/ethernet/intel/i40e/i40e_prototype.h   |   4 +
 drivers/net/ethernet/intel/i40e/i40e_ptp.c         |  21 +-
 drivers/net/ethernet/intel/i40e/i40e_txrx.c        |   2 +-
 drivers/net/ethernet/intel/i40e/i40e_txrx.h        |  45 +-
 drivers/net/ethernet/intel/i40e/i40e_type.h        |  82 ++--
 drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c |  46 +-
 .../net/ethernet/intel/i40evf/i40e_adminq_cmd.h    |  51 ++-
 drivers/net/ethernet/intel/i40evf/i40e_common.c    |   2 +
 drivers/net/ethernet/intel/i40evf/i40e_devids.h    |   2 +
 drivers/net/ethernet/intel/i40evf/i40e_prototype.h |   4 +
 drivers/net/ethernet/intel/i40evf/i40e_txrx.c      |   2 +-
 drivers/net/ethernet/intel/i40evf/i40e_txrx.h      |  45 +-
 drivers/net/ethernet/intel/i40evf/i40e_type.h      |  82 ++--
 drivers/net/ethernet/intel/i40evf/i40evf_ethtool.c |   8 +
 drivers/net/ethernet/intel/i40evf/i40evf_main.c    |   2 +-
 .../net/ethernet/intel/i40evf/i40evf_virtchnl.c    |   3 +
 23 files changed, 731 insertions(+), 362 deletions(-)

-- 
2.9.3

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

end of thread, other threads:[~2016-12-07 22:00 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-07  7:33 [net-next 00/20][pull request] 40GbE Intel Wired LAN Driver Updates 2016-12-06 Jeff Kirsher
2016-12-07  7:33 ` [net-next 01/20] i40e: Driver prints log message on link speed change Jeff Kirsher
2016-12-07  7:33 ` [net-next 02/20] i40e: simplify txd use count calculation Jeff Kirsher
2016-12-07  7:33 ` [net-next 03/20] i40e: restore workaround for removing default MAC filter Jeff Kirsher
2016-12-07  7:33 ` [net-next 04/20] i40e/i40evf: napi_poll must return the work done Jeff Kirsher
2016-12-07  7:33 ` [net-next 05/20] i40e: remove code to handle dev_addr specially Jeff Kirsher
2016-12-07  7:33 ` [net-next 06/20] i40e: Blink LED on 1G BaseT boards Jeff Kirsher
2016-12-07  7:33 ` [net-next 07/20] Changed version from 1.6.21 to 1.6.25 Jeff Kirsher
2016-12-07  7:33 ` [net-next 08/20] i40e: use unsigned printf format specifier for active_filters count Jeff Kirsher
2016-12-07  7:33 ` [net-next 09/20] i40e: Add support for 25G devices Jeff Kirsher
2016-12-07  7:33 ` [net-next 10/20] i40e: Add FEC for 25g Jeff Kirsher
2016-12-07  7:33 ` [net-next 11/20] i40e: Add functions which apply correct PHY access method for read and write operation Jeff Kirsher
2016-12-07  7:33 ` [net-next 12/20] i40e: lock service task correctly Jeff Kirsher
2016-12-07  7:33 ` [net-next 13/20] i40e: defeature support for PTP L4 frame detection on XL710 Jeff Kirsher
2016-12-07  7:33 ` [net-next 14/20] i40e: recalculate vsi->active_filters from hash contents Jeff Kirsher
2016-12-07  7:33 ` [net-next 15/20] i40e: refactor i40e_update_filter_state to avoid passing aq_err Jeff Kirsher
2016-12-07  7:33 ` [net-next 16/20] i40e: delete filter after adding its replacement when converting Jeff Kirsher
2016-12-07  7:33 ` [net-next 17/20] i40e: factor out addition/deletion of VLAN per each MAC address Jeff Kirsher
2016-12-07  7:33 ` [net-next 18/20] i40e: use (add|rm)_vlan_all_mac helper functions when changing PVID Jeff Kirsher
2016-12-07  7:33 ` [net-next 19/20] i40e: move all updates for VLAN mode into i40e_sync_vsi_filters Jeff Kirsher
2016-12-07  7:33 ` [net-next 20/20] i40e: don't allow i40e_vsi_(add|kill)_vlan to operate when VID<1 Jeff Kirsher
2016-12-07 10:10   ` Sergei Shtylyov
2016-12-07 21:50     ` Keller, Jacob E
2016-12-07 21:53       ` Jeff Kirsher
2016-12-07 22:00         ` Keller, Jacob E

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