public inbox for dev@dpdk.org
 help / color / mirror / Atom feed
From: Andrew Bailey <abailey@iol.unh.edu>
To: luca.vizzarro@arm.com, probb@iol.unh.edu
Cc: dmarx@iol.unh.edu, dev@dpdk.org, Andrew Bailey <abailey@iol.unh.edu>
Subject: [PATCH v2 0/5] *** dts: add cryptodev testing support ***
Date: Tue, 10 Feb 2026 13:06:40 -0500	[thread overview]
Message-ID: <20260210180645.65880-1-abailey@iol.unh.edu> (raw)
In-Reply-To: <20260122214424.322422-1-abailey@iol.unh.edu>

This patch series adds support to use the dpdk-test-crypto-perf
application. This application utilizes crypto devices that must be
listed in the format of a port under the `cryptodevs:` label. Along
with this, the application does not utilize a traffic generator and
therefore a new test suite decorator has been made to signify this.
Crypto tests must be enabled in test_run.yaml as `crypto: true`.
It is not supported to enable crypto testing along with functional
or performance testing. Specific capabilities of a crypto device
cannot be gathered at setup and therefore, non-relevant tests skip at
runtime. Finally, the application must be run with virtual functions
and the process of creating and binding them has been automated within
this series.

---
v2:
* Updated example yaml files for test_run and tests_config.
* Expanded test suite coverage.
* Resolved git problems where patches were removing code added by the
  previous commit.
* Updated test suite to only run tests that are configured in the
  tests_config yaml.

Andrew Bailey (5):
  dts: add find float method to text parser
  dts: add cryptodev package to DTS
  dts: add cryptodev throughput test suite
  dts: add crypto test decorator
  dts: automate VFIO-PCI modprobe in node setup

 .../tests.TestSuite_cryptodev_throughput.rst  |   8 +
 dts/api/cryptodev/__init__.py                 | 134 ++++
 dts/api/cryptodev/config.py                   | 499 +++++++++++++
 dts/api/cryptodev/types.py                    | 185 +++++
 dts/configurations/test_run.example.yaml      |   1 +
 dts/configurations/tests_config.example.yaml  |   5 +
 dts/framework/config/node.py                  |   4 +
 dts/framework/config/test_run.py              |   3 +
 dts/framework/params/types.py                 |  65 ++
 dts/framework/parser.py                       |  28 +
 dts/framework/remote_session/dpdk_shell.py    |   5 +-
 dts/framework/test_run.py                     |   5 +
 dts/framework/test_suite.py                   |   6 +
 dts/framework/testbed_model/linux_session.py  |  84 +++
 dts/framework/testbed_model/node.py           |  10 +
 dts/framework/testbed_model/os_session.py     |  34 +
 dts/framework/testbed_model/topology.py       |  92 ++-
 dts/tests/TestSuite_cryptodev_throughput.py   | 691 ++++++++++++++++++
 18 files changed, 1856 insertions(+), 3 deletions(-)
 create mode 100644 doc/api/dts/tests.TestSuite_cryptodev_throughput.rst
 create mode 100644 dts/api/cryptodev/__init__.py
 create mode 100644 dts/api/cryptodev/config.py
 create mode 100644 dts/api/cryptodev/types.py
 create mode 100644 dts/tests/TestSuite_cryptodev_throughput.py

--
2.50.1


  parent reply	other threads:[~2026-02-10 19:52 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20260122214424.322422-1-abailey@iol.unh.edu>
2026-01-22 21:44 ` [PATCH v1 1/5] dts: add find float method to text parser Andrew Bailey
2026-01-23 16:32   ` Dean Marx
2026-01-22 21:44 ` [PATCH v1 2/5] dts: add cryptodev package to DTS Andrew Bailey
2026-01-23 16:36   ` Dean Marx
2026-01-22 21:44 ` [PATCH v1 3/5] dts: add cryptodev throughput test suite Andrew Bailey
2026-01-23 16:46   ` Dean Marx
2026-02-02 15:51     ` Andrew Bailey
2026-01-22 21:44 ` [PATCH v1 4/5] dts: add crypto test decorator Andrew Bailey
2026-01-23 16:54   ` Dean Marx
2026-01-22 21:44 ` [PATCH v1 5/5] dts: automate VFIO-PCI modprobe in node setup Andrew Bailey
2026-01-23 16:57   ` Dean Marx
2026-02-10 18:06 ` Andrew Bailey [this message]
2026-02-10 18:06   ` [PATCH v2 1/5] dts: add find float method to text parser Andrew Bailey
2026-02-10 18:06   ` [PATCH v2 2/5] dts: add cryptodev package to DTS Andrew Bailey
2026-02-10 18:06   ` [PATCH v2 3/5] dts: add cryptodev throughput test suite Andrew Bailey
2026-02-10 18:06   ` [PATCH v2 4/5] dts: add crypto test decorator Andrew Bailey
2026-02-10 18:06   ` [PATCH v2 5/5] dts: automate VFIO-PCI modprobe in node setup Andrew Bailey
2026-02-10 19:38   ` [PATCH v2 0/5] *** dts: add cryptodev testing support *** Andrew Bailey

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260210180645.65880-1-abailey@iol.unh.edu \
    --to=abailey@iol.unh.edu \
    --cc=dev@dpdk.org \
    --cc=dmarx@iol.unh.edu \
    --cc=luca.vizzarro@arm.com \
    --cc=probb@iol.unh.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox