aboutsummaryrefslogtreecommitdiffstats
path: root/fs/dlm/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'fs/dlm/Kconfig')
-rw-r--r--fs/dlm/Kconfig17
1 files changed, 17 insertions, 0 deletions
diff --git a/fs/dlm/Kconfig b/fs/dlm/Kconfig
index 81b2c6465eeb..c5985b883b2c 100644
--- a/fs/dlm/Kconfig
+++ b/fs/dlm/Kconfig
@@ -9,6 +9,23 @@ config DLM
9 A general purpose distributed lock manager for kernel or userspace 9 A general purpose distributed lock manager for kernel or userspace
10 applications. 10 applications.
11 11
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
12config DLM_DEBUG 29config DLM_DEBUG
13 bool "DLM debugging" 30 bool "DLM debugging"
14 depends on DLM 31 depends on DLM