Home
last modified time | relevance | path

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

/Linux-v4.19/fs/btrfs/
Dfile.c2231 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()
[all …]
Dinode.c5046 struct extent_map *hole_em; in btrfs_cont_expand() local
5055 hole_em = alloc_extent_map(); in btrfs_cont_expand()
5056 if (!hole_em) { in btrfs_cont_expand()
5061 hole_em->start = cur_offset; in btrfs_cont_expand()
5062 hole_em->len = hole_size; in btrfs_cont_expand()
5063 hole_em->orig_start = cur_offset; in btrfs_cont_expand()
5065 hole_em->block_start = EXTENT_MAP_HOLE; in btrfs_cont_expand()
5066 hole_em->block_len = 0; in btrfs_cont_expand()
5067 hole_em->orig_block_len = 0; in btrfs_cont_expand()
5068 hole_em->ram_bytes = hole_size; in btrfs_cont_expand()
[all …]