Home | History | Annotate | Download | only in ext4_utils

Lines Matching defs:oob

125 	printf("OOB list:\n");
592 /* Reserve the next blocks for oob data (indirect or extent blocks) */
595 struct region *oob = split_allocation(alloc, blocks);
598 if (oob == NULL)
601 while (oob && oob != alloc->list.iter) {
602 next = oob->next;
603 region_list_remove(&alloc->list, oob);
604 region_list_append(&alloc->oob_list, oob);
605 oob = next;