cluster.c 14.6 KB
Newer Older
P
Per Liden 已提交
1 2
/*
 * net/tipc/cluster.c: TIPC cluster management routines
3
 *
P
Per Liden 已提交
4
 * Copyright (c) 2000-2006, Ericsson AB
P
Per Liden 已提交
5 6 7 8 9 10
 * Copyright (c) 2005, Wind River Systems
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
P
Per Liden 已提交
11 12 13 14 15 16 17 18 19 20 21 22
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. Neither the names of the copyright holders nor the names of its
 *    contributors may be used to endorse or promote products derived from
 *    this software without specific prior written permission.
 *
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
P
Per Liden 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include "core.h"
#include "cluster.h"
#include "addr.h"
#include "node_subscr.h"
#include "link.h"
#include "node.h"
#include "net.h"
#include "msg.h"
#include "bearer.h"

A
Adrian Bunk 已提交
47 48
static void tipc_cltr_multicast(struct cluster *c_ptr, struct sk_buff *buf,
				u32 lower, u32 upper);
P
Per Liden 已提交
49
static struct sk_buff *tipc_cltr_prepare_routing_msg(u32 data_size, u32 dest);
P
Per Liden 已提交
50

51 52
struct tipc_node **tipc_local_nodes = NULL;
struct tipc_node_map tipc_cltr_bcast_nodes = {0,{0,}};
53
u32 tipc_highest_allowed_slave = 0;
P
Per Liden 已提交
54

55
struct cluster *tipc_cltr_create(u32 addr)
P
Per Liden 已提交
56 57 58
{
	struct _zone *z_ptr;
	struct cluster *c_ptr;
59
	int max_nodes;
P
Per Liden 已提交
60

61
	c_ptr = kzalloc(sizeof(*c_ptr), GFP_ATOMIC);
62 63
	if (c_ptr == NULL) {
		warn("Cluster creation failure, no memory\n");
64
		return NULL;
65
	}
P
Per Liden 已提交
66 67 68 69 70 71

	c_ptr->addr = tipc_addr(tipc_zone(addr), tipc_cluster(addr), 0);
	if (in_own_cluster(addr))
		max_nodes = LOWEST_SLAVE + tipc_max_slaves;
	else
		max_nodes = tipc_max_nodes + 1;
72

73
	c_ptr->nodes = kcalloc(max_nodes + 1, sizeof(void*), GFP_ATOMIC);
P
Per Liden 已提交
74
	if (c_ptr->nodes == NULL) {
75
		warn("Cluster creation failure, no memory for node area\n");
P
Per Liden 已提交
76
		kfree(c_ptr);
77
		return NULL;
P
Per Liden 已提交
78
	}
79

P
Per Liden 已提交
80
	if (in_own_cluster(addr))
81
		tipc_local_nodes = c_ptr->nodes;
P
Per Liden 已提交
82 83
	c_ptr->highest_slave = LOWEST_SLAVE - 1;
	c_ptr->highest_node = 0;
84

85
	z_ptr = tipc_zone_find(tipc_zone(addr));
86
	if (!z_ptr) {
87
		z_ptr = tipc_zone_create(addr);
P
Per Liden 已提交
88
	}
89 90
	if (!z_ptr) {
		kfree(c_ptr->nodes);
P
Per Liden 已提交
91
		kfree(c_ptr);
92
		return NULL;
P
Per Liden 已提交
93 94
	}

95 96
	tipc_zone_attach_cluster(z_ptr, c_ptr);
	c_ptr->owner = z_ptr;
P
Per Liden 已提交
97 98 99
	return c_ptr;
}

100
void tipc_cltr_delete(struct cluster *c_ptr)
P
Per Liden 已提交
101 102 103 104 105 106
{
	u32 n_num;

	if (!c_ptr)
		return;
	for (n_num = 1; n_num <= c_ptr->highest_node; n_num++) {
107
		tipc_node_delete(c_ptr->nodes[n_num]);
P
Per Liden 已提交
108 109
	}
	for (n_num = LOWEST_SLAVE; n_num <= c_ptr->highest_slave; n_num++) {
110
		tipc_node_delete(c_ptr->nodes[n_num]);
P
Per Liden 已提交
111 112 113 114 115
	}
	kfree(c_ptr->nodes);
	kfree(c_ptr);
}

116
u32 tipc_cltr_next_node(struct cluster *c_ptr, u32 addr)
P
Per Liden 已提交
117
{
118
	struct tipc_node *n_ptr;
P
Per Liden 已提交
119 120 121 122 123 124
	u32 n_num = tipc_node(addr) + 1;

	if (!c_ptr)
		return addr;
	for (; n_num <= c_ptr->highest_node; n_num++) {
		n_ptr = c_ptr->nodes[n_num];
125
		if (n_ptr && tipc_node_has_active_links(n_ptr))
P
Per Liden 已提交
126 127 128 129
			return n_ptr->addr;
	}
	for (n_num = 1; n_num < tipc_node(addr); n_num++) {
		n_ptr = c_ptr->nodes[n_num];
130
		if (n_ptr && tipc_node_has_active_links(n_ptr))
P
Per Liden 已提交
131 132 133 134 135
			return n_ptr->addr;
	}
	return 0;
}

136
void tipc_cltr_attach_node(struct cluster *c_ptr, struct tipc_node *n_ptr)
P
Per Liden 已提交
137 138 139 140 141
{
	u32 n_num = tipc_node(n_ptr->addr);
	u32 max_n_num = tipc_max_nodes;

	if (in_own_cluster(n_ptr->addr))
142
		max_n_num = tipc_highest_allowed_slave;
P
Per Liden 已提交
143 144
	assert(n_num > 0);
	assert(n_num <= max_n_num);
145
	assert(c_ptr->nodes[n_num] == NULL);
P
Per Liden 已提交
146 147 148 149 150 151
	c_ptr->nodes[n_num] = n_ptr;
	if (n_num > c_ptr->highest_node)
		c_ptr->highest_node = n_num;
}

/**
152
 * tipc_cltr_select_router - select router to a cluster
153
 *
P
Per Liden 已提交
154 155 156
 * Uses deterministic and fair algorithm.
 */

