Commit 278d7f3d authored by Gal Pressman's avatar Gal Pressman Committed by Saeed Mahameed

net/mlx5e: Vxlan, cleanup an unused member in vxlan work

Cleanup the sa_family member of the vxlan work, it is unused/needed
anywhere in the code.
Signed-off-by: default avatarGal Pressman <galp@mellanox.com>
Signed-off-by: default avatarSaeed Mahameed <saeedm@mellanox.com>
parent d30d8cde
...@@ -3980,7 +3980,7 @@ static void mlx5e_add_vxlan_port(struct net_device *netdev, ...@@ -3980,7 +3980,7 @@ static void mlx5e_add_vxlan_port(struct net_device *netdev,
if (!mlx5e_vxlan_allowed(priv->mdev)) if (!mlx5e_vxlan_allowed(priv->mdev))
return; return;
mlx5e_vxlan_queue_work(priv, ti->sa_family, be16_to_cpu(ti->port), 1); mlx5e_vxlan_queue_work(priv, be16_to_cpu(ti->port), 1);
} }
static void mlx5e_del_vxlan_port(struct net_device *netdev, static void mlx5e_del_vxlan_port(struct net_device *netdev,
...@@ -3994,7 +3994,7 @@ static void mlx5e_del_vxlan_port(struct net_device *netdev, ...@@ -3994,7 +3994,7 @@ static void mlx5e_del_vxlan_port(struct net_device *netdev,
if (!mlx5e_vxlan_allowed(priv->mdev)) if (!mlx5e_vxlan_allowed(priv->mdev))
return; return;
mlx5e_vxlan_queue_work(priv, ti->sa_family, be16_to_cpu(ti->port), 0); mlx5e_vxlan_queue_work(priv, be16_to_cpu(ti->port), 0);
} }
static netdev_features_t mlx5e_tunnel_features_check(struct mlx5e_priv *priv, static netdev_features_t mlx5e_tunnel_features_check(struct mlx5e_priv *priv,
......
...@@ -191,8 +191,7 @@ static void mlx5e_vxlan_del_work(struct work_struct *work) ...@@ -191,8 +191,7 @@ static void mlx5e_vxlan_del_work(struct work_struct *work)
kfree(vxlan_work); kfree(vxlan_work);
} }
void mlx5e_vxlan_queue_work(struct mlx5e_priv *priv, sa_family_t sa_family, void mlx5e_vxlan_queue_work(struct mlx5e_priv *priv, u16 port, int add)
u16 port, int add)
{ {
struct mlx5e_vxlan_work *vxlan_work; struct mlx5e_vxlan_work *vxlan_work;
...@@ -207,7 +206,6 @@ void mlx5e_vxlan_queue_work(struct mlx5e_priv *priv, sa_family_t sa_family, ...@@ -207,7 +206,6 @@ void mlx5e_vxlan_queue_work(struct mlx5e_priv *priv, sa_family_t sa_family,
vxlan_work->priv = priv; vxlan_work->priv = priv;
vxlan_work->port = port; vxlan_work->port = port;
vxlan_work->sa_family = sa_family;
queue_work(priv->wq, &vxlan_work->work); queue_work(priv->wq, &vxlan_work->work);
} }
......
...@@ -44,7 +44,6 @@ struct mlx5e_vxlan { ...@@ -44,7 +44,6 @@ struct mlx5e_vxlan {
struct mlx5e_vxlan_work { struct mlx5e_vxlan_work {
struct work_struct work; struct work_struct work;
struct mlx5e_priv *priv; struct mlx5e_priv *priv;
sa_family_t sa_family;
u16 port; u16 port;
}; };
...@@ -57,8 +56,7 @@ static inline bool mlx5e_vxlan_allowed(struct mlx5_core_dev *mdev) ...@@ -57,8 +56,7 @@ static inline bool mlx5e_vxlan_allowed(struct mlx5_core_dev *mdev)
void mlx5e_vxlan_init(struct mlx5e_priv *priv); void mlx5e_vxlan_init(struct mlx5e_priv *priv);
void mlx5e_vxlan_cleanup(struct mlx5e_priv *priv); void mlx5e_vxlan_cleanup(struct mlx5e_priv *priv);
void mlx5e_vxlan_queue_work(struct mlx5e_priv *priv, sa_family_t sa_family, void mlx5e_vxlan_queue_work(struct mlx5e_priv *priv, u16 port, int add);
u16 port, int add);
struct mlx5e_vxlan *mlx5e_vxlan_lookup_port(struct mlx5e_priv *priv, u16 port); struct mlx5e_vxlan *mlx5e_vxlan_lookup_port(struct mlx5e_priv *priv, u16 port);
#endif /* __MLX5_VXLAN_H__ */ #endif /* __MLX5_VXLAN_H__ */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment