From: Jens Axboe <axboe@kernel.dk>
To: Christoph Hellwig <hch@infradead.org>
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 10:35:51 -0700 [thread overview]
Message-ID: <d1d153d2-018b-10df-7d5b-d883153c9a05@kernel.dk> (raw)
In-Reply-To: <20171110173425.GB15114@infradead.org>
On 11/10/2017 10:34 AM, Christoph Hellwig wrote:
> On Fri, Nov 10, 2017 at 10:31:29AM -0700, Jens Axboe wrote:
>> On 11/10/2017 10:29 AM, Christoph Hellwig 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>
>>>
>>> Do we even still need the blk_mq_hctx_has_pending helper at all?
>>
>> We do, otherwise we end up running the queue for cases where we don't
>> need to. The caller doesn't always know if it's necessary. And even
>> if the caller can figure it out, it'd add complicated logic for some
>> of those cases (like flush). It's easier/cleaner and more efficient
>> to keep it.
>
> I didn't mean the logic - just wondering if we need the separate
> helper given it has a single caller left.
>
> But it's really just a cosmetic point.
Ah, that makes more sense. Since the function isn't necessarily that
straight forward if open coded (to read, I mean), I'd prefer to keep
it separate. But yeah, cosmetic, can always be revisited.
--
Jens Axboe
next prev parent reply other threads:[~2017-11-10 17:35 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 [this message]
2017-11-10 22:28 ` Omar Sandoval
2017-11-10 22:31 ` Jens Axboe
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=d1d153d2-018b-10df-7d5b-d883153c9a05@kernel.dk \
--to=axboe@kernel.dk \
--cc=hch@infradead.org \
--cc=linux-block@vger.kernel.org \
/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