blob: 2c5954b8593337925a2079a522c8117c4ae10d77 [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001#
2# TIPC configuration
3#
4
Jan Engelhardta31b19c2007-05-23 14:49:38 -07005menuconfig TIPC
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 tristate "The TIPC Protocol (EXPERIMENTAL)"
Jan Engelhardta31b19c2007-05-23 14:49:38 -07007 depends on INET && EXPERIMENTAL
Per Lidenb97bf3f2006-01-02 19:04:38 +01008 ---help---
Per Lidenc11ac3f2006-01-16 16:32:18 +01009 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.
Allan Stephens7981d6f2010-01-19 14:23:57 -080013
Per Lidenc11ac3f2006-01-16 16:32:18 +010014 For more information about TIPC, see http://tipc.sourceforge.net.
Per Lidenb97bf3f2006-01-02 19:04:38 +010015
16 This protocol support is also available as a module ( = code which
17 can be inserted in and removed from the running kernel whenever you
18 want). The module will be called tipc. If you want to compile it
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +050019 as a module, say M here and read <file:Documentation/kbuild/modules.txt>.
Per Lidenb97bf3f2006-01-02 19:04:38 +010020
21 If in doubt, say N.
22
Jan Engelhardta31b19c2007-05-23 14:49:38 -070023if TIPC
24
Per Lidenb97bf3f2006-01-02 19:04:38 +010025config TIPC_ADVANCED
Allan Stephens7981d6f2010-01-19 14:23:57 -080026 bool "Advanced TIPC configuration"
Per Lidenb97bf3f2006-01-02 19:04:38 +010027 default n
28 help
Allan Stephens7981d6f2010-01-19 14:23:57 -080029 Saying Y here will open some advanced configuration for TIPC.
30 Most users do not need to bother; if unsure, just say N.
Per Lidenb97bf3f2006-01-02 19:04:38 +010031
Per Lidenb97bf3f2006-01-02 19:04:38 +010032config TIPC_PORTS
33 int "Maximum number of ports in a node"
Jan Engelhardta31b19c2007-05-23 14:49:38 -070034 depends on TIPC_ADVANCED
Allan Stephens7981d6f2010-01-19 14:23:57 -080035 range 127 65535
Per Lidenb97bf3f2006-01-02 19:04:38 +010036 default "8191"
37 help
Allan Stephens7981d6f2010-01-19 14:23:57 -080038 Specifies how many ports can be supported by a node.
39 Can range from 127 to 65535 ports; default is 8191.
Per Lidenb97bf3f2006-01-02 19:04:38 +010040
Allan Stephens0e659672010-12-31 18:59:32 +000041 Setting this to a smaller value saves some memory,
Allan Stephens7981d6f2010-01-19 14:23:57 -080042 setting it to higher allows for more ports.
Per Lidenb97bf3f2006-01-02 19:04:38 +010043
44config TIPC_LOG
45 int "Size of log buffer"
Jan Engelhardta31b19c2007-05-23 14:49:38 -070046 depends on TIPC_ADVANCED
Allan Stephens7981d6f2010-01-19 14:23:57 -080047 range 0 32768
48 default "0"
Per Lidenb97bf3f2006-01-02 19:04:38 +010049 help
Allan Stephens7981d6f2010-01-19 14:23:57 -080050 Size (in bytes) of TIPC's internal log buffer, which records the
51 occurrence of significant events. Can range from 0 to 32768 bytes;
52 default is 0.
Per Lidenb97bf3f2006-01-02 19:04:38 +010053
54 There is no need to enable the log buffer unless the node will be
55 managed remotely via TIPC.
56
57config TIPC_DEBUG
Allan Stephens6e7e3092010-12-31 18:59:28 +000058 bool "Enable debugging support"
Per Lidenb97bf3f2006-01-02 19:04:38 +010059 default n
60 help
Allan Stephens6e7e3092010-12-31 18:59:28 +000061 Saying Y here enables TIPC debugging capabilities used by developers.
62 Most users do not need to bother; if unsure, just say N.
Per Lidenb97bf3f2006-01-02 19:04:38 +010063
Allan Stephens6e7e3092010-12-31 18:59:28 +000064 Enabling debugging support causes TIPC to display data about its
65 internal state when certain abnormal conditions occur. It also
66 makes it easy for developers to capture additional information of
67 interest using the dbg() or msg_dbg() macros.
Per Lidenb97bf3f2006-01-02 19:04:38 +010068
Jan Engelhardta31b19c2007-05-23 14:49:38 -070069endif # TIPC