Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 78228cbd authored by Eli Cohen's avatar Eli Cohen Committed by David S. Miller
Browse files

net/mlx5_core: Remove static from local variable



The static is not required and breaks re-entrancy if it will be required.

Fixes: 25302363 ("net/mlx5_core: Flow steering tree initialization")
Signed-off-by: default avatarEli Cohen <eli@mellanox.com>
Signed-off-by: default avatarSaeed Mahameed <saeedm@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent cd255eff
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1276,7 +1276,7 @@ struct mlx5_flow_namespace *mlx5_get_flow_namespace(struct mlx5_core_dev *dev,
{
	struct mlx5_flow_root_namespace *root_ns = dev->priv.root_ns;
	int prio;
	static struct fs_prio *fs_prio;
	struct fs_prio *fs_prio;
	struct mlx5_flow_namespace *ns;

	if (!root_ns)