diff options
author | Allan Stephens <allan.stephens@windriver.com> | 2006-06-26 02:38:00 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-06-26 02:38:00 -0400 |
commit | 2535ec50b7a51833ff65dc97ca85e1155d4090f8 (patch) | |
tree | 9eb6d0389d304b7a8f2afbcf3c9a18f0c9eba5ab /net | |
parent | 9ab230f82f404e534387dda6067072291441a34d (diff) |
[TIPC]: Use correct upper bound when validating network zone number.
Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
Signed-off-by: Per Liden <per.liden@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/tipc/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tipc/core.c b/net/tipc/core.c index 3d0a8ee4e1d3..31c7dd58b2a8 100644 --- a/net/tipc/core.c +++ b/net/tipc/core.c | |||
@@ -198,7 +198,7 @@ static int __init tipc_init(void) | |||
198 | tipc_max_publications = 10000; | 198 | tipc_max_publications = 10000; |
199 | tipc_max_subscriptions = 2000; | 199 | tipc_max_subscriptions = 2000; |
200 | tipc_max_ports = delimit(CONFIG_TIPC_PORTS, 127, 65536); | 200 | tipc_max_ports = delimit(CONFIG_TIPC_PORTS, 127, 65536); |
201 | tipc_max_zones = delimit(CONFIG_TIPC_ZONES, 1, 511); | 201 | tipc_max_zones = delimit(CONFIG_TIPC_ZONES, 1, 255); |
202 | tipc_max_clusters = delimit(CONFIG_TIPC_CLUSTERS, 1, 1); | 202 | tipc_max_clusters = delimit(CONFIG_TIPC_CLUSTERS, 1, 1); |
203 | tipc_max_nodes = delimit(CONFIG_TIPC_NODES, 8, 2047); | 203 | tipc_max_nodes = delimit(CONFIG_TIPC_NODES, 8, 2047); |
204 | tipc_max_slaves = delimit(CONFIG_TIPC_SLAVE_NODES, 0, 2047); | 204 | tipc_max_slaves = delimit(CONFIG_TIPC_SLAVE_NODES, 0, 2047); |