Commit 861d3a0e authored by Allan Stephens's avatar Allan Stephens Committed by Paul Gortmaker

tipc: Optimize initialization of configuration service

Initialization now occurs in the calling thread of control,
rather than being deferred to the TIPC tasklet.  With the
current codebase, the deferral is no longer necessary.
Signed-off-by: default avatarAllan Stephens <allan.stephens@windriver.com>
Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
parent a2cfd45b
......@@ -152,7 +152,7 @@ static int tipc_core_start(void)
if (!res)
res = tipc_k_signal((Handler)tipc_subscr_start, 0);
if (!res)
res = tipc_k_signal((Handler)tipc_cfg_init, 0);
res = tipc_cfg_init();
if (!res)
res = tipc_netlink_start();
if (!res)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment