Home
last modified time | relevance | path

Searched refs:b_dep (Results 1 – 6 of 6) sorted by relevance

/freebsd-12-stable/sys/ufs/ffs/
Dffs_softdep.c1865 if ((wk = LIST_FIRST(&oldbp->b_dep)) == NULL)
1873 while ((wk = LIST_FIRST(&oldbp->b_dep)) != NULL) {
1879 LIST_INSERT_HEAD(&newbp->b_dep, wk, wk_list);
2119 LIST_FOREACH(wk, &bp->b_dep, wk_list) {
2130 WORKLIST_INSERT(&bp->b_dep, &(*pagedeppp)->pd_list);
2156 WORKLIST_INSERT(&bp->b_dep, &pagedep->pd_list);
3550 WORKLIST_INSERT(&bp->b_dep, &jseg->js_list);
5192 LIST_FOREACH(wk, &bp->b_dep, wk_list) {
5230 WORKLIST_INSERT(&bp->b_dep, &bmsafemap->sm_list);
5363 WORKLIST_INSERT(&bp->b_dep, &newblk->nb_list);
[all …]
Dffs_vfsops.c2050 if (!LIST_EMPTY(&bp->b_dep) && (bp->b_ioflags & BIO_ERROR) == 0) in ffs_backgroundwritedone()
2053 if (!LIST_EMPTY(&bp->b_dep)) in ffs_backgroundwritedone()
2178 if (LIST_EMPTY(&bp->b_dep) || in ffs_bufwrite()
2267 if (!LIST_EMPTY(&tbp->b_dep)) in ffs_geom_strategy()
2271 if (!LIST_EMPTY(&bp->b_dep)) in ffs_geom_strategy()
Dffs_vnops.c301 if (!LIST_EMPTY(&bp->b_dep) && in ffs_syncvnode()
/freebsd-12-stable/sys/kern/
Dvfs_bio.c1182 LIST_INIT(&bp->b_dep); in bufinit()
1579 if (!LIST_EMPTY(&bp->b_dep)) in buf_free()
1704 LIST_INIT(&bp->b_dep); in buf_alloc()
2635 (bp->b_error != ENXIO || !LIST_EMPTY(&bp->b_dep)) && in brelse()
2668 if (!LIST_EMPTY(&bp->b_dep)) in brelse()
3503 if (!LIST_EMPTY(&bp->b_dep) && buf_countdeps(bp, 0)) { in flushbufqueues()
3924 if (LIST_EMPTY(&bp->b_dep)) { in getblkx()
4443 if (!LIST_EMPTY(&bp->b_dep)) in bufdone()
4822 if ((ioflag & (IO_VMIO | IO_DIRECT)) != 0 && LIST_EMPTY(&bp->b_dep)) { in b_io_dismiss()
5236 if (LIST_EMPTY(&bp->b_dep)) { in vfs_bio_getpages()
[all …]
/freebsd-12-stable/sys/vm/
Dvm_pager.c203 LIST_INIT(&bp->b_dep); in vm_pager_bufferinit()
/freebsd-12-stable/sys/sys/
Dbuf.h145 struct workhead b_dep; /* (D) List of filesystem dependencies. */ member