]>
Commit | Line | Data |
---|---|---|
b97bf3fd PL |
1 | # |
2 | # TIPC configuration | |
3 | # | |
4 | ||
a31b19c5 | 5 | menuconfig 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. | |
13 | ||
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 |
23 | if TIPC |
24 | ||
b97bf3fd PL |
25 | config TIPC_ADVANCED |
26 | bool "TIPC: Advanced configuration" | |
b97bf3fd PL |
27 | default n |
28 | help | |
29 | Saying Y here will open some advanced configuration | |
30 | for TIPC. Most users do not need to bother, so if | |
31 | unsure, just say N. | |
32 | ||
33 | config TIPC_ZONES | |
34 | int "Maximum number of zones in network" | |
a31b19c5 | 35 | depends on TIPC_ADVANCED |
b97bf3fd PL |
36 | default "3" |
37 | help | |
38 | Max number of zones inside TIPC network. Max supported value | |
39 | is 255 zones, minimum is 1 | |
40 | ||
41 | Default is 3 zones in a network; setting this to higher | |
42 | allows more zones but might use more memory. | |
43 | ||
44 | config TIPC_CLUSTERS | |
45 | int "Maximum number of clusters in a zone" | |
a31b19c5 | 46 | depends on TIPC_ADVANCED |
b97bf3fd PL |
47 | default "1" |
48 | help | |
49 | ***Only 1 (one cluster in a zone) is supported by current code. | |
50 | Any value set here will be overridden.*** | |
51 | ||
52 | (Max number of clusters inside TIPC zone. Max supported | |
53 | value is 4095 clusters, minimum is 1. | |
54 | ||
55 | Default is 1; setting this to smaller value might save | |
56 | some memory, setting it to higher | |
57 | allows more clusters and might consume more memory.) | |
58 | ||
59 | config TIPC_NODES | |
60 | int "Maximum number of nodes in cluster" | |
a31b19c5 | 61 | depends on TIPC_ADVANCED |
b97bf3fd PL |
62 | default "255" |
63 | help | |
64 | Maximum number of nodes inside a TIPC cluster. Maximum | |
65 | supported value is 2047 nodes, minimum is 8. | |
66 | ||
67 | Setting this to a smaller value saves some memory, | |
68 | setting it to higher allows more nodes. | |
69 | ||
70 | config TIPC_SLAVE_NODES | |
71 | int "Maximum number of slave nodes in cluster" | |
a31b19c5 | 72 | depends on TIPC_ADVANCED |
b97bf3fd PL |
73 | default "0" |
74 | help | |
75 | ***This capability is not supported by current code.*** | |
76 | ||
77 | Maximum number of slave nodes inside a TIPC cluster. Maximum | |
78 | supported value is 2047 nodes, minimum is 0. | |
79 | ||
80 | Setting this to a smaller value saves some memory, | |
81 | setting it to higher allows more nodes. | |
82 | ||
83 | config TIPC_PORTS | |
84 | int "Maximum number of ports in a node" | |
a31b19c5 | 85 | depends on TIPC_ADVANCED |
b97bf3fd PL |
86 | default "8191" |
87 | help | |
88 | Maximum number of ports within a node. Maximum | |
89 | supported value is 64535 nodes, minimum is 127. | |
90 | ||
91 | Setting this to a smaller value saves some memory, | |
92 | setting it to higher allows more ports. | |
93 | ||
94 | config TIPC_LOG | |
95 | int "Size of log buffer" | |
a31b19c5 | 96 | depends on TIPC_ADVANCED |
b97bf3fd PL |
97 | default 0 |
98 | help | |
99 | Size (in bytes) of TIPC's internal log buffer, which records the | |
100 | occurrence of significant events. Maximum supported value | |
101 | is 32768 bytes, minimum is 0. | |
102 | ||
103 | There is no need to enable the log buffer unless the node will be | |
104 | managed remotely via TIPC. | |
105 | ||
106 | config TIPC_DEBUG | |
107 | bool "Enable debugging support" | |
b97bf3fd PL |
108 | default n |
109 | help | |
110 | This will enable debugging of TIPC. | |
111 | ||
112 | Only say Y here if you are having trouble with TIPC. It will | |
113 | enable the display of detailed information about what is going on. | |
114 | ||
a31b19c5 | 115 | endif # TIPC |