Kconfig 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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_PORTS
  26. int "Maximum number of ports in a node"
  27. depends on TIPC_ADVANCED
  28. range 127 65535
  29. default "8191"
  30. help
  31. Specifies how many ports can be supported by a node.
  32. Can range from 127 to 65535 ports; default is 8191.
  33. Setting this to a smaller value saves some memory,
  34. setting it to higher allows for more ports.
  35. endif # TIPC