1 From dce8113d033975f56630cf6d2a6a908cfb66059d Mon Sep 17 00:00:00 2001
2 From: Arjan van de Ven <arjan@linux.intel.com>
3 Date: Sun, 20 Jul 2008 13:12:16 -0700
4 Subject: [PATCH] fastboot: remove "wait for all devices before mounting root" delay
6 In the non-initrd case, we wait for all devices to finish their
7 probing before we try to mount the rootfs.
8 In practice, this means that we end up waiting 2 extra seconds for
9 the PS/2 mouse probing even though the root holding device has been
10 ready since a long time.
12 The previous two patches in this series made the RAID autodetect code
13 do it's own "wait for probing to be done" code, and added
14 "wait and retry" functionality in case the root device isn't actually
17 These two changes should make it safe to remove the delay itself,
18 and this patch does this. On my test laptop, this reduces the boot time
19 by 2 seconds (kernel time goes from 3.9 to 1.9 seconds).
21 Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
23 --- a/init/do_mounts.c 2009-01-07 18:42:10.000000000 -0800
24 +++ b/init/do_mounts.c 2009-01-07 18:43:02.000000000 -0800
25 @@ -370,10 +370,12 @@ void __init prepare_namespace(void)
30 /* wait for the known devices to complete their probing */
31 while (driver_probe_done() != 0)
34 async_synchronize_full();