]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/dlm/Kconfig
[DLM] Add support for tcp communications
[mirror_ubuntu-bionic-kernel.git] / fs / dlm / Kconfig
CommitLineData
e7fd4179 1menu "Distributed Lock Manager"
1ee48af2 2 depends on INET && IP_SCTP && EXPERIMENTAL
e7fd4179
DT
3
4config DLM
5 tristate "Distributed Lock Manager (DLM)"
e7fd4179 6 depends on IPV6 || IPV6=n
e7fd4179
DT
7 select CONFIGFS_FS
8 help
9 A general purpose distributed lock manager for kernel or userspace
10 applications.
11
fdda387f
PC
12choice
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
21config DLM_TCP
22 bool "TCP/IP"
23
24config DLM_SCTP
25 bool "SCTP"
26
27endchoice
28
e7fd4179
DT
29config 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
37endmenu