DPDK-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] net/intel: demote path selection logs from NOTICE to DEBUG
@ 2026-04-20  6:27 Shaiq Wani
  2026-04-20  6:27 ` [PATCH 1/4] net/ice: " Shaiq Wani
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Shaiq Wani @ 2026-04-20  6:27 UTC (permalink / raw)
  To: dev, bruce.richardson, aman.deep.singh

Demote Rx/Tx path selection messages from NOTICE to DEBUG level
to reduce noise across ice, iavf, idpf and cpfl drivers.

Shaiq Wani (4):
  net/ice: demote path selection logs from NOTICE to DEBUG
  net/iavf: demote path selection logs from NOTICE to DEBUG
  net/idpf: demote path selection logs from NOTICE to DEBUG
  net/cpfl: demote path selection logs from NOTICE to DEBUG

 drivers/net/intel/cpfl/cpfl_rxtx.c | 4 ++--
 drivers/net/intel/iavf/iavf_rxtx.c | 4 ++--
 drivers/net/intel/ice/ice_rxtx.c   | 4 ++--
 drivers/net/intel/idpf/idpf_rxtx.c | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

-- 
2.43.0


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/4] net/ice: demote path selection logs from NOTICE to DEBUG
  2026-04-20  6:27 [PATCH 0/4] net/intel: demote path selection logs from NOTICE to DEBUG Shaiq Wani
@ 2026-04-20  6:27 ` Shaiq Wani
  2026-04-20  6:27 ` [PATCH 2/4] net/iavf: " Shaiq Wani
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Shaiq Wani @ 2026-04-20  6:27 UTC (permalink / raw)
  To: dev, bruce.richardson, aman.deep.singh; +Cc: stable

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@dpdk.org
Signed-off-by: Shaiq Wani <shaiq.wani@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


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/4] net/iavf: demote path selection logs from NOTICE to DEBUG
  2026-04-20  6:27 [PATCH 0/4] net/intel: demote path selection logs from NOTICE to DEBUG Shaiq Wani
  2026-04-20  6:27 ` [PATCH 1/4] net/ice: " Shaiq Wani
@ 2026-04-20  6:27 ` Shaiq Wani
  2026-04-20  6:27 ` [PATCH 3/4] net/idpf: " Shaiq Wani
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Shaiq Wani @ 2026-04-20  6:27 UTC (permalink / raw)
  To: dev, bruce.richardson, aman.deep.singh; +Cc: stable

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@dpdk.org
Signed-off-by: Shaiq Wani <shaiq.wani@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


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 3/4] net/idpf: demote path selection logs from NOTICE to DEBUG
  2026-04-20  6:27 [PATCH 0/4] net/intel: demote path selection logs from NOTICE to DEBUG Shaiq Wani
  2026-04-20  6:27 ` [PATCH 1/4] net/ice: " Shaiq Wani
  2026-04-20  6:27 ` [PATCH 2/4] net/iavf: " Shaiq Wani
