Home | History | Annotate | Download | only in resize_ffs

Lines Matching defs:blkmove

125 /*  if blkmove[i] is j, the frag that started out as frag #i should end	 */
128 static unsigned int *blkmove;
1237 * Initialize the blkmove array.
1244 blkmove = alloconce(oldsb->fs_size * sizeof(*blkmove), "blkmove");
1246 blkmove[i] = i;
1325 blkmove[from++] = to++;
1414 * Move all data blocks according to blkmove. We have to be careful,
1431 * that was already there. So if blkmove[i]==i, we ignore that entry
1447 if ((blkmove[i] == (unsigned)i /*XXX cast*/) ||
1450 (blkmove[i] != blkmove[i - 1] + 1))) {
1454 writeat(FFS_FSBTODB(oldsb, blkmove[i - run]),
1459 if (blkmove[i] != (unsigned)i /*XXX cast*/)
1465 writeat(FFS_FSBTODB(oldsb, blkmove[i - run]), &buf[0],
1470 * This modifies an array of int32_t, according to blkmove. This is
1484 if (blkmove[*vec] != (unsigned)*vec /*XXX cast*/) {
1485 *vec = blkmove[*vec];
1824 * those evict_data calls just update blkmove.) */