diff options
author | sbruno <sbruno@FreeBSD.org> | 2008-09-18 15:02:19 +0000 |
---|---|---|
committer | sbruno <sbruno@FreeBSD.org> | 2008-09-18 15:02:19 +0000 |
commit | 19f6a53c5db4183efd61f44d1e07d3b23b649dd7 (patch) | |
tree | 52a951f24d635ddcbc936a250a3193795c7e85fb | |
parent | 1f1c41303a37e421e40d7762e1a650a6786a142c (diff) | |
download | FreeBSD-src-19f6a53c5db4183efd61f44d1e07d3b23b649dd7.zip FreeBSD-src-19f6a53c5db4183efd61f44d1e07d3b23b649dd7.tar.gz |
Just a fixup for a KTRACE message I stumbled upon many moons ago.
Reviewed by: Scott Long
MFC after: 2 days
-rw-r--r-- | sys/geom/geom_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/geom/geom_io.c b/sys/geom/geom_io.c index 5e27f36..572dc75 100644 --- a/sys/geom/geom_io.c +++ b/sys/geom/geom_io.c @@ -582,7 +582,7 @@ g_io_schedule_up(struct thread *tp __unused) g_bioq_unlock(&g_bio_run_up); THREAD_NO_SLEEPING(); CTR4(KTR_GEOM, "g_up biodone bp %p provider %s off " - "%ld len %ld", bp, bp->bio_to->name, + "%jd len %ld", bp, bp->bio_to->name, bp->bio_offset, bp->bio_length); biodone(bp); THREAD_SLEEPING_OK(); |