Kconfig 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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 "TIPC: Advanced configuration"
  21. default n
  22. help
  23. Saying Y here will open some advanced configuration
  24. for TIPC. Most users do not need to bother, so if
  25. unsure, just say N.
  26. config TIPC_ZONES
  27. int "Maximum number of zones in network"
  28. depends on TIPC_ADVANCED
  29. range 1 255
  30. default "3"
  31. help
  32. Max number of zones inside TIPC network. Max supported value
  33. is 255 zones, minimum is 1
  34. Default is 3 zones in a network; setting this to higher
  35. allows more zones but might use more memory.
  36. config TIPC_CLUSTERS
  37. int "Maximum number of clusters in a zone"
  38. depends on TIPC_ADVANCED
  39. range 1 1
  40. default "1"
  41. help
  42. ***Only 1 (one cluster in a zone) is supported by current code.***
  43. (Max number of clusters inside TIPC zone. Max supported
  44. value is 4095 clusters, minimum is 1.
  45. Default is 1; setting this to smaller value might save
  46. some memory, setting it to higher
  47. allows more clusters and might consume more memory.)
  48. config TIPC_NODES
  49. int "Maximum number of nodes in cluster"
  50. depends on TIPC_ADVANCED
  51. range 8 2047
  52. default "255"
  53. help
  54. Maximum number of nodes inside a TIPC cluster. Maximum
  55. supported value is 2047 nodes, minimum is 8.
  56. Setting this to a smaller value saves some memory,
  57. setting it to higher allows more nodes.
  58. config TIPC_SLAVE_NODES
  59. int "Maximum number of slave nodes in cluster"
  60. depends on TIPC_ADVANCED
  61. range 0 2047
  62. default "0"
  63. help
  64. ***This capability is not supported by current code.***
  65. Maximum number of slave nodes inside a TIPC cluster. Maximum
  66. supported value is 2047 nodes, minimum is 0.
  67. Setting this to a smaller value saves some memory,
  68. setting it to higher allows more nodes.
  69. config TIPC_PORTS
  70. int "Maximum number of ports in a node"
  71. depends on TIPC_ADVANCED
  72. range 217 65536
  73. default "8191"
  74. help
  75. Maximum number of ports within a node. Maximum
  76. supported value is 64535 nodes, minimum is 127.
  77. Setting this to a smaller value saves some memory,
  78. setting it to higher allows more ports.
  79. config TIPC_LOG
  80. int "Size of log buffer"
  81. depends on TIPC_ADVANCED
  82. default 0
  83. help
  84. Size (in bytes) of TIPC's internal log buffer, which records the
  85. occurrence of significant events. Maximum supported value
  86. is 32768 bytes, minimum is 0.
  87. There is no need to enable the log buffer unless the node will be
  88. managed remotely via TIPC.
  89. config TIPC_DEBUG
  90. bool "Enable debugging support"
  91. default n
  92. help
  93. This will enable debugging of TIPC.
  94. Only say Y here if you are having trouble with TIPC. It will
  95. enable the display of detailed information about what is going on.
  96. endif # TIPC