David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 1 | menu "Distributed Lock Manager" |
Adrian Bunk | 1ee48af | 2006-10-08 04:30:48 +0200 | [diff] [blame] | 2 | depends on INET && IP_SCTP && EXPERIMENTAL |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 3 | |
| 4 | config DLM |
| 5 | tristate "Distributed Lock Manager (DLM)" |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 6 | depends on IPV6 || IPV6=n |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 7 | select CONFIGFS_FS |
| 8 | help |
| 9 | A general purpose distributed lock manager for kernel or userspace |
| 10 | applications. |
| 11 | |
Patrick Caulfield | fdda387 | 2006-11-02 11:19:21 -0500 | [diff] [blame^] | 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 | |
David Teigland | e7fd417 | 2006-01-18 09:30:29 +0000 | [diff] [blame] | 29 | config DLM_DEBUG |
| 30 | bool "DLM debugging" |
| 31 | depends on DLM |
| 32 | help |
| 33 | Under the debugfs mount point, the name of each lockspace will |
| 34 | appear as a file in the "dlm" directory. The output is the |
| 35 | list of resource and locks the local node knows about. |
| 36 | |
| 37 | endmenu |