]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
wait for device mounts in zpool and dumpon
authorChuck Tuffli <chuck@FreeBSD.org>
Fri, 5 Mar 2021 16:13:23 +0000 (08:13 -0800)
committerChuck Tuffli <chuck@FreeBSD.org>
Mon, 5 Apr 2021 16:25:04 +0000 (09:25 -0700)
commitf30f11f878fe2aa535cd286810d31c92793a3d95
tree5c746ecc6aa0a247dcbf8a3f9f56662b3eb4e229
parent015351de04e3e621cff825cc1fdad5faf078c3ac
wait for device mounts in zpool and dumpon

If the root file system is composed from multiple devices, wait for
devices to be ready before running zpool and dumpon rc scripts.

An example of this is if the bulk of the root file system exists on a
fast device (e.g. NVMe) but the /var directory comes from a ZFS dataset
on a slower device (e.g. SATA). In this case, it is possible that the
zpool import may run before the slower device has finished being probed,
leaving the system in an intermediate state.

Fix is to add root_hold_wait to the zpool and dumpon (which has a
similar issue) rc scripts.

PR: 242189
Reported by: osidorkin@gmail.com
Reviewed by: allanjude
MFC after: 1 month
Differential Revision: https://reviews.freebsd.org/D29101
libexec/rc/rc.d/dumpon
libexec/rc/rc.d/zpool