mirror of
https://github.com/ceph/ceph
synced 2025-02-23 02:57:21 +00:00
Merge pull request #20895 from tchaikov/wip-drop-unused-options
common/options: drop unused options Reviewed-by: John Spray <john.spray@redhat.com>
This commit is contained in:
commit
872df82aa8
@ -94,12 +94,6 @@ OPTION(xio_max_send_inline, OPT_INT) // xio maximum threshold to send inline
|
||||
OPTION(compressor_zlib_isal, OPT_BOOL)
|
||||
OPTION(compressor_zlib_level, OPT_INT) //regular zlib compression level, not applicable to isa-l optimized version
|
||||
|
||||
OPTION(async_compressor_enabled, OPT_BOOL)
|
||||
OPTION(async_compressor_type, OPT_STR)
|
||||
OPTION(async_compressor_threads, OPT_INT)
|
||||
OPTION(async_compressor_thread_timeout, OPT_INT)
|
||||
OPTION(async_compressor_thread_suicide_timeout, OPT_INT)
|
||||
|
||||
OPTION(plugin_crypto_accelerator, OPT_STR)
|
||||
|
||||
OPTION(mempool_debug, OPT_BOOL)
|
||||
|
@ -776,26 +776,6 @@ std::vector<Option> get_global_options() {
|
||||
.set_default(5)
|
||||
.set_description(""),
|
||||
|
||||
Option("async_compressor_enabled", Option::TYPE_BOOL, Option::LEVEL_ADVANCED)
|
||||
.set_default(false)
|
||||
.set_description(""),
|
||||
|
||||
Option("async_compressor_type", Option::TYPE_STR, Option::LEVEL_ADVANCED)
|
||||
.set_default("snappy")
|
||||
.set_description(""),
|
||||
|
||||
Option("async_compressor_threads", Option::TYPE_INT, Option::LEVEL_ADVANCED)
|
||||
.set_default(2)
|
||||
.set_description(""),
|
||||
|
||||
Option("async_compressor_thread_timeout", Option::TYPE_INT, Option::LEVEL_ADVANCED)
|
||||
.set_default(5)
|
||||
.set_description(""),
|
||||
|
||||
Option("async_compressor_thread_suicide_timeout", Option::TYPE_INT, Option::LEVEL_ADVANCED)
|
||||
.set_default(30)
|
||||
.set_description(""),
|
||||
|
||||
Option("plugin_crypto_accelerator", Option::TYPE_STR, Option::LEVEL_ADVANCED)
|
||||
.set_default("crypto_isal")
|
||||
.set_description(""),
|
||||
|
Loading…
Reference in New Issue
Block a user