Kconfig 898 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. menu "Distributed Lock Manager"
  2. depends on EXPERIMENTAL && INET
  3. config DLM
  4. tristate "Distributed Lock Manager (DLM)"
  5. depends on IPV6 || IPV6=n
  6. select CONFIGFS_FS
  7. select SYSFS
  8. select IP_SCTP if DLM_SCTP
  9. help
  10. A general purpose distributed lock manager for kernel or userspace
  11. applications.
  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. config DLM_TCP
  21. bool "TCP/IP"
  22. config DLM_SCTP
  23. bool "SCTP"
  24. endchoice
  25. config DLM_DEBUG
  26. bool "DLM debugging"
  27. depends on DLM
  28. help
  29. Under the debugfs mount point, the name of each lockspace will
  30. appear as a file in the "dlm" directory. The output is the
  31. list of resource and locks the local node knows about.
  32. endmenu