Skip to content

Commit

Permalink
net/bnxt: fix debug log level
Browse files Browse the repository at this point in the history
[ upstream commit e0b7e82 ]

Creating a flow is a normal event; should not be logged at error level.

Fixes: 5c1171c ("net/bnxt: refactor filter/flow")

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
  • Loading branch information
shemminger authored and kevintraynor committed Dec 11, 2019
1 parent c904c37 commit aa99674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/bnxt/bnxt_flow.c
Expand Up @@ -1074,7 +1074,7 @@ bnxt_flow_create(struct rte_eth_dev *dev,
ret = -EXDEV;
goto free_flow;
}
PMD_DRV_LOG(ERR, "Successfully created flow.\n");
PMD_DRV_LOG(DEBUG, "Successfully created flow.\n");
STAILQ_INSERT_TAIL(&vnic->flow_list, flow, next);
return flow;
}
Expand Down

0 comments on commit aa99674

Please sign in to comment.