diff options
Diffstat (limited to 'fs/dlm/Kconfig')
-rw-r--r-- | fs/dlm/Kconfig | 17 |
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 | ||
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 | |||
12 | config DLM_DEBUG | 29 | config DLM_DEBUG |
13 | bool "DLM debugging" | 30 | bool "DLM debugging" |
14 | depends on DLM | 31 | depends on DLM |