Skip to content

Commit

Permalink
Merge pull request #6942 from x11562/stripe
Browse files Browse the repository at this point in the history
rbd: striping parameters should support 64bit integers

Reviewed-by: Jason Dillaman <dillaman@redhat.com>
Reviewed-by: Josh Durgin <jdurgin@redhat.com>
  • Loading branch information
jdurgin committed Dec 17, 2015
2 parents fbd5959 + 8284165 commit 8acfddc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tools/rbd/ArgumentTypes.cc
Expand Up @@ -223,8 +223,8 @@ void add_create_image_options(po::options_description *opt,
(IMAGE_FEATURES.c_str(), po::value<ImageFeatures>()->composing(),
("image features\n" + get_short_features_help(true)).c_str())
(IMAGE_SHARED.c_str(), po::bool_switch(), "shared image")
(IMAGE_STRIPE_UNIT.c_str(), po::value<uint32_t>(), "stripe unit")
(IMAGE_STRIPE_COUNT.c_str(), po::value<uint32_t>(), "stripe count");
(IMAGE_STRIPE_UNIT.c_str(), po::value<uint64_t>(), "stripe unit")
(IMAGE_STRIPE_COUNT.c_str(), po::value<uint64_t>(), "stripe count");

add_create_journal_options(opt);
}
Expand Down

0 comments on commit 8acfddc

Please sign in to comment.