From ba1ee4536ff9e8e6b2b5560d49d9e7b8408747c6 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 5 Jun 2017 10:27:12 -0400 Subject: [PATCH] os/bluestore: fix warning 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 f693913bf99e..14164589bf89 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -1131,7 +1131,7 @@ OPTION(bluestore_allocator, OPT_STR, "bitmap") // stupid | bitmap OPTION(bluestore_freelist_blocks_per_key, OPT_INT, 128) OPTION(bluestore_bitmapallocator_blocks_per_zone, OPT_INT, 1024) // must be power of 2 aligned, e.g., 512, 1024, 2048... OPTION(bluestore_bitmapallocator_span_size, OPT_INT, 1024) // must be power of 2 aligned, e.g., 512, 1024, 2048... -OPTION(bluestore_max_deferred_txc, OPT_INT, 32) +OPTION(bluestore_max_deferred_txc, OPT_U64, 32) OPTION(bluestore_rocksdb_options, OPT_STR, "compression=kNoCompression,max_write_buffer_number=4,min_write_buffer_number_to_merge=1,recycle_log_file_num=4,write_buffer_size=268435456,writable_file_max_buffer_size=0,compaction_readahead_size=2097152") OPTION(bluestore_fsck_on_mount, OPT_BOOL, false) OPTION(bluestore_fsck_on_mount_deep, OPT_BOOL, true) -- 2.47.3