[PATCH 1/4] net/ice: demote path selection logs from NOTICE to DEBUG

Shaiq Wani shaiq.wani at intel.com
Mon Apr 20 08:27:43 CEST 2026


Demote Rx/Tx path selection messages from NOTICE to DEBUG level
to reduce noise.

Fixes: 872b57178709 ("net/ice: use common Rx path selection infrastructure")
Fixes: cf96ec231d02 ("net/ice: use common Tx path selection infrastructure")
Cc: stable at dpdk.org
Signed-off-by: Shaiq Wani <shaiq.wani at intel.com>
---
 drivers/net/intel/ice/ice_rxtx.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/intel/ice/ice_rxtx.c b/drivers/net/intel/ice/ice_rxtx.c
index 31b74be9ba..5edbd705a3 100644
--- a/drivers/net/intel/ice/ice_rxtx.c
+++ b/drivers/net/intel/ice/ice_rxtx.c
@@ -3408,7 +3408,7 @@ ice_set_rx_function(struct rte_eth_dev *dev)
 
 out:
 	dev->rx_pkt_burst = ice_rx_path_infos[ad->rx_func_type].pkt_burst;
-	PMD_DRV_LOG(NOTICE, "Using %s (port %d).",
+	PMD_DRV_LOG(DEBUG, "Using %s (port %d).",
 			ice_rx_path_infos[ad->rx_func_type].info, dev->data->port_id);
 }
 
@@ -3735,7 +3735,7 @@ ice_set_tx_function(struct rte_eth_dev *dev)
 	dev->tx_pkt_burst = mbuf_check ? ice_xmit_pkts_check :
 					 ice_tx_path_infos[ad->tx_func_type].pkt_burst;
 	dev->tx_pkt_prepare = ice_tx_path_infos[ad->tx_func_type].pkt_prep;
-	PMD_DRV_LOG(NOTICE, "Using %s (port %d).",
+	PMD_DRV_LOG(DEBUG, "Using %s (port %d).",
 		ice_tx_path_infos[ad->tx_func_type].info, dev->data->port_id);
 }
 
-- 
2.43.0



More information about the stable mailing list