Home
last modified time | relevance | path

Searched refs:vb_buf (Results 1 – 2 of 2) sorted by relevance

/mirbsd/src/sys/dev/
Dvnd.c121 struct buf vb_buf; member
649 nbp->vb_buf.b_flags = flags; in vndstrategy()
650 nbp->vb_buf.b_bcount = sz; in vndstrategy()
651 nbp->vb_buf.b_bufsize = bp->b_bufsize; in vndstrategy()
652 nbp->vb_buf.b_error = 0; in vndstrategy()
654 nbp->vb_buf.b_dev = vp->v_rdev; in vndstrategy()
656 nbp->vb_buf.b_dev = NODEV; in vndstrategy()
657 nbp->vb_buf.b_data = addr; in vndstrategy()
658 nbp->vb_buf.b_blkno = nbn + btodb(off); in vndstrategy()
659 nbp->vb_buf.b_proc = bp->b_proc; in vndstrategy()
[all …]
/mirbsd/src/sys/uvm/
Duvm_swap.c186 struct buf vb_buf; member
1380 nbp->vb_buf.b_flags = bp->b_flags | B_CALL;
1381 nbp->vb_buf.b_bcount = sz;
1382 nbp->vb_buf.b_bufsize = sz;
1383 nbp->vb_buf.b_error = 0;
1384 nbp->vb_buf.b_data = addr;
1385 nbp->vb_buf.b_blkno = nbn + btodb(off);
1386 nbp->vb_buf.b_proc = bp->b_proc;
1387 nbp->vb_buf.b_iodone = sw_reg_iodone;
1388 nbp->vb_buf.b_vp = NULLVP;
[all …]