157
u32 tipc_cltr_select_router(struct cluster *c_ptr, u32 ref)
P
Per Liden 已提交
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
{
	u32 n_num;
	u32 ulim = c_ptr->highest_node;
	u32 mask;
	u32 tstart;

	assert(!in_own_cluster(c_ptr->addr));
	if (!ulim)
		return 0;

	/* Start entry must be random */
	mask = tipc_max_nodes;
	while (mask > ulim)
		mask >>= 1;
	tstart = ref & mask;
	n_num = tstart;

	/* Lookup upwards with wrap-around */
	do {
177
		if (tipc_node_is_up(c_ptr->nodes[n_num]))
P
Per Liden 已提交
178 179 180 181 182
			break;
	} while (++n_num <= ulim);
	if (n_num > ulim) {
		n_num = 1;
		do {
183
			if (tipc_node_is_up(c_ptr->nodes[n_num]))
P
Per Liden 已提交
184 185 186 187 188 189
				break;
		} while (++n_num < tstart);
		if (n_num == tstart)
			return 0;
	}
	assert(n_num <= ulim);
190
	return tipc_node_select_router(c_ptr->nodes[n_num], ref);
P
Per Liden 已提交
191 192 193
}

/**
194
 * tipc_cltr_select_node - select destination node within a remote cluster
195
 *
P
Per Liden 已提交
196 197 198
 * Uses deterministic and fair algorithm.
 */

