summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSage Weil <sage@inktank.com>2013-03-04 10:08:49 -0800
committerSage Weil <sage@inktank.com>2013-03-04 10:08:49 -0800
commit1cfc3ae0d45013bae9dc0e955e6848105ffb46ea (patch)
treeecbc4f69373004cbdbf298dfcf0607c098c02fa2
parent0f42eddef5da6c1babe9ed51ceaa3212a42c2ec4 (diff)
downloadceph-1cfc3ae0d45013bae9dc0e955e6848105ffb46ea.tar.gz
jounal: disable aio
There is a deadlock issue in the aio code, see #4079. Disable for the time being. Signed-off-by: Sage Weil <sage@inktank.com>
-rw-r--r--src/common/config_opts.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/config_opts.h b/src/common/config_opts.h
index 3963b31aff9..ff8b9bc484d 100644
--- a/src/common/config_opts.h
+++ b/src/common/config_opts.h
@@ -439,7 +439,7 @@ OPTION(filestore_kill_at, OPT_INT, 0) // inject a failure at the n'th
OPTION(filestore_inject_stall, OPT_INT, 0) // artificially stall for N seconds in op queue thread
OPTION(filestore_fail_eio, OPT_BOOL, true) // fail/crash on EIO
OPTION(journal_dio, OPT_BOOL, true)
-OPTION(journal_aio, OPT_BOOL, true)
+OPTION(journal_aio, OPT_BOOL, false)
OPTION(journal_block_align, OPT_BOOL, true)
OPTION(journal_max_write_bytes, OPT_INT, 10 << 20)
OPTION(journal_max_write_entries, OPT_INT, 100)