Home | History | Annotate | Download | only in ext4_utils

Lines Matching refs:oob

125 	printf("OOB list:\n");
609 /* Reserve the next blocks for oob data (indirect or extent blocks) */
612 struct region *oob = split_allocation(alloc, blocks);
615 if (oob == NULL)
618 while (oob && oob != alloc->list.iter) {
619 next = oob->next;
620 region_list_remove(&alloc->list, oob);
621 region_list_append(&alloc->oob_list, oob);
622 oob = next;