From: Ming Lei <ming.lei@redhat.com>
To: Bart Van Assche <bvanassche@acm.org>
Cc: Christoph Hellwig <hch@lst.de>, Jens Axboe <axboe@kernel.dk>,
"Martin K. Petersen" <martin.petersen@oracle.com>,
linux-block@vger.kernel.org, linux-scsi@vger.kernel.org
Subject: Re: [PATCH 14/14] block: move rq_qos_exit() into disk_release()
Date: Mon, 7 Mar 2022 10:50:10 +0800 [thread overview]
Message-ID: <YiVy4jk00NQJPoiX@T590> (raw)
In-Reply-To: <85ea5b62-ac03-1d9a-f1bd-040e58235957@acm.org>
On Sun, Mar 06, 2022 at 12:51:37PM -0800, Bart Van Assche wrote:
> On 3/4/22 08:03, Christoph Hellwig wrote:
> > From: Ming Lei <ming.lei@redhat.com>
> >
> > There can't be FS IO in disk_release(), so it is safe to move rq_qos_exit()
> > there.
>
> The commit message only explains why it is safe to move rq_qos_exit() but
> not why moving that function call is useful. Please add an explanation of
> why moving that function call is useful and/or necessary.
>
> > diff --git a/block/genhd.c b/block/genhd.c
> > index 857e0a54da7dd..56f66c6fee943 100644
> > --- a/block/genhd.c
> > +++ b/block/genhd.c
> > @@ -627,7 +627,6 @@ void del_gendisk(struct gendisk *disk)
> > blk_mq_freeze_queue_wait(q);
> > - rq_qos_exit(q);
> > blk_sync_queue(q);
> > blk_flush_integrity();
> > /*
> > @@ -1119,7 +1118,7 @@ static void disk_release_mq(struct request_queue *q)
> > elevator_exit(q);
> > mutex_unlock(&q->sysfs_lock);
> > }
> > -
> > + rq_qos_exit(q);
> > __blk_mq_unfreeze_queue(q, true);
> > }
>
> Commit 8e141f9eb803 ("block: drain file system I/O on del_gendisk") removed
> the rq_qos_exit() call from blk_cleanup_queue(). This patch series does not
> restore the rq_qos_exit() call in blk_cleanup_queue(). I think that call
> should be restored since rq_qos_add() can be called before add_disk() is
> called. I'm referring to the following call chain:
>
> __alloc_disk_node()
> blkcg_init_queue()
> blk_iolatency_init()
> rq_qos_add()
>
> sd_probe() is one of the functions that can take an error path after
> __alloc_disk_node() has returned and before device_add_disk() is called.
blkcg_exit_queue() is called in disk_release(), so this error handing is
covered since put_disk() should be called once __alloc_disk_node()
is successful, no matter disk is added or not.
We move rq_qos_exit() to disk_release() too, then every FS IO related
resources are released in disk_release().
Thanks,
Ming
next prev parent reply other threads:[~2022-03-07 2:50 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-04 16:03 move more work to disk_release v3 Christoph Hellwig
2022-03-04 16:03 ` [PATCH 01/14] blk-mq: do not include passthrough requests in I/O accounting Christoph Hellwig
2022-03-06 1:02 ` Bart Van Assche
2022-03-07 3:12 ` Chaitanya Kulkarni
2022-03-08 3:13 ` Martin K. Petersen
2022-03-04 16:03 ` [PATCH 02/14] blk-mq: handle already freed tags gracefully in blk_mq_free_rqs Christoph Hellwig
2022-03-06 1:05 ` Bart Van Assche
2022-03-08 3:14 ` Martin K. Petersen
2022-03-04 16:03 ` [PATCH 03/14] scsi: don't use disk->private_data to find the scsi_driver Christoph Hellwig
2022-03-06 1:27 ` Bart Van Assche
2022-03-06 3:09 ` Ming Lei
2022-03-07 3:14 ` Chaitanya Kulkarni
2022-03-08 3:16 ` Martin K. Petersen
2022-03-04 16:03 ` [PATCH 04/14] sd: rename the scsi_disk.dev field Christoph Hellwig
2022-03-06 1:38 ` Bart Van Assche
2022-03-06 8:40 ` Christoph Hellwig
2022-03-06 20:34 ` Bart Van Assche
2022-03-06 3:31 ` Ming Lei
2022-03-06 8:43 ` Christoph Hellwig
2022-03-07 3:16 ` Chaitanya Kulkarni
2022-03-08 3:25 ` Martin K. Petersen
2022-03-04 16:03 ` [PATCH 05/14] sd: call sd_zbc_release_disk before releasing the scsi_device reference Christoph Hellwig
2022-03-06 1:44 ` Bart Van Assche
2022-03-06 3:33 ` Ming Lei
2022-03-08 3:25 ` Martin K. Petersen
2022-03-04 16:03 ` [PATCH 06/14] sd: delay calling free_opal_dev Christoph Hellwig
2022-03-06 1:45 ` Bart Van Assche
2022-03-06 3:41 ` Ming Lei
2022-03-07 3:17 ` Chaitanya Kulkarni
2022-03-08 3:26 ` Martin K. Petersen
2022-03-04 16:03 ` [PATCH 07/14] sd: make use of ->free_disk to simplify refcounting Christoph Hellwig
2022-03-06 2:03 ` Bart Van Assche
2022-03-06 8:46 ` Christoph Hellwig
2022-03-06 3:54 ` Ming Lei
2022-03-08 3:29 ` Martin K. Petersen
2022-03-04 16:03 ` [PATCH 08/14] sr: implement ->free_disk Christoph Hellwig
2022-03-06 4:01 ` Ming Lei
2022-03-06 21:44 ` Bart Van Assche
2022-03-08 3:31 ` Martin K. Petersen
2022-03-04 16:03 ` [PATCH 09/14] block: move blkcg initialization/destroy into disk allocation/release handler Christoph Hellwig
2022-03-07 3:18 ` Chaitanya Kulkarni
2022-03-04 16:03 ` [PATCH 10/14] block: don't remove hctx debugfs dir from blk_mq_exit_queue Christoph Hellwig
2022-03-04 16:03 ` [PATCH 11/14] block: move q_usage_counter release into blk_queue_release Christoph Hellwig
2022-03-04 16:03 ` [PATCH 12/14] block: move blk_exit_queue into disk_release Christoph Hellwig
2022-03-06 21:21 ` Bart Van Assche
2022-03-04 16:03 ` [PATCH 13/14] block: do more work in elevator_exit Christoph Hellwig
2022-03-04 16:03 ` [PATCH 14/14] block: move rq_qos_exit() into disk_release() Christoph Hellwig
2022-03-06 20:51 ` Bart Van Assche
2022-03-07 2:50 ` Ming Lei [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-03-08 5:51 move more work to disk_release v4 Christoph Hellwig
2022-03-08 5:52 ` [PATCH 14/14] block: move rq_qos_exit() into disk_release() Christoph Hellwig
2022-02-27 17:21 move more work to disk_release v2 Christoph Hellwig
2022-02-27 17:21 ` [PATCH 14/14] block: move rq_qos_exit() into disk_release() Christoph Hellwig
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=YiVy4jk00NQJPoiX@T590 \
--to=ming.lei@redhat.com \
--cc=axboe@kernel.dk \
--cc=bvanassche@acm.org \
--cc=hch@lst.de \
--cc=linux-block@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=martin.petersen@oracle.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