Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1250859

Re: [PATCH v1 4/6] block: check bio_mergeable() early before merging

From Jeff Moyer <jmoyer@redhat.com>
Newsgroups linux.kernel
Subject Re: [PATCH v1 4/6] block: check bio_mergeable() early before merging
Date 2015-10-19 17:50 +0200
Message-ID <qlkRd-ll-27@gated-at.bofh.it> (permalink)
References <qkC3L-21m-3@gated-at.bofh.it> <qkC3M-21m-7@gated-at.bofh.it> <qlkxR-8qb-51@gated-at.bofh.it> <qlkHx-9O-51@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Ming Lei <ming.lei@canonical.com> writes:

> On Mon, Oct 19, 2015 at 11:27 PM, Jeff Moyer <jmoyer@redhat.com> wrote:
>> Ming Lei <ming.lei@canonical.com> writes:
>>
>>> After bio splitting is introduced, one bio can be splitted
>>> and it is marked as NOMERGE because it is too fat to be merged,
>>> so check bio_mergeable() earlier to avoid to try to merge it
>>> unnecessarily.
>>>
>>> Signed-off-by: Ming Lei <ming.lei@canonical.com>
>>
>> Reviewed-by: Jeff Moyer <jmoyer@redhat.com>
>>
>> Ming, do you think we should also add a check in blk_attempt_plug_merge?
>
> No, because 'request_count' need to be figured out for automatic flush plug.

Interesting.  See my follow-up to patch 5.  :)

-Jeff

>
> Thanks,
>
>>
>> -Jeff
>>
>>> ---
>>>  block/elevator.c | 2 +-
>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/block/elevator.c b/block/elevator.c
>>> index 84d6394..c3555c9 100644
>>> --- a/block/elevator.c
>>> +++ b/block/elevator.c
>>> @@ -420,7 +420,7 @@ int elv_merge(struct request_queue *q, struct request **req, struct bio *bio)
>>>        *      noxmerges: Only simple one-hit cache try
>>>        *      merges:    All merge tries attempted
>>>        */
>>> -     if (blk_queue_nomerges(q))
>>> +     if (blk_queue_nomerges(q) || !bio_mergeable(bio))
>>>               return ELEVATOR_NO_MERGE;
>>>
>>>       /*
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>> Please read the FAQ at  http://www.tux.org/lkml/
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

Re: [PATCH v1 4/6] block: check bio_mergeable() early before merging Jeff Moyer <jmoyer@redhat.com> - 2015-10-19 17:30 +0200
  Re: [PATCH v1 4/6] block: check bio_mergeable() early before merging Ming Lei <ming.lei@canonical.com> - 2015-10-19 17:40 +0200
    Re: [PATCH v1 4/6] block: check bio_mergeable() early before merging Jeff Moyer <jmoyer@redhat.com> - 2015-10-19 17:50 +0200

csiph-web