Files
linux-apfs/fs/dlm/Kconfig
T

38 lines
867 B
Plaintext
Raw Normal View History

2006-01-18 09:30:29 +00:00
menu "Distributed Lock Manager"
2006-10-08 04:30:48 +02:00
depends on INET && IP_SCTP && EXPERIMENTAL
2006-01-18 09:30:29 +00:00
config DLM
tristate "Distributed Lock Manager (DLM)"
depends on IPV6 || IPV6=n
select CONFIGFS_FS
help
A general purpose distributed lock manager for kernel or userspace
applications.
2006-11-02 11:19:21 -05:00
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
2006-01-18 09:30:29 +00:00
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