|
Revision tags: release/13.4.0-p5, release/13.5.0-p1, release/14.2.0-p3, release/13.5.0, release/14.2.0-p2, release/14.1.0-p8, release/13.4.0-p4, release/14.1.0-p7, release/14.2.0-p1, release/13.4.0-p3, release/14.2.0, release/13.4.0, release/14.1.0, release/13.3.0, release/14.0.0 |
|
| #
d0b2dbfa |
| 16-Aug-2023 |
Warner Losh <[email protected]> |
Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
|
|
Revision tags: release/13.2.0, release/12.4.0, release/13.1.0, release/12.3.0, release/13.0.0 |
|
| #
f30f11f8 |
| 05-Mar-2021 |
Chuck Tuffli <[email protected]> |
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
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: [email protected] Reviewed by: allanjude MFC after: 1 month Differential Revision: https://reviews.freebsd.org/D29101
show more ...
|
|
Revision tags: release/12.2.0 |
|
| #
90802d88 |
| 05-Sep-2020 |
Xin LI <[email protected]> |
Declare dependency relationship once instead of twice for zpool and zvol.
|
| #
0cd66978 |
| 04-Sep-2020 |
Xin LI <[email protected]> |
Make zpool on GELI work again.
After OpenZFS import, zpool auto import behavior was moved to an explicit "zpool import -a", and the zpool rc.d script was added as a prerequisite of zvol.
However, i
Make zpool on GELI work again.
After OpenZFS import, zpool auto import behavior was moved to an explicit "zpool import -a", and the zpool rc.d script was added as a prerequisite of zvol.
However, in r299839, zvol was added as a prerequisite of dumpon, making it to start very early and before all 'disks' providers. At this time, dumping on a zvol is not supported, so remove this requirement and make zpool depend on disks to allow zpool on full disk encryption work.
Reviewed by: allanjude Differential Revision: https://reviews.freebsd.org/D26333
show more ...
|
| #
a7841850 |
| 27-Aug-2020 |
Cy Schubert <[email protected]> |
/etc/zfs/zpool.cache is the preferred (and new) location of zpool.cache. Check for it first. Only use /boot/zfs/zpool.cache if the /etc/zfs version is not found and good.
Reported by: avg Suggested
/etc/zfs/zpool.cache is the preferred (and new) location of zpool.cache. Check for it first. Only use /boot/zfs/zpool.cache if the /etc/zfs version is not found and good.
Reported by: avg Suggested by: avg, kevans
show more ...
|
| #
74e2b24f |
| 26-Aug-2020 |
Cy Schubert <[email protected]> |
As of r364746 (OpenZFS import) existing ZPOOLs are not imported prior to zvol and mountcritlocal resulting in ZVOLs (swap and virtual machine UFS filesystems) being unavailable, leading to boot failu
As of r364746 (OpenZFS import) existing ZPOOLs are not imported prior to zvol and mountcritlocal resulting in ZVOLs (swap and virtual machine UFS filesystems) being unavailable, leading to boot failures.
We move the zpool import from zfs to a new zpool script, with the -N option to avoid mounting datasets while making the ZPOOL's datasets available for "legacy" mount (mountpoint=legacy) and ZVOLs available for subsequent use for swap (in the zvol rc sript) or for UFS or other filesystems in fstab(5), mounted by mountcritlocal.
Reviewed by: freqlabs (previous version) Differential Revision: https://reviews.freebsd.org/D26185
show more ...
|