]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/tipc/Kconfig
ipv6: AF_INET6 link address family
[net-next-2.6.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
PL
31
32config TIPC_ZONES
7981d6f6 33 int "Maximum number of zones in a network"
a31b19c5 34 depends on TIPC_ADVANCED
ee983ac7 35 range 1 255
b97bf3fd
PL
36 default "3"
37 help
7981d6f6
AS
38 Specifies how many zones can be supported in a TIPC network.
39 Can range from 1 to 255 zones; default is 3.
b97bf3fd 40
7981d6f6
AS
41 Setting this to a smaller value saves some memory;
42 setting it to a higher value allows for more zones.
b97bf3fd
PL
43
44config TIPC_CLUSTERS
45 int "Maximum number of clusters in a zone"
a31b19c5 46 depends on TIPC_ADVANCED
ee983ac7 47 range 1 1
b97bf3fd
PL
48 default "1"
49 help
7981d6f6 50 Specifies how many clusters can be supported in a TIPC zone.
b97bf3fd 51
7981d6f6 52 *** Currently TIPC only supports a single cluster per zone. ***
b97bf3fd
PL
53
54config TIPC_NODES
7981d6f6 55 int "Maximum number of nodes in a cluster"
a31b19c5 56 depends on TIPC_ADVANCED
ee983ac7 57 range 8 2047
b97bf3fd
PL
58 default "255"
59 help
7981d6f6
AS
60 Specifies how many nodes can be supported in a TIPC cluster.
61 Can range from 8 to 2047 nodes; default is 255.
b97bf3fd 62
7981d6f6
AS
63 Setting this to a smaller value saves some memory;
64 setting it to higher allows for more nodes.
b97bf3fd
PL
65
66config TIPC_PORTS
67 int "Maximum number of ports in a node"
a31b19c5 68 depends on TIPC_ADVANCED
7981d6f6 69 range 127 65535
b97bf3fd
PL
70 default "8191"
71 help
7981d6f6
AS
72 Specifies how many ports can be supported by a node.
73 Can range from 127 to 65535 ports; default is 8191.
b97bf3fd
PL
74
75 Setting this to a smaller value saves some memory,
7981d6f6 76 setting it to higher allows for more ports.
b97bf3fd
PL
77
78config TIPC_LOG
79 int "Size of log buffer"
a31b19c5 80 depends on TIPC_ADVANCED
7981d6f6
AS
81 range 0 32768
82 default "0"
b97bf3fd 83 help
7981d6f6
AS
84 Size (in bytes) of TIPC's internal log buffer, which records the
85 occurrence of significant events. Can range from 0 to 32768 bytes;
86 default is 0.
b97bf3fd
PL
87
88 There is no need to enable the log buffer unless the node will be
89 managed remotely via TIPC.
90
91config TIPC_DEBUG
7981d6f6 92 bool "Enable debug messages"
b97bf3fd
PL
93 default n
94 help
7981d6f6 95 This enables debugging of TIPC.
b97bf3fd
PL
96
97 Only say Y here if you are having trouble with TIPC. It will
98 enable the display of detailed information about what is going on.
99
a31b19c5 100endif # TIPC