From: Ming Lei <ming.lei@redhat.com>
To: Yu Kuai <yukuai1@huaweicloud.com>
Cc: nilay@linux.ibm.com, tj@kernel.org, josef@toxicpanda.com,
axboe@kernel.dk, cgroups@vger.kernel.org,
linux-block@vger.kernel.org, linux-kernel@vger.kernel.org,
yi.zhang@huawei.com, yangerkun@huawei.com,
johnny.chenyi@huawei.com, "yukuai (C)" <yukuai3@huawei.com>
Subject: Re: [PATCH 1/4] blk-mq-debugfs: warn about possible deadlock
Date: Tue, 14 Oct 2025 16:34:32 +0800 [thread overview]
Message-ID: <aO4LGJ6I49dydw2J@fedora> (raw)
In-Reply-To: <33c009e6-0cc3-bfc3-f7e5-8227cb467696@huaweicloud.com>
On Tue, Oct 14, 2025 at 04:21:30PM +0800, Yu Kuai wrote:
> Hi,
>
> 在 2025/10/14 16:06, Ming Lei 写道:
> > On Tue, Oct 14, 2025 at 10:21:46AM +0800, Yu Kuai wrote:
> > > Creating new debugfs entries can trigger fs reclaim, hence we can't do
> > > this with queue freezed, meanwhile, other locks that can be held while
> > > queue is freezed should not be held as well.
> > >
> > > Signed-off-by: Yu Kuai <yukuai3@huawei.com>
> > > ---
> > > block/blk-mq-debugfs.c | 31 ++++++++++++++++++++++++-------
> > > 1 file changed, 24 insertions(+), 7 deletions(-)
> > >
> > > diff --git a/block/blk-mq-debugfs.c b/block/blk-mq-debugfs.c
> > > index 4896525b1c05..66864ed0b77f 100644
> > > --- a/block/blk-mq-debugfs.c
> > > +++ b/block/blk-mq-debugfs.c
> > > @@ -608,9 +608,23 @@ static const struct blk_mq_debugfs_attr blk_mq_debugfs_ctx_attrs[] = {
> > > {},
> > > };
> > > -static void debugfs_create_files(struct dentry *parent, void *data,
> > > +static void debugfs_create_files(struct request_queue *q, struct dentry *parent,
> > > + void *data,
> > > const struct blk_mq_debugfs_attr *attr)
> > > {
> > > + /*
> > > + * Creating new debugfs entries with queue freezed has the rist of
> > > + * deadlock.
> > > + */
> > > + WARN_ON_ONCE(q->mq_freeze_depth != 0);
> > > + /*
> > > + * debugfs_mutex should not be nested under other locks that can be
> > > + * grabbed while queue is freezed.
> > > + */
> > > + lockdep_assert_not_held(&q->elevator_lock);
> > > + lockdep_assert_not_held(&q->rq_qos_mutex);
> >
> > ->rq_qos_mutex use looks one real mess, in blk-cgroup.c, it is grabbed after
> > queue is frozen. However, inside block/blk-rq-qos.c, the two are re-ordered,
> > maybe we need to fix order between queue freeze and q->rq_qos_mutex first?
> > Or move on by removing the above line?
>
> Yeah, I see this reoder as well, and I tried to fix this in the other
> thread for blkg configuration.
>
> - queue is freezed by new helper blkg_conf_start(), and unfreezed after
> blkg_conf_end(), rq_qos_add() is now called between them.
>
> And for wbt, there are two cases:
> - for blk-sysfs, queue is alredy freezed before rq_qos_add() as well;
> - for wbt_enable_default(), this looks still problemaic, we should fix
> the reorder seperatly.
>
> Perhaps, should I fix this simple problem first, and then rebase the
> thread to convert queue_lock to blkcg_mtuex?
As I mentioned, if you want to move on with patchset first, the line of
`lockdep_assert_not_held(&q->rq_qos_mutex);` shouldn't be added until
->rq_qos_mutex vs. freeze queue order is finalized.
Thanks,
Ming
next prev parent reply other threads:[~2025-10-14 8:34 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-14 2:21 [PATCH 0/4] blk-rq-qos: fix possible deadlock Yu Kuai
2025-10-14 2:21 ` [PATCH 1/4] blk-mq-debugfs: warn about " Yu Kuai
2025-10-14 8:06 ` Ming Lei
2025-10-14 8:21 ` Yu Kuai
2025-10-14 8:34 ` Ming Lei [this message]
2025-10-14 2:21 ` [PATCH 2/4] blk-mq-debugfs: factor out a helper blk_mq_debugfs_register_rq_qos() Yu Kuai
2025-10-14 2:21 ` [PATCH 3/4] blk-rq-qos: fix possible deadlock Yu Kuai
2025-10-14 8:13 ` Ming Lei
2025-10-14 8:24 ` Yu Kuai
2025-10-14 8:37 ` Ming Lei
2025-10-14 8:42 ` Yu Kuai
2025-10-14 8:55 ` Ming Lei
2025-10-14 9:03 ` Yu Kuai
2025-10-14 2:21 ` [PATCH 4/4] blk-mq-debugfs: make blk_mq_debugfs_register_rqos() static Yu Kuai
2025-10-14 8:15 ` Ming Lei
2025-10-14 8:26 ` Yu Kuai
2025-10-14 10:58 ` [PATCH 0/4] blk-rq-qos: fix possible deadlock Nilay Shroff
2025-10-14 11:14 ` Yu Kuai
2025-10-14 17:57 ` Nilay Shroff
2025-10-15 1:36 ` Yu Kuai
2025-10-15 1:42 ` Ming Lei
2025-10-15 5:16 ` Nilay Shroff
2025-10-15 9:27 ` Ming Lei
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=aO4LGJ6I49dydw2J@fedora \
--to=ming.lei@redhat.com \
--cc=axboe@kernel.dk \
--cc=cgroups@vger.kernel.org \
--cc=johnny.chenyi@huawei.com \
--cc=josef@toxicpanda.com \
--cc=linux-block@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nilay@linux.ibm.com \
--cc=tj@kernel.org \
--cc=yangerkun@huawei.com \
--cc=yi.zhang@huawei.com \
--cc=yukuai1@huaweicloud.com \
--cc=yukuai3@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).