blob: 2e8e6f9049200f781fb0b3198c3d35ca3a0c48d7 [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002config CEPH_LIB
Kees Cook11e9ec62012-10-02 11:19:40 -07003 tristate "Ceph core library"
4 depends on INET
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07005 select LIBCRC32C
6 select CRYPTO_AES
Ilya Dryomovdc220db2014-09-05 20:16:52 +04007 select CRYPTO_CBC
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07008 select CRYPTO
Tommi Virtanene2c3d292011-03-25 16:40:48 -07009 select KEYS
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070010 default n
11 help
12 Choose Y or M here to include cephlib, which provides the
13 common functionality to both the Ceph filesystem and
14 to the rados block device (rbd).
15
16 More information at http://ceph.newdream.net/.
17
18 If unsure, say N.
19
20config CEPH_LIB_PRETTYDEBUG
21 bool "Include file:line in ceph debug output"
22 depends on CEPH_LIB
23 default n
24 help
25 If you say Y here, debug output will include a filename and
26 line to aid debugging. This increases kernel size and slows
27 execution slightly when debug call sites are enabled (e.g.,
28 via CONFIG_DYNAMIC_DEBUG).
29
30 If unsure, say N.
31
Noah Watkinsee3b56f2011-09-23 11:48:42 -070032config CEPH_LIB_USE_DNS_RESOLVER
33 bool "Use in-kernel support for DNS lookup"
34 depends on CEPH_LIB
35 select DNS_RESOLVER
36 default n
37 help
38 If you say Y here, hostnames (e.g. monitor addresses) will
39 be resolved using the CONFIG_DNS_RESOLVER facility.
40
41 For information on how to use CONFIG_DNS_RESOLVER consult
42 Documentation/networking/dns_resolver.txt
43
44 If unsure, say N.