Kconfig 785 B

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