Home
last modified time | relevance | path

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

/Linux-v5.15/fs/btrfs/
Dfile.c2370 struct extent_map *hole_em; in fill_holes() local
2434 hole_em = alloc_extent_map(); in fill_holes()
2435 if (!hole_em) { in fill_holes()
2439 hole_em->start = offset; in fill_holes()
2440 hole_em->len = end - offset; in fill_holes()
2441 hole_em->ram_bytes = hole_em->len; in fill_holes()
2442 hole_em->orig_start = offset; in fill_holes()
2444 hole_em->block_start = EXTENT_MAP_HOLE; in fill_holes()
2445 hole_em->block_len = 0; in fill_holes()
2446 hole_em->orig_block_len = 0; in fill_holes()
[all …]
Dinode.c5233 struct extent_map *hole_em; in btrfs_cont_expand() local
5247 hole_em = alloc_extent_map(); in btrfs_cont_expand()
5248 if (!hole_em) { in btrfs_cont_expand()
5253 hole_em->start = cur_offset; in btrfs_cont_expand()
5254 hole_em->len = hole_size; in btrfs_cont_expand()
5255 hole_em->orig_start = cur_offset; in btrfs_cont_expand()
5257 hole_em->block_start = EXTENT_MAP_HOLE; in btrfs_cont_expand()
5258 hole_em->block_len = 0; in btrfs_cont_expand()
5259 hole_em->orig_block_len = 0; in btrfs_cont_expand()
5260 hole_em->ram_bytes = hole_size; in btrfs_cont_expand()
[all …]