From: Tobias Regnery Date: Mon, 9 Jan 2017 12:15:55 +0000 (+0100) Subject: alx: add feature flag for rx checksumming X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=3a7f75e532420edb375b8d0a1526c3c1b777c1f6;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git alx: add feature flag for rx checksumming The code to handle rx checksumming was in the driver since its introduction but for reasons unknown the feature flag was left out. Now it is possible to enable this feature with ethtool. Tested on my AR8161 ethernet card, there are no regressions observed in netperf if this feature is enabled. Signed-off-by: Tobias Regnery Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/atheros/alx/main.c b/drivers/net/ethernet/atheros/alx/main.c index c66195d00ed4..4c80e0689db9 100644 --- a/drivers/net/ethernet/atheros/alx/main.c +++ b/drivers/net/ethernet/atheros/alx/main.c @@ -1816,6 +1816,7 @@ static int alx_probe(struct pci_dev *pdev, const struct pci_device_id *ent) netdev->hw_features = NETIF_F_SG | NETIF_F_HW_CSUM | + NETIF_F_RXCSUM | NETIF_F_TSO | NETIF_F_TSO6;