From: Igor Fedotov Date: Tue, 4 Oct 2016 12:31:51 +0000 (+0000) Subject: common/config_opts: rename bluestore_{min|max}_csum_block for the sake of uniformity X-Git-Tag: v11.1.0~539^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=78c2c43c460db7e0bc3c6fc15d19429dfc54496a;p=ceph-ci.git common/config_opts: rename bluestore_{min|max}_csum_block for the sake of uniformity Signed-off-by: Igor Fedotov --- diff --git a/src/common/config_opts.h b/src/common/config_opts.h index 15db46407b5..4024b592ac0 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -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)