diff options
author | Allan Stephens <allan.stephens@windriver.com> | 2012-04-26 17:41:35 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2012-04-26 18:15:45 -0400 |
commit | 2d98abb9fe132898d17b56fb4765687aff82c093 (patch) | |
tree | 7240312409684efad08e556d90411ac290fb8a23 /net/tipc | |
parent | eb3865a99dc38396a403ef82f99f4c51dd34f0bf (diff) | |
download | linux-3.10-2d98abb9fe132898d17b56fb4765687aff82c093.tar.gz linux-3.10-2d98abb9fe132898d17b56fb4765687aff82c093.tar.bz2 linux-3.10-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tipc/core.c b/net/tipc/core.c index c8a4f00468a..ba089407b2f 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) |