From: Allison Henderson <achender@kernel.org>
To: netdev@vger.kernel.org, pabeni@redhat.com, edumazet@google.com,
kuba@kernel.org, horms@kernel.org, linux-rdma@vger.kernel.org,
achender@kernel.org, linux-kselftest@vger.kernel.org,
shuah@kernel.org
Subject: [PATCH net-next v3 00/11] selftests: rds: Add ROCE support to rds selftests
Date: Sun, 17 May 2026 18:24:32 -0700 [thread overview]
Message-ID: <20260518012443.2629206-1-achender@kernel.org> (raw)
Currently the rds selftests only tests the tcp transport. This means
most of rds_rdma.ko has no testing coverage. This series refactors the
rds self tests to add an rdma option when running tests. When used,
the test creates a pair of ROCE interfaces to run the payloads through.
Most of this set is refactoring the existing test.py module. Since most
of this code is one long procedure, it is difficult to modularize it
without creating a lot of pylint complaints about lengthy functions
with too many variables or branches.
Patch 1 fixes an RDS-IB shutdown hang exposed by the new ROCE selftests
in patches 10/11. The next seven patches break down test.py into helper
functions. After we have modularized the send/recv packet logic, we
introduce the new ROCE equivalent network configurations, add the new
command line flags to build and run the test with rdma support.
Questions, comments and feedback appreciated!
Thanks everyone!
Allison
Change Log
v2:
[PATCH net-next v1 1/9] selftests: rds: Capitalize ret global in test.py
Dropped
[PATCH net-next v2 4/9] selftests: rds: Add helper function recv_burst() in test.py
Pylint nits
[PATCH net-next v2 6/9] selftests: rds: Add helper function snd_rcv_packets() in test.py
Pylint nits
[PATCH net-next v2 7/9] selftests: rds: Register network teardown via atexi
NEW
Registers network config cleanup function teardown_tcp() with atexi
[PATCH net-next v2 8/9] selftests: rds: Add ROCE support to test.py
Pylint nits
Added rdma network teardown cleanup on atexit
Fixed test result reporting with dynamic per-transport reporting
v3:
[PATCH net-next v3 1/11] net/rds: Don't sleep inside rds_ib_conn_path_shutdown
NEW
[PATCH net-next v3 08/11] selftests: rds: Handle errors in netns_socket
NEW
[PATCH net-next v3 10/11] selftests: rds: Add ROCE support to test.py
Sashiko complaint: expand snd_rcv_packets docstring
Sashiko complaint: properly close sockets when test completes
Sashiko complaint: collect pcaps per rdma iface
Sashiko complaint: only teardown rdma net configs when -T rdma is used
Sashiko complaint: cancel timeout before reporting test results
[PATCH net-next v3 11/11] selftests: rds: Add ROCE support to run.sh
Sashiko complaint: Update test.py usage and README with -T usage
Allison Henderson (11):
net/rds: Don't sleep inside rds_ib_conn_path_shutdown
selftests: rds: Add helper function setup_tcp() in test.py
selftests: rds: Add helper function check_info() in test.py
selftests: rds: Add helper function send_burst() in test.py
selftests: rds: Add helper function recv_burst() in test.py
selftests: rds: Add helper function verify_hashes() in test.py
selftests: rds: Add helper function snd_rcv_packets() in test.py
selftests: rds: Handle errors in netns_socket
selftests: rds: Register network teardown via atexit
selftests: rds: Add ROCE support to test.py
selftests: rds: Add ROCE support to run.sh
net/rds/ib_cm.c | 25 +-
tools/testing/selftests/net/rds/README.txt | 29 +-
tools/testing/selftests/net/rds/config.sh | 15 +-
tools/testing/selftests/net/rds/run.sh | 53 +-
tools/testing/selftests/net/rds/test.py | 631 ++++++++++++++-------
5 files changed, 529 insertions(+), 224 deletions(-)
--
2.25.1
next reply other threads:[~2026-05-18 1:24 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-18 1:24 Allison Henderson [this message]
2026-05-18 1:24 ` [PATCH net-next v3 01/11] net/rds: Don't sleep inside rds_ib_conn_path_shutdown Allison Henderson
2026-05-18 1:24 ` [PATCH net-next v3 02/11] selftests: rds: Add helper function setup_tcp() in test.py Allison Henderson
2026-05-18 1:24 ` [PATCH net-next v3 03/11] selftests: rds: Add helper function check_info() " Allison Henderson
2026-05-18 1:24 ` [PATCH net-next v3 04/11] selftests: rds: Add helper function send_burst() " Allison Henderson
2026-05-18 1:24 ` [PATCH net-next v3 05/11] selftests: rds: Add helper function recv_burst() " Allison Henderson
2026-05-18 1:24 ` [PATCH net-next v3 06/11] selftests: rds: Add helper function verify_hashes() " Allison Henderson
2026-05-18 1:24 ` [PATCH net-next v3 07/11] selftests: rds: Add helper function snd_rcv_packets() " Allison Henderson
2026-05-18 1:24 ` [PATCH net-next v3 08/11] selftests: rds: Handle errors in netns_socket Allison Henderson
2026-05-18 1:24 ` [PATCH net-next v3 09/11] selftests: rds: Register network teardown via atexit Allison Henderson
2026-05-18 1:24 ` [PATCH net-next v3 10/11] selftests: rds: Add ROCE support to test.py Allison Henderson
2026-05-18 1:24 ` [PATCH net-next v3 11/11] selftests: rds: Add ROCE support to run.sh Allison Henderson
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=20260518012443.2629206-1-achender@kernel.org \
--to=achender@kernel.org \
--cc=edumazet@google.com \
--cc=horms@kernel.org \
--cc=kuba@kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=shuah@kernel.org \
/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