Searched refs:bo_ops (Results 1 – 4 of 4) sorted by relevance
/freebsd/sys/sys/ |
H A D | bufobj.h | 86 #define BO_STRATEGY(bo, bp) ((bo)->bo_ops->bop_strategy((bo), (bp))) 87 #define BO_SYNC(bo, w) ((bo)->bo_ops->bop_sync((bo), (w))) 88 #define BO_WRITE(bo, bp) ((bo)->bo_ops->bop_write((bp))) 89 #define BO_BDFLUSH(bo, bp) ((bo)->bo_ops->bop_bdflush((bo), (bp))) 99 struct buf_ops *bo_ops; /* - Buffer operations */ member
|
H A D | buf.h | 429 KASSERT(bp->b_bufobj->bo_ops != NULL, ("bwrite: no bo_ops bp=%p", bp)); in bwrite() 430 KASSERT(bp->b_bufobj->bo_ops->bop_write != NULL, in bwrite() 440 KASSERT(bp->b_bufobj->bo_ops != NULL, in bstrategy() 442 KASSERT(bp->b_bufobj->bo_ops->bop_strategy != NULL, in bstrategy()
|
/freebsd/sys/ufs/ffs/ |
H A D | ffs_vfsops.c | 944 devvp->v_bufobj.bo_ops = &ffs_ops; in ffs_mountfs()
|
/freebsd/sys/kern/ |
H A D | vfs_subr.c | 2126 vp->v_bufobj.bo_ops = &buf_ops_bio; in getnewvnode()
|