Page MenuHomeFreeBSD

libsa/zfs: ignore labels with zero txg
ClosedPublic

Authored by glebius on Aug 15 2025, 5:42 AM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Apr 1, 5:57 AM
Unknown Object (File)
Sun, Mar 29, 2:09 AM
Unknown Object (File)
Wed, Mar 18, 10:05 AM
Unknown Object (File)
Tue, Mar 17, 4:07 AM
Unknown Object (File)
Wed, Mar 11, 9:43 AM
Unknown Object (File)
Wed, Mar 11, 6:08 AM
Unknown Object (File)
Mon, Mar 9, 3:28 PM
Unknown Object (File)
Feb 26 2026, 8:43 PM
Subscribers

Details

Summary

Zero txg means this vdev has been correctly removed from the pool. For
reference see module/zfs/vdev_removal.c in OpenZFS. It calls
vdev_label_init(vd, 0, VDEV_LABEL_REMOVE), and second argument there is
the txg to write.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 66253
Build 63136: arc lint + arc unit

Event Timeline

This revision is now accepted and ready to land.Aug 15 2025, 9:27 PM

Searching for ZPOOL_CONFIG_POOL_TXG in OpenZFS I indeed see plenty of similar txg == 0 checks.

This revision was automatically updated to reflect the committed changes.