Home
last modified time | relevance | path

Searched refs:hole_em (Results 1 – 2 of 2) sorted by relevance

/linux-4.19.296/fs/btrfs/
Dfile.c2317 struct extent_map *hole_em; in fill_holes() local
2381 hole_em = alloc_extent_map(); in fill_holes()
2382 if (!hole_em) { in fill_holes()
2386 hole_em->start = offset; in fill_holes()
2387 hole_em->len = end - offset; in fill_holes()
2388 hole_em->ram_bytes = hole_em->len; in fill_holes()
2389 hole_em->orig_start = offset; in fill_holes()
2391 hole_em->block_start = EXTENT_MAP_HOLE; in fill_holes()
2392 hole_em->block_len = 0; in fill_holes()
2393 hole_em->orig_block_len = 0; in fill_holes()
[all …]
Dinode.c5167 struct extent_map *hole_em; in btrfs_cont_expand() local
5176 hole_em = alloc_extent_map(); in btrfs_cont_expand()
5177 if (!hole_em) { in btrfs_cont_expand()
5182 hole_em->start = cur_offset; in btrfs_cont_expand()
5183 hole_em->len = hole_size; in btrfs_cont_expand()
5184 hole_em->orig_start = cur_offset; in btrfs_cont_expand()
5186 hole_em->block_start = EXTENT_MAP_HOLE; in btrfs_cont_expand()
5187 hole_em->block_len = 0; in btrfs_cont_expand()
5188 hole_em->orig_block_len = 0; in btrfs_cont_expand()
5189 hole_em->ram_bytes = hole_size; in btrfs_cont_expand()
[all …]