dm-stripe.c: The stripe width must be at least the page size. --- diff/drivers/md/dm-stripe.c 2004-02-23 13:56:43.000000000 +0000 +++ source/drivers/md/dm-stripe.c 2004-02-26 16:54:14.000000000 +0000 @@ -97,7 +97,8 @@ static int stripe_ctr(struct dm_target * /* * chunk_size is a power of two */ - if (!chunk_size || (chunk_size & (chunk_size - 1))) { + if (!chunk_size || (chunk_size & (chunk_size - 1)) || + (chunk_size < PAGE_SIZE)) { ti->error = "dm-stripe: Invalid chunk size"; return -EINVAL; }