Lines Matching refs:hole_em
2351 struct extent_map *hole_em; in fill_holes() local
2415 hole_em = alloc_extent_map(); in fill_holes()
2416 if (!hole_em) { in fill_holes()
2420 hole_em->start = offset; in fill_holes()
2421 hole_em->len = end - offset; in fill_holes()
2422 hole_em->ram_bytes = hole_em->len; in fill_holes()
2423 hole_em->orig_start = offset; in fill_holes()
2425 hole_em->block_start = EXTENT_MAP_HOLE; in fill_holes()
2426 hole_em->block_len = 0; in fill_holes()
2427 hole_em->orig_block_len = 0; in fill_holes()
2428 hole_em->compress_type = BTRFS_COMPRESS_NONE; in fill_holes()
2429 hole_em->generation = trans->transid; in fill_holes()
2434 ret = add_extent_mapping(em_tree, hole_em, 1); in fill_holes()
2437 free_extent_map(hole_em); in fill_holes()