From: NeilBrown <neilb@suse.de>
To: heinzm@redhat.com
Cc: dm-devel@redhat.com
Subject: Re: [PATCH] dm-raid: fix bug when round up region_size
Date: Tue, 30 Sep 2014 22:30:51 +1000 [thread overview]
Message-ID: <20140930223051.653dd063@notabene.brown> (raw)
In-Reply-To: <1412074836-5820-1-git-send-email-heinzm@redhat.com>
[-- Attachment #1.1: Type: text/plain, Size: 1556 bytes --]
On Tue, 30 Sep 2014 13:00:36 +0200 heinzm@redhat.com wrote:
> From: Heinz Mauelshagen <heinzm@redhat.com>
>
> Liong,
> thanks for the catch.
> Introduced minor modification utilizing the is_power_of_2() inline.
>
> ---
>
> If region_size is not supplied by userspace and the device is very
> large, there is a bug in current code preventing region_size from being
> correctly set.
>
>
> Signed-off-by: Lidong Zhong <lzhong@suse.com>
> Acked-by: Heinz Mauelshagen <heinzm@redhat.com>
> Tested-by: Heinz Mauelshagen <heinzm@redhat.com>
>
> ---
> drivers/md/dm-raid.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/md/dm-raid.c b/drivers/md/dm-raid.c
> index 4880b69..264aef4 100644
> --- a/drivers/md/dm-raid.c
> +++ b/drivers/md/dm-raid.c
> @@ -325,8 +325,10 @@ static int validate_region_size(struct raid_set *rs, unsigned long region_size)
> */
> if (min_region_size > (1 << 13)) {
> /* If not a power of 2, make it the next power of 2 */
> - if (min_region_size & (min_region_size - 1))
> - region_size = 1 << fls(region_size);
> + if (is_power_of_2(min_region_size))
> + region_size = min_region_size;
> + else
> + region_size = 1 << fls(min_region_size);
> DMINFO("Choosing default region size of %lu sectors",
> region_size);
> } else {
If you really wanted to optimize, you could just do
region_size = roundup_pow_of_two(min_region_size);
there is all sorts of cool stuff in log2.h !!
NeilBrown
[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 828 bytes --]
[-- Attachment #2: Type: text/plain, Size: 0 bytes --]
prev parent reply other threads:[~2014-09-30 12:30 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-30 11:00 [PATCH] dm-raid: fix bug when round up region_size heinzm
2014-09-30 12:30 ` NeilBrown [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=20140930223051.653dd063@notabene.brown \
--to=neilb@suse.de \
--cc=dm-devel@redhat.com \
--cc=heinzm@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox