From: Li Wang Date: Mon, 23 Dec 2013 03:31:15 +0000 (+0800) Subject: client: Make inline size tunable X-Git-Tag: v0.78~234^2^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=81c4f54e0acd29ea53a69124d6ad58c4575470fd;p=ceph.git client: Make inline size tunable Signed-off-by: Yunchuan Wen Signed-off-by: Li Wang --- diff --git a/src/common/config_opts.h b/src/common/config_opts.h index 47e3783de2fc..5b905f8db3f3 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -262,6 +262,7 @@ OPTION(client_oc_max_dirty_age, OPT_DOUBLE, 5.0) // max age in cache before OPTION(client_oc_max_objects, OPT_INT, 1000) // max objects in cache OPTION(client_debug_force_sync_read, OPT_BOOL, false) // always read synchronously (go to osds) OPTION(client_debug_inject_tick_delay, OPT_INT, 0) // delay the client tick for a number of seconds +OPTION(client_max_inline_size, OPT_INT, 4096) // note: the max amount of "in flight" dirty data is roughly (max - target) OPTION(fuse_use_invalidate_cb, OPT_BOOL, false) // use fuse 2.8+ invalidate callback to keep page cache consistent OPTION(fuse_allow_other, OPT_BOOL, true)