summaryrefslogtreecommitdiffstats
path: root/net/tipc
diff options
context:
space:
mode:
authorAllan Stephens2012-04-26 23:41:35 +0200
committerPaul Gortmaker2012-04-27 00:15:45 +0200
commit2d98abb9fe132898d17b56fb4765687aff82c093 (patch)
tree7240312409684efad08e556d90411ac290fb8a23 /net/tipc
parenttipc: Enhance re-initialization of network topology service (diff)
downloadkernel-qcow2-linux-2d98abb9fe132898d17b56fb4765687aff82c093.tar.gz
kernel-qcow2-linux-2d98abb9fe132898d17b56fb4765687aff82c093.tar.xz
kernel-qcow2-linux-2d98abb9fe132898d17b56fb4765687aff82c093.zip
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)