]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
common/config_opts: rename bluestore_{min|max}_csum_block for the sake of uniformity
authorIgor Fedotov <ifedotov@mirantis.com>
Tue, 4 Oct 2016 12:31:51 +0000 (12:31 +0000)
committerIgor Fedotov <ifedotov@mirantis.com>
Wed, 19 Oct 2016 14:35:15 +0000 (14:35 +0000)
Signed-off-by: Igor Fedotov <ifedotov@mirantis.com>
src/common/config_opts.h

index 15db46407b55907d973261575a89b314d55b1d6a..4024b592ac0df6e7b749aa2231628f0275a01c79 100644 (file)
@@ -971,8 +971,8 @@ OPTION(bluestore_block_preallocate_file, OPT_BOOL, false) //whether preallocate
 OPTION(bluestore_precondition_bluefs, OPT_U64, 128*1024*1024)  // write this much data at mkfs
 OPTION(bluestore_precondition_bluefs_block, OPT_U64, 1048576)
 OPTION(bluestore_csum_type, OPT_STR, "crc32c") // none|xxhash32|xxhash64|crc32c|crc32c_16|crc32c_8
-OPTION(bluestore_min_csum_block, OPT_U32, 4096)
-OPTION(bluestore_max_csum_block, OPT_U32, 64*1024)
+OPTION(bluestore_csum_min_block, OPT_U32, 4096)
+OPTION(bluestore_csum_max_block, OPT_U32, 64*1024)
 OPTION(bluestore_min_alloc_size, OPT_U32, 0)
 OPTION(bluestore_min_alloc_size_hdd, OPT_U32, 64*1024)
 OPTION(bluestore_min_alloc_size_ssd, OPT_U32, 4*1024)