199
struct tipc_node *tipc_cltr_select_node(struct cluster *c_ptr, u32 selector)
P
Per Liden 已提交
200 201 202 203 204 205 206
{
	u32 n_num;
	u32 mask = tipc_max_nodes;
	u32 start_entry;

	assert(!in_own_cluster(c_ptr->addr));
	if (!c_ptr->highest_node)
207
		return NULL;
P
Per Liden 已提交
208 209 210 211 212 213 214 215 216 217

	/* Start entry must be random */
	while (mask > c_ptr->highest_node) {
		mask >>= 1;
	}
	start_entry = (selector & mask) ? selector & mask : 1u;
	assert(start_entry <= c_ptr->highest_node);

	/* Lookup upwards with wrap-around */
	for (n_num = start_entry; n_num <= c_ptr->highest_node; n_num++) {
218
		if (tipc_node_has_active_links(c_ptr->nodes[n_num]))
P
Per Liden 已提交
219 220 221
			return c_ptr->nodes[n_num];
	}
	for (n_num = 1; n_num < start_entry; n_num++) {
222
		if (tipc_node_has_active_links(c_ptr->nodes[n_num]))
P
Per Liden 已提交
223 224
			return c_ptr->nodes[n_num];
	}
225
	return NULL;
P
Per Liden 已提交
226 227 228 229 230 231
}

/*
 *    Routing table management: See description in node.c
 */

A
Adrian Bunk 已提交
232
static struct sk_buff *tipc_cltr_prepare_routing_msg(u32 data_size, u32 dest)
P
Per Liden 已提交
233 234 235 236 237 238 239 240
{
	u32 size = INT_H_SIZE + data_size;
	struct sk_buff *buf = buf_acquire(size);
	struct tipc_msg *msg;

	if (buf) {
		msg = buf_msg(buf);
		memset((char *)msg, 0, size);
241
		msg_init(msg, ROUTE_DISTRIBUTOR, 0, INT_H_SIZE, dest);
P
Per Liden 已提交
242 243 244 245
	}
	return buf;
}

246
void tipc_cltr_bcast_new_route(struct cluster *c_ptr, u32 dest,
P
Per Liden 已提交
247 248
			     u32 lower, u32 upper)
{
249
	struct sk_buff *buf = tipc_cltr_prepare_routing_msg(0, c_ptr->addr);
P
Per Liden 已提交
250 251 252 253 254 255
	struct tipc_msg *msg;

	if (buf) {
		msg = buf_msg(buf);
		msg_set_remote_node(msg, dest);
		msg_set_type(msg, ROUTE_ADDITION);
256
		tipc_cltr_multicast(c_ptr, buf, lower, upper);
P
Per Liden 已提交
257 258 259 260 261
	} else {
		warn("Memory squeeze: broadcast of new route failed\n");
	}
}

262 263
void tipc_cltr_bcast_lost_route(struct cluster *c_ptr, u32 dest,
				u32 lower, u32 upper)
P
Per Liden 已提交
264
{
265
	struct sk_buff *buf = tipc_cltr_prepare_routing_msg(0, c_ptr->addr);
P
Per Liden 已提交
266 267 268 269 270 271
	struct tipc_msg *msg;

	if (buf) {
		msg = buf_msg(buf);
		msg_set_remote_node(msg, dest);
		msg_set_type(msg, ROUTE_REMOVAL);
272
		tipc_cltr_multicast(c_ptr, buf, lower, upper);
P
Per Liden 已提交
273 274 275 276 277
	} else {
		warn("Memory squeeze: broadcast of lost route failed\n");
	}
}

278
void tipc_cltr_send_slave_routes(struct cluster *c_ptr, u32 dest)
P
Per Liden 已提交
279 280 281 282 283 284 285 286 287 288 289 290
{
	struct sk_buff *buf;
	struct tipc_msg *msg;
	u32 highest = c_ptr->highest_slave;
	u32 n_num;
	int send = 0;

	assert(!is_slave(dest));
	assert(in_own_cluster(dest));
	assert(in_own_cluster(c_ptr->addr));
	if (highest <= LOWEST_SLAVE)
		return;
291 292
	buf = tipc_cltr_prepare_routing_msg(highest - LOWEST_SLAVE + 1,
					    c_ptr->addr);
P
Per Liden 已提交
293 294 295 296 297
	if (buf) {
		msg = buf_msg(buf);
		msg_set_remote_node(msg, c_ptr->addr);
		msg_set_type(msg, SLAVE_ROUTING_TABLE);
		for (n_num = LOWEST_SLAVE; n_num <= highest; n_num++) {
298
			if (c_ptr->nodes[n_num] &&
299
			    tipc_node_has_active_links(c_ptr->nodes[n_num])) {
P
Per Liden 已提交
300 301 302 303 304
				send = 1;
				msg_set_dataoctet(msg, n_num);
			}
		}
		if (send)
305
			tipc_link_send(buf, dest, dest);
P
Per Liden 已提交
306 307 308 309 310 311 312
		else
			buf_discard(buf);
	} else {
		warn("Memory squeeze: broadcast of lost route failed\n");
	}
}

