diff options
author | Or Gerlitz <ogerlitz@mellanox.com> | 2016-11-04 01:48:44 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-11-04 14:59:36 -0400 |
commit | abd3277287c7743d3999b801c6769e8ad1b381dd (patch) | |
tree | 1c9e55053446edd247572ddf080cc77b38874985 /drivers/net/ethernet/mellanox | |
parent | d7a0ecab380c62ccd9fbe2e08dd720f7a367d6ee (diff) | |
download | linux-abd3277287c7743d3999b801c6769e8ad1b381dd.tar.bz2 |
net/mlx5e: Disallow changing name-space for VF representors
VF reps should be altogether on the same NS as they were created.
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/mellanox')
-rw-r--r-- | drivers/net/ethernet/mellanox/mlx5/core/en_rep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c b/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c index 7fe6559e4ab3..bf1c09ca73c0 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c @@ -308,7 +308,7 @@ static void mlx5e_build_rep_netdev(struct net_device *netdev) netdev->switchdev_ops = &mlx5e_rep_switchdev_ops; #endif - netdev->features |= NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_TC; + netdev->features |= NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_TC | NETIF_F_NETNS_LOCAL; netdev->hw_features |= NETIF_F_HW_TC; eth_hw_addr_random(netdev); |