HomeSort by: relevance | last modified time | path
    Searched defs:fs_bshift (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/ufs/ffs/
ffs_vfsops.c 1034 int32_t i, fs_bshift = 0, fs_fshift = 0, fs_fragshift = 0, fs_frag; local in function:ffs_superblock_validate
1082 /* Compute fs_bshift and ensure it is consistent */
1084 fs_bshift++;
1085 if (fs->fs_bshift != fs_bshift)
1546 mp->mnt_fs_bshift = fs->fs_bshift;
fs.h 279 int32_t fs_bshift; /* ``lblkno'' calc of logical blkno */ member in struct:fs
689 ((uint64_t)(((off_t)(blk)) << (fs)->fs_bshift))
691 ((loc) >> (fs)->fs_bshift)
733 (((lbn) >= UFS_NDADDR || (size) >= ((lbn) + 1) << (fs)->fs_bshift) \
  /src/sys/miscfs/genfs/
genfs_io.c 292 const int fs_bshift = (vp->v_type != VBLK) ? local in function:genfs_getpages
294 const int fs_bsize = 1 << fs_bshift;
581 const int fs_bshift = (vp->v_type != VBLK) ? local in function:genfs_getpages_read
690 lbn = offset >> fs_bshift;
706 iobytes = MIN((((off_t)lbn + 1 + run) << fs_bshift) - offset,
763 bp->b_blkno = blkno + ((offset - ((off_t)lbn << fs_bshift)) >>
1439 int fs_bshift, dev_bshift; local in function:genfs_do_io
1460 fs_bshift = vp->v_mount->mnt_fs_bshift;
1463 fs_bshift = DEV_BSHIFT;
1516 lbn = offset >> fs_bshift;
    [all...]
  /src/sys/ufs/lfs/
lfs_vfsops.c 2071 int fs_bshift; local in function:lfs_gop_write
2145 fs_bshift = vp->v_mount->mnt_fs_bshift;
2147 fs_bshift = DEV_BSHIFT;
2235 lbn = offset >> fs_bshift;
2246 iobytes = MIN((((off_t)lbn + 1 + run) << fs_bshift) - offset,
2269 iobytes = MIN(iobytes, (sp->seg_bytes_left >> fs_bshift)
2270 << fs_bshift);
2272 << fs_bshift);

Completed in 16 milliseconds