MCPcopy Create free account
hub / github.com/F-Stack/f-stack / bwrite

Function bwrite

freebsd/sys/buf.h:411–420  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

409#ifdef _KERNEL
410
411static __inline int
412bwrite(struct buf *bp)
413{
414
415 KASSERT(bp->b_bufobj != NULL, ("bwrite: no bufobj bp=%p", bp));
416 KASSERT(bp->b_bufobj->bo_ops != NULL, ("bwrite: no bo_ops bp=%p", bp));
417 KASSERT(bp->b_bufobj->bo_ops->bop_write != NULL,
418 ("bwrite: no bop_write bp=%p", bp));
419 return (BO_WRITE(bp->b_bufobj, bp));
420}
421
422static __inline void
423bstrategy(struct buf *bp)

Callers 7

bawriteFunction · 0.85
babarrierwriteFunction · 0.85
bbarrierwriteFunction · 0.85
vfs_bio_awriteFunction · 0.85
flushbufqueuesFunction · 0.85
getblkxFunction · 0.85
flushbuflistFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected