diff options
author | Allan Stephens <allan.stephens@windriver.com> | 2008-05-21 14:55:04 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-05-21 14:55:04 -0700 |
commit | 03194379a77b02df3404ec4848a50c6784e9a8a5 (patch) | |
tree | f76ddd4c02f71f5ed03da0729d563f81d701f267 /net/tipc/core.c | |
parent | 6d4a6672c8263f98544d2b91690dc7074b144090 (diff) | |
download | blackbird-obmc-linux-03194379a77b02df3404ec4848a50c6784e9a8a5.tar.gz blackbird-obmc-linux-03194379a77b02df3404ec4848a50c6784e9a8a5.zip |
tipc: Fix initialization sequence problems when entering network mode
This patch ensures that TIPC's topology service and configuration
service are shut down before switching into "network mode". This
ensures that TIPC does not mistakenly try to send unnecessary
"publication withdraw" messages to other nodes before it is fully
initialized for sending off-node messages. Note that the node's
current network address is now updated only after the two services
are shut down; this ensures that any existing connections to the
topology server are terminated correctly using the old address.
Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/core.c')
-rw-r--r-- | net/tipc/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/tipc/core.c b/net/tipc/core.c index 3d97386af095..3256bd7d398f 100644 --- a/net/tipc/core.c +++ b/net/tipc/core.c @@ -117,11 +117,11 @@ void tipc_core_stop_net(void) * start_net - start TIPC networking sub-systems */ -int tipc_core_start_net(void) +int tipc_core_start_net(unsigned long addr) { int res; - if ((res = tipc_net_start()) || + if ((res = tipc_net_start(addr)) || (res = tipc_eth_media_start())) { tipc_core_stop_net(); } |