patches for DPDK stable branches
 help / color / mirror / Atom feed
* [PATCH 1/8] net/ice: document support for free Tx mbuf on demand
       [not found] <20250916142113.3485738-1-ciara.loftus@intel.com>
@ 2025-09-16 14:21 ` Ciara Loftus
  2025-09-16 14:21 ` [PATCH 2/8] net/ice: fix documentation of support for TSO Ciara Loftus
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: Ciara Loftus @ 2025-09-16 14:21 UTC (permalink / raw)
  To: dev; +Cc: Ciara Loftus, stable

The free tx mbuf on demand feature has been supported since commit
ab7cfe1fe3d7 ("net/ice: cleanup Tx buffers"). Update the list of
supported features to reflect this.

Fixes: ab7cfe1fe3d7 ("net/ice: cleanup Tx buffers")
Cc: stable@dpdk.org

Signed-off-by: Ciara Loftus <ciara.loftus@intel.com>
---
 doc/guides/nics/features/ice.ini | 1 +
 1 file changed, 1 insertion(+)

diff --git a/doc/guides/nics/features/ice.ini b/doc/guides/nics/features/ice.ini
index 9c8569740a..2703493514 100644
--- a/doc/guides/nics/features/ice.ini
+++ b/doc/guides/nics/features/ice.ini
@@ -14,6 +14,7 @@ Link status event    = Y
 FEC                  = Y
 Rx interrupt         = Y
 Fast mbuf free       = P
+Free Tx mbuf on demand = Y
 Queue start/stop     = Y
 Burst mode info      = Y
 Power mgmt address monitor = Y
-- 
2.34.1


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

