dect
/
linux-2.6
Archived
13
0
Fork 0

tipc: Optimize initialization of network topology 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: Allan Stephens <allan.stephens@windriver.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
This commit is contained in:
Allan Stephens 2012-04-26 17:41:35 -04:00 committed by Paul Gortmaker
parent eb3865a99d
commit 2d98abb9fe
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ static int tipc_core_start(void)
if (!res)
res = tipc_nametbl_init();
if (!res)
res = tipc_k_signal((Handler)tipc_subscr_start, 0);
res = tipc_subscr_start();
if (!res)
res = tipc_cfg_init();
if (!res)