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