From: Joel Fernandes <joelagnelf@nvidia.com>
To: paulmck@kernel.org, rcu@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, kernel-team@meta.com, rostedt@goodmis.org
Subject: Re: [PATCH v2 0/12]
Date: Wed, 2 Apr 2025 10:45:32 -0400 [thread overview]
Message-ID: <d276472b-3b1f-4d93-89a6-2e2081f403a6@nvidia.com> (raw)
In-Reply-To: <eea8d42f-6d2d-485b-9bb9-4eb77a0e1f95@paulmck-laptop>
Hello Paul,
On 3/31/2025 5:02 PM, Paul E. McKenney wrote:
> Hello!
>
> The following series improves testing of SRCU-fast and SRCU up/down,
> deprecates SRCU-lite, enables torture.sh to skip non-debug testing,
> and adds testing for Rust's RCU bindings. The Rust RCU patch is very
> much in RFC state, but I am posting it anyway for wider exposure.
I will pull these into a topic branch, thanks. Since 6.15 -rc1 is not yet out, I
will keep it in the topic/integration branch for my testing and then rebase onto
-rc1 for the linux-next testing once -rc1 is out.
Thanks!
- Joel
>
> 1. Make srcu_lockdep.sh check kernel Kconfig.
>
> 2. Make srcu_lockdep.sh check reader-conflict handling.
>
> 3. Split out beginning and end from rcu_torture_one_read().
>
> 4. Make torture.sh --do-rt use CONFIG_PREEMPT_RT.
>
> 5. Add tests for SRCU up/down reader primitives.
>
> 6. Pull rcu_torture_updown() loop body into new function.
>
> 7. Comment invocations of tick_dep_set_task().
>
> 8. Complain if an ->up_read() is delayed more than 10 seconds.
>
> 9. Check for ->up_read() without matching ->down_read().
>
> 10. Deprecate srcu_read_lock_lite() and srcu_read_unlock_lite().
>
> 11. Add --do-{,no-}normal to torture.sh.
>
> 12. Add testing of RCU's Rust bindings to torture.sh. (RFC)
>
> Changes since v1:
>
> o Apply Z Qiang feedback.
>
> o Add SRCU-lite deprecation, torture.sh --do-{,no-}normal, and
> testing of RCU's Rust bindings.
>
> https://lore.kernel.org/all/4bf081c8-9299-4ee3-b337-d5b751cef6be@paulmck-laptop/
>
> Thanx, Paul
>
> ------------------------------------------------------------------------
>
> b/kernel/rcu/rcutorture.c | 124 ++++--
> b/scripts/checkpatch.pl | 2
> b/tools/testing/selftests/rcutorture/bin/srcu_lockdep.sh | 11
> b/tools/testing/selftests/rcutorture/bin/torture.sh | 12
> kernel/rcu/rcutorture.c | 298 ++++++++++++---
> tools/testing/selftests/rcutorture/bin/srcu_lockdep.sh | 31 +
> tools/testing/selftests/rcutorture/bin/torture.sh | 75 +++
> 7 files changed, 457 insertions(+), 96 deletions(-)
prev parent reply other threads:[~2025-04-02 14:45 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-31 21:02 [PATCH v2 0/12] Paul E. McKenney
2025-03-31 21:03 ` [PATCH v2 01/12] rcutorture: Make srcu_lockdep.sh check kernel Kconfig Paul E. McKenney
2025-03-31 21:03 ` [PATCH v2 02/12] rcutorture: Make srcu_lockdep.sh check reader-conflict handling Paul E. McKenney
2025-03-31 21:03 ` [PATCH v2 03/12] rcutorture: Split out beginning and end from rcu_torture_one_read() Paul E. McKenney
2025-03-31 21:03 ` [PATCH v2 04/12] rcutorture: Make torture.sh --do-rt use CONFIG_PREEMPT_RT Paul E. McKenney
2025-04-02 7:42 ` Sebastian Andrzej Siewior
2025-04-02 18:51 ` Paul E. McKenney
2025-04-07 19:12 ` [PATCH v3 4/12] " Paul E. McKenney
2025-04-08 14:29 ` [v3,4/12] " Joel Fernandes
2025-04-08 16:20 ` Paul E. McKenney
2025-03-31 21:03 ` [PATCH v2 05/12] rcutorture: Add tests for SRCU up/down reader primitives Paul E. McKenney
2025-04-08 20:18 ` [v2,05/12] " Joel Fernandes
2025-04-08 20:58 ` Paul E. McKenney
2025-04-08 22:05 ` Joel Fernandes
2025-04-08 22:21 ` Paul E. McKenney
2025-04-15 17:16 ` [PATCH v2 05/12] " Joel Fernandes
2025-04-15 17:59 ` Paul E. McKenney
2025-04-15 21:15 ` Paul E. McKenney
2025-04-16 1:14 ` Joel Fernandes
2025-04-16 3:55 ` Paul E. McKenney
2025-03-31 21:03 ` [PATCH v2 06/12] rcutorture: Pull rcu_torture_updown() loop body into new function Paul E. McKenney
2025-03-31 21:03 ` [PATCH v2 07/12] rcutorture: Comment invocations of tick_dep_set_task() Paul E. McKenney
2025-03-31 21:03 ` [PATCH v2 08/12] rcutorture: Complain if an ->up_read() is delayed more than 10 seconds Paul E. McKenney
2025-03-31 21:03 ` [PATCH v2 09/12] rcutorture: Check for ->up_read() without matching ->down_read() Paul E. McKenney
2025-03-31 21:03 ` [PATCH v2 10/12] checkpatch: Deprecate srcu_read_lock_lite() and srcu_read_unlock_lite() Paul E. McKenney
2025-04-01 6:53 ` Joe Perches
2025-04-01 14:05 ` Paul E. McKenney
2025-04-02 3:48 ` Joe Perches
2025-04-02 4:23 ` Paul E. McKenney
2025-04-02 4:49 ` Joe Perches
2025-04-02 14:12 ` Paul E. McKenney
2025-03-31 21:03 ` [PATCH v2 11/12] torture: Add --do-{,no-}normal to torture.sh Paul E. McKenney
2025-03-31 21:03 ` [PATCH v2 12/12] torture: Add testing of RCU's Rust bindings " Paul E. McKenney
2025-04-02 14:45 ` Joel Fernandes [this message]
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=d276472b-3b1f-4d93-89a6-2e2081f403a6@nvidia.com \
--to=joelagnelf@nvidia.com \
--cc=kernel-team@meta.com \
--cc=linux-kernel@vger.kernel.org \
--cc=paulmck@kernel.org \
--cc=rcu@vger.kernel.org \
--cc=rostedt@goodmis.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