Kconfig 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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_ZONES
  26. int "Maximum number of zones in a network"
  27. depends on TIPC_ADVANCED
  28. range 1 255
  29. default "3"
  30. help
  31. Specifies how many zones can be supported in a TIPC network.
  32. Can range from 1 to 255 zones; default is 3.
  33. Setting this to a smaller value saves some memory;
  34. setting it to a higher value allows for more zones.
  35. config TIPC_CLUSTERS
  36. int "Maximum number of clusters in a zone"
  37. depends on TIPC_ADVANCED
  38. range 1 1
  39. default "1"
  40. help
  41. Specifies how many clusters can be supported in a TIPC zone.
  42. *** Currently TIPC only supports a single cluster per zone. ***
  43. config TIPC_NODES
  44. int "Maximum number of nodes in a cluster"
  45. depends on TIPC_ADVANCED
  46. range 8 2047
  47. default "255"
  48. help
  49. Specifies how many nodes can be supported in a TIPC cluster.
  50. Can range from 8 to 2047 nodes; default is 255.
  51. Setting this to a smaller value saves some memory;
  52. setting it to higher allows for more nodes.
  53. config TIPC_PORTS
  54. int "Maximum number of ports in a node"
  55. depends on TIPC_ADVANCED
  56. range 127 65535
  57. default "8191"
  58. help
  59. Specifies how many ports can be supported by a node.
  60. Can range from 127 to 65535 ports; default is 8191.
  61. Setting this to a smaller value saves some memory,
  62. setting it to higher allows for more ports.
  63. config TIPC_LOG
  64. int "Size of log buffer"
  65. depends on TIPC_ADVANCED
  66. range 0 32768
  67. default "0"
  68. help
  69. Size (in bytes) of TIPC's internal log buffer, which records the
  70. occurrence of significant events. Can range from 0 to 32768 bytes;
  71. default is 0.
  72. There is no need to enable the log buffer unless the node will be
  73. managed remotely via TIPC.
  74. config TIPC_DEBUG
  75. bool "Enable debug messages"
  76. default n
  77. help
  78. This enables debugging of TIPC.
  79. Only say Y here if you are having trouble with TIPC. It will
  80. enable the display of detailed information about what is going on.
  81. endif # TIPC