313
void tipc_cltr_send_ext_routes(struct cluster *c_ptr, u32 dest)
P
Per Liden 已提交
314 315 316 317 318 319 320 321 322 323 324 325
{
	struct sk_buff *buf;
	struct tipc_msg *msg;
	u32 highest = c_ptr->highest_node;
	u32 n_num;
	int send = 0;

	if (in_own_cluster(c_ptr->addr))
		return;
	assert(!is_slave(dest));
	assert(in_own_cluster(dest));
	highest = c_ptr->highest_node;
326
	buf = tipc_cltr_prepare_routing_msg(highest + 1, c_ptr->addr);
P
Per Liden 已提交
327 328 329 330 331
	if (buf) {
		msg = buf_msg(buf);
		msg_set_remote_node(msg, c_ptr->addr);
		msg_set_type(msg, EXT_ROUTING_TABLE);
		for (n_num = 1; n_num <= highest; n_num++) {
332
			if (c_ptr->nodes[n_num] &&
333
			    tipc_node_has_active_links(c_ptr->nodes[n_num])) {
P
Per Liden 已提交
334 335 336 337 338
				send = 1;
				msg_set_dataoctet(msg, n_num);
			}
		}
		if (send)
339
			tipc_link_send(buf, dest, dest);
P
Per Liden 已提交
340 341 342 343 344 345 346
		else
			buf_discard(buf);
	} else {
		warn("Memory squeeze: broadcast of external route failed\n");
	}
}

347
void tipc_cltr_send_local_routes(struct cluster *c_ptr, u32 dest)
P
Per Liden 已提交
348 349 350 351 352 353 354 355 356
{
	struct sk_buff *buf;
	struct tipc_msg *msg;
	u32 highest = c_ptr->highest_node;
	u32 n_num;
	int send = 0;

	assert(is_slave(dest));
	assert(in_own_cluster(c_ptr->addr));
357
	buf = tipc_cltr_prepare_routing_msg(highest, c_ptr->addr);
P
Per Liden 已提交
358 359 360 361 362
	if (buf) {
		msg = buf_msg(buf);
		msg_set_remote_node(msg, c_ptr->addr);
		msg_set_type(msg, LOCAL_ROUTING_TABLE);
		for (n_num = 1; n_num <= highest; n_num++) {
363
			if (c_ptr->nodes[n_num] &&
364
			    tipc_node_has_active_links(c_ptr->nodes[n_num])) {
P
Per Liden 已提交
365 366 367 368 369
				send = 1;
				msg_set_dataoctet(msg, n_num);
			}
		}
		if (send)
370
			tipc_link_send(buf, dest, dest);
P
Per Liden 已提交
371 372 373 374 375 376 377
		else
			buf_discard(buf);
	} else {
		warn("Memory squeeze: broadcast of local route failed\n");
	}
}

