From: Allan Stephens Date: Mon, 26 Jun 2006 06:38:00 +0000 (-0700) Subject: [TIPC]: Use correct upper bound when validating network zone number. X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=2535ec50b7a51833ff65dc97ca85e1155d4090f8;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git [TIPC]: Use correct upper bound when validating network zone number. Signed-off-by: Allan Stephens Signed-off-by: Per Liden Signed-off-by: David S. Miller --- 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) tipc_max_publications = 10000; tipc_max_subscriptions = 2000; tipc_max_ports = delimit(CONFIG_TIPC_PORTS, 127, 65536); - tipc_max_zones = delimit(CONFIG_TIPC_ZONES, 1, 511); + tipc_max_zones = delimit(CONFIG_TIPC_ZONES, 1, 255); tipc_max_clusters = delimit(CONFIG_TIPC_CLUSTERS, 1, 1); tipc_max_nodes = delimit(CONFIG_TIPC_NODES, 8, 2047); tipc_max_slaves = delimit(CONFIG_TIPC_SLAVE_NODES, 0, 2047);