diff options
Diffstat (limited to 'fs/dlm/Kconfig')
-rw-r--r-- | fs/dlm/Kconfig | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/fs/dlm/Kconfig b/fs/dlm/Kconfig new file mode 100644 index 000000000000..d01f735e6e06 --- /dev/null +++ b/fs/dlm/Kconfig | |||
@@ -0,0 +1,30 @@ | |||
1 | menu "Distributed Lock Manager" | ||
2 | depends on INET && EXPERIMENTAL | ||
3 | |||
4 | config DLM | ||
5 | tristate "Distributed Lock Manager (DLM)" | ||
6 | depends on SYSFS | ||
7 | depends on IPV6 || IPV6=n | ||
8 | select IP_SCTP | ||
9 | select CONFIGFS_FS | ||
10 | help | ||
11 | A general purpose distributed lock manager for kernel or userspace | ||
12 | applications. | ||
13 | |||
14 | config DLM_DEVICE | ||
15 | tristate "DLM device for userspace access" | ||
16 | depends on DLM | ||
17 | help | ||
18 | This module creates a misc device through which the dlm lockspace | ||
19 | and locking functions become available to userspace applications | ||
20 | (usually through the libdlm library). | ||
21 | |||
22 | config DLM_DEBUG | ||
23 | bool "DLM debugging" | ||
24 | depends on DLM | ||
25 | help | ||
26 | Under the debugfs mount point, the name of each lockspace will | ||
27 | appear as a file in the "dlm" directory. The output is the | ||
28 | list of resource and locks the local node knows about. | ||
29 | |||
30 | endmenu | ||