* [PATCH v1 0/3] Update TxPP feature
@ 2025-10-27 18:27 Soumyadeep Hore
2025-10-27 18:27 ` [PATCH v1 1/3] net/ice: restrict testpmd to scalar path for TxPP Soumyadeep Hore
` (3 more replies)
0 siblings, 4 replies; 19+ messages in thread
From: Soumyadeep Hore @ 2025-10-27 18:27 UTC (permalink / raw)
To: dev, bruce.richardson
Cc: rajesh3.kumar, aman.deep.singh, manoj.kumar.subbarao
Fix bugs in TxPP implementation and update the documentation
for the same.
Soumyadeep Hore (3):
net/ice: restrict testpmd to scalar path for TxPP
net/ice: fix PTP clock corruption with TxPP
doc: update TxPP documentation
doc/guides/nics/ice.rst | 4 ++++
drivers/net/intel/ice/ice_rxtx.c | 7 +++++--
2 files changed, 9 insertions(+), 2 deletions(-)
--
2.47.1
^ permalink raw reply [flat|nested] 19+ messages in thread* [PATCH v1 1/3] net/ice: restrict testpmd to scalar path for TxPP 2025-10-27 18:27 [PATCH v1 0/3] Update TxPP feature Soumyadeep Hore @ 2025-10-27 18:27 ` Soumyadeep Hore 2025-10-29 9:30 ` Loftus, Ciara 2025-10-27 18:28 ` [PATCH v1 2/3] net/ice: fix PTP clock corruption with TxPP Soumyadeep Hore ` (2 subsequent siblings) 3 siblings, 1 reply; 19+ messages in thread From: Soumyadeep Hore @ 2025-10-27 18:27 UTC (permalink / raw) To: dev, bruce.richardson Cc: rajesh3.kumar, aman.deep.singh, manoj.kumar.subbarao, stable ICE PMD supports TxPP feature only in scalar path. Hence restricted testpmd to scalar path when the feature is enabled. Fixes: 0b6ff09a1f19 ("net/intel: support Tx packet pacing for E830") Cc: stable@dpdk.org Signed-off-by: Soumyadeep Hore <soumyadeep.hore@intel.com> --- drivers/net/intel/ice/ice_rxtx.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/net/intel/ice/ice_rxtx.c b/drivers/net/intel/ice/ice_rxtx.c index fd0b3a7532..33d82cd46d 100644 --- a/drivers/net/intel/ice/ice_rxtx.c +++ b/drivers/net/intel/ice/ice_rxtx.c @@ -4103,8 +4103,11 @@ ice_set_tx_function(struct rte_eth_dev *dev) struct ci_tx_queue *txq; int i; int tx_check_ret = -1; + uint64_t offloads; - if (rte_eal_process_type() == RTE_PROC_PRIMARY) { + offloads = dev->data->dev_conf.txmode.offloads; + if ((offloads & RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP) == 0 && + rte_eal_process_type() == RTE_PROC_PRIMARY) { ad->tx_simd_width = RTE_VECT_SIMD_DISABLED; tx_check_ret = ice_tx_vec_dev_check(dev); ad->tx_simd_width = ice_get_max_simd_bitwidth(); -- 2.47.1 ^ permalink raw reply [flat|nested] 19+ messages in thread
* RE: [PATCH v1 1/3] net/ice: restrict testpmd to scalar path for TxPP 2025-10-27 18:27 ` [PATCH v1 1/3] net/ice: restrict testpmd to scalar path for TxPP Soumyadeep Hore @ 2025-10-29 9:30 ` Loftus, Ciara 0 siblings, 0 replies; 19+ messages in thread From: Loftus, Ciara @ 2025-10-29 9:30 UTC (permalink / raw) To: Hore, Soumyadeep, dev, Richardson, Bruce Cc: Kumar, Rajesh3, Singh, Aman Deep, Subbarao, Manoj Kumar, stable > > ICE PMD supports TxPP feature only in scalar path. Hence restricted > testpmd to scalar path when the feature is enabled. > > Fixes: 0b6ff09a1f19 ("net/intel: support Tx packet pacing for E830") > Cc: stable@dpdk.org > > Signed-off-by: Soumyadeep Hore <soumyadeep.hore@intel.com> > --- > drivers/net/intel/ice/ice_rxtx.c | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/drivers/net/intel/ice/ice_rxtx.c b/drivers/net/intel/ice/ice_rxtx.c > index fd0b3a7532..33d82cd46d 100644 > --- a/drivers/net/intel/ice/ice_rxtx.c > +++ b/drivers/net/intel/ice/ice_rxtx.c > @@ -4103,8 +4103,11 @@ ice_set_tx_function(struct rte_eth_dev *dev) > struct ci_tx_queue *txq; > int i; > int tx_check_ret = -1; > + uint64_t offloads; > > - if (rte_eal_process_type() == RTE_PROC_PRIMARY) { > + offloads = dev->data->dev_conf.txmode.offloads; > + if ((offloads & RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP) == 0 > && > + rte_eal_process_type() == RTE_PROC_PRIMARY) { > ad->tx_simd_width = RTE_VECT_SIMD_DISABLED; > tx_check_ret = ice_tx_vec_dev_check(dev); > ad->tx_simd_width = ice_get_max_simd_bitwidth(); > -- > 2.47.1 I think you can achieve the desired behaviour by adding RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP to ICE_TX_NO_VECTOR_FLAGS. Also you should remove the reference to testpmd in the commit message. The patch is just a change to the ice driver so should not reference any specific application. ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v1 2/3] net/ice: fix PTP clock corruption with TxPP 2025-10-27 18:27 [PATCH v1 0/3] Update TxPP feature Soumyadeep Hore 2025-10-27 18:27 ` [PATCH v1 1/3] net/ice: restrict testpmd to scalar path for TxPP Soumyadeep Hore @ 2025-10-27 18:28 ` Soumyadeep Hore 2025-10-29 17:11 ` Bruce Richardson 2025-10-27 18:28 ` [PATCH v1 3/3] doc: update TxPP documentation Soumyadeep Hore 2025-10-30 17:33 ` [PATCH v2 0/3] Update TxPP feature Soumyadeep Hore 3 siblings, 1 reply; 19+ messages in thread From: Soumyadeep Hore @ 2025-10-27 18:28 UTC (permalink / raw) To: dev, bruce.richardson Cc: rajesh3.kumar, aman.deep.singh, manoj.kumar.subbarao, stable On enabling TxPP PTP clock was getting corrupted as timesync was enabled on during setup. Currently timesync will be enabled during start of tx queue, hence enabling PHC clock to get updated on starting and stopping of ports. Fixes: 0b6ff09a1f19 ("net/intel: support Tx packet pacing for E830") Cc: stable@dpdk.org Signed-off-by: Soumyadeep Hore <soumyadeep.hore@intel.com> --- drivers/net/intel/ice/ice_rxtx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/intel/ice/ice_rxtx.c b/drivers/net/intel/ice/ice_rxtx.c index 33d82cd46d..7473d45260 100644 --- a/drivers/net/intel/ice/ice_rxtx.c +++ b/drivers/net/intel/ice/ice_rxtx.c @@ -908,6 +908,7 @@ ice_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id) rte_free(txq_elem); return err; } + dev->dev_ops->timesync_enable(dev); } else { txq->qtx_tail = hw->hw_addr + QTX_COMM_DBELL(txq->reg_idx); @@ -1671,7 +1672,6 @@ ice_tx_queue_setup(struct rte_eth_dev *dev, PMD_INIT_LOG(ERR, "Cannot register Tx mbuf field/flag for timestamp"); return -EINVAL; } - dev->dev_ops->timesync_enable(dev); txq->tsq->nb_ts_desc = ice_calc_ts_ring_count(ICE_VSI_TO_HW(vsi), txq->nb_tx_desc); ring_size = sizeof(struct ice_ts_desc) * txq->tsq->nb_ts_desc; -- 2.47.1 ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v1 2/3] net/ice: fix PTP clock corruption with TxPP 2025-10-27 18:28 ` [PATCH v1 2/3] net/ice: fix PTP clock corruption with TxPP Soumyadeep Hore @ 2025-10-29 17:11 ` Bruce Richardson 0 siblings, 0 replies; 19+ messages in thread From: Bruce Richardson @ 2025-10-29 17:11 UTC (permalink / raw) To: Soumyadeep Hore Cc: dev, rajesh3.kumar, aman.deep.singh, manoj.kumar.subbarao, stable On Mon, Oct 27, 2025 at 02:28:00PM -0400, Soumyadeep Hore wrote: > On enabling TxPP PTP clock was getting corrupted as timesync was enabled > on during setup. Currently timesync will be enabled during start of tx > queue, hence enabling PHC clock to get updated on starting and stopping > of ports. Can you clarify in a bit more detail, how did enabling the timesync during setup corrupt the clock, and how does enabling it only on start fix it? > > Fixes: 0b6ff09a1f19 ("net/intel: support Tx packet pacing for E830") > Cc: stable@dpdk.org > > Signed-off-by: Soumyadeep Hore <soumyadeep.hore@intel.com> > --- > drivers/net/intel/ice/ice_rxtx.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/net/intel/ice/ice_rxtx.c b/drivers/net/intel/ice/ice_rxtx.c > index 33d82cd46d..7473d45260 100644 > --- a/drivers/net/intel/ice/ice_rxtx.c > +++ b/drivers/net/intel/ice/ice_rxtx.c > @@ -908,6 +908,7 @@ ice_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id) > rte_free(txq_elem); > return err; > } > + dev->dev_ops->timesync_enable(dev); > } else { > txq->qtx_tail = hw->hw_addr + QTX_COMM_DBELL(txq->reg_idx); > > @@ -1671,7 +1672,6 @@ ice_tx_queue_setup(struct rte_eth_dev *dev, > PMD_INIT_LOG(ERR, "Cannot register Tx mbuf field/flag for timestamp"); > return -EINVAL; > } > - dev->dev_ops->timesync_enable(dev); > > txq->tsq->nb_ts_desc = ice_calc_ts_ring_count(ICE_VSI_TO_HW(vsi), txq->nb_tx_desc); > ring_size = sizeof(struct ice_ts_desc) * txq->tsq->nb_ts_desc; > -- > 2.47.1 > ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v1 3/3] doc: update TxPP documentation 2025-10-27 18:27 [PATCH v1 0/3] Update TxPP feature Soumyadeep Hore 2025-10-27 18:27 ` [PATCH v1 1/3] net/ice: restrict testpmd to scalar path for TxPP Soumyadeep Hore 2025-10-27 18:28 ` [PATCH v1 2/3] net/ice: fix PTP clock corruption with TxPP Soumyadeep Hore @ 2025-10-27 18:28 ` Soumyadeep Hore 2025-10-30 17:33 ` [PATCH v2 0/3] Update TxPP feature Soumyadeep Hore 3 siblings, 0 replies; 19+ messages in thread From: Soumyadeep Hore @ 2025-10-27 18:28 UTC (permalink / raw) To: dev, bruce.richardson Cc: rajesh3.kumar, aman.deep.singh, manoj.kumar.subbarao, stable TxPP feature works only when DPDK library is compiled with PTP feature enabled and application is run on PF. Fixes: 0b6ff09a1f19 ("net/intel: support Tx packet pacing for E830") Cc: stable@dpdk.org Signed-off-by: Soumyadeep Hore <soumyadeep.hore@intel.com> --- doc/guides/nics/ice.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/guides/nics/ice.rst b/doc/guides/nics/ice.rst index 7e9ba23102..a15304fb34 100644 --- a/doc/guides/nics/ice.rst +++ b/doc/guides/nics/ice.rst @@ -457,6 +457,10 @@ This feature is currently supported only in E830 adapters. The flag ``RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP`` is used to enable the feature. In order to deliver timestamps internally ``set txtimes`` is used, where inter burst and intra burst time interval in nsecs is provided. + +Note that dpdk library should be compiled using PTP support enabled and testpmd +application should run on PF. + For example: .. code-block:: console -- 2.47.1 ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 0/3] Update TxPP feature 2025-10-27 18:27 [PATCH v1 0/3] Update TxPP feature Soumyadeep Hore ` (2 preceding siblings ...) 2025-10-27 18:28 ` [PATCH v1 3/3] doc: update TxPP documentation Soumyadeep Hore @ 2025-10-30 17:33 ` Soumyadeep Hore 2025-10-30 17:33 ` [PATCH v2 1/3] net/ice: restrict ice PMD to scalar path for TxPP Soumyadeep Hore ` (2 more replies) 3 siblings, 3 replies; 19+ messages in thread From: Soumyadeep Hore @ 2025-10-30 17:33 UTC (permalink / raw) To: dev, bruce.richardson Cc: rajesh3.kumar, aman.deep.singh, manoj.kumar.subbarao, ciara.loftus Fix bugs in TxPP implementation and update the documentation for the same. --- v2: - Addressed Ciara's comments --- Soumyadeep Hore (3): net/ice: restrict ice PMD to scalar path for TxPP net/ice: fix PTP clock corruption with TxPP doc: update TxPP documentation doc/guides/nics/ice.rst | 4 ++++ drivers/net/intel/ice/ice_rxtx.c | 2 +- drivers/net/intel/ice/ice_rxtx_vec_common.h | 3 ++- 3 files changed, 7 insertions(+), 2 deletions(-) -- 2.47.1 ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 1/3] net/ice: restrict ice PMD to scalar path for TxPP 2025-10-30 17:33 ` [PATCH v2 0/3] Update TxPP feature Soumyadeep Hore @ 2025-10-30 17:33 ` Soumyadeep Hore 2025-11-03 10:25 ` Loftus, Ciara 2025-10-30 17:33 ` [PATCH v2 2/3] net/ice: fix PTP clock corruption with TxPP Soumyadeep Hore 2025-10-30 17:33 ` [PATCH v2 3/3] " Soumyadeep Hore 2 siblings, 1 reply; 19+ messages in thread From: Soumyadeep Hore @ 2025-10-30 17:33 UTC (permalink / raw) To: dev, bruce.richardson Cc: rajesh3.kumar, aman.deep.singh, manoj.kumar.subbarao, ciara.loftus, stable ICE PMD supports TxPP feature only in scalar path. Hence restricted testpmd to scalar path when the feature is enabled. Fixes: 0b6ff09a1f19 ("net/intel: support Tx packet pacing for E830") Cc: stable@dpdk.org Signed-off-by: Soumyadeep Hore <soumyadeep.hore@intel.com> --- drivers/net/intel/ice/ice_rxtx_vec_common.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/intel/ice/ice_rxtx_vec_common.h b/drivers/net/intel/ice/ice_rxtx_vec_common.h index a7cc4736cf..a24694c0b1 100644 --- a/drivers/net/intel/ice/ice_rxtx_vec_common.h +++ b/drivers/net/intel/ice/ice_rxtx_vec_common.h @@ -59,7 +59,8 @@ _ice_rx_queue_release_mbufs_vec(struct ci_rx_queue *rxq) RTE_ETH_TX_OFFLOAD_GRE_TNL_TSO | \ RTE_ETH_TX_OFFLOAD_IPIP_TNL_TSO | \ RTE_ETH_TX_OFFLOAD_GENEVE_TNL_TSO | \ - RTE_ETH_TX_OFFLOAD_OUTER_UDP_CKSUM) + RTE_ETH_TX_OFFLOAD_OUTER_UDP_CKSUM | \ + RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP) #define ICE_TX_VECTOR_OFFLOAD ( \ RTE_ETH_TX_OFFLOAD_VLAN_INSERT | \ -- 2.47.1 ^ permalink raw reply [flat|nested] 19+ messages in thread
* RE: [PATCH v2 1/3] net/ice: restrict ice PMD to scalar path for TxPP 2025-10-30 17:33 ` [PATCH v2 1/3] net/ice: restrict ice PMD to scalar path for TxPP Soumyadeep Hore @ 2025-11-03 10:25 ` Loftus, Ciara 0 siblings, 0 replies; 19+ messages in thread From: Loftus, Ciara @ 2025-11-03 10:25 UTC (permalink / raw) To: Hore, Soumyadeep, dev, Richardson, Bruce Cc: Kumar, Rajesh3, Singh, Aman Deep, Subbarao, Manoj Kumar, stable > Subject: [PATCH v2 1/3] net/ice: restrict ice PMD to scalar path for TxPP > > ICE PMD supports TxPP feature only in scalar path. Hence restricted > testpmd to scalar path when the feature is enabled. Remove the reference to testpmd in the commit message, as the change will affect all applications, not just specifically testpmd. The code change looks good to me. Acked-by: Ciara Loftus <ciara.loftus@intel.com> > > Fixes: 0b6ff09a1f19 ("net/intel: support Tx packet pacing for E830") > Cc: stable@dpdk.org > > Signed-off-by: Soumyadeep Hore <soumyadeep.hore@intel.com> > --- > drivers/net/intel/ice/ice_rxtx_vec_common.h | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/net/intel/ice/ice_rxtx_vec_common.h > b/drivers/net/intel/ice/ice_rxtx_vec_common.h > index a7cc4736cf..a24694c0b1 100644 > --- a/drivers/net/intel/ice/ice_rxtx_vec_common.h > +++ b/drivers/net/intel/ice/ice_rxtx_vec_common.h > @@ -59,7 +59,8 @@ _ice_rx_queue_release_mbufs_vec(struct ci_rx_queue > *rxq) > RTE_ETH_TX_OFFLOAD_GRE_TNL_TSO | \ > RTE_ETH_TX_OFFLOAD_IPIP_TNL_TSO | \ > RTE_ETH_TX_OFFLOAD_GENEVE_TNL_TSO | \ > - RTE_ETH_TX_OFFLOAD_OUTER_UDP_CKSUM) > + RTE_ETH_TX_OFFLOAD_OUTER_UDP_CKSUM | \ > + RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP) > > #define ICE_TX_VECTOR_OFFLOAD ( \ > RTE_ETH_TX_OFFLOAD_VLAN_INSERT | \ > -- > 2.47.1 ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 2/3] net/ice: fix PTP clock corruption with TxPP 2025-10-30 17:33 ` [PATCH v2 0/3] Update TxPP feature Soumyadeep Hore 2025-10-30 17:33 ` [PATCH v2 1/3] net/ice: restrict ice PMD to scalar path for TxPP Soumyadeep Hore @ 2025-10-30 17:33 ` Soumyadeep Hore 2025-11-04 11:32 ` Bruce Richardson 2025-11-06 6:46 ` [PATCH v3 0/4] Update TxPP feature Soumyadeep Hore 2025-10-30 17:33 ` [PATCH v2 3/3] " Soumyadeep Hore 2 siblings, 2 replies; 19+ messages in thread From: Soumyadeep Hore @ 2025-10-30 17:33 UTC (permalink / raw) To: dev, bruce.richardson Cc: rajesh3.kumar, aman.deep.singh, manoj.kumar.subbarao, ciara.loftus, stable On enabling TxPP PTP clock was getting corrupted as timesync was enabled on during setup. Currently timesync will be enabled during start of tx queue, hence enabling PHC clock to get updated on starting and stopping of ports. Earlier when timesync was enabled in tx queue setup, on stopping ports time will reset back to 0. Currently after every port restart PHC clock will be set to current system CLOCK_REALTIME. Fixes: 0b6ff09a1f19 ("net/intel: support Tx packet pacing for E830") Cc: stable@dpdk.org Signed-off-by: Soumyadeep Hore <soumyadeep.hore@intel.com> --- drivers/net/intel/ice/ice_rxtx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/intel/ice/ice_rxtx.c b/drivers/net/intel/ice/ice_rxtx.c index fd0b3a7532..752e52b8cd 100644 --- a/drivers/net/intel/ice/ice_rxtx.c +++ b/drivers/net/intel/ice/ice_rxtx.c @@ -908,6 +908,7 @@ ice_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id) rte_free(txq_elem); return err; } + dev->dev_ops->timesync_enable(dev); } else { txq->qtx_tail = hw->hw_addr + QTX_COMM_DBELL(txq->reg_idx); @@ -1671,7 +1672,6 @@ ice_tx_queue_setup(struct rte_eth_dev *dev, PMD_INIT_LOG(ERR, "Cannot register Tx mbuf field/flag for timestamp"); return -EINVAL; } - dev->dev_ops->timesync_enable(dev); txq->tsq->nb_ts_desc = ice_calc_ts_ring_count(ICE_VSI_TO_HW(vsi), txq->nb_tx_desc); ring_size = sizeof(struct ice_ts_desc) * txq->tsq->nb_ts_desc; -- 2.47.1 ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v2 2/3] net/ice: fix PTP clock corruption with TxPP 2025-10-30 17:33 ` [PATCH v2 2/3] net/ice: fix PTP clock corruption with TxPP Soumyadeep Hore @ 2025-11-04 11:32 ` Bruce Richardson 2025-11-06 6:46 ` [PATCH v3 0/4] Update TxPP feature Soumyadeep Hore 1 sibling, 0 replies; 19+ messages in thread From: Bruce Richardson @ 2025-11-04 11:32 UTC (permalink / raw) To: Soumyadeep Hore Cc: dev, rajesh3.kumar, aman.deep.singh, manoj.kumar.subbarao, ciara.loftus, stable On Thu, Oct 30, 2025 at 01:33:03PM -0400, Soumyadeep Hore wrote: > On enabling TxPP PTP clock was getting corrupted as timesync was enabled > on during setup. Currently timesync will be enabled during start of tx > queue, hence enabling PHC clock to get updated on starting and stopping > of ports. > > Earlier when timesync was enabled in tx queue setup, on stopping ports > time will reset back to 0. Currently after every port restart PHC clock > will be set to current system CLOCK_REALTIME. > > Fixes: 0b6ff09a1f19 ("net/intel: support Tx packet pacing for E830") > Cc: stable@dpdk.org > > Signed-off-by: Soumyadeep Hore <soumyadeep.hore@intel.com> > --- > drivers/net/intel/ice/ice_rxtx.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/net/intel/ice/ice_rxtx.c b/drivers/net/intel/ice/ice_rxtx.c > index fd0b3a7532..752e52b8cd 100644 > --- a/drivers/net/intel/ice/ice_rxtx.c > +++ b/drivers/net/intel/ice/ice_rxtx.c > @@ -908,6 +908,7 @@ ice_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id) > rte_free(txq_elem); > return err; > } > + dev->dev_ops->timesync_enable(dev); > } else { > txq->qtx_tail = hw->hw_addr + QTX_COMM_DBELL(txq->reg_idx); > What happens in the case of multiple queues, the timesync is configured multiple times? What happens when multiple queues are used and one stops, is the timesync for the whole port set back to zero? Basically, as I understand it, the clock is per-port rather than per-queue, so why are we enabling it on a per-queue basis? For example, in the commit message explanation above you say "on stopping PORTS time will be reset", but here you configure it on starting a QUEUE. Please clarify, thanks, /Bruce > @@ -1671,7 +1672,6 @@ ice_tx_queue_setup(struct rte_eth_dev *dev, > PMD_INIT_LOG(ERR, "Cannot register Tx mbuf field/flag for timestamp"); > return -EINVAL; > } > - dev->dev_ops->timesync_enable(dev); > > txq->tsq->nb_ts_desc = ice_calc_ts_ring_count(ICE_VSI_TO_HW(vsi), txq->nb_tx_desc); > ring_size = sizeof(struct ice_ts_desc) * txq->tsq->nb_ts_desc; > -- > 2.47.1 > ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v3 0/4] Update TxPP feature 2025-10-30 17:33 ` [PATCH v2 2/3] net/ice: fix PTP clock corruption with TxPP Soumyadeep Hore 2025-11-04 11:32 ` Bruce Richardson @ 2025-11-06 6:46 ` Soumyadeep Hore 2025-11-06 6:46 ` [PATCH v3 1/4] net/ice: restrict ice PMD to scalar path for TxPP Soumyadeep Hore ` (3 more replies) 1 sibling, 4 replies; 19+ messages in thread From: Soumyadeep Hore @ 2025-11-06 6:46 UTC (permalink / raw) To: dev, bruce.richardson Cc: rajesh3.kumar, aman.deep.singh, manoj.kumar.subbarao Fix bugs in TxPP implementation and update the documentation for the same. --- v3: - Addressed Bruce's comments - Enabled ieee1588 fwd with TxPP --- v2: - Addressed Ciara's comments --- Soumyadeep Hore (4): net/ice: restrict ice PMD to scalar path for TxPP net/ice: fix PTP clock corruption with TxPP net/ice: enable PTP packet forward with TxPP doc: update TxPP documentation doc/guides/nics/ice.rst | 4 ++++ drivers/net/intel/ice/ice_ethdev.c | 18 ++++++++++++++++++ drivers/net/intel/ice/ice_ethdev.h | 2 ++ drivers/net/intel/ice/ice_rxtx.c | 2 -- drivers/net/intel/ice/ice_rxtx_vec_common.h | 3 ++- 5 files changed, 26 insertions(+), 3 deletions(-) -- 2.47.1 ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v3 1/4] net/ice: restrict ice PMD to scalar path for TxPP 2025-11-06 6:46 ` [PATCH v3 0/4] Update TxPP feature Soumyadeep Hore @ 2025-11-06 6:46 ` Soumyadeep Hore 2025-11-06 6:46 ` [PATCH v3 2/4] net/ice: fix PTP clock corruption with TxPP Soumyadeep Hore ` (2 subsequent siblings) 3 siblings, 0 replies; 19+ messages in thread From: Soumyadeep Hore @ 2025-11-06 6:46 UTC (permalink / raw) To: dev, bruce.richardson Cc: rajesh3.kumar, aman.deep.singh, manoj.kumar.subbarao, stable ICE PMD supports TxPP feature only in scalar path. Hence restricted testpmd to scalar path when the feature is enabled. Fixes: 0b6ff09a1f19 ("net/intel: support Tx packet pacing for E830") Cc: stable@dpdk.org Signed-off-by: Soumyadeep Hore <soumyadeep.hore@intel.com> --- drivers/net/intel/ice/ice_rxtx_vec_common.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/intel/ice/ice_rxtx_vec_common.h b/drivers/net/intel/ice/ice_rxtx_vec_common.h index a7cc4736cf..a24694c0b1 100644 --- a/drivers/net/intel/ice/ice_rxtx_vec_common.h +++ b/drivers/net/intel/ice/ice_rxtx_vec_common.h @@ -59,7 +59,8 @@ _ice_rx_queue_release_mbufs_vec(struct ci_rx_queue *rxq) RTE_ETH_TX_OFFLOAD_GRE_TNL_TSO | \ RTE_ETH_TX_OFFLOAD_IPIP_TNL_TSO | \ RTE_ETH_TX_OFFLOAD_GENEVE_TNL_TSO | \ - RTE_ETH_TX_OFFLOAD_OUTER_UDP_CKSUM) + RTE_ETH_TX_OFFLOAD_OUTER_UDP_CKSUM | \ + RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP) #define ICE_TX_VECTOR_OFFLOAD ( \ RTE_ETH_TX_OFFLOAD_VLAN_INSERT | \ -- 2.47.1 ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v3 2/4] net/ice: fix PTP clock corruption with TxPP 2025-11-06 6:46 ` [PATCH v3 0/4] Update TxPP feature Soumyadeep Hore 2025-11-06 6:46 ` [PATCH v3 1/4] net/ice: restrict ice PMD to scalar path for TxPP Soumyadeep Hore @ 2025-11-06 6:46 ` Soumyadeep Hore 2025-11-06 6:46 ` [PATCH v3 3/4] net/ice: enable PTP packet forward " Soumyadeep Hore 2025-11-06 6:46 ` [PATCH v3 4/4] doc: update TxPP documentation Soumyadeep Hore 3 siblings, 0 replies; 19+ messages in thread From: Soumyadeep Hore @ 2025-11-06 6:46 UTC (permalink / raw) To: dev, bruce.richardson Cc: rajesh3.kumar, aman.deep.singh, manoj.kumar.subbarao, stable On enabling TxPP PTP clock was getting corrupted as timesync was enabled on during setup. Currently timesync will be enabled during start of tx queue, hence enabling PHC clock to get updated on starting and stopping of ports. Earlier when timesync was enabled in tx queue setup, on stopping ports time will reset back to 0. Currently after every port restart PHC clock will be set to current system CLOCK_REALTIME. Fixes: 0b6ff09a1f19 ("net/intel: support Tx packet pacing for E830") Cc: stable@dpdk.org Signed-off-by: Soumyadeep Hore <soumyadeep.hore@intel.com> --- drivers/net/intel/ice/ice_ethdev.c | 6 ++++++ drivers/net/intel/ice/ice_rxtx.c | 2 -- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/drivers/net/intel/ice/ice_ethdev.c b/drivers/net/intel/ice/ice_ethdev.c index 4669eba7c7..3eef4303e9 100644 --- a/drivers/net/intel/ice/ice_ethdev.c +++ b/drivers/net/intel/ice/ice_ethdev.c @@ -2893,6 +2893,9 @@ ice_dev_stop(struct rte_eth_dev *dev) /* disable all queue interrupts */ ice_vsi_disable_queues_intr(main_vsi); + if (dev->data->dev_conf.txmode.offloads & RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP) + ice_timesync_disable(dev); + if (pf->adapter->devargs.link_state_on_close == ICE_LINK_UP || (pf->adapter->devargs.link_state_on_close == ICE_LINK_INITIAL && pf->init_link_up)) @@ -4433,6 +4436,9 @@ ice_dev_start(struct rte_eth_dev *dev) } } + if (dev->data->dev_conf.txmode.offloads & RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP) + ice_timesync_enable(dev); + return 0; /* stop the started queues if failed to start all queues */ diff --git a/drivers/net/intel/ice/ice_rxtx.c b/drivers/net/intel/ice/ice_rxtx.c index fd0b3a7532..2673e885c3 100644 --- a/drivers/net/intel/ice/ice_rxtx.c +++ b/drivers/net/intel/ice/ice_rxtx.c @@ -1181,7 +1181,6 @@ ice_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id) if (txq->tsq != NULL && txq->tsq->ts_flag > 0) { struct ice_aqc_ena_dis_txtime_qgrp txtime_pg; - dev->dev_ops->timesync_disable(dev); status = ice_aq_ena_dis_txtimeq(hw, q_ids[0], 1, 0, &txtime_pg, NULL); if (status != ICE_SUCCESS) { PMD_DRV_LOG(DEBUG, "Failed to disable Tx time queue"); @@ -1671,7 +1670,6 @@ ice_tx_queue_setup(struct rte_eth_dev *dev, PMD_INIT_LOG(ERR, "Cannot register Tx mbuf field/flag for timestamp"); return -EINVAL; } - dev->dev_ops->timesync_enable(dev); txq->tsq->nb_ts_desc = ice_calc_ts_ring_count(ICE_VSI_TO_HW(vsi), txq->nb_tx_desc); ring_size = sizeof(struct ice_ts_desc) * txq->tsq->nb_ts_desc; -- 2.47.1 ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v3 3/4] net/ice: enable PTP packet forward with TxPP 2025-11-06 6:46 ` [PATCH v3 0/4] Update TxPP feature Soumyadeep Hore 2025-11-06 6:46 ` [PATCH v3 1/4] net/ice: restrict ice PMD to scalar path for TxPP Soumyadeep Hore 2025-11-06 6:46 ` [PATCH v3 2/4] net/ice: fix PTP clock corruption with TxPP Soumyadeep Hore @ 2025-11-06 6:46 ` Soumyadeep Hore 2025-11-05 18:17 ` Bruce Richardson 2025-11-06 6:46 ` [PATCH v3 4/4] doc: update TxPP documentation Soumyadeep Hore 3 siblings, 1 reply; 19+ messages in thread From: Soumyadeep Hore @ 2025-11-06 6:46 UTC (permalink / raw) To: dev, bruce.richardson Cc: rajesh3.kumar, aman.deep.singh, manoj.kumar.subbarao Previously TxPP cannot be run with ieee1588 fwd. This fwd if enabled after TxPP enablement, causes multiple calls to ice_timesync_enable() and ice_timesync_disable(). On introducing txpp_ena flag in adapter, the multiple calls is handled. Signed-off-by: Soumyadeep Hore <soumyadeep.hore@intel.com> --- drivers/net/intel/ice/ice_ethdev.c | 16 ++++++++++++++-- drivers/net/intel/ice/ice_ethdev.h | 2 ++ 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/drivers/net/intel/ice/ice_ethdev.c b/drivers/net/intel/ice/ice_ethdev.c index 3eef4303e9..2ac63bf97f 100644 --- a/drivers/net/intel/ice/ice_ethdev.c +++ b/drivers/net/intel/ice/ice_ethdev.c @@ -2873,6 +2873,8 @@ ice_dev_stop(struct rte_eth_dev *dev) { struct rte_eth_dev_data *data = dev->data; struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private); + struct ice_adapter *ad = + ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private); struct ice_vsi *main_vsi = pf->main_vsi; struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev); struct rte_intr_handle *intr_handle = pci_dev->intr_handle; @@ -2893,8 +2895,10 @@ ice_dev_stop(struct rte_eth_dev *dev) /* disable all queue interrupts */ ice_vsi_disable_queues_intr(main_vsi); - if (dev->data->dev_conf.txmode.offloads & RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP) + if (dev->data->dev_conf.txmode.offloads & RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP) { + ad->txpp_ena = 0; ice_timesync_disable(dev); + } if (pf->adapter->devargs.link_state_on_close == ICE_LINK_UP || (pf->adapter->devargs.link_state_on_close == ICE_LINK_INITIAL && @@ -4436,8 +4440,10 @@ ice_dev_start(struct rte_eth_dev *dev) } } - if (dev->data->dev_conf.txmode.offloads & RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP) + if (dev->data->dev_conf.txmode.offloads & RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP) { ice_timesync_enable(dev); + ad->txpp_ena = 1; + } return 0; @@ -7029,6 +7035,9 @@ ice_timesync_enable(struct rte_eth_dev *dev) ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private); int ret; + if (ad->txpp_ena) + return 0; + if (dev->data->dev_started && !(dev->data->dev_conf.rxmode.offloads & RTE_ETH_RX_OFFLOAD_TIMESTAMP)) { PMD_DRV_LOG(ERR, "Rx timestamp offload not configured"); @@ -7267,6 +7276,9 @@ ice_timesync_disable(struct rte_eth_dev *dev) uint64_t val; uint8_t lport; + if (ad->txpp_ena) + return 0; + lport = hw->port_info->lport; ice_clear_phy_tstamp(hw, lport, 0); diff --git a/drivers/net/intel/ice/ice_ethdev.h b/drivers/net/intel/ice/ice_ethdev.h index 6478d6dfbd..d9f857b81b 100644 --- a/drivers/net/intel/ice/ice_ethdev.h +++ b/drivers/net/intel/ice/ice_ethdev.h @@ -668,6 +668,8 @@ struct ice_adapter { uint8_t ptp_tx_index; bool ptp_ena; uint64_t time_hw; + /* For TxPP */ + bool txpp_ena; struct ice_fdir_prof_info fdir_prof_info[ICE_MAX_PTGS]; struct ice_rss_prof_info rss_prof_info[ICE_MAX_PTGS]; /* True if DCF state of the associated PF is on */ -- 2.47.1 ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v3 3/4] net/ice: enable PTP packet forward with TxPP 2025-11-06 6:46 ` [PATCH v3 3/4] net/ice: enable PTP packet forward " Soumyadeep Hore @ 2025-11-05 18:17 ` Bruce Richardson 0 siblings, 0 replies; 19+ messages in thread From: Bruce Richardson @ 2025-11-05 18:17 UTC (permalink / raw) To: Soumyadeep Hore; +Cc: dev, rajesh3.kumar, aman.deep.singh, manoj.kumar.subbarao On Thu, Nov 06, 2025 at 01:46:36AM -0500, Soumyadeep Hore wrote: > Previously TxPP cannot be run with ieee1588 fwd. This fwd > if enabled after TxPP enablement, causes multiple calls to > ice_timesync_enable() and ice_timesync_disable(). > > On introducing txpp_ena flag in adapter, the multiple calls > is handled. > > Signed-off-by: Soumyadeep Hore <soumyadeep.hore@intel.com> > --- > drivers/net/intel/ice/ice_ethdev.c | 16 ++++++++++++++-- > drivers/net/intel/ice/ice_ethdev.h | 2 ++ > 2 files changed, 16 insertions(+), 2 deletions(-) > > diff --git a/drivers/net/intel/ice/ice_ethdev.c b/drivers/net/intel/ice/ice_ethdev.c > index 3eef4303e9..2ac63bf97f 100644 > --- a/drivers/net/intel/ice/ice_ethdev.c > +++ b/drivers/net/intel/ice/ice_ethdev.c > @@ -2873,6 +2873,8 @@ ice_dev_stop(struct rte_eth_dev *dev) > { > struct rte_eth_dev_data *data = dev->data; > struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private); > + struct ice_adapter *ad = > + ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private); > struct ice_vsi *main_vsi = pf->main_vsi; > struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev); > struct rte_intr_handle *intr_handle = pci_dev->intr_handle; > @@ -2893,8 +2895,10 @@ ice_dev_stop(struct rte_eth_dev *dev) > /* disable all queue interrupts */ > ice_vsi_disable_queues_intr(main_vsi); > > - if (dev->data->dev_conf.txmode.offloads & RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP) > + if (dev->data->dev_conf.txmode.offloads & RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP) { > + ad->txpp_ena = 0; > ice_timesync_disable(dev); > + } > > if (pf->adapter->devargs.link_state_on_close == ICE_LINK_UP || > (pf->adapter->devargs.link_state_on_close == ICE_LINK_INITIAL && > @@ -4436,8 +4440,10 @@ ice_dev_start(struct rte_eth_dev *dev) > } > } > > - if (dev->data->dev_conf.txmode.offloads & RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP) > + if (dev->data->dev_conf.txmode.offloads & RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP) { > ice_timesync_enable(dev); > + ad->txpp_ena = 1; > + } > > return 0; > > @@ -7029,6 +7035,9 @@ ice_timesync_enable(struct rte_eth_dev *dev) > ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private); > int ret; > > + if (ad->txpp_ena) > + return 0; > + > if (dev->data->dev_started && !(dev->data->dev_conf.rxmode.offloads & > RTE_ETH_RX_OFFLOAD_TIMESTAMP)) { > PMD_DRV_LOG(ERR, "Rx timestamp offload not configured"); > @@ -7267,6 +7276,9 @@ ice_timesync_disable(struct rte_eth_dev *dev) > uint64_t val; > uint8_t lport; > > + if (ad->txpp_ena) > + return 0; > + > lport = hw->port_info->lport; > > ice_clear_phy_tstamp(hw, lport, 0); > diff --git a/drivers/net/intel/ice/ice_ethdev.h b/drivers/net/intel/ice/ice_ethdev.h > index 6478d6dfbd..d9f857b81b 100644 > --- a/drivers/net/intel/ice/ice_ethdev.h > +++ b/drivers/net/intel/ice/ice_ethdev.h > @@ -668,6 +668,8 @@ struct ice_adapter { > uint8_t ptp_tx_index; > bool ptp_ena; > uint64_t time_hw; > + /* For TxPP */ > + bool txpp_ena; this is leaving large gaps in the structure. Move variable to fill in existing holes, rather than creating more, please. /Bruce > struct ice_fdir_prof_info fdir_prof_info[ICE_MAX_PTGS]; > struct ice_rss_prof_info rss_prof_info[ICE_MAX_PTGS]; > /* True if DCF state of the associated PF is on */ > -- > 2.47.1 > ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v3 4/4] doc: update TxPP documentation 2025-11-06 6:46 ` [PATCH v3 0/4] Update TxPP feature Soumyadeep Hore ` (2 preceding siblings ...) 2025-11-06 6:46 ` [PATCH v3 3/4] net/ice: enable PTP packet forward " Soumyadeep Hore @ 2025-11-06 6:46 ` Soumyadeep Hore 3 siblings, 0 replies; 19+ messages in thread From: Soumyadeep Hore @ 2025-11-06 6:46 UTC (permalink / raw) To: dev, bruce.richardson Cc: rajesh3.kumar, aman.deep.singh, manoj.kumar.subbarao, stable TxPP feature works only when DPDK library is compiled with PTP feature enabled and application is run on PF. Fixes: 0b6ff09a1f19 ("net/intel: support Tx packet pacing for E830") Cc: stable@dpdk.org Signed-off-by: Soumyadeep Hore <soumyadeep.hore@intel.com> --- doc/guides/nics/ice.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/guides/nics/ice.rst b/doc/guides/nics/ice.rst index 7e9ba23102..a15304fb34 100644 --- a/doc/guides/nics/ice.rst +++ b/doc/guides/nics/ice.rst @@ -457,6 +457,10 @@ This feature is currently supported only in E830 adapters. The flag ``RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP`` is used to enable the feature. In order to deliver timestamps internally ``set txtimes`` is used, where inter burst and intra burst time interval in nsecs is provided. + +Note that dpdk library should be compiled using PTP support enabled and testpmd +application should run on PF. + For example: .. code-block:: console -- 2.47.1 ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 3/3] doc: update TxPP documentation 2025-10-30 17:33 ` [PATCH v2 0/3] Update TxPP feature Soumyadeep Hore 2025-10-30 17:33 ` [PATCH v2 1/3] net/ice: restrict ice PMD to scalar path for TxPP Soumyadeep Hore 2025-10-30 17:33 ` [PATCH v2 2/3] net/ice: fix PTP clock corruption with TxPP Soumyadeep Hore @ 2025-10-30 17:33 ` Soumyadeep Hore 2025-11-04 11:41 ` Bruce Richardson 2 siblings, 1 reply; 19+ messages in thread From: Soumyadeep Hore @ 2025-10-30 17:33 UTC (permalink / raw) To: dev, bruce.richardson Cc: rajesh3.kumar, aman.deep.singh, manoj.kumar.subbarao, ciara.loftus, stable TxPP feature works only when DPDK library is compiled with PTP feature enabled and application is run on PF. Fixes: 0b6ff09a1f19 ("net/intel: support Tx packet pacing for E830") Cc: stable@dpdk.org Signed-off-by: Soumyadeep Hore <soumyadeep.hore@intel.com> --- doc/guides/nics/ice.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/guides/nics/ice.rst b/doc/guides/nics/ice.rst index 7e9ba23102..a15304fb34 100644 --- a/doc/guides/nics/ice.rst +++ b/doc/guides/nics/ice.rst @@ -457,6 +457,10 @@ This feature is currently supported only in E830 adapters. The flag ``RTE_ETH_TX_OFFLOAD_SEND_ON_TIMESTAMP`` is used to enable the feature. In order to deliver timestamps internally ``set txtimes`` is used, where inter burst and intra burst time interval in nsecs is provided. + +Note that dpdk library should be compiled using PTP support enabled and testpmd +application should run on PF. + For example: .. code-block:: console -- 2.47.1 ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v2 3/3] doc: update TxPP documentation 2025-10-30 17:33 ` [PATCH v2 3/3] " Soumyadeep Hore @ 2025-11-04 11:41 ` Bruce Richardson 0 siblings, 0 replies; 19+ messages in thread From: Bruce Richardson @ 2025-11-04 11:41 UTC (permalink / raw) To: Soumyadeep Hore Cc: dev, rajesh3.kumar, aman.deep.singh, manoj.kumar.subbarao, ciara.loftus, stable On Thu, Oct 30, 2025 at 01:33:04PM -0400, Soumyadeep Hore wrote: > TxPP feature works only when DPDK library is compiled with > PTP feature enabled and application is run on PF. > > Fixes: 0b6ff09a1f19 ("net/intel: support Tx packet pacing for E830") > Cc: stable@dpdk.org > > Signed-off-by: Soumyadeep Hore <soumyadeep.hore@intel.com> > --- Acked-by: Bruce Richardson <bruce.richardson@intel.com> ^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2025-11-05 18:17 UTC | newest] Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2025-10-27 18:27 [PATCH v1 0/3] Update TxPP feature Soumyadeep Hore 2025-10-27 18:27 ` [PATCH v1 1/3] net/ice: restrict testpmd to scalar path for TxPP Soumyadeep Hore 2025-10-29 9:30 ` Loftus, Ciara 2025-10-27 18:28 ` [PATCH v1 2/3] net/ice: fix PTP clock corruption with TxPP Soumyadeep Hore 2025-10-29 17:11 ` Bruce Richardson 2025-10-27 18:28 ` [PATCH v1 3/3] doc: update TxPP documentation Soumyadeep Hore 2025-10-30 17:33 ` [PATCH v2 0/3] Update TxPP feature Soumyadeep Hore 2025-10-30 17:33 ` [PATCH v2 1/3] net/ice: restrict ice PMD to scalar path for TxPP Soumyadeep Hore 2025-11-03 10:25 ` Loftus, Ciara 2025-10-30 17:33 ` [PATCH v2 2/3] net/ice: fix PTP clock corruption with TxPP Soumyadeep Hore 2025-11-04 11:32 ` Bruce Richardson 2025-11-06 6:46 ` [PATCH v3 0/4] Update TxPP feature Soumyadeep Hore 2025-11-06 6:46 ` [PATCH v3 1/4] net/ice: restrict ice PMD to scalar path for TxPP Soumyadeep Hore 2025-11-06 6:46 ` [PATCH v3 2/4] net/ice: fix PTP clock corruption with TxPP Soumyadeep Hore 2025-11-06 6:46 ` [PATCH v3 3/4] net/ice: enable PTP packet forward " Soumyadeep Hore 2025-11-05 18:17 ` Bruce Richardson 2025-11-06 6:46 ` [PATCH v3 4/4] doc: update TxPP documentation Soumyadeep Hore 2025-10-30 17:33 ` [PATCH v2 3/3] " Soumyadeep Hore 2025-11-04 11:41 ` Bruce Richardson
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).