From: Jens Axboe <axboe@kernel.dk>
To: Omar Sandoval <osandov@osandov.com>
Cc: "linux-block@vger.kernel.org" <linux-block@vger.kernel.org>
Subject: Re: [PATCH] blk-mq: only run the hardware queue if IO is pending
Date: Fri, 10 Nov 2017 15:31:43 -0700 [thread overview]
Message-ID: <21e778e1-cd04-c503-3384-d6569efb30c1@kernel.dk> (raw)
In-Reply-To: <20171110222825.GB5449@vader.DHCP.thefacebook.com>
On 11/10/2017 03:28 PM, Omar Sandoval wrote:
> On Fri, Nov 10, 2017 at 09:12:18AM -0700, Jens Axboe wrote:
>> Currently we are inconsistent in when we decide to run the queue. Using
>> blk_mq_run_hw_queues() we check if the hctx has pending IO before
>> running it, but we don't do that from the individual queue run function,
>> blk_mq_run_hw_queue(). This results in a lot of extra and pointless
>> queue runs, potentially, on flush requests and (much worse) on tag
>> starvation situations. This is observable just looking at the top
>> output, with lots of kworkers active. For the !async runs, it just adds
>> to the CPU overhead of blk-mq.
>>
>> Move the has-pending check into the run function instead of having
>> callers do it.
>>
>> Signed-off-by: Jens Axboe <axboe@kernel.dk>
>>
>> ---
>>
>> diff --git a/block/blk-mq-sched.c b/block/blk-mq-sched.c
>> index 6f4bdb8209f7..c117bd8fd1f6 100644
>> --- a/block/blk-mq-sched.c
>> +++ b/block/blk-mq-sched.c
>> @@ -81,12 +81,7 @@ static bool blk_mq_sched_restart_hctx(struct blk_mq_hw_ctx *hctx)
>> } else
>> clear_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state);
>>
>> - if (blk_mq_hctx_has_pending(hctx)) {
>> - blk_mq_run_hw_queue(hctx, true);
>> - return true;
>> - }
>> -
>> - return false;
>> + return blk_mq_run_hw_queue(hctx, true);
>> }
>>
>> /*
>> diff --git a/block/blk-mq.c b/block/blk-mq.c
>> index bfe24a5b62a3..a2a4271f5ab8 100644
>> --- a/block/blk-mq.c
>> +++ b/block/blk-mq.c
>> @@ -61,10 +61,10 @@ static int blk_mq_poll_stats_bkt(const struct request *rq)
>> /*
>> * Check if any of the ctx's have pending work in this hardware queue
>> */
>> -bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
>> +static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
>> {
>> - return sbitmap_any_bit_set(&hctx->ctx_map) ||
>> - !list_empty_careful(&hctx->dispatch) ||
>> + return !list_empty_careful(&hctx->dispatch) ||
>> + sbitmap_any_bit_set(&hctx->ctx_map) ||
>> blk_mq_sched_has_work(hctx);
>> }
>>
>> @@ -1253,9 +1253,14 @@ void blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
>> }
>> EXPORT_SYMBOL(blk_mq_delay_run_hw_queue);
>>
>> -void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
>> +bool blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
>> {
>> - __blk_mq_delay_run_hw_queue(hctx, async, 0);
>> + if (blk_mq_hctx_has_pending(hctx)) {
>> + __blk_mq_delay_run_hw_queue(hctx, async, 0);
>> + return true;
>> + }
>> +
>> + return false;
>> }
>> EXPORT_SYMBOL(blk_mq_run_hw_queue);
>>
>> @@ -1265,8 +1270,7 @@ void blk_mq_run_hw_queues(struct request_queue *q, bool async)
>> int i;
>>
>> queue_for_each_hw_ctx(q, hctx, i) {
>> - if (!blk_mq_hctx_has_pending(hctx) ||
>> - blk_mq_hctx_stopped(hctx))
>> + if (blk_mq_hctx_stopped(hctx))
>> continue;
>>
>> blk_mq_run_hw_queue(hctx, async);
>
> Minor cosmetic point, I find this double-negative thing confusing,
> how about:
>
> queue_for_each_hw_ctx(q, hctx, i) {
> if (!blk_mq_hctx_stopped(hctx))
> blk_mq_run_hw_queue(hctx, async);
Really? It's an easier read for me - if stopped, continue. Then run after that.
!stopped seems like more of a double negative :-)
> Other than that,
>
> Reviewed-by: Omar Sandoval <osandov@fb.com>
Thanks for the review!
--
Jens Axboe
prev parent reply other threads:[~2017-11-10 22:31 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-10 16:12 [PATCH] blk-mq: only run the hardware queue if IO is pending Jens Axboe
2017-11-10 17:29 ` Christoph Hellwig
2017-11-10 17:31 ` Jens Axboe
2017-11-10 17:34 ` Christoph Hellwig
2017-11-10 17:35 ` Jens Axboe
2017-11-10 22:28 ` Omar Sandoval
2017-11-10 22:31 ` Jens Axboe [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=21e778e1-cd04-c503-3384-d6569efb30c1@kernel.dk \
--to=axboe@kernel.dk \
--cc=linux-block@vger.kernel.org \
--cc=osandov@osandov.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