From: Jeff Moyer <jmoyer@redhat.com>
To: Ming Lei <ming.lei@canonical.com>
Cc: Jens Axboe <axboe@kernel.dk>,
linux-kernel@vger.kernel.org, Ming Lin <ming.l@ssi.samsung.com>,
Kent Overstreet <kent.overstreet@gmail.com>,
Christoph Hellwig <hch@infradead.org>
Subject: Re: [PATCH v2 6/7] blk-mq: fix for trace_block_plug()
Date: Tue, 20 Oct 2015 11:22:34 -0400 [thread overview]
Message-ID: <x491tcpwon9.fsf@segfault.boston.devel.redhat.com> (raw)
In-Reply-To: <1445354037-27000-7-git-send-email-ming.lei@canonical.com> (Ming Lei's message of "Tue, 20 Oct 2015 23:13:56 +0800")
Ming Lei <ming.lei@canonical.com> writes:
> The trace point is for tracing plug event of each request
> queue instead of each task, so we should check the request
> count in the plug list from current queue instead of
> current task.
>
> Signed-off-by: Ming Lei <ming.lei@canonical.com>
Reviewed-by: Jeff Moyer <jmoyer@redhat.com>
> ---
> block/blk-mq.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/block/blk-mq.c b/block/blk-mq.c
> index edbc877..e00b0d8 100644
> --- a/block/blk-mq.c
> +++ b/block/blk-mq.c
> @@ -1380,7 +1380,7 @@ static void blk_sq_make_request(struct request_queue *q, struct bio *bio)
> plug = current->plug;
> if (plug) {
> blk_mq_bio_to_request(rq, bio);
> - if (list_empty(&plug->mq_list))
> + if (!request_count)
> trace_block_plug(q);
> else if (request_count >= BLK_MAX_REQUEST_COUNT) {
> blk_flush_plug_list(plug, false);
next prev parent reply other threads:[~2015-10-20 15:22 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-20 15:13 [PATCH v2 0/7] block: some misc changes Ming Lei
2015-10-20 15:13 ` [PATCH v2 1/7] block: fix plug list flushing for nomerge queues Ming Lei
2015-10-20 15:13 ` [PATCH v2 2/7] block: setup bi_phys_segments after splitting Ming Lei
2015-10-20 15:13 ` [PATCH v2 3/7] block: avoid to merge splitted bio Ming Lei
2015-10-20 15:13 ` [PATCH v2 4/7] blk-mq: check bio_mergeable() early before merging Ming Lei
2015-10-20 15:13 ` [PATCH v2 5/7] block: " Ming Lei
2015-10-20 15:22 ` Jeff Moyer
2015-10-20 15:13 ` [PATCH v2 6/7] blk-mq: fix for trace_block_plug() Ming Lei
2015-10-20 15:22 ` Jeff Moyer [this message]
2015-10-20 15:13 ` [PATCH v2 7/7] blk-mq: mark ctx as pending at batch in flush plug path Ming Lei
2015-10-21 21:01 ` [PATCH v2 0/7] block: some misc changes 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=x491tcpwon9.fsf@segfault.boston.devel.redhat.com \
--to=jmoyer@redhat.com \
--cc=axboe@kernel.dk \
--cc=hch@infradead.org \
--cc=kent.overstreet@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=ming.l@ssi.samsung.com \
--cc=ming.lei@canonical.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
Powered by JetHome