diff options
author | Warner Losh <imp@FreeBSD.org> | 2016-04-14 05:10:41 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2016-04-14 05:10:41 +0000 |
commit | 9a8fa125c1254266563fb16e3c94e4c677906121 (patch) | |
tree | 771261487fac0e42311b4cbdb99207d4ce303902 /sys/geom/geom_subr.c | |
parent | bd3bce41db1e29fb96124a57e89d02e56c4c242b (diff) | |
download | src-9a8fa125c1254266563fb16e3c94e4c677906121.tar.gz src-9a8fa125c1254266563fb16e3c94e4c677906121.zip |
Bump bio_cmd and bio_*flags from 8 bits to 16.
Differential Revision: https://reviews.freebsd.org/D5784
Notes
Notes:
svn path=/head/; revision=297955
Diffstat (limited to 'sys/geom/geom_subr.c')
-rw-r--r-- | sys/geom/geom_subr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/geom/geom_subr.c b/sys/geom/geom_subr.c index bf14a86e8ee7..54a99bfe4560 100644 --- a/sys/geom/geom_subr.c +++ b/sys/geom/geom_subr.c @@ -1508,8 +1508,8 @@ DB_SHOW_COMMAND(bio, db_show_bio) db_printf("BIO %p\n", bp); db_print_bio_cmd(bp); db_print_bio_flags(bp); - db_printf(" cflags: 0x%hhx\n", bp->bio_cflags); - db_printf(" pflags: 0x%hhx\n", bp->bio_pflags); + db_printf(" cflags: 0x%hx\n", bp->bio_cflags); + db_printf(" pflags: 0x%hx\n", bp->bio_pflags); db_printf(" offset: %jd\n", (intmax_t)bp->bio_offset); db_printf(" length: %jd\n", (intmax_t)bp->bio_length); db_printf(" bcount: %ld\n", bp->bio_bcount); |