378
void tipc_cltr_recv_routing_table(struct sk_buff *buf)
P
Per Liden 已提交
379 380 381
{
	struct tipc_msg *msg = buf_msg(buf);
	struct cluster *c_ptr;
382
	struct tipc_node *n_ptr;
P
Per Liden 已提交
383 384 385 386 387 388 389 390
	unchar *node_table;
	u32 table_size;
	u32 router;
	u32 rem_node = msg_remote_node(msg);
	u32 z_num;
	u32 c_num;
	u32 n_num;

391
	c_ptr = tipc_cltr_find(rem_node);
P
Per Liden 已提交
392
	if (!c_ptr) {
393
		c_ptr = tipc_cltr_create(rem_node);
P
Per Liden 已提交
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
		if (!c_ptr) {
			buf_discard(buf);
			return;
		}
	}

	node_table = buf->data + msg_hdr_sz(msg);
	table_size = msg_size(msg) - msg_hdr_sz(msg);
	router = msg_prevnode(msg);
	z_num = tipc_zone(rem_node);
	c_num = tipc_cluster(rem_node);

	switch (msg_type(msg)) {
	case LOCAL_ROUTING_TABLE:
		assert(is_slave(tipc_own_addr));
	case EXT_ROUTING_TABLE:
		for (n_num = 1; n_num < table_size; n_num++) {
			if (node_table[n_num]) {
				u32 addr = tipc_addr(z_num, c_num, n_num);
				n_ptr = c_ptr->nodes[n_num];
				if (!n_ptr) {
415
					n_ptr = tipc_node_create(addr);
P
Per Liden 已提交
416 417
				}
				if (n_ptr)
418
					tipc_node_add_router(n_ptr, router);
P
Per Liden 已提交
419 420 421 422 423 424 425 426 427 428 429 430
			}
		}
		break;
	case SLAVE_ROUTING_TABLE:
		assert(!is_slave(tipc_own_addr));
		assert(in_own_cluster(c_ptr->addr));
		for (n_num = 1; n_num < table_size; n_num++) {
			if (node_table[n_num]) {
				u32 slave_num = n_num + LOWEST_SLAVE;
				u32 addr = tipc_addr(z_num, c_num, slave_num);
				n_ptr = c_ptr->nodes[slave_num];
				if (!n_ptr) {
431
					n_ptr = tipc_node_create(addr);
P
Per Liden 已提交
432 433
				}
				if (n_ptr)
434
					tipc_node_add_router(n_ptr, router);
P
Per Liden 已提交
435 436 437 438 439 440 441 442 443 444 445 446 447
			}
		}
		break;
	case ROUTE_ADDITION:
		if (!is_slave(tipc_own_addr)) {
			assert(!in_own_cluster(c_ptr->addr)
			       || is_slave(rem_node));
		} else {
			assert(in_own_cluster(c_ptr->addr)
			       && !is_slave(rem_node));
		}
		n_ptr = c_ptr->nodes[tipc_node(rem_node)];
		if (!n_ptr)
448
			n_ptr = tipc_node_create(rem_node);
P
Per Liden 已提交
449
		if (n_ptr)
450
			tipc_node_add_router(n_ptr, router);
P
Per Liden 已提交
451 452 453 454 455 456 457 458 459 460 461
		break;
	case ROUTE_REMOVAL:
		if (!is_slave(tipc_own_addr)) {
			assert(!in_own_cluster(c_ptr->addr)
			       || is_slave(rem_node));
		} else {
			assert(in_own_cluster(c_ptr->addr)
			       && !is_slave(rem_node));
		}
		n_ptr = c_ptr->nodes[tipc_node(rem_node)];
		if (n_ptr)
462
			tipc_node_remove_router(n_ptr, router);
P
Per Liden 已提交
463 464 465 466 467 468 469
		break;
	default:
		assert(!"Illegal routing manager message received\n");
	}
	buf_discard(buf);
}

470
void tipc_cltr_remove_as_router(struct cluster *c_ptr, u32 router)
P
Per Liden 已提交
471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
{
	u32 start_entry;
	u32 tstop;
	u32 n_num;

	if (is_slave(router))
		return;	/* Slave nodes can not be routers */

	if (in_own_cluster(c_ptr->addr)) {
		start_entry = LOWEST_SLAVE;
		tstop = c_ptr->highest_slave;
	} else {
		start_entry = 1;
		tstop = c_ptr->highest_node;
	}

	for (n_num = start_entry; n_num <= tstop; n_num++) {
		if (c_ptr->nodes[n_num]) {
489
			tipc_node_remove_router(c_ptr->nodes[n_num], router);
P
Per Liden 已提交
490 491 492 493 494
		}
	}
}

