The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=1ca7542a1b31fffefaac5a2ff45ef23f908b33c2
commit 1ca7542a1b31fffefaac5a2ff45ef23f908b33c2 Author: Mark Johnston <[email protected]> AuthorDate: 2025-11-05 21:51:55 +0000 Commit: Mark Johnston <[email protected]> CommitDate: 2025-11-05 21:54:26 +0000 libdtrace: Update io.d to chase changes to struct bio layout Fixes: 6c406b5b9312 ("exterror(9): add infra for bufs and bios") --- cddl/lib/libdtrace/io.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cddl/lib/libdtrace/io.d b/cddl/lib/libdtrace/io.d index d576f57476ce..484e6416bac7 100644 --- a/cddl/lib/libdtrace/io.d +++ b/cddl/lib/libdtrace/io.d @@ -73,7 +73,7 @@ translator bufinfo_t < struct bio *B > { b_lblkno = 0; b_resid = B->bio_resid; b_bufsize = 0; /* XXX gnn */ - b_error = B->bio_error; + b_error = B->bio_exterr.error; }; /*
