Lines Matching defs:blkno
63 bread(struct vnode *vp, daddr_t blkno, int size, int u2 __unused,
74 printf("%s: blkno %jd size %d\n", __func__,
75 (intmax_t)blkno, size);
76 *bpp = getblk(vp, blkno, size, 0, 0);
79 printf("%s: blkno %jd offset %jd bcount %ld\n", __func__,
127 * of negative lblkno -> real blkno that ffs_balloc()
133 * a real blkno, we'd add a lot more code & complexity
159 printf("%s: blkno %jd offset %jd bcount %zu\n", __func__,
192 printf("\tlblkno %10jd blkno %10jd count %6ld bufsize %6ld\n",
200 getblk(struct vnode *vp, daddr_t blkno, int size, int u1 __unused,
208 printf("%s: blkno %jd size %d\n", __func__,
209 (intmax_t)blkno, size);
219 if (bp->b_lblkno != blkno)
227 bp->b_blkno = bp->b_lblkno = blkno;