[Bug 288722] Panic when starting poudriere on 15.0-CURRENT - seems to be in ZFS
- In reply to: bugzilla-noreply_a_freebsd.org: "[Bug 288722] Panic when starting poudriere - seems to be in ZFS"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 13 Aug 2025 18:35:01 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=288722
--- Comment #39 from John Kennedy <warlock@phouka.net> ---
(In reply to Alexander Motin from comment #37)
Ok, crunched up a kernel with your patch. Initial poudriere build of just pkg
succeeded (didn't panic on startup or cleanup). Now going for the much longer
run.
[This was my interpretation of Alexander's proposed patch]
# (cd /usr/src && git diff -u)
diff --git a/sys/contrib/openzfs/module/zfs/dsl_deadlist.c
b/sys/contrib/openzfs/module/zfs/dsl_deadlist.c
index 475db3c8950..1338743ff17 100644
--- a/sys/contrib/openzfs/module/zfs/dsl_deadlist.c
+++ b/sys/contrib/openzfs/module/zfs/dsl_deadlist.c
@@ -1049,7 +1049,7 @@ dsl_livelist_iterate(void *arg, const blkptr_t *bp,
boolean_t bp_freed,
ASSERT3U(BP_GET_PSIZE(bp), ==, BP_GET_PSIZE(&found->le_bp));
ASSERT3U(BP_GET_CHECKSUM(bp), ==,
BP_GET_CHECKSUM(&found->le_bp));
- ASSERT3U(BP_GET_BIRTH(bp), ==, BP_GET_BIRTH(&found->le_bp));
+ ASSERT3U(BP_GET_PHYSICAL_BIRTH(bp), ==,
BP_GET_PHYSICAL_BIRTH(&found->le_bp));
}
if (bp_freed) {
if (found == NULL) {
--
You are receiving this mail because:
You are the assignee for the bug.