OSDN Git Service

net/mlx5e: Report netdevice MPLS features
authorAriel Levkovich <lariel@mellanox.com>
Wed, 5 Jun 2019 17:01:08 +0000 (20:01 +0300)
committerSaeed Mahameed <saeedm@mellanox.com>
Fri, 28 Jun 2019 23:03:59 +0000 (16:03 -0700)
Set supported device features in the netdevice MPLS features mask.
This will enable HW checksumming and TSO for MPLS tagged traffic.

Signed-off-by: Ariel Levkovich <lariel@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
drivers/net/ethernet/mellanox/mlx5/core/en_main.c

index 8995cdd..3df663d 100644 (file)
@@ -4624,6 +4624,11 @@ static void mlx5e_build_nic_netdev(struct net_device *netdev)
        netdev->vlan_features    |= NETIF_F_RXCSUM;
        netdev->vlan_features    |= NETIF_F_RXHASH;
 
+       netdev->mpls_features    |= NETIF_F_SG;
+       netdev->mpls_features    |= NETIF_F_HW_CSUM;
+       netdev->mpls_features    |= NETIF_F_TSO;
+       netdev->mpls_features    |= NETIF_F_TSO6;
+
        netdev->hw_enc_features  |= NETIF_F_HW_VLAN_CTAG_TX;
        netdev->hw_enc_features  |= NETIF_F_HW_VLAN_CTAG_RX;