* [PATCH 2/8] net/ice: fix documentation of support for TSO
       [not found] <20250916142113.3485738-1-ciara.loftus@intel.com>
  2025-09-16 14:21 ` [PATCH 1/8] net/ice: document support for free Tx mbuf on demand Ciara Loftus
@ 2025-09-16 14:21 ` Ciara Loftus
  2025-09-16 14:21 ` [PATCH 3/8] net/iavf: fix documentation for speed capabilities Ciara Loftus
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: Ciara Loftus @ 2025-09-16 14:21 UTC (permalink / raw)
  To: dev; +Cc: Ciara Loftus, stable

TSO is only supported by the scalar path in the ice driver. Update the
documentation to reflect this partial support.

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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/guides/nics/features/ice.ini b/doc/guides/nics/features/ice.ini
index 2703493514..f6439fde35 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
 Unicast MAC filter   = Y
-- 
2.34.1


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

* [PATCH 3/8] net/iavf: fix documentation for speed capabilities
       [not found] <20250916142113.3485738-1-ciara.loftus@intel.com>
  2025-09-16 14:21 ` [PATCH 1/8] net/ice: document support for free Tx mbuf on demand Ciara Loftus
  2025-09-16 14:21 ` [PATCH 2/8] net/ice: fix documentation of support for TSO Ciara Loftus
@ 2025-09-16 14:21 ` Ciara Loftus
  2025-09-16 14:21 ` [PATCH 4/8] net/iavf: document support for fast mbuf free Ciara Loftus
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: Ciara Loftus @ 2025-09-16 14:21 UTC (permalink / raw)
  To: dev; +Cc: Ciara Loftus, stable

The iavf PMD does not report the speed capabilities that the device is
capable of in the speed_capa field of the rte_eth_dev_info struct. The
documentation incorrectly stated this feature as supported. Fix this.

Fixes: 48de41ca11f0 ("net/avf: enable link status update")
Cc: stable@dpdk.org

Signed-off-by: Ciara Loftus <ciara.loftus@intel.com>
---
 doc/guides/nics/features/iavf.ini | 1 -
 1 file changed, 1 deletion(-)

diff --git a/doc/guides/nics/features/iavf.ini b/doc/guides/nics/features/iavf.ini
index 61c4742197..4ce4dc5a88 100644
--- a/doc/guides/nics/features/iavf.ini
+++ b/doc/guides/nics/features/iavf.ini
@@ -7,7 +7,6 @@
 ; is selected.
 ;
 [Features]
-Speed capabilities   = Y
 Link status          = Y
 Rx interrupt         = Y
 Queue start/stop     = Y
-- 
2.34.1


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

* [PATCH 4/8] net/iavf: document support for fast mbuf free
       [not found] <20250916142113.3485738-1-ciara.loftus@intel.com>
                   ` (2 preceding siblings ...)
  2025-09-16 14:21 ` [PATCH 3/8] net/iavf: fix documentation for speed capabilities Ciara Loftus
@ 2025-09-16 14:21 ` Ciara Loftus
  2025-09-16 14:21 ` [PATCH 5/8] net/iavf: document support for free Tx mbuf on demand Ciara Loftus
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: Ciara Loftus @ 2025-09-16 14:21 UTC (permalink / raw)
  To: dev; +Cc: Ciara Loftus, stable

The fast mbuf free feature has been partially supported since commit
9ab9514c150e ("net/iavf: enable AVX512 for Tx"). Update the list of
supported features to reflect this.

Fixes: 9ab9514c150e ("net/iavf: enable AVX512 for Tx")
Cc: stable@dpdk.org

Signed-off-by: Ciara Loftus <ciara.loftus@intel.com>
---
 doc/guides/nics/features/iavf.ini | 1 +
 1 file changed, 1 insertion(+)

diff --git a/doc/guides/nics/features/iavf.ini b/doc/guides/nics/features/iavf.ini
index 4ce4dc5a88..aac27bd706 100644
--- a/doc/guides/nics/features/iavf.ini
+++ b/doc/guides/nics/features/iavf.ini
@@ -9,6 +9,7 @@
 [Features]
 Link status          = Y
 Rx interrupt         = Y
+Fast mbuf free       = P
 Queue start/stop     = Y
 Runtime Rx queue setup = Y
 Runtime Tx queue setup = Y
-- 
2.34.1


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

* [PATCH 5/8] net/iavf: document support for free Tx mbuf on demand
       [not found] <20250916142113.3485738-1-ciara.loftus@intel.com>
                   ` (3 preceding siblings ...)
  2025-09-16 14:21 ` [PATCH 4/8] net/iavf: document support for fast mbuf free Ciara Loftus
@ 2025-09-16 14:21 ` Ciara Loftus
  2025-09-16 14:21 ` [PATCH 6/8] net/iavf: document support for burst mode info Ciara Loftus
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: Ciara Loftus @ 2025-09-16 14:21 UTC (permalink / raw)
  To: dev; +Cc: Ciara Loftus, stable

The free tx mbuf on demand feature has been supported since commit
86e44244f95c ("net/iavf: cleanup Tx buffers"). Update the list of
supported features to reflect this.

Fixes: 86e44244f95c ("net/iavf: cleanup Tx buffers")
Cc: stable@dpdk.org

Signed-off-by: Ciara Loftus <ciara.loftus@intel.com>
---
 doc/guides/nics/features/iavf.ini | 1 +
 1 file changed, 1 insertion(+)

diff --git a/doc/guides/nics/features/iavf.ini b/doc/guides/nics/features/iavf.ini
index aac27bd706..4e4c5cc817 100644
--- a/doc/guides/nics/features/iavf.ini
+++ b/doc/guides/nics/features/iavf.ini
@@ -10,6 +10,7 @@
 Link status          = Y
 Rx interrupt         = Y
 Fast mbuf free       = P
+Free Tx mbuf on demand = Y
 Queue start/stop     = Y
 Runtime Rx queue setup = Y
 Runtime Tx queue setup = Y
-- 
2.34.1


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

* [PATCH 6/8] net/iavf: document support for burst mode info
       [not found] <20250916142113.3485738-1-ciara.loftus@intel.com>
                   ` (4 preceding siblings ...)
  2025-09-16 14:21 ` [PATCH 5/8] net/iavf: document support for free Tx mbuf on demand Ciara Loftus
@ 2025-09-16 14:21 ` Ciara Loftus
  2025-09-16 14:21 ` [PATCH 7/8] net/iavf: fix documentation of support for TSO Ciara Loftus
  2025-09-16 14:21 ` [PATCH 8/8] net/iavf: document support for extended statistics Ciara Loftus
  7 siblings, 0 replies; 8+ messages in thread
From: Ciara Loftus @ 2025-09-16 14:21 UTC (permalink / raw)
  To: dev; +Cc: Ciara Loftus, stable

The burst mode info feature has been supported since commit 0d5a856f5be9
("net/iavf: support Rx/Tx burst mode info"). Update the list of
supported features to reflect this.

Fixes: 0d5a856f5be9 ("net/iavf: support Rx/Tx burst mode info")
Cc: stable@dpdk.org

