Lines Matching defs:blocks
69 * Set file system reserved blocks in used block map.
88 * Note blocks being used by the log, so we don't declare
96 * Find all allocated blocks. This must be completed before
247 "blocks past end of file I=%d";
253 * rules for files. In particular, no blocks after
296 * The discarded blocks will be garbage-
298 * discard them, it's just lost blocks, which
400 * The kernel releases any blocks it finds in the lists,
545 * blocks. If there are, get rid of everything after
571 * in the direct blocks after the problem block, move them down so
572 * that there's somewhat less lossage. Doing this for indirect blocks
579 int blocks;
590 * before the hole. If the hole is in the indirect blocks, chop at
596 blocks = howmany(new_size, sblock.fs_bsize);
597 if (blocks > NDADDR) {
598 if (blocks < (NDADDR + NINDIR(&sblock)))
599 blocks = NDADDR;
600 else if (blocks < (NDADDR + NINDIR(&sblock) +
602 blocks = NDADDR + NINDIR(&sblock);
604 blocks = NDADDR + NINDIR(&sblock) +
606 new_size = blocks * sblock.fs_bsize;
608 (void) printf("to %lld (blocks %d)\n",
609 (longlong_t)new_size, blocks);
725 * these blocks, but not the other, we
726 * will release blocks that are
738 * id_entryno counts the number of disk blocks found.