From: Allan Stephens Date: Thu, 26 Apr 2012 21:41:35 +0000 (-0400) Subject: tipc: Optimize initialization of network topology service X-Git-Tag: v3.5-rc1~109^2~230^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2d98abb9fe132898d17b56fb4765687aff82c093;p=profile%2Fivi%2Fkernel-x86-ivi.git 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 Signed-off-by: Paul Gortmaker --- diff --git a/net/tipc/core.c b/net/tipc/core.c index c8a4f00..ba08940 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)