From: Jens Axboe <axboe@kernel.dk>
To: Mike Snitzer <snitzer@redhat.com>
Cc: linux-kernel@vger.kernel.org, dm-devel@redhat.com, l.flis@cyfronet.pl
Subject: Re: [PATCH] block: properly stack underlying max_segment_size to DM device
Date: Fri, 18 Oct 2013 09:46:10 -0600 [thread overview]
Message-ID: <20131018154610.GA9304@kernel.dk> (raw)
In-Reply-To: <1382106206-4459-1-git-send-email-snitzer@redhat.com>
On Fri, Oct 18 2013, Mike Snitzer wrote:
> Without this patch all DM devices will default to BLK_MAX_SEGMENT_SIZE
> (65536) even if the underlying device(s) have a larger value -- this is
> due to blk_stack_limits() using min_not_zero() when stacking the
> max_segment_size limit.
>
> # cat /sys/block/sda/queue/max_segment_size
> 1073741824
>
> # cat /sys/block/dm-0/queue/max_segment_size
> before patch:
> 65536
>
> after patch:
> 1073741824
>
> Reported-by: Lukasz Flis <l.flis@cyfronet.pl>
> Signed-off-by: Mike Snitzer <snitzer@redhat.com>
> Cc: stable@vger.kernel.org # v3.3+
> ---
> block/blk-settings.c | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/block/blk-settings.c b/block/blk-settings.c
> index c50ecf0..29f28bb 100644
> --- a/block/blk-settings.c
> +++ b/block/blk-settings.c
> @@ -143,6 +143,7 @@ void blk_set_stacking_limits(struct queue_limits *lim)
> /* Inherit limits from component devices */
> lim->discard_zeroes_data = 1;
> lim->max_segments = USHRT_MAX;
> + lim->max_segment_size = UINT_MAX;
> lim->max_hw_sectors = UINT_MAX;
> lim->max_sectors = UINT_MAX;
> lim->max_write_same_sectors = UINT_MAX;
Thanks, applied for 3.13.
--
Jens Axboe
prev parent reply other threads:[~2013-10-18 15:46 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-18 14:23 [PATCH] block: properly stack underlying max_segment_size to DM device Mike Snitzer
2013-10-18 15:46 ` 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=20131018154610.GA9304@kernel.dk \
--to=axboe@kernel.dk \
--cc=dm-devel@redhat.com \
--cc=l.flis@cyfronet.pl \
--cc=linux-kernel@vger.kernel.org \
--cc=snitzer@redhat.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.