OSDN Git Service

net/mlx5e: CT: Avoid false warning about rule may be used uninitialized
authorRoi Dayan <roid@mellanox.com>
Sun, 26 Apr 2020 06:52:02 +0000 (09:52 +0300)
committerSaeed Mahameed <saeedm@mellanox.com>
Thu, 30 Apr 2020 17:10:43 +0000 (10:10 -0700)
Avoid gcc warning by preset rule to invalid ptr.

Fixes: 4c3844d9e97e ("net/mlx5e: CT: Introduce connection tracking")
Signed-off-by: Roi Dayan <roid@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c

index 77b3f37..44f806e 100644 (file)
@@ -1131,7 +1131,7 @@ mlx5_tc_ct_flow_offload(struct mlx5e_priv *priv,
 {
        bool clear_action = attr->ct_attr.ct_action & TCA_CT_ACT_CLEAR;
        struct mlx5_tc_ct_priv *ct_priv = mlx5_tc_ct_get_ct_priv(priv);
-       struct mlx5_flow_handle *rule;
+       struct mlx5_flow_handle *rule = ERR_PTR(-EINVAL);
        int err;
 
        if (!ct_priv)