diff options
author | Brian Behlendorf <[email protected]> | 2011-06-30 14:45:33 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2011-06-30 14:45:33 -0700 |
commit | 2a005961a48e748632e96272915192dab6ce9401 (patch) | |
tree | 52aaace193c3787086a1877648570c96a3f22095 /etc/init.d/zfs.gentoo | |
parent | 218b8eafbdcb9bc19fc5a252fdd411fde11bca48 (diff) |
Ensure all block devices are available
These days most disk drivers will probe for devices asynchronously.
This means it's possible that when you zfs init script runs all the
required block devices may not yet have been discovered. The result
is the pool may fail to cleanly import at boot time. This is
particularly common when you have a large number of devices.
The fix is for the init script to block until udev settles and we
are no longer detecting new devices. Once the system has settled
the zfs modules can be loaded and the pool with be automatically
imported.
Diffstat (limited to 'etc/init.d/zfs.gentoo')
-rw-r--r-- | etc/init.d/zfs.gentoo | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/etc/init.d/zfs.gentoo b/etc/init.d/zfs.gentoo index c9c5d8502..a33d9dc29 100644 --- a/etc/init.d/zfs.gentoo +++ b/etc/init.d/zfs.gentoo @@ -41,6 +41,10 @@ checksystem() { start() { ebegin "Starting ZFS" checksystem || return 1 + + # Delay until all required block devices are present. + udevadm settle + if [ ! -c /dev/zfs ]; then modprobe $ZFS_MODULE rv=$? |