Messages in this thread Patch in this message |  | | | Date | Fri, 26 Sep 2008 13:54:33 +0800 | | From | Yong Wang <> | | Subject | [PATCH] fastboot: Enter the initcall loop only once for all async initcalls | |
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@intel.com>
Signed-off-by: Qi Wang <qi.wang@intel.com>
---
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;
|  |