Root/net/tipc/Kconfig

1#
2# TIPC configuration
3#
4
5menuconfig TIPC
6    tristate "The TIPC Protocol (EXPERIMENTAL)"
7    depends on INET && EXPERIMENTAL
8    ---help---
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.
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
19      as a module, say M here and read <file:Documentation/kbuild/modules.txt>.
20
21      If in doubt, say N.
22
23if TIPC
24
25config TIPC_ADVANCED
26    bool "Advanced TIPC configuration"
27    default n
28    help
29      Saying Y here will open some advanced configuration for TIPC.
30      Most users do not need to bother; if unsure, just say N.
31
32config TIPC_ZONES
33    int "Maximum number of zones in a network"
34    depends on TIPC_ADVANCED
35    range 1 255
36    default "3"
37    help
38      Specifies how many zones can be supported in a TIPC network.
39      Can range from 1 to 255 zones; default is 3.
40
41      Setting this to a smaller value saves some memory;
42      setting it to a higher value allows for more zones.
43
44config TIPC_CLUSTERS
45    int "Maximum number of clusters in a zone"
46    depends on TIPC_ADVANCED
47    range 1 1
48    default "1"
49    help
50      Specifies how many clusters can be supported in a TIPC zone.
51
52      *** Currently TIPC only supports a single cluster per zone. ***
53
54config TIPC_NODES
55    int "Maximum number of nodes in a cluster"
56    depends on TIPC_ADVANCED
57    range 8 2047
58    default "255"
59    help
60      Specifies how many nodes can be supported in a TIPC cluster.
61      Can range from 8 to 2047 nodes; default is 255.
62
63      Setting this to a smaller value saves some memory;
64      setting it to higher allows for more nodes.
65
66config TIPC_PORTS
67    int "Maximum number of ports in a node"
68    depends on TIPC_ADVANCED
69    range 127 65535
70    default "8191"
71    help
72      Specifies how many ports can be supported by a node.
73      Can range from 127 to 65535 ports; default is 8191.
74
75      Setting this to a smaller value saves some memory,
76      setting it to higher allows for more ports.
77
78config TIPC_LOG
79    int "Size of log buffer"
80    depends on TIPC_ADVANCED
81    range 0 32768
82    default "0"
83    help
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.
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
92    bool "Enable debug messages"
93    default n
94    help
95      This enables debugging of TIPC.
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
100endif # TIPC
101

Archive Download this file



interactive