diff options
| author | Mark Johnston <markj@FreeBSD.org> | 2025-11-05 21:51:55 +0000 |
|---|---|---|
| committer | Mark Johnston <markj@FreeBSD.org> | 2025-11-05 21:54:26 +0000 |
| commit | 1ca7542a1b31fffefaac5a2ff45ef23f908b33c2 (patch) | |
| tree | f6e19a862d60f12ed12f8363ab4023c18f1b3b8f | |
| parent | c3b853fe522ead976863af086557be8863327eb0 (diff) | |
libdtrace: Update io.d to chase changes to struct bio layout
Fixes: 6c406b5b9312 ("exterror(9): add infra for bufs and bios")
| -rw-r--r-- | cddl/lib/libdtrace/io.d | 2 |
1 files changed, 1 insertions, 1 deletions
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; }; /* |
