Skip to content

Commit

Permalink
net/bnxt: reduce verbosity of a message
Browse files Browse the repository at this point in the history
Change verbosity of a message to DEBUG from ERROR.
This is just debug message.

Fixes: 3e92fd4 ("net/bnxt: use dynamic log type")
Cc: stable@dpdk.org

Signed-off-by: Kalesh AP <kalesh-anakkur.purayil@broadcom.com>
Signed-off-by: Somnath Kotur <somnath.kotur@broadcom.com>
  • Loading branch information
Kalesh AP authored and Ferruh Yigit committed Jul 25, 2019
1 parent ebbc8f2 commit 6a02762
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/bnxt/bnxt_hwrm.c
Original file line number Diff line number Diff line change
Expand Up @@ -2265,7 +2265,7 @@ bnxt_clear_hwrm_vnic_flows(struct bnxt *bp, struct bnxt_vnic_info *vnic)

STAILQ_FOREACH(flow, &vnic->flow_list, next) {
filter = flow->filter;
PMD_DRV_LOG(ERR, "filter type %d\n", filter->filter_type);
PMD_DRV_LOG(DEBUG, "filter type %d\n", filter->filter_type);
if (filter->filter_type == HWRM_CFA_EM_FILTER)
rc = bnxt_hwrm_clear_em_filter(bp, filter);
else if (filter->filter_type == HWRM_CFA_NTUPLE_FILTER)
Expand Down

0 comments on commit 6a02762

Please sign in to comment.