aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Finlay <matt@mellanox.com>2016-06-27 12:08:36 +0300
committerDavid S. Miller <davem@davemloft.net>2016-06-29 04:28:46 -0400
commit9ceec359e4ebdbbfd35375203c5bd06d602225f7 (patch)
tree83b865ed7ed94fc8cebba5cbbf7efb5d82a1933b
parentfd4782c21359cfd52af4c3180a2bb6bad55c1eba (diff)
downloadstm32-9ceec359e4ebdbbfd35375203c5bd06d602225f7.tar.gz
net/mlx5e: Prevent adding the same vxlan port
Do not allow the same vxlan udp port to be added to the device more than once. Fixes: b3f63c3d5e2c ("net/mlx5e: Add netdev support for VXLAN tunneling") Signed-off-by: Matthew Finlay <matt@mellanox.com> Signed-off-by: Saeed Mahameed <saeedm@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/ethernet/mellanox/mlx5/core/vxlan.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/vxlan.c b/drivers/net/ethernet/mellanox/mlx5/core/vxlan.c
index f2fd1ef16da7eb..05de77267d58a9 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/vxlan.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/vxlan.c
@@ -105,6 +105,9 @@ static void mlx5e_vxlan_add_port(struct work_struct *work)
struct mlx5e_vxlan *vxlan;
int err;
+ if (mlx5e_vxlan_lookup_port(priv, port))
+ goto free_work;
+
if (mlx5e_vxlan_core_add_port_cmd(priv->mdev, port))
goto free_work;