blob: a33bca94d133ecb6022df27da5e2655f58c93fc3 [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Omar Sandovala5ed9182015-09-29 20:50:35 -07002/*
3 * Copyright (C) 2015 Facebook. All rights reserved.
Omar Sandovala5ed9182015-09-29 20:50:35 -07004 */
5
6#include <linux/kernel.h>
Omar Sandoval25ff17e2017-06-05 00:12:31 -07007#include <linux/sched/mm.h>
Omar Sandovala5ed9182015-09-29 20:50:35 -07008#include "ctree.h"
9#include "disk-io.h"
10#include "locking.h"
11#include "free-space-tree.h"
12#include "transaction.h"
Josef Bacikaac00232019-06-20 15:37:44 -040013#include "block-group.h"
Omar Sandovala5ed9182015-09-29 20:50:35 -070014
15static int __add_block_group_free_space(struct btrfs_trans_handle *trans,
David Sterba32da53862019-10-29 19:20:18 +010016 struct btrfs_block_group *block_group,
Omar Sandovala5ed9182015-09-29 20:50:35 -070017 struct btrfs_path *path);
18
David Sterba32da53862019-10-29 19:20:18 +010019void set_free_space_tree_thresholds(struct btrfs_block_group *cache)
Omar Sandovala5ed9182015-09-29 20:50:35 -070020{
21 u32 bitmap_range;
22 size_t bitmap_size;
23 u64 num_bitmaps, total_bitmap_size;
24
Marcos Paulo de Souzae3e39c72020-08-21 11:54:44 -030025 if (WARN_ON(cache->length == 0))
26 btrfs_warn(cache->fs_info, "block group %llu length is zero",
27 cache->start);
28
Omar Sandovala5ed9182015-09-29 20:50:35 -070029 /*
30 * We convert to bitmaps when the disk space required for using extents
31 * exceeds that required for using bitmaps.
32 */
Jeff Mahoneyda170662016-06-15 09:22:56 -040033 bitmap_range = cache->fs_info->sectorsize * BTRFS_FREE_SPACE_BITMAP_BITS;
David Sterbab3470b52019-10-23 18:48:22 +020034 num_bitmaps = div_u64(cache->length + bitmap_range - 1, bitmap_range);
Omar Sandovala5ed9182015-09-29 20:50:35 -070035 bitmap_size = sizeof(struct btrfs_item) + BTRFS_FREE_SPACE_BITMAP_SIZE;
36 total_bitmap_size = num_bitmaps * bitmap_size;
37 cache->bitmap_high_thresh = div_u64(total_bitmap_size,
38 sizeof(struct btrfs_item));
39
40 /*
41 * We allow for a small buffer between the high threshold and low
42 * threshold to avoid thrashing back and forth between the two formats.
43 */
44 if (cache->bitmap_high_thresh > 100)
45 cache->bitmap_low_thresh = cache->bitmap_high_thresh - 100;
46 else
47 cache->bitmap_low_thresh = 0;
48}
49
50static int add_new_free_space_info(struct btrfs_trans_handle *trans,
David Sterba32da53862019-10-29 19:20:18 +010051 struct btrfs_block_group *block_group,
Omar Sandovala5ed9182015-09-29 20:50:35 -070052 struct btrfs_path *path)
53{
Nikolay Borisov66afee12018-05-10 15:44:44 +030054 struct btrfs_root *root = trans->fs_info->free_space_root;
Omar Sandovala5ed9182015-09-29 20:50:35 -070055 struct btrfs_free_space_info *info;
56 struct btrfs_key key;
57 struct extent_buffer *leaf;
58 int ret;
59
David Sterbab3470b52019-10-23 18:48:22 +020060 key.objectid = block_group->start;
Omar Sandovala5ed9182015-09-29 20:50:35 -070061 key.type = BTRFS_FREE_SPACE_INFO_KEY;
David Sterbab3470b52019-10-23 18:48:22 +020062 key.offset = block_group->length;
Omar Sandovala5ed9182015-09-29 20:50:35 -070063
64 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(*info));
65 if (ret)
66 goto out;
67
68 leaf = path->nodes[0];
69 info = btrfs_item_ptr(leaf, path->slots[0],
70 struct btrfs_free_space_info);
71 btrfs_set_free_space_extent_count(leaf, info, 0);
72 btrfs_set_free_space_flags(leaf, info, 0);
73 btrfs_mark_buffer_dirty(leaf);
74
75 ret = 0;
76out:
77 btrfs_release_path(path);
78 return ret;
79}
80
Johannes Thumshirnce9f9672018-11-19 10:38:17 +010081EXPORT_FOR_TESTS
82struct btrfs_free_space_info *search_free_space_info(
David Sterba2ccf5452019-03-20 14:11:21 +010083 struct btrfs_trans_handle *trans,
David Sterba32da53862019-10-29 19:20:18 +010084 struct btrfs_block_group *block_group,
Johannes Thumshirnce9f9672018-11-19 10:38:17 +010085 struct btrfs_path *path, int cow)
Omar Sandovala5ed9182015-09-29 20:50:35 -070086{
David Sterba2ccf5452019-03-20 14:11:21 +010087 struct btrfs_fs_info *fs_info = block_group->fs_info;
Omar Sandovala5ed9182015-09-29 20:50:35 -070088 struct btrfs_root *root = fs_info->free_space_root;
89 struct btrfs_key key;
90 int ret;
91
David Sterbab3470b52019-10-23 18:48:22 +020092 key.objectid = block_group->start;
Omar Sandovala5ed9182015-09-29 20:50:35 -070093 key.type = BTRFS_FREE_SPACE_INFO_KEY;
David Sterbab3470b52019-10-23 18:48:22 +020094 key.offset = block_group->length;
Omar Sandovala5ed9182015-09-29 20:50:35 -070095
96 ret = btrfs_search_slot(trans, root, &key, path, 0, cow);
97 if (ret < 0)
98 return ERR_PTR(ret);
99 if (ret != 0) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400100 btrfs_warn(fs_info, "missing free space info for %llu",
David Sterbab3470b52019-10-23 18:48:22 +0200101 block_group->start);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700102 ASSERT(0);
103 return ERR_PTR(-ENOENT);
104 }
105
106 return btrfs_item_ptr(path->nodes[0], path->slots[0],
107 struct btrfs_free_space_info);
108}
109
110/*
111 * btrfs_search_slot() but we're looking for the greatest key less than the
112 * passed key.
113 */
114static int btrfs_search_prev_slot(struct btrfs_trans_handle *trans,
115 struct btrfs_root *root,
116 struct btrfs_key *key, struct btrfs_path *p,
117 int ins_len, int cow)
118{
119 int ret;
120
121 ret = btrfs_search_slot(trans, root, key, p, ins_len, cow);
122 if (ret < 0)
123 return ret;
124
125 if (ret == 0) {
126 ASSERT(0);
127 return -EIO;
128 }
129
130 if (p->slots[0] == 0) {
131 ASSERT(0);
132 return -EIO;
133 }
134 p->slots[0]--;
135
136 return 0;
137}
138
David Sterba098e6302020-07-01 21:07:40 +0200139static inline u32 free_space_bitmap_size(const struct btrfs_fs_info *fs_info,
140 u64 size)
Omar Sandovala5ed9182015-09-29 20:50:35 -0700141{
David Sterba098e6302020-07-01 21:07:40 +0200142 return DIV_ROUND_UP(size >> fs_info->sectorsize_bits, BITS_PER_BYTE);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700143}
144
Howard McLauchlana5659712018-04-18 18:02:36 -0700145static unsigned long *alloc_bitmap(u32 bitmap_size)
Omar Sandovala5ed9182015-09-29 20:50:35 -0700146{
Howard McLauchlana5659712018-04-18 18:02:36 -0700147 unsigned long *ret;
Omar Sandoval25ff17e2017-06-05 00:12:31 -0700148 unsigned int nofs_flag;
Howard McLauchlana5659712018-04-18 18:02:36 -0700149 u32 bitmap_rounded_size = round_up(bitmap_size, sizeof(unsigned long));
David Sterba79b134a2016-01-22 17:16:18 +0100150
151 /*
Omar Sandoval25ff17e2017-06-05 00:12:31 -0700152 * GFP_NOFS doesn't work with kvmalloc(), but we really can't recurse
153 * into the filesystem as the free space bitmap can be modified in the
154 * critical section of a transaction commit.
155 *
156 * TODO: push the memalloc_nofs_{save,restore}() to the caller where we
157 * know that recursion is unsafe.
David Sterba79b134a2016-01-22 17:16:18 +0100158 */
Omar Sandoval25ff17e2017-06-05 00:12:31 -0700159 nofs_flag = memalloc_nofs_save();
Howard McLauchlana5659712018-04-18 18:02:36 -0700160 ret = kvzalloc(bitmap_rounded_size, GFP_KERNEL);
Omar Sandoval25ff17e2017-06-05 00:12:31 -0700161 memalloc_nofs_restore(nofs_flag);
162 return ret;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700163}
164
Howard McLauchlana5659712018-04-18 18:02:36 -0700165static void le_bitmap_set(unsigned long *map, unsigned int start, int len)
Howard McLauchlan6faa8f42018-04-18 18:02:35 -0700166{
Howard McLauchlana5659712018-04-18 18:02:36 -0700167 u8 *p = ((u8 *)map) + BIT_BYTE(start);
Howard McLauchlan6faa8f42018-04-18 18:02:35 -0700168 const unsigned int size = start + len;
169 int bits_to_set = BITS_PER_BYTE - (start % BITS_PER_BYTE);
170 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(start);
171
172 while (len - bits_to_set >= 0) {
173 *p |= mask_to_set;
174 len -= bits_to_set;
175 bits_to_set = BITS_PER_BYTE;
176 mask_to_set = ~0;
177 p++;
178 }
179 if (len) {
180 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
181 *p |= mask_to_set;
182 }
183}
184
Johannes Thumshirnce9f9672018-11-19 10:38:17 +0100185EXPORT_FOR_TESTS
Omar Sandovala5ed9182015-09-29 20:50:35 -0700186int convert_free_space_to_bitmaps(struct btrfs_trans_handle *trans,
David Sterba32da53862019-10-29 19:20:18 +0100187 struct btrfs_block_group *block_group,
Omar Sandovala5ed9182015-09-29 20:50:35 -0700188 struct btrfs_path *path)
189{
Nikolay Borisov719fb4d2018-05-10 15:44:47 +0300190 struct btrfs_fs_info *fs_info = trans->fs_info;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700191 struct btrfs_root *root = fs_info->free_space_root;
192 struct btrfs_free_space_info *info;
193 struct btrfs_key key, found_key;
194 struct extent_buffer *leaf;
Howard McLauchlana5659712018-04-18 18:02:36 -0700195 unsigned long *bitmap;
196 char *bitmap_cursor;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700197 u64 start, end;
198 u64 bitmap_range, i;
199 u32 bitmap_size, flags, expected_extent_count;
200 u32 extent_count = 0;
201 int done = 0, nr;
202 int ret;
203
David Sterba098e6302020-07-01 21:07:40 +0200204 bitmap_size = free_space_bitmap_size(fs_info, block_group->length);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700205 bitmap = alloc_bitmap(bitmap_size);
206 if (!bitmap) {
207 ret = -ENOMEM;
208 goto out;
209 }
210
David Sterbab3470b52019-10-23 18:48:22 +0200211 start = block_group->start;
212 end = block_group->start + block_group->length;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700213
214 key.objectid = end - 1;
215 key.type = (u8)-1;
216 key.offset = (u64)-1;
217
218 while (!done) {
219 ret = btrfs_search_prev_slot(trans, root, &key, path, -1, 1);
220 if (ret)
221 goto out;
222
223 leaf = path->nodes[0];
224 nr = 0;
225 path->slots[0]++;
226 while (path->slots[0] > 0) {
227 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0] - 1);
228
229 if (found_key.type == BTRFS_FREE_SPACE_INFO_KEY) {
David Sterbab3470b52019-10-23 18:48:22 +0200230 ASSERT(found_key.objectid == block_group->start);
231 ASSERT(found_key.offset == block_group->length);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700232 done = 1;
233 break;
234 } else if (found_key.type == BTRFS_FREE_SPACE_EXTENT_KEY) {
235 u64 first, last;
236
237 ASSERT(found_key.objectid >= start);
238 ASSERT(found_key.objectid < end);
239 ASSERT(found_key.objectid + found_key.offset <= end);
240
241 first = div_u64(found_key.objectid - start,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400242 fs_info->sectorsize);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700243 last = div_u64(found_key.objectid + found_key.offset - start,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400244 fs_info->sectorsize);
Omar Sandoval2fe1d552016-09-22 17:24:20 -0700245 le_bitmap_set(bitmap, first, last - first);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700246
247 extent_count++;
248 nr++;
249 path->slots[0]--;
250 } else {
251 ASSERT(0);
252 }
253 }
254
255 ret = btrfs_del_items(trans, root, path, path->slots[0], nr);
256 if (ret)
257 goto out;
258 btrfs_release_path(path);
259 }
260
David Sterba2ccf5452019-03-20 14:11:21 +0100261 info = search_free_space_info(trans, block_group, path, 1);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700262 if (IS_ERR(info)) {
263 ret = PTR_ERR(info);
264 goto out;
265 }
266 leaf = path->nodes[0];
267 flags = btrfs_free_space_flags(leaf, info);
268 flags |= BTRFS_FREE_SPACE_USING_BITMAPS;
269 btrfs_set_free_space_flags(leaf, info, flags);
270 expected_extent_count = btrfs_free_space_extent_count(leaf, info);
271 btrfs_mark_buffer_dirty(leaf);
272 btrfs_release_path(path);
273
274 if (extent_count != expected_extent_count) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400275 btrfs_err(fs_info,
276 "incorrect extent count for %llu; counted %u, expected %u",
David Sterbab3470b52019-10-23 18:48:22 +0200277 block_group->start, extent_count,
Omar Sandovala5ed9182015-09-29 20:50:35 -0700278 expected_extent_count);
279 ASSERT(0);
280 ret = -EIO;
281 goto out;
282 }
283
Howard McLauchlana5659712018-04-18 18:02:36 -0700284 bitmap_cursor = (char *)bitmap;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400285 bitmap_range = fs_info->sectorsize * BTRFS_FREE_SPACE_BITMAP_BITS;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700286 i = start;
287 while (i < end) {
288 unsigned long ptr;
289 u64 extent_size;
290 u32 data_size;
291
292 extent_size = min(end - i, bitmap_range);
David Sterba098e6302020-07-01 21:07:40 +0200293 data_size = free_space_bitmap_size(fs_info, extent_size);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700294
295 key.objectid = i;
296 key.type = BTRFS_FREE_SPACE_BITMAP_KEY;
297 key.offset = extent_size;
298
299 ret = btrfs_insert_empty_item(trans, root, path, &key,
300 data_size);
301 if (ret)
302 goto out;
303
304 leaf = path->nodes[0];
305 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
306 write_extent_buffer(leaf, bitmap_cursor, ptr,
307 data_size);
308 btrfs_mark_buffer_dirty(leaf);
309 btrfs_release_path(path);
310
311 i += extent_size;
312 bitmap_cursor += data_size;
313 }
314
315 ret = 0;
316out:
David Sterba79b134a2016-01-22 17:16:18 +0100317 kvfree(bitmap);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700318 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400319 btrfs_abort_transaction(trans, ret);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700320 return ret;
321}
322
Johannes Thumshirnce9f9672018-11-19 10:38:17 +0100323EXPORT_FOR_TESTS
Omar Sandovala5ed9182015-09-29 20:50:35 -0700324int convert_free_space_to_extents(struct btrfs_trans_handle *trans,
David Sterba32da53862019-10-29 19:20:18 +0100325 struct btrfs_block_group *block_group,
Omar Sandovala5ed9182015-09-29 20:50:35 -0700326 struct btrfs_path *path)
327{
Nikolay Borisov5296c2b2018-05-10 15:44:48 +0300328 struct btrfs_fs_info *fs_info = trans->fs_info;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700329 struct btrfs_root *root = fs_info->free_space_root;
330 struct btrfs_free_space_info *info;
331 struct btrfs_key key, found_key;
332 struct extent_buffer *leaf;
Howard McLauchlana5659712018-04-18 18:02:36 -0700333 unsigned long *bitmap;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700334 u64 start, end;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700335 u32 bitmap_size, flags, expected_extent_count;
Howard McLauchlana5659712018-04-18 18:02:36 -0700336 unsigned long nrbits, start_bit, end_bit;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700337 u32 extent_count = 0;
338 int done = 0, nr;
339 int ret;
340
David Sterba098e6302020-07-01 21:07:40 +0200341 bitmap_size = free_space_bitmap_size(fs_info, block_group->length);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700342 bitmap = alloc_bitmap(bitmap_size);
343 if (!bitmap) {
344 ret = -ENOMEM;
345 goto out;
346 }
347
David Sterbab3470b52019-10-23 18:48:22 +0200348 start = block_group->start;
349 end = block_group->start + block_group->length;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700350
351 key.objectid = end - 1;
352 key.type = (u8)-1;
353 key.offset = (u64)-1;
354
355 while (!done) {
356 ret = btrfs_search_prev_slot(trans, root, &key, path, -1, 1);
357 if (ret)
358 goto out;
359
360 leaf = path->nodes[0];
361 nr = 0;
362 path->slots[0]++;
363 while (path->slots[0] > 0) {
364 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0] - 1);
365
366 if (found_key.type == BTRFS_FREE_SPACE_INFO_KEY) {
David Sterbab3470b52019-10-23 18:48:22 +0200367 ASSERT(found_key.objectid == block_group->start);
368 ASSERT(found_key.offset == block_group->length);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700369 done = 1;
370 break;
371 } else if (found_key.type == BTRFS_FREE_SPACE_BITMAP_KEY) {
372 unsigned long ptr;
Howard McLauchlana5659712018-04-18 18:02:36 -0700373 char *bitmap_cursor;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700374 u32 bitmap_pos, data_size;
375
376 ASSERT(found_key.objectid >= start);
377 ASSERT(found_key.objectid < end);
378 ASSERT(found_key.objectid + found_key.offset <= end);
379
380 bitmap_pos = div_u64(found_key.objectid - start,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400381 fs_info->sectorsize *
Omar Sandovala5ed9182015-09-29 20:50:35 -0700382 BITS_PER_BYTE);
Howard McLauchlana5659712018-04-18 18:02:36 -0700383 bitmap_cursor = ((char *)bitmap) + bitmap_pos;
David Sterba098e6302020-07-01 21:07:40 +0200384 data_size = free_space_bitmap_size(fs_info,
385 found_key.offset);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700386
387 ptr = btrfs_item_ptr_offset(leaf, path->slots[0] - 1);
388 read_extent_buffer(leaf, bitmap_cursor, ptr,
389 data_size);
390
391 nr++;
392 path->slots[0]--;
393 } else {
394 ASSERT(0);
395 }
396 }
397
398 ret = btrfs_del_items(trans, root, path, path->slots[0], nr);
399 if (ret)
400 goto out;
401 btrfs_release_path(path);
402 }
403
David Sterba2ccf5452019-03-20 14:11:21 +0100404 info = search_free_space_info(trans, block_group, path, 1);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700405 if (IS_ERR(info)) {
406 ret = PTR_ERR(info);
407 goto out;
408 }
409 leaf = path->nodes[0];
410 flags = btrfs_free_space_flags(leaf, info);
411 flags &= ~BTRFS_FREE_SPACE_USING_BITMAPS;
412 btrfs_set_free_space_flags(leaf, info, flags);
413 expected_extent_count = btrfs_free_space_extent_count(leaf, info);
414 btrfs_mark_buffer_dirty(leaf);
415 btrfs_release_path(path);
416
David Sterbaab108d92020-07-01 20:45:04 +0200417 nrbits = block_group->length >> block_group->fs_info->sectorsize_bits;
Howard McLauchlana5659712018-04-18 18:02:36 -0700418 start_bit = find_next_bit_le(bitmap, nrbits, 0);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700419
Howard McLauchlana5659712018-04-18 18:02:36 -0700420 while (start_bit < nrbits) {
421 end_bit = find_next_zero_bit_le(bitmap, nrbits, start_bit);
422 ASSERT(start_bit < end_bit);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700423
Howard McLauchlana5659712018-04-18 18:02:36 -0700424 key.objectid = start + start_bit * block_group->fs_info->sectorsize;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700425 key.type = BTRFS_FREE_SPACE_EXTENT_KEY;
Howard McLauchlana5659712018-04-18 18:02:36 -0700426 key.offset = (end_bit - start_bit) * block_group->fs_info->sectorsize;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700427
428 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
429 if (ret)
430 goto out;
431 btrfs_release_path(path);
432
433 extent_count++;
Howard McLauchlana5659712018-04-18 18:02:36 -0700434
435 start_bit = find_next_bit_le(bitmap, nrbits, end_bit);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700436 }
437
438 if (extent_count != expected_extent_count) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400439 btrfs_err(fs_info,
440 "incorrect extent count for %llu; counted %u, expected %u",
David Sterbab3470b52019-10-23 18:48:22 +0200441 block_group->start, extent_count,
Omar Sandovala5ed9182015-09-29 20:50:35 -0700442 expected_extent_count);
443 ASSERT(0);
444 ret = -EIO;
445 goto out;
446 }
447
448 ret = 0;
449out:
David Sterba79b134a2016-01-22 17:16:18 +0100450 kvfree(bitmap);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700451 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400452 btrfs_abort_transaction(trans, ret);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700453 return ret;
454}
455
456static int update_free_space_extent_count(struct btrfs_trans_handle *trans,
David Sterba32da53862019-10-29 19:20:18 +0100457 struct btrfs_block_group *block_group,
Omar Sandovala5ed9182015-09-29 20:50:35 -0700458 struct btrfs_path *path,
459 int new_extents)
460{
461 struct btrfs_free_space_info *info;
462 u32 flags;
463 u32 extent_count;
464 int ret = 0;
465
466 if (new_extents == 0)
467 return 0;
468
David Sterba2ccf5452019-03-20 14:11:21 +0100469 info = search_free_space_info(trans, block_group, path, 1);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700470 if (IS_ERR(info)) {
471 ret = PTR_ERR(info);
472 goto out;
473 }
474 flags = btrfs_free_space_flags(path->nodes[0], info);
475 extent_count = btrfs_free_space_extent_count(path->nodes[0], info);
476
477 extent_count += new_extents;
478 btrfs_set_free_space_extent_count(path->nodes[0], info, extent_count);
479 btrfs_mark_buffer_dirty(path->nodes[0]);
480 btrfs_release_path(path);
481
482 if (!(flags & BTRFS_FREE_SPACE_USING_BITMAPS) &&
483 extent_count > block_group->bitmap_high_thresh) {
Nikolay Borisov719fb4d2018-05-10 15:44:47 +0300484 ret = convert_free_space_to_bitmaps(trans, block_group, path);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700485 } else if ((flags & BTRFS_FREE_SPACE_USING_BITMAPS) &&
486 extent_count < block_group->bitmap_low_thresh) {
Nikolay Borisov5296c2b2018-05-10 15:44:48 +0300487 ret = convert_free_space_to_extents(trans, block_group, path);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700488 }
489
490out:
491 return ret;
492}
493
Johannes Thumshirnce9f9672018-11-19 10:38:17 +0100494EXPORT_FOR_TESTS
David Sterba32da53862019-10-29 19:20:18 +0100495int free_space_test_bit(struct btrfs_block_group *block_group,
Omar Sandovala5ed9182015-09-29 20:50:35 -0700496 struct btrfs_path *path, u64 offset)
497{
498 struct extent_buffer *leaf;
499 struct btrfs_key key;
500 u64 found_start, found_end;
501 unsigned long ptr, i;
502
503 leaf = path->nodes[0];
504 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
505 ASSERT(key.type == BTRFS_FREE_SPACE_BITMAP_KEY);
506
507 found_start = key.objectid;
508 found_end = key.objectid + key.offset;
509 ASSERT(offset >= found_start && offset < found_end);
510
511 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400512 i = div_u64(offset - found_start,
513 block_group->fs_info->sectorsize);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700514 return !!extent_buffer_test_bit(leaf, ptr, i);
515}
516
David Sterba32da53862019-10-29 19:20:18 +0100517static void free_space_set_bits(struct btrfs_block_group *block_group,
Omar Sandovala5ed9182015-09-29 20:50:35 -0700518 struct btrfs_path *path, u64 *start, u64 *size,
519 int bit)
520{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400521 struct btrfs_fs_info *fs_info = block_group->fs_info;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700522 struct extent_buffer *leaf;
523 struct btrfs_key key;
524 u64 end = *start + *size;
525 u64 found_start, found_end;
526 unsigned long ptr, first, last;
527
528 leaf = path->nodes[0];
529 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
530 ASSERT(key.type == BTRFS_FREE_SPACE_BITMAP_KEY);
531
532 found_start = key.objectid;
533 found_end = key.objectid + key.offset;
534 ASSERT(*start >= found_start && *start < found_end);
535 ASSERT(end > found_start);
536
537 if (end > found_end)
538 end = found_end;
539
540 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
David Sterbaab108d92020-07-01 20:45:04 +0200541 first = (*start - found_start) >> fs_info->sectorsize_bits;
542 last = (end - found_start) >> fs_info->sectorsize_bits;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700543 if (bit)
544 extent_buffer_bitmap_set(leaf, ptr, first, last - first);
545 else
546 extent_buffer_bitmap_clear(leaf, ptr, first, last - first);
547 btrfs_mark_buffer_dirty(leaf);
548
549 *size -= end - *start;
550 *start = end;
551}
552
553/*
554 * We can't use btrfs_next_item() in modify_free_space_bitmap() because
555 * btrfs_next_leaf() doesn't get the path for writing. We can forgo the fancy
556 * tree walking in btrfs_next_leaf() anyways because we know exactly what we're
557 * looking for.
558 */
559static int free_space_next_bitmap(struct btrfs_trans_handle *trans,
560 struct btrfs_root *root, struct btrfs_path *p)
561{
562 struct btrfs_key key;
563
564 if (p->slots[0] + 1 < btrfs_header_nritems(p->nodes[0])) {
565 p->slots[0]++;
566 return 0;
567 }
568
569 btrfs_item_key_to_cpu(p->nodes[0], &key, p->slots[0]);
570 btrfs_release_path(p);
571
572 key.objectid += key.offset;
573 key.type = (u8)-1;
574 key.offset = (u64)-1;
575
576 return btrfs_search_prev_slot(trans, root, &key, p, 0, 1);
577}
578
579/*
580 * If remove is 1, then we are removing free space, thus clearing bits in the
581 * bitmap. If remove is 0, then we are adding free space, thus setting bits in
582 * the bitmap.
583 */
584static int modify_free_space_bitmap(struct btrfs_trans_handle *trans,
David Sterba32da53862019-10-29 19:20:18 +0100585 struct btrfs_block_group *block_group,
Omar Sandovala5ed9182015-09-29 20:50:35 -0700586 struct btrfs_path *path,
587 u64 start, u64 size, int remove)
588{
Nikolay Borisov85a7ef12018-05-10 15:44:50 +0300589 struct btrfs_root *root = block_group->fs_info->free_space_root;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700590 struct btrfs_key key;
591 u64 end = start + size;
592 u64 cur_start, cur_size;
593 int prev_bit, next_bit;
594 int new_extents;
595 int ret;
596
597 /*
598 * Read the bit for the block immediately before the extent of space if
599 * that block is within the block group.
600 */
David Sterbab3470b52019-10-23 18:48:22 +0200601 if (start > block_group->start) {
Jeff Mahoneyda170662016-06-15 09:22:56 -0400602 u64 prev_block = start - block_group->fs_info->sectorsize;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700603
604 key.objectid = prev_block;
605 key.type = (u8)-1;
606 key.offset = (u64)-1;
607
608 ret = btrfs_search_prev_slot(trans, root, &key, path, 0, 1);
609 if (ret)
610 goto out;
611
612 prev_bit = free_space_test_bit(block_group, path, prev_block);
613
614 /* The previous block may have been in the previous bitmap. */
615 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
616 if (start >= key.objectid + key.offset) {
617 ret = free_space_next_bitmap(trans, root, path);
618 if (ret)
619 goto out;
620 }
621 } else {
622 key.objectid = start;
623 key.type = (u8)-1;
624 key.offset = (u64)-1;
625
626 ret = btrfs_search_prev_slot(trans, root, &key, path, 0, 1);
627 if (ret)
628 goto out;
629
630 prev_bit = -1;
631 }
632
633 /*
634 * Iterate over all of the bitmaps overlapped by the extent of space,
635 * clearing/setting bits as required.
636 */
637 cur_start = start;
638 cur_size = size;
639 while (1) {
640 free_space_set_bits(block_group, path, &cur_start, &cur_size,
641 !remove);
642 if (cur_size == 0)
643 break;
644 ret = free_space_next_bitmap(trans, root, path);
645 if (ret)
646 goto out;
647 }
648
649 /*
650 * Read the bit for the block immediately after the extent of space if
651 * that block is within the block group.
652 */
David Sterbab3470b52019-10-23 18:48:22 +0200653 if (end < block_group->start + block_group->length) {
Omar Sandovala5ed9182015-09-29 20:50:35 -0700654 /* The next block may be in the next bitmap. */
655 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
656 if (end >= key.objectid + key.offset) {
657 ret = free_space_next_bitmap(trans, root, path);
658 if (ret)
659 goto out;
660 }
661
662 next_bit = free_space_test_bit(block_group, path, end);
663 } else {
664 next_bit = -1;
665 }
666
667 if (remove) {
668 new_extents = -1;
669 if (prev_bit == 1) {
670 /* Leftover on the left. */
671 new_extents++;
672 }
673 if (next_bit == 1) {
674 /* Leftover on the right. */
675 new_extents++;
676 }
677 } else {
678 new_extents = 1;
679 if (prev_bit == 1) {
680 /* Merging with neighbor on the left. */
681 new_extents--;
682 }
683 if (next_bit == 1) {
684 /* Merging with neighbor on the right. */
685 new_extents--;
686 }
687 }
688
689 btrfs_release_path(path);
Nikolay Borisov690d7682018-05-10 15:44:49 +0300690 ret = update_free_space_extent_count(trans, block_group, path,
Omar Sandovala5ed9182015-09-29 20:50:35 -0700691 new_extents);
692
693out:
694 return ret;
695}
696
697static int remove_free_space_extent(struct btrfs_trans_handle *trans,
David Sterba32da53862019-10-29 19:20:18 +0100698 struct btrfs_block_group *block_group,
Omar Sandovala5ed9182015-09-29 20:50:35 -0700699 struct btrfs_path *path,
700 u64 start, u64 size)
701{
Nikolay Borisove5811682018-05-10 15:44:52 +0300702 struct btrfs_root *root = trans->fs_info->free_space_root;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700703 struct btrfs_key key;
704 u64 found_start, found_end;
705 u64 end = start + size;
706 int new_extents = -1;
707 int ret;
708
709 key.objectid = start;
710 key.type = (u8)-1;
711 key.offset = (u64)-1;
712
713 ret = btrfs_search_prev_slot(trans, root, &key, path, -1, 1);
714 if (ret)
715 goto out;
716
717 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
718
719 ASSERT(key.type == BTRFS_FREE_SPACE_EXTENT_KEY);
720
721 found_start = key.objectid;
722 found_end = key.objectid + key.offset;
723 ASSERT(start >= found_start && end <= found_end);
724
725 /*
726 * Okay, now that we've found the free space extent which contains the
727 * free space that we are removing, there are four cases:
728 *
729 * 1. We're using the whole extent: delete the key we found and
730 * decrement the free space extent count.
731 * 2. We are using part of the extent starting at the beginning: delete
732 * the key we found and insert a new key representing the leftover at
733 * the end. There is no net change in the number of extents.
734 * 3. We are using part of the extent ending at the end: delete the key
735 * we found and insert a new key representing the leftover at the
736 * beginning. There is no net change in the number of extents.
737 * 4. We are using part of the extent in the middle: delete the key we
738 * found and insert two new keys representing the leftovers on each
739 * side. Where we used to have one extent, we now have two, so increment
740 * the extent count. We may need to convert the block group to bitmaps
741 * as a result.
742 */
743
744 /* Delete the existing key (cases 1-4). */
745 ret = btrfs_del_item(trans, root, path);
746 if (ret)
747 goto out;
748
749 /* Add a key for leftovers at the beginning (cases 3 and 4). */
750 if (start > found_start) {
751 key.objectid = found_start;
752 key.type = BTRFS_FREE_SPACE_EXTENT_KEY;
753 key.offset = start - found_start;
754
755 btrfs_release_path(path);
756 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
757 if (ret)
758 goto out;
759 new_extents++;
760 }
761
762 /* Add a key for leftovers at the end (cases 2 and 4). */
763 if (end < found_end) {
764 key.objectid = end;
765 key.type = BTRFS_FREE_SPACE_EXTENT_KEY;
766 key.offset = found_end - end;
767
768 btrfs_release_path(path);
769 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
770 if (ret)
771 goto out;
772 new_extents++;
773 }
774
775 btrfs_release_path(path);
Nikolay Borisov690d7682018-05-10 15:44:49 +0300776 ret = update_free_space_extent_count(trans, block_group, path,
Omar Sandovala5ed9182015-09-29 20:50:35 -0700777 new_extents);
778
779out:
780 return ret;
781}
782
Johannes Thumshirnce9f9672018-11-19 10:38:17 +0100783EXPORT_FOR_TESTS
Omar Sandovala5ed9182015-09-29 20:50:35 -0700784int __remove_from_free_space_tree(struct btrfs_trans_handle *trans,
David Sterba32da53862019-10-29 19:20:18 +0100785 struct btrfs_block_group *block_group,
Omar Sandovala5ed9182015-09-29 20:50:35 -0700786 struct btrfs_path *path, u64 start, u64 size)
787{
788 struct btrfs_free_space_info *info;
789 u32 flags;
790 int ret;
791
792 if (block_group->needs_free_space) {
Nikolay Borisov9a7e0f92018-05-10 15:44:42 +0300793 ret = __add_block_group_free_space(trans, block_group, path);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700794 if (ret)
795 return ret;
796 }
797
David Sterba2ccf5452019-03-20 14:11:21 +0100798 info = search_free_space_info(NULL, block_group, path, 0);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700799 if (IS_ERR(info))
800 return PTR_ERR(info);
801 flags = btrfs_free_space_flags(path->nodes[0], info);
802 btrfs_release_path(path);
803
804 if (flags & BTRFS_FREE_SPACE_USING_BITMAPS) {
Nikolay Borisov85a7ef12018-05-10 15:44:50 +0300805 return modify_free_space_bitmap(trans, block_group, path,
806 start, size, 1);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700807 } else {
Nikolay Borisove5811682018-05-10 15:44:52 +0300808 return remove_free_space_extent(trans, block_group, path,
809 start, size);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700810 }
811}
812
813int remove_from_free_space_tree(struct btrfs_trans_handle *trans,
Omar Sandovala5ed9182015-09-29 20:50:35 -0700814 u64 start, u64 size)
815{
David Sterba32da53862019-10-29 19:20:18 +0100816 struct btrfs_block_group *block_group;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700817 struct btrfs_path *path;
818 int ret;
819
Nikolay Borisov25a356d2018-05-10 15:44:54 +0300820 if (!btrfs_fs_compat_ro(trans->fs_info, FREE_SPACE_TREE))
Omar Sandovala5ed9182015-09-29 20:50:35 -0700821 return 0;
822
823 path = btrfs_alloc_path();
824 if (!path) {
825 ret = -ENOMEM;
826 goto out;
827 }
828
Nikolay Borisov25a356d2018-05-10 15:44:54 +0300829 block_group = btrfs_lookup_block_group(trans->fs_info, start);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700830 if (!block_group) {
831 ASSERT(0);
832 ret = -ENOENT;
833 goto out;
834 }
835
836 mutex_lock(&block_group->free_space_lock);
Nikolay Borisovc31683a2018-05-10 15:44:53 +0300837 ret = __remove_from_free_space_tree(trans, block_group, path, start,
838 size);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700839 mutex_unlock(&block_group->free_space_lock);
840
841 btrfs_put_block_group(block_group);
842out:
843 btrfs_free_path(path);
844 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400845 btrfs_abort_transaction(trans, ret);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700846 return ret;
847}
848
849static int add_free_space_extent(struct btrfs_trans_handle *trans,
David Sterba32da53862019-10-29 19:20:18 +0100850 struct btrfs_block_group *block_group,
Omar Sandovala5ed9182015-09-29 20:50:35 -0700851 struct btrfs_path *path,
852 u64 start, u64 size)
853{
Nikolay Borisov5cb17822018-05-10 15:44:51 +0300854 struct btrfs_root *root = trans->fs_info->free_space_root;
Omar Sandovala5ed9182015-09-29 20:50:35 -0700855 struct btrfs_key key, new_key;
856 u64 found_start, found_end;
857 u64 end = start + size;
858 int new_extents = 1;
859 int ret;
860
861 /*
862 * We are adding a new extent of free space, but we need to merge
863 * extents. There are four cases here:
864 *
865 * 1. The new extent does not have any immediate neighbors to merge
866 * with: add the new key and increment the free space extent count. We
867 * may need to convert the block group to bitmaps as a result.
868 * 2. The new extent has an immediate neighbor before it: remove the
869 * previous key and insert a new key combining both of them. There is no
870 * net change in the number of extents.
871 * 3. The new extent has an immediate neighbor after it: remove the next
872 * key and insert a new key combining both of them. There is no net
873 * change in the number of extents.
874 * 4. The new extent has immediate neighbors on both sides: remove both
875 * of the keys and insert a new key combining all of them. Where we used
876 * to have two extents, we now have one, so decrement the extent count.
877 */
878
879 new_key.objectid = start;
880 new_key.type = BTRFS_FREE_SPACE_EXTENT_KEY;
881 new_key.offset = size;
882
883 /* Search for a neighbor on the left. */
David Sterbab3470b52019-10-23 18:48:22 +0200884 if (start == block_group->start)
Omar Sandovala5ed9182015-09-29 20:50:35 -0700885 goto right;
886 key.objectid = start - 1;
887 key.type = (u8)-1;
888 key.offset = (u64)-1;
889
890 ret = btrfs_search_prev_slot(trans, root, &key, path, -1, 1);
891 if (ret)
892 goto out;
893
894 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
895
896 if (key.type != BTRFS_FREE_SPACE_EXTENT_KEY) {
897 ASSERT(key.type == BTRFS_FREE_SPACE_INFO_KEY);
898 btrfs_release_path(path);
899 goto right;
900 }
901
902 found_start = key.objectid;
903 found_end = key.objectid + key.offset;
David Sterbab3470b52019-10-23 18:48:22 +0200904 ASSERT(found_start >= block_group->start &&
905 found_end > block_group->start);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700906 ASSERT(found_start < start && found_end <= start);
907
908 /*
909 * Delete the neighbor on the left and absorb it into the new key (cases
910 * 2 and 4).
911 */
912 if (found_end == start) {
913 ret = btrfs_del_item(trans, root, path);
914 if (ret)
915 goto out;
916 new_key.objectid = found_start;
917 new_key.offset += key.offset;
918 new_extents--;
919 }
920 btrfs_release_path(path);
921
922right:
923 /* Search for a neighbor on the right. */
David Sterbab3470b52019-10-23 18:48:22 +0200924 if (end == block_group->start + block_group->length)
Omar Sandovala5ed9182015-09-29 20:50:35 -0700925 goto insert;
926 key.objectid = end;
927 key.type = (u8)-1;
928 key.offset = (u64)-1;
929
930 ret = btrfs_search_prev_slot(trans, root, &key, path, -1, 1);
931 if (ret)
932 goto out;
933
934 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
935
936 if (key.type != BTRFS_FREE_SPACE_EXTENT_KEY) {
937 ASSERT(key.type == BTRFS_FREE_SPACE_INFO_KEY);
938 btrfs_release_path(path);
939 goto insert;
940 }
941
942 found_start = key.objectid;
943 found_end = key.objectid + key.offset;
David Sterbab3470b52019-10-23 18:48:22 +0200944 ASSERT(found_start >= block_group->start &&
945 found_end > block_group->start);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700946 ASSERT((found_start < start && found_end <= start) ||
947 (found_start >= end && found_end > end));
948
949 /*
950 * Delete the neighbor on the right and absorb it into the new key
951 * (cases 3 and 4).
952 */
953 if (found_start == end) {
954 ret = btrfs_del_item(trans, root, path);
955 if (ret)
956 goto out;
957 new_key.offset += key.offset;
958 new_extents--;
959 }
960 btrfs_release_path(path);
961
962insert:
963 /* Insert the new key (cases 1-4). */
964 ret = btrfs_insert_empty_item(trans, root, path, &new_key, 0);
965 if (ret)
966 goto out;
967
968 btrfs_release_path(path);
Nikolay Borisov690d7682018-05-10 15:44:49 +0300969 ret = update_free_space_extent_count(trans, block_group, path,
Omar Sandovala5ed9182015-09-29 20:50:35 -0700970 new_extents);
971
972out:
973 return ret;
974}
975
Johannes Thumshirnce9f9672018-11-19 10:38:17 +0100976EXPORT_FOR_TESTS
Omar Sandovala5ed9182015-09-29 20:50:35 -0700977int __add_to_free_space_tree(struct btrfs_trans_handle *trans,
David Sterba32da53862019-10-29 19:20:18 +0100978 struct btrfs_block_group *block_group,
Omar Sandovala5ed9182015-09-29 20:50:35 -0700979 struct btrfs_path *path, u64 start, u64 size)
980{
981 struct btrfs_free_space_info *info;
982 u32 flags;
983 int ret;
984
985 if (block_group->needs_free_space) {
Nikolay Borisov9a7e0f92018-05-10 15:44:42 +0300986 ret = __add_block_group_free_space(trans, block_group, path);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700987 if (ret)
988 return ret;
989 }
990
David Sterba2ccf5452019-03-20 14:11:21 +0100991 info = search_free_space_info(NULL, block_group, path, 0);
Omar Sandovala5ed9182015-09-29 20:50:35 -0700992 if (IS_ERR(info))
993 return PTR_ERR(info);
994 flags = btrfs_free_space_flags(path->nodes[0], info);
995 btrfs_release_path(path);
996
997 if (flags & BTRFS_FREE_SPACE_USING_BITMAPS) {
Nikolay Borisov85a7ef12018-05-10 15:44:50 +0300998 return modify_free_space_bitmap(trans, block_group, path,
999 start, size, 0);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001000 } else {
Nikolay Borisov5cb17822018-05-10 15:44:51 +03001001 return add_free_space_extent(trans, block_group, path, start,
1002 size);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001003 }
1004}
1005
1006int add_to_free_space_tree(struct btrfs_trans_handle *trans,
Omar Sandovala5ed9182015-09-29 20:50:35 -07001007 u64 start, u64 size)
1008{
David Sterba32da53862019-10-29 19:20:18 +01001009 struct btrfs_block_group *block_group;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001010 struct btrfs_path *path;
1011 int ret;
1012
Nikolay Borisove7355e52018-05-10 15:44:55 +03001013 if (!btrfs_fs_compat_ro(trans->fs_info, FREE_SPACE_TREE))
Omar Sandovala5ed9182015-09-29 20:50:35 -07001014 return 0;
1015
1016 path = btrfs_alloc_path();
1017 if (!path) {
1018 ret = -ENOMEM;
1019 goto out;
1020 }
1021
Nikolay Borisove7355e52018-05-10 15:44:55 +03001022 block_group = btrfs_lookup_block_group(trans->fs_info, start);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001023 if (!block_group) {
1024 ASSERT(0);
1025 ret = -ENOENT;
1026 goto out;
1027 }
1028
1029 mutex_lock(&block_group->free_space_lock);
Nikolay Borisov2d5cffa2018-05-10 15:44:43 +03001030 ret = __add_to_free_space_tree(trans, block_group, path, start, size);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001031 mutex_unlock(&block_group->free_space_lock);
1032
1033 btrfs_put_block_group(block_group);
1034out:
1035 btrfs_free_path(path);
1036 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04001037 btrfs_abort_transaction(trans, ret);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001038 return ret;
1039}
1040
1041/*
1042 * Populate the free space tree by walking the extent tree. Operations on the
1043 * extent tree that happen as a result of writes to the free space tree will go
1044 * through the normal add/remove hooks.
1045 */
1046static int populate_free_space_tree(struct btrfs_trans_handle *trans,
David Sterba32da53862019-10-29 19:20:18 +01001047 struct btrfs_block_group *block_group)
Omar Sandovala5ed9182015-09-29 20:50:35 -07001048{
Nikolay Borisovffa9a9e2018-05-10 15:44:56 +03001049 struct btrfs_root *extent_root = trans->fs_info->extent_root;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001050 struct btrfs_path *path, *path2;
1051 struct btrfs_key key;
1052 u64 start, end;
1053 int ret;
1054
1055 path = btrfs_alloc_path();
1056 if (!path)
1057 return -ENOMEM;
Gu Jinxiang019599a2018-01-11 16:12:17 +08001058 path->reada = READA_FORWARD;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001059
1060 path2 = btrfs_alloc_path();
1061 if (!path2) {
1062 btrfs_free_path(path);
1063 return -ENOMEM;
1064 }
1065
Nikolay Borisov66afee12018-05-10 15:44:44 +03001066 ret = add_new_free_space_info(trans, block_group, path2);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001067 if (ret)
1068 goto out;
1069
Chris Mason511711a2015-12-30 07:52:35 -08001070 mutex_lock(&block_group->free_space_lock);
1071
Omar Sandovala5ed9182015-09-29 20:50:35 -07001072 /*
1073 * Iterate through all of the extent and metadata items in this block
1074 * group, adding the free space between them and the free space at the
1075 * end. Note that EXTENT_ITEM and METADATA_ITEM are less than
1076 * BLOCK_GROUP_ITEM, so an extent may precede the block group that it's
1077 * contained in.
1078 */
David Sterbab3470b52019-10-23 18:48:22 +02001079 key.objectid = block_group->start;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001080 key.type = BTRFS_EXTENT_ITEM_KEY;
1081 key.offset = 0;
1082
1083 ret = btrfs_search_slot_for_read(extent_root, &key, path, 1, 0);
1084 if (ret < 0)
Chris Mason511711a2015-12-30 07:52:35 -08001085 goto out_locked;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001086 ASSERT(ret == 0);
1087
David Sterbab3470b52019-10-23 18:48:22 +02001088 start = block_group->start;
1089 end = block_group->start + block_group->length;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001090 while (1) {
1091 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1092
1093 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
1094 key.type == BTRFS_METADATA_ITEM_KEY) {
1095 if (key.objectid >= end)
1096 break;
1097
1098 if (start < key.objectid) {
Nikolay Borisov2d5cffa2018-05-10 15:44:43 +03001099 ret = __add_to_free_space_tree(trans,
Omar Sandovala5ed9182015-09-29 20:50:35 -07001100 block_group,
1101 path2, start,
1102 key.objectid -
1103 start);
1104 if (ret)
Chris Mason511711a2015-12-30 07:52:35 -08001105 goto out_locked;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001106 }
1107 start = key.objectid;
1108 if (key.type == BTRFS_METADATA_ITEM_KEY)
Nikolay Borisovffa9a9e2018-05-10 15:44:56 +03001109 start += trans->fs_info->nodesize;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001110 else
1111 start += key.offset;
1112 } else if (key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
David Sterbab3470b52019-10-23 18:48:22 +02001113 if (key.objectid != block_group->start)
Omar Sandovala5ed9182015-09-29 20:50:35 -07001114 break;
1115 }
1116
1117 ret = btrfs_next_item(extent_root, path);
1118 if (ret < 0)
Chris Mason511711a2015-12-30 07:52:35 -08001119 goto out_locked;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001120 if (ret)
1121 break;
1122 }
1123 if (start < end) {
Nikolay Borisov2d5cffa2018-05-10 15:44:43 +03001124 ret = __add_to_free_space_tree(trans, block_group, path2,
1125 start, end - start);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001126 if (ret)
Chris Mason511711a2015-12-30 07:52:35 -08001127 goto out_locked;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001128 }
1129
1130 ret = 0;
Chris Mason511711a2015-12-30 07:52:35 -08001131out_locked:
1132 mutex_unlock(&block_group->free_space_lock);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001133out:
1134 btrfs_free_path(path2);
1135 btrfs_free_path(path);
1136 return ret;
1137}
1138
1139int btrfs_create_free_space_tree(struct btrfs_fs_info *fs_info)
1140{
1141 struct btrfs_trans_handle *trans;
1142 struct btrfs_root *tree_root = fs_info->tree_root;
1143 struct btrfs_root *free_space_root;
David Sterba32da53862019-10-29 19:20:18 +01001144 struct btrfs_block_group *block_group;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001145 struct rb_node *node;
1146 int ret;
1147
1148 trans = btrfs_start_transaction(tree_root, 0);
1149 if (IS_ERR(trans))
1150 return PTR_ERR(trans);
1151
Josef Bacikafcdd122016-09-02 15:40:02 -04001152 set_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &fs_info->flags);
Josef Bacik2f96e402021-01-15 16:26:17 -05001153 set_bit(BTRFS_FS_FREE_SPACE_TREE_UNTRUSTED, &fs_info->flags);
David Sterba9b7a2442019-03-20 13:20:49 +01001154 free_space_root = btrfs_create_tree(trans,
Omar Sandovala5ed9182015-09-29 20:50:35 -07001155 BTRFS_FREE_SPACE_TREE_OBJECTID);
1156 if (IS_ERR(free_space_root)) {
1157 ret = PTR_ERR(free_space_root);
1158 goto abort;
1159 }
1160 fs_info->free_space_root = free_space_root;
1161
1162 node = rb_first(&fs_info->block_group_cache_tree);
1163 while (node) {
David Sterba32da53862019-10-29 19:20:18 +01001164 block_group = rb_entry(node, struct btrfs_block_group,
Omar Sandovala5ed9182015-09-29 20:50:35 -07001165 cache_node);
Nikolay Borisovffa9a9e2018-05-10 15:44:56 +03001166 ret = populate_free_space_tree(trans, block_group);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001167 if (ret)
1168 goto abort;
1169 node = rb_next(node);
1170 }
1171
1172 btrfs_set_fs_compat_ro(fs_info, FREE_SPACE_TREE);
Omar Sandoval6675df32016-09-22 17:24:22 -07001173 btrfs_set_fs_compat_ro(fs_info, FREE_SPACE_TREE_VALID);
Josef Bacikafcdd122016-09-02 15:40:02 -04001174 clear_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &fs_info->flags);
Josef Bacik2f96e402021-01-15 16:26:17 -05001175 ret = btrfs_commit_transaction(trans);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001176
Josef Bacik2f96e402021-01-15 16:26:17 -05001177 /*
1178 * Now that we've committed the transaction any reading of our commit
1179 * root will be safe, so we can cache from the free space tree now.
1180 */
1181 clear_bit(BTRFS_FS_FREE_SPACE_TREE_UNTRUSTED, &fs_info->flags);
1182 return ret;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001183
1184abort:
Josef Bacikafcdd122016-09-02 15:40:02 -04001185 clear_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &fs_info->flags);
Josef Bacik2f96e402021-01-15 16:26:17 -05001186 clear_bit(BTRFS_FS_FREE_SPACE_TREE_UNTRUSTED, &fs_info->flags);
Jeff Mahoney66642832016-06-10 18:19:25 -04001187 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001188 btrfs_end_transaction(trans);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001189 return ret;
1190}
1191
1192static int clear_free_space_tree(struct btrfs_trans_handle *trans,
1193 struct btrfs_root *root)
1194{
1195 struct btrfs_path *path;
1196 struct btrfs_key key;
1197 int nr;
1198 int ret;
1199
1200 path = btrfs_alloc_path();
1201 if (!path)
1202 return -ENOMEM;
1203
Omar Sandovala5ed9182015-09-29 20:50:35 -07001204 key.objectid = 0;
1205 key.type = 0;
1206 key.offset = 0;
1207
1208 while (1) {
1209 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1210 if (ret < 0)
1211 goto out;
1212
1213 nr = btrfs_header_nritems(path->nodes[0]);
1214 if (!nr)
1215 break;
1216
1217 path->slots[0] = 0;
1218 ret = btrfs_del_items(trans, root, path, 0, nr);
1219 if (ret)
1220 goto out;
1221
1222 btrfs_release_path(path);
1223 }
1224
1225 ret = 0;
1226out:
1227 btrfs_free_path(path);
1228 return ret;
1229}
1230
1231int btrfs_clear_free_space_tree(struct btrfs_fs_info *fs_info)
1232{
1233 struct btrfs_trans_handle *trans;
1234 struct btrfs_root *tree_root = fs_info->tree_root;
1235 struct btrfs_root *free_space_root = fs_info->free_space_root;
1236 int ret;
1237
1238 trans = btrfs_start_transaction(tree_root, 0);
1239 if (IS_ERR(trans))
1240 return PTR_ERR(trans);
1241
1242 btrfs_clear_fs_compat_ro(fs_info, FREE_SPACE_TREE);
Omar Sandoval6675df32016-09-22 17:24:22 -07001243 btrfs_clear_fs_compat_ro(fs_info, FREE_SPACE_TREE_VALID);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001244 fs_info->free_space_root = NULL;
1245
1246 ret = clear_free_space_tree(trans, free_space_root);
1247 if (ret)
1248 goto abort;
1249
Lu Fengqiab9ce7d2018-08-01 11:32:27 +08001250 ret = btrfs_del_root(trans, &free_space_root->root_key);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001251 if (ret)
1252 goto abort;
1253
1254 list_del(&free_space_root->dirty_list);
1255
1256 btrfs_tree_lock(free_space_root->node);
David Sterba6a884d7d2019-03-20 14:30:02 +01001257 btrfs_clean_tree_block(free_space_root->node);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001258 btrfs_tree_unlock(free_space_root->node);
1259 btrfs_free_tree_block(trans, free_space_root, free_space_root->node,
1260 0, 1);
1261
Josef Bacik00246522020-01-24 09:33:01 -05001262 btrfs_put_root(free_space_root);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001263
Sahil Kang0bef7102017-05-17 03:33:45 -07001264 return btrfs_commit_transaction(trans);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001265
1266abort:
Jeff Mahoney66642832016-06-10 18:19:25 -04001267 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001268 btrfs_end_transaction(trans);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001269 return ret;
1270}
1271
1272static int __add_block_group_free_space(struct btrfs_trans_handle *trans,
David Sterba32da53862019-10-29 19:20:18 +01001273 struct btrfs_block_group *block_group,
Omar Sandovala5ed9182015-09-29 20:50:35 -07001274 struct btrfs_path *path)
1275{
Omar Sandovala5ed9182015-09-29 20:50:35 -07001276 int ret;
1277
Omar Sandovala5ed9182015-09-29 20:50:35 -07001278 block_group->needs_free_space = 0;
1279
Nikolay Borisov66afee12018-05-10 15:44:44 +03001280 ret = add_new_free_space_info(trans, block_group, path);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001281 if (ret)
1282 return ret;
1283
Nikolay Borisov2d5cffa2018-05-10 15:44:43 +03001284 return __add_to_free_space_tree(trans, block_group, path,
David Sterbab3470b52019-10-23 18:48:22 +02001285 block_group->start,
1286 block_group->length);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001287}
1288
1289int add_block_group_free_space(struct btrfs_trans_handle *trans,
David Sterba32da53862019-10-29 19:20:18 +01001290 struct btrfs_block_group *block_group)
Omar Sandovala5ed9182015-09-29 20:50:35 -07001291{
Nikolay Borisove4e07112018-05-10 15:44:41 +03001292 struct btrfs_fs_info *fs_info = trans->fs_info;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001293 struct btrfs_path *path = NULL;
1294 int ret = 0;
1295
1296 if (!btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE))
1297 return 0;
1298
1299 mutex_lock(&block_group->free_space_lock);
1300 if (!block_group->needs_free_space)
1301 goto out;
1302
1303 path = btrfs_alloc_path();
1304 if (!path) {
1305 ret = -ENOMEM;
1306 goto out;
1307 }
1308
Nikolay Borisov9a7e0f92018-05-10 15:44:42 +03001309 ret = __add_block_group_free_space(trans, block_group, path);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001310
1311out:
1312 btrfs_free_path(path);
1313 mutex_unlock(&block_group->free_space_lock);
1314 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04001315 btrfs_abort_transaction(trans, ret);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001316 return ret;
1317}
1318
1319int remove_block_group_free_space(struct btrfs_trans_handle *trans,
David Sterba32da53862019-10-29 19:20:18 +01001320 struct btrfs_block_group *block_group)
Omar Sandovala5ed9182015-09-29 20:50:35 -07001321{
Nikolay Borisovf3f72772018-05-10 15:44:46 +03001322 struct btrfs_root *root = trans->fs_info->free_space_root;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001323 struct btrfs_path *path;
1324 struct btrfs_key key, found_key;
1325 struct extent_buffer *leaf;
1326 u64 start, end;
1327 int done = 0, nr;
1328 int ret;
1329
Nikolay Borisovf3f72772018-05-10 15:44:46 +03001330 if (!btrfs_fs_compat_ro(trans->fs_info, FREE_SPACE_TREE))
Omar Sandovala5ed9182015-09-29 20:50:35 -07001331 return 0;
1332
1333 if (block_group->needs_free_space) {
1334 /* We never added this block group to the free space tree. */
1335 return 0;
1336 }
1337
1338 path = btrfs_alloc_path();
1339 if (!path) {
1340 ret = -ENOMEM;
1341 goto out;
1342 }
1343
David Sterbab3470b52019-10-23 18:48:22 +02001344 start = block_group->start;
1345 end = block_group->start + block_group->length;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001346
1347 key.objectid = end - 1;
1348 key.type = (u8)-1;
1349 key.offset = (u64)-1;
1350
1351 while (!done) {
1352 ret = btrfs_search_prev_slot(trans, root, &key, path, -1, 1);
1353 if (ret)
1354 goto out;
1355
1356 leaf = path->nodes[0];
1357 nr = 0;
1358 path->slots[0]++;
1359 while (path->slots[0] > 0) {
1360 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0] - 1);
1361
1362 if (found_key.type == BTRFS_FREE_SPACE_INFO_KEY) {
David Sterbab3470b52019-10-23 18:48:22 +02001363 ASSERT(found_key.objectid == block_group->start);
1364 ASSERT(found_key.offset == block_group->length);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001365 done = 1;
1366 nr++;
1367 path->slots[0]--;
1368 break;
1369 } else if (found_key.type == BTRFS_FREE_SPACE_EXTENT_KEY ||
1370 found_key.type == BTRFS_FREE_SPACE_BITMAP_KEY) {
1371 ASSERT(found_key.objectid >= start);
1372 ASSERT(found_key.objectid < end);
1373 ASSERT(found_key.objectid + found_key.offset <= end);
1374 nr++;
1375 path->slots[0]--;
1376 } else {
1377 ASSERT(0);
1378 }
1379 }
1380
1381 ret = btrfs_del_items(trans, root, path, path->slots[0], nr);
1382 if (ret)
1383 goto out;
1384 btrfs_release_path(path);
1385 }
1386
1387 ret = 0;
1388out:
1389 btrfs_free_path(path);
1390 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04001391 btrfs_abort_transaction(trans, ret);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001392 return ret;
1393}
1394
1395static int load_free_space_bitmaps(struct btrfs_caching_control *caching_ctl,
1396 struct btrfs_path *path,
1397 u32 expected_extent_count)
1398{
David Sterba32da53862019-10-29 19:20:18 +01001399 struct btrfs_block_group *block_group;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001400 struct btrfs_fs_info *fs_info;
1401 struct btrfs_root *root;
1402 struct btrfs_key key;
1403 int prev_bit = 0, bit;
1404 /* Initialize to silence GCC. */
1405 u64 extent_start = 0;
1406 u64 end, offset;
1407 u64 total_found = 0;
1408 u32 extent_count = 0;
1409 int ret;
1410
1411 block_group = caching_ctl->block_group;
1412 fs_info = block_group->fs_info;
1413 root = fs_info->free_space_root;
1414
David Sterbab3470b52019-10-23 18:48:22 +02001415 end = block_group->start + block_group->length;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001416
1417 while (1) {
1418 ret = btrfs_next_item(root, path);
1419 if (ret < 0)
1420 goto out;
1421 if (ret)
1422 break;
1423
1424 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1425
1426 if (key.type == BTRFS_FREE_SPACE_INFO_KEY)
1427 break;
1428
1429 ASSERT(key.type == BTRFS_FREE_SPACE_BITMAP_KEY);
1430 ASSERT(key.objectid < end && key.objectid + key.offset <= end);
1431
1432 caching_ctl->progress = key.objectid;
1433
1434 offset = key.objectid;
1435 while (offset < key.objectid + key.offset) {
1436 bit = free_space_test_bit(block_group, path, offset);
1437 if (prev_bit == 0 && bit == 1) {
1438 extent_start = offset;
1439 } else if (prev_bit == 1 && bit == 0) {
1440 total_found += add_new_free_space(block_group,
Omar Sandovala5ed9182015-09-29 20:50:35 -07001441 extent_start,
1442 offset);
1443 if (total_found > CACHING_CTL_WAKE_UP) {
1444 total_found = 0;
1445 wake_up(&caching_ctl->wait);
1446 }
1447 extent_count++;
1448 }
1449 prev_bit = bit;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001450 offset += fs_info->sectorsize;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001451 }
1452 }
1453 if (prev_bit == 1) {
Nikolay Borisov4457c1c2018-05-10 15:44:45 +03001454 total_found += add_new_free_space(block_group, extent_start,
1455 end);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001456 extent_count++;
1457 }
1458
1459 if (extent_count != expected_extent_count) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04001460 btrfs_err(fs_info,
1461 "incorrect extent count for %llu; counted %u, expected %u",
David Sterbab3470b52019-10-23 18:48:22 +02001462 block_group->start, extent_count,
Omar Sandovala5ed9182015-09-29 20:50:35 -07001463 expected_extent_count);
1464 ASSERT(0);
1465 ret = -EIO;
1466 goto out;
1467 }
1468
1469 caching_ctl->progress = (u64)-1;
1470
1471 ret = 0;
1472out:
1473 return ret;
1474}
1475
1476static int load_free_space_extents(struct btrfs_caching_control *caching_ctl,
1477 struct btrfs_path *path,
1478 u32 expected_extent_count)
1479{
David Sterba32da53862019-10-29 19:20:18 +01001480 struct btrfs_block_group *block_group;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001481 struct btrfs_fs_info *fs_info;
1482 struct btrfs_root *root;
1483 struct btrfs_key key;
1484 u64 end;
1485 u64 total_found = 0;
1486 u32 extent_count = 0;
1487 int ret;
1488
1489 block_group = caching_ctl->block_group;
1490 fs_info = block_group->fs_info;
1491 root = fs_info->free_space_root;
1492
David Sterbab3470b52019-10-23 18:48:22 +02001493 end = block_group->start + block_group->length;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001494
1495 while (1) {
1496 ret = btrfs_next_item(root, path);
1497 if (ret < 0)
1498 goto out;
1499 if (ret)
1500 break;
1501
1502 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1503
1504 if (key.type == BTRFS_FREE_SPACE_INFO_KEY)
1505 break;
1506
1507 ASSERT(key.type == BTRFS_FREE_SPACE_EXTENT_KEY);
1508 ASSERT(key.objectid < end && key.objectid + key.offset <= end);
1509
1510 caching_ctl->progress = key.objectid;
1511
Nikolay Borisov4457c1c2018-05-10 15:44:45 +03001512 total_found += add_new_free_space(block_group, key.objectid,
Omar Sandovala5ed9182015-09-29 20:50:35 -07001513 key.objectid + key.offset);
1514 if (total_found > CACHING_CTL_WAKE_UP) {
1515 total_found = 0;
1516 wake_up(&caching_ctl->wait);
1517 }
1518 extent_count++;
1519 }
1520
1521 if (extent_count != expected_extent_count) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04001522 btrfs_err(fs_info,
1523 "incorrect extent count for %llu; counted %u, expected %u",
David Sterbab3470b52019-10-23 18:48:22 +02001524 block_group->start, extent_count,
Omar Sandovala5ed9182015-09-29 20:50:35 -07001525 expected_extent_count);
1526 ASSERT(0);
1527 ret = -EIO;
1528 goto out;
1529 }
1530
1531 caching_ctl->progress = (u64)-1;
1532
1533 ret = 0;
1534out:
1535 return ret;
1536}
1537
1538int load_free_space_tree(struct btrfs_caching_control *caching_ctl)
1539{
David Sterba32da53862019-10-29 19:20:18 +01001540 struct btrfs_block_group *block_group;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001541 struct btrfs_free_space_info *info;
1542 struct btrfs_path *path;
1543 u32 extent_count, flags;
1544 int ret;
1545
1546 block_group = caching_ctl->block_group;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001547
1548 path = btrfs_alloc_path();
1549 if (!path)
1550 return -ENOMEM;
1551
1552 /*
1553 * Just like caching_thread() doesn't want to deadlock on the extent
1554 * tree, we don't want to deadlock on the free space tree.
1555 */
1556 path->skip_locking = 1;
1557 path->search_commit_root = 1;
Gu JinXiang7ce311d2018-01-11 16:12:18 +08001558 path->reada = READA_FORWARD;
Omar Sandovala5ed9182015-09-29 20:50:35 -07001559
David Sterba2ccf5452019-03-20 14:11:21 +01001560 info = search_free_space_info(NULL, block_group, path, 0);
Omar Sandovala5ed9182015-09-29 20:50:35 -07001561 if (IS_ERR(info)) {
1562 ret = PTR_ERR(info);
1563 goto out;
1564 }
1565 extent_count = btrfs_free_space_extent_count(path->nodes[0], info);
1566 flags = btrfs_free_space_flags(path->nodes[0], info);
1567
1568 /*
1569 * We left path pointing to the free space info item, so now
1570 * load_free_space_foo can just iterate through the free space tree from
1571 * there.
1572 */
1573 if (flags & BTRFS_FREE_SPACE_USING_BITMAPS)
1574 ret = load_free_space_bitmaps(caching_ctl, path, extent_count);
1575 else
1576 ret = load_free_space_extents(caching_ctl, path, extent_count);
1577
1578out:
1579 btrfs_free_path(path);
1580 return ret;
1581}