OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fs_bshift
(Results
1 - 10
of
10
) sorted by relevancy
/src/sys/miscfs/genfs/
genfs_io.c
292
const int
fs_bshift
= (vp->v_type != VBLK) ?
local
294
const int fs_bsize = 1 <<
fs_bshift
;
581
const int
fs_bshift
= (vp->v_type != VBLK) ?
local
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
1460
fs_bshift
= vp->v_mount->mnt_fs_bshift;
1463
fs_bshift
= DEV_BSHIFT;
1516
lbn = offset >>
fs_bshift
;
[
all
...]
/src/sys/ufs/ffs/
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
) \
ffs_vfsops.c
1034
int32_t i,
fs_bshift
= 0, fs_fshift = 0, fs_fragshift = 0, fs_frag;
local
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
;
/src/sbin/dump/
ffs_inode.c
145
ufsi.ufs_bshift = sblock->
fs_bshift
;
/src/sys/ufs/lfs/
lfs_vfsops.c
2129
int
fs_bshift
;
local
2203
fs_bshift
= vp->v_mount->mnt_fs_bshift;
2205
fs_bshift
= DEV_BSHIFT;
2288
lbn = offset >>
fs_bshift
;
2299
iobytes = MIN((((off_t)lbn + 1 + run) <<
fs_bshift
) - offset,
2322
iobytes = MIN(iobytes, (sp->seg_bytes_left >>
fs_bshift
)
2323
<<
fs_bshift
);
2325
<<
fs_bshift
);
/src/sbin/fsck_ffs/
setup.c
940
asb->
fs_bshift
!= sb->
fs_bshift
||
/src/usr.sbin/makefs/ffs/
mkfs.c
264
for (sblock.
fs_bshift
= 0, i = sblock.fs_bsize; i > 1; i >>= 1)
265
sblock.
fs_bshift
++;
/src/sbin/fsdb/
fsdb.c
957
const int ptrperblk_shift = sblock->
fs_bshift
- 2;
986
const int ptrperblk_shift = sblock->
fs_bshift
- 3;
/src/sbin/newfs/
mkfs.c
298
for (sblock.
fs_bshift
= 0, i = sblock.fs_bsize; i > 1; i >>= 1)
299
sblock.
fs_bshift
++;
/src/usr.sbin/dumpfs/
dumpfs.c
358
fs->fs_bsize, fs->
fs_bshift
, fs->fs_bmask);
880
printf(" log_bshift %10u
fs_bshift
%10u\n",
Completed in 25 milliseconds
Indexes created Sat Feb 21 16:20:20 UTC 2026