From: Allan Stephens Date: Wed, 21 May 2008 21:54:12 +0000 (-0700) Subject: tipc: Update "previous node" indicators when node address changes X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;ds=sidebyside;h=6d4a6672c8263f98544d2b91690dc7074b144090;p=mv-sheeva.git tipc: Update "previous node" indicators when node address changes This patch ensures that the "previous node" field in any existing TIPC port message header templates is updated properly when a TIPC network address is assigned to the node. (Previously, only the "originating node" field was updated.) Signed-off-by: Allan Stephens Signed-off-by: David S. Miller --- diff --git a/net/tipc/port.c b/net/tipc/port.c index 757de38fe6a..2c64ad88e3c 100644 --- a/net/tipc/port.c +++ b/net/tipc/port.c @@ -780,6 +780,7 @@ void tipc_port_reinit(void) msg = &p_ptr->publ.phdr; if (msg_orignode(msg) == tipc_own_addr) break; + msg_set_prevnode(msg, tipc_own_addr); msg_set_orignode(msg, tipc_own_addr); } spin_unlock_bh(&tipc_port_list_lock);