Kconfig 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. #
  2. # TIPC configuration
  3. #
  4. menuconfig TIPC
  5. tristate "The TIPC Protocol (EXPERIMENTAL)"
  6. depends on INET && EXPERIMENTAL
  7. ---help---
  8. The Transparent Inter Process Communication (TIPC) protocol is
  9. specially designed for intra cluster communication. This protocol
  10. originates from Ericsson where it has been used in carrier grade
  11. cluster applications for many years.
  12. For more information about TIPC, see http://tipc.sourceforge.net.
  13. This protocol support is also available as a module ( = code which
  14. can be inserted in and removed from the running kernel whenever you
  15. want). The module will be called tipc. If you want to compile it
  16. as a module, say M here and read <file:Documentation/kbuild/modules.txt>.
  17. If in doubt, say N.
  18. if TIPC
  19. config TIPC_ADVANCED
  20. bool "Advanced TIPC configuration"
  21. default n
  22. help
  23. Saying Y here will open some advanced configuration for TIPC.
  24. Most users do not need to bother; if unsure, just say N.
  25. config TIPC_NODES
  26. int "Maximum number of nodes in a cluster"
  27. depends on TIPC_ADVANCED
  28. range 8 2047
  29. default "255"
  30. help
  31. Specifies how many nodes can be supported in a TIPC cluster.
  32. Can range from 8 to 2047 nodes; default is 255.
  33. Setting this to a smaller value saves some memory;
  34. setting it to higher allows for more nodes.
  35. config TIPC_PORTS
  36. int "Maximum number of ports in a node"
  37. depends on TIPC_ADVANCED
  38. range 127 65535
  39. default "8191"
  40. help
  41. Specifies how many ports can be supported by a node.
  42. Can range from 127 to 65535 ports; default is 8191.
  43. Setting this to a smaller value saves some memory,
  44. setting it to higher allows for more ports.
  45. config TIPC_LOG
  46. int "Size of log buffer"
  47. depends on TIPC_ADVANCED
  48. range 0 32768
  49. default "0"
  50. help
  51. Size (in bytes) of TIPC's internal log buffer, which records the
  52. occurrence of significant events. Can range from 0 to 32768 bytes;
  53. default is 0.
  54. There is no need to enable the log buffer unless the node will be
  55. managed remotely via TIPC.
  56. config TIPC_DEBUG
  57. bool "Enable debugging support"
  58. default n
  59. help
  60. Saying Y here enables TIPC debugging capabilities used by developers.
  61. Most users do not need to bother; if unsure, just say N.
  62. Enabling debugging support causes TIPC to display data about its
  63. internal state when certain abnormal conditions occur. It also
  64. makes it easy for developers to capture additional information of
  65. interest using the dbg() or msg_dbg() macros.
  66. endif # TIPC