Merge branch 'kconfig' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / tipc / Kconfig
CommitLineData
b97bf3fd
PL
1#
2# TIPC configuration
3#
4
a31b19c5 5menuconfig TIPC
b97bf3fd 6 tristate "The TIPC Protocol (EXPERIMENTAL)"
a31b19c5 7 depends on INET && EXPERIMENTAL
b97bf3fd 8 ---help---
c11ac3f2
PL
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.
7981d6f6 13
c11ac3f2 14 For more information about TIPC, see http://tipc.sourceforge.net.
b97bf3fd
PL
15
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
39f5fb30 19 as a module, say M here and read <file:Documentation/kbuild/modules.txt>.
b97bf3fd
PL
20
21 If in doubt, say N.
22
a31b19c5
JE
23if TIPC
24
b97bf3fd 25config TIPC_ADVANCED
7981d6f6 26 bool "Advanced TIPC configuration"
b97bf3fd
PL
27 default n
28 help
7981d6f6
AS
29 Saying Y here will open some advanced configuration for TIPC.
30 Most users do not need to bother; if unsure, just say N.
b97bf3fd 31
b97bf3fd
PL
32config TIPC_PORTS
33 int "Maximum number of ports in a node"
a31b19c5 34 depends on TIPC_ADVANCED
7981d6f6 35 range 127 65535
b97bf3fd
PL
36 default "8191"
37 help
7981d6f6
AS
38 Specifies how many ports can be supported by a node.
39 Can range from 127 to 65535 ports; default is 8191.
b97bf3fd 40
0e65967e 41 Setting this to a smaller value saves some memory,
7981d6f6 42 setting it to higher allows for more ports.
b97bf3fd
PL
43
44config TIPC_LOG
45 int "Size of log buffer"
a31b19c5 46 depends on TIPC_ADVANCED
7981d6f6
AS
47 range 0 32768
48 default "0"
b97bf3fd 49 help
7981d6f6
AS
50 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.
b97bf3fd
PL
53
54 There is no need to enable the log buffer unless the node will be
55 managed remotely via TIPC.
56
57config TIPC_DEBUG
6e7e309c 58 bool "Enable debugging support"
b97bf3fd
PL
59 default n
60 help
6e7e309c
AS
61 Saying Y here enables TIPC debugging capabilities used by developers.
62 Most users do not need to bother; if unsure, just say N.
b97bf3fd 63
6e7e309c
AS
64 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.
b97bf3fd 68
a31b19c5 69endif # TIPC