This series contains updates to mainly ixgbe, with a few updates to i40e, net, ice and hns2 driver.
Jan adds support for tracking each queue pair for whether or not AF_XDP zero copy is enabled. Also updated the ixgbe driver to use the netdev-provided umems so that we do not need to contain these structures in our own adapter structure. William Tu provides two fixes for AF_XDP statistics which were causing incorrect counts. Jake reduces the PTP transmit timestamp timeout from 15 seconds to 1 second, which is still well after the maximum expected delay. Also fixes an issues with the PTP SDP pin setup which was not properly aligning on a full second, so updated the code to account for the cyclecounter multiplier and simplify the code to make the intent of the calculations more clear. Updated the function header comments to help with the code documentation. Added support for SDP/PPS output for x550 devices, which is slightly different than x540 devices that currently have this support. Anirudh adds a new define for Link Layer Discovery Protocol to the networking core, so that drivers do not have to create and use their own definitions. In addition, update all the drivers currently defining their own LLDP define to use the new networking core define. The following are changes since commit 11694b03616b2a03cd7e3f0897d4d086c7fbc4b5: net: fec_ptp: Use dev_err() instead of pr_err() and are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 10GbE Anirudh Venkataramanan (4): net: Add a define for LLDP ethertype i40e: Use LLDP ethertype define ETH_P_LLDP ixgbe: Use LLDP ethertype define ETH_P_LLDP net: hns3: Use LLDP ethertype define ETH_P_LLDP Jacob Keller (5): ixgbe: reduce PTP Tx timestamp timeout to 1 second ixgbe: fix PTP SDP pin setup on X540 hardware ixgbe: use 'cc' instead of 'hw_cc' for local variable ixgbe: add a kernel documentation comment for ixgbe_ptp_get_ts_config ixgbe: implement support for SDP/PPS output on X550 hardware Jan Sokolowski (2): ixgbe: add tracking of AF_XDP zero-copy state for each queue pair ixgbe: remove umem from adapter Jeff Kirsher (1): ice: Use LLDP ethertype define ETH_P_LLDP Kangjie Lu (1): net: ixgbevf: fix a missing check of ixgbevf_write_msg_read_ack William Tu (2): ixgbe: fix AF_XDP tx byte count ixgbe: fix AF_XDP tx packet count .../hisilicon/hns3/hns3pf/hclge_cmd.h | 1 - .../hisilicon/hns3/hns3pf/hclge_main.c | 2 +- drivers/net/ethernet/intel/i40e/i40e.h | 2 - .../net/ethernet/intel/i40e/i40e_debugfs.c | 4 +- drivers/net/ethernet/intel/ice/ice_lib.c | 4 +- drivers/net/ethernet/intel/ixgbe/ixgbe.h | 14 +- drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 6 + drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c | 187 ++++++++++++++---- .../net/ethernet/intel/ixgbe/ixgbe_sriov.c | 2 +- drivers/net/ethernet/intel/ixgbe/ixgbe_type.h | 14 +- drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.c | 82 ++------ drivers/net/ethernet/intel/ixgbevf/vf.c | 5 +- include/uapi/linux/if_ether.h | 1 + 13 files changed, 200 insertions(+), 124 deletions(-) -- 2.21.0