diff options
author | vignesh babu <vignesh.babu@wipro.com> | 2007-10-19 22:38:44 +0100 |
---|---|---|
committer | Alasdair G Kergon <agk@redhat.com> | 2007-10-20 02:01:06 +0100 |
commit | 6f3c3f0afa50782dc1742c968646c491657d255a (patch) | |
tree | cb1f69504094cec60564be51c405bba5eb66c322 /drivers/md/dm-snap.c | |
parent | ae9da83f6d800fe1f3b23bfbc8f7222ad1c5bb74 (diff) | |
download | linux-3.10-6f3c3f0afa50782dc1742c968646c491657d255a.tar.gz linux-3.10-6f3c3f0afa50782dc1742c968646c491657d255a.tar.bz2 linux-3.10-6f3c3f0afa50782dc1742c968646c491657d255a.zip |
dm: use is_power_of_2
Replacing n & (n - 1) for power of 2 check by is_power_of_2(n)
Signed-off-by: vignesh babu <vignesh.babu@wipro.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers/md/dm-snap.c')
-rw-r--r-- | drivers/md/dm-snap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/md/dm-snap.c b/drivers/md/dm-snap.c index 98a633f3d6b..cee16fadd9e 100644 --- a/drivers/md/dm-snap.c +++ b/drivers/md/dm-snap.c @@ -17,6 +17,7 @@ #include <linux/module.h> #include <linux/slab.h> #include <linux/vmalloc.h> +#include <linux/log2.h> #include "dm-snap.h" #include "dm-bio-list.h" @@ -415,7 +416,7 @@ static int set_chunk_size(struct dm_snapshot *s, const char *chunk_size_arg, chunk_size = round_up(chunk_size, PAGE_SIZE >> 9); /* Check chunk_size is a power of 2 */ - if (chunk_size & (chunk_size - 1)) { + if (!is_power_of_2(chunk_size)) { *error = "Chunk size is not a power of 2"; return -EINVAL; } |