]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
Fix error message when stripping with format 1 2688/head
authorSébastien Han <sebastien.han@enovance.com>
Fri, 10 Oct 2014 12:14:22 +0000 (14:14 +0200)
committerSébastien Han <sebastien.han@enovance.com>
Fri, 10 Oct 2014 12:14:22 +0000 (14:14 +0200)
Since the option '--format' for specifying the rbd image format is
deprecated, we should recommend '--image-format' instead.

Signed-off-by: Sébastien Han <sebastien.han@enovance.com>
src/rbd.cc

index 01e8a86843e6eb1cd02043fda3355463942c6804..2d52439c3efd1c34995f147b4739a22bc2a959cd 100644 (file)
@@ -421,7 +421,7 @@ static int do_create(librbd::RBD &rbd, librados::IoCtx& io_ctx,
     // weird striping not allowed with format 1!
     if ((stripe_unit || stripe_count) &&
        (stripe_unit != (1ull << *order) && stripe_count != 1)) {
-      cerr << "non-default striping not allowed with format 1; use --format 2"
+      cerr << "non-default striping not allowed with format 1; use --image-format 2"
           << std::endl;
       return -EINVAL;
     }