HomeSort by: relevance | last modified time | path
    Searched refs:VOP_BMAP (Results 1 - 22 of 22) sorted by relevancy

  /src/sbin/fsck_lfs/
vnode.h 64 #define VOP_BMAP(vp, lbn, daddrp) ((vp)->v_bmap_op((vp), (lbn), (daddrp)))
bufcache.c 356 (void)VOP_BMAP(vp, lbn, &daddr);
  /src/sys/fs/cd9660/
cd9660_lookup.c 396 if ((error = VOP_BMAP(vp, lbn, &devvp, &lbn, NULL)) != 0) {
cd9660_vnops.c 700 error = VOP_BMAP(vp, bp->b_lblkno, NULL, &bp->b_blkno, NULL);
  /src/sys/fs/filecorefs/
filecore_vnops.c 437 error = VOP_BMAP(vp, bp->b_lblkno, NULL, &bp->b_blkno, NULL);
  /src/sys/sys/
vnode_if.h 439 int VOP_BMAP(struct vnode *, daddr_t, struct vnode **, daddr_t *, int *);
  /src/sys/ufs/lfs/
lfs_syscalls.c 369 if (VOP_BMAP(vp, blkp->bi_lbn, NULL, &b_daddr, NULL) ||
741 error = VOP_BMAP(vp, blkp->bi_lbn, NULL,
lfs_vnops.c 1434 * We inline ulfs_strategy to make sure that the VOP_BMAP occurs *before*
1466 error = VOP_BMAP(vp, bp->b_lblkno, NULL, &bp->b_blkno,
  /src/sys/miscfs/genfs/
genfs_io.c 569 * genfs_getpages_read: Read the pages in with VOP_BMAP/VOP_STRATEGY.
691 error = VOP_BMAP(vp, lbn, &devvp, &blkno, &run);
693 UVMHIST_LOG(ubchist, "VOP_BMAP lbn 0x%jx -> %jd",
1517 error = VOP_BMAP(vp, lbn, &devvp, &blkno, &run);
1519 UVMHIST_LOG(ubchist, "VOP_BMAP lbn 0x%jx -> %jd",
1882 error = VOP_BMAP(vp, lbn, NULL, &blkno, &run);
  /src/sys/rump/librump/rumpvfs/
rumpvnode_if.c 577 error = VOP_BMAP(vp, bn, vpp, bnp, runp);
  /src/sys/fs/adosfs/
advnops.c 367 error = VOP_BMAP(vp, bp->b_lblkno, NULL, &bp->b_blkno, NULL);
  /src/sys/kern/
vfs_vnops.c 871 error = VOP_BMAP(vp, *block, NULL, block, NULL);
882 error = VOP_BMAP(vp, ibn, NULL, &obn, NULL);
vfs_wapbl.c 548 if ((error = VOP_BMAP(vp, off, &devvp, &logpbn, &run)) != 0) {
2584 * filesystem, then VOP_BMAP must be called. We
2585 * could call VOP_BMAP here, or else in the filesystem
2589 * to call VOP_BMAP, then we can probably do it in
2995 if ((error = VOP_BMAP(vp, off, &devvp, &logpbn, 0)) != 0) {
vnode_if.c 1674 "vop_bmap",
1682 VOP_BMAP(struct vnode *vp,
1692 a.a_desc = VDESC(vop_bmap);
1701 error = (VCALL(vp, VOFFSET(vop_bmap), &a));
  /src/sys/dev/
vnd.c 76 * NOTE 1: If the vnode supports the VOP_BMAP and VOP_STRATEGY operations,
585 return vnode_has_op(vnd->sc_vp, VOFFSET(vop_bmap)) &&
626 error = VOP_BMAP(vnd->sc_vp, 0, NULL, &nbn, NULL);
643 /* Determine whether we can *use* VOP_BMAP and VOP_STRATEGY to
856 * Handles the read/write request given in 'bp' using the vnode's VOP_BMAP
885 * sequentially using VOP_BMAP/VOP_STRATEGY.
899 error = VOP_BMAP(vnd->sc_vp, bn / bsize, &vp, &nbn, &nra);
  /src/sys/fs/efs/
efs_vnops.c 671 error = VOP_BMAP(vp, bp->b_lblkno, NULL, &bp->b_blkno, NULL);
  /src/sys/fs/sysvbfs/
sysvbfs_vnops.c 772 error = VOP_BMAP(v, b->b_lblkno, NULL, &b->b_blkno, NULL);
  /src/sys/fs/v7fs/
v7fs_vnops.c 1140 error = VOP_BMAP(vp, b->b_lblkno, NULL, &b->b_blkno, NULL);
  /src/sys/uvm/
uvm_swap.c 1397 error = VOP_BMAP(sdp->swd_vp, byteoff / sdp->swd_bsize,
  /src/sys/fs/unionfs/
unionfs_vnops.c 1749 return VOP_BMAP(tvp, ap->a_bn, ap->a_vpp, ap->a_bnp, ap->a_runp);
  /src/share/man/man9/
Makefile 1147 vnodeops.9 VOP_BMAP.9 \
  /src/sys/ufs/ufs/
ufs_vnops.c 1879 error = VOP_BMAP(vp, bp->b_lblkno, NULL, &bp->b_blkno,

Completed in 32 milliseconds