Kconfig 799 B

123456789101112131415161718192021222324252627282930
  1. menu "Distributed Lock Manager"
  2. depends on INET && EXPERIMENTAL
  3. config DLM
  4. tristate "Distributed Lock Manager (DLM)"
  5. depends on SYSFS
  6. depends on IPV6 || IPV6=n
  7. select IP_SCTP
  8. select CONFIGFS_FS
  9. help
  10. A general purpose distributed lock manager for kernel or userspace
  11. applications.
  12. config DLM_DEVICE
  13. tristate "DLM device for userspace access"
  14. depends on DLM
  15. help
  16. This module creates a misc device through which the dlm lockspace
  17. and locking functions become available to userspace applications
  18. (usually through the libdlm library).
  19. config DLM_DEBUG
  20. bool "DLM debugging"
  21. depends on DLM
  22. help
  23. Under the debugfs mount point, the name of each lockspace will
  24. appear as a file in the "dlm" directory. The output is the
  25. list of resource and locks the local node knows about.
  26. endmenu