summaryrefslogtreecommitdiff
path: root/net/tipc
diff options
context:
space:
mode:
authorAllan Stephens <allan.stephens@windriver.com>2012-04-26 17:41:35 -0400
committerPaul Gortmaker <paul.gortmaker@windriver.com>2012-04-26 18:15:45 -0400
commit2d98abb9fe132898d17b56fb4765687aff82c093 (patch)
tree7240312409684efad08e556d90411ac290fb8a23 /net/tipc
parenteb3865a99dc38396a403ef82f99f4c51dd34f0bf (diff)
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>
Diffstat (limited to 'net/tipc')
-rw-r--r--net/tipc/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tipc/core.c b/net/tipc/core.c
index c8a4f00468a5..ba089407b2f7 100644
--- a/net/tipc/core.c
+++ b/net/tipc/core.c
@@ -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)