Home
last modified time | relevance | path

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

/linux-6.6.21/fs/btrfs/
Dfile.c2072 struct extent_map *hole_em; in fill_holes() local
2137 hole_em = alloc_extent_map(); in fill_holes()
2138 if (!hole_em) { in fill_holes()
2142 hole_em->start = offset; in fill_holes()
2143 hole_em->len = end - offset; in fill_holes()
2144 hole_em->ram_bytes = hole_em->len; in fill_holes()
2145 hole_em->orig_start = offset; in fill_holes()
2147 hole_em->block_start = EXTENT_MAP_HOLE; in fill_holes()
2148 hole_em->block_len = 0; in fill_holes()
2149 hole_em->orig_block_len = 0; in fill_holes()
[all …]
Dinode.c4909 struct extent_map *hole_em; in btrfs_cont_expand() local
4921 hole_em = alloc_extent_map(); in btrfs_cont_expand()
4922 if (!hole_em) { in btrfs_cont_expand()
4929 hole_em->start = cur_offset; in btrfs_cont_expand()
4930 hole_em->len = hole_size; in btrfs_cont_expand()
4931 hole_em->orig_start = cur_offset; in btrfs_cont_expand()
4933 hole_em->block_start = EXTENT_MAP_HOLE; in btrfs_cont_expand()
4934 hole_em->block_len = 0; in btrfs_cont_expand()
4935 hole_em->orig_block_len = 0; in btrfs_cont_expand()
4936 hole_em->ram_bytes = hole_size; in btrfs_cont_expand()
[all …]