This series contains updates to igc driver only. Sasha adds ECN support for TSO by adding the NETIF_F_TSO_ECN flag, which aligns with other Intel drivers. Also cleaned up defines that are not supported or used in the igc driver.
Andre does most of the changes with updating the log messages for igc driver. Vitaly adds support for EEPROM, register and link ethtool self-tests. v2: Fixed up the added ethtool self-tests based on feedback from the community. Dropped the four patches that removed '\n' from log messages. v3: Reverted the debug message changes in patch 2 for messages in igc_probe, also made reg_test[] static in patch 3 based on community feedback v4: Updated the patch description for patch 2, which referred to changes that no longer existed in the patch v5: Scrubbed patches 4-7 patch description, which also referred to changes that no longer existed in the patch The following are changes since commit dbfe7d74376e187f3c6eaff822e85176bc2cd06e: rds: convert get_user_pages() --> pin_user_pages() and are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 1GbE Andre Guedes (5): igc: Use netdev log helpers in igc_main.c igc: Use netdev log helpers in igc_ethtool.c igc: Use netdev log helpers in igc_ptp.c igc: Use netdev log helpers in igc_dump.c igc: Use netdev log helpers in igc_base.c Sasha Neftin (3): igc: Add ECN support for TSO igc: Remove unneeded definition igc: Remove unneeded register Vitaly Lifshits (1): igc: add support to eeprom, registers and link self-tests drivers/net/ethernet/intel/igc/Makefile | 2 +- drivers/net/ethernet/intel/igc/igc.h | 4 + drivers/net/ethernet/intel/igc/igc_base.c | 6 +- drivers/net/ethernet/intel/igc/igc_defines.h | 1 - drivers/net/ethernet/intel/igc/igc_diag.c | 186 +++++++++++++++++++ drivers/net/ethernet/intel/igc/igc_diag.h | 30 +++ drivers/net/ethernet/intel/igc/igc_dump.c | 109 ++++++----- drivers/net/ethernet/intel/igc/igc_ethtool.c | 93 ++++++++-- drivers/net/ethernet/intel/igc/igc_main.c | 116 ++++++------ drivers/net/ethernet/intel/igc/igc_ptp.c | 12 +- drivers/net/ethernet/intel/igc/igc_regs.h | 3 +- 11 files changed, 415 insertions(+), 147 deletions(-) create mode 100644 drivers/net/ethernet/intel/igc/igc_diag.c create mode 100644 drivers/net/ethernet/intel/igc/igc_diag.h -- 2.26.2