Home
last modified time | relevance | path

Searched refs:maxblocks (Results 1 – 6 of 6) sorted by relevance

/linux-2.4.37.9/fs/ext3/
Dballoc.c461 struct buffer_head *bh, int maxblocks) in find_next_usable_block() argument
497 r = memscan(p, 0, (maxblocks - here + 7) >> 3); in find_next_usable_block()
500 if (next < maxblocks && ext3_test_allocatable(next, bh)) in find_next_usable_block()
507 while (here < maxblocks) { in find_next_usable_block()
509 maxblocks, here); in find_next_usable_block()
510 if (next >= maxblocks) in find_next_usable_block()
518 maxblocks, next); in find_next_usable_block()
/linux-2.4.37.9/fs/jfs/
Djfs_xtree.h132 struct inode *ip, int xflag, s64 xoff, int maxblocks,
Djfs_xtree.c2395 struct inode *ip, int xflag, s64 xoff, s32 maxblocks, in xtAppend() argument
2418 (ulong) xoff, maxblocks, xlen, (ulong) xaddr); in xtAppend()
2462 for (; nsplit > 0; nsplit--, pxd++, xaddr += nblocks, maxblocks -= nblocks) { in xtAppend()
2477 xlen = min(xlen, maxblocks); in xtAppend()
/linux-2.4.37.9/fs/xfs/
Dxfs_ialloc.c1279 uint maxblocks; in xfs_ialloc_compute_maxlevels() local
1288 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs; in xfs_ialloc_compute_maxlevels()
1289 for (level = 1; maxblocks > 1; level++) in xfs_ialloc_compute_maxlevels()
1290 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs; in xfs_ialloc_compute_maxlevels()
Dxfs_alloc.c1815 uint maxblocks; in xfs_alloc_compute_maxlevels() local
1823 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs; in xfs_alloc_compute_maxlevels()
1824 for (level = 1; maxblocks > 1; level++) in xfs_alloc_compute_maxlevels()
1825 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs; in xfs_alloc_compute_maxlevels()
Dxfs_bmap.c3965 uint maxblocks; /* max blocks at this level */ in xfs_bmap_compute_maxlevels() local
3985 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs; in xfs_bmap_compute_maxlevels()
3986 for (level = 1; maxblocks > 1; level++) { in xfs_bmap_compute_maxlevels()
3987 if (maxblocks <= maxrootrecs) in xfs_bmap_compute_maxlevels()
3988 maxblocks = 1; in xfs_bmap_compute_maxlevels()
3990 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs; in xfs_bmap_compute_maxlevels()