Kconfig 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. #
  2. # TIPC configuration
  3. #
  4. menu "TIPC Configuration (EXPERIMENTAL)"
  5. depends on INET && EXPERIMENTAL
  6. config TIPC
  7. tristate "The TIPC Protocol (EXPERIMENTAL)"
  8. ---help---
  9. The Transparent Inter Process Communication (TIPC) protocol is
  10. specially designed for intra cluster communication. This protocol
  11. originates from Ericsson where it has been used in carrier grade
  12. cluster applications for many years.
  13. For more information about TIPC, see http://tipc.sourceforge.net.
  14. This protocol support is also available as a module ( = code which
  15. can be inserted in and removed from the running kernel whenever you
  16. want). The module will be called tipc. If you want to compile it
  17. as a module, say M here and read <file:Documentation/modules.txt>.
  18. If in doubt, say N.
  19. config TIPC_ADVANCED
  20. bool "TIPC: Advanced configuration"
  21. depends on TIPC
  22. default n
  23. help
  24. Saying Y here will open some advanced configuration
  25. for TIPC. Most users do not need to bother, so if
  26. unsure, just say N.
  27. config TIPC_ZONES
  28. int "Maximum number of zones in network"
  29. depends on TIPC && TIPC_ADVANCED
  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 && TIPC_ADVANCED
  39. default "1"
  40. help
  41. ***Only 1 (one cluster in a zone) is supported by current code.
  42. Any value set here will be overridden.***
  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 && TIPC_ADVANCED
  51. default "255"
  52. help
  53. Maximum number of nodes inside a TIPC cluster. Maximum
  54. supported value is 2047 nodes, minimum is 8.
  55. Setting this to a smaller value saves some memory,
  56. setting it to higher allows more nodes.
  57. config TIPC_SLAVE_NODES
  58. int "Maximum number of slave nodes in cluster"
  59. depends on TIPC && TIPC_ADVANCED
  60. default "0"
  61. help
  62. ***This capability is not supported by current code.***
  63. Maximum number of slave nodes inside a TIPC cluster. Maximum
  64. supported value is 2047 nodes, minimum is 0.
  65. Setting this to a smaller value saves some memory,
  66. setting it to higher allows more nodes.
  67. config TIPC_PORTS
  68. int "Maximum number of ports in a node"
  69. depends on TIPC && TIPC_ADVANCED
  70. default "8191"
  71. help
  72. Maximum number of ports within a node. Maximum
  73. supported value is 64535 nodes, minimum is 127.
  74. Setting this to a smaller value saves some memory,
  75. setting it to higher allows more ports.
  76. config TIPC_LOG
  77. int "Size of log buffer"
  78. depends on TIPC && TIPC_ADVANCED
  79. default 0
  80. help
  81. Size (in bytes) of TIPC's internal log buffer, which records the
  82. occurrence of significant events. Maximum supported value
  83. is 32768 bytes, minimum is 0.
  84. There is no need to enable the log buffer unless the node will be
  85. managed remotely via TIPC.
  86. config TIPC_DEBUG
  87. bool "Enable debugging support"
  88. depends on TIPC
  89. default n
  90. help
  91. This will enable debugging of TIPC.
  92. Only say Y here if you are having trouble with TIPC. It will
  93. enable the display of detailed information about what is going on.
  94. endmenu