From: Samuel Just Date: Mon, 22 Feb 2016 22:29:20 +0000 (-0800) Subject: config_opts: make filestore_queue_max_(ops|bytes) U64 X-Git-Tag: v10.1.0~259^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=30f548e9fb5641c03ad97a893337adb7572dbb48;p=ceph.git config_opts: make filestore_queue_max_(ops|bytes) U64 Signed-off-by: Samuel Just --- diff --git a/src/common/config_opts.h b/src/common/config_opts.h index 1b19ccfd5f8a..1f86e863b460 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -1019,8 +1019,8 @@ OPTION(filestore_xfs_extsize, OPT_BOOL, false) OPTION(filestore_journal_parallel, OPT_BOOL, false) OPTION(filestore_journal_writeahead, OPT_BOOL, false) OPTION(filestore_journal_trailing, OPT_BOOL, false) -OPTION(filestore_queue_max_ops, OPT_INT, 50) -OPTION(filestore_queue_max_bytes, OPT_INT, 100 << 20) +OPTION(filestore_queue_max_ops, OPT_U64, 50) +OPTION(filestore_queue_max_bytes, OPT_U64, 100 << 20) OPTION(filestore_caller_concurrency, OPT_INT, 10)