Kconfig 867 B

12345678910111213141516171819202122232425262728293031323334353637
  1. menu "Distributed Lock Manager"
  2. depends on INET && IP_SCTP && EXPERIMENTAL
  3. config DLM
  4. tristate "Distributed Lock Manager (DLM)"
  5. depends on IPV6 || IPV6=n
  6. select CONFIGFS_FS
  7. help
  8. A general purpose distributed lock manager for kernel or userspace
  9. applications.
  10. choice
  11. prompt "Select DLM communications protocol"
  12. depends on DLM
  13. default DLM_TCP
  14. help
  15. The DLM Can use TCP or SCTP for it's network communications.
  16. SCTP supports multi-homed operations whereas TCP doesn't.
  17. However, SCTP seems to have stability problems at the moment.
  18. config DLM_TCP
  19. bool "TCP/IP"
  20. config DLM_SCTP
  21. bool "SCTP"
  22. endchoice
  23. config DLM_DEBUG
  24. bool "DLM debugging"
  25. depends on DLM
  26. help
  27. Under the debugfs mount point, the name of each lockspace will
  28. appear as a file in the "dlm" directory. The output is the
  29. list of resource and locks the local node knows about.
  30. endmenu