[GFS2/DLM] use sysfs
[deliverable/linux.git] / fs / dlm / Kconfig
1 menu "Distributed Lock Manager"
2 depends on EXPERIMENTAL && INET
3
4 config DLM
5 tristate "Distributed Lock Manager (DLM)"
6 depends on IPV6 || IPV6=n
7 select CONFIGFS_FS
8 select SYSFS
9 select IP_SCTP if DLM_SCTP
10 help
11 A general purpose distributed lock manager for kernel or userspace
12 applications.
13
14 choice
15 prompt "Select DLM communications protocol"
16 depends on DLM
17 default DLM_TCP
18 help
19 The DLM Can use TCP or SCTP for it's network communications.
20 SCTP supports multi-homed operations whereas TCP doesn't.
21 However, SCTP seems to have stability problems at the moment.
22
23 config DLM_TCP
24 bool "TCP/IP"
25
26 config DLM_SCTP
27 bool "SCTP"
28
29 endchoice
30
31 config DLM_DEBUG
32 bool "DLM debugging"
33 depends on DLM
34 help
35 Under the debugfs mount point, the name of each lockspace will
36 appear as a file in the "dlm" directory. The output is the
37 list of resource and locks the local node knows about.
38
39 endmenu
This page took 0.047566 seconds and 6 git commands to generate.