From: Pingfan Liu <kernelfans@gmail.com>
To: rcu@vger.kernel.org
Cc: Pingfan Liu <kernelfans@gmail.com>,
Lai Jiangshan <jiangshanlai@gmail.com>,
"Paul E. McKenney" <paulmck@kernel.org>,
Frederic Weisbecker <frederic@kernel.org>,
Josh Triplett <josh@joshtriplett.org>,
Steven Rostedt <rostedt@goodmis.org>,
Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Subject: [PATCHv3] srcu: Eliminate the case that snp_seq bigger than snap in srcu_funnel_gp_start()
Date: Fri, 25 Nov 2022 20:46:06 +0800 [thread overview]
Message-ID: <20221125124606.56725-1-kernelfans@gmail.com> (raw)
In-Reply-To: <20221123135638.79021-3-kernelfans@gmail.com>
Since the srcu read lock is still held during srcu_funnel_gp_start(),
the seq snap should be the largest number for the slot
srcu_have_cbs[idx].
Test info
Running the following test without any failure
tools/testing/selftests/rcutorture/bin/kvm.sh --allcpus --duration 10h --configs 18*SRCU-P
And
cd res && find . -name console.log -exec grep WARNING {} \;
prints nothing
Signed-off-by: Pingfan Liu <kernelfans@gmail.com>
Cc: Lai Jiangshan <jiangshanlai@gmail.com>
Cc: "Paul E. McKenney" <paulmck@kernel.org>
Cc: Frederic Weisbecker <frederic@kernel.org>
Cc: Josh Triplett <josh@joshtriplett.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
To: rcu@vger.kernel.org
---
kernel/rcu/srcutree.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/kernel/rcu/srcutree.c b/kernel/rcu/srcutree.c
index 7e450bb4ddcf..687f243dd2e2 100644
--- a/kernel/rcu/srcutree.c
+++ b/kernel/rcu/srcutree.c
@@ -905,14 +905,12 @@ static void srcu_funnel_gp_start(struct srcu_struct *ssp, struct srcu_data *sdp,
for (snp = snp_leaf; snp != NULL; snp = snp->srcu_parent) {
spin_lock_irqsave_rcu_node(snp, flags);
snp_seq = snp->srcu_have_cbs[idx];
- if (!srcu_invl_snp_seq(snp_seq) && ULONG_CMP_GE(snp_seq, s)) {
+ /* s should be the biggest in the current slot. */
+ WARN_ON_ONCE(ULONG_CMP_LT(s, snp_seq));
+ if (!srcu_invl_snp_seq(snp_seq) && (snp_seq == s)) {
if (snp == snp_leaf && snp_seq == s)
snp->srcu_data_have_cbs[idx] |= sdp->grpmask;
spin_unlock_irqrestore_rcu_node(snp, flags);
- if (snp == snp_leaf && snp_seq != s) {
- srcu_schedule_cbs_sdp(sdp, do_norm ? SRCU_INTERVAL : 0);
- return;
- }
if (!do_norm)
srcu_funnel_exp_start(ssp, snp, s);
return;
--
2.31.1
prev parent reply other threads:[~2022-11-25 12:46 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-23 13:56 [PATCHv2 0/2] srcu: Optimize when srcu_gp_start_if_needed() holds read lock Pingfan Liu
2022-11-23 13:56 ` [PATCHv2 1/2] srcu: Remove needless rcu_seq_done() check while holding " Pingfan Liu
2022-11-28 23:57 ` Paul E. McKenney
2022-11-23 13:56 ` [PATCHv2 2/2] srcu: Eliminate the case that snp_seq bigger than snap in srcu_funnel_gp_start() Pingfan Liu
2022-11-23 19:20 ` Paul E. McKenney
2022-11-24 3:33 ` Pingfan Liu
2022-11-24 4:06 ` Pingfan Liu
2022-11-24 5:24 ` Paul E. McKenney
2022-11-24 16:19 ` Paul E. McKenney
2022-11-25 12:37 ` Pingfan Liu
2022-11-26 18:03 ` Paul E. McKenney
2022-11-26 18:07 ` Paul E. McKenney
2022-11-27 14:46 ` Joel Fernandes
2022-11-27 17:55 ` Paul E. McKenney
2022-11-27 15:01 ` Pingfan Liu
2022-11-27 18:00 ` Paul E. McKenney
2022-11-28 7:59 ` Pingfan Liu
2022-11-29 0:37 ` Paul E. McKenney
2022-11-25 12:32 ` Pingfan Liu
2022-11-25 12:46 ` Pingfan Liu [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=20221125124606.56725-1-kernelfans@gmail.com \
--to=kernelfans@gmail.com \
--cc=frederic@kernel.org \
--cc=jiangshanlai@gmail.com \
--cc=josh@joshtriplett.org \
--cc=mathieu.desnoyers@efficios.com \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.