View | Details | Raw Unified | Return to bug 144695
Collapse All | Expand All

(-)vfs_mount.c (+7 lines)
Lines 1648-1653 Link Here
1648
1648
1649
	options = NULL;
1649
	options = NULL;
1650
1650
1651
        static int mountroot_wait_delay = 5000;
1652
        TUNABLE_INT_FETCH("hw.mountroot_wait_delay", &mountroot_wait_delay);
1653
	int mysec = mountroot_wait_delay / hz;
1654
	printf("Waiting %d seconds for devices to settle.\n", mysec);
1655
        pause("Waiting for devices to settle", mountroot_wait_delay);
1656
1651
	root_mount_prepare();
1657
	root_mount_prepare();
1652
1658
1653
	mount_zone = uma_zcreate("Mountpoints", sizeof(struct mount),
1659
	mount_zone = uma_zcreate("Mountpoints", sizeof(struct mount),
Lines 2492-2494 Link Here
2492
	error = kernel_mount(ma, flags);
2498
	error = kernel_mount(ma, flags);
2493
	return (error);
2499
	return (error);
2494
}
2500
}
2501

Return to bug 144695