mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
6ed7257b46
This patch consolidates the TCP & SCTP protocols for the DLM into a single file and makes it switchable at run-time (well, at least before the DLM actually starts up!) For RHEL5 this patch requires Neil Horman's patch that expands the in-kernel socket API but that has already been twice ACKed so it should be OK. The patch adds a new lowcomms.c file that replaces the existing lowcomms-sctp.c & lowcomms-tcp.c files. Signed-off-By: Patrick Caulfield <pcaulfie@redhat.com> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
22 lines
524 B
Plaintext
22 lines
524 B
Plaintext
menu "Distributed Lock Manager"
|
|
depends on EXPERIMENTAL && INET
|
|
|
|
config DLM
|
|
tristate "Distributed Lock Manager (DLM)"
|
|
depends on IPV6 || IPV6=n
|
|
select CONFIGFS_FS
|
|
select IP_SCTP
|
|
help
|
|
A general purpose distributed lock manager for kernel or userspace
|
|
applications.
|
|
|
|
config DLM_DEBUG
|
|
bool "DLM debugging"
|
|
depends on DLM
|
|
help
|
|
Under the debugfs mount point, the name of each lockspace will
|
|
appear as a file in the "dlm" directory. The output is the
|
|
list of resource and locks the local node knows about.
|
|
|
|
endmenu
|