[PATCH v7 3/3] dts: update tx_offload test from legacy dts to next dts
Andrew Bailey
abailey at iol.unh.edu
Thu Oct 16 15:24:21 CEST 2025
Add mbuf_fast_free portion of rxtx offload testsuite from legacy dts
to next dts. The testsuite expects mbuf fast free to be enabled by
default and verifies configuration of this Tx offload capability.
Signed-off-by: Andrew Bailey <abailey at iol.unh.edu>
---
doc/api/dts/tests.TestSuite_rx_tx_offload.rst | 8 ++
dts/tests/TestSuite_rx_tx_offload.py | 128 ++++++++++++++++++
2 files changed, 136 insertions(+)
create mode 100644 doc/api/dts/tests.TestSuite_rx_tx_offload.rst
create mode 100644 dts/tests/TestSuite_rx_tx_offload.py
diff --git a/doc/api/dts/tests.TestSuite_rx_tx_offload.rst b/doc/api/dts/tests.TestSuite_rx_tx_offload.rst
new file mode 100644
index 0000000000..27834a74da
--- /dev/null
+++ b/doc/api/dts/tests.TestSuite_rx_tx_offload.rst
@@ -0,0 +1,8 @@
+.. SPDX-License-Identifier: BSD-3-Clause
+
+rx_tx_offload Test Suite
+========================
+
+.. automodule:: tests.TestSuite_rx_tx_offload
+ :members:
+ :show-inheritance:
diff --git a/dts/tests/TestSuite_rx_tx_offload.py b/dts/tests/TestSuite_rx_tx_offload.py
new file mode 100644
index 0000000000..f1610e9170
--- /dev/null
+++ b/dts/tests/TestSuite_rx_tx_offload.py
@@ -0,0 +1,128 @@
+# SPDX-License-Identifier: BSD-3-Clause
+# Copyright(c) 2025 University of New Hampshire
+
+"""RX TX offload test suite.
+
+Test the testpmd feature of configuring RX and TX offloads.
+"""
+
+from api.capabilities import NicCapability, requires_nic_capability
+from api.testpmd import TestPmd
+from api.testpmd.types import (
+ OffloadConfiguration,
+ RxTxLiteralSwitch,
+)
+from framework.test_suite import TestSuite, func_test
+
+
+class TestRxTxOffload(TestSuite):
+ """RX/TX offload test suite."""
+
+ def _check_config(
+ self,
+ testpmd: TestPmd,
+ port_offload: str | None,
+ rxtx: RxTxLiteralSwitch,
+ port_id: int,
+ /,
+ queue_offload: list[str | None] | None = None,
+ verify: bool = True,
+ ) -> bool:
+ config: OffloadConfiguration = testpmd.get_offload_config(rxtx, port_id, verify)
+ if config.port.name != port_offload:
+ return False
+
+ if queue_offload:
+ for i, q in enumerate(config.queues):
+ if q.name != queue_offload[i]:
+ return False
+ return True
+
+ def _set_all_queues_mbuf_fast_free(
+ self, testpmd: TestPmd, on: bool, port_id: int, num_queues: int, /, verify: bool = True
+ ) -> None:
+ for i in range(num_queues):
+ testpmd.set_queue_mbuf_fast_free(on, port_id, i, verify)
+
+ @requires_nic_capability(NicCapability.PORT_TX_OFFLOAD_MBUF_FAST_FREE)
+ @func_test
+ def test_mbuf_fast_free_configuration_per_port(self) -> None:
+ """Ensure mbuf_fast_free can be configured with testpmd per port.
+
+ Steps:
+ * Start up testpmd shell.
+ * Toggle mbuf_fast_free off per port.
+ * Toggle mbuf_fast_free on per port.
+
+ Verify:
+ * Mbuf_fast_free starts enabled.
+ * Mbuf_fast_free can be configured off per port.
+ * Mbuf_fast_free can be configured on per port.
+ """
+ with TestPmd() as testpmd:
+ verify = True
+ port_id = 0
+ testpmd.start_all_ports()
+
+ # Ensure MBUF_FAST_FREE is enabled by default and verify
+ self.verify(
+ self._check_config(testpmd, "MBUF_FAST_FREE", "tx", port_id, verify=verify),
+ "MBUF_FAST_FREE disabled on port start.",
+ )
+ # disable MBUF_FAST_FREE per port and verify
+ testpmd.set_port_mbuf_fast_free(False, port_id, verify)
+ self.verify(
+ self._check_config(testpmd, None, "tx", port_id, verify=verify),
+ "Failed to enable MBUF_FAST_FREE on port.",
+ )
+ # Enable MBUF_FAST_FREE per port and verify
+ testpmd.set_port_mbuf_fast_free(True, port_id, verify)
+ self.verify(
+ self._check_config(testpmd, "MBUF_FAST_FREE", "tx", port_id, verify=verify),
+ "Failed to disable MBUF_FAST_FREE on port.",
+ )
+
+ @requires_nic_capability(NicCapability.QUEUE_TX_OFFLOAD_MBUF_FAST_FREE)
+ @func_test
+ def test_mbuf_fast_free_configuration_per_queue(self) -> None:
+ """Ensure mbuf_fast_free can be configured with testpmd.
+
+ Steps:
+ * Start up testpmd shell.
+ * Toggle mbuf_fast_free off per queue.
+ * Toggle mbuf_fast_free on per queue.
+
+ Verify:
+ * Mbuf_fast_free starts disabled.
+ * Mbuf_fast_free can be configured off per queue.
+ * Mbuf_fast_free can be configured on per queue.
+ """
+ with TestPmd() as testpmd:
+ verify = True
+ port_id = 0
+ num_queues = 4
+ queue_off: list[str | None] | None = [None] * num_queues
+ queue_on: list[str | None] | None = ["MBUF_FAST_FREE"] * num_queues
+
+ testpmd.set_ports_queues(num_queues)
+ testpmd.start_all_ports()
+
+ # Ensure mbuf_fast_free is enabled by default on port and queues
+ self.verify(
+ self._check_config(
+ testpmd, "MBUF_FAST_FREE", "tx", port_id, queue_on, verify=verify
+ ),
+ "MBUF_FAST_FREE disabled on queue start.",
+ )
+ # Disable mbuf_fast_free per queue and verify
+ self._set_all_queues_mbuf_fast_free(testpmd, False, port_id, num_queues, verify)
+ self.verify(
+ self._check_config(testpmd, "MBUF_FAST_FREE", "tx", port_id, queue_off, verify),
+ "Failed to disable MBUF_FAST_FREE on all queues.",
+ )
+ # Disable mbuf_fast_free per queue and verify
+ self._set_all_queues_mbuf_fast_free(testpmd, True, port_id, num_queues, verify)
+ self.verify(
+ self._check_config(testpmd, "MBUF_FAST_FREE", "tx", port_id, queue_on, verify),
+ "Failed to enable MBUF_FAST_FREE on all queues.",
+ )
--
2.50.1
More information about the dev
mailing list