net: systemport: Turn on offloads by default
authorFlorian Fainelli <f.fainelli@gmail.com>
Thu, 27 Sep 2018 22:36:12 +0000 (15:36 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 2 Oct 2018 06:11:52 +0000 (23:11 -0700)
We can turn on the RX/TX checksum offloads by default and make sure that
those are properly reflected back to e.g: stacked devices such as VLAN
or DSA.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/broadcom/bcmsysport.c

index 3b4cb906a275d256f8e865cace00e4cc4fb1a233..977d9dec2fb061c7482783992fae8d2186caad7c 100644 (file)
@@ -2508,9 +2508,10 @@ static int bcm_sysport_probe(struct platform_device *pdev)
        dev->netdev_ops = &bcm_sysport_netdev_ops;
        netif_napi_add(dev, &priv->napi, bcm_sysport_poll, 64);
 
-       /* HW supported features, none enabled by default */
-       dev->hw_features |= NETIF_F_RXCSUM | NETIF_F_HIGHDMA |
-                               NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
+       dev->features |= NETIF_F_RXCSUM | NETIF_F_HIGHDMA |
+                        NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
+       dev->hw_features |= dev->features;
+       dev->vlan_features |= dev->features;
 
        /* Request the WOL interrupt and advertise suspend if available */
        priv->wol_irq_disabled = 1;