--- tools/lvconvert.c | 4 ++-- tools/lvcreate.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) Index: LVM2.2.02.54/tools/lvconvert.c =================================================================== --- LVM2.2.02.54.orig/tools/lvconvert.c 2009-12-16 02:31:26.000000000 +0100 +++ LVM2.2.02.54/tools/lvconvert.c 2009-12-16 02:32:22.000000000 +0100 @@ -144,10 +144,10 @@ static int _read_params(struct lvconvert return 0; } lp->chunk_size = arg_uint_value(cmd, chunksize_ARG, 8); - if (lp->chunk_size < 8 || lp->chunk_size > 1024 || + if (lp->chunk_size < 1 || lp->chunk_size > 1024 || (lp->chunk_size & (lp->chunk_size - 1))) { log_error("Chunk size must be a power of 2 in the " - "range 4K to 512K"); + "range 512 to 512K"); return 0; } log_verbose("Setting chunksize to %d sectors.", lp->chunk_size); Index: LVM2.2.02.54/tools/lvcreate.c =================================================================== --- LVM2.2.02.54.orig/tools/lvcreate.c 2009-12-16 02:31:27.000000000 +0100 +++ LVM2.2.02.54/tools/lvcreate.c 2009-12-16 02:32:22.000000000 +0100 @@ -425,10 +425,10 @@ static int _lvcreate_params(struct lvcre return 0; } lp->chunk_size = arg_uint_value(cmd, chunksize_ARG, 8); - if (lp->chunk_size < 8 || lp->chunk_size > 1024 || + if (lp->chunk_size < 1 || lp->chunk_size > 1024 || (lp->chunk_size & (lp->chunk_size - 1))) { log_error("Chunk size must be a power of 2 in the " - "range 4K to 512K"); + "range 512 to 512K"); return 0; } log_verbose("Setting chunksize to %d sectors.", lp->chunk_size);