/src/sys/ufs/ext2fs/ |
ext2fs_readwrite.c | 160 daddr_t lbn, nextlbn; local in function:ext2fs_bufrd 190 nextlbn = lbn + 1; 199 if (ext2_lblktosize(fs, nextlbn) >= ext2fs_size(ip)) 204 size, &nextlbn, &nextsize, 1, 0, &bp);
|
/src/sys/ufs/lfs/ |
ulfs_readwrite.c | 127 daddr_t lbn, nextlbn; local in function:BUFRD 161 nextlbn = lbn + 1; 167 if (lfs_lblktosize(fs, nextlbn) >= ip->i_size) 170 int nextsize = lfs_blksize(fs, ip, nextlbn); 172 size, &nextlbn, &nextsize, 1, 0, &bp);
|
/src/sys/ufs/ufs/ |
ufs_readwrite.c | 131 daddr_t lbn, nextlbn; local in function:BUFRD 164 nextlbn = lbn + 1; 170 if (ufs_lblktosize(fs, nextlbn) >= ip->i_size) 173 int nextsize = ufs_blksize(fs, ip, nextlbn); 175 size, &nextlbn, &nextsize, 1, 0, &bp);
|
/src/sys/ufs/ffs/ |
ffs_extattr.c | 143 ufs_lbn_t lbn, nextlbn; local in function:ffs_extread 168 nextlbn = lbn + 1; 196 if (lblktosize(fs, nextlbn) >= dp->di_extsize) { 209 u_int nextsize = sblksize(fs, dp->di_extsize, nextlbn); 211 nextlbn = -1 - nextlbn; 213 size, &nextlbn, &nextsize, 1, 0, &bp);
|
ffs_snapshot.c | 2075 daddr_t lbn, nextlbn; local in function:ffs_snapshot_read 2091 nextlbn = lbn + 1; 2097 if (ffs_lblktosize(fs, nextlbn + 1) >= fsbytes) { 2105 size, &nextlbn, &nextsize, 1, 0, &bp);
|
/src/sys/ufs/chfs/ |
chfs_vnops.c | 627 daddr_t lbn, nextlbn; local in function:chfs_read 692 nextlbn = lbn + 1; 698 if (chfs_lblktosize(chmp, nextlbn) >= ip->size) { 702 int nextsize = chfs_blksize(chmp, ip, nextlbn); 705 size, &nextlbn, &nextsize, 1, 0, &bp);
|