Lines Matching defs:boot_delay
1294 static int boot_delay; /* msecs delay after each printk during bootup */
1295 static unsigned long long loops_per_msec; /* based on boot_delay */
1304 get_option(&str, &boot_delay);
1305 if (boot_delay > 10 * 1000)
1306 boot_delay = 0;
1308 pr_debug("boot_delay: %u, preset_lpj: %ld, lpj: %lu, "
1310 boot_delay, preset_lpj, lpj, HZ, loops_per_msec);
1313 early_param("boot_delay", boot_delay_setup);
1322 if ((boot_delay == 0 || system_state >= SYSTEM_RUNNING) || suppress)
1325 k = (unsigned long long)loops_per_msec * boot_delay;
1327 timeout = jiffies + msecs_to_jiffies(boot_delay);