Kconfig 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. TBD.
  10. This protocol support is also available as a module ( = code which
  11. can be inserted in and removed from the running kernel whenever you
  12. want). The module will be called tipc. If you want to compile it
  13. as a module, say M here and read <file:Documentation/modules.txt>.
  14. If in doubt, say N.
  15. config TIPC_ADVANCED
  16. bool "TIPC: Advanced configuration"
  17. depends on TIPC
  18. default n
  19. help
  20. Saying Y here will open some advanced configuration
  21. for TIPC. Most users do not need to bother, so if
  22. unsure, just say N.
  23. config TIPC_ZONES
  24. int "Maximum number of zones in network"
  25. depends on TIPC && TIPC_ADVANCED
  26. default "3"
  27. help
  28. Max number of zones inside TIPC network. Max supported value
  29. is 255 zones, minimum is 1
  30. Default is 3 zones in a network; setting this to higher
  31. allows more zones but might use more memory.
  32. config TIPC_CLUSTERS
  33. int "Maximum number of clusters in a zone"
  34. depends on TIPC && TIPC_ADVANCED
  35. default "1"
  36. help
  37. ***Only 1 (one cluster in a zone) is supported by current code.
  38. Any value set here will be overridden.***
  39. (Max number of clusters inside TIPC zone. Max supported
  40. value is 4095 clusters, minimum is 1.
  41. Default is 1; setting this to smaller value might save
  42. some memory, setting it to higher
  43. allows more clusters and might consume more memory.)
  44. config TIPC_NODES
  45. int "Maximum number of nodes in cluster"
  46. depends on TIPC && TIPC_ADVANCED
  47. default "255"
  48. help
  49. Maximum number of nodes inside a TIPC cluster. Maximum
  50. supported value is 2047 nodes, minimum is 8.
  51. Setting this to a smaller value saves some memory,
  52. setting it to higher allows more nodes.
  53. config TIPC_SLAVE_NODES
  54. int "Maximum number of slave nodes in cluster"
  55. depends on TIPC && TIPC_ADVANCED
  56. default "0"
  57. help
  58. ***This capability is not supported by current code.***
  59. Maximum number of slave nodes inside a TIPC cluster. Maximum
  60. supported value is 2047 nodes, minimum is 0.
  61. Setting this to a smaller value saves some memory,
  62. setting it to higher allows more nodes.
  63. config TIPC_PORTS
  64. int "Maximum number of ports in a node"
  65. depends on TIPC && TIPC_ADVANCED
  66. default "8191"
  67. help
  68. Maximum number of ports within a node. Maximum
  69. supported value is 64535 nodes, minimum is 127.
  70. Setting this to a smaller value saves some memory,
  71. setting it to higher allows more ports.
  72. config TIPC_LOG
  73. int "Size of log buffer"
  74. depends on TIPC && TIPC_ADVANCED
  75. default 0
  76. help
  77. Size (in bytes) of TIPC's internal log buffer, which records the
  78. occurrence of significant events. Maximum supported value
  79. is 32768 bytes, minimum is 0.
  80. There is no need to enable the log buffer unless the node will be
  81. managed remotely via TIPC.
  82. config TIPC_DEBUG
  83. bool "Enable debugging support"
  84. depends on TIPC
  85. default n
  86. help
  87. This will enable debugging of TIPC.
  88. Only say Y here if you are having trouble with TIPC. It will
  89. enable the display of detailed information about what is going on.
  90. endmenu