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)
Sun, May 17, 3:33 PM
Unknown Object (File)
Sat, May 16, 3:22 AM
Unknown Object (File)
Sat, May 16, 3:22 AM
Unknown Object (File)
Sat, May 16, 3:20 AM
Unknown Object (File)
Thu, May 14, 10:23 AM
Unknown Object (File)
Thu, May 14, 9:40 AM
Unknown Object (File)
Wed, May 13, 6:35 PM
Unknown Object (File)
Mon, May 11, 12:47 AM
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.