| /freebsd-14.2/sys/sys/ |
| H A D | bufobj.h | 59 struct bufobj; 73 typedef void b_strategy_t(struct bufobj *, struct buf *); 75 typedef int b_sync_t(struct bufobj *, int waitfor); 76 typedef void b_bdflush_t(struct bufobj *, struct buf *); 97 struct bufobj { struct 129 void bufobj_init(struct bufobj *bo, void *priv); argument 130 void bufobj_wdrop(struct bufobj *bo); 131 void bufobj_wref(struct bufobj *bo); 132 void bufobj_wrefl(struct bufobj *bo); 135 int bufsync(struct bufobj *bo, int waitfor); [all …]
|
| H A D | buf.h | 50 struct bufobj; 99 struct bufobj *b_bufobj; 561 void bufstrategy(struct bufobj *, struct buf *); 567 struct buf *incore(struct bufobj *, daddr_t); 569 struct buf *gbincore(struct bufobj *, daddr_t); 570 struct buf *gbincore_unlocked(struct bufobj *, daddr_t); 602 void pbgetbo(struct bufobj *bo, struct buf *bp);
|
| H A D | vnode.h | 181 struct bufobj v_bufobj; /* * Buffer cache object */ 644 int bnoreuselist(struct bufv *bufv, struct bufobj *bo, daddr_t startn,
|
| /freebsd-14.2/sys/kern/ |
| H A D | kern_kcov.c | 126 vm_object_t bufobj; /* (o) */ member 353 vm_object_reference(info->bufobj); in kcov_mmap_single() 355 *object = info->bufobj; in kcov_mmap_single() 382 VM_OBJECT_WLOCK(info->bufobj); in kcov_alloc() 384 m = vm_page_grab(info->bufobj, n, in kcov_alloc() 390 VM_OBJECT_WUNLOCK(info->bufobj); in kcov_alloc() 407 if (info->bufobj != NULL) { in kcov_free() 408 VM_OBJECT_WLOCK(info->bufobj); in kcov_free() 409 m = vm_page_lookup(info->bufobj, 0); in kcov_free() 414 VM_OBJECT_WUNLOCK(info->bufobj); in kcov_free() [all …]
|
| H A D | vfs_subr.c | 678 struct bufobj *bo; in vnode_fini() 2149 struct bufobj *bo; in freevnode() 2531 struct bufobj *bo; in vtruncbuf() 2593 struct bufobj *bo; in v_inval_buf_range() 2780 struct bufobj *bo; in bgetvp() 2805 struct bufobj *bo; in brelvp() 2940 struct bufobj *bo; in sched_sync() 3138 struct bufobj *bo; in reassignbuf() 5262 struct bufobj *bo; in vfs_allocate_syncvnode() 5337 struct bufobj *bo; in sync_fsync() [all …]
|
| H A D | vfs_bio.c | 2390 bufbdflush(struct bufobj *bo, struct buf *bp) in bufbdflush() 2446 struct bufobj *bo; in bdwrite() 3245 struct bufobj *bo; in vfs_bio_awrite() 3699 incore(struct bufobj *bo, daddr_t blkno) in incore() 3973 struct bufobj *bo; in getblkx() 4571 struct bufobj *dropobj; in bufdone() 5131 bufsync(struct bufobj *bo, int waitfor) in bufsync() 5155 bufobj_init(struct bufobj *bo, void *private) in bufobj_init() 5170 bufobj_wrefl(struct bufobj *bo) in bufobj_wrefl() 5179 bufobj_wref(struct bufobj *bo) in bufobj_wref() [all …]
|
| H A D | vfs_cluster.c | 97 struct bufobj *bo; in cluster_read() 813 struct bufobj *bo; in cluster_wbuild()
|
| /freebsd-14.2/sys/dev/spibus/ |
| H A D | spigen.c | 75 vm_object_t bufobj; member 288 if (mmap->bufobj != NULL) in spigen_mmap_cleanup() 289 vm_object_deallocate(mmap->bufobj); in spigen_mmap_cleanup() 318 mmap->bufobj = vm_pager_allocate(OBJT_PHYS, 0, size, nprot, 0, in spigen_mmap_single() 322 VM_OBJECT_WLOCK(mmap->bufobj); in spigen_mmap_single() 323 vm_object_reference_locked(mmap->bufobj); // kernel and userland both in spigen_mmap_single() 325 m[n] = vm_page_grab(mmap->bufobj, n, in spigen_mmap_single() 330 VM_OBJECT_WUNLOCK(mmap->bufobj); in spigen_mmap_single() 340 *object = mmap->bufobj; in spigen_mmap_single()
|
| /freebsd-14.2/sys/geom/ |
| H A D | geom_vfs.h | 33 struct bufobj; 38 void g_vfs_strategy(struct bufobj *bo, struct buf *bp);
|
| H A D | geom_vfs.c | 53 struct bufobj *sc_bo; 182 g_vfs_strategy(struct bufobj *bo, struct buf *bp) in g_vfs_strategy() 267 struct bufobj *bo; in g_vfs_open()
|
| /freebsd-14.2/sys/fs/ext2fs/ |
| H A D | ext2_mount.h | 60 struct bufobj *um_bo;
|
| H A D | ext2_inode.c | 245 struct bufobj *bo; in ext2_ind_truncate()
|
| /freebsd-14.2/lib/libprocstat/ |
| H A D | udf.c | 56 struct bufobj *im_bo;
|
| /freebsd-14.2/sys/fs/udf/ |
| H A D | udf.h | 43 struct bufobj *im_bo;
|
| H A D | udf_vfsops.c | 313 struct bufobj *bo; in udf_mountfs()
|
| /freebsd-14.2/sys/ufs/ffs/ |
| H A D | ffs_vfsops.c | 1690 struct bufobj *bo; in ffs_sync() 2288 struct bufobj *bufobj; in ffs_backgroundwritedone() local 2299 bufobj = bp->b_bufobj; in ffs_backgroundwritedone() 2300 BO_LOCK(bufobj); in ffs_backgroundwritedone() 2310 BO_UNLOCK(bufobj); in ffs_backgroundwritedone() 2337 BO_LOCK(bufobj); in ffs_backgroundwritedone() 2351 BO_UNLOCK(bufobj); in ffs_backgroundwritedone() 2480 ffs_geom_strategy(struct bufobj *bo, struct buf *bp) in ffs_geom_strategy()
|
| H A D | ffs_extern.h | 74 void ffs_bdflush(struct bufobj *, struct buf *);
|
| H A D | ffs_rawread.c | 96 struct bufobj *bo; in ffs_rawread_sync()
|
| /freebsd-14.2/sys/fs/msdosfs/ |
| H A D | msdosfsmount.h | 77 struct bufobj *pm_bo;
|
| H A D | msdosfs_vfsops.c | 517 struct bufobj *bo; in mountmsdosfs() 940 struct bufobj *bo; in msdosfs_unmount()
|
| /freebsd-14.2/sys/ufs/ufs/ |
| H A D | ufsmount.h | 89 struct bufobj *um_bo; /* (r) Buffer cache object */
|
| /freebsd-14.2/sys/fs/cd9660/ |
| H A D | iso.h | 240 struct bufobj *im_bo;
|
| /freebsd-14.2/sys/fs/nfsclient/ |
| H A D | nfs_clsubs.c | 353 struct bufobj *bo; in ncl_clearcommit()
|
| /freebsd-14.2/sys/vm/ |
| H A D | vm_pager.c | 547 pbgetbo(struct bufobj *bo, struct buf *bp) in pbgetbo()
|
| H A D | vnode_pager.c | 655 struct bufobj *bo; in vnode_pager_input_smlfs() 880 struct bufobj *bo; in vnode_pager_generic_getpages()
|