OSDN Git Service

dm stripe: remove minimum stripe size
authorMikulas Patocka <mpatocka@redhat.com>
Fri, 27 Jul 2012 14:08:01 +0000 (15:08 +0100)
committerAlasdair G Kergon <agk@redhat.com>
Fri, 27 Jul 2012 14:08:01 +0000 (15:08 +0100)
There is no technical limitation in device mapper that would prevent the
dm-stripe target from using a stripe size smaller than page size.

This patch removes the limit and makes stripe volumes portable across
architectures with different page size.

Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
drivers/md/dm-stripe.c

index 9690daa..6a20e9e 100644 (file)
@@ -109,8 +109,7 @@ static int stripe_ctr(struct dm_target *ti, unsigned int argc, char **argv)
                return -EINVAL;
        }
 
-       if (kstrtouint(argv[1], 10, &chunk_size) ||
-           (chunk_size < (PAGE_SIZE >> SECTOR_SHIFT))) {
+       if (kstrtouint(argv[1], 10, &chunk_size) || !chunk_size) {
                ti->error = "Invalid chunk_size";
                return -EINVAL;
        }