Lines Matching defs:maxblocks
571 * @maxblocks: the ending block (group relative) of the reservation
578 ext2_grpblk_t maxblocks)
582 next = ext2_find_next_zero_bit(bh->b_data, maxblocks, start);
583 if (next >= maxblocks)
593 * @maxblocks: the ending block (group relative) for the search
601 find_next_usable_block(int start, struct buffer_head *bh, int maxblocks)
616 if (end_goal > maxblocks)
617 end_goal = maxblocks;
629 r = memscan(p, 0, ((maxblocks + 7) >> 3) - (here >> 3));
632 if (next < maxblocks && next >= here)
635 here = bitmap_search_next_usable_block(here, bh, maxblocks);