From: Qi Xi <xiqi2@huawei.com>
To: Joel Fernandes <joelagnelf@nvidia.com>, <paulmck@kernel.org>,
"Xiongfeng Wang" <wangxiongfeng2@huawei.com>
Cc: Joel Fernandes <joel@joelfernandes.org>,
<ankur.a.arora@oracle.com>,
Frederic Weisbecker <frederic@kernel.org>,
Boqun Feng <boqun.feng@gmail.com>, <neeraj.upadhyay@kernel.org>,
<urezki@gmail.com>, <rcu@vger.kernel.org>,
<linux-kernel@vger.kernel.org>,
"Wangshaobo (bobo)" <bobo.shaobowang@huawei.com>,
Xie XiuQi <xiexiuqi@huawei.com>
Subject: Re: [QUESTION] problems report: rcu_read_unlock_special() called in irq_exit() causes dead loop
Date: Wed, 2 Jul 2025 17:14:38 +0800 [thread overview]
Message-ID: <506d8c4e-c317-4c85-9bcf-695596551d28@huawei.com> (raw)
In-Reply-To: <279d2f06-d4f7-46e1-9678-999a2d19b710@nvidia.com>
Hi Joel,
After applying the 2 patches, the problem still exists. Compared to the
previous fixes which did solve the problem, the difference is
ct_in_irq() in the first patch.
I am wondering why "nesting != CT_NESTING_IRQ_NONIDLE" is added?
(previous fix: problem is solved)
+bool ct_in_irq(void)
+{
+ return ct_nmi_nesting() != 0;
+}
(current fix: problem still exists)
+bool ct_in_irq(void)
+{
+ long nesting = ct_nmi_nesting();
+
+ return (nesting && nesting != CT_NESTING_IRQ_NONIDLE);
+}
On 2025/7/1 21:29, Joel Fernandes wrote:
>
> On 7/1/2025 5:20 AM, Qi Xi wrote:
>> Hello everyone,
>>
>> Friendly ping about this problem :)
>>
> Ah, thanks for checking. The fix is slated for kernel 6.17.
>
> If you want to test it, could you apply it in advance from the RCU tree?
>
> You need these 2:
>
> https://git.kernel.org/pub/scm/linux/kernel/git/rcu/linux.git/commit/?h=next&id=6758c93749f8bf09b9282f100c5dd0a5c501f91c
>
> https://git.kernel.org/pub/scm/linux/kernel/git/rcu/linux.git/commit/?h=next&id=3cd298bf3bb69e3bca6abfe97e1b44ffa37f3dee
>
> Thanks.
next prev parent reply other threads:[~2025-07-02 9:14 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-21 9:43 [QUESTION] problems report: rcu_read_unlock_special() called in irq_exit() causes dead loop Xiongfeng Wang
2025-05-28 16:30 ` Joel Fernandes
2025-05-30 1:55 ` Xiongfeng Wang
2025-06-03 18:59 ` Joel Fernandes
2025-06-03 19:03 ` Joel Fernandes
2025-06-03 19:22 ` Joel Fernandes
2025-06-04 1:35 ` Joel Fernandes
2025-06-04 3:25 ` Xiongfeng Wang
[not found] ` <64dfcaad-091c-4319-882b-d94515365758@huawei.com>
2025-06-04 9:20 ` Joel Fernandes
2025-06-04 3:20 ` Xiongfeng Wang
2025-06-04 12:26 ` Paul E. McKenney
2025-06-05 18:56 ` Joel Fernandes
2025-07-01 9:20 ` Qi Xi
2025-07-01 13:29 ` Joel Fernandes
2025-07-02 9:04 ` Qi Xi
2025-07-02 9:14 ` Qi Xi [this message]
2025-07-02 10:59 ` Joel Fernandes
2025-07-02 11:11 ` Frederic Weisbecker
2025-07-02 17:24 ` Joel Fernandes
2025-07-03 1:04 ` Xiongfeng Wang
2025-07-05 13:12 ` Joel Fernandes
2025-07-07 3:06 ` Qi Xi
2025-07-07 3:08 ` Joel Fernandes
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=506d8c4e-c317-4c85-9bcf-695596551d28@huawei.com \
--to=xiqi2@huawei.com \
--cc=ankur.a.arora@oracle.com \
--cc=bobo.shaobowang@huawei.com \
--cc=boqun.feng@gmail.com \
--cc=frederic@kernel.org \
--cc=joel@joelfernandes.org \
--cc=joelagnelf@nvidia.com \
--cc=linux-kernel@vger.kernel.org \
--cc=neeraj.upadhyay@kernel.org \
--cc=paulmck@kernel.org \
--cc=rcu@vger.kernel.org \
--cc=urezki@gmail.com \
--cc=wangxiongfeng2@huawei.com \
--cc=xiexiuqi@huawei.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 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.