[PATCH 2/4] net/iavf: demote path selection logs from NOTICE to DEBUG

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


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

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

diff --git a/drivers/net/intel/iavf/iavf_rxtx.c b/drivers/net/intel/iavf/iavf_rxtx.c
index 4ff6c18dc4..3d9b49efd0 100644
--- a/drivers/net/intel/iavf/iavf_rxtx.c
+++ b/drivers/net/intel/iavf/iavf_rxtx.c
@@ -3856,7 +3856,7 @@ iavf_set_rx_function(struct rte_eth_dev *dev)
 	else
 		dev->rx_pkt_burst = iavf_rx_path_infos[adapter->rx_func_type].pkt_burst;
 
-	PMD_DRV_LOG(NOTICE, "Using %s (port %d).",
+	PMD_DRV_LOG(DEBUG, "Using %s (port %d).",
 		iavf_rx_path_infos[adapter->rx_func_type].info, dev->data->port_id);
 }
 
@@ -3923,7 +3923,7 @@ iavf_set_tx_function(struct rte_eth_dev *dev)
 	else
 		dev->tx_pkt_burst = iavf_tx_path_infos[adapter->tx_func_type].pkt_burst;
 
-	PMD_DRV_LOG(NOTICE, "Using %s (port %d).",
+	PMD_DRV_LOG(DEBUG, "Using %s (port %d).",
 		 iavf_tx_path_infos[adapter->tx_func_type].info, dev->data->port_id);
 }
 
-- 
2.43.0



More information about the stable mailing list