diff options
| author | Andrew Gallatin <gallatin@FreeBSD.org> | 2002-03-19 01:45:04 +0000 |
|---|---|---|
| committer | Andrew Gallatin <gallatin@FreeBSD.org> | 2002-03-19 01:45:04 +0000 |
| commit | 54ed0c322194956dddf0d533dcc974e887c05ffb (patch) | |
| tree | 27edd5ee030d8f8a81db69b207027f0a2cfa5603 | |
| parent | 9873dd6133d65cd5c32766c6729f74a7ee6839e3 (diff) | |
Notes
| -rw-r--r-- | sys/dev/md/md.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c index 27f54994d70e..3b0eba934c9d 100644 --- a/sys/dev/md/md.c +++ b/sys/dev/md/md.c @@ -384,7 +384,8 @@ mdstrategy(struct bio *bp) if (md_debug > 1) printf("mdstrategy(%p) %s %x, %lld, %ld, %p)\n", - bp, devtoname(bp->bio_dev), bp->bio_flags, bp->bio_blkno, + bp, devtoname(bp->bio_dev), bp->bio_flags, + (long long)bp->bio_blkno, bp->bio_bcount / DEV_BSIZE, bp->bio_data); sc = bp->bio_dev->si_drv1; |
