Skip to content

Commit b3a9569

Browse files
shemmingerbruce-richardson
authored andcommitted
net/i40e: reduce log level of path selection messages
The driver logs normal things like choice of AVX at NOTICE level. This shows up as unnecessary noise to regular users. Bugzilla ID: 1936 Fixes: 3f24891 ("net/i40e: use common Rx path selection infrastructure") Fixes: 8d57c17 ("net/i40e: use common Tx path selection infrastructure") Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> Acked-by: Ciara Loftus <ciara.loftus@intel.com>
1 parent 071e43b commit b3a9569

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/net/intel/i40e/i40e_rxtx.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3043,7 +3043,7 @@ i40e_set_rx_function(struct rte_eth_dev *dev)
30433043

30443044
out:
30453045
dev->rx_pkt_burst = i40e_rx_path_infos[ad->rx_func_type].pkt_burst;
3046-
PMD_DRV_LOG(NOTICE, "Using %s (port %d).",
3046+
PMD_DRV_LOG(DEBUG, "Using %s (port %d).",
30473047
i40e_rx_path_infos[ad->rx_func_type].info, dev->data->port_id);
30483048
}
30493049

@@ -3125,7 +3125,7 @@ i40e_set_tx_function(struct rte_eth_dev *dev)
31253125
i40e_tx_path_infos[ad->tx_func_type].pkt_burst;
31263126
dev->tx_pkt_prepare = i40e_tx_path_infos[ad->tx_func_type].pkt_prep;
31273127

3128-
PMD_DRV_LOG(NOTICE, "Using %s (port %d).",
3128+
PMD_DRV_LOG(DEBUG, "Using %s (port %d).",
31293129
i40e_tx_path_infos[ad->tx_func_type].info, dev->data->port_id);
31303130

31313131
if (ad->tx_func_type == I40E_TX_SCALAR_SIMPLE ||

0 commit comments

Comments
 (0)