/**
495
 * tipc_cltr_multicast - multicast message to local nodes
P
Per Liden 已提交
496 497
 */

A
Adrian Bunk 已提交
498
static void tipc_cltr_multicast(struct cluster *c_ptr, struct sk_buff *buf,
499
			 u32 lower, u32 upper)
P
Per Liden 已提交
500 501
{
	struct sk_buff *buf_copy;
502
	struct tipc_node *n_ptr;
P
Per Liden 已提交
503 504 505 506 507
	u32 n_num;
	u32 tstop;

	assert(lower <= upper);
	assert(((lower >= 1) && (lower <= tipc_max_nodes)) ||
508
	       ((lower >= LOWEST_SLAVE) && (lower <= tipc_highest_allowed_slave)));
P
Per Liden 已提交
509
	assert(((upper >= 1) && (upper <= tipc_max_nodes)) ||
510
	       ((upper >= LOWEST_SLAVE) && (upper <= tipc_highest_allowed_slave)));
P
Per Liden 已提交
511 512 513 514 515 516 517
	assert(in_own_cluster(c_ptr->addr));

	tstop = is_slave(upper) ? c_ptr->highest_slave : c_ptr->highest_node;
	if (tstop > upper)
		tstop = upper;
	for (n_num = lower; n_num <= tstop; n_num++) {
		n_ptr = c_ptr->nodes[n_num];
518
		if (n_ptr && tipc_node_has_active_links(n_ptr)) {
P
Per Liden 已提交
519 520 521 522
			buf_copy = skb_copy(buf, GFP_ATOMIC);
			if (buf_copy == NULL)
				break;
			msg_set_destnode(buf_msg(buf_copy), n_ptr->addr);
523
			tipc_link_send(buf_copy, n_ptr->addr, n_ptr->addr);
P
Per Liden 已提交
524 525 526 527 528 529
		}
	}
	buf_discard(buf);
}

/**
530
 * tipc_cltr_broadcast - broadcast message to all nodes within cluster
P
Per Liden 已提交
531 532
 */

533
void tipc_cltr_broadcast(struct sk_buff *buf)
P
Per Liden 已提交
534 535 536
{
	struct sk_buff *buf_copy;
	struct cluster *c_ptr;
537
	struct tipc_node *n_ptr;
P
Per Liden 已提交
538 539 540 541 542 543
	u32 n_num;
	u32 tstart;
	u32 tstop;
	u32 node_type;

	if (tipc_mode == TIPC_NET_MODE) {
544
		c_ptr = tipc_cltr_find(tipc_own_addr);
P
Per Liden 已提交
545 546 547 548 549 550 551 552
		assert(in_own_cluster(c_ptr->addr));	/* For now */

		/* Send to standard nodes, then repeat loop sending to slaves */
		tstart = 1;
		tstop = c_ptr->highest_node;
		for (node_type = 1; node_type <= 2; node_type++) {
			for (n_num = tstart; n_num <= tstop; n_num++) {
				n_ptr = c_ptr->nodes[n_num];
553
				if (n_ptr && tipc_node_has_active_links(n_ptr)) {
P
Per Liden 已提交
554 555 556
					buf_copy = skb_copy(buf, GFP_ATOMIC);
					if (buf_copy == NULL)
						goto exit;
557
					msg_set_destnode(buf_msg(buf_copy),
P
Per Liden 已提交
558
							 n_ptr->addr);
559
					tipc_link_send(buf_copy, n_ptr->addr,
560
						       n_ptr->addr);
P
Per Liden 已提交
561 562 563 564 565 566 567 568 569 570
				}
			}
			tstart = LOWEST_SLAVE;
			tstop = c_ptr->highest_slave;
		}
	}
exit:
	buf_discard(buf);
}

571
int tipc_cltr_init(void)
P
Per Liden 已提交
572
{
573
	tipc_highest_allowed_slave = LOWEST_SLAVE + tipc_max_slaves;
574
	return tipc_cltr_create(tipc_own_addr) ? 0 : -ENOMEM;
P
Per Liden 已提交
575 576
}