* [PATCH 10/13] docs: fix TSO and checksum offload feature status in ice doc [not found] <20251209112652.963981-1-ciara.loftus@intel.com> @ 2025-12-09 11:26 ` Ciara Loftus 2025-12-11 11:58 ` Bruce Richardson 2025-12-09 11:26 ` [PATCH 11/13] docs: fix TSO feature status in iavf driver documentation Ciara Loftus ` (3 subsequent siblings) 4 siblings, 1 reply; 16+ messages in thread From: Ciara Loftus @ 2025-12-09 11:26 UTC (permalink / raw) To: dev; +Cc: Ciara Loftus, stable TSO is only supported on the scalar path so change its status to partially supported. L3 and L4 checksum offload are enabled on scalar and vector paths so change their statuses from partial to supported. Fixes: f88de4694d94 ("net/ice: support Tx SSE vector") Cc: stable@dpdk.org Signed-off-by: Ciara Loftus <ciara.loftus@intel.com> --- doc/guides/nics/features/ice.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/guides/nics/features/ice.ini b/doc/guides/nics/features/ice.ini index e9796c1eab..893d09e9ec 100644 --- a/doc/guides/nics/features/ice.ini +++ b/doc/guides/nics/features/ice.ini @@ -21,7 +21,7 @@ Power mgmt address monitor = Y MTU update = Y Buffer split on Rx = P Scattered Rx = Y -TSO = Y +TSO = P Promiscuous mode = Y Allmulticast mode = Y DCB = Y @@ -34,8 +34,8 @@ Traffic manager = Y CRC offload = Y VLAN offload = Y QinQ offload = P -L3 checksum offload = P -L4 checksum offload = P +L3 checksum offload = Y +L4 checksum offload = Y Timestamp offload = P Inner L3 checksum = P Inner L4 checksum = P -- 2.43.0 ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH 10/13] docs: fix TSO and checksum offload feature status in ice doc 2025-12-09 11:26 ` [PATCH 10/13] docs: fix TSO and checksum offload feature status in ice doc Ciara Loftus @ 2025-12-11 11:58 ` Bruce Richardson 0 siblings, 0 replies; 16+ messages in thread From: Bruce Richardson @ 2025-12-11 11:58 UTC (permalink / raw) To: Ciara Loftus; +Cc: dev, stable On Tue, Dec 09, 2025 at 11:26:49AM +0000, Ciara Loftus wrote: > TSO is only supported on the scalar path so change its status to > partially supported. L3 and L4 checksum offload are enabled on scalar > and vector paths so change their statuses from partial to supported. > > Fixes: f88de4694d94 ("net/ice: support Tx SSE vector") > Cc: stable@dpdk.org > > Signed-off-by: Ciara Loftus <ciara.loftus@intel.com> > --- I still think we need a better solution for items only supported on scalar paths, but until then let's keep the current scheme. Acked-by: Bruce Richardson <bruce.richardson@intel.com> > doc/guides/nics/features/ice.ini | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/doc/guides/nics/features/ice.ini b/doc/guides/nics/features/ice.ini > index e9796c1eab..893d09e9ec 100644 > --- a/doc/guides/nics/features/ice.ini > +++ b/doc/guides/nics/features/ice.ini > @@ -21,7 +21,7 @@ Power mgmt address monitor = Y > MTU update = Y > Buffer split on Rx = P > Scattered Rx = Y > -TSO = Y > +TSO = P > Promiscuous mode = Y > Allmulticast mode = Y > DCB = Y > @@ -34,8 +34,8 @@ Traffic manager = Y > CRC offload = Y > VLAN offload = Y > QinQ offload = P > -L3 checksum offload = P > -L4 checksum offload = P > +L3 checksum offload = Y > +L4 checksum offload = Y > Timestamp offload = P > Inner L3 checksum = P > Inner L4 checksum = P > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH 11/13] docs: fix TSO feature status in iavf driver documentation [not found] <20251209112652.963981-1-ciara.loftus@intel.com> 2025-12-09 11:26 ` [PATCH 10/13] docs: fix TSO and checksum offload feature status in ice doc Ciara Loftus @ 2025-12-09 11:26 ` Ciara Loftus 2025-12-11 11:58 ` Bruce Richardson 2025-12-09 11:26 ` [PATCH 12/13] docs: fix inline crypto feature status in iavf driver doc Ciara Loftus ` (2 subsequent siblings) 4 siblings, 1 reply; 16+ messages in thread From: Ciara Loftus @ 2025-12-09 11:26 UTC (permalink / raw) To: dev; +Cc: Ciara Loftus, stable TSO is only supported on the scalar path so change the status to partially supported. Fixes: 319c421f3890 ("net/avf: enable SSE Rx Tx") Cc: stable@dpdk.org Signed-off-by: Ciara Loftus <ciara.loftus@intel.com> --- doc/guides/nics/features/iavf.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/nics/features/iavf.ini b/doc/guides/nics/features/iavf.ini index 7695e3ff7c..6c9e97594f 100644 --- a/doc/guides/nics/features/iavf.ini +++ b/doc/guides/nics/features/iavf.ini @@ -17,7 +17,7 @@ Burst mode info = Y Power mgmt address monitor = Y MTU update = Y Scattered Rx = Y -TSO = Y +TSO = P Promiscuous mode = Y Allmulticast mode = Y Unicast MAC filter = Y -- 2.43.0 ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH 11/13] docs: fix TSO feature status in iavf driver documentation 2025-12-09 11:26 ` [PATCH 11/13] docs: fix TSO feature status in iavf driver documentation Ciara Loftus @ 2025-12-11 11:58 ` Bruce Richardson 0 siblings, 0 replies; 16+ messages in thread From: Bruce Richardson @ 2025-12-11 11:58 UTC (permalink / raw) To: Ciara Loftus; +Cc: dev, stable On Tue, Dec 09, 2025 at 11:26:50AM +0000, Ciara Loftus wrote: > TSO is only supported on the scalar path so change the status to > partially supported. > > Fixes: 319c421f3890 ("net/avf: enable SSE Rx Tx") > Cc: stable@dpdk.org > > Signed-off-by: Ciara Loftus <ciara.loftus@intel.com> > --- Acked-by: Bruce Richardson <bruce.richardson@intel.com> > doc/guides/nics/features/iavf.ini | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/doc/guides/nics/features/iavf.ini b/doc/guides/nics/features/iavf.ini > index 7695e3ff7c..6c9e97594f 100644 > --- a/doc/guides/nics/features/iavf.ini > +++ b/doc/guides/nics/features/iavf.ini > @@ -17,7 +17,7 @@ Burst mode info = Y > Power mgmt address monitor = Y > MTU update = Y > Scattered Rx = Y > -TSO = Y > +TSO = P > Promiscuous mode = Y > Allmulticast mode = Y > Unicast MAC filter = Y > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH 12/13] docs: fix inline crypto feature status in iavf driver doc [not found] <20251209112652.963981-1-ciara.loftus@intel.com> 2025-12-09 11:26 ` [PATCH 10/13] docs: fix TSO and checksum offload feature status in ice doc Ciara Loftus 2025-12-09 11:26 ` [PATCH 11/13] docs: fix TSO feature status in iavf driver documentation Ciara Loftus @ 2025-12-09 11:26 ` Ciara Loftus 2025-12-11 11:59 ` Bruce Richardson 2025-12-09 11:26 ` [PATCH 13/13] docs: fix TSO feature status in i40e driver documentation Ciara Loftus [not found] ` <20251212103323.1481307-1-ciara.loftus@intel.com> 4 siblings, 1 reply; 16+ messages in thread From: Ciara Loftus @ 2025-12-09 11:26 UTC (permalink / raw) To: dev; +Cc: Ciara Loftus, stable inline crypto is only supported on the scalar path so change its status to partially supported. Fixes: 6bc987ecb860 ("net/iavf: support IPsec inline crypto") Cc: stable@dpdk.org Signed-off-by: Ciara Loftus <ciara.loftus@intel.com> --- doc/guides/nics/features/iavf.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/nics/features/iavf.ini b/doc/guides/nics/features/iavf.ini index 6c9e97594f..0ba6f7dfd7 100644 --- a/doc/guides/nics/features/iavf.ini +++ b/doc/guides/nics/features/iavf.ini @@ -27,7 +27,7 @@ RSS key update = Y RSS reta update = Y VLAN filter = Y Traffic manager = Y -Inline crypto = Y +Inline crypto = P CRC offload = Y VLAN offload = P QinQ offload = P -- 2.43.0 ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH 12/13] docs: fix inline crypto feature status in iavf driver doc 2025-12-09 11:26 ` [PATCH 12/13] docs: fix inline crypto feature status in iavf driver doc Ciara Loftus @ 2025-12-11 11:59 ` Bruce Richardson 0 siblings, 0 replies; 16+ messages in thread From: Bruce Richardson @ 2025-12-11 11:59 UTC (permalink / raw) To: Ciara Loftus; +Cc: dev, stable On Tue, Dec 09, 2025 at 11:26:51AM +0000, Ciara Loftus wrote: > inline crypto is only supported on the scalar path so change its status > to partially supported. > > Fixes: 6bc987ecb860 ("net/iavf: support IPsec inline crypto") > Cc: stable@dpdk.org > > Signed-off-by: Ciara Loftus <ciara.loftus@intel.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com> > --- > doc/guides/nics/features/iavf.ini | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/doc/guides/nics/features/iavf.ini b/doc/guides/nics/features/iavf.ini > index 6c9e97594f..0ba6f7dfd7 100644 > --- a/doc/guides/nics/features/iavf.ini > +++ b/doc/guides/nics/features/iavf.ini > @@ -27,7 +27,7 @@ RSS key update = Y > RSS reta update = Y > VLAN filter = Y > Traffic manager = Y > -Inline crypto = Y > +Inline crypto = P > CRC offload = Y > VLAN offload = P > QinQ offload = P > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH 13/13] docs: fix TSO feature status in i40e driver documentation [not found] <20251209112652.963981-1-ciara.loftus@intel.com> ` (2 preceding siblings ...) 2025-12-09 11:26 ` [PATCH 12/13] docs: fix inline crypto feature status in iavf driver doc Ciara Loftus @ 2025-12-09 11:26 ` Ciara Loftus 2025-12-11 11:59 ` Bruce Richardson [not found] ` <20251212103323.1481307-1-ciara.loftus@intel.com> 4 siblings, 1 reply; 16+ messages in thread From: Ciara Loftus @ 2025-12-09 11:26 UTC (permalink / raw) To: dev; +Cc: Ciara Loftus, stable TSO is only supported on the scalar path so change the status to partially supported. Fixes: 9ed94e5bb04e ("i40e: add vector Rx") Cc: stable@dpdk.org Signed-off-by: Ciara Loftus <ciara.loftus@intel.com> --- doc/guides/nics/features/i40e.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/nics/features/i40e.ini b/doc/guides/nics/features/i40e.ini index 4610444ace..fb00b69830 100644 --- a/doc/guides/nics/features/i40e.ini +++ b/doc/guides/nics/features/i40e.ini @@ -16,7 +16,7 @@ Runtime Tx queue setup = Y Burst mode info = Y Power mgmt address monitor = Y Scattered Rx = Y -TSO = Y +TSO = P Promiscuous mode = Y Allmulticast mode = Y Unicast MAC filter = Y -- 2.43.0 ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH 13/13] docs: fix TSO feature status in i40e driver documentation 2025-12-09 11:26 ` [PATCH 13/13] docs: fix TSO feature status in i40e driver documentation Ciara Loftus @ 2025-12-11 11:59 ` Bruce Richardson 0 siblings, 0 replies; 16+ messages in thread From: Bruce Richardson @ 2025-12-11 11:59 UTC (permalink / raw) To: Ciara Loftus; +Cc: dev, stable On Tue, Dec 09, 2025 at 11:26:52AM +0000, Ciara Loftus wrote: > TSO is only supported on the scalar path so change the status to > partially supported. > > Fixes: 9ed94e5bb04e ("i40e: add vector Rx") > Cc: stable@dpdk.org > > Signed-off-by: Ciara Loftus <ciara.loftus@intel.com> > --- Acked-by: Bruce Richardson <bruce.richardson@intel.com> > doc/guides/nics/features/i40e.ini | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/doc/guides/nics/features/i40e.ini b/doc/guides/nics/features/i40e.ini > index 4610444ace..fb00b69830 100644 > --- a/doc/guides/nics/features/i40e.ini > +++ b/doc/guides/nics/features/i40e.ini > @@ -16,7 +16,7 @@ Runtime Tx queue setup = Y > Burst mode info = Y > Power mgmt address monitor = Y > Scattered Rx = Y > -TSO = Y > +TSO = P > Promiscuous mode = Y > Allmulticast mode = Y > Unicast MAC filter = Y > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 16+ messages in thread
[parent not found: <20251212103323.1481307-1-ciara.loftus@intel.com>]
* [PATCH v2 07/10] docs: fix TSO and checksum offload feature status in ice doc [not found] ` <20251212103323.1481307-1-ciara.loftus@intel.com> @ 2025-12-12 10:33 ` Ciara Loftus 2025-12-12 10:33 ` [PATCH v2 08/10] docs: fix TSO feature status in iavf driver documentation Ciara Loftus ` (3 subsequent siblings) 4 siblings, 0 replies; 16+ messages in thread From: Ciara Loftus @ 2025-12-12 10:33 UTC (permalink / raw) To: dev; +Cc: Ciara Loftus, stable, Bruce Richardson TSO is only supported on the scalar path so change its status to partially supported. L3 and L4 checksum offload are enabled on scalar and vector paths so change their statuses from partial to supported. Fixes: f88de4694d94 ("net/ice: support Tx SSE vector") Cc: stable@dpdk.org Signed-off-by: Ciara Loftus <ciara.loftus@intel.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com> --- doc/guides/nics/features/ice.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/guides/nics/features/ice.ini b/doc/guides/nics/features/ice.ini index e9796c1eab..893d09e9ec 100644 --- a/doc/guides/nics/features/ice.ini +++ b/doc/guides/nics/features/ice.ini @@ -21,7 +21,7 @@ Power mgmt address monitor = Y MTU update = Y Buffer split on Rx = P Scattered Rx = Y -TSO = Y +TSO = P Promiscuous mode = Y Allmulticast mode = Y DCB = Y @@ -34,8 +34,8 @@ Traffic manager = Y CRC offload = Y VLAN offload = Y QinQ offload = P -L3 checksum offload = P -L4 checksum offload = P +L3 checksum offload = Y +L4 checksum offload = Y Timestamp offload = P Inner L3 checksum = P Inner L4 checksum = P -- 2.43.0 ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH v2 08/10] docs: fix TSO feature status in iavf driver documentation [not found] ` <20251212103323.1481307-1-ciara.loftus@intel.com> 2025-12-12 10:33 ` [PATCH v2 07/10] docs: fix TSO and checksum offload feature status in ice doc Ciara Loftus @ 2025-12-12 10:33 ` Ciara Loftus 2025-12-12 10:33 ` [PATCH v2 09/10] docs: fix inline crypto feature status in iavf driver doc Ciara Loftus ` (2 subsequent siblings) 4 siblings, 0 replies; 16+ messages in thread From: Ciara Loftus @ 2025-12-12 10:33 UTC (permalink / raw) To: dev; +Cc: Ciara Loftus, stable, Bruce Richardson TSO is only supported on the scalar path so change the status to partially supported. Fixes: 319c421f3890 ("net/avf: enable SSE Rx Tx") Cc: stable@dpdk.org Signed-off-by: Ciara Loftus <ciara.loftus@intel.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com> --- doc/guides/nics/features/iavf.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/nics/features/iavf.ini b/doc/guides/nics/features/iavf.ini index 7695e3ff7c..6c9e97594f 100644 --- a/doc/guides/nics/features/iavf.ini +++ b/doc/guides/nics/features/iavf.ini @@ -17,7 +17,7 @@ Burst mode info = Y Power mgmt address monitor = Y MTU update = Y Scattered Rx = Y -TSO = Y +TSO = P Promiscuous mode = Y Allmulticast mode = Y Unicast MAC filter = Y -- 2.43.0 ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH v2 09/10] docs: fix inline crypto feature status in iavf driver doc [not found] ` <20251212103323.1481307-1-ciara.loftus@intel.com> 2025-12-12 10:33 ` [PATCH v2 07/10] docs: fix TSO and checksum offload feature status in ice doc Ciara Loftus 2025-12-12 10:33 ` [PATCH v2 08/10] docs: fix TSO feature status in iavf driver documentation Ciara Loftus @ 2025-12-12 10:33 ` Ciara Loftus 2025-12-12 10:33 ` [PATCH v2 10/10] docs: fix TSO feature status in i40e driver documentation Ciara Loftus [not found] ` <20251212110628.1634703-1-ciara.loftus@intel.com> 4 siblings, 0 replies; 16+ messages in thread From: Ciara Loftus @ 2025-12-12 10:33 UTC (permalink / raw) To: dev; +Cc: Ciara Loftus, stable, Bruce Richardson inline crypto is only supported on the scalar path so change its status to partially supported. Fixes: 6bc987ecb860 ("net/iavf: support IPsec inline crypto") Cc: stable@dpdk.org Signed-off-by: Ciara Loftus <ciara.loftus@intel.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com> --- doc/guides/nics/features/iavf.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/nics/features/iavf.ini b/doc/guides/nics/features/iavf.ini index 6c9e97594f..0ba6f7dfd7 100644 --- a/doc/guides/nics/features/iavf.ini +++ b/doc/guides/nics/features/iavf.ini @@ -27,7 +27,7 @@ RSS key update = Y RSS reta update = Y VLAN filter = Y Traffic manager = Y -Inline crypto = Y +Inline crypto = P CRC offload = Y VLAN offload = P QinQ offload = P -- 2.43.0 ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH v2 10/10] docs: fix TSO feature status in i40e driver documentation [not found] ` <20251212103323.1481307-1-ciara.loftus@intel.com> ` (2 preceding siblings ...) 2025-12-12 10:33 ` [PATCH v2 09/10] docs: fix inline crypto feature status in iavf driver doc Ciara Loftus @ 2025-12-12 10:33 ` Ciara Loftus [not found] ` <20251212110628.1634703-1-ciara.loftus@intel.com> 4 siblings, 0 replies; 16+ messages in thread From: Ciara Loftus @ 2025-12-12 10:33 UTC (permalink / raw) To: dev; +Cc: Ciara Loftus, stable, Bruce Richardson TSO is only supported on the scalar path so change the status to partially supported. Fixes: 9ed94e5bb04e ("i40e: add vector Rx") Cc: stable@dpdk.org Signed-off-by: Ciara Loftus <ciara.loftus@intel.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com> --- doc/guides/nics/features/i40e.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/nics/features/i40e.ini b/doc/guides/nics/features/i40e.ini index 4610444ace..fb00b69830 100644 --- a/doc/guides/nics/features/i40e.ini +++ b/doc/guides/nics/features/i40e.ini @@ -16,7 +16,7 @@ Runtime Tx queue setup = Y Burst mode info = Y Power mgmt address monitor = Y Scattered Rx = Y -TSO = Y +TSO = P Promiscuous mode = Y Allmulticast mode = Y Unicast MAC filter = Y -- 2.43.0 ^ permalink raw reply [flat|nested] 16+ messages in thread
[parent not found: <20251212110628.1634703-1-ciara.loftus@intel.com>]
* [PATCH v3 07/10] docs: fix TSO and checksum offload feature status in ice doc [not found] ` <20251212110628.1634703-1-ciara.loftus@intel.com> @ 2025-12-12 11:06 ` Ciara Loftus 2025-12-12 11:06 ` [PATCH v3 08/10] docs: fix TSO feature status in iavf driver documentation Ciara Loftus ` (2 subsequent siblings) 3 siblings, 0 replies; 16+ messages in thread From: Ciara Loftus @ 2025-12-12 11:06 UTC (permalink / raw) To: dev; +Cc: Ciara Loftus, stable, Bruce Richardson TSO is only supported on the scalar path so change its status to partially supported. L3 and L4 checksum offload are enabled on scalar and vector paths so change their statuses from partial to supported. Fixes: f88de4694d94 ("net/ice: support Tx SSE vector") Cc: stable@dpdk.org Signed-off-by: Ciara Loftus <ciara.loftus@intel.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com> --- doc/guides/nics/features/ice.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/guides/nics/features/ice.ini b/doc/guides/nics/features/ice.ini index e9796c1eab..893d09e9ec 100644 --- a/doc/guides/nics/features/ice.ini +++ b/doc/guides/nics/features/ice.ini @@ -21,7 +21,7 @@ Power mgmt address monitor = Y MTU update = Y Buffer split on Rx = P Scattered Rx = Y -TSO = Y +TSO = P Promiscuous mode = Y Allmulticast mode = Y DCB = Y @@ -34,8 +34,8 @@ Traffic manager = Y CRC offload = Y VLAN offload = Y QinQ offload = P -L3 checksum offload = P -L4 checksum offload = P +L3 checksum offload = Y +L4 checksum offload = Y Timestamp offload = P Inner L3 checksum = P Inner L4 checksum = P -- 2.43.0 ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH v3 08/10] docs: fix TSO feature status in iavf driver documentation [not found] ` <20251212110628.1634703-1-ciara.loftus@intel.com> 2025-12-12 11:06 ` [PATCH v3 07/10] docs: fix TSO and checksum offload feature status in ice doc Ciara Loftus @ 2025-12-12 11:06 ` Ciara Loftus 2025-12-12 11:06 ` [PATCH v3 09/10] docs: fix inline crypto feature status in iavf driver doc Ciara Loftus 2025-12-12 11:06 ` [PATCH v3 10/10] docs: fix TSO feature status in i40e driver documentation Ciara Loftus 3 siblings, 0 replies; 16+ messages in thread From: Ciara Loftus @ 2025-12-12 11:06 UTC (permalink / raw) To: dev; +Cc: Ciara Loftus, stable, Bruce Richardson TSO is only supported on the scalar path so change the status to partially supported. Fixes: 319c421f3890 ("net/avf: enable SSE Rx Tx") Cc: stable@dpdk.org Signed-off-by: Ciara Loftus <ciara.loftus@intel.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com> --- doc/guides/nics/features/iavf.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/nics/features/iavf.ini b/doc/guides/nics/features/iavf.ini index 7695e3ff7c..6c9e97594f 100644 --- a/doc/guides/nics/features/iavf.ini +++ b/doc/guides/nics/features/iavf.ini @@ -17,7 +17,7 @@ Burst mode info = Y Power mgmt address monitor = Y MTU update = Y Scattered Rx = Y -TSO = Y +TSO = P Promiscuous mode = Y Allmulticast mode = Y Unicast MAC filter = Y -- 2.43.0 ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH v3 09/10] docs: fix inline crypto feature status in iavf driver doc [not found] ` <20251212110628.1634703-1-ciara.loftus@intel.com> 2025-12-12 11:06 ` [PATCH v3 07/10] docs: fix TSO and checksum offload feature status in ice doc Ciara Loftus 2025-12-12 11:06 ` [PATCH v3 08/10] docs: fix TSO feature status in iavf driver documentation Ciara Loftus @ 2025-12-12 11:06 ` Ciara Loftus 2025-12-12 11:06 ` [PATCH v3 10/10] docs: fix TSO feature status in i40e driver documentation Ciara Loftus 3 siblings, 0 replies; 16+ messages in thread From: Ciara Loftus @ 2025-12-12 11:06 UTC (permalink / raw) To: dev; +Cc: Ciara Loftus, stable, Bruce Richardson inline crypto is only supported on the scalar path so change its status to partially supported. Fixes: 6bc987ecb860 ("net/iavf: support IPsec inline crypto") Cc: stable@dpdk.org Signed-off-by: Ciara Loftus <ciara.loftus@intel.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com> --- doc/guides/nics/features/iavf.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/nics/features/iavf.ini b/doc/guides/nics/features/iavf.ini index 6c9e97594f..0ba6f7dfd7 100644 --- a/doc/guides/nics/features/iavf.ini +++ b/doc/guides/nics/features/iavf.ini @@ -27,7 +27,7 @@ RSS key update = Y RSS reta update = Y VLAN filter = Y Traffic manager = Y -Inline crypto = Y +Inline crypto = P CRC offload = Y VLAN offload = P QinQ offload = P -- 2.43.0 ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH v3 10/10] docs: fix TSO feature status in i40e driver documentation [not found] ` <20251212110628.1634703-1-ciara.loftus@intel.com> ` (2 preceding siblings ...) 2025-12-12 11:06 ` [PATCH v3 09/10] docs: fix inline crypto feature status in iavf driver doc Ciara Loftus @ 2025-12-12 11:06 ` Ciara Loftus 3 siblings, 0 replies; 16+ messages in thread From: Ciara Loftus @ 2025-12-12 11:06 UTC (permalink / raw) To: dev; +Cc: Ciara Loftus, stable, Bruce Richardson TSO is only supported on the scalar path so change the status to partially supported. Fixes: 9ed94e5bb04e ("i40e: add vector Rx") Cc: stable@dpdk.org Signed-off-by: Ciara Loftus <ciara.loftus@intel.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com> --- doc/guides/nics/features/i40e.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/nics/features/i40e.ini b/doc/guides/nics/features/i40e.ini index 4610444ace..fb00b69830 100644 --- a/doc/guides/nics/features/i40e.ini +++ b/doc/guides/nics/features/i40e.ini @@ -16,7 +16,7 @@ Runtime Tx queue setup = Y Burst mode info = Y Power mgmt address monitor = Y Scattered Rx = Y -TSO = Y +TSO = P Promiscuous mode = Y Allmulticast mode = Y Unicast MAC filter = Y -- 2.43.0 ^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2025-12-12 11:06 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <20251209112652.963981-1-ciara.loftus@intel.com>
2025-12-09 11:26 ` [PATCH 10/13] docs: fix TSO and checksum offload feature status in ice doc Ciara Loftus
2025-12-11 11:58 ` Bruce Richardson
2025-12-09 11:26 ` [PATCH 11/13] docs: fix TSO feature status in iavf driver documentation Ciara Loftus
2025-12-11 11:58 ` Bruce Richardson
2025-12-09 11:26 ` [PATCH 12/13] docs: fix inline crypto feature status in iavf driver doc Ciara Loftus
2025-12-11 11:59 ` Bruce Richardson
2025-12-09 11:26 ` [PATCH 13/13] docs: fix TSO feature status in i40e driver documentation Ciara Loftus
2025-12-11 11:59 ` Bruce Richardson
[not found] ` <20251212103323.1481307-1-ciara.loftus@intel.com>
2025-12-12 10:33 ` [PATCH v2 07/10] docs: fix TSO and checksum offload feature status in ice doc Ciara Loftus
2025-12-12 10:33 ` [PATCH v2 08/10] docs: fix TSO feature status in iavf driver documentation Ciara Loftus
2025-12-12 10:33 ` [PATCH v2 09/10] docs: fix inline crypto feature status in iavf driver doc Ciara Loftus
2025-12-12 10:33 ` [PATCH v2 10/10] docs: fix TSO feature status in i40e driver documentation Ciara Loftus
[not found] ` <20251212110628.1634703-1-ciara.loftus@intel.com>
2025-12-12 11:06 ` [PATCH v3 07/10] docs: fix TSO and checksum offload feature status in ice doc Ciara Loftus
2025-12-12 11:06 ` [PATCH v3 08/10] docs: fix TSO feature status in iavf driver documentation Ciara Loftus
2025-12-12 11:06 ` [PATCH v3 09/10] docs: fix inline crypto feature status in iavf driver doc Ciara Loftus
2025-12-12 11:06 ` [PATCH v3 10/10] docs: fix TSO feature status in i40e driver documentation Ciara Loftus
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).