diff options
author | Patrick Caulfield <pcaulfie@redhat.com> | 2006-11-02 11:19:21 -0500 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-11-30 10:35:00 -0500 |
commit | fdda387f73947e6ae511ec601f5b3c6fbb582aac (patch) | |
tree | 77ba5e6a34c801fbf25fd31224fc64b84ca5403d /fs/dlm/Kconfig | |
parent | 61057c6bb3a3d14cf2bea6ca20dc6d367e1d852e (diff) | |
download | linux-3.10-fdda387f73947e6ae511ec601f5b3c6fbb582aac.tar.gz linux-3.10-fdda387f73947e6ae511ec601f5b3c6fbb582aac.tar.bz2 linux-3.10-fdda387f73947e6ae511ec601f5b3c6fbb582aac.zip |
[DLM] Add support for tcp communications
The following patch adds a TCP based communications layer
to the DLM which is compile time selectable. The existing SCTP
layer gives the advantage of allowing multihoming, whereas
the TCP layer has been heavily tested in previous versions of
the DLM and is known to be robust and therefore can be used as
a baseline for performance testing.
Signed-off-by: Patrick Caulfield <pcaulfie@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
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 81b2c6465ee..c5985b883b2 100644 --- a/fs/dlm/Kconfig +++ b/fs/dlm/Kconfig @@ -9,6 +9,23 @@ config DLM A general purpose distributed lock manager for kernel or userspace applications. +choice + prompt "Select DLM communications protocol" + depends on DLM + default DLM_TCP + help + The DLM Can use TCP or SCTP for it's network communications. + SCTP supports multi-homed operations whereas TCP doesn't. + However, SCTP seems to have stability problems at the moment. + +config DLM_TCP + bool "TCP/IP" + +config DLM_SCTP + bool "SCTP" + +endchoice + config DLM_DEBUG bool "DLM debugging" depends on DLM |