diff options
author | Sage Weil <sage@newdream.net> | 2009-10-06 11:31:15 -0700 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2009-10-06 11:31:15 -0700 |
commit | 9030aaf9bf0a1eee47a154c316c789e959638b0f (patch) | |
tree | bb6dbc96fd181fd3883157277c4301edfaaf5179 /fs/ceph/Kconfig | |
parent | 76aa844d5b2fb8c839180d3f5874e333b297e5fd (diff) | |
download | linux-9030aaf9bf0a1eee47a154c316c789e959638b0f.tar.bz2 |
ceph: Kconfig, Makefile
Kconfig options and Makefile.
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/Kconfig')
-rw-r--r-- | fs/ceph/Kconfig | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/fs/ceph/Kconfig b/fs/ceph/Kconfig new file mode 100644 index 000000000000..bc1fbd956187 --- /dev/null +++ b/fs/ceph/Kconfig @@ -0,0 +1,26 @@ +config CEPH_FS + tristate "Ceph distributed file system (EXPERIMENTAL)" + depends on INET && EXPERIMENTAL + select LIBCRC32C + help + Choose Y or M here to include support for mounting the + experimental Ceph distributed file system. Ceph is an extremely + scalable file system designed to provide high performance, + reliable access to petabytes of storage. + + More information at http://ceph.newdream.net/. + + If unsure, say N. + +config CEPH_FS_PRETTYDEBUG + bool "Include file:line in ceph debug output" + depends on CEPH_FS + default n + help + If you say Y here, debug output will include a filename and + line to aid debugging. This icnreases kernel size and slows + execution slightly when debug call sites are enabled (e.g., + via CONFIG_DYNAMIC_DEBUG). + + If unsure, say N. + |