diff options
author | Greg Farnum <greg@inktank.com> | 2013-04-17 15:41:19 -0700 |
---|---|---|
committer | Greg Farnum <greg@inktank.com> | 2013-04-17 15:41:19 -0700 |
commit | 7b408ece37cb20452539642c0cc5e2dae9114b4f (patch) | |
tree | acaa7adcca54458970289a79e7ed38dd61cd27a6 | |
parent | f875c0c9138ecfd76d6fd04132e697d4a60bd1a3 (diff) | |
download | ceph-7b408ece37cb20452539642c0cc5e2dae9114b4f.tar.gz |
client: disable invalidate callbacks :(
See #4746; it deadlocks right now.
Signed-off-by: Greg Farnum <greg@inktank.com>
-rw-r--r-- | src/common/config_opts.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/config_opts.h b/src/common/config_opts.h index 19f3082ec4b..53e4ca5e5f4 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -225,7 +225,7 @@ 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 // note: the max amount of "in flight" dirty data is roughly (max - target) -OPTION(fuse_use_invalidate_cb, OPT_BOOL, true) // use fuse 2.8+ invalidate callback to keep page cache consistent +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) OPTION(fuse_default_permissions, OPT_BOOL, true) OPTION(fuse_big_writes, OPT_BOOL, true) |