[PATCH] fastboot: Enter the initcall loop only once for all asyncinitcalls

From: Yong Wang
Date: Fri Sep 26 2008 - 01:58:55 EST



fastboot: Enter the initcall loop only once for all async initcalls

Only need to enter the initcall loop once for all async initcalls since
they have been submitted to async work queue all together when the loop
is entered for the first async initcall.

Signed-off-by: Yong Wang <yong.y.wang@xxxxxxxxx>
Signed-off-by: Qi Wang <qi.wang@xxxxxxxxx>
---
init/main.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/init/main.c b/init/main.c
index 8967835..672dabf 100644
--- a/init/main.c
+++ b/init/main.c
@@ -788,6 +788,7 @@ static void __init do_initcalls(void)
#else
do_async_initcalls(NULL);
#endif
+ call = __async_initcall_end - 1;
}
if (phase == 1 && call >= __async_initcall_end)
phase = 2;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/