]> xenbits.xensource.com Git - xenclient/kernel.git/commitdiff
xenbus: Wait for 30s for devices to connect (previously 10s).
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>
Tue, 24 Jul 2007 08:39:00 +0000 (09:39 +0100)
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>
Tue, 24 Jul 2007 08:39:00 +0000 (09:39 +0100)
Give a visual update to the user on the console every 5s during this
period.
Signed-off-by: Keir Fraser <keir@xensource.com>
drivers/xen/xenbus/xenbus_probe.c

index daeb99943f67ad3ed8895ef72a76c76b9780faf5..426b35171f7f201bea23f4ecddeafb13164fe1fb 100644 (file)
@@ -1072,7 +1072,7 @@ static int print_device_status(struct device *dev, void *data)
 static int ready_to_wait_for_devices;
 
 /*
- * On a 10 second timeout, wait for all devices currently configured.  We need
+ * On a 30-second timeout, wait for all devices currently configured.  We need
  * to do this to guarantee that the filesystems and / or network devices
  * needed for boot are available, before we can allow the boot to proceed.
  *
@@ -1087,18 +1087,30 @@ static int ready_to_wait_for_devices;
  */
 static void wait_for_devices(struct xenbus_driver *xendrv)
 {
-       unsigned long timeout = jiffies + 10*HZ;
+       unsigned long start = jiffies;
        struct device_driver *drv = xendrv ? &xendrv->driver : NULL;
+       unsigned int seconds_waited = 0;
 
        if (!ready_to_wait_for_devices || !is_running_on_xen())
                return;
 
        while (exists_disconnected_device(drv)) {
-               if (time_after(jiffies, timeout))
-                       break;
+               if (time_after(jiffies, start + (seconds_waited+5)*HZ)) {
+                       if (!seconds_waited)
+                               printk(KERN_WARNING "XENBUS: Waiting for "
+                                      "devices to initialise: ");
+                       seconds_waited += 5;
+                       printk("%us...", 30 - seconds_waited);
+                       if (seconds_waited == 30)
+                               break;
+               }
+               
                schedule_timeout_interruptible(HZ/10);
        }
 
+       if (seconds_waited)
+               printk("\n");
+
        bus_for_each_dev(&xenbus_frontend.bus, NULL, drv,
                         print_device_status);
 }