Searched refs:maxblocks (Results 1 – 6 of 6) sorted by relevance
/linux-2.4.37.9/fs/ext3/ |
D | balloc.c | 461 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/ |
D | jfs_xtree.h | 132 struct inode *ip, int xflag, s64 xoff, int maxblocks,
|
D | jfs_xtree.c | 2395 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/ |
D | xfs_ialloc.c | 1279 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()
|
D | xfs_alloc.c | 1815 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()
|
D | xfs_bmap.c | 3965 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()
|