1. 30 May, 2019 38 commits
  2. 29 May, 2019 2 commits
    • David S. Miller's avatar
      Merge branch '100GbE' of git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue · 7da33a8f
      David S. Miller authored
      Jeff Kirsher says:
      
      ====================
      100GbE Intel Wired LAN Driver Updates 2019-05-29
      
      This series contains updates to ice driver only.
      
      Bruce cleans up white space issues and fixes complaints about using
      bitop assignments using operands of different sizes.
      
      Anirudh cleans up code that is no longer needed now that the firmware
      supports the functionality.  Adds support for ethtool selftestto the ice
      driver, which includes testing link, interrupts, eeprom, registers and
      packet loopback.  Also, cleaned up duplicate code.
      
      Tony implements support for toggling receive VLAN filter via ethtool.
      
      Brett bumps up the minimum receive descriptor count per queue to resolve
      dropped packets.  Refactored the interrupt tracking for the ice driver
      to resolve issues seen with the co-existence of features and SR-IOV, so
      instead of having a hardware IRQ tracker and a software IRQ tracker,
      simply use one tracker.  Also adds a helper function to trigger software
      interrupts.
      
      Mitch changes how Malicious Driver Detection (MDD) events are handled,
      to ensure all VFs checked for MDD events and just log the event instead
      of disabling the VF, which was preventing proper release of resources if
      the VF is rebooted or the VF driver reloaded.
      
      Dave cleans up a redundant call to register LLDP MIB change events.
      
      Dan adds support to retrieve the current setting of firmware logging
      from the hardware to properly initialize the hardware structure.
      ====================
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      7da33a8f
    • YueHaibing's avatar
      net: stmmac: Fix build error without CONFIG_INET · a3e2f6ad
      YueHaibing authored
      Fix gcc build error while CONFIG_INET is not set
      
      drivers/net/ethernet/stmicro/stmmac/stmmac_selftests.o: In function `__stmmac_test_loopback':
      stmmac_selftests.c:(.text+0x8ec): undefined reference to `ip_send_check'
      stmmac_selftests.c:(.text+0xacc): undefined reference to `udp4_hwcsum'
      
      Add CONFIG_INET dependency to fix this.
      Reported-by: default avatarHulk Robot <hulkci@huawei.com>
      Fixes: 091810db ("net: stmmac: Introduce selftests support")
      Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      a3e2f6ad