Kconfig 911 B

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