Kconfig 3.4 KB

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