From: Sage Weil Date: Wed, 22 Mar 2017 02:27:23 +0000 (-0500) Subject: os/bluestore: default 16KB min_alloc_size on ssd X-Git-Tag: v12.0.1~9^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=7412b19d11ad078890ff0ee7c339685dc2a1e785;p=ceph-ci.git os/bluestore: default 16KB min_alloc_size on ssd Signed-off-by: Sage Weil --- diff --git a/src/common/config_opts.h b/src/common/config_opts.h index f29940b8a79..2b0aed02244 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -1049,7 +1049,7 @@ 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) +OPTION(bluestore_min_alloc_size_ssd, OPT_U32, 16*1024) OPTION(bluestore_max_alloc_size, OPT_U32, 0) OPTION(bluestore_prefer_deferred_size, OPT_U32, 0) OPTION(bluestore_prefer_deferred_size_hdd, OPT_U32, 32768)