Signed-off-by: Ciara Loftus <ciara.loftus@intel.com>
---
 doc/guides/nics/features/iavf.ini | 1 +
 1 file changed, 1 insertion(+)

diff --git a/doc/guides/nics/features/iavf.ini b/doc/guides/nics/features/iavf.ini
index 4e4c5cc817..7420432840 100644
--- a/doc/guides/nics/features/iavf.ini
+++ b/doc/guides/nics/features/iavf.ini
@@ -14,6 +14,7 @@ Free Tx mbuf on demand = Y
 Queue start/stop     = Y
 Runtime Rx queue setup = Y
 Runtime Tx queue setup = Y
+Burst mode info      = Y
 Power mgmt address monitor = Y
 MTU update           = Y
 Scattered Rx         = Y
-- 
2.34.1


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

* [PATCH 7/8] net/iavf: fix documentation of support for TSO
       [not found] <20250916142113.3485738-1-ciara.loftus@intel.com>
                   ` (5 preceding siblings ...)
  2025-09-16 14:21 ` [PATCH 6/8] net/iavf: document support for burst mode info Ciara Loftus
@ 2025-09-16 14:21 ` Ciara Loftus
  2025-09-16 14:21 ` [PATCH 8/8] net/iavf: document support for extended statistics Ciara Loftus
  7 siblings, 0 replies; 8+ messages in thread
From: Ciara Loftus @ 2025-09-16 14:21 UTC (permalink / raw)
  To: dev; +Cc: Ciara Loftus, stable

TSO is only supported by the scalar path in the iavf driver. Update the
documentation to reflect this partial support.

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 7420432840..63c89ee28f 100644
--- a/doc/guides/nics/features/iavf.ini
+++ b/doc/guides/nics/features/iavf.ini
@@ -18,7 +18,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.34.1


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

* [PATCH 8/8] net/iavf: document support for extended statistics
       [not found] <20250916142113.3485738-1-ciara.loftus@intel.com>
                   ` (6 preceding siblings ...)
  2025-09-16 14:21 ` [PATCH 7/8] net/iavf: fix documentation of support for TSO Ciara Loftus
@ 2025-09-16 14:21 ` Ciara Loftus
  7 siblings, 0 replies; 8+ messages in thread
From: Ciara Loftus @ 2025-09-16 14:21 UTC (permalink / raw)
  To: dev; +Cc: Ciara Loftus, stable

The extended statistics feature has been implemented since commit
d38a06bf4367 ("net/iavf: add extended stats"). Update the list of
supported features to reflect this.

Fixes: d38a06bf4367 ("net/iavf: add extended stats")
Cc: stable@dpdk.org

Signed-off-by: Ciara Loftus <ciara.loftus@intel.com>
---
 doc/guides/nics/features/iavf.ini | 1 +
 1 file changed, 1 insertion(+)

diff --git a/doc/guides/nics/features/iavf.ini b/doc/guides/nics/features/iavf.ini
index 63c89ee28f..74c1910ca3 100644
--- a/doc/guides/nics/features/iavf.ini
+++ b/doc/guides/nics/features/iavf.ini
@@ -41,6 +41,7 @@ Packet type parsing  = Y
 Rx descriptor status = Y
 Tx descriptor status = Y
 Basic stats          = Y
+Extended stats       = Y
 Multiprocess aware   = Y
 FreeBSD              = Y
 Linux                = Y
-- 
2.34.1


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

end of thread, other threads:[~2025-09-16 14:21 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20250916142113.3485738-1-ciara.loftus@intel.com>
2025-09-16 14:21 ` [PATCH 1/8] net/ice: document support for free Tx mbuf on demand Ciara Loftus
2025-09-16 14:21 ` [PATCH 2/8] net/ice: fix documentation of support for TSO Ciara Loftus
2025-09-16 14:21 ` [PATCH 3/8] net/iavf: fix documentation for speed capabilities Ciara Loftus
2025-09-16 14:21 ` [PATCH 4/8] net/iavf: document support for fast mbuf free Ciara Loftus
2025-09-16 14:21 ` [PATCH 5/8] net/iavf: document support for free Tx mbuf on demand Ciara Loftus
2025-09-16 14:21 ` [PATCH 6/8] net/iavf: document support for burst mode info Ciara Loftus
2025-09-16 14:21 ` [PATCH 7/8] net/iavf: fix documentation of support for TSO Ciara Loftus
2025-09-16 14:21 ` [PATCH 8/8] net/iavf: document support for extended statistics 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).