diff options
Diffstat (limited to 'net/tipc/net.c')
-rw-r--r-- | net/tipc/net.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/tipc/net.c b/net/tipc/net.c index d6d1399ae229..dc623d5358aa 100644 --- a/net/tipc/net.c +++ b/net/tipc/net.c | |||
@@ -117,7 +117,7 @@ int tipc_net_start(struct net *net, u32 addr) | |||
117 | tn->own_addr = addr; | 117 | tn->own_addr = addr; |
118 | tipc_named_reinit(net); | 118 | tipc_named_reinit(net); |
119 | tipc_sk_reinit(net); | 119 | tipc_sk_reinit(net); |
120 | res = tipc_bclink_init(net); | 120 | res = tipc_bcast_init(net); |
121 | if (res) | 121 | if (res) |
122 | return res; | 122 | return res; |
123 | 123 | ||
@@ -142,7 +142,7 @@ void tipc_net_stop(struct net *net) | |||
142 | tn->own_addr); | 142 | tn->own_addr); |
143 | rtnl_lock(); | 143 | rtnl_lock(); |
144 | tipc_bearer_stop(net); | 144 | tipc_bearer_stop(net); |
145 | tipc_bclink_stop(net); | 145 | tipc_bcast_stop(net); |
146 | tipc_node_stop(net); | 146 | tipc_node_stop(net); |
147 | rtnl_unlock(); | 147 | rtnl_unlock(); |
148 | 148 | ||