From: Bart Van Assche <bvanassche@acm.org>
To: Zhiguo Niu <zhiguo.niu@unisoc.com>,
peterz@infradead.org, mingo@redhat.com, will@kernel.org,
longman@redhat.com, boqun.feng@gmail.com
Cc: linux-kernel@vger.kernel.org, niuzhiguo84@gmail.com,
ke.wang@unisoc.com, xuewen.yan@unisoc.com,
Carlos Llamas <cmllamas@google.com>
Subject: Re: [PATCH V2] lockdep: fix deadlock issue between lockdep and rcu
Date: Thu, 1 Feb 2024 09:22:20 -0800 [thread overview]
Message-ID: <2d1f4f16-6d66-4449-a7b7-5e2b2a4eaeb3@acm.org> (raw)
In-Reply-To: <1705477714-10467-1-git-send-email-zhiguo.niu@unisoc.com>
On 1/16/24 23:48, Zhiguo Niu wrote:
> There is a deadlock scenario between lockdep and rcu when
> rcu nocb feature is enabled, just as following call stack:
Is it necessary to support lockdep for this kernel configuration or should we
rather forbid this combination by changing lib/Kconfig.debug?
> /*
> - * Schedule an RCU callback if no RCU callback is pending. Must be called with
> - * the graph lock held.
> - */
> -static void call_rcu_zapped(struct pending_free *pf)
> +* See if we need to queue an RCU callback, must called with
> +* the lockdep lock held, returns false if either we don't have
> +* any pending free or the callback is already scheduled.
> +* Otherwise, a call_rcu() must follow this function call.
> +*/
Why has the name been changed from "graph lock" into "lockdep lock"? I think
elsewhere in this source file it is called the "graph lock".
> /*
> - * If there's anything on the open list, close and start a new callback.
> - */
> - call_rcu_zapped(delayed_free.pf + delayed_free.index);
> + * If there's anything on the open list, close and start a new callback.
> + */
> + if (need_callback)
> + call_rcu(&delayed_free.rcu_head, free_zapped_rcu);
The comment above the if-statement refers to the call_rcu_zapped() function
while call_rcu_zapped() has been changed into call_rcu(). So the comment is
now incorrect.
Additionally, what guarantees that the above code won't be triggered
concurrently from two different threads? As you may know calling call_rcu()
twice before the callback has been started is not allowed. I think that can
happen with the above code.
Bart.
next prev parent reply other threads:[~2024-02-01 17:22 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-17 7:48 Zhiguo Niu
2024-01-17 14:58 ` Waiman Long
2024-01-17 20:53 ` Boqun Feng
2024-02-01 16:35 ` Carlos Llamas
2024-02-01 17:22 ` Bart Van Assche [this message]
2024-02-01 19:58 ` Boqun Feng
2024-02-01 20:56 ` Bart Van Assche
2024-02-01 21:53 ` Boqun Feng
2024-02-02 2:13 ` Bart Van Assche
2024-02-02 8:19 ` Zhiguo Niu
2024-02-01 19:28 ` Bart Van Assche
2024-02-01 19:48 ` Boqun Feng
2024-02-01 21:24 ` Bart Van Assche
2024-02-01 21:55 ` Boqun Feng
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=2d1f4f16-6d66-4449-a7b7-5e2b2a4eaeb3@acm.org \
--to=bvanassche@acm.org \
--cc=boqun.feng@gmail.com \
--cc=cmllamas@google.com \
--cc=ke.wang@unisoc.com \
--cc=linux-kernel@vger.kernel.org \
--cc=longman@redhat.com \
--cc=mingo@redhat.com \
--cc=niuzhiguo84@gmail.com \
--cc=peterz@infradead.org \
--cc=will@kernel.org \
--cc=xuewen.yan@unisoc.com \
--cc=zhiguo.niu@unisoc.com \
/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
all inboxes | Powered by JetHome®