From 7412b19d11ad078890ff0ee7c339685dc2a1e785 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Tue, 21 Mar 2017 21:27:23 -0500 Subject: [PATCH] os/bluestore: default 16KB min_alloc_size on ssd Signed-off-by: Sage Weil --- src/common/config_opts.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/config_opts.h b/src/common/config_opts.h index f29940b8a79a..2b0aed02244a 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) -- 2.47.3