@ 2026-04-20  6:27 ` Shaiq Wani
  2026-04-20  6:27 ` [PATCH 4/4] net/cpfl: " Shaiq Wani
  2026-04-20 16:54 ` [PATCH 0/4] net/intel: " Bruce Richardson
  4 siblings, 0 replies; 6+ messages in thread
From: Shaiq Wani @ 2026-04-20  6:27 UTC (permalink / raw)
  To: dev, bruce.richardson, aman.deep.singh; +Cc: stable

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

Fixes: 12b1c2901761 ("net/idpf: use common Rx path selection infrastructure")
Fixes: 7cab7e67363a ("net/idpf: use common Tx path selection infrastructure")
Cc: stable@dpdk.org
Signed-off-by: Shaiq Wani <shaiq.wani@intel.com>
---
 drivers/net/intel/idpf/idpf_rxtx.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/intel/idpf/idpf_rxtx.c b/drivers/net/intel/idpf/idpf_rxtx.c
index b316c77b62..20cfc3a506 100644
--- a/drivers/net/intel/idpf/idpf_rxtx.c
+++ b/drivers/net/intel/idpf/idpf_rxtx.c
@@ -835,7 +835,7 @@ idpf_set_rx_function(struct rte_eth_dev *dev)
 
 out:
 	dev->rx_pkt_burst = idpf_rx_path_infos[ad->rx_func_type].pkt_burst;
-	PMD_DRV_LOG(NOTICE, "Using %s Rx (port %d).",
+	PMD_DRV_LOG(DEBUG, "Using %s Rx (port %d).",
 			idpf_rx_path_infos[ad->rx_func_type].info, dev->data->port_id);
 
 }
@@ -902,6 +902,6 @@ idpf_set_tx_function(struct rte_eth_dev *dev)
 out:
 	dev->tx_pkt_burst = idpf_tx_path_infos[ad->tx_func_type].pkt_burst;
 	dev->tx_pkt_prepare = idpf_dp_prep_pkts;
-	PMD_DRV_LOG(NOTICE, "Using %s Tx (port %d).",
+	PMD_DRV_LOG(DEBUG, "Using %s Tx (port %d).",
 			idpf_tx_path_infos[ad->tx_func_type].info, dev->data->port_id);
 }
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 4/4] net/cpfl: demote path selection logs from NOTICE to DEBUG
  2026-04-20  6:27 [PATCH 0/4] net/intel: demote path selection logs from NOTICE to DEBUG Shaiq Wani
                   ` (2 preceding siblings ...)
  2026-04-20  6:27 ` [PATCH 3/4] net/idpf: " Shaiq Wani
@ 2026-04-20  6:27 ` Shaiq Wani
  2026-04-20 16:54 ` [PATCH 0/4] net/intel: " Bruce Richardson
  4 siblings, 0 replies; 6+ messages in thread
From: Shaiq Wani @ 2026-04-20  6:27 UTC (permalink / raw)
  To: dev, bruce.richardson, aman.deep.singh; +Cc: stable

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

Fixes: a8225f2b308d ("net/cpfl: use common Rx path selection infrastructure")
Fixes: 6970745698b9 ("net/cpfl: use common Tx path selection infrastructure")
Cc: stable@dpdk.org
Signed-off-by: Shaiq Wani <shaiq.wani@intel.com>
---
 drivers/net/intel/cpfl/cpfl_rxtx.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/intel/cpfl/cpfl_rxtx.c b/drivers/net/intel/cpfl/cpfl_rxtx.c
index ad622b267d..bbf8225d54 100644
--- a/drivers/net/intel/cpfl/cpfl_rxtx.c
+++ b/drivers/net/intel/cpfl/cpfl_rxtx.c
@@ -1487,7 +1487,7 @@ cpfl_set_rx_function(struct rte_eth_dev *dev)
 
 out:
 	dev->rx_pkt_burst = idpf_rx_path_infos[ad->rx_func_type].pkt_burst;
-	PMD_DRV_LOG(NOTICE, "Using %s Rx (port %d).",
+	PMD_DRV_LOG(DEBUG, "Using %s Rx (port %d).",
 			idpf_rx_path_infos[ad->rx_func_type].info, dev->data->port_id);
 
 }
@@ -1556,6 +1556,6 @@ cpfl_set_tx_function(struct rte_eth_dev *dev)
 out:
 	dev->tx_pkt_burst = idpf_tx_path_infos[ad->tx_func_type].pkt_burst;
 	dev->tx_pkt_prepare = idpf_dp_prep_pkts;
-	PMD_DRV_LOG(NOTICE, "Using %s Tx (port %d).",
+	PMD_DRV_LOG(DEBUG, "Using %s Tx (port %d).",
 			idpf_tx_path_infos[ad->tx_func_type].info, dev->data->port_id);
 }
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 0/4] net/intel: demote path selection logs from NOTICE to DEBUG
  2026-04-20  6:27 [PATCH 0/4] net/intel: demote path selection logs from NOTICE to DEBUG Shaiq Wani
                   ` (3 preceding siblings ...)
  2026-04-20  6:27 ` [PATCH 4/4] net/cpfl: " Shaiq Wani
@ 2026-04-20 16:54 ` Bruce Richardson
  4 siblings, 0 replies; 6+ messages in thread
From: Bruce Richardson @ 2026-04-20 16:54 UTC (permalink / raw)
  To: Shaiq Wani; +Cc: dev, aman.deep.singh

On Mon, Apr 20, 2026 at 11:57:42AM +0530, Shaiq Wani wrote:
> Demote Rx/Tx path selection messages from NOTICE to DEBUG level
> to reduce noise across ice, iavf, idpf and cpfl drivers.
> 
> Shaiq Wani (4):
>   net/ice: demote path selection logs from NOTICE to DEBUG
>   net/iavf: demote path selection logs from NOTICE to DEBUG
>   net/idpf: demote path selection logs from NOTICE to DEBUG
>   net/cpfl: demote path selection logs from NOTICE to DEBUG
> 
>  drivers/net/intel/cpfl/cpfl_rxtx.c | 4 ++--
>  drivers/net/intel/iavf/iavf_rxtx.c | 4 ++--
>  drivers/net/intel/ice/ice_rxtx.c   | 4 ++--
>  drivers/net/intel/idpf/idpf_rxtx.c | 4 ++--
>  4 files changed, 8 insertions(+), 8 deletions(-)
> 
Reasonable change, to match those proposed by Stephen for i40e.
However, I don't view these as bugfixes and don't believe they should be
backported, so dropping the fixes lines and Cc of stable in each patch.

Series-Acked-by: Bruce Richardson <bruce.richardson@intel.com>

Applied to dpdk-next-net-intel.
Thanks,
/Bruce

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2026-04-20 16:54 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-20  6:27 [PATCH 0/4] net/intel: demote path selection logs from NOTICE to DEBUG Shaiq Wani
2026-04-20  6:27 ` [PATCH 1/4] net/ice: " Shaiq Wani
2026-04-20  6:27 ` [PATCH 2/4] net/iavf: " Shaiq Wani
2026-04-20  6:27 ` [PATCH 3/4] net/idpf: " Shaiq Wani
2026-04-20  6:27 ` [PATCH 4/4] net/cpfl: " Shaiq Wani
2026-04-20 16:54 ` [PATCH 0/4] net/intel: " Bruce Richardson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox