]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
md/raid5: Use is_power_of_2() in raid5_reconfig()/raid6_reconfig().
authorAndre Noll <maan@systemlinux.org>
Wed, 17 Jun 2009 22:46:10 +0000 (08:46 +1000)
committerNeilBrown <neilb@suse.de>
Wed, 17 Jun 2009 22:46:10 +0000 (08:46 +1000)
Signed-off-by: Andre Noll <maan@systemlinux.org>
Signed-off-by: NeilBrown <neilb@suse.de>
drivers/md/raid5.c

index eaa2d3ee2b5db1ecf70bae14ebe3e47f9c5555f5..72e8a324dcfb53e18fc4162083410a989640553d 100644 (file)
@@ -5167,8 +5167,7 @@ static int raid5_reconfig(mddev_t *mddev, int new_layout, int new_chunk)
        if (new_layout >= 0 && !algorithm_valid_raid5(new_layout))
                return -EINVAL;
        if (new_chunk > 0) {
-               if (new_chunk & (new_chunk-1))
-                       /* not a power of 2 */
+               if (!is_power_of_2(new_chunk))
                        return -EINVAL;
                if (new_chunk < PAGE_SIZE)
                        return -EINVAL;
@@ -5206,8 +5205,7 @@ static int raid6_reconfig(mddev_t *mddev, int new_layout, int new_chunk)
        if (new_layout >= 0 && !algorithm_valid_raid6(new_layout))
                return -EINVAL;
        if (new_chunk > 0) {
-               if (new_chunk & (new_chunk-1))
-                       /* not a power of 2 */
+               if (!is_power_of_2(new_chunk))
                        return -EINVAL;
                if (new_chunk < PAGE_SIZE)
                        return -EINVAL;