xref: /openbmc/linux/net/tipc/name_distr.c (revision 247f0f3c3176c55b46cb9a20011d3d6757634815)
1b97bf3fdSPer Liden /*
2b97bf3fdSPer Liden  * net/tipc/name_distr.c: TIPC name distribution code
3b97bf3fdSPer Liden  *
4593a5f22SPer Liden  * Copyright (c) 2000-2006, Ericsson AB
5431697ebSAllan Stephens  * Copyright (c) 2005, 2010-2011, Wind River Systems
6b97bf3fdSPer Liden  * All rights reserved.
7b97bf3fdSPer Liden  *
8b97bf3fdSPer Liden  * Redistribution and use in source and binary forms, with or without
9b97bf3fdSPer Liden  * modification, are permitted provided that the following conditions are met:
10b97bf3fdSPer Liden  *
119ea1fd3cSPer Liden  * 1. Redistributions of source code must retain the above copyright
129ea1fd3cSPer Liden  *    notice, this list of conditions and the following disclaimer.
139ea1fd3cSPer Liden  * 2. Redistributions in binary form must reproduce the above copyright
149ea1fd3cSPer Liden  *    notice, this list of conditions and the following disclaimer in the
159ea1fd3cSPer Liden  *    documentation and/or other materials provided with the distribution.
169ea1fd3cSPer Liden  * 3. Neither the names of the copyright holders nor the names of its
179ea1fd3cSPer Liden  *    contributors may be used to endorse or promote products derived from
189ea1fd3cSPer Liden  *    this software without specific prior written permission.
199ea1fd3cSPer Liden  *
209ea1fd3cSPer Liden  * Alternatively, this software may be distributed under the terms of the
219ea1fd3cSPer Liden  * GNU General Public License ("GPL") version 2 as published by the Free
229ea1fd3cSPer Liden  * Software Foundation.
23b97bf3fdSPer Liden  *
24b97bf3fdSPer Liden  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25b97bf3fdSPer Liden  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26b97bf3fdSPer Liden  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27b97bf3fdSPer Liden  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28b97bf3fdSPer Liden  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29b97bf3fdSPer Liden  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30b97bf3fdSPer Liden  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31b97bf3fdSPer Liden  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32b97bf3fdSPer Liden  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33b97bf3fdSPer Liden  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34b97bf3fdSPer Liden  * POSSIBILITY OF SUCH DAMAGE.
35b97bf3fdSPer Liden  */
36b97bf3fdSPer Liden 
37b97bf3fdSPer Liden #include "core.h"
38b97bf3fdSPer Liden #include "link.h"
39b97bf3fdSPer Liden #include "name_distr.h"
40b97bf3fdSPer Liden 
41b97bf3fdSPer Liden #define ITEM_SIZE sizeof(struct distr_item)
42b97bf3fdSPer Liden 
43b97bf3fdSPer Liden /**
44b97bf3fdSPer Liden  * struct distr_item - publication info distributed to other nodes
45b97bf3fdSPer Liden  * @type: name sequence type
46b97bf3fdSPer Liden  * @lower: name sequence lower bound
47b97bf3fdSPer Liden  * @upper: name sequence upper bound
48b97bf3fdSPer Liden  * @ref: publishing port reference
49b97bf3fdSPer Liden  * @key: publication key
50b97bf3fdSPer Liden  *
51b97bf3fdSPer Liden  * ===> All fields are stored in network byte order. <===
52b97bf3fdSPer Liden  *
53b97bf3fdSPer Liden  * First 3 fields identify (name or) name sequence being published.
54b97bf3fdSPer Liden  * Reference field uniquely identifies port that published name sequence.
55b97bf3fdSPer Liden  * Key field uniquely identifies publication, in the event a port has
56b97bf3fdSPer Liden  * multiple publications of the same name sequence.
57b97bf3fdSPer Liden  *
58b97bf3fdSPer Liden  * Note: There is no field that identifies the publishing node because it is
59b97bf3fdSPer Liden  * the same for all items contained within a publication message.
60b97bf3fdSPer Liden  */
61b97bf3fdSPer Liden struct distr_item {
623e6c8cd5SAl Viro 	__be32 type;
633e6c8cd5SAl Viro 	__be32 lower;
643e6c8cd5SAl Viro 	__be32 upper;
653e6c8cd5SAl Viro 	__be32 ref;
663e6c8cd5SAl Viro 	__be32 key;
67b97bf3fdSPer Liden };
68b97bf3fdSPer Liden 
69b97bf3fdSPer Liden /**
703f8375feSAllan Stephens  * struct publ_list - list of publications made by this node
713f8375feSAllan Stephens  * @list: circular list of publications
723f8375feSAllan Stephens  * @list_size: number of entries in list
73b97bf3fdSPer Liden  */
743f8375feSAllan Stephens struct publ_list {
753f8375feSAllan Stephens 	struct list_head list;
763f8375feSAllan Stephens 	u32 size;
773f8375feSAllan Stephens };
78b97bf3fdSPer Liden 
79a909804fSAllan Stephens static struct publ_list publ_zone = {
80a909804fSAllan Stephens 	.list = LIST_HEAD_INIT(publ_zone.list),
81a909804fSAllan Stephens 	.size = 0,
82a909804fSAllan Stephens };
83a909804fSAllan Stephens 
843f8375feSAllan Stephens static struct publ_list publ_cluster = {
853f8375feSAllan Stephens 	.list = LIST_HEAD_INIT(publ_cluster.list),
863f8375feSAllan Stephens 	.size = 0,
873f8375feSAllan Stephens };
88b97bf3fdSPer Liden 
89a909804fSAllan Stephens static struct publ_list publ_node = {
90a909804fSAllan Stephens 	.list = LIST_HEAD_INIT(publ_node.list),
91a909804fSAllan Stephens 	.size = 0,
92a909804fSAllan Stephens };
93a909804fSAllan Stephens 
94a909804fSAllan Stephens static struct publ_list *publ_lists[] = {
95a909804fSAllan Stephens 	NULL,
96a909804fSAllan Stephens 	&publ_zone,	/* publ_lists[TIPC_ZONE_SCOPE]		*/
97a909804fSAllan Stephens 	&publ_cluster,	/* publ_lists[TIPC_CLUSTER_SCOPE]	*/
98a909804fSAllan Stephens 	&publ_node	/* publ_lists[TIPC_NODE_SCOPE]		*/
99a909804fSAllan Stephens };
100a909804fSAllan Stephens 
101a909804fSAllan Stephens 
102b97bf3fdSPer Liden /**
103b97bf3fdSPer Liden  * publ_to_item - add publication info to a publication message
104b97bf3fdSPer Liden  */
105b97bf3fdSPer Liden static void publ_to_item(struct distr_item *i, struct publication *p)
106b97bf3fdSPer Liden {
107b97bf3fdSPer Liden 	i->type = htonl(p->type);
108b97bf3fdSPer Liden 	i->lower = htonl(p->lower);
109b97bf3fdSPer Liden 	i->upper = htonl(p->upper);
110b97bf3fdSPer Liden 	i->ref = htonl(p->ref);
111b97bf3fdSPer Liden 	i->key = htonl(p->key);
112b97bf3fdSPer Liden }
113b97bf3fdSPer Liden 
114b97bf3fdSPer Liden /**
115b97bf3fdSPer Liden  * named_prepare_buf - allocate & initialize a publication message
116b97bf3fdSPer Liden  */
117b97bf3fdSPer Liden static struct sk_buff *named_prepare_buf(u32 type, u32 size, u32 dest)
118b97bf3fdSPer Liden {
119741d9eb7SAllan Stephens 	struct sk_buff *buf = tipc_buf_acquire(INT_H_SIZE + size);
120b97bf3fdSPer Liden 	struct tipc_msg *msg;
121b97bf3fdSPer Liden 
122b97bf3fdSPer Liden 	if (buf != NULL) {
123b97bf3fdSPer Liden 		msg = buf_msg(buf);
124741d9eb7SAllan Stephens 		tipc_msg_init(msg, NAME_DISTRIBUTOR, type, INT_H_SIZE, dest);
125741d9eb7SAllan Stephens 		msg_set_size(msg, INT_H_SIZE + size);
126b97bf3fdSPer Liden 	}
127b97bf3fdSPer Liden 	return buf;
128b97bf3fdSPer Liden }
129b97bf3fdSPer Liden 
1308f92df6aSAllan Stephens static void named_cluster_distribute(struct sk_buff *buf)
1318f92df6aSAllan Stephens {
1328f92df6aSAllan Stephens 	struct sk_buff *buf_copy;
1338f92df6aSAllan Stephens 	struct tipc_node *n_ptr;
1348f92df6aSAllan Stephens 
135672d99e1SAllan Stephens 	list_for_each_entry(n_ptr, &tipc_node_list, list) {
1368f19afb2SPaul Gortmaker 		if (tipc_node_active_links(n_ptr)) {
1378f92df6aSAllan Stephens 			buf_copy = skb_copy(buf, GFP_ATOMIC);
1388f92df6aSAllan Stephens 			if (!buf_copy)
1398f92df6aSAllan Stephens 				break;
1408f92df6aSAllan Stephens 			msg_set_destnode(buf_msg(buf_copy), n_ptr->addr);
141*247f0f3cSYing Xue 			tipc_link_xmit(buf_copy, n_ptr->addr, n_ptr->addr);
1428f92df6aSAllan Stephens 		}
1438f92df6aSAllan Stephens 	}
1448f92df6aSAllan Stephens 
1455f6d9123SAllan Stephens 	kfree_skb(buf);
1468f92df6aSAllan Stephens }
1478f92df6aSAllan Stephens 
148b97bf3fdSPer Liden /**
1494323add6SPer Liden  * tipc_named_publish - tell other nodes about a new publication by this node
150b97bf3fdSPer Liden  */
1514323add6SPer Liden void tipc_named_publish(struct publication *publ)
152b97bf3fdSPer Liden {
153b97bf3fdSPer Liden 	struct sk_buff *buf;
154b97bf3fdSPer Liden 	struct distr_item *item;
155b97bf3fdSPer Liden 
156a909804fSAllan Stephens 	list_add_tail(&publ->local_list, &publ_lists[publ->scope]->list);
157a909804fSAllan Stephens 	publ_lists[publ->scope]->size++;
158b97bf3fdSPer Liden 
1591110b8d3SAllan Stephens 	if (publ->scope == TIPC_NODE_SCOPE)
1601110b8d3SAllan Stephens 		return;
1611110b8d3SAllan Stephens 
162b97bf3fdSPer Liden 	buf = named_prepare_buf(PUBLICATION, ITEM_SIZE, 0);
163b97bf3fdSPer Liden 	if (!buf) {
1642cf8aa19SErik Hugne 		pr_warn("Publication distribution failure\n");
165b97bf3fdSPer Liden 		return;
166b97bf3fdSPer Liden 	}
167b97bf3fdSPer Liden 
168b97bf3fdSPer Liden 	item = (struct distr_item *)msg_data(buf_msg(buf));
169b97bf3fdSPer Liden 	publ_to_item(item, publ);
1708f92df6aSAllan Stephens 	named_cluster_distribute(buf);
171b97bf3fdSPer Liden }
172b97bf3fdSPer Liden 
173b97bf3fdSPer Liden /**
1744323add6SPer Liden  * tipc_named_withdraw - tell other nodes about a withdrawn publication by this node
175b97bf3fdSPer Liden  */
1764323add6SPer Liden void tipc_named_withdraw(struct publication *publ)
177b97bf3fdSPer Liden {
178b97bf3fdSPer Liden 	struct sk_buff *buf;
179b97bf3fdSPer Liden 	struct distr_item *item;
180b97bf3fdSPer Liden 
181b97bf3fdSPer Liden 	list_del(&publ->local_list);
182a909804fSAllan Stephens 	publ_lists[publ->scope]->size--;
183b97bf3fdSPer Liden 
1841110b8d3SAllan Stephens 	if (publ->scope == TIPC_NODE_SCOPE)
1851110b8d3SAllan Stephens 		return;
1861110b8d3SAllan Stephens 
187b97bf3fdSPer Liden 	buf = named_prepare_buf(WITHDRAWAL, ITEM_SIZE, 0);
188b97bf3fdSPer Liden 	if (!buf) {
1892cf8aa19SErik Hugne 		pr_warn("Withdrawal distribution failure\n");
190b97bf3fdSPer Liden 		return;
191b97bf3fdSPer Liden 	}
192b97bf3fdSPer Liden 
193b97bf3fdSPer Liden 	item = (struct distr_item *)msg_data(buf_msg(buf));
194b97bf3fdSPer Liden 	publ_to_item(item, publ);
1958f92df6aSAllan Stephens 	named_cluster_distribute(buf);
196b97bf3fdSPer Liden }
197b97bf3fdSPer Liden 
198e11aa059SAllan Stephens /*
199e11aa059SAllan Stephens  * named_distribute - prepare name info for bulk distribution to another node
200e11aa059SAllan Stephens  */
201e11aa059SAllan Stephens static void named_distribute(struct list_head *message_list, u32 node,
202e11aa059SAllan Stephens 			     struct publ_list *pls, u32 max_item_buf)
203e11aa059SAllan Stephens {
204e11aa059SAllan Stephens 	struct publication *publ;
205e11aa059SAllan Stephens 	struct sk_buff *buf = NULL;
206e11aa059SAllan Stephens 	struct distr_item *item = NULL;
207e11aa059SAllan Stephens 	u32 left = 0;
208e11aa059SAllan Stephens 	u32 rest = pls->size * ITEM_SIZE;
209e11aa059SAllan Stephens 
210e11aa059SAllan Stephens 	list_for_each_entry(publ, &pls->list, local_list) {
211e11aa059SAllan Stephens 		if (!buf) {
212e11aa059SAllan Stephens 			left = (rest <= max_item_buf) ? rest : max_item_buf;
213e11aa059SAllan Stephens 			rest -= left;
214e11aa059SAllan Stephens 			buf = named_prepare_buf(PUBLICATION, left, node);
215e11aa059SAllan Stephens 			if (!buf) {
2162cf8aa19SErik Hugne 				pr_warn("Bulk publication failure\n");
217e11aa059SAllan Stephens 				return;
218e11aa059SAllan Stephens 			}
219e11aa059SAllan Stephens 			item = (struct distr_item *)msg_data(buf_msg(buf));
220e11aa059SAllan Stephens 		}
221e11aa059SAllan Stephens 		publ_to_item(item, publ);
222e11aa059SAllan Stephens 		item++;
223e11aa059SAllan Stephens 		left -= ITEM_SIZE;
224e11aa059SAllan Stephens 		if (!left) {
225e11aa059SAllan Stephens 			list_add_tail((struct list_head *)buf, message_list);
226e11aa059SAllan Stephens 			buf = NULL;
227e11aa059SAllan Stephens 		}
228e11aa059SAllan Stephens 	}
229e11aa059SAllan Stephens }
230e11aa059SAllan Stephens 
231b97bf3fdSPer Liden /**
2324323add6SPer Liden  * tipc_named_node_up - tell specified node about all publications by this node
233b97bf3fdSPer Liden  */
2341c553bb5SPaul Gortmaker void tipc_named_node_up(unsigned long nodearg)
235b97bf3fdSPer Liden {
236149ce37cSAllan Stephens 	struct tipc_node *n_ptr;
237a18c4bc3SPaul Gortmaker 	struct tipc_link *l_ptr;
2389aa88c2aSAllan Stephens 	struct list_head message_list;
2391c553bb5SPaul Gortmaker 	u32 node = (u32)nodearg;
240149ce37cSAllan Stephens 	u32 max_item_buf = 0;
241149ce37cSAllan Stephens 
242149ce37cSAllan Stephens 	/* compute maximum amount of publication data to send per message */
243149ce37cSAllan Stephens 	read_lock_bh(&tipc_net_lock);
2441c553bb5SPaul Gortmaker 	n_ptr = tipc_node_find(node);
245149ce37cSAllan Stephens 	if (n_ptr) {
246149ce37cSAllan Stephens 		tipc_node_lock(n_ptr);
247149ce37cSAllan Stephens 		l_ptr = n_ptr->active_links[0];
248149ce37cSAllan Stephens 		if (l_ptr)
249149ce37cSAllan Stephens 			max_item_buf = ((l_ptr->max_pkt - INT_H_SIZE) /
250149ce37cSAllan Stephens 				ITEM_SIZE) * ITEM_SIZE;
251149ce37cSAllan Stephens 		tipc_node_unlock(n_ptr);
252149ce37cSAllan Stephens 	}
253149ce37cSAllan Stephens 	read_unlock_bh(&tipc_net_lock);
254149ce37cSAllan Stephens 	if (!max_item_buf)
255149ce37cSAllan Stephens 		return;
256b97bf3fdSPer Liden 
2579aa88c2aSAllan Stephens 	/* create list of publication messages, then send them as a unit */
2589aa88c2aSAllan Stephens 	INIT_LIST_HEAD(&message_list);
2599aa88c2aSAllan Stephens 
2604323add6SPer Liden 	read_lock_bh(&tipc_nametbl_lock);
261e11aa059SAllan Stephens 	named_distribute(&message_list, node, &publ_cluster, max_item_buf);
262a909804fSAllan Stephens 	named_distribute(&message_list, node, &publ_zone, max_item_buf);
2634323add6SPer Liden 	read_unlock_bh(&tipc_nametbl_lock);
2649aa88c2aSAllan Stephens 
265*247f0f3cSYing Xue 	tipc_link_names_xmit(&message_list, node);
266b97bf3fdSPer Liden }
267b97bf3fdSPer Liden 
268b97bf3fdSPer Liden /**
269f1379173SAllan Stephens  * named_purge_publ - remove publication associated with a failed node
270b97bf3fdSPer Liden  *
271b97bf3fdSPer Liden  * Invoked for each publication issued by a newly failed node.
272b97bf3fdSPer Liden  * Removes publication structure from name table & deletes it.
273b97bf3fdSPer Liden  */
274f1379173SAllan Stephens static void named_purge_publ(struct publication *publ)
275b97bf3fdSPer Liden {
276b97bf3fdSPer Liden 	struct publication *p;
277f131072cSAllan Stephens 
2784323add6SPer Liden 	write_lock_bh(&tipc_nametbl_lock);
2794323add6SPer Liden 	p = tipc_nametbl_remove_publ(publ->type, publ->lower,
280b97bf3fdSPer Liden 				     publ->node, publ->ref, publ->key);
281431697ebSAllan Stephens 	if (p)
282431697ebSAllan Stephens 		tipc_nodesub_unsubscribe(&p->subscr);
2834323add6SPer Liden 	write_unlock_bh(&tipc_nametbl_lock);
284f131072cSAllan Stephens 
285f131072cSAllan Stephens 	if (p != publ) {
2862cf8aa19SErik Hugne 		pr_err("Unable to remove publication from failed node\n"
287f131072cSAllan Stephens 		       " (type=%u, lower=%u, node=0x%x, ref=%u, key=%u)\n",
2882cf8aa19SErik Hugne 		       publ->type, publ->lower, publ->node, publ->ref,
2892cf8aa19SErik Hugne 		       publ->key);
290f131072cSAllan Stephens 	}
291f131072cSAllan Stephens 
292f131072cSAllan Stephens 	kfree(p);
293f131072cSAllan Stephens }
294b97bf3fdSPer Liden 
295b97bf3fdSPer Liden /**
296*247f0f3cSYing Xue  * tipc_named_rcv - process name table update message sent by another node
297b97bf3fdSPer Liden  */
298*247f0f3cSYing Xue void tipc_named_rcv(struct sk_buff *buf)
299b97bf3fdSPer Liden {
300b97bf3fdSPer Liden 	struct publication *publ;
301b97bf3fdSPer Liden 	struct tipc_msg *msg = buf_msg(buf);
302b97bf3fdSPer Liden 	struct distr_item *item = (struct distr_item *)msg_data(msg);
303b97bf3fdSPer Liden 	u32 count = msg_data_sz(msg) / ITEM_SIZE;
304b97bf3fdSPer Liden 
3054323add6SPer Liden 	write_lock_bh(&tipc_nametbl_lock);
306b97bf3fdSPer Liden 	while (count--) {
307b97bf3fdSPer Liden 		if (msg_type(msg) == PUBLICATION) {
3084323add6SPer Liden 			publ = tipc_nametbl_insert_publ(ntohl(item->type),
309b97bf3fdSPer Liden 							ntohl(item->lower),
310b97bf3fdSPer Liden 							ntohl(item->upper),
311b97bf3fdSPer Liden 							TIPC_CLUSTER_SCOPE,
312b97bf3fdSPer Liden 							msg_orignode(msg),
313b97bf3fdSPer Liden 							ntohl(item->ref),
314b97bf3fdSPer Liden 							ntohl(item->key));
315b97bf3fdSPer Liden 			if (publ) {
3164323add6SPer Liden 				tipc_nodesub_subscribe(&publ->subscr,
317b97bf3fdSPer Liden 						       msg_orignode(msg),
318b97bf3fdSPer Liden 						       publ,
319f1379173SAllan Stephens 						       (net_ev_handler)
320f1379173SAllan Stephens 						       named_purge_publ);
321b97bf3fdSPer Liden 			}
322b97bf3fdSPer Liden 		} else if (msg_type(msg) == WITHDRAWAL) {
3234323add6SPer Liden 			publ = tipc_nametbl_remove_publ(ntohl(item->type),
324b97bf3fdSPer Liden 							ntohl(item->lower),
325b97bf3fdSPer Liden 							msg_orignode(msg),
326b97bf3fdSPer Liden 							ntohl(item->ref),
327b97bf3fdSPer Liden 							ntohl(item->key));
328b97bf3fdSPer Liden 
329b97bf3fdSPer Liden 			if (publ) {
3304323add6SPer Liden 				tipc_nodesub_unsubscribe(&publ->subscr);
331b97bf3fdSPer Liden 				kfree(publ);
332f131072cSAllan Stephens 			} else {
3332cf8aa19SErik Hugne 				pr_err("Unable to remove publication by node 0x%x\n"
334f131072cSAllan Stephens 				       " (type=%u, lower=%u, ref=%u, key=%u)\n",
3352cf8aa19SErik Hugne 				       msg_orignode(msg), ntohl(item->type),
3362cf8aa19SErik Hugne 				       ntohl(item->lower), ntohl(item->ref),
3372cf8aa19SErik Hugne 				       ntohl(item->key));
338b97bf3fdSPer Liden 			}
339b97bf3fdSPer Liden 		} else {
3402cf8aa19SErik Hugne 			pr_warn("Unrecognized name table message received\n");
341b97bf3fdSPer Liden 		}
342b97bf3fdSPer Liden 		item++;
343b97bf3fdSPer Liden 	}
3444323add6SPer Liden 	write_unlock_bh(&tipc_nametbl_lock);
3455f6d9123SAllan Stephens 	kfree_skb(buf);
346b97bf3fdSPer Liden }
347b97bf3fdSPer Liden 
348b97bf3fdSPer Liden /**
3491110b8d3SAllan Stephens  * tipc_named_reinit - re-initialize local publications
350b97bf3fdSPer Liden  *
351945af1c3SAllan Stephens  * This routine is called whenever TIPC networking is enabled.
3521110b8d3SAllan Stephens  * All name table entries published by this node are updated to reflect
3531110b8d3SAllan Stephens  * the node's new network address.
354b97bf3fdSPer Liden  */
3554323add6SPer Liden void tipc_named_reinit(void)
356b97bf3fdSPer Liden {
357b97bf3fdSPer Liden 	struct publication *publ;
358a909804fSAllan Stephens 	int scope;
359b97bf3fdSPer Liden 
3604323add6SPer Liden 	write_lock_bh(&tipc_nametbl_lock);
361945af1c3SAllan Stephens 
3621110b8d3SAllan Stephens 	for (scope = TIPC_ZONE_SCOPE; scope <= TIPC_NODE_SCOPE; scope++)
363a909804fSAllan Stephens 		list_for_each_entry(publ, &publ_lists[scope]->list, local_list)
364b97bf3fdSPer Liden 			publ->node = tipc_own_addr;
365945af1c3SAllan Stephens 
3664323add6SPer Liden 	write_unlock_bh(&tipc_nametbl_lock);
367b97bf3fdSPer Liden }
368