Home | History | Annotate | Download | only in ext4_utils

Lines Matching refs:oob

152 	printf("OOB list:\n");
623 /* Reserve the next blocks for oob data (indirect or extent blocks) */
626 struct region *oob = split_allocation(alloc, blocks);
629 if (oob == NULL)
632 while (oob && oob != alloc->list.iter) {
633 next = oob->next;
634 region_list_remove(&alloc->list, oob);
635 region_list_append(&alloc->oob_list, oob);
636 oob = next;