From: Sage Weil Date: Fri, 15 Jun 2012 17:00:54 +0000 (-0700) Subject: filestore: disable 'filestore fiemap' by default X-Git-Tag: v0.48argonaut~58 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=9d4ce4bce68785b0112013b9846bb0f4085a023e;p=ceph.git filestore: disable 'filestore fiemap' by default We've seen this failing on both btrfs (Guido) and XFS (Oliver). This works around #2535. Signed-off-by: Sage Weil --- diff --git a/src/common/config_opts.h b/src/common/config_opts.h index c64f8a510594a..93864d8196e4b 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -350,7 +350,7 @@ OPTION(filestore_btrfs_trans, OPT_BOOL, false) OPTION(filestore_btrfs_snap, OPT_BOOL, true) OPTION(filestore_btrfs_clone_range, OPT_BOOL, true) OPTION(filestore_fsync_flushes_journal_data, OPT_BOOL, false) -OPTION(filestore_fiemap, OPT_BOOL, true) // (try to) use fiemap +OPTION(filestore_fiemap, OPT_BOOL, false) // (try to) use fiemap OPTION(filestore_flusher, OPT_BOOL, true) OPTION(filestore_flusher_max_fds, OPT_INT, 512) OPTION(filestore_sync_flush, OPT_BOOL, false)