Lines Matching refs:hole_em
2231 struct extent_map *hole_em; in fill_holes() local
2295 hole_em = alloc_extent_map(); in fill_holes()
2296 if (!hole_em) { in fill_holes()
2300 hole_em->start = offset; in fill_holes()
2301 hole_em->len = end - offset; in fill_holes()
2302 hole_em->ram_bytes = hole_em->len; in fill_holes()
2303 hole_em->orig_start = offset; in fill_holes()
2305 hole_em->block_start = EXTENT_MAP_HOLE; in fill_holes()
2306 hole_em->block_len = 0; in fill_holes()
2307 hole_em->orig_block_len = 0; in fill_holes()
2308 hole_em->bdev = fs_info->fs_devices->latest_bdev; in fill_holes()
2309 hole_em->compress_type = BTRFS_COMPRESS_NONE; in fill_holes()
2310 hole_em->generation = trans->transid; in fill_holes()
2315 ret = add_extent_mapping(em_tree, hole_em, 1); in fill_holes()
2318 free_extent_map(hole_em); in fill_holes()