This series contains updates to i40e and i40evf only. Corentin Labbe cleans up the left over FCoE files in the i40e driver.
Gustavo A R Silva fixes a cut and paste error. Paweł fixes a race condition when the VF driver is loaded on a host and virsh is trying to attach it to the virtual machine and set a MAC address. Resolve the issue by adding polling in i40e_ndo_set_vf_mac() when the VF is in reset mode. Jake cleans up i40e_vlan_rx_register() since this only used in a single location, so just inline the contents of the function. Created a helper function to proper update the per-filter statistics when we delete it. Factored out the re-enabling ATR and SB rules. Fixed an issue when re-enabling ATR after the last TCPv4 filter is removed and ntuple is still active, we were not restoring the TCPv4 filter input set. Filip modifies the permission check function to ensure that it knows how many filters are being requested, which allows the check to ensure that the total number of filters in a single request does not cause us to go over the limit. Mariusz fixed an issue where the wrong calculation of partition id was being done on OCP PHY mezzanine cards, which in turn caused wake on LAN to be disabled on certain ports. The following are changes since commit c292566a7779f88ed63d555b1015ab29ca0d5530: Merge branch 'sctp-add-support-for-some-sctp-auth-APIs-from-RFC6458' and are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 40GbE Corentin Labbe (1): i40e: remove i40e_fcoe files Filip Sadowski (1): i40e: Fix permission check for VF MAC filters Gustavo A R Silva (1): i40evf/i40evf_main: Fix variable assignment in i40evf_parse_cls_flower Jacob Keller (4): i40e: Cleanup i40e_vlan_rx_register i40e: track filter type statistics when deleting invalid filters i40e: factor out re-enable functions for ATR and SB i40e: restore TCPv4 input set when re-enabling ATR Mariusz Stachura (1): i40e: fix for wrong partition id calculation on OCP mezz cards Paweł Jabłoński (1): i40e: Fix attach VF to VM issue drivers/net/ethernet/intel/i40e/i40e_common.c | 23 +- drivers/net/ethernet/intel/i40e/i40e_fcoe.c | 1571 -------------------- drivers/net/ethernet/intel/i40e/i40e_fcoe.h | 127 -- drivers/net/ethernet/intel/i40e/i40e_main.c | 134 +- drivers/net/ethernet/intel/i40e/i40e_type.h | 3 + drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c | 90 +- drivers/net/ethernet/intel/i40evf/i40evf_main.c | 2 +- 7 files changed, 181 insertions(+), 1769 deletions(-) delete mode 100644 drivers/net/ethernet/intel/i40e/i40e_fcoe.c delete mode 100644 drivers/net/ethernet/intel/i40e/i40e_fcoe.h -- 2.14.3