]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
common/options: compression options
authorSage Weil <sage@redhat.com>
Sun, 9 Dec 2018 12:52:44 +0000 (06:52 -0600)
committerSage Weil <sage@redhat.com>
Thu, 13 Dec 2018 12:26:52 +0000 (06:26 -0600)
Signed-off-by: Sage Weil <sage@redhat.com>
src/common/options.cc

index 7e6757f198059bf11ff45101ee3defe674eb35f3..e1ff5163cf0de00e17f1862584dda05ba390b3d2 100644 (file)
@@ -810,19 +810,19 @@ std::vector<Option> get_global_options() {
     // Compressor
     Option("compressor_zlib_isal", Option::TYPE_BOOL, Option::LEVEL_ADVANCED)
     .set_default(false)
-    .set_description(""),
+    .set_description("Use Intel ISA-L accelerated zlib implementation if available"),
 
     Option("compressor_zlib_level", Option::TYPE_INT, Option::LEVEL_ADVANCED)
     .set_default(5)
-    .set_description(""),
+    .set_description("Zlib compression level to use"),
 
     Option("qat_compressor_enabled", Option::TYPE_BOOL, Option::LEVEL_ADVANCED)
     .set_default(false)
-    .set_description("enable qat acceleration support for compression"),
+    .set_description("Enable Intel QAT acceleration support for compression if available"),
 
     Option("plugin_crypto_accelerator", Option::TYPE_STR, Option::LEVEL_ADVANCED)
     .set_default("crypto_isal")
-    .set_description(""),
+    .set_description("Crypto accelerator library to use"),
 
     Option("mempool_debug", Option::TYPE_BOOL, Option::LEVEL_ADVANCED)
     .set_default(false)