Home
last modified time | relevance | path

Searched refs:b_iocmd (Results 1 – 5 of 5) sorted by relevance

/f-stack/freebsd/kern/
H A Dvfs_cluster.c243 bp->b_iocmd = BIO_READ; in cluster_read()
304 rbp->b_iocmd = BIO_READ; in cluster_read()
373 tbp->b_iocmd = BIO_READ; in cluster_rbuild()
379 tbp->b_iocmd = BIO_READ; in cluster_rbuild()
404 bp->b_iocmd = BIO_READ; in cluster_rbuild()
500 tbp->b_iocmd = BIO_READ; in cluster_rbuild()
1017 tbp->b_iocmd = BIO_WRITE; in cluster_wbuild()
H A Dvfs_bio.c2124 rabp->b_iocmd = BIO_READ; in breada()
2190 bp->b_iocmd = BIO_READ; in breadn_flags()
2280 bp->b_iocmd = BIO_WRITE; in bufwrite()
2477 bp->b_iocmd = BIO_WRITE; in bdirty()
2921 } else if ((bp->b_iocmd == BIO_READ) && resid > 0) { in vfs_vmio_iodone()
4421 if (bp->b_iocmd == BIO_READ) in bufwait()
4468 if (bp->b_iocmd == BIO_WRITE) in bufdone()
4485 if (bp->b_iocmd == BIO_READ && in bufdone()
4494 KASSERT(bp->b_iocmd == BIO_READ, in bufdone()
4495 ("bufdone: b_iocmd %d not BIO_READ", bp->b_iocmd)); in bufdone()
[all …]
/f-stack/freebsd/vm/
H A Dswap_pager.c1325 bp->b_iocmd = BIO_READ; in swap_pager_getpages_locked()
1530 bp->b_iocmd = BIO_WRITE; in swap_pager_putpages()
1617 ((bp->b_iocmd == BIO_READ) ? "pagein" : "pageout"), in swp_pager_async_iodone()
1664 if (bp->b_iocmd == BIO_READ) { in swp_pager_async_iodone()
1683 } else if (bp->b_iocmd == BIO_READ) { in swp_pager_async_iodone()
1747 uma_zfree((bp->b_iocmd == BIO_READ) ? swrbuf_zone : swwbuf_zone, bp); in swp_pager_async_iodone()
2827 if (bp->b_iocmd == BIO_WRITE) in swapgeom_strategy()
2845 bio->bio_cmd = bp->b_iocmd; in swapgeom_strategy()
2990 if (bp->b_iocmd == BIO_WRITE) { in swapdev_strategy()
H A Dvnode_pager.c610 bp->b_iocmd = BIO_READ; in vnode_pager_input_smlfs()
1058 bp->b_iocmd = BIO_READ; in vnode_pager_generic_getpages()
/f-stack/freebsd/sys/
H A Dbuf.h105 uint16_t b_iocmd; /* BIO_* bio_cmd from bio.h */ member