]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/btrfs/extent-tree.c
btrfs: make block group flags in balance printks human-readable
[mirror_ubuntu-artful-kernel.git] / fs / btrfs / extent-tree.c
CommitLineData
6cbd5570
CM
1/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
ec6b910f 18#include <linux/sched.h>
edbd8d4e 19#include <linux/pagemap.h>
ec44a35c 20#include <linux/writeback.h>
21af804c 21#include <linux/blkdev.h>
b7a9f29f 22#include <linux/sort.h>
4184ea7f 23#include <linux/rcupdate.h>
817d52f8 24#include <linux/kthread.h>
5a0e3ad6 25#include <linux/slab.h>
dff51cd1 26#include <linux/ratelimit.h>
b150a4f1 27#include <linux/percpu_counter.h>
74493f7a 28#include "hash.h"
995946dd 29#include "tree-log.h"
fec577fb
CM
30#include "disk-io.h"
31#include "print-tree.h"
0b86a832 32#include "volumes.h"
53b381b3 33#include "raid56.h"
925baedd 34#include "locking.h"
fa9c0d79 35#include "free-space-cache.h"
1e144fb8 36#include "free-space-tree.h"
3fed40cc 37#include "math.h"
6ab0a202 38#include "sysfs.h"
fcebe456 39#include "qgroup.h"
fec577fb 40
709c0486
AJ
41#undef SCRAMBLE_DELAYED_REFS
42
9e622d6b
MX
43/*
44 * control flags for do_chunk_alloc's force field
0e4f8f88
CM
45 * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk
46 * if we really need one.
47 *
0e4f8f88
CM
48 * CHUNK_ALLOC_LIMITED means to only try and allocate one
49 * if we have very few chunks already allocated. This is
50 * used as part of the clustering code to help make sure
51 * we have a good pool of storage to cluster in, without
52 * filling the FS with empty chunks
53 *
9e622d6b
MX
54 * CHUNK_ALLOC_FORCE means it must try to allocate one
55 *
0e4f8f88
CM
56 */
57enum {
58 CHUNK_ALLOC_NO_FORCE = 0,
9e622d6b
MX
59 CHUNK_ALLOC_LIMITED = 1,
60 CHUNK_ALLOC_FORCE = 2,
0e4f8f88
CM
61};
62
ce93ec54
JB
63static int update_block_group(struct btrfs_trans_handle *trans,
64 struct btrfs_root *root, u64 bytenr,
65 u64 num_bytes, int alloc);
5d4f98a2
YZ
66static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
67 struct btrfs_root *root,
c682f9b3 68 struct btrfs_delayed_ref_node *node, u64 parent,
5d4f98a2
YZ
69 u64 root_objectid, u64 owner_objectid,
70 u64 owner_offset, int refs_to_drop,
c682f9b3 71 struct btrfs_delayed_extent_op *extra_op);
5d4f98a2
YZ
72static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
73 struct extent_buffer *leaf,
74 struct btrfs_extent_item *ei);
75static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
76 struct btrfs_root *root,
77 u64 parent, u64 root_objectid,
78 u64 flags, u64 owner, u64 offset,
79 struct btrfs_key *ins, int ref_mod);
80static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
81 struct btrfs_root *root,
82 u64 parent, u64 root_objectid,
83 u64 flags, struct btrfs_disk_key *key,
b06c4bf5 84 int level, struct btrfs_key *ins);
6a63209f 85static int do_chunk_alloc(struct btrfs_trans_handle *trans,
698d0082
JB
86 struct btrfs_root *extent_root, u64 flags,
87 int force);
11833d66
YZ
88static int find_next_key(struct btrfs_path *path, int level,
89 struct btrfs_key *key);
ab8d0fc4
JM
90static void dump_space_info(struct btrfs_fs_info *fs_info,
91 struct btrfs_space_info *info, u64 bytes,
9ed74f2d 92 int dump_block_groups);
4824f1f4 93static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache,
18513091 94 u64 ram_bytes, u64 num_bytes, int delalloc);
4824f1f4
WX
95static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
96 u64 num_bytes, int delalloc);
5d80366e
JB
97static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
98 u64 num_bytes);
48a3b636
ES
99int btrfs_pin_extent(struct btrfs_root *root,
100 u64 bytenr, u64 num_bytes, int reserved);
957780eb
JB
101static int __reserve_metadata_bytes(struct btrfs_root *root,
102 struct btrfs_space_info *space_info,
103 u64 orig_bytes,
104 enum btrfs_reserve_flush_enum flush);
105static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
106 struct btrfs_space_info *space_info,
107 u64 num_bytes);
108static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
109 struct btrfs_space_info *space_info,
110 u64 num_bytes);
6a63209f 111
817d52f8
JB
112static noinline int
113block_group_cache_done(struct btrfs_block_group_cache *cache)
114{
115 smp_mb();
36cce922
JB
116 return cache->cached == BTRFS_CACHE_FINISHED ||
117 cache->cached == BTRFS_CACHE_ERROR;
817d52f8
JB
118}
119
0f9dd46c
JB
120static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
121{
122 return (cache->flags & bits) == bits;
123}
124
758f2dfc 125void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
11dfe35a
JB
126{
127 atomic_inc(&cache->count);
128}
129
130void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
131{
f0486c68
YZ
132 if (atomic_dec_and_test(&cache->count)) {
133 WARN_ON(cache->pinned > 0);
134 WARN_ON(cache->reserved > 0);
34d52cb6 135 kfree(cache->free_space_ctl);
11dfe35a 136 kfree(cache);
f0486c68 137 }
11dfe35a
JB
138}
139
0f9dd46c
JB
140/*
141 * this adds the block group to the fs_info rb tree for the block group
142 * cache
143 */
b2950863 144static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
0f9dd46c
JB
145 struct btrfs_block_group_cache *block_group)
146{
147 struct rb_node **p;
148 struct rb_node *parent = NULL;
149 struct btrfs_block_group_cache *cache;
150
151 spin_lock(&info->block_group_cache_lock);
152 p = &info->block_group_cache_tree.rb_node;
153
154 while (*p) {
155 parent = *p;
156 cache = rb_entry(parent, struct btrfs_block_group_cache,
157 cache_node);
158 if (block_group->key.objectid < cache->key.objectid) {
159 p = &(*p)->rb_left;
160 } else if (block_group->key.objectid > cache->key.objectid) {
161 p = &(*p)->rb_right;
162 } else {
163 spin_unlock(&info->block_group_cache_lock);
164 return -EEXIST;
165 }
166 }
167
168 rb_link_node(&block_group->cache_node, parent, p);
169 rb_insert_color(&block_group->cache_node,
170 &info->block_group_cache_tree);
a1897fdd
LB
171
172 if (info->first_logical_byte > block_group->key.objectid)
173 info->first_logical_byte = block_group->key.objectid;
174
0f9dd46c
JB
175 spin_unlock(&info->block_group_cache_lock);
176
177 return 0;
178}
179
180/*
181 * This will return the block group at or after bytenr if contains is 0, else
182 * it will return the block group that contains the bytenr
183 */
184static struct btrfs_block_group_cache *
185block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
186 int contains)
187{
188 struct btrfs_block_group_cache *cache, *ret = NULL;
189 struct rb_node *n;
190 u64 end, start;
191
192 spin_lock(&info->block_group_cache_lock);
193 n = info->block_group_cache_tree.rb_node;
194
195 while (n) {
196 cache = rb_entry(n, struct btrfs_block_group_cache,
197 cache_node);
198 end = cache->key.objectid + cache->key.offset - 1;
199 start = cache->key.objectid;
200
201 if (bytenr < start) {
202 if (!contains && (!ret || start < ret->key.objectid))
203 ret = cache;
204 n = n->rb_left;
205 } else if (bytenr > start) {
206 if (contains && bytenr <= end) {
207 ret = cache;
208 break;
209 }
210 n = n->rb_right;
211 } else {
212 ret = cache;
213 break;
214 }
215 }
a1897fdd 216 if (ret) {
11dfe35a 217 btrfs_get_block_group(ret);
a1897fdd
LB
218 if (bytenr == 0 && info->first_logical_byte > ret->key.objectid)
219 info->first_logical_byte = ret->key.objectid;
220 }
0f9dd46c
JB
221 spin_unlock(&info->block_group_cache_lock);
222
223 return ret;
224}
225
11833d66
YZ
226static int add_excluded_extent(struct btrfs_root *root,
227 u64 start, u64 num_bytes)
817d52f8 228{
11833d66
YZ
229 u64 end = start + num_bytes - 1;
230 set_extent_bits(&root->fs_info->freed_extents[0],
ceeb0ae7 231 start, end, EXTENT_UPTODATE);
11833d66 232 set_extent_bits(&root->fs_info->freed_extents[1],
ceeb0ae7 233 start, end, EXTENT_UPTODATE);
11833d66
YZ
234 return 0;
235}
817d52f8 236
11833d66
YZ
237static void free_excluded_extents(struct btrfs_root *root,
238 struct btrfs_block_group_cache *cache)
239{
240 u64 start, end;
817d52f8 241
11833d66
YZ
242 start = cache->key.objectid;
243 end = start + cache->key.offset - 1;
244
245 clear_extent_bits(&root->fs_info->freed_extents[0],
91166212 246 start, end, EXTENT_UPTODATE);
11833d66 247 clear_extent_bits(&root->fs_info->freed_extents[1],
91166212 248 start, end, EXTENT_UPTODATE);
817d52f8
JB
249}
250
11833d66
YZ
251static int exclude_super_stripes(struct btrfs_root *root,
252 struct btrfs_block_group_cache *cache)
817d52f8 253{
817d52f8
JB
254 u64 bytenr;
255 u64 *logical;
256 int stripe_len;
257 int i, nr, ret;
258
06b2331f
YZ
259 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
260 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
261 cache->bytes_super += stripe_len;
262 ret = add_excluded_extent(root, cache->key.objectid,
263 stripe_len);
835d974f
JB
264 if (ret)
265 return ret;
06b2331f
YZ
266 }
267
817d52f8
JB
268 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
269 bytenr = btrfs_sb_offset(i);
ab8d0fc4
JM
270 ret = btrfs_rmap_block(root->fs_info, cache->key.objectid,
271 bytenr, 0, &logical, &nr, &stripe_len);
835d974f
JB
272 if (ret)
273 return ret;
11833d66 274
817d52f8 275 while (nr--) {
51bf5f0b
JB
276 u64 start, len;
277
278 if (logical[nr] > cache->key.objectid +
279 cache->key.offset)
280 continue;
281
282 if (logical[nr] + stripe_len <= cache->key.objectid)
283 continue;
284
285 start = logical[nr];
286 if (start < cache->key.objectid) {
287 start = cache->key.objectid;
288 len = (logical[nr] + stripe_len) - start;
289 } else {
290 len = min_t(u64, stripe_len,
291 cache->key.objectid +
292 cache->key.offset - start);
293 }
294
295 cache->bytes_super += len;
296 ret = add_excluded_extent(root, start, len);
835d974f
JB
297 if (ret) {
298 kfree(logical);
299 return ret;
300 }
817d52f8 301 }
11833d66 302
817d52f8
JB
303 kfree(logical);
304 }
817d52f8
JB
305 return 0;
306}
307
11833d66
YZ
308static struct btrfs_caching_control *
309get_caching_control(struct btrfs_block_group_cache *cache)
310{
311 struct btrfs_caching_control *ctl;
312
313 spin_lock(&cache->lock);
dde5abee
JB
314 if (!cache->caching_ctl) {
315 spin_unlock(&cache->lock);
11833d66
YZ
316 return NULL;
317 }
318
319 ctl = cache->caching_ctl;
320 atomic_inc(&ctl->count);
321 spin_unlock(&cache->lock);
322 return ctl;
323}
324
325static void put_caching_control(struct btrfs_caching_control *ctl)
326{
327 if (atomic_dec_and_test(&ctl->count))
328 kfree(ctl);
329}
330
d0bd4560
JB
331#ifdef CONFIG_BTRFS_DEBUG
332static void fragment_free_space(struct btrfs_root *root,
333 struct btrfs_block_group_cache *block_group)
334{
335 u64 start = block_group->key.objectid;
336 u64 len = block_group->key.offset;
337 u64 chunk = block_group->flags & BTRFS_BLOCK_GROUP_METADATA ?
338 root->nodesize : root->sectorsize;
339 u64 step = chunk << 1;
340
341 while (len > chunk) {
342 btrfs_remove_free_space(block_group, start, chunk);
343 start += step;
344 if (len < step)
345 len = 0;
346 else
347 len -= step;
348 }
349}
350#endif
351
0f9dd46c
JB
352/*
353 * this is only called by cache_block_group, since we could have freed extents
354 * we need to check the pinned_extents for any extents that can't be used yet
355 * since their free space will be released as soon as the transaction commits.
356 */
a5ed9182
OS
357u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
358 struct btrfs_fs_info *info, u64 start, u64 end)
0f9dd46c 359{
817d52f8 360 u64 extent_start, extent_end, size, total_added = 0;
0f9dd46c
JB
361 int ret;
362
363 while (start < end) {
11833d66 364 ret = find_first_extent_bit(info->pinned_extents, start,
0f9dd46c 365 &extent_start, &extent_end,
e6138876
JB
366 EXTENT_DIRTY | EXTENT_UPTODATE,
367 NULL);
0f9dd46c
JB
368 if (ret)
369 break;
370
06b2331f 371 if (extent_start <= start) {
0f9dd46c
JB
372 start = extent_end + 1;
373 } else if (extent_start > start && extent_start < end) {
374 size = extent_start - start;
817d52f8 375 total_added += size;
ea6a478e
JB
376 ret = btrfs_add_free_space(block_group, start,
377 size);
79787eaa 378 BUG_ON(ret); /* -ENOMEM or logic error */
0f9dd46c
JB
379 start = extent_end + 1;
380 } else {
381 break;
382 }
383 }
384
385 if (start < end) {
386 size = end - start;
817d52f8 387 total_added += size;
ea6a478e 388 ret = btrfs_add_free_space(block_group, start, size);
79787eaa 389 BUG_ON(ret); /* -ENOMEM or logic error */
0f9dd46c
JB
390 }
391
817d52f8 392 return total_added;
0f9dd46c
JB
393}
394
73fa48b6 395static int load_extent_tree_free(struct btrfs_caching_control *caching_ctl)
e37c9e69 396{
bab39bf9
JB
397 struct btrfs_block_group_cache *block_group;
398 struct btrfs_fs_info *fs_info;
bab39bf9 399 struct btrfs_root *extent_root;
e37c9e69 400 struct btrfs_path *path;
5f39d397 401 struct extent_buffer *leaf;
11833d66 402 struct btrfs_key key;
817d52f8 403 u64 total_found = 0;
11833d66
YZ
404 u64 last = 0;
405 u32 nritems;
73fa48b6 406 int ret;
d0bd4560 407 bool wakeup = true;
f510cfec 408
bab39bf9
JB
409 block_group = caching_ctl->block_group;
410 fs_info = block_group->fs_info;
411 extent_root = fs_info->extent_root;
412
e37c9e69
CM
413 path = btrfs_alloc_path();
414 if (!path)
73fa48b6 415 return -ENOMEM;
7d7d6068 416
817d52f8 417 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
11833d66 418
d0bd4560
JB
419#ifdef CONFIG_BTRFS_DEBUG
420 /*
421 * If we're fragmenting we don't want to make anybody think we can
422 * allocate from this block group until we've had a chance to fragment
423 * the free space.
424 */
425 if (btrfs_should_fragment_free_space(extent_root, block_group))
426 wakeup = false;
427#endif
5cd57b2c 428 /*
817d52f8
JB
429 * We don't want to deadlock with somebody trying to allocate a new
430 * extent for the extent root while also trying to search the extent
431 * root to add free space. So we skip locking and search the commit
432 * root, since its read-only
5cd57b2c
CM
433 */
434 path->skip_locking = 1;
817d52f8 435 path->search_commit_root = 1;
e4058b54 436 path->reada = READA_FORWARD;
817d52f8 437
e4404d6e 438 key.objectid = last;
e37c9e69 439 key.offset = 0;
11833d66 440 key.type = BTRFS_EXTENT_ITEM_KEY;
013f1b12 441
52ee28d2 442next:
11833d66 443 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
e37c9e69 444 if (ret < 0)
73fa48b6 445 goto out;
a512bbf8 446
11833d66
YZ
447 leaf = path->nodes[0];
448 nritems = btrfs_header_nritems(leaf);
449
d397712b 450 while (1) {
7841cb28 451 if (btrfs_fs_closing(fs_info) > 1) {
f25784b3 452 last = (u64)-1;
817d52f8 453 break;
f25784b3 454 }
817d52f8 455
11833d66
YZ
456 if (path->slots[0] < nritems) {
457 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
458 } else {
459 ret = find_next_key(path, 0, &key);
460 if (ret)
e37c9e69 461 break;
817d52f8 462
c9ea7b24 463 if (need_resched() ||
9e351cc8 464 rwsem_is_contended(&fs_info->commit_root_sem)) {
d0bd4560
JB
465 if (wakeup)
466 caching_ctl->progress = last;
ff5714cc 467 btrfs_release_path(path);
9e351cc8 468 up_read(&fs_info->commit_root_sem);
589d8ade 469 mutex_unlock(&caching_ctl->mutex);
11833d66 470 cond_resched();
73fa48b6
OS
471 mutex_lock(&caching_ctl->mutex);
472 down_read(&fs_info->commit_root_sem);
473 goto next;
589d8ade 474 }
0a3896d0
JB
475
476 ret = btrfs_next_leaf(extent_root, path);
477 if (ret < 0)
73fa48b6 478 goto out;
0a3896d0
JB
479 if (ret)
480 break;
589d8ade
JB
481 leaf = path->nodes[0];
482 nritems = btrfs_header_nritems(leaf);
483 continue;
11833d66 484 }
817d52f8 485
52ee28d2
LB
486 if (key.objectid < last) {
487 key.objectid = last;
488 key.offset = 0;
489 key.type = BTRFS_EXTENT_ITEM_KEY;
490
d0bd4560
JB
491 if (wakeup)
492 caching_ctl->progress = last;
52ee28d2
LB
493 btrfs_release_path(path);
494 goto next;
495 }
496
11833d66
YZ
497 if (key.objectid < block_group->key.objectid) {
498 path->slots[0]++;
817d52f8 499 continue;
e37c9e69 500 }
0f9dd46c 501
e37c9e69 502 if (key.objectid >= block_group->key.objectid +
0f9dd46c 503 block_group->key.offset)
e37c9e69 504 break;
7d7d6068 505
3173a18f
JB
506 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
507 key.type == BTRFS_METADATA_ITEM_KEY) {
817d52f8
JB
508 total_found += add_new_free_space(block_group,
509 fs_info, last,
510 key.objectid);
3173a18f
JB
511 if (key.type == BTRFS_METADATA_ITEM_KEY)
512 last = key.objectid +
707e8a07 513 fs_info->tree_root->nodesize;
3173a18f
JB
514 else
515 last = key.objectid + key.offset;
817d52f8 516
73fa48b6 517 if (total_found > CACHING_CTL_WAKE_UP) {
11833d66 518 total_found = 0;
d0bd4560
JB
519 if (wakeup)
520 wake_up(&caching_ctl->wait);
11833d66 521 }
817d52f8 522 }
e37c9e69
CM
523 path->slots[0]++;
524 }
817d52f8 525 ret = 0;
e37c9e69 526
817d52f8
JB
527 total_found += add_new_free_space(block_group, fs_info, last,
528 block_group->key.objectid +
529 block_group->key.offset);
11833d66 530 caching_ctl->progress = (u64)-1;
817d52f8 531
73fa48b6
OS
532out:
533 btrfs_free_path(path);
534 return ret;
535}
536
537static noinline void caching_thread(struct btrfs_work *work)
538{
539 struct btrfs_block_group_cache *block_group;
540 struct btrfs_fs_info *fs_info;
541 struct btrfs_caching_control *caching_ctl;
b4570aa9 542 struct btrfs_root *extent_root;
73fa48b6
OS
543 int ret;
544
545 caching_ctl = container_of(work, struct btrfs_caching_control, work);
546 block_group = caching_ctl->block_group;
547 fs_info = block_group->fs_info;
b4570aa9 548 extent_root = fs_info->extent_root;
73fa48b6
OS
549
550 mutex_lock(&caching_ctl->mutex);
551 down_read(&fs_info->commit_root_sem);
552
1e144fb8
OS
553 if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE))
554 ret = load_free_space_tree(caching_ctl);
555 else
556 ret = load_extent_tree_free(caching_ctl);
73fa48b6 557
817d52f8 558 spin_lock(&block_group->lock);
11833d66 559 block_group->caching_ctl = NULL;
73fa48b6 560 block_group->cached = ret ? BTRFS_CACHE_ERROR : BTRFS_CACHE_FINISHED;
817d52f8 561 spin_unlock(&block_group->lock);
0f9dd46c 562
d0bd4560
JB
563#ifdef CONFIG_BTRFS_DEBUG
564 if (btrfs_should_fragment_free_space(extent_root, block_group)) {
565 u64 bytes_used;
566
567 spin_lock(&block_group->space_info->lock);
568 spin_lock(&block_group->lock);
569 bytes_used = block_group->key.offset -
570 btrfs_block_group_used(&block_group->item);
571 block_group->space_info->bytes_used += bytes_used >> 1;
572 spin_unlock(&block_group->lock);
573 spin_unlock(&block_group->space_info->lock);
574 fragment_free_space(extent_root, block_group);
575 }
576#endif
577
578 caching_ctl->progress = (u64)-1;
11833d66 579
9e351cc8 580 up_read(&fs_info->commit_root_sem);
73fa48b6 581 free_excluded_extents(fs_info->extent_root, block_group);
11833d66 582 mutex_unlock(&caching_ctl->mutex);
73fa48b6 583
11833d66
YZ
584 wake_up(&caching_ctl->wait);
585
586 put_caching_control(caching_ctl);
11dfe35a 587 btrfs_put_block_group(block_group);
817d52f8
JB
588}
589
9d66e233 590static int cache_block_group(struct btrfs_block_group_cache *cache,
9d66e233 591 int load_cache_only)
817d52f8 592{
291c7d2f 593 DEFINE_WAIT(wait);
11833d66
YZ
594 struct btrfs_fs_info *fs_info = cache->fs_info;
595 struct btrfs_caching_control *caching_ctl;
817d52f8
JB
596 int ret = 0;
597
291c7d2f 598 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
79787eaa
JM
599 if (!caching_ctl)
600 return -ENOMEM;
291c7d2f
JB
601
602 INIT_LIST_HEAD(&caching_ctl->list);
603 mutex_init(&caching_ctl->mutex);
604 init_waitqueue_head(&caching_ctl->wait);
605 caching_ctl->block_group = cache;
606 caching_ctl->progress = cache->key.objectid;
607 atomic_set(&caching_ctl->count, 1);
9e0af237
LB
608 btrfs_init_work(&caching_ctl->work, btrfs_cache_helper,
609 caching_thread, NULL, NULL);
291c7d2f
JB
610
611 spin_lock(&cache->lock);
612 /*
613 * This should be a rare occasion, but this could happen I think in the
614 * case where one thread starts to load the space cache info, and then
615 * some other thread starts a transaction commit which tries to do an
616 * allocation while the other thread is still loading the space cache
617 * info. The previous loop should have kept us from choosing this block
618 * group, but if we've moved to the state where we will wait on caching
619 * block groups we need to first check if we're doing a fast load here,
620 * so we can wait for it to finish, otherwise we could end up allocating
621 * from a block group who's cache gets evicted for one reason or
622 * another.
623 */
624 while (cache->cached == BTRFS_CACHE_FAST) {
625 struct btrfs_caching_control *ctl;
626
627 ctl = cache->caching_ctl;
628 atomic_inc(&ctl->count);
629 prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
630 spin_unlock(&cache->lock);
631
632 schedule();
633
634 finish_wait(&ctl->wait, &wait);
635 put_caching_control(ctl);
636 spin_lock(&cache->lock);
637 }
638
639 if (cache->cached != BTRFS_CACHE_NO) {
640 spin_unlock(&cache->lock);
641 kfree(caching_ctl);
11833d66 642 return 0;
291c7d2f
JB
643 }
644 WARN_ON(cache->caching_ctl);
645 cache->caching_ctl = caching_ctl;
646 cache->cached = BTRFS_CACHE_FAST;
647 spin_unlock(&cache->lock);
11833d66 648
d53ba474 649 if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) {
cb83b7b8 650 mutex_lock(&caching_ctl->mutex);
9d66e233
JB
651 ret = load_free_space_cache(fs_info, cache);
652
653 spin_lock(&cache->lock);
654 if (ret == 1) {
291c7d2f 655 cache->caching_ctl = NULL;
9d66e233
JB
656 cache->cached = BTRFS_CACHE_FINISHED;
657 cache->last_byte_to_unpin = (u64)-1;
cb83b7b8 658 caching_ctl->progress = (u64)-1;
9d66e233 659 } else {
291c7d2f
JB
660 if (load_cache_only) {
661 cache->caching_ctl = NULL;
662 cache->cached = BTRFS_CACHE_NO;
663 } else {
664 cache->cached = BTRFS_CACHE_STARTED;
4f69cb98 665 cache->has_caching_ctl = 1;
291c7d2f 666 }
9d66e233
JB
667 }
668 spin_unlock(&cache->lock);
d0bd4560
JB
669#ifdef CONFIG_BTRFS_DEBUG
670 if (ret == 1 &&
671 btrfs_should_fragment_free_space(fs_info->extent_root,
672 cache)) {
673 u64 bytes_used;
674
675 spin_lock(&cache->space_info->lock);
676 spin_lock(&cache->lock);
677 bytes_used = cache->key.offset -
678 btrfs_block_group_used(&cache->item);
679 cache->space_info->bytes_used += bytes_used >> 1;
680 spin_unlock(&cache->lock);
681 spin_unlock(&cache->space_info->lock);
682 fragment_free_space(fs_info->extent_root, cache);
683 }
684#endif
cb83b7b8
JB
685 mutex_unlock(&caching_ctl->mutex);
686
291c7d2f 687 wake_up(&caching_ctl->wait);
3c14874a 688 if (ret == 1) {
291c7d2f 689 put_caching_control(caching_ctl);
3c14874a 690 free_excluded_extents(fs_info->extent_root, cache);
9d66e233 691 return 0;
3c14874a 692 }
291c7d2f
JB
693 } else {
694 /*
1e144fb8
OS
695 * We're either using the free space tree or no caching at all.
696 * Set cached to the appropriate value and wakeup any waiters.
291c7d2f
JB
697 */
698 spin_lock(&cache->lock);
699 if (load_cache_only) {
700 cache->caching_ctl = NULL;
701 cache->cached = BTRFS_CACHE_NO;
702 } else {
703 cache->cached = BTRFS_CACHE_STARTED;
4f69cb98 704 cache->has_caching_ctl = 1;
291c7d2f
JB
705 }
706 spin_unlock(&cache->lock);
707 wake_up(&caching_ctl->wait);
9d66e233
JB
708 }
709
291c7d2f
JB
710 if (load_cache_only) {
711 put_caching_control(caching_ctl);
11833d66 712 return 0;
817d52f8 713 }
817d52f8 714
9e351cc8 715 down_write(&fs_info->commit_root_sem);
291c7d2f 716 atomic_inc(&caching_ctl->count);
11833d66 717 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
9e351cc8 718 up_write(&fs_info->commit_root_sem);
11833d66 719
11dfe35a 720 btrfs_get_block_group(cache);
11833d66 721
e66f0bb1 722 btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work);
817d52f8 723
ef8bbdfe 724 return ret;
e37c9e69
CM
725}
726
0f9dd46c
JB
727/*
728 * return the block group that starts at or after bytenr
729 */
d397712b
CM
730static struct btrfs_block_group_cache *
731btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
0ef3e66b 732{
e2c89907 733 return block_group_cache_tree_search(info, bytenr, 0);
0ef3e66b
CM
734}
735
0f9dd46c 736/*
9f55684c 737 * return the block group that contains the given bytenr
0f9dd46c 738 */
d397712b
CM
739struct btrfs_block_group_cache *btrfs_lookup_block_group(
740 struct btrfs_fs_info *info,
741 u64 bytenr)
be744175 742{
e2c89907 743 return block_group_cache_tree_search(info, bytenr, 1);
be744175 744}
0b86a832 745
0f9dd46c
JB
746static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
747 u64 flags)
6324fbf3 748{
0f9dd46c 749 struct list_head *head = &info->space_info;
0f9dd46c 750 struct btrfs_space_info *found;
4184ea7f 751
52ba6929 752 flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
b742bb82 753
4184ea7f
CM
754 rcu_read_lock();
755 list_for_each_entry_rcu(found, head, list) {
67377734 756 if (found->flags & flags) {
4184ea7f 757 rcu_read_unlock();
0f9dd46c 758 return found;
4184ea7f 759 }
0f9dd46c 760 }
4184ea7f 761 rcu_read_unlock();
0f9dd46c 762 return NULL;
6324fbf3
CM
763}
764
4184ea7f
CM
765/*
766 * after adding space to the filesystem, we need to clear the full flags
767 * on all the space infos.
768 */
769void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
770{
771 struct list_head *head = &info->space_info;
772 struct btrfs_space_info *found;
773
774 rcu_read_lock();
775 list_for_each_entry_rcu(found, head, list)
776 found->full = 0;
777 rcu_read_unlock();
778}
779
1a4ed8fd
FM
780/* simple helper to search for an existing data extent at a given offset */
781int btrfs_lookup_data_extent(struct btrfs_root *root, u64 start, u64 len)
e02119d5
CM
782{
783 int ret;
784 struct btrfs_key key;
31840ae1 785 struct btrfs_path *path;
e02119d5 786
31840ae1 787 path = btrfs_alloc_path();
d8926bb3
MF
788 if (!path)
789 return -ENOMEM;
790
e02119d5
CM
791 key.objectid = start;
792 key.offset = len;
3173a18f 793 key.type = BTRFS_EXTENT_ITEM_KEY;
e02119d5
CM
794 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
795 0, 0);
31840ae1 796 btrfs_free_path(path);
7bb86316
CM
797 return ret;
798}
799
a22285a6 800/*
3173a18f 801 * helper function to lookup reference count and flags of a tree block.
a22285a6
YZ
802 *
803 * the head node for delayed ref is used to store the sum of all the
804 * reference count modifications queued up in the rbtree. the head
805 * node may also store the extent flags to set. This way you can check
806 * to see what the reference count and extent flags would be if all of
807 * the delayed refs are not processed.
808 */
809int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
810 struct btrfs_root *root, u64 bytenr,
3173a18f 811 u64 offset, int metadata, u64 *refs, u64 *flags)
a22285a6
YZ
812{
813 struct btrfs_delayed_ref_head *head;
814 struct btrfs_delayed_ref_root *delayed_refs;
815 struct btrfs_path *path;
816 struct btrfs_extent_item *ei;
817 struct extent_buffer *leaf;
818 struct btrfs_key key;
819 u32 item_size;
820 u64 num_refs;
821 u64 extent_flags;
822 int ret;
823
3173a18f
JB
824 /*
825 * If we don't have skinny metadata, don't bother doing anything
826 * different
827 */
828 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) {
707e8a07 829 offset = root->nodesize;
3173a18f
JB
830 metadata = 0;
831 }
832
a22285a6
YZ
833 path = btrfs_alloc_path();
834 if (!path)
835 return -ENOMEM;
836
a22285a6
YZ
837 if (!trans) {
838 path->skip_locking = 1;
839 path->search_commit_root = 1;
840 }
639eefc8
FDBM
841
842search_again:
843 key.objectid = bytenr;
844 key.offset = offset;
845 if (metadata)
846 key.type = BTRFS_METADATA_ITEM_KEY;
847 else
848 key.type = BTRFS_EXTENT_ITEM_KEY;
849
a22285a6
YZ
850 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
851 &key, path, 0, 0);
852 if (ret < 0)
853 goto out_free;
854
3173a18f 855 if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
74be9510
FDBM
856 if (path->slots[0]) {
857 path->slots[0]--;
858 btrfs_item_key_to_cpu(path->nodes[0], &key,
859 path->slots[0]);
860 if (key.objectid == bytenr &&
861 key.type == BTRFS_EXTENT_ITEM_KEY &&
707e8a07 862 key.offset == root->nodesize)
74be9510
FDBM
863 ret = 0;
864 }
3173a18f
JB
865 }
866
a22285a6
YZ
867 if (ret == 0) {
868 leaf = path->nodes[0];
869 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
870 if (item_size >= sizeof(*ei)) {
871 ei = btrfs_item_ptr(leaf, path->slots[0],
872 struct btrfs_extent_item);
873 num_refs = btrfs_extent_refs(leaf, ei);
874 extent_flags = btrfs_extent_flags(leaf, ei);
875 } else {
876#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
877 struct btrfs_extent_item_v0 *ei0;
878 BUG_ON(item_size != sizeof(*ei0));
879 ei0 = btrfs_item_ptr(leaf, path->slots[0],
880 struct btrfs_extent_item_v0);
881 num_refs = btrfs_extent_refs_v0(leaf, ei0);
882 /* FIXME: this isn't correct for data */
883 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
884#else
885 BUG();
886#endif
887 }
888 BUG_ON(num_refs == 0);
889 } else {
890 num_refs = 0;
891 extent_flags = 0;
892 ret = 0;
893 }
894
895 if (!trans)
896 goto out;
897
898 delayed_refs = &trans->transaction->delayed_refs;
899 spin_lock(&delayed_refs->lock);
900 head = btrfs_find_delayed_ref_head(trans, bytenr);
901 if (head) {
902 if (!mutex_trylock(&head->mutex)) {
903 atomic_inc(&head->node.refs);
904 spin_unlock(&delayed_refs->lock);
905
b3b4aa74 906 btrfs_release_path(path);
a22285a6 907
8cc33e5c
DS
908 /*
909 * Mutex was contended, block until it's released and try
910 * again
911 */
a22285a6
YZ
912 mutex_lock(&head->mutex);
913 mutex_unlock(&head->mutex);
914 btrfs_put_delayed_ref(&head->node);
639eefc8 915 goto search_again;
a22285a6 916 }
d7df2c79 917 spin_lock(&head->lock);
a22285a6
YZ
918 if (head->extent_op && head->extent_op->update_flags)
919 extent_flags |= head->extent_op->flags_to_set;
920 else
921 BUG_ON(num_refs == 0);
922
923 num_refs += head->node.ref_mod;
d7df2c79 924 spin_unlock(&head->lock);
a22285a6
YZ
925 mutex_unlock(&head->mutex);
926 }
927 spin_unlock(&delayed_refs->lock);
928out:
929 WARN_ON(num_refs == 0);
930 if (refs)
931 *refs = num_refs;
932 if (flags)
933 *flags = extent_flags;
934out_free:
935 btrfs_free_path(path);
936 return ret;
937}
938
d8d5f3e1
CM
939/*
940 * Back reference rules. Back refs have three main goals:
941 *
942 * 1) differentiate between all holders of references to an extent so that
943 * when a reference is dropped we can make sure it was a valid reference
944 * before freeing the extent.
945 *
946 * 2) Provide enough information to quickly find the holders of an extent
947 * if we notice a given block is corrupted or bad.
948 *
949 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
950 * maintenance. This is actually the same as #2, but with a slightly
951 * different use case.
952 *
5d4f98a2
YZ
953 * There are two kinds of back refs. The implicit back refs is optimized
954 * for pointers in non-shared tree blocks. For a given pointer in a block,
955 * back refs of this kind provide information about the block's owner tree
956 * and the pointer's key. These information allow us to find the block by
957 * b-tree searching. The full back refs is for pointers in tree blocks not
958 * referenced by their owner trees. The location of tree block is recorded
959 * in the back refs. Actually the full back refs is generic, and can be
960 * used in all cases the implicit back refs is used. The major shortcoming
961 * of the full back refs is its overhead. Every time a tree block gets
962 * COWed, we have to update back refs entry for all pointers in it.
963 *
964 * For a newly allocated tree block, we use implicit back refs for
965 * pointers in it. This means most tree related operations only involve
966 * implicit back refs. For a tree block created in old transaction, the
967 * only way to drop a reference to it is COW it. So we can detect the
968 * event that tree block loses its owner tree's reference and do the
969 * back refs conversion.
970 *
01327610 971 * When a tree block is COWed through a tree, there are four cases:
5d4f98a2
YZ
972 *
973 * The reference count of the block is one and the tree is the block's
974 * owner tree. Nothing to do in this case.
975 *
976 * The reference count of the block is one and the tree is not the
977 * block's owner tree. In this case, full back refs is used for pointers
978 * in the block. Remove these full back refs, add implicit back refs for
979 * every pointers in the new block.
980 *
981 * The reference count of the block is greater than one and the tree is
982 * the block's owner tree. In this case, implicit back refs is used for
983 * pointers in the block. Add full back refs for every pointers in the
984 * block, increase lower level extents' reference counts. The original
985 * implicit back refs are entailed to the new block.
986 *
987 * The reference count of the block is greater than one and the tree is
988 * not the block's owner tree. Add implicit back refs for every pointer in
989 * the new block, increase lower level extents' reference count.
990 *
991 * Back Reference Key composing:
992 *
993 * The key objectid corresponds to the first byte in the extent,
994 * The key type is used to differentiate between types of back refs.
995 * There are different meanings of the key offset for different types
996 * of back refs.
997 *
d8d5f3e1
CM
998 * File extents can be referenced by:
999 *
1000 * - multiple snapshots, subvolumes, or different generations in one subvol
31840ae1 1001 * - different files inside a single subvolume
d8d5f3e1
CM
1002 * - different offsets inside a file (bookend extents in file.c)
1003 *
5d4f98a2 1004 * The extent ref structure for the implicit back refs has fields for:
d8d5f3e1
CM
1005 *
1006 * - Objectid of the subvolume root
d8d5f3e1 1007 * - objectid of the file holding the reference
5d4f98a2
YZ
1008 * - original offset in the file
1009 * - how many bookend extents
d8d5f3e1 1010 *
5d4f98a2
YZ
1011 * The key offset for the implicit back refs is hash of the first
1012 * three fields.
d8d5f3e1 1013 *
5d4f98a2 1014 * The extent ref structure for the full back refs has field for:
d8d5f3e1 1015 *
5d4f98a2 1016 * - number of pointers in the tree leaf
d8d5f3e1 1017 *
5d4f98a2
YZ
1018 * The key offset for the implicit back refs is the first byte of
1019 * the tree leaf
d8d5f3e1 1020 *
5d4f98a2
YZ
1021 * When a file extent is allocated, The implicit back refs is used.
1022 * the fields are filled in:
d8d5f3e1 1023 *
5d4f98a2 1024 * (root_key.objectid, inode objectid, offset in file, 1)
d8d5f3e1 1025 *
5d4f98a2
YZ
1026 * When a file extent is removed file truncation, we find the
1027 * corresponding implicit back refs and check the following fields:
d8d5f3e1 1028 *
5d4f98a2 1029 * (btrfs_header_owner(leaf), inode objectid, offset in file)
d8d5f3e1 1030 *
5d4f98a2 1031 * Btree extents can be referenced by:
d8d5f3e1 1032 *
5d4f98a2 1033 * - Different subvolumes
d8d5f3e1 1034 *
5d4f98a2
YZ
1035 * Both the implicit back refs and the full back refs for tree blocks
1036 * only consist of key. The key offset for the implicit back refs is
1037 * objectid of block's owner tree. The key offset for the full back refs
1038 * is the first byte of parent block.
d8d5f3e1 1039 *
5d4f98a2
YZ
1040 * When implicit back refs is used, information about the lowest key and
1041 * level of the tree block are required. These information are stored in
1042 * tree block info structure.
d8d5f3e1 1043 */
31840ae1 1044
5d4f98a2
YZ
1045#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1046static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
1047 struct btrfs_root *root,
1048 struct btrfs_path *path,
1049 u64 owner, u32 extra_size)
7bb86316 1050{
5d4f98a2
YZ
1051 struct btrfs_extent_item *item;
1052 struct btrfs_extent_item_v0 *ei0;
1053 struct btrfs_extent_ref_v0 *ref0;
1054 struct btrfs_tree_block_info *bi;
1055 struct extent_buffer *leaf;
7bb86316 1056 struct btrfs_key key;
5d4f98a2
YZ
1057 struct btrfs_key found_key;
1058 u32 new_size = sizeof(*item);
1059 u64 refs;
1060 int ret;
1061
1062 leaf = path->nodes[0];
1063 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
1064
1065 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1066 ei0 = btrfs_item_ptr(leaf, path->slots[0],
1067 struct btrfs_extent_item_v0);
1068 refs = btrfs_extent_refs_v0(leaf, ei0);
1069
1070 if (owner == (u64)-1) {
1071 while (1) {
1072 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1073 ret = btrfs_next_leaf(root, path);
1074 if (ret < 0)
1075 return ret;
79787eaa 1076 BUG_ON(ret > 0); /* Corruption */
5d4f98a2
YZ
1077 leaf = path->nodes[0];
1078 }
1079 btrfs_item_key_to_cpu(leaf, &found_key,
1080 path->slots[0]);
1081 BUG_ON(key.objectid != found_key.objectid);
1082 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
1083 path->slots[0]++;
1084 continue;
1085 }
1086 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1087 struct btrfs_extent_ref_v0);
1088 owner = btrfs_ref_objectid_v0(leaf, ref0);
1089 break;
1090 }
1091 }
b3b4aa74 1092 btrfs_release_path(path);
5d4f98a2
YZ
1093
1094 if (owner < BTRFS_FIRST_FREE_OBJECTID)
1095 new_size += sizeof(*bi);
1096
1097 new_size -= sizeof(*ei0);
1098 ret = btrfs_search_slot(trans, root, &key, path,
1099 new_size + extra_size, 1);
1100 if (ret < 0)
1101 return ret;
79787eaa 1102 BUG_ON(ret); /* Corruption */
5d4f98a2 1103
4b90c680 1104 btrfs_extend_item(root, path, new_size);
5d4f98a2
YZ
1105
1106 leaf = path->nodes[0];
1107 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1108 btrfs_set_extent_refs(leaf, item, refs);
1109 /* FIXME: get real generation */
1110 btrfs_set_extent_generation(leaf, item, 0);
1111 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1112 btrfs_set_extent_flags(leaf, item,
1113 BTRFS_EXTENT_FLAG_TREE_BLOCK |
1114 BTRFS_BLOCK_FLAG_FULL_BACKREF);
1115 bi = (struct btrfs_tree_block_info *)(item + 1);
1116 /* FIXME: get first key of the block */
1117 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
1118 btrfs_set_tree_block_level(leaf, bi, (int)owner);
1119 } else {
1120 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
1121 }
1122 btrfs_mark_buffer_dirty(leaf);
1123 return 0;
1124}
1125#endif
1126
1127static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1128{
1129 u32 high_crc = ~(u32)0;
1130 u32 low_crc = ~(u32)0;
1131 __le64 lenum;
1132
1133 lenum = cpu_to_le64(root_objectid);
14a958e6 1134 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
5d4f98a2 1135 lenum = cpu_to_le64(owner);
14a958e6 1136 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
5d4f98a2 1137 lenum = cpu_to_le64(offset);
14a958e6 1138 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
5d4f98a2
YZ
1139
1140 return ((u64)high_crc << 31) ^ (u64)low_crc;
1141}
1142
1143static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1144 struct btrfs_extent_data_ref *ref)
1145{
1146 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1147 btrfs_extent_data_ref_objectid(leaf, ref),
1148 btrfs_extent_data_ref_offset(leaf, ref));
1149}
1150
1151static int match_extent_data_ref(struct extent_buffer *leaf,
1152 struct btrfs_extent_data_ref *ref,
1153 u64 root_objectid, u64 owner, u64 offset)
1154{
1155 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1156 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1157 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1158 return 0;
1159 return 1;
1160}
1161
1162static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
1163 struct btrfs_root *root,
1164 struct btrfs_path *path,
1165 u64 bytenr, u64 parent,
1166 u64 root_objectid,
1167 u64 owner, u64 offset)
1168{
1169 struct btrfs_key key;
1170 struct btrfs_extent_data_ref *ref;
31840ae1 1171 struct extent_buffer *leaf;
5d4f98a2 1172 u32 nritems;
74493f7a 1173 int ret;
5d4f98a2
YZ
1174 int recow;
1175 int err = -ENOENT;
74493f7a 1176
31840ae1 1177 key.objectid = bytenr;
5d4f98a2
YZ
1178 if (parent) {
1179 key.type = BTRFS_SHARED_DATA_REF_KEY;
1180 key.offset = parent;
1181 } else {
1182 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1183 key.offset = hash_extent_data_ref(root_objectid,
1184 owner, offset);
1185 }
1186again:
1187 recow = 0;
1188 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1189 if (ret < 0) {
1190 err = ret;
1191 goto fail;
1192 }
31840ae1 1193
5d4f98a2
YZ
1194 if (parent) {
1195 if (!ret)
1196 return 0;
1197#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1198 key.type = BTRFS_EXTENT_REF_V0_KEY;
b3b4aa74 1199 btrfs_release_path(path);
5d4f98a2
YZ
1200 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1201 if (ret < 0) {
1202 err = ret;
1203 goto fail;
1204 }
1205 if (!ret)
1206 return 0;
1207#endif
1208 goto fail;
31840ae1
ZY
1209 }
1210
1211 leaf = path->nodes[0];
5d4f98a2
YZ
1212 nritems = btrfs_header_nritems(leaf);
1213 while (1) {
1214 if (path->slots[0] >= nritems) {
1215 ret = btrfs_next_leaf(root, path);
1216 if (ret < 0)
1217 err = ret;
1218 if (ret)
1219 goto fail;
1220
1221 leaf = path->nodes[0];
1222 nritems = btrfs_header_nritems(leaf);
1223 recow = 1;
1224 }
1225
1226 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1227 if (key.objectid != bytenr ||
1228 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1229 goto fail;
1230
1231 ref = btrfs_item_ptr(leaf, path->slots[0],
1232 struct btrfs_extent_data_ref);
1233
1234 if (match_extent_data_ref(leaf, ref, root_objectid,
1235 owner, offset)) {
1236 if (recow) {
b3b4aa74 1237 btrfs_release_path(path);
5d4f98a2
YZ
1238 goto again;
1239 }
1240 err = 0;
1241 break;
1242 }
1243 path->slots[0]++;
31840ae1 1244 }
5d4f98a2
YZ
1245fail:
1246 return err;
31840ae1
ZY
1247}
1248
5d4f98a2
YZ
1249static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1250 struct btrfs_root *root,
1251 struct btrfs_path *path,
1252 u64 bytenr, u64 parent,
1253 u64 root_objectid, u64 owner,
1254 u64 offset, int refs_to_add)
31840ae1
ZY
1255{
1256 struct btrfs_key key;
1257 struct extent_buffer *leaf;
5d4f98a2 1258 u32 size;
31840ae1
ZY
1259 u32 num_refs;
1260 int ret;
74493f7a 1261
74493f7a 1262 key.objectid = bytenr;
5d4f98a2
YZ
1263 if (parent) {
1264 key.type = BTRFS_SHARED_DATA_REF_KEY;
1265 key.offset = parent;
1266 size = sizeof(struct btrfs_shared_data_ref);
1267 } else {
1268 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1269 key.offset = hash_extent_data_ref(root_objectid,
1270 owner, offset);
1271 size = sizeof(struct btrfs_extent_data_ref);
1272 }
74493f7a 1273
5d4f98a2
YZ
1274 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1275 if (ret && ret != -EEXIST)
1276 goto fail;
1277
1278 leaf = path->nodes[0];
1279 if (parent) {
1280 struct btrfs_shared_data_ref *ref;
31840ae1 1281 ref = btrfs_item_ptr(leaf, path->slots[0],
5d4f98a2
YZ
1282 struct btrfs_shared_data_ref);
1283 if (ret == 0) {
1284 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1285 } else {
1286 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1287 num_refs += refs_to_add;
1288 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
31840ae1 1289 }
5d4f98a2
YZ
1290 } else {
1291 struct btrfs_extent_data_ref *ref;
1292 while (ret == -EEXIST) {
1293 ref = btrfs_item_ptr(leaf, path->slots[0],
1294 struct btrfs_extent_data_ref);
1295 if (match_extent_data_ref(leaf, ref, root_objectid,
1296 owner, offset))
1297 break;
b3b4aa74 1298 btrfs_release_path(path);
5d4f98a2
YZ
1299 key.offset++;
1300 ret = btrfs_insert_empty_item(trans, root, path, &key,
1301 size);
1302 if (ret && ret != -EEXIST)
1303 goto fail;
31840ae1 1304
5d4f98a2
YZ
1305 leaf = path->nodes[0];
1306 }
1307 ref = btrfs_item_ptr(leaf, path->slots[0],
1308 struct btrfs_extent_data_ref);
1309 if (ret == 0) {
1310 btrfs_set_extent_data_ref_root(leaf, ref,
1311 root_objectid);
1312 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1313 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1314 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1315 } else {
1316 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1317 num_refs += refs_to_add;
1318 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
31840ae1 1319 }
31840ae1 1320 }
5d4f98a2
YZ
1321 btrfs_mark_buffer_dirty(leaf);
1322 ret = 0;
1323fail:
b3b4aa74 1324 btrfs_release_path(path);
7bb86316 1325 return ret;
74493f7a
CM
1326}
1327
5d4f98a2
YZ
1328static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1329 struct btrfs_root *root,
1330 struct btrfs_path *path,
fcebe456 1331 int refs_to_drop, int *last_ref)
31840ae1 1332{
5d4f98a2
YZ
1333 struct btrfs_key key;
1334 struct btrfs_extent_data_ref *ref1 = NULL;
1335 struct btrfs_shared_data_ref *ref2 = NULL;
31840ae1 1336 struct extent_buffer *leaf;
5d4f98a2 1337 u32 num_refs = 0;
31840ae1
ZY
1338 int ret = 0;
1339
1340 leaf = path->nodes[0];
5d4f98a2
YZ
1341 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1342
1343 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1344 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1345 struct btrfs_extent_data_ref);
1346 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1347 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1348 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1349 struct btrfs_shared_data_ref);
1350 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1351#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1352 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1353 struct btrfs_extent_ref_v0 *ref0;
1354 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1355 struct btrfs_extent_ref_v0);
1356 num_refs = btrfs_ref_count_v0(leaf, ref0);
1357#endif
1358 } else {
1359 BUG();
1360 }
1361
56bec294
CM
1362 BUG_ON(num_refs < refs_to_drop);
1363 num_refs -= refs_to_drop;
5d4f98a2 1364
31840ae1
ZY
1365 if (num_refs == 0) {
1366 ret = btrfs_del_item(trans, root, path);
fcebe456 1367 *last_ref = 1;
31840ae1 1368 } else {
5d4f98a2
YZ
1369 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1370 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1371 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1372 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1373#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1374 else {
1375 struct btrfs_extent_ref_v0 *ref0;
1376 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1377 struct btrfs_extent_ref_v0);
1378 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1379 }
1380#endif
31840ae1
ZY
1381 btrfs_mark_buffer_dirty(leaf);
1382 }
31840ae1
ZY
1383 return ret;
1384}
1385
9ed0dea0 1386static noinline u32 extent_data_ref_count(struct btrfs_path *path,
5d4f98a2 1387 struct btrfs_extent_inline_ref *iref)
15916de8 1388{
5d4f98a2
YZ
1389 struct btrfs_key key;
1390 struct extent_buffer *leaf;
1391 struct btrfs_extent_data_ref *ref1;
1392 struct btrfs_shared_data_ref *ref2;
1393 u32 num_refs = 0;
1394
1395 leaf = path->nodes[0];
1396 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1397 if (iref) {
1398 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1399 BTRFS_EXTENT_DATA_REF_KEY) {
1400 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1401 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1402 } else {
1403 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1404 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1405 }
1406 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1407 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1408 struct btrfs_extent_data_ref);
1409 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1410 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1411 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1412 struct btrfs_shared_data_ref);
1413 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1414#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1415 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1416 struct btrfs_extent_ref_v0 *ref0;
1417 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1418 struct btrfs_extent_ref_v0);
1419 num_refs = btrfs_ref_count_v0(leaf, ref0);
4b4e25f2 1420#endif
5d4f98a2
YZ
1421 } else {
1422 WARN_ON(1);
1423 }
1424 return num_refs;
1425}
15916de8 1426
5d4f98a2
YZ
1427static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1428 struct btrfs_root *root,
1429 struct btrfs_path *path,
1430 u64 bytenr, u64 parent,
1431 u64 root_objectid)
1f3c79a2 1432{
5d4f98a2 1433 struct btrfs_key key;
1f3c79a2 1434 int ret;
1f3c79a2 1435
5d4f98a2
YZ
1436 key.objectid = bytenr;
1437 if (parent) {
1438 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1439 key.offset = parent;
1440 } else {
1441 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1442 key.offset = root_objectid;
1f3c79a2
LH
1443 }
1444
5d4f98a2
YZ
1445 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1446 if (ret > 0)
1447 ret = -ENOENT;
1448#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1449 if (ret == -ENOENT && parent) {
b3b4aa74 1450 btrfs_release_path(path);
5d4f98a2
YZ
1451 key.type = BTRFS_EXTENT_REF_V0_KEY;
1452 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1453 if (ret > 0)
1454 ret = -ENOENT;
1455 }
1f3c79a2 1456#endif
5d4f98a2 1457 return ret;
1f3c79a2
LH
1458}
1459
5d4f98a2
YZ
1460static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1461 struct btrfs_root *root,
1462 struct btrfs_path *path,
1463 u64 bytenr, u64 parent,
1464 u64 root_objectid)
31840ae1 1465{
5d4f98a2 1466 struct btrfs_key key;
31840ae1 1467 int ret;
31840ae1 1468
5d4f98a2
YZ
1469 key.objectid = bytenr;
1470 if (parent) {
1471 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1472 key.offset = parent;
1473 } else {
1474 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1475 key.offset = root_objectid;
1476 }
1477
1478 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
b3b4aa74 1479 btrfs_release_path(path);
31840ae1
ZY
1480 return ret;
1481}
1482
5d4f98a2 1483static inline int extent_ref_type(u64 parent, u64 owner)
31840ae1 1484{
5d4f98a2
YZ
1485 int type;
1486 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1487 if (parent > 0)
1488 type = BTRFS_SHARED_BLOCK_REF_KEY;
1489 else
1490 type = BTRFS_TREE_BLOCK_REF_KEY;
1491 } else {
1492 if (parent > 0)
1493 type = BTRFS_SHARED_DATA_REF_KEY;
1494 else
1495 type = BTRFS_EXTENT_DATA_REF_KEY;
1496 }
1497 return type;
31840ae1 1498}
56bec294 1499
2c47e605
YZ
1500static int find_next_key(struct btrfs_path *path, int level,
1501 struct btrfs_key *key)
56bec294 1502
02217ed2 1503{
2c47e605 1504 for (; level < BTRFS_MAX_LEVEL; level++) {
5d4f98a2
YZ
1505 if (!path->nodes[level])
1506 break;
5d4f98a2
YZ
1507 if (path->slots[level] + 1 >=
1508 btrfs_header_nritems(path->nodes[level]))
1509 continue;
1510 if (level == 0)
1511 btrfs_item_key_to_cpu(path->nodes[level], key,
1512 path->slots[level] + 1);
1513 else
1514 btrfs_node_key_to_cpu(path->nodes[level], key,
1515 path->slots[level] + 1);
1516 return 0;
1517 }
1518 return 1;
1519}
037e6390 1520
5d4f98a2
YZ
1521/*
1522 * look for inline back ref. if back ref is found, *ref_ret is set
1523 * to the address of inline back ref, and 0 is returned.
1524 *
1525 * if back ref isn't found, *ref_ret is set to the address where it
1526 * should be inserted, and -ENOENT is returned.
1527 *
1528 * if insert is true and there are too many inline back refs, the path
1529 * points to the extent item, and -EAGAIN is returned.
1530 *
1531 * NOTE: inline back refs are ordered in the same way that back ref
1532 * items in the tree are ordered.
1533 */
1534static noinline_for_stack
1535int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1536 struct btrfs_root *root,
1537 struct btrfs_path *path,
1538 struct btrfs_extent_inline_ref **ref_ret,
1539 u64 bytenr, u64 num_bytes,
1540 u64 parent, u64 root_objectid,
1541 u64 owner, u64 offset, int insert)
1542{
1543 struct btrfs_key key;
1544 struct extent_buffer *leaf;
1545 struct btrfs_extent_item *ei;
1546 struct btrfs_extent_inline_ref *iref;
1547 u64 flags;
1548 u64 item_size;
1549 unsigned long ptr;
1550 unsigned long end;
1551 int extra_size;
1552 int type;
1553 int want;
1554 int ret;
1555 int err = 0;
3173a18f
JB
1556 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
1557 SKINNY_METADATA);
26b8003f 1558
db94535d 1559 key.objectid = bytenr;
31840ae1 1560 key.type = BTRFS_EXTENT_ITEM_KEY;
56bec294 1561 key.offset = num_bytes;
31840ae1 1562
5d4f98a2
YZ
1563 want = extent_ref_type(parent, owner);
1564 if (insert) {
1565 extra_size = btrfs_extent_inline_ref_size(want);
85d4198e 1566 path->keep_locks = 1;
5d4f98a2
YZ
1567 } else
1568 extra_size = -1;
3173a18f
JB
1569
1570 /*
1571 * Owner is our parent level, so we can just add one to get the level
1572 * for the block we are interested in.
1573 */
1574 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1575 key.type = BTRFS_METADATA_ITEM_KEY;
1576 key.offset = owner;
1577 }
1578
1579again:
5d4f98a2 1580 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
b9473439 1581 if (ret < 0) {
5d4f98a2
YZ
1582 err = ret;
1583 goto out;
1584 }
3173a18f
JB
1585
1586 /*
1587 * We may be a newly converted file system which still has the old fat
1588 * extent entries for metadata, so try and see if we have one of those.
1589 */
1590 if (ret > 0 && skinny_metadata) {
1591 skinny_metadata = false;
1592 if (path->slots[0]) {
1593 path->slots[0]--;
1594 btrfs_item_key_to_cpu(path->nodes[0], &key,
1595 path->slots[0]);
1596 if (key.objectid == bytenr &&
1597 key.type == BTRFS_EXTENT_ITEM_KEY &&
1598 key.offset == num_bytes)
1599 ret = 0;
1600 }
1601 if (ret) {
9ce49a0b 1602 key.objectid = bytenr;
3173a18f
JB
1603 key.type = BTRFS_EXTENT_ITEM_KEY;
1604 key.offset = num_bytes;
1605 btrfs_release_path(path);
1606 goto again;
1607 }
1608 }
1609
79787eaa
JM
1610 if (ret && !insert) {
1611 err = -ENOENT;
1612 goto out;
fae7f21c 1613 } else if (WARN_ON(ret)) {
492104c8 1614 err = -EIO;
492104c8 1615 goto out;
79787eaa 1616 }
5d4f98a2
YZ
1617
1618 leaf = path->nodes[0];
1619 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1620#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1621 if (item_size < sizeof(*ei)) {
1622 if (!insert) {
1623 err = -ENOENT;
1624 goto out;
1625 }
1626 ret = convert_extent_item_v0(trans, root, path, owner,
1627 extra_size);
1628 if (ret < 0) {
1629 err = ret;
1630 goto out;
1631 }
1632 leaf = path->nodes[0];
1633 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1634 }
1635#endif
1636 BUG_ON(item_size < sizeof(*ei));
1637
5d4f98a2
YZ
1638 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1639 flags = btrfs_extent_flags(leaf, ei);
1640
1641 ptr = (unsigned long)(ei + 1);
1642 end = (unsigned long)ei + item_size;
1643
3173a18f 1644 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
5d4f98a2
YZ
1645 ptr += sizeof(struct btrfs_tree_block_info);
1646 BUG_ON(ptr > end);
5d4f98a2
YZ
1647 }
1648
1649 err = -ENOENT;
1650 while (1) {
1651 if (ptr >= end) {
1652 WARN_ON(ptr > end);
1653 break;
1654 }
1655 iref = (struct btrfs_extent_inline_ref *)ptr;
1656 type = btrfs_extent_inline_ref_type(leaf, iref);
1657 if (want < type)
1658 break;
1659 if (want > type) {
1660 ptr += btrfs_extent_inline_ref_size(type);
1661 continue;
1662 }
1663
1664 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1665 struct btrfs_extent_data_ref *dref;
1666 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1667 if (match_extent_data_ref(leaf, dref, root_objectid,
1668 owner, offset)) {
1669 err = 0;
1670 break;
1671 }
1672 if (hash_extent_data_ref_item(leaf, dref) <
1673 hash_extent_data_ref(root_objectid, owner, offset))
1674 break;
1675 } else {
1676 u64 ref_offset;
1677 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1678 if (parent > 0) {
1679 if (parent == ref_offset) {
1680 err = 0;
1681 break;
1682 }
1683 if (ref_offset < parent)
1684 break;
1685 } else {
1686 if (root_objectid == ref_offset) {
1687 err = 0;
1688 break;
1689 }
1690 if (ref_offset < root_objectid)
1691 break;
1692 }
1693 }
1694 ptr += btrfs_extent_inline_ref_size(type);
1695 }
1696 if (err == -ENOENT && insert) {
1697 if (item_size + extra_size >=
1698 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1699 err = -EAGAIN;
1700 goto out;
1701 }
1702 /*
1703 * To add new inline back ref, we have to make sure
1704 * there is no corresponding back ref item.
1705 * For simplicity, we just do not add new inline back
1706 * ref if there is any kind of item for this block
1707 */
2c47e605
YZ
1708 if (find_next_key(path, 0, &key) == 0 &&
1709 key.objectid == bytenr &&
85d4198e 1710 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
5d4f98a2
YZ
1711 err = -EAGAIN;
1712 goto out;
1713 }
1714 }
1715 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1716out:
85d4198e 1717 if (insert) {
5d4f98a2
YZ
1718 path->keep_locks = 0;
1719 btrfs_unlock_up_safe(path, 1);
1720 }
1721 return err;
1722}
1723
1724/*
1725 * helper to add new inline back ref
1726 */
1727static noinline_for_stack
fd279fae 1728void setup_inline_extent_backref(struct btrfs_root *root,
143bede5
JM
1729 struct btrfs_path *path,
1730 struct btrfs_extent_inline_ref *iref,
1731 u64 parent, u64 root_objectid,
1732 u64 owner, u64 offset, int refs_to_add,
1733 struct btrfs_delayed_extent_op *extent_op)
5d4f98a2
YZ
1734{
1735 struct extent_buffer *leaf;
1736 struct btrfs_extent_item *ei;
1737 unsigned long ptr;
1738 unsigned long end;
1739 unsigned long item_offset;
1740 u64 refs;
1741 int size;
1742 int type;
5d4f98a2
YZ
1743
1744 leaf = path->nodes[0];
1745 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1746 item_offset = (unsigned long)iref - (unsigned long)ei;
1747
1748 type = extent_ref_type(parent, owner);
1749 size = btrfs_extent_inline_ref_size(type);
1750
4b90c680 1751 btrfs_extend_item(root, path, size);
5d4f98a2
YZ
1752
1753 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1754 refs = btrfs_extent_refs(leaf, ei);
1755 refs += refs_to_add;
1756 btrfs_set_extent_refs(leaf, ei, refs);
1757 if (extent_op)
1758 __run_delayed_extent_op(extent_op, leaf, ei);
1759
1760 ptr = (unsigned long)ei + item_offset;
1761 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1762 if (ptr < end - size)
1763 memmove_extent_buffer(leaf, ptr + size, ptr,
1764 end - size - ptr);
1765
1766 iref = (struct btrfs_extent_inline_ref *)ptr;
1767 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1768 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1769 struct btrfs_extent_data_ref *dref;
1770 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1771 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1772 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1773 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1774 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1775 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1776 struct btrfs_shared_data_ref *sref;
1777 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1778 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1779 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1780 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1781 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1782 } else {
1783 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1784 }
1785 btrfs_mark_buffer_dirty(leaf);
5d4f98a2
YZ
1786}
1787
1788static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1789 struct btrfs_root *root,
1790 struct btrfs_path *path,
1791 struct btrfs_extent_inline_ref **ref_ret,
1792 u64 bytenr, u64 num_bytes, u64 parent,
1793 u64 root_objectid, u64 owner, u64 offset)
1794{
1795 int ret;
1796
1797 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1798 bytenr, num_bytes, parent,
1799 root_objectid, owner, offset, 0);
1800 if (ret != -ENOENT)
54aa1f4d 1801 return ret;
5d4f98a2 1802
b3b4aa74 1803 btrfs_release_path(path);
5d4f98a2
YZ
1804 *ref_ret = NULL;
1805
1806 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1807 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1808 root_objectid);
1809 } else {
1810 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1811 root_objectid, owner, offset);
b9473439 1812 }
5d4f98a2
YZ
1813 return ret;
1814}
31840ae1 1815
5d4f98a2
YZ
1816/*
1817 * helper to update/remove inline back ref
1818 */
1819static noinline_for_stack
afe5fea7 1820void update_inline_extent_backref(struct btrfs_root *root,
143bede5
JM
1821 struct btrfs_path *path,
1822 struct btrfs_extent_inline_ref *iref,
1823 int refs_to_mod,
fcebe456
JB
1824 struct btrfs_delayed_extent_op *extent_op,
1825 int *last_ref)
5d4f98a2
YZ
1826{
1827 struct extent_buffer *leaf;
1828 struct btrfs_extent_item *ei;
1829 struct btrfs_extent_data_ref *dref = NULL;
1830 struct btrfs_shared_data_ref *sref = NULL;
1831 unsigned long ptr;
1832 unsigned long end;
1833 u32 item_size;
1834 int size;
1835 int type;
5d4f98a2
YZ
1836 u64 refs;
1837
1838 leaf = path->nodes[0];
1839 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1840 refs = btrfs_extent_refs(leaf, ei);
1841 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1842 refs += refs_to_mod;
1843 btrfs_set_extent_refs(leaf, ei, refs);
1844 if (extent_op)
1845 __run_delayed_extent_op(extent_op, leaf, ei);
1846
1847 type = btrfs_extent_inline_ref_type(leaf, iref);
1848
1849 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1850 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1851 refs = btrfs_extent_data_ref_count(leaf, dref);
1852 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1853 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1854 refs = btrfs_shared_data_ref_count(leaf, sref);
1855 } else {
1856 refs = 1;
1857 BUG_ON(refs_to_mod != -1);
56bec294 1858 }
31840ae1 1859
5d4f98a2
YZ
1860 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1861 refs += refs_to_mod;
1862
1863 if (refs > 0) {
1864 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1865 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1866 else
1867 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1868 } else {
fcebe456 1869 *last_ref = 1;
5d4f98a2
YZ
1870 size = btrfs_extent_inline_ref_size(type);
1871 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1872 ptr = (unsigned long)iref;
1873 end = (unsigned long)ei + item_size;
1874 if (ptr + size < end)
1875 memmove_extent_buffer(leaf, ptr, ptr + size,
1876 end - ptr - size);
1877 item_size -= size;
afe5fea7 1878 btrfs_truncate_item(root, path, item_size, 1);
5d4f98a2
YZ
1879 }
1880 btrfs_mark_buffer_dirty(leaf);
5d4f98a2
YZ
1881}
1882
1883static noinline_for_stack
1884int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1885 struct btrfs_root *root,
1886 struct btrfs_path *path,
1887 u64 bytenr, u64 num_bytes, u64 parent,
1888 u64 root_objectid, u64 owner,
1889 u64 offset, int refs_to_add,
1890 struct btrfs_delayed_extent_op *extent_op)
1891{
1892 struct btrfs_extent_inline_ref *iref;
1893 int ret;
1894
1895 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1896 bytenr, num_bytes, parent,
1897 root_objectid, owner, offset, 1);
1898 if (ret == 0) {
1899 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
afe5fea7 1900 update_inline_extent_backref(root, path, iref,
fcebe456 1901 refs_to_add, extent_op, NULL);
5d4f98a2 1902 } else if (ret == -ENOENT) {
fd279fae 1903 setup_inline_extent_backref(root, path, iref, parent,
143bede5
JM
1904 root_objectid, owner, offset,
1905 refs_to_add, extent_op);
1906 ret = 0;
771ed689 1907 }
5d4f98a2
YZ
1908 return ret;
1909}
31840ae1 1910
5d4f98a2
YZ
1911static int insert_extent_backref(struct btrfs_trans_handle *trans,
1912 struct btrfs_root *root,
1913 struct btrfs_path *path,
1914 u64 bytenr, u64 parent, u64 root_objectid,
1915 u64 owner, u64 offset, int refs_to_add)
1916{
1917 int ret;
1918 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1919 BUG_ON(refs_to_add != 1);
1920 ret = insert_tree_block_ref(trans, root, path, bytenr,
1921 parent, root_objectid);
1922 } else {
1923 ret = insert_extent_data_ref(trans, root, path, bytenr,
1924 parent, root_objectid,
1925 owner, offset, refs_to_add);
1926 }
1927 return ret;
1928}
56bec294 1929
5d4f98a2
YZ
1930static int remove_extent_backref(struct btrfs_trans_handle *trans,
1931 struct btrfs_root *root,
1932 struct btrfs_path *path,
1933 struct btrfs_extent_inline_ref *iref,
fcebe456 1934 int refs_to_drop, int is_data, int *last_ref)
5d4f98a2 1935{
143bede5 1936 int ret = 0;
b9473439 1937
5d4f98a2
YZ
1938 BUG_ON(!is_data && refs_to_drop != 1);
1939 if (iref) {
afe5fea7 1940 update_inline_extent_backref(root, path, iref,
fcebe456 1941 -refs_to_drop, NULL, last_ref);
5d4f98a2 1942 } else if (is_data) {
fcebe456
JB
1943 ret = remove_extent_data_ref(trans, root, path, refs_to_drop,
1944 last_ref);
5d4f98a2 1945 } else {
fcebe456 1946 *last_ref = 1;
5d4f98a2
YZ
1947 ret = btrfs_del_item(trans, root, path);
1948 }
1949 return ret;
1950}
1951
86557861 1952#define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len))
d04c6b88
JM
1953static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len,
1954 u64 *discarded_bytes)
5d4f98a2 1955{
86557861
JM
1956 int j, ret = 0;
1957 u64 bytes_left, end;
4d89d377 1958 u64 aligned_start = ALIGN(start, 1 << 9);
d04c6b88 1959
4d89d377
JM
1960 if (WARN_ON(start != aligned_start)) {
1961 len -= aligned_start - start;
1962 len = round_down(len, 1 << 9);
1963 start = aligned_start;
1964 }
d04c6b88 1965
4d89d377 1966 *discarded_bytes = 0;
86557861
JM
1967
1968 if (!len)
1969 return 0;
1970
1971 end = start + len;
1972 bytes_left = len;
1973
1974 /* Skip any superblocks on this device. */
1975 for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) {
1976 u64 sb_start = btrfs_sb_offset(j);
1977 u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE;
1978 u64 size = sb_start - start;
1979
1980 if (!in_range(sb_start, start, bytes_left) &&
1981 !in_range(sb_end, start, bytes_left) &&
1982 !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE))
1983 continue;
1984
1985 /*
1986 * Superblock spans beginning of range. Adjust start and
1987 * try again.
1988 */
1989 if (sb_start <= start) {
1990 start += sb_end - start;
1991 if (start > end) {
1992 bytes_left = 0;
1993 break;
1994 }
1995 bytes_left = end - start;
1996 continue;
1997 }
1998
1999 if (size) {
2000 ret = blkdev_issue_discard(bdev, start >> 9, size >> 9,
2001 GFP_NOFS, 0);
2002 if (!ret)
2003 *discarded_bytes += size;
2004 else if (ret != -EOPNOTSUPP)
2005 return ret;
2006 }
2007
2008 start = sb_end;
2009 if (start > end) {
2010 bytes_left = 0;
2011 break;
2012 }
2013 bytes_left = end - start;
2014 }
2015
2016 if (bytes_left) {
2017 ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9,
4d89d377
JM
2018 GFP_NOFS, 0);
2019 if (!ret)
86557861 2020 *discarded_bytes += bytes_left;
4d89d377 2021 }
d04c6b88 2022 return ret;
5d4f98a2 2023}
5d4f98a2 2024
1edb647b
FM
2025int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
2026 u64 num_bytes, u64 *actual_bytes)
5d4f98a2 2027{
5d4f98a2 2028 int ret;
5378e607 2029 u64 discarded_bytes = 0;
a1d3c478 2030 struct btrfs_bio *bbio = NULL;
5d4f98a2 2031
e244a0ae 2032
2999241d
FM
2033 /*
2034 * Avoid races with device replace and make sure our bbio has devices
2035 * associated to its stripes that don't go away while we are discarding.
2036 */
2037 btrfs_bio_counter_inc_blocked(root->fs_info);
5d4f98a2 2038 /* Tell the block device(s) that the sectors can be discarded */
cf8cddd3 2039 ret = btrfs_map_block(root->fs_info, BTRFS_MAP_DISCARD,
a1d3c478 2040 bytenr, &num_bytes, &bbio, 0);
79787eaa 2041 /* Error condition is -ENOMEM */
5d4f98a2 2042 if (!ret) {
a1d3c478 2043 struct btrfs_bio_stripe *stripe = bbio->stripes;
5d4f98a2
YZ
2044 int i;
2045
5d4f98a2 2046
a1d3c478 2047 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
d04c6b88 2048 u64 bytes;
d5e2003c
JB
2049 if (!stripe->dev->can_discard)
2050 continue;
2051
5378e607
LD
2052 ret = btrfs_issue_discard(stripe->dev->bdev,
2053 stripe->physical,
d04c6b88
JM
2054 stripe->length,
2055 &bytes);
5378e607 2056 if (!ret)
d04c6b88 2057 discarded_bytes += bytes;
5378e607 2058 else if (ret != -EOPNOTSUPP)
79787eaa 2059 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
d5e2003c
JB
2060
2061 /*
2062 * Just in case we get back EOPNOTSUPP for some reason,
2063 * just ignore the return value so we don't screw up
2064 * people calling discard_extent.
2065 */
2066 ret = 0;
5d4f98a2 2067 }
6e9606d2 2068 btrfs_put_bbio(bbio);
5d4f98a2 2069 }
2999241d 2070 btrfs_bio_counter_dec(root->fs_info);
5378e607
LD
2071
2072 if (actual_bytes)
2073 *actual_bytes = discarded_bytes;
2074
5d4f98a2 2075
53b381b3
DW
2076 if (ret == -EOPNOTSUPP)
2077 ret = 0;
5d4f98a2 2078 return ret;
5d4f98a2
YZ
2079}
2080
79787eaa 2081/* Can return -ENOMEM */
5d4f98a2
YZ
2082int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
2083 struct btrfs_root *root,
2084 u64 bytenr, u64 num_bytes, u64 parent,
b06c4bf5 2085 u64 root_objectid, u64 owner, u64 offset)
5d4f98a2
YZ
2086{
2087 int ret;
66d7e7f0
AJ
2088 struct btrfs_fs_info *fs_info = root->fs_info;
2089
5d4f98a2
YZ
2090 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
2091 root_objectid == BTRFS_TREE_LOG_OBJECTID);
2092
2093 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
66d7e7f0
AJ
2094 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
2095 num_bytes,
5d4f98a2 2096 parent, root_objectid, (int)owner,
b06c4bf5 2097 BTRFS_ADD_DELAYED_REF, NULL);
5d4f98a2 2098 } else {
66d7e7f0 2099 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
5846a3c2
QW
2100 num_bytes, parent, root_objectid,
2101 owner, offset, 0,
b06c4bf5 2102 BTRFS_ADD_DELAYED_REF, NULL);
5d4f98a2
YZ
2103 }
2104 return ret;
2105}
2106
2107static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
2108 struct btrfs_root *root,
c682f9b3 2109 struct btrfs_delayed_ref_node *node,
5d4f98a2
YZ
2110 u64 parent, u64 root_objectid,
2111 u64 owner, u64 offset, int refs_to_add,
2112 struct btrfs_delayed_extent_op *extent_op)
2113{
fcebe456 2114 struct btrfs_fs_info *fs_info = root->fs_info;
5d4f98a2
YZ
2115 struct btrfs_path *path;
2116 struct extent_buffer *leaf;
2117 struct btrfs_extent_item *item;
fcebe456 2118 struct btrfs_key key;
c682f9b3
QW
2119 u64 bytenr = node->bytenr;
2120 u64 num_bytes = node->num_bytes;
5d4f98a2
YZ
2121 u64 refs;
2122 int ret;
5d4f98a2
YZ
2123
2124 path = btrfs_alloc_path();
2125 if (!path)
2126 return -ENOMEM;
2127
e4058b54 2128 path->reada = READA_FORWARD;
5d4f98a2
YZ
2129 path->leave_spinning = 1;
2130 /* this will setup the path even if it fails to insert the back ref */
fcebe456
JB
2131 ret = insert_inline_extent_backref(trans, fs_info->extent_root, path,
2132 bytenr, num_bytes, parent,
5d4f98a2
YZ
2133 root_objectid, owner, offset,
2134 refs_to_add, extent_op);
0ed4792a 2135 if ((ret < 0 && ret != -EAGAIN) || !ret)
5d4f98a2 2136 goto out;
fcebe456
JB
2137
2138 /*
2139 * Ok we had -EAGAIN which means we didn't have space to insert and
2140 * inline extent ref, so just update the reference count and add a
2141 * normal backref.
2142 */
5d4f98a2 2143 leaf = path->nodes[0];
fcebe456 2144 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
5d4f98a2
YZ
2145 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2146 refs = btrfs_extent_refs(leaf, item);
2147 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2148 if (extent_op)
2149 __run_delayed_extent_op(extent_op, leaf, item);
56bec294 2150
5d4f98a2 2151 btrfs_mark_buffer_dirty(leaf);
b3b4aa74 2152 btrfs_release_path(path);
56bec294 2153
e4058b54 2154 path->reada = READA_FORWARD;
b9473439 2155 path->leave_spinning = 1;
56bec294
CM
2156 /* now insert the actual backref */
2157 ret = insert_extent_backref(trans, root->fs_info->extent_root,
5d4f98a2
YZ
2158 path, bytenr, parent, root_objectid,
2159 owner, offset, refs_to_add);
79787eaa 2160 if (ret)
66642832 2161 btrfs_abort_transaction(trans, ret);
5d4f98a2 2162out:
56bec294 2163 btrfs_free_path(path);
30d133fc 2164 return ret;
56bec294
CM
2165}
2166
5d4f98a2
YZ
2167static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
2168 struct btrfs_root *root,
2169 struct btrfs_delayed_ref_node *node,
2170 struct btrfs_delayed_extent_op *extent_op,
2171 int insert_reserved)
56bec294 2172{
5d4f98a2
YZ
2173 int ret = 0;
2174 struct btrfs_delayed_data_ref *ref;
2175 struct btrfs_key ins;
2176 u64 parent = 0;
2177 u64 ref_root = 0;
2178 u64 flags = 0;
2179
2180 ins.objectid = node->bytenr;
2181 ins.offset = node->num_bytes;
2182 ins.type = BTRFS_EXTENT_ITEM_KEY;
2183
2184 ref = btrfs_delayed_node_to_data_ref(node);
bc074524 2185 trace_run_delayed_data_ref(root->fs_info, node, ref, node->action);
599c75ec 2186
5d4f98a2
YZ
2187 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2188 parent = ref->parent;
fcebe456 2189 ref_root = ref->root;
5d4f98a2
YZ
2190
2191 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
3173a18f 2192 if (extent_op)
5d4f98a2 2193 flags |= extent_op->flags_to_set;
5d4f98a2
YZ
2194 ret = alloc_reserved_file_extent(trans, root,
2195 parent, ref_root, flags,
2196 ref->objectid, ref->offset,
2197 &ins, node->ref_mod);
5d4f98a2 2198 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
c682f9b3 2199 ret = __btrfs_inc_extent_ref(trans, root, node, parent,
5d4f98a2
YZ
2200 ref_root, ref->objectid,
2201 ref->offset, node->ref_mod,
c682f9b3 2202 extent_op);
5d4f98a2 2203 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
c682f9b3 2204 ret = __btrfs_free_extent(trans, root, node, parent,
5d4f98a2
YZ
2205 ref_root, ref->objectid,
2206 ref->offset, node->ref_mod,
c682f9b3 2207 extent_op);
5d4f98a2
YZ
2208 } else {
2209 BUG();
2210 }
2211 return ret;
2212}
2213
2214static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2215 struct extent_buffer *leaf,
2216 struct btrfs_extent_item *ei)
2217{
2218 u64 flags = btrfs_extent_flags(leaf, ei);
2219 if (extent_op->update_flags) {
2220 flags |= extent_op->flags_to_set;
2221 btrfs_set_extent_flags(leaf, ei, flags);
2222 }
2223
2224 if (extent_op->update_key) {
2225 struct btrfs_tree_block_info *bi;
2226 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2227 bi = (struct btrfs_tree_block_info *)(ei + 1);
2228 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2229 }
2230}
2231
2232static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
2233 struct btrfs_root *root,
2234 struct btrfs_delayed_ref_node *node,
2235 struct btrfs_delayed_extent_op *extent_op)
2236{
2237 struct btrfs_key key;
2238 struct btrfs_path *path;
2239 struct btrfs_extent_item *ei;
2240 struct extent_buffer *leaf;
2241 u32 item_size;
56bec294 2242 int ret;
5d4f98a2 2243 int err = 0;
b1c79e09 2244 int metadata = !extent_op->is_data;
5d4f98a2 2245
79787eaa
JM
2246 if (trans->aborted)
2247 return 0;
2248
3173a18f
JB
2249 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2250 metadata = 0;
2251
5d4f98a2
YZ
2252 path = btrfs_alloc_path();
2253 if (!path)
2254 return -ENOMEM;
2255
2256 key.objectid = node->bytenr;
5d4f98a2 2257
3173a18f 2258 if (metadata) {
3173a18f 2259 key.type = BTRFS_METADATA_ITEM_KEY;
b1c79e09 2260 key.offset = extent_op->level;
3173a18f
JB
2261 } else {
2262 key.type = BTRFS_EXTENT_ITEM_KEY;
2263 key.offset = node->num_bytes;
2264 }
2265
2266again:
e4058b54 2267 path->reada = READA_FORWARD;
5d4f98a2
YZ
2268 path->leave_spinning = 1;
2269 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
2270 path, 0, 1);
2271 if (ret < 0) {
2272 err = ret;
2273 goto out;
2274 }
2275 if (ret > 0) {
3173a18f 2276 if (metadata) {
55994887
FDBM
2277 if (path->slots[0] > 0) {
2278 path->slots[0]--;
2279 btrfs_item_key_to_cpu(path->nodes[0], &key,
2280 path->slots[0]);
2281 if (key.objectid == node->bytenr &&
2282 key.type == BTRFS_EXTENT_ITEM_KEY &&
2283 key.offset == node->num_bytes)
2284 ret = 0;
2285 }
2286 if (ret > 0) {
2287 btrfs_release_path(path);
2288 metadata = 0;
3173a18f 2289
55994887
FDBM
2290 key.objectid = node->bytenr;
2291 key.offset = node->num_bytes;
2292 key.type = BTRFS_EXTENT_ITEM_KEY;
2293 goto again;
2294 }
2295 } else {
2296 err = -EIO;
2297 goto out;
3173a18f 2298 }
5d4f98a2
YZ
2299 }
2300
2301 leaf = path->nodes[0];
2302 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2303#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2304 if (item_size < sizeof(*ei)) {
2305 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
2306 path, (u64)-1, 0);
2307 if (ret < 0) {
2308 err = ret;
2309 goto out;
2310 }
2311 leaf = path->nodes[0];
2312 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2313 }
2314#endif
2315 BUG_ON(item_size < sizeof(*ei));
2316 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2317 __run_delayed_extent_op(extent_op, leaf, ei);
56bec294 2318
5d4f98a2
YZ
2319 btrfs_mark_buffer_dirty(leaf);
2320out:
2321 btrfs_free_path(path);
2322 return err;
56bec294
CM
2323}
2324
5d4f98a2
YZ
2325static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2326 struct btrfs_root *root,
2327 struct btrfs_delayed_ref_node *node,
2328 struct btrfs_delayed_extent_op *extent_op,
2329 int insert_reserved)
56bec294
CM
2330{
2331 int ret = 0;
5d4f98a2
YZ
2332 struct btrfs_delayed_tree_ref *ref;
2333 struct btrfs_key ins;
2334 u64 parent = 0;
2335 u64 ref_root = 0;
3173a18f
JB
2336 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
2337 SKINNY_METADATA);
56bec294 2338
5d4f98a2 2339 ref = btrfs_delayed_node_to_tree_ref(node);
bc074524 2340 trace_run_delayed_tree_ref(root->fs_info, node, ref, node->action);
599c75ec 2341
5d4f98a2
YZ
2342 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2343 parent = ref->parent;
fcebe456 2344 ref_root = ref->root;
5d4f98a2 2345
3173a18f
JB
2346 ins.objectid = node->bytenr;
2347 if (skinny_metadata) {
2348 ins.offset = ref->level;
2349 ins.type = BTRFS_METADATA_ITEM_KEY;
2350 } else {
2351 ins.offset = node->num_bytes;
2352 ins.type = BTRFS_EXTENT_ITEM_KEY;
2353 }
2354
02794222
LB
2355 if (node->ref_mod != 1) {
2356 btrfs_err(root->fs_info,
2357 "btree block(%llu) has %d references rather than 1: action %d ref_root %llu parent %llu",
2358 node->bytenr, node->ref_mod, node->action, ref_root,
2359 parent);
2360 return -EIO;
2361 }
5d4f98a2 2362 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
3173a18f 2363 BUG_ON(!extent_op || !extent_op->update_flags);
5d4f98a2
YZ
2364 ret = alloc_reserved_tree_block(trans, root,
2365 parent, ref_root,
2366 extent_op->flags_to_set,
2367 &extent_op->key,
b06c4bf5 2368 ref->level, &ins);
5d4f98a2 2369 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
c682f9b3
QW
2370 ret = __btrfs_inc_extent_ref(trans, root, node,
2371 parent, ref_root,
2372 ref->level, 0, 1,
fcebe456 2373 extent_op);
5d4f98a2 2374 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
c682f9b3
QW
2375 ret = __btrfs_free_extent(trans, root, node,
2376 parent, ref_root,
2377 ref->level, 0, 1, extent_op);
5d4f98a2
YZ
2378 } else {
2379 BUG();
2380 }
56bec294
CM
2381 return ret;
2382}
2383
2384/* helper function to actually process a single delayed ref entry */
5d4f98a2
YZ
2385static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2386 struct btrfs_root *root,
2387 struct btrfs_delayed_ref_node *node,
2388 struct btrfs_delayed_extent_op *extent_op,
2389 int insert_reserved)
56bec294 2390{
79787eaa
JM
2391 int ret = 0;
2392
857cc2fc
JB
2393 if (trans->aborted) {
2394 if (insert_reserved)
2395 btrfs_pin_extent(root, node->bytenr,
2396 node->num_bytes, 1);
79787eaa 2397 return 0;
857cc2fc 2398 }
79787eaa 2399
5d4f98a2 2400 if (btrfs_delayed_ref_is_head(node)) {
56bec294
CM
2401 struct btrfs_delayed_ref_head *head;
2402 /*
2403 * we've hit the end of the chain and we were supposed
2404 * to insert this extent into the tree. But, it got
2405 * deleted before we ever needed to insert it, so all
2406 * we have to do is clean up the accounting
2407 */
5d4f98a2
YZ
2408 BUG_ON(extent_op);
2409 head = btrfs_delayed_node_to_head(node);
bc074524
JM
2410 trace_run_delayed_ref_head(root->fs_info, node, head,
2411 node->action);
599c75ec 2412
56bec294 2413 if (insert_reserved) {
f0486c68
YZ
2414 btrfs_pin_extent(root, node->bytenr,
2415 node->num_bytes, 1);
5d4f98a2
YZ
2416 if (head->is_data) {
2417 ret = btrfs_del_csums(trans, root,
2418 node->bytenr,
2419 node->num_bytes);
5d4f98a2 2420 }
56bec294 2421 }
297d750b
QW
2422
2423 /* Also free its reserved qgroup space */
2424 btrfs_qgroup_free_delayed_ref(root->fs_info,
2425 head->qgroup_ref_root,
2426 head->qgroup_reserved);
79787eaa 2427 return ret;
56bec294
CM
2428 }
2429
5d4f98a2
YZ
2430 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2431 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2432 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2433 insert_reserved);
2434 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2435 node->type == BTRFS_SHARED_DATA_REF_KEY)
2436 ret = run_delayed_data_ref(trans, root, node, extent_op,
2437 insert_reserved);
2438 else
2439 BUG();
2440 return ret;
56bec294
CM
2441}
2442
c6fc2454 2443static inline struct btrfs_delayed_ref_node *
56bec294
CM
2444select_delayed_ref(struct btrfs_delayed_ref_head *head)
2445{
cffc3374
FM
2446 struct btrfs_delayed_ref_node *ref;
2447
c6fc2454
QW
2448 if (list_empty(&head->ref_list))
2449 return NULL;
d7df2c79 2450
cffc3374
FM
2451 /*
2452 * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first.
2453 * This is to prevent a ref count from going down to zero, which deletes
2454 * the extent item from the extent tree, when there still are references
2455 * to add, which would fail because they would not find the extent item.
2456 */
2457 list_for_each_entry(ref, &head->ref_list, list) {
2458 if (ref->action == BTRFS_ADD_DELAYED_REF)
2459 return ref;
2460 }
2461
c6fc2454
QW
2462 return list_entry(head->ref_list.next, struct btrfs_delayed_ref_node,
2463 list);
56bec294
CM
2464}
2465
79787eaa
JM
2466/*
2467 * Returns 0 on success or if called with an already aborted transaction.
2468 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2469 */
d7df2c79
JB
2470static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2471 struct btrfs_root *root,
2472 unsigned long nr)
56bec294 2473{
56bec294
CM
2474 struct btrfs_delayed_ref_root *delayed_refs;
2475 struct btrfs_delayed_ref_node *ref;
2476 struct btrfs_delayed_ref_head *locked_ref = NULL;
5d4f98a2 2477 struct btrfs_delayed_extent_op *extent_op;
097b8a7c 2478 struct btrfs_fs_info *fs_info = root->fs_info;
0a2b2a84 2479 ktime_t start = ktime_get();
56bec294 2480 int ret;
d7df2c79 2481 unsigned long count = 0;
0a2b2a84 2482 unsigned long actual_count = 0;
56bec294 2483 int must_insert_reserved = 0;
56bec294
CM
2484
2485 delayed_refs = &trans->transaction->delayed_refs;
56bec294
CM
2486 while (1) {
2487 if (!locked_ref) {
d7df2c79 2488 if (count >= nr)
56bec294 2489 break;
56bec294 2490
d7df2c79
JB
2491 spin_lock(&delayed_refs->lock);
2492 locked_ref = btrfs_select_ref_head(trans);
2493 if (!locked_ref) {
2494 spin_unlock(&delayed_refs->lock);
2495 break;
2496 }
c3e69d58
CM
2497
2498 /* grab the lock that says we are going to process
2499 * all the refs for this head */
2500 ret = btrfs_delayed_ref_lock(trans, locked_ref);
d7df2c79 2501 spin_unlock(&delayed_refs->lock);
c3e69d58
CM
2502 /*
2503 * we may have dropped the spin lock to get the head
2504 * mutex lock, and that might have given someone else
2505 * time to free the head. If that's true, it has been
2506 * removed from our list and we can move on.
2507 */
2508 if (ret == -EAGAIN) {
2509 locked_ref = NULL;
2510 count++;
2511 continue;
56bec294
CM
2512 }
2513 }
a28ec197 2514
2c3cf7d5
FM
2515 /*
2516 * We need to try and merge add/drops of the same ref since we
2517 * can run into issues with relocate dropping the implicit ref
2518 * and then it being added back again before the drop can
2519 * finish. If we merged anything we need to re-loop so we can
2520 * get a good ref.
2521 * Or we can get node references of the same type that weren't
2522 * merged when created due to bumps in the tree mod seq, and
2523 * we need to merge them to prevent adding an inline extent
2524 * backref before dropping it (triggering a BUG_ON at
2525 * insert_inline_extent_backref()).
2526 */
d7df2c79 2527 spin_lock(&locked_ref->lock);
2c3cf7d5
FM
2528 btrfs_merge_delayed_refs(trans, fs_info, delayed_refs,
2529 locked_ref);
ae1e206b 2530
d1270cd9
AJ
2531 /*
2532 * locked_ref is the head node, so we have to go one
2533 * node back for any delayed ref updates
2534 */
2535 ref = select_delayed_ref(locked_ref);
2536
2537 if (ref && ref->seq &&
097b8a7c 2538 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
d7df2c79 2539 spin_unlock(&locked_ref->lock);
093486c4 2540 btrfs_delayed_ref_unlock(locked_ref);
d7df2c79
JB
2541 spin_lock(&delayed_refs->lock);
2542 locked_ref->processing = 0;
d1270cd9
AJ
2543 delayed_refs->num_heads_ready++;
2544 spin_unlock(&delayed_refs->lock);
d7df2c79 2545 locked_ref = NULL;
d1270cd9 2546 cond_resched();
27a377db 2547 count++;
d1270cd9
AJ
2548 continue;
2549 }
2550
56bec294
CM
2551 /*
2552 * record the must insert reserved flag before we
2553 * drop the spin lock.
2554 */
2555 must_insert_reserved = locked_ref->must_insert_reserved;
2556 locked_ref->must_insert_reserved = 0;
7bb86316 2557
5d4f98a2
YZ
2558 extent_op = locked_ref->extent_op;
2559 locked_ref->extent_op = NULL;
2560
56bec294 2561 if (!ref) {
d7df2c79
JB
2562
2563
56bec294
CM
2564 /* All delayed refs have been processed, Go ahead
2565 * and send the head node to run_one_delayed_ref,
2566 * so that any accounting fixes can happen
2567 */
2568 ref = &locked_ref->node;
5d4f98a2
YZ
2569
2570 if (extent_op && must_insert_reserved) {
78a6184a 2571 btrfs_free_delayed_extent_op(extent_op);
5d4f98a2
YZ
2572 extent_op = NULL;
2573 }
2574
2575 if (extent_op) {
d7df2c79 2576 spin_unlock(&locked_ref->lock);
5d4f98a2
YZ
2577 ret = run_delayed_extent_op(trans, root,
2578 ref, extent_op);
78a6184a 2579 btrfs_free_delayed_extent_op(extent_op);
5d4f98a2 2580
79787eaa 2581 if (ret) {
857cc2fc
JB
2582 /*
2583 * Need to reset must_insert_reserved if
2584 * there was an error so the abort stuff
2585 * can cleanup the reserved space
2586 * properly.
2587 */
2588 if (must_insert_reserved)
2589 locked_ref->must_insert_reserved = 1;
d7df2c79 2590 locked_ref->processing = 0;
5d163e0e
JM
2591 btrfs_debug(fs_info,
2592 "run_delayed_extent_op returned %d",
2593 ret);
093486c4 2594 btrfs_delayed_ref_unlock(locked_ref);
79787eaa
JM
2595 return ret;
2596 }
d7df2c79 2597 continue;
5d4f98a2 2598 }
02217ed2 2599
d7df2c79 2600 /*
01327610 2601 * Need to drop our head ref lock and re-acquire the
d7df2c79
JB
2602 * delayed ref lock and then re-check to make sure
2603 * nobody got added.
2604 */
2605 spin_unlock(&locked_ref->lock);
2606 spin_lock(&delayed_refs->lock);
2607 spin_lock(&locked_ref->lock);
c6fc2454 2608 if (!list_empty(&locked_ref->ref_list) ||
573a0755 2609 locked_ref->extent_op) {
d7df2c79
JB
2610 spin_unlock(&locked_ref->lock);
2611 spin_unlock(&delayed_refs->lock);
2612 continue;
2613 }
2614 ref->in_tree = 0;
2615 delayed_refs->num_heads--;
c46effa6
LB
2616 rb_erase(&locked_ref->href_node,
2617 &delayed_refs->href_root);
d7df2c79
JB
2618 spin_unlock(&delayed_refs->lock);
2619 } else {
0a2b2a84 2620 actual_count++;
d7df2c79 2621 ref->in_tree = 0;
c6fc2454 2622 list_del(&ref->list);
c46effa6 2623 }
d7df2c79
JB
2624 atomic_dec(&delayed_refs->num_entries);
2625
093486c4 2626 if (!btrfs_delayed_ref_is_head(ref)) {
22cd2e7d
AJ
2627 /*
2628 * when we play the delayed ref, also correct the
2629 * ref_mod on head
2630 */
2631 switch (ref->action) {
2632 case BTRFS_ADD_DELAYED_REF:
2633 case BTRFS_ADD_DELAYED_EXTENT:
2634 locked_ref->node.ref_mod -= ref->ref_mod;
2635 break;
2636 case BTRFS_DROP_DELAYED_REF:
2637 locked_ref->node.ref_mod += ref->ref_mod;
2638 break;
2639 default:
2640 WARN_ON(1);
2641 }
2642 }
d7df2c79 2643 spin_unlock(&locked_ref->lock);
925baedd 2644
5d4f98a2 2645 ret = run_one_delayed_ref(trans, root, ref, extent_op,
56bec294 2646 must_insert_reserved);
eb099670 2647
78a6184a 2648 btrfs_free_delayed_extent_op(extent_op);
79787eaa 2649 if (ret) {
9d1032cc 2650 spin_lock(&delayed_refs->lock);
d7df2c79 2651 locked_ref->processing = 0;
9d1032cc
WX
2652 delayed_refs->num_heads_ready++;
2653 spin_unlock(&delayed_refs->lock);
093486c4
MX
2654 btrfs_delayed_ref_unlock(locked_ref);
2655 btrfs_put_delayed_ref(ref);
5d163e0e
JM
2656 btrfs_debug(fs_info, "run_one_delayed_ref returned %d",
2657 ret);
79787eaa
JM
2658 return ret;
2659 }
2660
093486c4
MX
2661 /*
2662 * If this node is a head, that means all the refs in this head
2663 * have been dealt with, and we will pick the next head to deal
2664 * with, so we must unlock the head and drop it from the cluster
2665 * list before we release it.
2666 */
2667 if (btrfs_delayed_ref_is_head(ref)) {
1262133b
JB
2668 if (locked_ref->is_data &&
2669 locked_ref->total_ref_mod < 0) {
2670 spin_lock(&delayed_refs->lock);
2671 delayed_refs->pending_csums -= ref->num_bytes;
2672 spin_unlock(&delayed_refs->lock);
2673 }
093486c4
MX
2674 btrfs_delayed_ref_unlock(locked_ref);
2675 locked_ref = NULL;
2676 }
2677 btrfs_put_delayed_ref(ref);
2678 count++;
c3e69d58 2679 cond_resched();
c3e69d58 2680 }
0a2b2a84
JB
2681
2682 /*
2683 * We don't want to include ref heads since we can have empty ref heads
2684 * and those will drastically skew our runtime down since we just do
2685 * accounting, no actual extent tree updates.
2686 */
2687 if (actual_count > 0) {
2688 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2689 u64 avg;
2690
2691 /*
2692 * We weigh the current average higher than our current runtime
2693 * to avoid large swings in the average.
2694 */
2695 spin_lock(&delayed_refs->lock);
2696 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
f8c269d7 2697 fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */
0a2b2a84
JB
2698 spin_unlock(&delayed_refs->lock);
2699 }
d7df2c79 2700 return 0;
c3e69d58
CM
2701}
2702
709c0486
AJ
2703#ifdef SCRAMBLE_DELAYED_REFS
2704/*
2705 * Normally delayed refs get processed in ascending bytenr order. This
2706 * correlates in most cases to the order added. To expose dependencies on this
2707 * order, we start to process the tree in the middle instead of the beginning
2708 */
2709static u64 find_middle(struct rb_root *root)
2710{
2711 struct rb_node *n = root->rb_node;
2712 struct btrfs_delayed_ref_node *entry;
2713 int alt = 1;
2714 u64 middle;
2715 u64 first = 0, last = 0;
2716
2717 n = rb_first(root);
2718 if (n) {
2719 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2720 first = entry->bytenr;
2721 }
2722 n = rb_last(root);
2723 if (n) {
2724 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2725 last = entry->bytenr;
2726 }
2727 n = root->rb_node;
2728
2729 while (n) {
2730 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2731 WARN_ON(!entry->in_tree);
2732
2733 middle = entry->bytenr;
2734
2735 if (alt)
2736 n = n->rb_left;
2737 else
2738 n = n->rb_right;
2739
2740 alt = 1 - alt;
2741 }
2742 return middle;
2743}
2744#endif
2745
1be41b78
JB
2746static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads)
2747{
2748 u64 num_bytes;
2749
2750 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2751 sizeof(struct btrfs_extent_inline_ref));
2752 if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2753 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2754
2755 /*
2756 * We don't ever fill up leaves all the way so multiply by 2 just to be
01327610 2757 * closer to what we're really going to want to use.
1be41b78 2758 */
f8c269d7 2759 return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root));
1be41b78
JB
2760}
2761
1262133b
JB
2762/*
2763 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
2764 * would require to store the csums for that many bytes.
2765 */
28f75a0e 2766u64 btrfs_csum_bytes_to_leaves(struct btrfs_root *root, u64 csum_bytes)
1262133b
JB
2767{
2768 u64 csum_size;
2769 u64 num_csums_per_leaf;
2770 u64 num_csums;
2771
14a1e067 2772 csum_size = BTRFS_MAX_ITEM_SIZE(root);
1262133b
JB
2773 num_csums_per_leaf = div64_u64(csum_size,
2774 (u64)btrfs_super_csum_size(root->fs_info->super_copy));
2775 num_csums = div64_u64(csum_bytes, root->sectorsize);
2776 num_csums += num_csums_per_leaf - 1;
2777 num_csums = div64_u64(num_csums, num_csums_per_leaf);
2778 return num_csums;
2779}
2780
0a2b2a84 2781int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
1be41b78
JB
2782 struct btrfs_root *root)
2783{
2784 struct btrfs_block_rsv *global_rsv;
2785 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
1262133b 2786 u64 csum_bytes = trans->transaction->delayed_refs.pending_csums;
cb723e49
JB
2787 u64 num_dirty_bgs = trans->transaction->num_dirty_bgs;
2788 u64 num_bytes, num_dirty_bgs_bytes;
1be41b78
JB
2789 int ret = 0;
2790
2791 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
2792 num_heads = heads_to_leaves(root, num_heads);
2793 if (num_heads > 1)
707e8a07 2794 num_bytes += (num_heads - 1) * root->nodesize;
1be41b78 2795 num_bytes <<= 1;
28f75a0e 2796 num_bytes += btrfs_csum_bytes_to_leaves(root, csum_bytes) * root->nodesize;
cb723e49
JB
2797 num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(root,
2798 num_dirty_bgs);
1be41b78
JB
2799 global_rsv = &root->fs_info->global_block_rsv;
2800
2801 /*
2802 * If we can't allocate any more chunks lets make sure we have _lots_ of
2803 * wiggle room since running delayed refs can create more delayed refs.
2804 */
cb723e49
JB
2805 if (global_rsv->space_info->full) {
2806 num_dirty_bgs_bytes <<= 1;
1be41b78 2807 num_bytes <<= 1;
cb723e49 2808 }
1be41b78
JB
2809
2810 spin_lock(&global_rsv->lock);
cb723e49 2811 if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes)
1be41b78
JB
2812 ret = 1;
2813 spin_unlock(&global_rsv->lock);
2814 return ret;
2815}
2816
0a2b2a84
JB
2817int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
2818 struct btrfs_root *root)
2819{
2820 struct btrfs_fs_info *fs_info = root->fs_info;
2821 u64 num_entries =
2822 atomic_read(&trans->transaction->delayed_refs.num_entries);
2823 u64 avg_runtime;
a79b7d4b 2824 u64 val;
0a2b2a84
JB
2825
2826 smp_mb();
2827 avg_runtime = fs_info->avg_delayed_ref_runtime;
a79b7d4b 2828 val = num_entries * avg_runtime;
dc1a90c6 2829 if (val >= NSEC_PER_SEC)
0a2b2a84 2830 return 1;
a79b7d4b
CM
2831 if (val >= NSEC_PER_SEC / 2)
2832 return 2;
0a2b2a84
JB
2833
2834 return btrfs_check_space_for_delayed_refs(trans, root);
2835}
2836
a79b7d4b
CM
2837struct async_delayed_refs {
2838 struct btrfs_root *root;
31b9655f 2839 u64 transid;
a79b7d4b
CM
2840 int count;
2841 int error;
2842 int sync;
2843 struct completion wait;
2844 struct btrfs_work work;
2845};
2846
2847static void delayed_ref_async_start(struct btrfs_work *work)
2848{
2849 struct async_delayed_refs *async;
2850 struct btrfs_trans_handle *trans;
2851 int ret;
2852
2853 async = container_of(work, struct async_delayed_refs, work);
2854
0f873eca
CM
2855 /* if the commit is already started, we don't need to wait here */
2856 if (btrfs_transaction_blocked(async->root->fs_info))
31b9655f 2857 goto done;
31b9655f 2858
0f873eca
CM
2859 trans = btrfs_join_transaction(async->root);
2860 if (IS_ERR(trans)) {
2861 async->error = PTR_ERR(trans);
a79b7d4b
CM
2862 goto done;
2863 }
2864
2865 /*
01327610 2866 * trans->sync means that when we call end_transaction, we won't
a79b7d4b
CM
2867 * wait on delayed refs
2868 */
2869 trans->sync = true;
0f873eca
CM
2870
2871 /* Don't bother flushing if we got into a different transaction */
2872 if (trans->transid > async->transid)
2873 goto end;
2874
a79b7d4b
CM
2875 ret = btrfs_run_delayed_refs(trans, async->root, async->count);
2876 if (ret)
2877 async->error = ret;
0f873eca 2878end:
a79b7d4b
CM
2879 ret = btrfs_end_transaction(trans, async->root);
2880 if (ret && !async->error)
2881 async->error = ret;
2882done:
2883 if (async->sync)
2884 complete(&async->wait);
2885 else
2886 kfree(async);
2887}
2888
2889int btrfs_async_run_delayed_refs(struct btrfs_root *root,
31b9655f 2890 unsigned long count, u64 transid, int wait)
a79b7d4b
CM
2891{
2892 struct async_delayed_refs *async;
2893 int ret;
2894
2895 async = kmalloc(sizeof(*async), GFP_NOFS);
2896 if (!async)
2897 return -ENOMEM;
2898
2899 async->root = root->fs_info->tree_root;
2900 async->count = count;
2901 async->error = 0;
31b9655f 2902 async->transid = transid;
a79b7d4b
CM
2903 if (wait)
2904 async->sync = 1;
2905 else
2906 async->sync = 0;
2907 init_completion(&async->wait);
2908
9e0af237
LB
2909 btrfs_init_work(&async->work, btrfs_extent_refs_helper,
2910 delayed_ref_async_start, NULL, NULL);
a79b7d4b
CM
2911
2912 btrfs_queue_work(root->fs_info->extent_workers, &async->work);
2913
2914 if (wait) {
2915 wait_for_completion(&async->wait);
2916 ret = async->error;
2917 kfree(async);
2918 return ret;
2919 }
2920 return 0;
2921}
2922
c3e69d58
CM
2923/*
2924 * this starts processing the delayed reference count updates and
2925 * extent insertions we have queued up so far. count can be
2926 * 0, which means to process everything in the tree at the start
2927 * of the run (but not newly added entries), or it can be some target
2928 * number you'd like to process.
79787eaa
JM
2929 *
2930 * Returns 0 on success or if called with an aborted transaction
2931 * Returns <0 on error and aborts the transaction
c3e69d58
CM
2932 */
2933int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2934 struct btrfs_root *root, unsigned long count)
2935{
2936 struct rb_node *node;
2937 struct btrfs_delayed_ref_root *delayed_refs;
c46effa6 2938 struct btrfs_delayed_ref_head *head;
c3e69d58
CM
2939 int ret;
2940 int run_all = count == (unsigned long)-1;
d9a0540a 2941 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
c3e69d58 2942
79787eaa
JM
2943 /* We'll clean this up in btrfs_cleanup_transaction */
2944 if (trans->aborted)
2945 return 0;
2946
afcdd129 2947 if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &root->fs_info->flags))
511711af
CM
2948 return 0;
2949
c3e69d58
CM
2950 if (root == root->fs_info->extent_root)
2951 root = root->fs_info->tree_root;
2952
2953 delayed_refs = &trans->transaction->delayed_refs;
26455d33 2954 if (count == 0)
d7df2c79 2955 count = atomic_read(&delayed_refs->num_entries) * 2;
bb721703 2956
c3e69d58 2957again:
709c0486
AJ
2958#ifdef SCRAMBLE_DELAYED_REFS
2959 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2960#endif
d9a0540a 2961 trans->can_flush_pending_bgs = false;
d7df2c79
JB
2962 ret = __btrfs_run_delayed_refs(trans, root, count);
2963 if (ret < 0) {
66642832 2964 btrfs_abort_transaction(trans, ret);
d7df2c79 2965 return ret;
eb099670 2966 }
c3e69d58 2967
56bec294 2968 if (run_all) {
d7df2c79 2969 if (!list_empty(&trans->new_bgs))
ea658bad 2970 btrfs_create_pending_block_groups(trans, root);
ea658bad 2971
d7df2c79 2972 spin_lock(&delayed_refs->lock);
c46effa6 2973 node = rb_first(&delayed_refs->href_root);
d7df2c79
JB
2974 if (!node) {
2975 spin_unlock(&delayed_refs->lock);
56bec294 2976 goto out;
d7df2c79 2977 }
e9d0b13b 2978
56bec294 2979 while (node) {
c46effa6
LB
2980 head = rb_entry(node, struct btrfs_delayed_ref_head,
2981 href_node);
2982 if (btrfs_delayed_ref_is_head(&head->node)) {
2983 struct btrfs_delayed_ref_node *ref;
5caf2a00 2984
c46effa6 2985 ref = &head->node;
56bec294
CM
2986 atomic_inc(&ref->refs);
2987
2988 spin_unlock(&delayed_refs->lock);
8cc33e5c
DS
2989 /*
2990 * Mutex was contended, block until it's
2991 * released and try again
2992 */
56bec294
CM
2993 mutex_lock(&head->mutex);
2994 mutex_unlock(&head->mutex);
2995
2996 btrfs_put_delayed_ref(ref);
1887be66 2997 cond_resched();
56bec294 2998 goto again;
c46effa6
LB
2999 } else {
3000 WARN_ON(1);
56bec294
CM
3001 }
3002 node = rb_next(node);
3003 }
3004 spin_unlock(&delayed_refs->lock);
d7df2c79 3005 cond_resched();
56bec294 3006 goto again;
5f39d397 3007 }
54aa1f4d 3008out:
edf39272 3009 assert_qgroups_uptodate(trans);
d9a0540a 3010 trans->can_flush_pending_bgs = can_flush_pending_bgs;
a28ec197
CM
3011 return 0;
3012}
3013
5d4f98a2
YZ
3014int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
3015 struct btrfs_root *root,
3016 u64 bytenr, u64 num_bytes, u64 flags,
b1c79e09 3017 int level, int is_data)
5d4f98a2
YZ
3018{
3019 struct btrfs_delayed_extent_op *extent_op;
3020 int ret;
3021
78a6184a 3022 extent_op = btrfs_alloc_delayed_extent_op();
5d4f98a2
YZ
3023 if (!extent_op)
3024 return -ENOMEM;
3025
3026 extent_op->flags_to_set = flags;
35b3ad50
DS
3027 extent_op->update_flags = true;
3028 extent_op->update_key = false;
3029 extent_op->is_data = is_data ? true : false;
b1c79e09 3030 extent_op->level = level;
5d4f98a2 3031
66d7e7f0
AJ
3032 ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr,
3033 num_bytes, extent_op);
5d4f98a2 3034 if (ret)
78a6184a 3035 btrfs_free_delayed_extent_op(extent_op);
5d4f98a2
YZ
3036 return ret;
3037}
3038
3039static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
3040 struct btrfs_root *root,
3041 struct btrfs_path *path,
3042 u64 objectid, u64 offset, u64 bytenr)
3043{
3044 struct btrfs_delayed_ref_head *head;
3045 struct btrfs_delayed_ref_node *ref;
3046 struct btrfs_delayed_data_ref *data_ref;
3047 struct btrfs_delayed_ref_root *delayed_refs;
5d4f98a2
YZ
3048 int ret = 0;
3049
5d4f98a2
YZ
3050 delayed_refs = &trans->transaction->delayed_refs;
3051 spin_lock(&delayed_refs->lock);
3052 head = btrfs_find_delayed_ref_head(trans, bytenr);
d7df2c79
JB
3053 if (!head) {
3054 spin_unlock(&delayed_refs->lock);
3055 return 0;
3056 }
5d4f98a2
YZ
3057
3058 if (!mutex_trylock(&head->mutex)) {
3059 atomic_inc(&head->node.refs);
3060 spin_unlock(&delayed_refs->lock);
3061
b3b4aa74 3062 btrfs_release_path(path);
5d4f98a2 3063
8cc33e5c
DS
3064 /*
3065 * Mutex was contended, block until it's released and let
3066 * caller try again
3067 */
5d4f98a2
YZ
3068 mutex_lock(&head->mutex);
3069 mutex_unlock(&head->mutex);
3070 btrfs_put_delayed_ref(&head->node);
3071 return -EAGAIN;
3072 }
d7df2c79 3073 spin_unlock(&delayed_refs->lock);
5d4f98a2 3074
d7df2c79 3075 spin_lock(&head->lock);
c6fc2454 3076 list_for_each_entry(ref, &head->ref_list, list) {
d7df2c79
JB
3077 /* If it's a shared ref we know a cross reference exists */
3078 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
3079 ret = 1;
3080 break;
3081 }
5d4f98a2 3082
d7df2c79 3083 data_ref = btrfs_delayed_node_to_data_ref(ref);
5d4f98a2 3084
d7df2c79
JB
3085 /*
3086 * If our ref doesn't match the one we're currently looking at
3087 * then we have a cross reference.
3088 */
3089 if (data_ref->root != root->root_key.objectid ||
3090 data_ref->objectid != objectid ||
3091 data_ref->offset != offset) {
3092 ret = 1;
3093 break;
3094 }
5d4f98a2 3095 }
d7df2c79 3096 spin_unlock(&head->lock);
5d4f98a2 3097 mutex_unlock(&head->mutex);
5d4f98a2
YZ
3098 return ret;
3099}
3100
3101static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
3102 struct btrfs_root *root,
3103 struct btrfs_path *path,
3104 u64 objectid, u64 offset, u64 bytenr)
be20aa9d
CM
3105{
3106 struct btrfs_root *extent_root = root->fs_info->extent_root;
f321e491 3107 struct extent_buffer *leaf;
5d4f98a2
YZ
3108 struct btrfs_extent_data_ref *ref;
3109 struct btrfs_extent_inline_ref *iref;
3110 struct btrfs_extent_item *ei;
f321e491 3111 struct btrfs_key key;
5d4f98a2 3112 u32 item_size;
be20aa9d 3113 int ret;
925baedd 3114
be20aa9d 3115 key.objectid = bytenr;
31840ae1 3116 key.offset = (u64)-1;
f321e491 3117 key.type = BTRFS_EXTENT_ITEM_KEY;
be20aa9d 3118
be20aa9d
CM
3119 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3120 if (ret < 0)
3121 goto out;
79787eaa 3122 BUG_ON(ret == 0); /* Corruption */
80ff3856
YZ
3123
3124 ret = -ENOENT;
3125 if (path->slots[0] == 0)
31840ae1 3126 goto out;
be20aa9d 3127
31840ae1 3128 path->slots[0]--;
f321e491 3129 leaf = path->nodes[0];
5d4f98a2 3130 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
be20aa9d 3131
5d4f98a2 3132 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
be20aa9d 3133 goto out;
f321e491 3134
5d4f98a2
YZ
3135 ret = 1;
3136 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3137#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3138 if (item_size < sizeof(*ei)) {
3139 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
3140 goto out;
3141 }
3142#endif
3143 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
bd09835d 3144
5d4f98a2
YZ
3145 if (item_size != sizeof(*ei) +
3146 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
3147 goto out;
be20aa9d 3148
5d4f98a2
YZ
3149 if (btrfs_extent_generation(leaf, ei) <=
3150 btrfs_root_last_snapshot(&root->root_item))
3151 goto out;
3152
3153 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
3154 if (btrfs_extent_inline_ref_type(leaf, iref) !=
3155 BTRFS_EXTENT_DATA_REF_KEY)
3156 goto out;
3157
3158 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
3159 if (btrfs_extent_refs(leaf, ei) !=
3160 btrfs_extent_data_ref_count(leaf, ref) ||
3161 btrfs_extent_data_ref_root(leaf, ref) !=
3162 root->root_key.objectid ||
3163 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
3164 btrfs_extent_data_ref_offset(leaf, ref) != offset)
3165 goto out;
3166
3167 ret = 0;
3168out:
3169 return ret;
3170}
3171
3172int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
3173 struct btrfs_root *root,
3174 u64 objectid, u64 offset, u64 bytenr)
3175{
3176 struct btrfs_path *path;
3177 int ret;
3178 int ret2;
3179
3180 path = btrfs_alloc_path();
3181 if (!path)
3182 return -ENOENT;
3183
3184 do {
3185 ret = check_committed_ref(trans, root, path, objectid,
3186 offset, bytenr);
3187 if (ret && ret != -ENOENT)
f321e491 3188 goto out;
80ff3856 3189
5d4f98a2
YZ
3190 ret2 = check_delayed_ref(trans, root, path, objectid,
3191 offset, bytenr);
3192 } while (ret2 == -EAGAIN);
3193
3194 if (ret2 && ret2 != -ENOENT) {
3195 ret = ret2;
3196 goto out;
f321e491 3197 }
5d4f98a2
YZ
3198
3199 if (ret != -ENOENT || ret2 != -ENOENT)
3200 ret = 0;
be20aa9d 3201out:
80ff3856 3202 btrfs_free_path(path);
f0486c68
YZ
3203 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3204 WARN_ON(ret > 0);
f321e491 3205 return ret;
be20aa9d 3206}
c5739bba 3207
5d4f98a2 3208static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
b7a9f29f 3209 struct btrfs_root *root,
5d4f98a2 3210 struct extent_buffer *buf,
e339a6b0 3211 int full_backref, int inc)
31840ae1
ZY
3212{
3213 u64 bytenr;
5d4f98a2
YZ
3214 u64 num_bytes;
3215 u64 parent;
31840ae1 3216 u64 ref_root;
31840ae1 3217 u32 nritems;
31840ae1
ZY
3218 struct btrfs_key key;
3219 struct btrfs_file_extent_item *fi;
3220 int i;
3221 int level;
3222 int ret = 0;
31840ae1 3223 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
b06c4bf5 3224 u64, u64, u64, u64, u64, u64);
31840ae1 3225
fccb84c9 3226
f5ee5c9a 3227 if (btrfs_is_testing(root->fs_info))
faa2dbf0 3228 return 0;
fccb84c9 3229
31840ae1 3230 ref_root = btrfs_header_owner(buf);
31840ae1
ZY
3231 nritems = btrfs_header_nritems(buf);
3232 level = btrfs_header_level(buf);
3233
27cdeb70 3234 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
5d4f98a2 3235 return 0;
31840ae1 3236
5d4f98a2
YZ
3237 if (inc)
3238 process_func = btrfs_inc_extent_ref;
3239 else
3240 process_func = btrfs_free_extent;
31840ae1 3241
5d4f98a2
YZ
3242 if (full_backref)
3243 parent = buf->start;
3244 else
3245 parent = 0;
3246
3247 for (i = 0; i < nritems; i++) {
31840ae1 3248 if (level == 0) {
5d4f98a2 3249 btrfs_item_key_to_cpu(buf, &key, i);
962a298f 3250 if (key.type != BTRFS_EXTENT_DATA_KEY)
31840ae1 3251 continue;
5d4f98a2 3252 fi = btrfs_item_ptr(buf, i,
31840ae1
ZY
3253 struct btrfs_file_extent_item);
3254 if (btrfs_file_extent_type(buf, fi) ==
3255 BTRFS_FILE_EXTENT_INLINE)
3256 continue;
3257 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3258 if (bytenr == 0)
3259 continue;
5d4f98a2
YZ
3260
3261 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3262 key.offset -= btrfs_file_extent_offset(buf, fi);
3263 ret = process_func(trans, root, bytenr, num_bytes,
3264 parent, ref_root, key.objectid,
b06c4bf5 3265 key.offset);
31840ae1
ZY
3266 if (ret)
3267 goto fail;
3268 } else {
5d4f98a2 3269 bytenr = btrfs_node_blockptr(buf, i);
707e8a07 3270 num_bytes = root->nodesize;
5d4f98a2 3271 ret = process_func(trans, root, bytenr, num_bytes,
b06c4bf5 3272 parent, ref_root, level - 1, 0);
31840ae1
ZY
3273 if (ret)
3274 goto fail;
3275 }
3276 }
3277 return 0;
3278fail:
5d4f98a2
YZ
3279 return ret;
3280}
3281
3282int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
e339a6b0 3283 struct extent_buffer *buf, int full_backref)
5d4f98a2 3284{
e339a6b0 3285 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
5d4f98a2
YZ
3286}
3287
3288int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
e339a6b0 3289 struct extent_buffer *buf, int full_backref)
5d4f98a2 3290{
e339a6b0 3291 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
31840ae1
ZY
3292}
3293
9078a3e1
CM
3294static int write_one_cache_group(struct btrfs_trans_handle *trans,
3295 struct btrfs_root *root,
3296 struct btrfs_path *path,
3297 struct btrfs_block_group_cache *cache)
3298{
3299 int ret;
9078a3e1 3300 struct btrfs_root *extent_root = root->fs_info->extent_root;
5f39d397
CM
3301 unsigned long bi;
3302 struct extent_buffer *leaf;
9078a3e1 3303
9078a3e1 3304 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
df95e7f0
JB
3305 if (ret) {
3306 if (ret > 0)
3307 ret = -ENOENT;
54aa1f4d 3308 goto fail;
df95e7f0 3309 }
5f39d397
CM
3310
3311 leaf = path->nodes[0];
3312 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3313 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3314 btrfs_mark_buffer_dirty(leaf);
54aa1f4d 3315fail:
24b89d08 3316 btrfs_release_path(path);
df95e7f0 3317 return ret;
9078a3e1
CM
3318
3319}
3320
4a8c9a62
YZ
3321static struct btrfs_block_group_cache *
3322next_block_group(struct btrfs_root *root,
3323 struct btrfs_block_group_cache *cache)
3324{
3325 struct rb_node *node;
292cbd51 3326
4a8c9a62 3327 spin_lock(&root->fs_info->block_group_cache_lock);
292cbd51
FM
3328
3329 /* If our block group was removed, we need a full search. */
3330 if (RB_EMPTY_NODE(&cache->cache_node)) {
3331 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3332
3333 spin_unlock(&root->fs_info->block_group_cache_lock);
3334 btrfs_put_block_group(cache);
3335 cache = btrfs_lookup_first_block_group(root->fs_info,
3336 next_bytenr);
3337 return cache;
3338 }
4a8c9a62
YZ
3339 node = rb_next(&cache->cache_node);
3340 btrfs_put_block_group(cache);
3341 if (node) {
3342 cache = rb_entry(node, struct btrfs_block_group_cache,
3343 cache_node);
11dfe35a 3344 btrfs_get_block_group(cache);
4a8c9a62
YZ
3345 } else
3346 cache = NULL;
3347 spin_unlock(&root->fs_info->block_group_cache_lock);
3348 return cache;
3349}
3350
0af3d00b
JB
3351static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3352 struct btrfs_trans_handle *trans,
3353 struct btrfs_path *path)
3354{
3355 struct btrfs_root *root = block_group->fs_info->tree_root;
3356 struct inode *inode = NULL;
3357 u64 alloc_hint = 0;
2b20982e 3358 int dcs = BTRFS_DC_ERROR;
f8c269d7 3359 u64 num_pages = 0;
0af3d00b
JB
3360 int retries = 0;
3361 int ret = 0;
3362
3363 /*
3364 * If this block group is smaller than 100 megs don't bother caching the
3365 * block group.
3366 */
ee22184b 3367 if (block_group->key.offset < (100 * SZ_1M)) {
0af3d00b
JB
3368 spin_lock(&block_group->lock);
3369 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3370 spin_unlock(&block_group->lock);
3371 return 0;
3372 }
3373
0c0ef4bc
JB
3374 if (trans->aborted)
3375 return 0;
0af3d00b
JB
3376again:
3377 inode = lookup_free_space_inode(root, block_group, path);
3378 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3379 ret = PTR_ERR(inode);
b3b4aa74 3380 btrfs_release_path(path);
0af3d00b
JB
3381 goto out;
3382 }
3383
3384 if (IS_ERR(inode)) {
3385 BUG_ON(retries);
3386 retries++;
3387
3388 if (block_group->ro)
3389 goto out_free;
3390
3391 ret = create_free_space_inode(root, trans, block_group, path);
3392 if (ret)
3393 goto out_free;
3394 goto again;
3395 }
3396
5b0e95bf
JB
3397 /* We've already setup this transaction, go ahead and exit */
3398 if (block_group->cache_generation == trans->transid &&
3399 i_size_read(inode)) {
3400 dcs = BTRFS_DC_SETUP;
3401 goto out_put;
3402 }
3403
0af3d00b
JB
3404 /*
3405 * We want to set the generation to 0, that way if anything goes wrong
3406 * from here on out we know not to trust this cache when we load up next
3407 * time.
3408 */
3409 BTRFS_I(inode)->generation = 0;
3410 ret = btrfs_update_inode(trans, root, inode);
0c0ef4bc
JB
3411 if (ret) {
3412 /*
3413 * So theoretically we could recover from this, simply set the
3414 * super cache generation to 0 so we know to invalidate the
3415 * cache, but then we'd have to keep track of the block groups
3416 * that fail this way so we know we _have_ to reset this cache
3417 * before the next commit or risk reading stale cache. So to
3418 * limit our exposure to horrible edge cases lets just abort the
3419 * transaction, this only happens in really bad situations
3420 * anyway.
3421 */
66642832 3422 btrfs_abort_transaction(trans, ret);
0c0ef4bc
JB
3423 goto out_put;
3424 }
0af3d00b
JB
3425 WARN_ON(ret);
3426
3427 if (i_size_read(inode) > 0) {
7b61cd92
MX
3428 ret = btrfs_check_trunc_cache_free_space(root,
3429 &root->fs_info->global_block_rsv);
3430 if (ret)
3431 goto out_put;
3432
1bbc621e 3433 ret = btrfs_truncate_free_space_cache(root, trans, NULL, inode);
0af3d00b
JB
3434 if (ret)
3435 goto out_put;
3436 }
3437
3438 spin_lock(&block_group->lock);
cf7c1ef6 3439 if (block_group->cached != BTRFS_CACHE_FINISHED ||
3cdde224 3440 !btrfs_test_opt(root->fs_info, SPACE_CACHE)) {
cf7c1ef6
LB
3441 /*
3442 * don't bother trying to write stuff out _if_
3443 * a) we're not cached,
3444 * b) we're with nospace_cache mount option.
3445 */
2b20982e 3446 dcs = BTRFS_DC_WRITTEN;
0af3d00b
JB
3447 spin_unlock(&block_group->lock);
3448 goto out_put;
3449 }
3450 spin_unlock(&block_group->lock);
3451
2968b1f4
JB
3452 /*
3453 * We hit an ENOSPC when setting up the cache in this transaction, just
3454 * skip doing the setup, we've already cleared the cache so we're safe.
3455 */
3456 if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) {
3457 ret = -ENOSPC;
3458 goto out_put;
3459 }
3460
6fc823b1
JB
3461 /*
3462 * Try to preallocate enough space based on how big the block group is.
3463 * Keep in mind this has to include any pinned space which could end up
3464 * taking up quite a bit since it's not folded into the other space
3465 * cache.
3466 */
ee22184b 3467 num_pages = div_u64(block_group->key.offset, SZ_256M);
0af3d00b
JB
3468 if (!num_pages)
3469 num_pages = 1;
3470
0af3d00b 3471 num_pages *= 16;
09cbfeaf 3472 num_pages *= PAGE_SIZE;
0af3d00b 3473
7cf5b976 3474 ret = btrfs_check_data_free_space(inode, 0, num_pages);
0af3d00b
JB
3475 if (ret)
3476 goto out_put;
3477
3478 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3479 num_pages, num_pages,
3480 &alloc_hint);
2968b1f4
JB
3481 /*
3482 * Our cache requires contiguous chunks so that we don't modify a bunch
3483 * of metadata or split extents when writing the cache out, which means
3484 * we can enospc if we are heavily fragmented in addition to just normal
3485 * out of space conditions. So if we hit this just skip setting up any
3486 * other block groups for this transaction, maybe we'll unpin enough
3487 * space the next time around.
3488 */
2b20982e
JB
3489 if (!ret)
3490 dcs = BTRFS_DC_SETUP;
2968b1f4
JB
3491 else if (ret == -ENOSPC)
3492 set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags);
c09544e0 3493
0af3d00b
JB
3494out_put:
3495 iput(inode);
3496out_free:
b3b4aa74 3497 btrfs_release_path(path);
0af3d00b
JB
3498out:
3499 spin_lock(&block_group->lock);
e65cbb94 3500 if (!ret && dcs == BTRFS_DC_SETUP)
5b0e95bf 3501 block_group->cache_generation = trans->transid;
2b20982e 3502 block_group->disk_cache_state = dcs;
0af3d00b
JB
3503 spin_unlock(&block_group->lock);
3504
3505 return ret;
3506}
3507
dcdf7f6d
JB
3508int btrfs_setup_space_cache(struct btrfs_trans_handle *trans,
3509 struct btrfs_root *root)
3510{
3511 struct btrfs_block_group_cache *cache, *tmp;
3512 struct btrfs_transaction *cur_trans = trans->transaction;
3513 struct btrfs_path *path;
3514
3515 if (list_empty(&cur_trans->dirty_bgs) ||
3cdde224 3516 !btrfs_test_opt(root->fs_info, SPACE_CACHE))
dcdf7f6d
JB
3517 return 0;
3518
3519 path = btrfs_alloc_path();
3520 if (!path)
3521 return -ENOMEM;
3522
3523 /* Could add new block groups, use _safe just in case */
3524 list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
3525 dirty_list) {
3526 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3527 cache_save_setup(cache, trans, path);
3528 }
3529
3530 btrfs_free_path(path);
3531 return 0;
3532}
3533
1bbc621e
CM
3534/*
3535 * transaction commit does final block group cache writeback during a
3536 * critical section where nothing is allowed to change the FS. This is
3537 * required in order for the cache to actually match the block group,
3538 * but can introduce a lot of latency into the commit.
3539 *
3540 * So, btrfs_start_dirty_block_groups is here to kick off block group
3541 * cache IO. There's a chance we'll have to redo some of it if the
3542 * block group changes again during the commit, but it greatly reduces
3543 * the commit latency by getting rid of the easy block groups while
3544 * we're still allowing others to join the commit.
3545 */
3546int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans,
96b5179d 3547 struct btrfs_root *root)
9078a3e1 3548{
4a8c9a62 3549 struct btrfs_block_group_cache *cache;
ce93ec54
JB
3550 struct btrfs_transaction *cur_trans = trans->transaction;
3551 int ret = 0;
c9dc4c65 3552 int should_put;
1bbc621e
CM
3553 struct btrfs_path *path = NULL;
3554 LIST_HEAD(dirty);
3555 struct list_head *io = &cur_trans->io_bgs;
c9dc4c65 3556 int num_started = 0;
1bbc621e
CM
3557 int loops = 0;
3558
3559 spin_lock(&cur_trans->dirty_bgs_lock);
b58d1a9e
FM
3560 if (list_empty(&cur_trans->dirty_bgs)) {
3561 spin_unlock(&cur_trans->dirty_bgs_lock);
3562 return 0;
1bbc621e 3563 }
b58d1a9e 3564 list_splice_init(&cur_trans->dirty_bgs, &dirty);
1bbc621e 3565 spin_unlock(&cur_trans->dirty_bgs_lock);
ce93ec54 3566
1bbc621e 3567again:
1bbc621e
CM
3568 /*
3569 * make sure all the block groups on our dirty list actually
3570 * exist
3571 */
3572 btrfs_create_pending_block_groups(trans, root);
3573
3574 if (!path) {
3575 path = btrfs_alloc_path();
3576 if (!path)
3577 return -ENOMEM;
3578 }
3579
b58d1a9e
FM
3580 /*
3581 * cache_write_mutex is here only to save us from balance or automatic
3582 * removal of empty block groups deleting this block group while we are
3583 * writing out the cache
3584 */
3585 mutex_lock(&trans->transaction->cache_write_mutex);
1bbc621e
CM
3586 while (!list_empty(&dirty)) {
3587 cache = list_first_entry(&dirty,
3588 struct btrfs_block_group_cache,
3589 dirty_list);
1bbc621e
CM
3590 /*
3591 * this can happen if something re-dirties a block
3592 * group that is already under IO. Just wait for it to
3593 * finish and then do it all again
3594 */
3595 if (!list_empty(&cache->io_list)) {
3596 list_del_init(&cache->io_list);
3597 btrfs_wait_cache_io(root, trans, cache,
3598 &cache->io_ctl, path,
3599 cache->key.objectid);
3600 btrfs_put_block_group(cache);
3601 }
3602
3603
3604 /*
3605 * btrfs_wait_cache_io uses the cache->dirty_list to decide
3606 * if it should update the cache_state. Don't delete
3607 * until after we wait.
3608 *
3609 * Since we're not running in the commit critical section
3610 * we need the dirty_bgs_lock to protect from update_block_group
3611 */
3612 spin_lock(&cur_trans->dirty_bgs_lock);
3613 list_del_init(&cache->dirty_list);
3614 spin_unlock(&cur_trans->dirty_bgs_lock);
3615
3616 should_put = 1;
3617
3618 cache_save_setup(cache, trans, path);
3619
3620 if (cache->disk_cache_state == BTRFS_DC_SETUP) {
3621 cache->io_ctl.inode = NULL;
3622 ret = btrfs_write_out_cache(root, trans, cache, path);
3623 if (ret == 0 && cache->io_ctl.inode) {
3624 num_started++;
3625 should_put = 0;
3626
3627 /*
3628 * the cache_write_mutex is protecting
3629 * the io_list
3630 */
3631 list_add_tail(&cache->io_list, io);
3632 } else {
3633 /*
3634 * if we failed to write the cache, the
3635 * generation will be bad and life goes on
3636 */
3637 ret = 0;
3638 }
3639 }
ff1f8250 3640 if (!ret) {
1bbc621e 3641 ret = write_one_cache_group(trans, root, path, cache);
ff1f8250
FM
3642 /*
3643 * Our block group might still be attached to the list
3644 * of new block groups in the transaction handle of some
3645 * other task (struct btrfs_trans_handle->new_bgs). This
3646 * means its block group item isn't yet in the extent
3647 * tree. If this happens ignore the error, as we will
3648 * try again later in the critical section of the
3649 * transaction commit.
3650 */
3651 if (ret == -ENOENT) {
3652 ret = 0;
3653 spin_lock(&cur_trans->dirty_bgs_lock);
3654 if (list_empty(&cache->dirty_list)) {
3655 list_add_tail(&cache->dirty_list,
3656 &cur_trans->dirty_bgs);
3657 btrfs_get_block_group(cache);
3658 }
3659 spin_unlock(&cur_trans->dirty_bgs_lock);
3660 } else if (ret) {
66642832 3661 btrfs_abort_transaction(trans, ret);
ff1f8250
FM
3662 }
3663 }
1bbc621e
CM
3664
3665 /* if its not on the io list, we need to put the block group */
3666 if (should_put)
3667 btrfs_put_block_group(cache);
3668
3669 if (ret)
3670 break;
b58d1a9e
FM
3671
3672 /*
3673 * Avoid blocking other tasks for too long. It might even save
3674 * us from writing caches for block groups that are going to be
3675 * removed.
3676 */
3677 mutex_unlock(&trans->transaction->cache_write_mutex);
3678 mutex_lock(&trans->transaction->cache_write_mutex);
1bbc621e 3679 }
b58d1a9e 3680 mutex_unlock(&trans->transaction->cache_write_mutex);
1bbc621e
CM
3681
3682 /*
3683 * go through delayed refs for all the stuff we've just kicked off
3684 * and then loop back (just once)
3685 */
3686 ret = btrfs_run_delayed_refs(trans, root, 0);
3687 if (!ret && loops == 0) {
3688 loops++;
3689 spin_lock(&cur_trans->dirty_bgs_lock);
3690 list_splice_init(&cur_trans->dirty_bgs, &dirty);
b58d1a9e
FM
3691 /*
3692 * dirty_bgs_lock protects us from concurrent block group
3693 * deletes too (not just cache_write_mutex).
3694 */
3695 if (!list_empty(&dirty)) {
3696 spin_unlock(&cur_trans->dirty_bgs_lock);
3697 goto again;
3698 }
1bbc621e 3699 spin_unlock(&cur_trans->dirty_bgs_lock);
c79a1751
LB
3700 } else if (ret < 0) {
3701 btrfs_cleanup_dirty_bgs(cur_trans, root);
1bbc621e
CM
3702 }
3703
3704 btrfs_free_path(path);
3705 return ret;
3706}
3707
3708int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3709 struct btrfs_root *root)
3710{
3711 struct btrfs_block_group_cache *cache;
3712 struct btrfs_transaction *cur_trans = trans->transaction;
3713 int ret = 0;
3714 int should_put;
3715 struct btrfs_path *path;
3716 struct list_head *io = &cur_trans->io_bgs;
3717 int num_started = 0;
9078a3e1
CM
3718
3719 path = btrfs_alloc_path();
3720 if (!path)
3721 return -ENOMEM;
3722
ce93ec54 3723 /*
e44081ef
FM
3724 * Even though we are in the critical section of the transaction commit,
3725 * we can still have concurrent tasks adding elements to this
3726 * transaction's list of dirty block groups. These tasks correspond to
3727 * endio free space workers started when writeback finishes for a
3728 * space cache, which run inode.c:btrfs_finish_ordered_io(), and can
3729 * allocate new block groups as a result of COWing nodes of the root
3730 * tree when updating the free space inode. The writeback for the space
3731 * caches is triggered by an earlier call to
3732 * btrfs_start_dirty_block_groups() and iterations of the following
3733 * loop.
3734 * Also we want to do the cache_save_setup first and then run the
ce93ec54
JB
3735 * delayed refs to make sure we have the best chance at doing this all
3736 * in one shot.
3737 */
e44081ef 3738 spin_lock(&cur_trans->dirty_bgs_lock);
ce93ec54
JB
3739 while (!list_empty(&cur_trans->dirty_bgs)) {
3740 cache = list_first_entry(&cur_trans->dirty_bgs,
3741 struct btrfs_block_group_cache,
3742 dirty_list);
c9dc4c65
CM
3743
3744 /*
3745 * this can happen if cache_save_setup re-dirties a block
3746 * group that is already under IO. Just wait for it to
3747 * finish and then do it all again
3748 */
3749 if (!list_empty(&cache->io_list)) {
e44081ef 3750 spin_unlock(&cur_trans->dirty_bgs_lock);
c9dc4c65
CM
3751 list_del_init(&cache->io_list);
3752 btrfs_wait_cache_io(root, trans, cache,
3753 &cache->io_ctl, path,
3754 cache->key.objectid);
3755 btrfs_put_block_group(cache);
e44081ef 3756 spin_lock(&cur_trans->dirty_bgs_lock);
c9dc4c65
CM
3757 }
3758
1bbc621e
CM
3759 /*
3760 * don't remove from the dirty list until after we've waited
3761 * on any pending IO
3762 */
ce93ec54 3763 list_del_init(&cache->dirty_list);
e44081ef 3764 spin_unlock(&cur_trans->dirty_bgs_lock);
c9dc4c65
CM
3765 should_put = 1;
3766
1bbc621e 3767 cache_save_setup(cache, trans, path);
c9dc4c65 3768
ce93ec54 3769 if (!ret)
c9dc4c65
CM
3770 ret = btrfs_run_delayed_refs(trans, root, (unsigned long) -1);
3771
3772 if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
3773 cache->io_ctl.inode = NULL;
3774 ret = btrfs_write_out_cache(root, trans, cache, path);
3775 if (ret == 0 && cache->io_ctl.inode) {
3776 num_started++;
3777 should_put = 0;
1bbc621e 3778 list_add_tail(&cache->io_list, io);
c9dc4c65
CM
3779 } else {
3780 /*
3781 * if we failed to write the cache, the
3782 * generation will be bad and life goes on
3783 */
3784 ret = 0;
3785 }
3786 }
ff1f8250 3787 if (!ret) {
ce93ec54 3788 ret = write_one_cache_group(trans, root, path, cache);
2bc0bb5f
FM
3789 /*
3790 * One of the free space endio workers might have
3791 * created a new block group while updating a free space
3792 * cache's inode (at inode.c:btrfs_finish_ordered_io())
3793 * and hasn't released its transaction handle yet, in
3794 * which case the new block group is still attached to
3795 * its transaction handle and its creation has not
3796 * finished yet (no block group item in the extent tree
3797 * yet, etc). If this is the case, wait for all free
3798 * space endio workers to finish and retry. This is a
3799 * a very rare case so no need for a more efficient and
3800 * complex approach.
3801 */
3802 if (ret == -ENOENT) {
3803 wait_event(cur_trans->writer_wait,
3804 atomic_read(&cur_trans->num_writers) == 1);
3805 ret = write_one_cache_group(trans, root, path,
3806 cache);
3807 }
ff1f8250 3808 if (ret)
66642832 3809 btrfs_abort_transaction(trans, ret);
ff1f8250 3810 }
c9dc4c65
CM
3811
3812 /* if its not on the io list, we need to put the block group */
3813 if (should_put)
3814 btrfs_put_block_group(cache);
e44081ef 3815 spin_lock(&cur_trans->dirty_bgs_lock);
c9dc4c65 3816 }
e44081ef 3817 spin_unlock(&cur_trans->dirty_bgs_lock);
c9dc4c65 3818
1bbc621e
CM
3819 while (!list_empty(io)) {
3820 cache = list_first_entry(io, struct btrfs_block_group_cache,
c9dc4c65
CM
3821 io_list);
3822 list_del_init(&cache->io_list);
c9dc4c65
CM
3823 btrfs_wait_cache_io(root, trans, cache,
3824 &cache->io_ctl, path, cache->key.objectid);
0cb59c99
JB
3825 btrfs_put_block_group(cache);
3826 }
3827
9078a3e1 3828 btrfs_free_path(path);
ce93ec54 3829 return ret;
9078a3e1
CM
3830}
3831
d2fb3437
YZ
3832int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
3833{
3834 struct btrfs_block_group_cache *block_group;
3835 int readonly = 0;
3836
3837 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
3838 if (!block_group || block_group->ro)
3839 readonly = 1;
3840 if (block_group)
fa9c0d79 3841 btrfs_put_block_group(block_group);
d2fb3437
YZ
3842 return readonly;
3843}
3844
f78c436c
FM
3845bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3846{
3847 struct btrfs_block_group_cache *bg;
3848 bool ret = true;
3849
3850 bg = btrfs_lookup_block_group(fs_info, bytenr);
3851 if (!bg)
3852 return false;
3853
3854 spin_lock(&bg->lock);
3855 if (bg->ro)
3856 ret = false;
3857 else
3858 atomic_inc(&bg->nocow_writers);
3859 spin_unlock(&bg->lock);
3860
3861 /* no put on block group, done by btrfs_dec_nocow_writers */
3862 if (!ret)
3863 btrfs_put_block_group(bg);
3864
3865 return ret;
3866
3867}
3868
3869void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3870{
3871 struct btrfs_block_group_cache *bg;
3872
3873 bg = btrfs_lookup_block_group(fs_info, bytenr);
3874 ASSERT(bg);
3875 if (atomic_dec_and_test(&bg->nocow_writers))
3876 wake_up_atomic_t(&bg->nocow_writers);
3877 /*
3878 * Once for our lookup and once for the lookup done by a previous call
3879 * to btrfs_inc_nocow_writers()
3880 */
3881 btrfs_put_block_group(bg);
3882 btrfs_put_block_group(bg);
3883}
3884
3885static int btrfs_wait_nocow_writers_atomic_t(atomic_t *a)
3886{
3887 schedule();
3888 return 0;
3889}
3890
3891void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg)
3892{
3893 wait_on_atomic_t(&bg->nocow_writers,
3894 btrfs_wait_nocow_writers_atomic_t,
3895 TASK_UNINTERRUPTIBLE);
3896}
3897
6ab0a202
JM
3898static const char *alloc_name(u64 flags)
3899{
3900 switch (flags) {
3901 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3902 return "mixed";
3903 case BTRFS_BLOCK_GROUP_METADATA:
3904 return "metadata";
3905 case BTRFS_BLOCK_GROUP_DATA:
3906 return "data";
3907 case BTRFS_BLOCK_GROUP_SYSTEM:
3908 return "system";
3909 default:
3910 WARN_ON(1);
3911 return "invalid-combination";
3912 };
3913}
3914
593060d7
CM
3915static int update_space_info(struct btrfs_fs_info *info, u64 flags,
3916 u64 total_bytes, u64 bytes_used,
e40edf2d 3917 u64 bytes_readonly,
593060d7
CM
3918 struct btrfs_space_info **space_info)
3919{
3920 struct btrfs_space_info *found;
b742bb82
YZ
3921 int i;
3922 int factor;
b150a4f1 3923 int ret;
b742bb82
YZ
3924
3925 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3926 BTRFS_BLOCK_GROUP_RAID10))
3927 factor = 2;
3928 else
3929 factor = 1;
593060d7
CM
3930
3931 found = __find_space_info(info, flags);
3932 if (found) {
25179201 3933 spin_lock(&found->lock);
593060d7 3934 found->total_bytes += total_bytes;
89a55897 3935 found->disk_total += total_bytes * factor;
593060d7 3936 found->bytes_used += bytes_used;
b742bb82 3937 found->disk_used += bytes_used * factor;
e40edf2d 3938 found->bytes_readonly += bytes_readonly;
2e6e5183
FM
3939 if (total_bytes > 0)
3940 found->full = 0;
957780eb
JB
3941 space_info_add_new_bytes(info, found, total_bytes -
3942 bytes_used - bytes_readonly);
25179201 3943 spin_unlock(&found->lock);
593060d7
CM
3944 *space_info = found;
3945 return 0;
3946 }
c146afad 3947 found = kzalloc(sizeof(*found), GFP_NOFS);
593060d7
CM
3948 if (!found)
3949 return -ENOMEM;
3950
908c7f19 3951 ret = percpu_counter_init(&found->total_bytes_pinned, 0, GFP_KERNEL);
b150a4f1
JB
3952 if (ret) {
3953 kfree(found);
3954 return ret;
3955 }
3956
c1895442 3957 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
b742bb82 3958 INIT_LIST_HEAD(&found->block_groups[i]);
80eb234a 3959 init_rwsem(&found->groups_sem);
0f9dd46c 3960 spin_lock_init(&found->lock);
52ba6929 3961 found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
593060d7 3962 found->total_bytes = total_bytes;
89a55897 3963 found->disk_total = total_bytes * factor;
593060d7 3964 found->bytes_used = bytes_used;
b742bb82 3965 found->disk_used = bytes_used * factor;
593060d7 3966 found->bytes_pinned = 0;
e8569813 3967 found->bytes_reserved = 0;
e40edf2d 3968 found->bytes_readonly = bytes_readonly;
f0486c68 3969 found->bytes_may_use = 0;
6af3e3ad 3970 found->full = 0;
4f4db217 3971 found->max_extent_size = 0;
0e4f8f88 3972 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
6d74119f 3973 found->chunk_alloc = 0;
fdb5effd
JB
3974 found->flush = 0;
3975 init_waitqueue_head(&found->wait);
633c0aad 3976 INIT_LIST_HEAD(&found->ro_bgs);
957780eb
JB
3977 INIT_LIST_HEAD(&found->tickets);
3978 INIT_LIST_HEAD(&found->priority_tickets);
6ab0a202
JM
3979
3980 ret = kobject_init_and_add(&found->kobj, &space_info_ktype,
3981 info->space_info_kobj, "%s",
3982 alloc_name(found->flags));
3983 if (ret) {
3984 kfree(found);
3985 return ret;
3986 }
3987
593060d7 3988 *space_info = found;
4184ea7f 3989 list_add_rcu(&found->list, &info->space_info);
b4d7c3c9
LZ
3990 if (flags & BTRFS_BLOCK_GROUP_DATA)
3991 info->data_sinfo = found;
6ab0a202
JM
3992
3993 return ret;
593060d7
CM
3994}
3995
8790d502
CM
3996static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3997{
899c81ea
ID
3998 u64 extra_flags = chunk_to_extended(flags) &
3999 BTRFS_EXTENDED_PROFILE_MASK;
a46d11a8 4000
de98ced9 4001 write_seqlock(&fs_info->profiles_lock);
a46d11a8
ID
4002 if (flags & BTRFS_BLOCK_GROUP_DATA)
4003 fs_info->avail_data_alloc_bits |= extra_flags;
4004 if (flags & BTRFS_BLOCK_GROUP_METADATA)
4005 fs_info->avail_metadata_alloc_bits |= extra_flags;
4006 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
4007 fs_info->avail_system_alloc_bits |= extra_flags;
de98ced9 4008 write_sequnlock(&fs_info->profiles_lock);
8790d502 4009}
593060d7 4010
fc67c450
ID
4011/*
4012 * returns target flags in extended format or 0 if restripe for this
4013 * chunk_type is not in progress
c6664b42
ID
4014 *
4015 * should be called with either volume_mutex or balance_lock held
fc67c450
ID
4016 */
4017static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
4018{
4019 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4020 u64 target = 0;
4021
fc67c450
ID
4022 if (!bctl)
4023 return 0;
4024
4025 if (flags & BTRFS_BLOCK_GROUP_DATA &&
4026 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4027 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
4028 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
4029 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4030 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
4031 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
4032 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4033 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
4034 }
4035
4036 return target;
4037}
4038
a46d11a8
ID
4039/*
4040 * @flags: available profiles in extended format (see ctree.h)
4041 *
e4d8ec0f
ID
4042 * Returns reduced profile in chunk format. If profile changing is in
4043 * progress (either running or paused) picks the target profile (if it's
4044 * already available), otherwise falls back to plain reducing.
a46d11a8 4045 */
48a3b636 4046static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
ec44a35c 4047{
95669976 4048 u64 num_devices = root->fs_info->fs_devices->rw_devices;
fc67c450 4049 u64 target;
9c170b26
ZL
4050 u64 raid_type;
4051 u64 allowed = 0;
a061fc8d 4052
fc67c450
ID
4053 /*
4054 * see if restripe for this chunk_type is in progress, if so
4055 * try to reduce to the target profile
4056 */
e4d8ec0f 4057 spin_lock(&root->fs_info->balance_lock);
fc67c450
ID
4058 target = get_restripe_target(root->fs_info, flags);
4059 if (target) {
4060 /* pick target profile only if it's already available */
4061 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
e4d8ec0f 4062 spin_unlock(&root->fs_info->balance_lock);
fc67c450 4063 return extended_to_chunk(target);
e4d8ec0f
ID
4064 }
4065 }
4066 spin_unlock(&root->fs_info->balance_lock);
4067
53b381b3 4068 /* First, mask out the RAID levels which aren't possible */
9c170b26
ZL
4069 for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
4070 if (num_devices >= btrfs_raid_array[raid_type].devs_min)
4071 allowed |= btrfs_raid_group[raid_type];
4072 }
4073 allowed &= flags;
4074
4075 if (allowed & BTRFS_BLOCK_GROUP_RAID6)
4076 allowed = BTRFS_BLOCK_GROUP_RAID6;
4077 else if (allowed & BTRFS_BLOCK_GROUP_RAID5)
4078 allowed = BTRFS_BLOCK_GROUP_RAID5;
4079 else if (allowed & BTRFS_BLOCK_GROUP_RAID10)
4080 allowed = BTRFS_BLOCK_GROUP_RAID10;
4081 else if (allowed & BTRFS_BLOCK_GROUP_RAID1)
4082 allowed = BTRFS_BLOCK_GROUP_RAID1;
4083 else if (allowed & BTRFS_BLOCK_GROUP_RAID0)
4084 allowed = BTRFS_BLOCK_GROUP_RAID0;
4085
4086 flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK;
4087
4088 return extended_to_chunk(flags | allowed);
ec44a35c
CM
4089}
4090
f8213bdc 4091static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags)
6a63209f 4092{
de98ced9 4093 unsigned seq;
f8213bdc 4094 u64 flags;
de98ced9
MX
4095
4096 do {
f8213bdc 4097 flags = orig_flags;
de98ced9
MX
4098 seq = read_seqbegin(&root->fs_info->profiles_lock);
4099
4100 if (flags & BTRFS_BLOCK_GROUP_DATA)
4101 flags |= root->fs_info->avail_data_alloc_bits;
4102 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
4103 flags |= root->fs_info->avail_system_alloc_bits;
4104 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
4105 flags |= root->fs_info->avail_metadata_alloc_bits;
4106 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
6fef8df1 4107
b742bb82 4108 return btrfs_reduce_alloc_profile(root, flags);
6a63209f
JB
4109}
4110
6d07bcec 4111u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
9ed74f2d 4112{
b742bb82 4113 u64 flags;
53b381b3 4114 u64 ret;
9ed74f2d 4115
b742bb82
YZ
4116 if (data)
4117 flags = BTRFS_BLOCK_GROUP_DATA;
4118 else if (root == root->fs_info->chunk_root)
4119 flags = BTRFS_BLOCK_GROUP_SYSTEM;
9ed74f2d 4120 else
b742bb82 4121 flags = BTRFS_BLOCK_GROUP_METADATA;
9ed74f2d 4122
53b381b3
DW
4123 ret = get_alloc_profile(root, flags);
4124 return ret;
6a63209f 4125}
9ed74f2d 4126
4ceff079 4127int btrfs_alloc_data_chunk_ondemand(struct inode *inode, u64 bytes)
6a63209f 4128{
6a63209f 4129 struct btrfs_space_info *data_sinfo;
0ca1f7ce 4130 struct btrfs_root *root = BTRFS_I(inode)->root;
b4d7c3c9 4131 struct btrfs_fs_info *fs_info = root->fs_info;
ab6e2410 4132 u64 used;
94b947b2 4133 int ret = 0;
c99f1b0c
ZL
4134 int need_commit = 2;
4135 int have_pinned_space;
6a63209f 4136
6a63209f 4137 /* make sure bytes are sectorsize aligned */
fda2832f 4138 bytes = ALIGN(bytes, root->sectorsize);
6a63209f 4139
9dced186 4140 if (btrfs_is_free_space_inode(inode)) {
c99f1b0c 4141 need_commit = 0;
9dced186 4142 ASSERT(current->journal_info);
0af3d00b
JB
4143 }
4144
b4d7c3c9 4145 data_sinfo = fs_info->data_sinfo;
33b4d47f
CM
4146 if (!data_sinfo)
4147 goto alloc;
9ed74f2d 4148
6a63209f
JB
4149again:
4150 /* make sure we have enough space to handle the data first */
4151 spin_lock(&data_sinfo->lock);
8929ecfa
YZ
4152 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
4153 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
4154 data_sinfo->bytes_may_use;
ab6e2410
JB
4155
4156 if (used + bytes > data_sinfo->total_bytes) {
4e06bdd6 4157 struct btrfs_trans_handle *trans;
9ed74f2d 4158
6a63209f
JB
4159 /*
4160 * if we don't have enough free bytes in this space then we need
4161 * to alloc a new chunk.
4162 */
b9fd47cd 4163 if (!data_sinfo->full) {
6a63209f 4164 u64 alloc_target;
9ed74f2d 4165
0e4f8f88 4166 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
6a63209f 4167 spin_unlock(&data_sinfo->lock);
33b4d47f 4168alloc:
6a63209f 4169 alloc_target = btrfs_get_alloc_profile(root, 1);
9dced186
MX
4170 /*
4171 * It is ugly that we don't call nolock join
4172 * transaction for the free space inode case here.
4173 * But it is safe because we only do the data space
4174 * reservation for the free space cache in the
4175 * transaction context, the common join transaction
4176 * just increase the counter of the current transaction
4177 * handler, doesn't try to acquire the trans_lock of
4178 * the fs.
4179 */
7a7eaa40 4180 trans = btrfs_join_transaction(root);
a22285a6
YZ
4181 if (IS_ERR(trans))
4182 return PTR_ERR(trans);
9ed74f2d 4183
6a63209f 4184 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
0e4f8f88
CM
4185 alloc_target,
4186 CHUNK_ALLOC_NO_FORCE);
6a63209f 4187 btrfs_end_transaction(trans, root);
d52a5b5f
MX
4188 if (ret < 0) {
4189 if (ret != -ENOSPC)
4190 return ret;
c99f1b0c
ZL
4191 else {
4192 have_pinned_space = 1;
d52a5b5f 4193 goto commit_trans;
c99f1b0c 4194 }
d52a5b5f 4195 }
9ed74f2d 4196
b4d7c3c9
LZ
4197 if (!data_sinfo)
4198 data_sinfo = fs_info->data_sinfo;
4199
6a63209f
JB
4200 goto again;
4201 }
f2bb8f5c
JB
4202
4203 /*
b150a4f1 4204 * If we don't have enough pinned space to deal with this
94b947b2
ZL
4205 * allocation, and no removed chunk in current transaction,
4206 * don't bother committing the transaction.
f2bb8f5c 4207 */
c99f1b0c
ZL
4208 have_pinned_space = percpu_counter_compare(
4209 &data_sinfo->total_bytes_pinned,
4210 used + bytes - data_sinfo->total_bytes);
6a63209f 4211 spin_unlock(&data_sinfo->lock);
6a63209f 4212
4e06bdd6 4213 /* commit the current transaction and try again */
d52a5b5f 4214commit_trans:
c99f1b0c 4215 if (need_commit &&
a4abeea4 4216 !atomic_read(&root->fs_info->open_ioctl_trans)) {
c99f1b0c 4217 need_commit--;
b150a4f1 4218
e1746e83
ZL
4219 if (need_commit > 0) {
4220 btrfs_start_delalloc_roots(fs_info, 0, -1);
578def7c 4221 btrfs_wait_ordered_roots(fs_info, -1, 0, (u64)-1);
e1746e83 4222 }
9a4e7276 4223
7a7eaa40 4224 trans = btrfs_join_transaction(root);
a22285a6
YZ
4225 if (IS_ERR(trans))
4226 return PTR_ERR(trans);
c99f1b0c 4227 if (have_pinned_space >= 0 ||
3204d33c
JB
4228 test_bit(BTRFS_TRANS_HAVE_FREE_BGS,
4229 &trans->transaction->flags) ||
c99f1b0c 4230 need_commit > 0) {
94b947b2
ZL
4231 ret = btrfs_commit_transaction(trans, root);
4232 if (ret)
4233 return ret;
d7c15171 4234 /*
c2d6cb16
FM
4235 * The cleaner kthread might still be doing iput
4236 * operations. Wait for it to finish so that
4237 * more space is released.
d7c15171 4238 */
c2d6cb16
FM
4239 mutex_lock(&root->fs_info->cleaner_delayed_iput_mutex);
4240 mutex_unlock(&root->fs_info->cleaner_delayed_iput_mutex);
94b947b2
ZL
4241 goto again;
4242 } else {
4243 btrfs_end_transaction(trans, root);
4244 }
4e06bdd6 4245 }
9ed74f2d 4246
cab45e22
JM
4247 trace_btrfs_space_reservation(root->fs_info,
4248 "space_info:enospc",
4249 data_sinfo->flags, bytes, 1);
6a63209f
JB
4250 return -ENOSPC;
4251 }
4252 data_sinfo->bytes_may_use += bytes;
8c2a3ca2 4253 trace_btrfs_space_reservation(root->fs_info, "space_info",
2bcc0328 4254 data_sinfo->flags, bytes, 1);
6a63209f 4255 spin_unlock(&data_sinfo->lock);
6a63209f 4256
237c0e9f 4257 return ret;
9ed74f2d 4258}
6a63209f 4259
4ceff079
QW
4260/*
4261 * New check_data_free_space() with ability for precious data reservation
4262 * Will replace old btrfs_check_data_free_space(), but for patch split,
4263 * add a new function first and then replace it.
4264 */
7cf5b976 4265int btrfs_check_data_free_space(struct inode *inode, u64 start, u64 len)
4ceff079
QW
4266{
4267 struct btrfs_root *root = BTRFS_I(inode)->root;
4268 int ret;
4269
4270 /* align the range */
4271 len = round_up(start + len, root->sectorsize) -
4272 round_down(start, root->sectorsize);
4273 start = round_down(start, root->sectorsize);
4274
4275 ret = btrfs_alloc_data_chunk_ondemand(inode, len);
4276 if (ret < 0)
4277 return ret;
4278
1e5ec2e7 4279 /* Use new btrfs_qgroup_reserve_data to reserve precious data space. */
4ceff079 4280 ret = btrfs_qgroup_reserve_data(inode, start, len);
1e5ec2e7
JB
4281 if (ret)
4282 btrfs_free_reserved_data_space_noquota(inode, start, len);
4ceff079
QW
4283 return ret;
4284}
4285
4ceff079
QW
4286/*
4287 * Called if we need to clear a data reservation for this inode
4288 * Normally in a error case.
4289 *
51773bec
QW
4290 * This one will *NOT* use accurate qgroup reserved space API, just for case
4291 * which we can't sleep and is sure it won't affect qgroup reserved space.
4292 * Like clear_bit_hook().
4ceff079 4293 */
51773bec
QW
4294void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start,
4295 u64 len)
4ceff079
QW
4296{
4297 struct btrfs_root *root = BTRFS_I(inode)->root;
4298 struct btrfs_space_info *data_sinfo;
4299
4300 /* Make sure the range is aligned to sectorsize */
4301 len = round_up(start + len, root->sectorsize) -
4302 round_down(start, root->sectorsize);
4303 start = round_down(start, root->sectorsize);
4304
4ceff079
QW
4305 data_sinfo = root->fs_info->data_sinfo;
4306 spin_lock(&data_sinfo->lock);
4307 if (WARN_ON(data_sinfo->bytes_may_use < len))
4308 data_sinfo->bytes_may_use = 0;
4309 else
4310 data_sinfo->bytes_may_use -= len;
4311 trace_btrfs_space_reservation(root->fs_info, "space_info",
4312 data_sinfo->flags, len, 0);
4313 spin_unlock(&data_sinfo->lock);
4314}
4315
51773bec
QW
4316/*
4317 * Called if we need to clear a data reservation for this inode
4318 * Normally in a error case.
4319 *
01327610 4320 * This one will handle the per-inode data rsv map for accurate reserved
51773bec
QW
4321 * space framework.
4322 */
4323void btrfs_free_reserved_data_space(struct inode *inode, u64 start, u64 len)
4324{
4325 btrfs_free_reserved_data_space_noquota(inode, start, len);
4326 btrfs_qgroup_free_data(inode, start, len);
4327}
4328
97e728d4 4329static void force_metadata_allocation(struct btrfs_fs_info *info)
e3ccfa98 4330{
97e728d4
JB
4331 struct list_head *head = &info->space_info;
4332 struct btrfs_space_info *found;
e3ccfa98 4333
97e728d4
JB
4334 rcu_read_lock();
4335 list_for_each_entry_rcu(found, head, list) {
4336 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
0e4f8f88 4337 found->force_alloc = CHUNK_ALLOC_FORCE;
e3ccfa98 4338 }
97e728d4 4339 rcu_read_unlock();
e3ccfa98
JB
4340}
4341
3c76cd84
MX
4342static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
4343{
4344 return (global->size << 1);
4345}
4346
e5bc2458 4347static int should_alloc_chunk(struct btrfs_root *root,
698d0082 4348 struct btrfs_space_info *sinfo, int force)
32c00aff 4349{
fb25e914 4350 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
424499db 4351 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
0e4f8f88 4352 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
e5bc2458 4353 u64 thresh;
e3ccfa98 4354
0e4f8f88
CM
4355 if (force == CHUNK_ALLOC_FORCE)
4356 return 1;
4357
fb25e914
JB
4358 /*
4359 * We need to take into account the global rsv because for all intents
4360 * and purposes it's used space. Don't worry about locking the
4361 * global_rsv, it doesn't change except when the transaction commits.
4362 */
54338b5c 4363 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
3c76cd84 4364 num_allocated += calc_global_rsv_need_space(global_rsv);
fb25e914 4365
0e4f8f88
CM
4366 /*
4367 * in limited mode, we want to have some free space up to
4368 * about 1% of the FS size.
4369 */
4370 if (force == CHUNK_ALLOC_LIMITED) {
6c41761f 4371 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
ee22184b 4372 thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1));
0e4f8f88
CM
4373
4374 if (num_bytes - num_allocated < thresh)
4375 return 1;
4376 }
0e4f8f88 4377
ee22184b 4378 if (num_allocated + SZ_2M < div_factor(num_bytes, 8))
14ed0ca6 4379 return 0;
424499db 4380 return 1;
32c00aff
JB
4381}
4382
39c2d7fa 4383static u64 get_profile_num_devs(struct btrfs_root *root, u64 type)
15d1ff81
LB
4384{
4385 u64 num_dev;
4386
53b381b3
DW
4387 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
4388 BTRFS_BLOCK_GROUP_RAID0 |
4389 BTRFS_BLOCK_GROUP_RAID5 |
4390 BTRFS_BLOCK_GROUP_RAID6))
15d1ff81
LB
4391 num_dev = root->fs_info->fs_devices->rw_devices;
4392 else if (type & BTRFS_BLOCK_GROUP_RAID1)
4393 num_dev = 2;
4394 else
4395 num_dev = 1; /* DUP or single */
4396
39c2d7fa 4397 return num_dev;
15d1ff81
LB
4398}
4399
39c2d7fa
FM
4400/*
4401 * If @is_allocation is true, reserve space in the system space info necessary
4402 * for allocating a chunk, otherwise if it's false, reserve space necessary for
4403 * removing a chunk.
4404 */
4405void check_system_chunk(struct btrfs_trans_handle *trans,
4406 struct btrfs_root *root,
4617ea3a 4407 u64 type)
15d1ff81
LB
4408{
4409 struct btrfs_space_info *info;
4410 u64 left;
4411 u64 thresh;
4fbcdf66 4412 int ret = 0;
39c2d7fa 4413 u64 num_devs;
4fbcdf66
FM
4414
4415 /*
4416 * Needed because we can end up allocating a system chunk and for an
4417 * atomic and race free space reservation in the chunk block reserve.
4418 */
4419 ASSERT(mutex_is_locked(&root->fs_info->chunk_mutex));
15d1ff81
LB
4420
4421 info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4422 spin_lock(&info->lock);
4423 left = info->total_bytes - info->bytes_used - info->bytes_pinned -
4fbcdf66
FM
4424 info->bytes_reserved - info->bytes_readonly -
4425 info->bytes_may_use;
15d1ff81
LB
4426 spin_unlock(&info->lock);
4427
39c2d7fa
FM
4428 num_devs = get_profile_num_devs(root, type);
4429
4430 /* num_devs device items to update and 1 chunk item to add or remove */
4617ea3a
FM
4431 thresh = btrfs_calc_trunc_metadata_size(root, num_devs) +
4432 btrfs_calc_trans_metadata_size(root, 1);
39c2d7fa 4433
3cdde224 4434 if (left < thresh && btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) {
c2cf52eb
SK
4435 btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu",
4436 left, thresh, type);
ab8d0fc4 4437 dump_space_info(root->fs_info, info, 0, 0);
15d1ff81
LB
4438 }
4439
4440 if (left < thresh) {
4441 u64 flags;
4442
4443 flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0);
4fbcdf66
FM
4444 /*
4445 * Ignore failure to create system chunk. We might end up not
4446 * needing it, as we might not need to COW all nodes/leafs from
4447 * the paths we visit in the chunk tree (they were already COWed
4448 * or created in the current transaction for example).
4449 */
4450 ret = btrfs_alloc_chunk(trans, root, flags);
4451 }
4452
4453 if (!ret) {
4454 ret = btrfs_block_rsv_add(root->fs_info->chunk_root,
4455 &root->fs_info->chunk_block_rsv,
4456 thresh, BTRFS_RESERVE_NO_FLUSH);
4457 if (!ret)
4458 trans->chunk_bytes_reserved += thresh;
15d1ff81
LB
4459 }
4460}
4461
28b737f6
LB
4462/*
4463 * If force is CHUNK_ALLOC_FORCE:
4464 * - return 1 if it successfully allocates a chunk,
4465 * - return errors including -ENOSPC otherwise.
4466 * If force is NOT CHUNK_ALLOC_FORCE:
4467 * - return 0 if it doesn't need to allocate a new chunk,
4468 * - return 1 if it successfully allocates a chunk,
4469 * - return errors including -ENOSPC otherwise.
4470 */
6324fbf3 4471static int do_chunk_alloc(struct btrfs_trans_handle *trans,
698d0082 4472 struct btrfs_root *extent_root, u64 flags, int force)
9ed74f2d 4473{
6324fbf3 4474 struct btrfs_space_info *space_info;
97e728d4 4475 struct btrfs_fs_info *fs_info = extent_root->fs_info;
6d74119f 4476 int wait_for_alloc = 0;
9ed74f2d 4477 int ret = 0;
9ed74f2d 4478
c6b305a8
JB
4479 /* Don't re-enter if we're already allocating a chunk */
4480 if (trans->allocating_chunk)
4481 return -ENOSPC;
4482
6324fbf3 4483 space_info = __find_space_info(extent_root->fs_info, flags);
593060d7
CM
4484 if (!space_info) {
4485 ret = update_space_info(extent_root->fs_info, flags,
e40edf2d 4486 0, 0, 0, &space_info);
79787eaa 4487 BUG_ON(ret); /* -ENOMEM */
9ed74f2d 4488 }
79787eaa 4489 BUG_ON(!space_info); /* Logic error */
9ed74f2d 4490
6d74119f 4491again:
25179201 4492 spin_lock(&space_info->lock);
9e622d6b 4493 if (force < space_info->force_alloc)
0e4f8f88 4494 force = space_info->force_alloc;
25179201 4495 if (space_info->full) {
09fb99a6
FDBM
4496 if (should_alloc_chunk(extent_root, space_info, force))
4497 ret = -ENOSPC;
4498 else
4499 ret = 0;
25179201 4500 spin_unlock(&space_info->lock);
09fb99a6 4501 return ret;
9ed74f2d
JB
4502 }
4503
698d0082 4504 if (!should_alloc_chunk(extent_root, space_info, force)) {
25179201 4505 spin_unlock(&space_info->lock);
6d74119f
JB
4506 return 0;
4507 } else if (space_info->chunk_alloc) {
4508 wait_for_alloc = 1;
4509 } else {
4510 space_info->chunk_alloc = 1;
9ed74f2d 4511 }
0e4f8f88 4512
25179201 4513 spin_unlock(&space_info->lock);
9ed74f2d 4514
6d74119f
JB
4515 mutex_lock(&fs_info->chunk_mutex);
4516
4517 /*
4518 * The chunk_mutex is held throughout the entirety of a chunk
4519 * allocation, so once we've acquired the chunk_mutex we know that the
4520 * other guy is done and we need to recheck and see if we should
4521 * allocate.
4522 */
4523 if (wait_for_alloc) {
4524 mutex_unlock(&fs_info->chunk_mutex);
4525 wait_for_alloc = 0;
4526 goto again;
4527 }
4528
c6b305a8
JB
4529 trans->allocating_chunk = true;
4530
67377734
JB
4531 /*
4532 * If we have mixed data/metadata chunks we want to make sure we keep
4533 * allocating mixed chunks instead of individual chunks.
4534 */
4535 if (btrfs_mixed_space_info(space_info))
4536 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
4537
97e728d4
JB
4538 /*
4539 * if we're doing a data chunk, go ahead and make sure that
4540 * we keep a reasonable number of metadata chunks allocated in the
4541 * FS as well.
4542 */
9ed74f2d 4543 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
97e728d4
JB
4544 fs_info->data_chunk_allocations++;
4545 if (!(fs_info->data_chunk_allocations %
4546 fs_info->metadata_ratio))
4547 force_metadata_allocation(fs_info);
9ed74f2d
JB
4548 }
4549
15d1ff81
LB
4550 /*
4551 * Check if we have enough space in SYSTEM chunk because we may need
4552 * to update devices.
4553 */
4617ea3a 4554 check_system_chunk(trans, extent_root, flags);
15d1ff81 4555
2b82032c 4556 ret = btrfs_alloc_chunk(trans, extent_root, flags);
c6b305a8 4557 trans->allocating_chunk = false;
92b8e897 4558
9ed74f2d 4559 spin_lock(&space_info->lock);
a81cb9a2
AO
4560 if (ret < 0 && ret != -ENOSPC)
4561 goto out;
9ed74f2d 4562 if (ret)
6324fbf3 4563 space_info->full = 1;
424499db
YZ
4564 else
4565 ret = 1;
6d74119f 4566
0e4f8f88 4567 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
a81cb9a2 4568out:
6d74119f 4569 space_info->chunk_alloc = 0;
9ed74f2d 4570 spin_unlock(&space_info->lock);
a25c75d5 4571 mutex_unlock(&fs_info->chunk_mutex);
00d80e34
FM
4572 /*
4573 * When we allocate a new chunk we reserve space in the chunk block
4574 * reserve to make sure we can COW nodes/leafs in the chunk tree or
4575 * add new nodes/leafs to it if we end up needing to do it when
4576 * inserting the chunk item and updating device items as part of the
4577 * second phase of chunk allocation, performed by
4578 * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a
4579 * large number of new block groups to create in our transaction
4580 * handle's new_bgs list to avoid exhausting the chunk block reserve
4581 * in extreme cases - like having a single transaction create many new
4582 * block groups when starting to write out the free space caches of all
4583 * the block groups that were made dirty during the lifetime of the
4584 * transaction.
4585 */
d9a0540a 4586 if (trans->can_flush_pending_bgs &&
ee22184b 4587 trans->chunk_bytes_reserved >= (u64)SZ_2M) {
64b63580 4588 btrfs_create_pending_block_groups(trans, extent_root);
00d80e34
FM
4589 btrfs_trans_release_chunk_metadata(trans);
4590 }
0f9dd46c 4591 return ret;
6324fbf3 4592}
9ed74f2d 4593
a80c8dcf
JB
4594static int can_overcommit(struct btrfs_root *root,
4595 struct btrfs_space_info *space_info, u64 bytes,
08e007d2 4596 enum btrfs_reserve_flush_enum flush)
a80c8dcf 4597{
957780eb
JB
4598 struct btrfs_block_rsv *global_rsv;
4599 u64 profile;
3c76cd84 4600 u64 space_size;
a80c8dcf
JB
4601 u64 avail;
4602 u64 used;
4603
957780eb
JB
4604 /* Don't overcommit when in mixed mode. */
4605 if (space_info->flags & BTRFS_BLOCK_GROUP_DATA)
4606 return 0;
4607
4608 BUG_ON(root->fs_info == NULL);
4609 global_rsv = &root->fs_info->global_block_rsv;
4610 profile = btrfs_get_alloc_profile(root, 0);
a80c8dcf 4611 used = space_info->bytes_used + space_info->bytes_reserved +
96f1bb57
JB
4612 space_info->bytes_pinned + space_info->bytes_readonly;
4613
96f1bb57
JB
4614 /*
4615 * We only want to allow over committing if we have lots of actual space
4616 * free, but if we don't have enough space to handle the global reserve
4617 * space then we could end up having a real enospc problem when trying
4618 * to allocate a chunk or some other such important allocation.
4619 */
3c76cd84
MX
4620 spin_lock(&global_rsv->lock);
4621 space_size = calc_global_rsv_need_space(global_rsv);
4622 spin_unlock(&global_rsv->lock);
4623 if (used + space_size >= space_info->total_bytes)
96f1bb57
JB
4624 return 0;
4625
4626 used += space_info->bytes_may_use;
a80c8dcf
JB
4627
4628 spin_lock(&root->fs_info->free_chunk_lock);
4629 avail = root->fs_info->free_chunk_space;
4630 spin_unlock(&root->fs_info->free_chunk_lock);
4631
4632 /*
4633 * If we have dup, raid1 or raid10 then only half of the free
53b381b3
DW
4634 * space is actually useable. For raid56, the space info used
4635 * doesn't include the parity drive, so we don't have to
4636 * change the math
a80c8dcf
JB
4637 */
4638 if (profile & (BTRFS_BLOCK_GROUP_DUP |
4639 BTRFS_BLOCK_GROUP_RAID1 |
4640 BTRFS_BLOCK_GROUP_RAID10))
4641 avail >>= 1;
4642
4643 /*
561c294d
MX
4644 * If we aren't flushing all things, let us overcommit up to
4645 * 1/2th of the space. If we can flush, don't let us overcommit
4646 * too much, let it overcommit up to 1/8 of the space.
a80c8dcf 4647 */
08e007d2 4648 if (flush == BTRFS_RESERVE_FLUSH_ALL)
14575aef 4649 avail >>= 3;
a80c8dcf 4650 else
14575aef 4651 avail >>= 1;
a80c8dcf 4652
14575aef 4653 if (used + bytes < space_info->total_bytes + avail)
a80c8dcf
JB
4654 return 1;
4655 return 0;
4656}
4657
48a3b636 4658static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root,
6c255e67 4659 unsigned long nr_pages, int nr_items)
da633a42
MX
4660{
4661 struct super_block *sb = root->fs_info->sb;
da633a42 4662
925a6efb
JB
4663 if (down_read_trylock(&sb->s_umount)) {
4664 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4665 up_read(&sb->s_umount);
4666 } else {
da633a42
MX
4667 /*
4668 * We needn't worry the filesystem going from r/w to r/o though
4669 * we don't acquire ->s_umount mutex, because the filesystem
4670 * should guarantee the delalloc inodes list be empty after
4671 * the filesystem is readonly(all dirty pages are written to
4672 * the disk).
4673 */
6c255e67 4674 btrfs_start_delalloc_roots(root->fs_info, 0, nr_items);
98ad69cf 4675 if (!current->journal_info)
578def7c
FM
4676 btrfs_wait_ordered_roots(root->fs_info, nr_items,
4677 0, (u64)-1);
da633a42
MX
4678 }
4679}
4680
18cd8ea6
MX
4681static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim)
4682{
4683 u64 bytes;
4684 int nr;
4685
4686 bytes = btrfs_calc_trans_metadata_size(root, 1);
4687 nr = (int)div64_u64(to_reclaim, bytes);
4688 if (!nr)
4689 nr = 1;
4690 return nr;
4691}
4692
ee22184b 4693#define EXTENT_SIZE_PER_ITEM SZ_256K
c61a16a7 4694
9ed74f2d 4695/*
5da9d01b 4696 * shrink metadata reservation for delalloc
9ed74f2d 4697 */
f4c738c2
JB
4698static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
4699 bool wait_ordered)
5da9d01b 4700{
0ca1f7ce 4701 struct btrfs_block_rsv *block_rsv;
0019f10d 4702 struct btrfs_space_info *space_info;
663350ac 4703 struct btrfs_trans_handle *trans;
f4c738c2 4704 u64 delalloc_bytes;
5da9d01b 4705 u64 max_reclaim;
b1953bce 4706 long time_left;
d3ee29e3
MX
4707 unsigned long nr_pages;
4708 int loops;
b0244199 4709 int items;
08e007d2 4710 enum btrfs_reserve_flush_enum flush;
5da9d01b 4711
c61a16a7 4712 /* Calc the number of the pages we need flush for space reservation */
b0244199 4713 items = calc_reclaim_items_nr(root, to_reclaim);
8eb0dfdb 4714 to_reclaim = (u64)items * EXTENT_SIZE_PER_ITEM;
c61a16a7 4715
663350ac 4716 trans = (struct btrfs_trans_handle *)current->journal_info;
0ca1f7ce 4717 block_rsv = &root->fs_info->delalloc_block_rsv;
0019f10d 4718 space_info = block_rsv->space_info;
bf9022e0 4719
963d678b
MX
4720 delalloc_bytes = percpu_counter_sum_positive(
4721 &root->fs_info->delalloc_bytes);
f4c738c2 4722 if (delalloc_bytes == 0) {
fdb5effd 4723 if (trans)
f4c738c2 4724 return;
38c135af 4725 if (wait_ordered)
578def7c
FM
4726 btrfs_wait_ordered_roots(root->fs_info, items,
4727 0, (u64)-1);
f4c738c2 4728 return;
fdb5effd
JB
4729 }
4730
d3ee29e3 4731 loops = 0;
f4c738c2
JB
4732 while (delalloc_bytes && loops < 3) {
4733 max_reclaim = min(delalloc_bytes, to_reclaim);
09cbfeaf 4734 nr_pages = max_reclaim >> PAGE_SHIFT;
6c255e67 4735 btrfs_writeback_inodes_sb_nr(root, nr_pages, items);
dea31f52
JB
4736 /*
4737 * We need to wait for the async pages to actually start before
4738 * we do anything.
4739 */
9f3a074d
MX
4740 max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages);
4741 if (!max_reclaim)
4742 goto skip_async;
4743
4744 if (max_reclaim <= nr_pages)
4745 max_reclaim = 0;
4746 else
4747 max_reclaim -= nr_pages;
dea31f52 4748
9f3a074d
MX
4749 wait_event(root->fs_info->async_submit_wait,
4750 atomic_read(&root->fs_info->async_delalloc_pages) <=
4751 (int)max_reclaim);
4752skip_async:
08e007d2
MX
4753 if (!trans)
4754 flush = BTRFS_RESERVE_FLUSH_ALL;
4755 else
4756 flush = BTRFS_RESERVE_NO_FLUSH;
0019f10d 4757 spin_lock(&space_info->lock);
08e007d2 4758 if (can_overcommit(root, space_info, orig, flush)) {
f4c738c2
JB
4759 spin_unlock(&space_info->lock);
4760 break;
4761 }
957780eb
JB
4762 if (list_empty(&space_info->tickets) &&
4763 list_empty(&space_info->priority_tickets)) {
4764 spin_unlock(&space_info->lock);
4765 break;
4766 }
0019f10d 4767 spin_unlock(&space_info->lock);
5da9d01b 4768
36e39c40 4769 loops++;
f104d044 4770 if (wait_ordered && !trans) {
578def7c
FM
4771 btrfs_wait_ordered_roots(root->fs_info, items,
4772 0, (u64)-1);
f104d044 4773 } else {
f4c738c2 4774 time_left = schedule_timeout_killable(1);
f104d044
JB
4775 if (time_left)
4776 break;
4777 }
963d678b
MX
4778 delalloc_bytes = percpu_counter_sum_positive(
4779 &root->fs_info->delalloc_bytes);
5da9d01b 4780 }
5da9d01b
YZ
4781}
4782
663350ac
JB
4783/**
4784 * maybe_commit_transaction - possibly commit the transaction if its ok to
4785 * @root - the root we're allocating for
4786 * @bytes - the number of bytes we want to reserve
4787 * @force - force the commit
8bb8ab2e 4788 *
663350ac
JB
4789 * This will check to make sure that committing the transaction will actually
4790 * get us somewhere and then commit the transaction if it does. Otherwise it
4791 * will return -ENOSPC.
8bb8ab2e 4792 */
663350ac
JB
4793static int may_commit_transaction(struct btrfs_root *root,
4794 struct btrfs_space_info *space_info,
4795 u64 bytes, int force)
4796{
4797 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
4798 struct btrfs_trans_handle *trans;
4799
4800 trans = (struct btrfs_trans_handle *)current->journal_info;
4801 if (trans)
4802 return -EAGAIN;
4803
4804 if (force)
4805 goto commit;
4806
4807 /* See if there is enough pinned space to make this reservation */
b150a4f1 4808 if (percpu_counter_compare(&space_info->total_bytes_pinned,
0424c548 4809 bytes) >= 0)
663350ac 4810 goto commit;
663350ac
JB
4811
4812 /*
4813 * See if there is some space in the delayed insertion reservation for
4814 * this reservation.
4815 */
4816 if (space_info != delayed_rsv->space_info)
4817 return -ENOSPC;
4818
4819 spin_lock(&delayed_rsv->lock);
b150a4f1
JB
4820 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4821 bytes - delayed_rsv->size) >= 0) {
663350ac
JB
4822 spin_unlock(&delayed_rsv->lock);
4823 return -ENOSPC;
4824 }
4825 spin_unlock(&delayed_rsv->lock);
4826
4827commit:
4828 trans = btrfs_join_transaction(root);
4829 if (IS_ERR(trans))
4830 return -ENOSPC;
4831
4832 return btrfs_commit_transaction(trans, root);
4833}
4834
957780eb
JB
4835struct reserve_ticket {
4836 u64 bytes;
4837 int error;
4838 struct list_head list;
4839 wait_queue_head_t wait;
96c3f433
JB
4840};
4841
4842static int flush_space(struct btrfs_root *root,
4843 struct btrfs_space_info *space_info, u64 num_bytes,
4844 u64 orig_bytes, int state)
4845{
4846 struct btrfs_trans_handle *trans;
4847 int nr;
f4c738c2 4848 int ret = 0;
96c3f433
JB
4849
4850 switch (state) {
96c3f433
JB
4851 case FLUSH_DELAYED_ITEMS_NR:
4852 case FLUSH_DELAYED_ITEMS:
18cd8ea6
MX
4853 if (state == FLUSH_DELAYED_ITEMS_NR)
4854 nr = calc_reclaim_items_nr(root, num_bytes) * 2;
4855 else
96c3f433 4856 nr = -1;
18cd8ea6 4857
96c3f433
JB
4858 trans = btrfs_join_transaction(root);
4859 if (IS_ERR(trans)) {
4860 ret = PTR_ERR(trans);
4861 break;
4862 }
4863 ret = btrfs_run_delayed_items_nr(trans, root, nr);
4864 btrfs_end_transaction(trans, root);
4865 break;
67b0fd63
JB
4866 case FLUSH_DELALLOC:
4867 case FLUSH_DELALLOC_WAIT:
24af7dd1 4868 shrink_delalloc(root, num_bytes * 2, orig_bytes,
67b0fd63
JB
4869 state == FLUSH_DELALLOC_WAIT);
4870 break;
ea658bad
JB
4871 case ALLOC_CHUNK:
4872 trans = btrfs_join_transaction(root);
4873 if (IS_ERR(trans)) {
4874 ret = PTR_ERR(trans);
4875 break;
4876 }
4877 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
ea658bad
JB
4878 btrfs_get_alloc_profile(root, 0),
4879 CHUNK_ALLOC_NO_FORCE);
4880 btrfs_end_transaction(trans, root);
eecba891 4881 if (ret > 0 || ret == -ENOSPC)
ea658bad
JB
4882 ret = 0;
4883 break;
96c3f433
JB
4884 case COMMIT_TRANS:
4885 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
4886 break;
4887 default:
4888 ret = -ENOSPC;
4889 break;
4890 }
4891
f376df2b
JB
4892 trace_btrfs_flush_space(root->fs_info, space_info->flags, num_bytes,
4893 orig_bytes, state, ret);
96c3f433
JB
4894 return ret;
4895}
21c7e756
MX
4896
4897static inline u64
4898btrfs_calc_reclaim_metadata_size(struct btrfs_root *root,
4899 struct btrfs_space_info *space_info)
4900{
957780eb 4901 struct reserve_ticket *ticket;
21c7e756
MX
4902 u64 used;
4903 u64 expected;
957780eb 4904 u64 to_reclaim = 0;
21c7e756 4905
957780eb
JB
4906 list_for_each_entry(ticket, &space_info->tickets, list)
4907 to_reclaim += ticket->bytes;
4908 list_for_each_entry(ticket, &space_info->priority_tickets, list)
4909 to_reclaim += ticket->bytes;
4910 if (to_reclaim)
4911 return to_reclaim;
21c7e756 4912
e0af2484
WX
4913 to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M);
4914 if (can_overcommit(root, space_info, to_reclaim,
4915 BTRFS_RESERVE_FLUSH_ALL))
4916 return 0;
4917
21c7e756
MX
4918 used = space_info->bytes_used + space_info->bytes_reserved +
4919 space_info->bytes_pinned + space_info->bytes_readonly +
4920 space_info->bytes_may_use;
ee22184b 4921 if (can_overcommit(root, space_info, SZ_1M, BTRFS_RESERVE_FLUSH_ALL))
21c7e756
MX
4922 expected = div_factor_fine(space_info->total_bytes, 95);
4923 else
4924 expected = div_factor_fine(space_info->total_bytes, 90);
4925
4926 if (used > expected)
4927 to_reclaim = used - expected;
4928 else
4929 to_reclaim = 0;
4930 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
4931 space_info->bytes_reserved);
21c7e756
MX
4932 return to_reclaim;
4933}
4934
4935static inline int need_do_async_reclaim(struct btrfs_space_info *space_info,
87241c2e 4936 struct btrfs_root *root, u64 used)
21c7e756 4937{
365c5313
JB
4938 u64 thresh = div_factor_fine(space_info->total_bytes, 98);
4939
4940 /* If we're just plain full then async reclaim just slows us down. */
baee8790 4941 if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh)
365c5313
JB
4942 return 0;
4943
87241c2e 4944 if (!btrfs_calc_reclaim_metadata_size(root, space_info))
d38b349c
JB
4945 return 0;
4946
87241c2e
JB
4947 return (used >= thresh && !btrfs_fs_closing(root->fs_info) &&
4948 !test_bit(BTRFS_FS_STATE_REMOUNTING,
4949 &root->fs_info->fs_state));
21c7e756
MX
4950}
4951
957780eb 4952static void wake_all_tickets(struct list_head *head)
21c7e756 4953{
957780eb 4954 struct reserve_ticket *ticket;
25ce459c 4955
957780eb
JB
4956 while (!list_empty(head)) {
4957 ticket = list_first_entry(head, struct reserve_ticket, list);
4958 list_del_init(&ticket->list);
4959 ticket->error = -ENOSPC;
4960 wake_up(&ticket->wait);
21c7e756 4961 }
21c7e756
MX
4962}
4963
957780eb
JB
4964/*
4965 * This is for normal flushers, we can wait all goddamned day if we want to. We
4966 * will loop and continuously try to flush as long as we are making progress.
4967 * We count progress as clearing off tickets each time we have to loop.
4968 */
21c7e756
MX
4969static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
4970{
4971 struct btrfs_fs_info *fs_info;
4972 struct btrfs_space_info *space_info;
4973 u64 to_reclaim;
4974 int flush_state;
957780eb 4975 int commit_cycles = 0;
ce129655 4976 u64 last_tickets_id;
21c7e756
MX
4977
4978 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
4979 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4980
957780eb 4981 spin_lock(&space_info->lock);
21c7e756
MX
4982 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
4983 space_info);
957780eb
JB
4984 if (!to_reclaim) {
4985 space_info->flush = 0;
4986 spin_unlock(&space_info->lock);
21c7e756 4987 return;
957780eb 4988 }
ce129655 4989 last_tickets_id = space_info->tickets_id;
957780eb 4990 spin_unlock(&space_info->lock);
21c7e756
MX
4991
4992 flush_state = FLUSH_DELAYED_ITEMS_NR;
957780eb
JB
4993 do {
4994 struct reserve_ticket *ticket;
4995 int ret;
4996
4997 ret = flush_space(fs_info->fs_root, space_info, to_reclaim,
4998 to_reclaim, flush_state);
4999 spin_lock(&space_info->lock);
5000 if (list_empty(&space_info->tickets)) {
5001 space_info->flush = 0;
5002 spin_unlock(&space_info->lock);
5003 return;
5004 }
5005 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
5006 space_info);
5007 ticket = list_first_entry(&space_info->tickets,
5008 struct reserve_ticket, list);
ce129655 5009 if (last_tickets_id == space_info->tickets_id) {
957780eb
JB
5010 flush_state++;
5011 } else {
ce129655 5012 last_tickets_id = space_info->tickets_id;
957780eb
JB
5013 flush_state = FLUSH_DELAYED_ITEMS_NR;
5014 if (commit_cycles)
5015 commit_cycles--;
5016 }
5017
5018 if (flush_state > COMMIT_TRANS) {
5019 commit_cycles++;
5020 if (commit_cycles > 2) {
5021 wake_all_tickets(&space_info->tickets);
5022 space_info->flush = 0;
5023 } else {
5024 flush_state = FLUSH_DELAYED_ITEMS_NR;
5025 }
5026 }
5027 spin_unlock(&space_info->lock);
5028 } while (flush_state <= COMMIT_TRANS);
5029}
5030
5031void btrfs_init_async_reclaim_work(struct work_struct *work)
5032{
5033 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
5034}
5035
5036static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info,
5037 struct btrfs_space_info *space_info,
5038 struct reserve_ticket *ticket)
5039{
5040 u64 to_reclaim;
5041 int flush_state = FLUSH_DELAYED_ITEMS_NR;
5042
5043 spin_lock(&space_info->lock);
5044 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
5045 space_info);
5046 if (!to_reclaim) {
5047 spin_unlock(&space_info->lock);
5048 return;
5049 }
5050 spin_unlock(&space_info->lock);
5051
21c7e756
MX
5052 do {
5053 flush_space(fs_info->fs_root, space_info, to_reclaim,
5054 to_reclaim, flush_state);
5055 flush_state++;
957780eb
JB
5056 spin_lock(&space_info->lock);
5057 if (ticket->bytes == 0) {
5058 spin_unlock(&space_info->lock);
21c7e756 5059 return;
957780eb
JB
5060 }
5061 spin_unlock(&space_info->lock);
5062
5063 /*
5064 * Priority flushers can't wait on delalloc without
5065 * deadlocking.
5066 */
5067 if (flush_state == FLUSH_DELALLOC ||
5068 flush_state == FLUSH_DELALLOC_WAIT)
5069 flush_state = ALLOC_CHUNK;
365c5313 5070 } while (flush_state < COMMIT_TRANS);
21c7e756
MX
5071}
5072
957780eb
JB
5073static int wait_reserve_ticket(struct btrfs_fs_info *fs_info,
5074 struct btrfs_space_info *space_info,
5075 struct reserve_ticket *ticket, u64 orig_bytes)
5076
21c7e756 5077{
957780eb
JB
5078 DEFINE_WAIT(wait);
5079 int ret = 0;
5080
5081 spin_lock(&space_info->lock);
5082 while (ticket->bytes > 0 && ticket->error == 0) {
5083 ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE);
5084 if (ret) {
5085 ret = -EINTR;
5086 break;
5087 }
5088 spin_unlock(&space_info->lock);
5089
5090 schedule();
5091
5092 finish_wait(&ticket->wait, &wait);
5093 spin_lock(&space_info->lock);
5094 }
5095 if (!ret)
5096 ret = ticket->error;
5097 if (!list_empty(&ticket->list))
5098 list_del_init(&ticket->list);
5099 if (ticket->bytes && ticket->bytes < orig_bytes) {
5100 u64 num_bytes = orig_bytes - ticket->bytes;
5101 space_info->bytes_may_use -= num_bytes;
5102 trace_btrfs_space_reservation(fs_info, "space_info",
5103 space_info->flags, num_bytes, 0);
5104 }
5105 spin_unlock(&space_info->lock);
5106
5107 return ret;
21c7e756
MX
5108}
5109
4a92b1b8
JB
5110/**
5111 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5112 * @root - the root we're allocating for
957780eb 5113 * @space_info - the space info we want to allocate from
4a92b1b8 5114 * @orig_bytes - the number of bytes we want
48fc7f7e 5115 * @flush - whether or not we can flush to make our reservation
8bb8ab2e 5116 *
01327610 5117 * This will reserve orig_bytes number of bytes from the space info associated
4a92b1b8
JB
5118 * with the block_rsv. If there is not enough space it will make an attempt to
5119 * flush out space to make room. It will do this by flushing delalloc if
5120 * possible or committing the transaction. If flush is 0 then no attempts to
5121 * regain reservations will be made and this will fail if there is not enough
5122 * space already.
8bb8ab2e 5123 */
957780eb
JB
5124static int __reserve_metadata_bytes(struct btrfs_root *root,
5125 struct btrfs_space_info *space_info,
5126 u64 orig_bytes,
5127 enum btrfs_reserve_flush_enum flush)
9ed74f2d 5128{
957780eb 5129 struct reserve_ticket ticket;
2bf64758 5130 u64 used;
8bb8ab2e 5131 int ret = 0;
9ed74f2d 5132
957780eb 5133 ASSERT(orig_bytes);
8ca17f0f 5134 ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL);
fdb5effd 5135
8bb8ab2e 5136 spin_lock(&space_info->lock);
fdb5effd 5137 ret = -ENOSPC;
2bf64758
JB
5138 used = space_info->bytes_used + space_info->bytes_reserved +
5139 space_info->bytes_pinned + space_info->bytes_readonly +
5140 space_info->bytes_may_use;
9ed74f2d 5141
8bb8ab2e 5142 /*
957780eb
JB
5143 * If we have enough space then hooray, make our reservation and carry
5144 * on. If not see if we can overcommit, and if we can, hooray carry on.
5145 * If not things get more complicated.
8bb8ab2e 5146 */
957780eb
JB
5147 if (used + orig_bytes <= space_info->total_bytes) {
5148 space_info->bytes_may_use += orig_bytes;
5149 trace_btrfs_space_reservation(root->fs_info, "space_info",
5150 space_info->flags, orig_bytes,
5151 1);
5152 ret = 0;
5153 } else if (can_overcommit(root, space_info, orig_bytes, flush)) {
44734ed1
JB
5154 space_info->bytes_may_use += orig_bytes;
5155 trace_btrfs_space_reservation(root->fs_info, "space_info",
5156 space_info->flags, orig_bytes,
5157 1);
5158 ret = 0;
2bf64758
JB
5159 }
5160
8bb8ab2e 5161 /*
957780eb
JB
5162 * If we couldn't make a reservation then setup our reservation ticket
5163 * and kick the async worker if it's not already running.
08e007d2 5164 *
957780eb
JB
5165 * If we are a priority flusher then we just need to add our ticket to
5166 * the list and we will do our own flushing further down.
8bb8ab2e 5167 */
72bcd99d 5168 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
957780eb
JB
5169 ticket.bytes = orig_bytes;
5170 ticket.error = 0;
5171 init_waitqueue_head(&ticket.wait);
5172 if (flush == BTRFS_RESERVE_FLUSH_ALL) {
5173 list_add_tail(&ticket.list, &space_info->tickets);
5174 if (!space_info->flush) {
5175 space_info->flush = 1;
f376df2b
JB
5176 trace_btrfs_trigger_flush(root->fs_info,
5177 space_info->flags,
5178 orig_bytes, flush,
5179 "enospc");
957780eb
JB
5180 queue_work(system_unbound_wq,
5181 &root->fs_info->async_reclaim_work);
5182 }
5183 } else {
5184 list_add_tail(&ticket.list,
5185 &space_info->priority_tickets);
5186 }
21c7e756
MX
5187 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
5188 used += orig_bytes;
f6acfd50
JB
5189 /*
5190 * We will do the space reservation dance during log replay,
5191 * which means we won't have fs_info->fs_root set, so don't do
5192 * the async reclaim as we will panic.
5193 */
afcdd129 5194 if (!test_bit(BTRFS_FS_LOG_RECOVERING, &root->fs_info->flags) &&
87241c2e 5195 need_do_async_reclaim(space_info, root, used) &&
f376df2b
JB
5196 !work_busy(&root->fs_info->async_reclaim_work)) {
5197 trace_btrfs_trigger_flush(root->fs_info,
5198 space_info->flags,
5199 orig_bytes, flush,
5200 "preempt");
21c7e756
MX
5201 queue_work(system_unbound_wq,
5202 &root->fs_info->async_reclaim_work);
f376df2b 5203 }
8bb8ab2e 5204 }
f0486c68 5205 spin_unlock(&space_info->lock);
08e007d2 5206 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
957780eb 5207 return ret;
f0486c68 5208
957780eb
JB
5209 if (flush == BTRFS_RESERVE_FLUSH_ALL)
5210 return wait_reserve_ticket(root->fs_info, space_info, &ticket,
5211 orig_bytes);
08e007d2 5212
957780eb
JB
5213 ret = 0;
5214 priority_reclaim_metadata_space(root->fs_info, space_info, &ticket);
5215 spin_lock(&space_info->lock);
5216 if (ticket.bytes) {
5217 if (ticket.bytes < orig_bytes) {
5218 u64 num_bytes = orig_bytes - ticket.bytes;
5219 space_info->bytes_may_use -= num_bytes;
5220 trace_btrfs_space_reservation(root->fs_info,
5221 "space_info", space_info->flags,
5222 num_bytes, 0);
08e007d2 5223
957780eb
JB
5224 }
5225 list_del_init(&ticket.list);
5226 ret = -ENOSPC;
5227 }
5228 spin_unlock(&space_info->lock);
5229 ASSERT(list_empty(&ticket.list));
5230 return ret;
5231}
8bb8ab2e 5232
957780eb
JB
5233/**
5234 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5235 * @root - the root we're allocating for
5236 * @block_rsv - the block_rsv we're allocating for
5237 * @orig_bytes - the number of bytes we want
5238 * @flush - whether or not we can flush to make our reservation
5239 *
5240 * This will reserve orgi_bytes number of bytes from the space info associated
5241 * with the block_rsv. If there is not enough space it will make an attempt to
5242 * flush out space to make room. It will do this by flushing delalloc if
5243 * possible or committing the transaction. If flush is 0 then no attempts to
5244 * regain reservations will be made and this will fail if there is not enough
5245 * space already.
5246 */
5247static int reserve_metadata_bytes(struct btrfs_root *root,
5248 struct btrfs_block_rsv *block_rsv,
5249 u64 orig_bytes,
5250 enum btrfs_reserve_flush_enum flush)
5251{
5252 int ret;
5253
5254 ret = __reserve_metadata_bytes(root, block_rsv->space_info, orig_bytes,
5255 flush);
5d80366e
JB
5256 if (ret == -ENOSPC &&
5257 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
5258 struct btrfs_block_rsv *global_rsv =
5259 &root->fs_info->global_block_rsv;
5260
5261 if (block_rsv != global_rsv &&
5262 !block_rsv_use_bytes(global_rsv, orig_bytes))
5263 ret = 0;
5264 }
cab45e22
JM
5265 if (ret == -ENOSPC)
5266 trace_btrfs_space_reservation(root->fs_info,
5267 "space_info:enospc",
957780eb
JB
5268 block_rsv->space_info->flags,
5269 orig_bytes, 1);
f0486c68
YZ
5270 return ret;
5271}
5272
79787eaa
JM
5273static struct btrfs_block_rsv *get_block_rsv(
5274 const struct btrfs_trans_handle *trans,
5275 const struct btrfs_root *root)
f0486c68 5276{
4c13d758
JB
5277 struct btrfs_block_rsv *block_rsv = NULL;
5278
e9cf439f
AM
5279 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
5280 (root == root->fs_info->csum_root && trans->adding_csums) ||
5281 (root == root->fs_info->uuid_root))
f7a81ea4
SB
5282 block_rsv = trans->block_rsv;
5283
4c13d758 5284 if (!block_rsv)
f0486c68
YZ
5285 block_rsv = root->block_rsv;
5286
5287 if (!block_rsv)
5288 block_rsv = &root->fs_info->empty_block_rsv;
5289
5290 return block_rsv;
5291}
5292
5293static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
5294 u64 num_bytes)
5295{
5296 int ret = -ENOSPC;
5297 spin_lock(&block_rsv->lock);
5298 if (block_rsv->reserved >= num_bytes) {
5299 block_rsv->reserved -= num_bytes;
5300 if (block_rsv->reserved < block_rsv->size)
5301 block_rsv->full = 0;
5302 ret = 0;
5303 }
5304 spin_unlock(&block_rsv->lock);
5305 return ret;
5306}
5307
5308static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
5309 u64 num_bytes, int update_size)
5310{
5311 spin_lock(&block_rsv->lock);
5312 block_rsv->reserved += num_bytes;
5313 if (update_size)
5314 block_rsv->size += num_bytes;
5315 else if (block_rsv->reserved >= block_rsv->size)
5316 block_rsv->full = 1;
5317 spin_unlock(&block_rsv->lock);
5318}
5319
d52be818
JB
5320int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
5321 struct btrfs_block_rsv *dest, u64 num_bytes,
5322 int min_factor)
5323{
5324 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5325 u64 min_bytes;
5326
5327 if (global_rsv->space_info != dest->space_info)
5328 return -ENOSPC;
5329
5330 spin_lock(&global_rsv->lock);
5331 min_bytes = div_factor(global_rsv->size, min_factor);
5332 if (global_rsv->reserved < min_bytes + num_bytes) {
5333 spin_unlock(&global_rsv->lock);
5334 return -ENOSPC;
5335 }
5336 global_rsv->reserved -= num_bytes;
5337 if (global_rsv->reserved < global_rsv->size)
5338 global_rsv->full = 0;
5339 spin_unlock(&global_rsv->lock);
5340
5341 block_rsv_add_bytes(dest, num_bytes, 1);
5342 return 0;
5343}
5344
957780eb
JB
5345/*
5346 * This is for space we already have accounted in space_info->bytes_may_use, so
5347 * basically when we're returning space from block_rsv's.
5348 */
5349static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
5350 struct btrfs_space_info *space_info,
5351 u64 num_bytes)
5352{
5353 struct reserve_ticket *ticket;
5354 struct list_head *head;
5355 u64 used;
5356 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH;
5357 bool check_overcommit = false;
5358
5359 spin_lock(&space_info->lock);
5360 head = &space_info->priority_tickets;
5361
5362 /*
5363 * If we are over our limit then we need to check and see if we can
5364 * overcommit, and if we can't then we just need to free up our space
5365 * and not satisfy any requests.
5366 */
5367 used = space_info->bytes_used + space_info->bytes_reserved +
5368 space_info->bytes_pinned + space_info->bytes_readonly +
5369 space_info->bytes_may_use;
5370 if (used - num_bytes >= space_info->total_bytes)
5371 check_overcommit = true;
5372again:
5373 while (!list_empty(head) && num_bytes) {
5374 ticket = list_first_entry(head, struct reserve_ticket,
5375 list);
5376 /*
5377 * We use 0 bytes because this space is already reserved, so
5378 * adding the ticket space would be a double count.
5379 */
5380 if (check_overcommit &&
5381 !can_overcommit(fs_info->extent_root, space_info, 0,
5382 flush))
5383 break;
5384 if (num_bytes >= ticket->bytes) {
5385 list_del_init(&ticket->list);
5386 num_bytes -= ticket->bytes;
5387 ticket->bytes = 0;
ce129655 5388 space_info->tickets_id++;
957780eb
JB
5389 wake_up(&ticket->wait);
5390 } else {
5391 ticket->bytes -= num_bytes;
5392 num_bytes = 0;
5393 }
5394 }
5395
5396 if (num_bytes && head == &space_info->priority_tickets) {
5397 head = &space_info->tickets;
5398 flush = BTRFS_RESERVE_FLUSH_ALL;
5399 goto again;
5400 }
5401 space_info->bytes_may_use -= num_bytes;
5402 trace_btrfs_space_reservation(fs_info, "space_info",
5403 space_info->flags, num_bytes, 0);
5404 spin_unlock(&space_info->lock);
5405}
5406
5407/*
5408 * This is for newly allocated space that isn't accounted in
5409 * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent
5410 * we use this helper.
5411 */
5412static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
5413 struct btrfs_space_info *space_info,
5414 u64 num_bytes)
5415{
5416 struct reserve_ticket *ticket;
5417 struct list_head *head = &space_info->priority_tickets;
5418
5419again:
5420 while (!list_empty(head) && num_bytes) {
5421 ticket = list_first_entry(head, struct reserve_ticket,
5422 list);
5423 if (num_bytes >= ticket->bytes) {
5424 trace_btrfs_space_reservation(fs_info, "space_info",
5425 space_info->flags,
5426 ticket->bytes, 1);
5427 list_del_init(&ticket->list);
5428 num_bytes -= ticket->bytes;
5429 space_info->bytes_may_use += ticket->bytes;
5430 ticket->bytes = 0;
ce129655 5431 space_info->tickets_id++;
957780eb
JB
5432 wake_up(&ticket->wait);
5433 } else {
5434 trace_btrfs_space_reservation(fs_info, "space_info",
5435 space_info->flags,
5436 num_bytes, 1);
5437 space_info->bytes_may_use += num_bytes;
5438 ticket->bytes -= num_bytes;
5439 num_bytes = 0;
5440 }
5441 }
5442
5443 if (num_bytes && head == &space_info->priority_tickets) {
5444 head = &space_info->tickets;
5445 goto again;
5446 }
5447}
5448
8c2a3ca2
JB
5449static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
5450 struct btrfs_block_rsv *block_rsv,
62a45b60 5451 struct btrfs_block_rsv *dest, u64 num_bytes)
f0486c68
YZ
5452{
5453 struct btrfs_space_info *space_info = block_rsv->space_info;
5454
5455 spin_lock(&block_rsv->lock);
5456 if (num_bytes == (u64)-1)
5457 num_bytes = block_rsv->size;
5458 block_rsv->size -= num_bytes;
5459 if (block_rsv->reserved >= block_rsv->size) {
5460 num_bytes = block_rsv->reserved - block_rsv->size;
5461 block_rsv->reserved = block_rsv->size;
5462 block_rsv->full = 1;
5463 } else {
5464 num_bytes = 0;
5465 }
5466 spin_unlock(&block_rsv->lock);
5467
5468 if (num_bytes > 0) {
5469 if (dest) {
e9e22899
JB
5470 spin_lock(&dest->lock);
5471 if (!dest->full) {
5472 u64 bytes_to_add;
5473
5474 bytes_to_add = dest->size - dest->reserved;
5475 bytes_to_add = min(num_bytes, bytes_to_add);
5476 dest->reserved += bytes_to_add;
5477 if (dest->reserved >= dest->size)
5478 dest->full = 1;
5479 num_bytes -= bytes_to_add;
5480 }
5481 spin_unlock(&dest->lock);
5482 }
957780eb
JB
5483 if (num_bytes)
5484 space_info_add_old_bytes(fs_info, space_info,
5485 num_bytes);
9ed74f2d 5486 }
f0486c68 5487}
4e06bdd6 5488
25d609f8
JB
5489int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src,
5490 struct btrfs_block_rsv *dst, u64 num_bytes,
5491 int update_size)
f0486c68
YZ
5492{
5493 int ret;
9ed74f2d 5494
f0486c68
YZ
5495 ret = block_rsv_use_bytes(src, num_bytes);
5496 if (ret)
5497 return ret;
9ed74f2d 5498
25d609f8 5499 block_rsv_add_bytes(dst, num_bytes, update_size);
9ed74f2d
JB
5500 return 0;
5501}
5502
66d8f3dd 5503void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
9ed74f2d 5504{
f0486c68
YZ
5505 memset(rsv, 0, sizeof(*rsv));
5506 spin_lock_init(&rsv->lock);
66d8f3dd 5507 rsv->type = type;
f0486c68
YZ
5508}
5509
66d8f3dd
MX
5510struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
5511 unsigned short type)
f0486c68
YZ
5512{
5513 struct btrfs_block_rsv *block_rsv;
5514 struct btrfs_fs_info *fs_info = root->fs_info;
9ed74f2d 5515
f0486c68
YZ
5516 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
5517 if (!block_rsv)
5518 return NULL;
9ed74f2d 5519
66d8f3dd 5520 btrfs_init_block_rsv(block_rsv, type);
f0486c68
YZ
5521 block_rsv->space_info = __find_space_info(fs_info,
5522 BTRFS_BLOCK_GROUP_METADATA);
f0486c68
YZ
5523 return block_rsv;
5524}
9ed74f2d 5525
f0486c68
YZ
5526void btrfs_free_block_rsv(struct btrfs_root *root,
5527 struct btrfs_block_rsv *rsv)
5528{
2aaa6655
JB
5529 if (!rsv)
5530 return;
dabdb640
JB
5531 btrfs_block_rsv_release(root, rsv, (u64)-1);
5532 kfree(rsv);
9ed74f2d
JB
5533}
5534
cdfb080e
CM
5535void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv)
5536{
5537 kfree(rsv);
5538}
5539
08e007d2
MX
5540int btrfs_block_rsv_add(struct btrfs_root *root,
5541 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
5542 enum btrfs_reserve_flush_enum flush)
9ed74f2d 5543{
f0486c68 5544 int ret;
9ed74f2d 5545
f0486c68
YZ
5546 if (num_bytes == 0)
5547 return 0;
8bb8ab2e 5548
61b520a9 5549 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
f0486c68
YZ
5550 if (!ret) {
5551 block_rsv_add_bytes(block_rsv, num_bytes, 1);
5552 return 0;
5553 }
9ed74f2d 5554
f0486c68 5555 return ret;
f0486c68 5556}
9ed74f2d 5557
4a92b1b8 5558int btrfs_block_rsv_check(struct btrfs_root *root,
36ba022a 5559 struct btrfs_block_rsv *block_rsv, int min_factor)
f0486c68
YZ
5560{
5561 u64 num_bytes = 0;
f0486c68 5562 int ret = -ENOSPC;
9ed74f2d 5563
f0486c68
YZ
5564 if (!block_rsv)
5565 return 0;
9ed74f2d 5566
f0486c68 5567 spin_lock(&block_rsv->lock);
36ba022a
JB
5568 num_bytes = div_factor(block_rsv->size, min_factor);
5569 if (block_rsv->reserved >= num_bytes)
5570 ret = 0;
5571 spin_unlock(&block_rsv->lock);
9ed74f2d 5572
36ba022a
JB
5573 return ret;
5574}
5575
08e007d2
MX
5576int btrfs_block_rsv_refill(struct btrfs_root *root,
5577 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
5578 enum btrfs_reserve_flush_enum flush)
36ba022a
JB
5579{
5580 u64 num_bytes = 0;
5581 int ret = -ENOSPC;
5582
5583 if (!block_rsv)
5584 return 0;
5585
5586 spin_lock(&block_rsv->lock);
5587 num_bytes = min_reserved;
13553e52 5588 if (block_rsv->reserved >= num_bytes)
f0486c68 5589 ret = 0;
13553e52 5590 else
f0486c68 5591 num_bytes -= block_rsv->reserved;
f0486c68 5592 spin_unlock(&block_rsv->lock);
13553e52 5593
f0486c68
YZ
5594 if (!ret)
5595 return 0;
5596
aa38a711 5597 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
dabdb640
JB
5598 if (!ret) {
5599 block_rsv_add_bytes(block_rsv, num_bytes, 0);
f0486c68 5600 return 0;
6a63209f 5601 }
9ed74f2d 5602
13553e52 5603 return ret;
f0486c68
YZ
5604}
5605
f0486c68
YZ
5606void btrfs_block_rsv_release(struct btrfs_root *root,
5607 struct btrfs_block_rsv *block_rsv,
5608 u64 num_bytes)
5609{
5610 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
17504584 5611 if (global_rsv == block_rsv ||
f0486c68
YZ
5612 block_rsv->space_info != global_rsv->space_info)
5613 global_rsv = NULL;
8c2a3ca2
JB
5614 block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv,
5615 num_bytes);
6a63209f
JB
5616}
5617
8929ecfa
YZ
5618static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
5619{
5620 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
5621 struct btrfs_space_info *sinfo = block_rsv->space_info;
5622 u64 num_bytes;
6a63209f 5623
ae2e4728
JB
5624 /*
5625 * The global block rsv is based on the size of the extent tree, the
5626 * checksum tree and the root tree. If the fs is empty we want to set
5627 * it to a minimal amount for safety.
5628 */
5629 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) +
5630 btrfs_root_used(&fs_info->csum_root->root_item) +
5631 btrfs_root_used(&fs_info->tree_root->root_item);
5632 num_bytes = max_t(u64, num_bytes, SZ_16M);
33b4d47f 5633
8929ecfa 5634 spin_lock(&sinfo->lock);
1f699d38 5635 spin_lock(&block_rsv->lock);
4e06bdd6 5636
ee22184b 5637 block_rsv->size = min_t(u64, num_bytes, SZ_512M);
4e06bdd6 5638
fb4b10e5
JB
5639 if (block_rsv->reserved < block_rsv->size) {
5640 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
5641 sinfo->bytes_reserved + sinfo->bytes_readonly +
5642 sinfo->bytes_may_use;
5643 if (sinfo->total_bytes > num_bytes) {
5644 num_bytes = sinfo->total_bytes - num_bytes;
5645 num_bytes = min(num_bytes,
5646 block_rsv->size - block_rsv->reserved);
5647 block_rsv->reserved += num_bytes;
5648 sinfo->bytes_may_use += num_bytes;
5649 trace_btrfs_space_reservation(fs_info, "space_info",
5650 sinfo->flags, num_bytes,
5651 1);
5652 }
5653 } else if (block_rsv->reserved > block_rsv->size) {
8929ecfa 5654 num_bytes = block_rsv->reserved - block_rsv->size;
fb25e914 5655 sinfo->bytes_may_use -= num_bytes;
8c2a3ca2 5656 trace_btrfs_space_reservation(fs_info, "space_info",
2bcc0328 5657 sinfo->flags, num_bytes, 0);
8929ecfa 5658 block_rsv->reserved = block_rsv->size;
8929ecfa 5659 }
182608c8 5660
fb4b10e5
JB
5661 if (block_rsv->reserved == block_rsv->size)
5662 block_rsv->full = 1;
5663 else
5664 block_rsv->full = 0;
5665
8929ecfa 5666 spin_unlock(&block_rsv->lock);
1f699d38 5667 spin_unlock(&sinfo->lock);
6a63209f
JB
5668}
5669
f0486c68 5670static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
6a63209f 5671{
f0486c68 5672 struct btrfs_space_info *space_info;
6a63209f 5673
f0486c68
YZ
5674 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
5675 fs_info->chunk_block_rsv.space_info = space_info;
6a63209f 5676
f0486c68 5677 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
8929ecfa 5678 fs_info->global_block_rsv.space_info = space_info;
8929ecfa 5679 fs_info->delalloc_block_rsv.space_info = space_info;
f0486c68
YZ
5680 fs_info->trans_block_rsv.space_info = space_info;
5681 fs_info->empty_block_rsv.space_info = space_info;
6d668dda 5682 fs_info->delayed_block_rsv.space_info = space_info;
f0486c68 5683
8929ecfa
YZ
5684 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
5685 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
5686 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
5687 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
3a6cad90
SB
5688 if (fs_info->quota_root)
5689 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
f0486c68 5690 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
8929ecfa 5691
8929ecfa 5692 update_global_block_rsv(fs_info);
6a63209f
JB
5693}
5694
8929ecfa 5695static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
6a63209f 5696{
8c2a3ca2
JB
5697 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
5698 (u64)-1);
8929ecfa
YZ
5699 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
5700 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
5701 WARN_ON(fs_info->trans_block_rsv.size > 0);
5702 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
5703 WARN_ON(fs_info->chunk_block_rsv.size > 0);
5704 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
6d668dda
JB
5705 WARN_ON(fs_info->delayed_block_rsv.size > 0);
5706 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
fcb80c2a
JB
5707}
5708
a22285a6
YZ
5709void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
5710 struct btrfs_root *root)
6a63209f 5711{
0e721106
JB
5712 if (!trans->block_rsv)
5713 return;
5714
a22285a6
YZ
5715 if (!trans->bytes_reserved)
5716 return;
6a63209f 5717
e77266e4 5718 trace_btrfs_space_reservation(root->fs_info, "transaction",
2bcc0328 5719 trans->transid, trans->bytes_reserved, 0);
b24e03db 5720 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
a22285a6
YZ
5721 trans->bytes_reserved = 0;
5722}
6a63209f 5723
4fbcdf66
FM
5724/*
5725 * To be called after all the new block groups attached to the transaction
5726 * handle have been created (btrfs_create_pending_block_groups()).
5727 */
5728void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
5729{
64b63580 5730 struct btrfs_fs_info *fs_info = trans->fs_info;
4fbcdf66
FM
5731
5732 if (!trans->chunk_bytes_reserved)
5733 return;
5734
5735 WARN_ON_ONCE(!list_empty(&trans->new_bgs));
5736
5737 block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
5738 trans->chunk_bytes_reserved);
5739 trans->chunk_bytes_reserved = 0;
5740}
5741
79787eaa 5742/* Can only return 0 or -ENOSPC */
d68fc57b
YZ
5743int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
5744 struct inode *inode)
5745{
5746 struct btrfs_root *root = BTRFS_I(inode)->root;
40acc3ee
JB
5747 /*
5748 * We always use trans->block_rsv here as we will have reserved space
5749 * for our orphan when starting the transaction, using get_block_rsv()
5750 * here will sometimes make us choose the wrong block rsv as we could be
5751 * doing a reloc inode for a non refcounted root.
5752 */
5753 struct btrfs_block_rsv *src_rsv = trans->block_rsv;
d68fc57b
YZ
5754 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
5755
5756 /*
fcb80c2a
JB
5757 * We need to hold space in order to delete our orphan item once we've
5758 * added it, so this takes the reservation so we can release it later
5759 * when we are truly done with the orphan item.
d68fc57b 5760 */
ff5714cc 5761 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
8c2a3ca2
JB
5762 trace_btrfs_space_reservation(root->fs_info, "orphan",
5763 btrfs_ino(inode), num_bytes, 1);
25d609f8 5764 return btrfs_block_rsv_migrate(src_rsv, dst_rsv, num_bytes, 1);
6a63209f
JB
5765}
5766
d68fc57b 5767void btrfs_orphan_release_metadata(struct inode *inode)
97e728d4 5768{
d68fc57b 5769 struct btrfs_root *root = BTRFS_I(inode)->root;
ff5714cc 5770 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
8c2a3ca2
JB
5771 trace_btrfs_space_reservation(root->fs_info, "orphan",
5772 btrfs_ino(inode), num_bytes, 0);
d68fc57b
YZ
5773 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
5774}
97e728d4 5775
d5c12070
MX
5776/*
5777 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
5778 * root: the root of the parent directory
5779 * rsv: block reservation
5780 * items: the number of items that we need do reservation
5781 * qgroup_reserved: used to return the reserved size in qgroup
5782 *
5783 * This function is used to reserve the space for snapshot/subvolume
5784 * creation and deletion. Those operations are different with the
5785 * common file/directory operations, they change two fs/file trees
5786 * and root tree, the number of items that the qgroup reserves is
5787 * different with the free space reservation. So we can not use
01327610 5788 * the space reservation mechanism in start_transaction().
d5c12070
MX
5789 */
5790int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
5791 struct btrfs_block_rsv *rsv,
5792 int items,
ee3441b4
JM
5793 u64 *qgroup_reserved,
5794 bool use_global_rsv)
a22285a6 5795{
d5c12070
MX
5796 u64 num_bytes;
5797 int ret;
ee3441b4 5798 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
d5c12070 5799
afcdd129 5800 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &root->fs_info->flags)) {
d5c12070 5801 /* One for parent inode, two for dir entries */
707e8a07 5802 num_bytes = 3 * root->nodesize;
7174109c 5803 ret = btrfs_qgroup_reserve_meta(root, num_bytes);
d5c12070
MX
5804 if (ret)
5805 return ret;
5806 } else {
5807 num_bytes = 0;
5808 }
5809
5810 *qgroup_reserved = num_bytes;
5811
5812 num_bytes = btrfs_calc_trans_metadata_size(root, items);
5813 rsv->space_info = __find_space_info(root->fs_info,
5814 BTRFS_BLOCK_GROUP_METADATA);
5815 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
5816 BTRFS_RESERVE_FLUSH_ALL);
ee3441b4
JM
5817
5818 if (ret == -ENOSPC && use_global_rsv)
25d609f8 5819 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, 1);
ee3441b4 5820
7174109c
QW
5821 if (ret && *qgroup_reserved)
5822 btrfs_qgroup_free_meta(root, *qgroup_reserved);
d5c12070
MX
5823
5824 return ret;
5825}
5826
5827void btrfs_subvolume_release_metadata(struct btrfs_root *root,
5828 struct btrfs_block_rsv *rsv,
5829 u64 qgroup_reserved)
5830{
5831 btrfs_block_rsv_release(root, rsv, (u64)-1);
97e728d4
JB
5832}
5833
7709cde3
JB
5834/**
5835 * drop_outstanding_extent - drop an outstanding extent
5836 * @inode: the inode we're dropping the extent for
01327610 5837 * @num_bytes: the number of bytes we're releasing.
7709cde3
JB
5838 *
5839 * This is called when we are freeing up an outstanding extent, either called
5840 * after an error or after an extent is written. This will return the number of
5841 * reserved extents that need to be freed. This must be called with
5842 * BTRFS_I(inode)->lock held.
5843 */
dcab6a3b 5844static unsigned drop_outstanding_extent(struct inode *inode, u64 num_bytes)
9e0baf60 5845{
7fd2ae21 5846 unsigned drop_inode_space = 0;
9e0baf60 5847 unsigned dropped_extents = 0;
dcab6a3b 5848 unsigned num_extents = 0;
9e0baf60 5849
dcab6a3b
JB
5850 num_extents = (unsigned)div64_u64(num_bytes +
5851 BTRFS_MAX_EXTENT_SIZE - 1,
5852 BTRFS_MAX_EXTENT_SIZE);
5853 ASSERT(num_extents);
5854 ASSERT(BTRFS_I(inode)->outstanding_extents >= num_extents);
5855 BTRFS_I(inode)->outstanding_extents -= num_extents;
9e0baf60 5856
7fd2ae21 5857 if (BTRFS_I(inode)->outstanding_extents == 0 &&
72ac3c0d
JB
5858 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5859 &BTRFS_I(inode)->runtime_flags))
7fd2ae21 5860 drop_inode_space = 1;
7fd2ae21 5861
9e0baf60 5862 /*
01327610 5863 * If we have more or the same amount of outstanding extents than we have
9e0baf60
JB
5864 * reserved then we need to leave the reserved extents count alone.
5865 */
5866 if (BTRFS_I(inode)->outstanding_extents >=
5867 BTRFS_I(inode)->reserved_extents)
7fd2ae21 5868 return drop_inode_space;
9e0baf60
JB
5869
5870 dropped_extents = BTRFS_I(inode)->reserved_extents -
5871 BTRFS_I(inode)->outstanding_extents;
5872 BTRFS_I(inode)->reserved_extents -= dropped_extents;
7fd2ae21 5873 return dropped_extents + drop_inode_space;
9e0baf60
JB
5874}
5875
7709cde3 5876/**
01327610
NS
5877 * calc_csum_metadata_size - return the amount of metadata space that must be
5878 * reserved/freed for the given bytes.
7709cde3
JB
5879 * @inode: the inode we're manipulating
5880 * @num_bytes: the number of bytes in question
5881 * @reserve: 1 if we are reserving space, 0 if we are freeing space
5882 *
5883 * This adjusts the number of csum_bytes in the inode and then returns the
5884 * correct amount of metadata that must either be reserved or freed. We
5885 * calculate how many checksums we can fit into one leaf and then divide the
5886 * number of bytes that will need to be checksumed by this value to figure out
5887 * how many checksums will be required. If we are adding bytes then the number
5888 * may go up and we will return the number of additional bytes that must be
5889 * reserved. If it is going down we will return the number of bytes that must
5890 * be freed.
5891 *
5892 * This must be called with BTRFS_I(inode)->lock held.
5893 */
5894static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
5895 int reserve)
6324fbf3 5896{
7709cde3 5897 struct btrfs_root *root = BTRFS_I(inode)->root;
1262133b 5898 u64 old_csums, num_csums;
7709cde3
JB
5899
5900 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
5901 BTRFS_I(inode)->csum_bytes == 0)
5902 return 0;
5903
28f75a0e 5904 old_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes);
7709cde3
JB
5905 if (reserve)
5906 BTRFS_I(inode)->csum_bytes += num_bytes;
5907 else
5908 BTRFS_I(inode)->csum_bytes -= num_bytes;
28f75a0e 5909 num_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes);
7709cde3
JB
5910
5911 /* No change, no need to reserve more */
5912 if (old_csums == num_csums)
5913 return 0;
5914
5915 if (reserve)
5916 return btrfs_calc_trans_metadata_size(root,
5917 num_csums - old_csums);
5918
5919 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
0ca1f7ce 5920}
c146afad 5921
0ca1f7ce
YZ
5922int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
5923{
5924 struct btrfs_root *root = BTRFS_I(inode)->root;
5925 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
9e0baf60 5926 u64 to_reserve = 0;
660d3f6c 5927 u64 csum_bytes;
9e0baf60 5928 unsigned nr_extents = 0;
08e007d2 5929 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
eb6b88d9 5930 int ret = 0;
c64c2bd8 5931 bool delalloc_lock = true;
88e081bf
WS
5932 u64 to_free = 0;
5933 unsigned dropped;
48c3d480 5934 bool release_extra = false;
6324fbf3 5935
c64c2bd8
JB
5936 /* If we are a free space inode we need to not flush since we will be in
5937 * the middle of a transaction commit. We also don't need the delalloc
5938 * mutex since we won't race with anybody. We need this mostly to make
5939 * lockdep shut its filthy mouth.
bac357dc
JB
5940 *
5941 * If we have a transaction open (can happen if we call truncate_block
5942 * from truncate), then we need FLUSH_LIMIT so we don't deadlock.
c64c2bd8
JB
5943 */
5944 if (btrfs_is_free_space_inode(inode)) {
08e007d2 5945 flush = BTRFS_RESERVE_NO_FLUSH;
c64c2bd8 5946 delalloc_lock = false;
bac357dc
JB
5947 } else if (current->journal_info) {
5948 flush = BTRFS_RESERVE_FLUSH_LIMIT;
c64c2bd8 5949 }
c09544e0 5950
08e007d2
MX
5951 if (flush != BTRFS_RESERVE_NO_FLUSH &&
5952 btrfs_transaction_in_commit(root->fs_info))
0ca1f7ce 5953 schedule_timeout(1);
ec44a35c 5954
c64c2bd8
JB
5955 if (delalloc_lock)
5956 mutex_lock(&BTRFS_I(inode)->delalloc_mutex);
5957
0ca1f7ce 5958 num_bytes = ALIGN(num_bytes, root->sectorsize);
8bb8ab2e 5959
9e0baf60 5960 spin_lock(&BTRFS_I(inode)->lock);
6a41dd09
JB
5961 nr_extents = (unsigned)div64_u64(num_bytes +
5962 BTRFS_MAX_EXTENT_SIZE - 1,
5963 BTRFS_MAX_EXTENT_SIZE);
5964 BTRFS_I(inode)->outstanding_extents += nr_extents;
9e0baf60 5965
48c3d480 5966 nr_extents = 0;
9e0baf60 5967 if (BTRFS_I(inode)->outstanding_extents >
660d3f6c 5968 BTRFS_I(inode)->reserved_extents)
48c3d480 5969 nr_extents += BTRFS_I(inode)->outstanding_extents -
9e0baf60 5970 BTRFS_I(inode)->reserved_extents;
57a45ced 5971
48c3d480
JB
5972 /* We always want to reserve a slot for updating the inode. */
5973 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents + 1);
7709cde3 5974 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
660d3f6c 5975 csum_bytes = BTRFS_I(inode)->csum_bytes;
9e0baf60 5976 spin_unlock(&BTRFS_I(inode)->lock);
57a45ced 5977
afcdd129 5978 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &root->fs_info->flags)) {
7174109c
QW
5979 ret = btrfs_qgroup_reserve_meta(root,
5980 nr_extents * root->nodesize);
88e081bf
WS
5981 if (ret)
5982 goto out_fail;
5983 }
c5567237 5984
48c3d480 5985 ret = btrfs_block_rsv_add(root, block_rsv, to_reserve, flush);
88e081bf 5986 if (unlikely(ret)) {
7174109c 5987 btrfs_qgroup_free_meta(root, nr_extents * root->nodesize);
88e081bf 5988 goto out_fail;
9e0baf60 5989 }
25179201 5990
660d3f6c 5991 spin_lock(&BTRFS_I(inode)->lock);
48c3d480 5992 if (test_and_set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
f485c9ee
JB
5993 &BTRFS_I(inode)->runtime_flags)) {
5994 to_reserve -= btrfs_calc_trans_metadata_size(root, 1);
48c3d480 5995 release_extra = true;
660d3f6c
JB
5996 }
5997 BTRFS_I(inode)->reserved_extents += nr_extents;
5998 spin_unlock(&BTRFS_I(inode)->lock);
c64c2bd8
JB
5999
6000 if (delalloc_lock)
6001 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
660d3f6c 6002
8c2a3ca2 6003 if (to_reserve)
67871254 6004 trace_btrfs_space_reservation(root->fs_info, "delalloc",
8c2a3ca2 6005 btrfs_ino(inode), to_reserve, 1);
48c3d480
JB
6006 if (release_extra)
6007 btrfs_block_rsv_release(root, block_rsv,
6008 btrfs_calc_trans_metadata_size(root,
6009 1));
0ca1f7ce 6010 return 0;
88e081bf
WS
6011
6012out_fail:
6013 spin_lock(&BTRFS_I(inode)->lock);
dcab6a3b 6014 dropped = drop_outstanding_extent(inode, num_bytes);
88e081bf
WS
6015 /*
6016 * If the inodes csum_bytes is the same as the original
6017 * csum_bytes then we know we haven't raced with any free()ers
6018 * so we can just reduce our inodes csum bytes and carry on.
88e081bf 6019 */
f4881bc7 6020 if (BTRFS_I(inode)->csum_bytes == csum_bytes) {
88e081bf 6021 calc_csum_metadata_size(inode, num_bytes, 0);
f4881bc7
JB
6022 } else {
6023 u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes;
6024 u64 bytes;
6025
6026 /*
6027 * This is tricky, but first we need to figure out how much we
01327610 6028 * freed from any free-ers that occurred during this
f4881bc7
JB
6029 * reservation, so we reset ->csum_bytes to the csum_bytes
6030 * before we dropped our lock, and then call the free for the
6031 * number of bytes that were freed while we were trying our
6032 * reservation.
6033 */
6034 bytes = csum_bytes - BTRFS_I(inode)->csum_bytes;
6035 BTRFS_I(inode)->csum_bytes = csum_bytes;
6036 to_free = calc_csum_metadata_size(inode, bytes, 0);
6037
6038
6039 /*
6040 * Now we need to see how much we would have freed had we not
6041 * been making this reservation and our ->csum_bytes were not
6042 * artificially inflated.
6043 */
6044 BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes;
6045 bytes = csum_bytes - orig_csum_bytes;
6046 bytes = calc_csum_metadata_size(inode, bytes, 0);
6047
6048 /*
6049 * Now reset ->csum_bytes to what it should be. If bytes is
01327610 6050 * more than to_free then we would have freed more space had we
f4881bc7
JB
6051 * not had an artificially high ->csum_bytes, so we need to free
6052 * the remainder. If bytes is the same or less then we don't
6053 * need to do anything, the other free-ers did the correct
6054 * thing.
6055 */
6056 BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes;
6057 if (bytes > to_free)
6058 to_free = bytes - to_free;
6059 else
6060 to_free = 0;
6061 }
88e081bf 6062 spin_unlock(&BTRFS_I(inode)->lock);
e2d1f923 6063 if (dropped)
88e081bf
WS
6064 to_free += btrfs_calc_trans_metadata_size(root, dropped);
6065
6066 if (to_free) {
6067 btrfs_block_rsv_release(root, block_rsv, to_free);
6068 trace_btrfs_space_reservation(root->fs_info, "delalloc",
6069 btrfs_ino(inode), to_free, 0);
6070 }
6071 if (delalloc_lock)
6072 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
6073 return ret;
0ca1f7ce
YZ
6074}
6075
7709cde3
JB
6076/**
6077 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
6078 * @inode: the inode to release the reservation for
6079 * @num_bytes: the number of bytes we're releasing
6080 *
6081 * This will release the metadata reservation for an inode. This can be called
6082 * once we complete IO for a given set of bytes to release their metadata
6083 * reservations.
6084 */
0ca1f7ce
YZ
6085void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
6086{
6087 struct btrfs_root *root = BTRFS_I(inode)->root;
9e0baf60
JB
6088 u64 to_free = 0;
6089 unsigned dropped;
0ca1f7ce
YZ
6090
6091 num_bytes = ALIGN(num_bytes, root->sectorsize);
7709cde3 6092 spin_lock(&BTRFS_I(inode)->lock);
dcab6a3b 6093 dropped = drop_outstanding_extent(inode, num_bytes);
97e728d4 6094
0934856d
MX
6095 if (num_bytes)
6096 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
7709cde3 6097 spin_unlock(&BTRFS_I(inode)->lock);
9e0baf60
JB
6098 if (dropped > 0)
6099 to_free += btrfs_calc_trans_metadata_size(root, dropped);
0ca1f7ce 6100
f5ee5c9a 6101 if (btrfs_is_testing(root->fs_info))
6a3891c5
JB
6102 return;
6103
8c2a3ca2
JB
6104 trace_btrfs_space_reservation(root->fs_info, "delalloc",
6105 btrfs_ino(inode), to_free, 0);
c5567237 6106
0ca1f7ce
YZ
6107 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
6108 to_free);
6109}
6110
1ada3a62 6111/**
7cf5b976 6112 * btrfs_delalloc_reserve_space - reserve data and metadata space for
1ada3a62
QW
6113 * delalloc
6114 * @inode: inode we're writing to
6115 * @start: start range we are writing to
6116 * @len: how long the range we are writing to
6117 *
1ada3a62
QW
6118 * This will do the following things
6119 *
6120 * o reserve space in data space info for num bytes
6121 * and reserve precious corresponding qgroup space
6122 * (Done in check_data_free_space)
6123 *
6124 * o reserve space for metadata space, based on the number of outstanding
6125 * extents and how much csums will be needed
6126 * also reserve metadata space in a per root over-reserve method.
6127 * o add to the inodes->delalloc_bytes
6128 * o add it to the fs_info's delalloc inodes list.
6129 * (Above 3 all done in delalloc_reserve_metadata)
6130 *
6131 * Return 0 for success
6132 * Return <0 for error(-ENOSPC or -EQUOT)
6133 */
7cf5b976 6134int btrfs_delalloc_reserve_space(struct inode *inode, u64 start, u64 len)
1ada3a62
QW
6135{
6136 int ret;
6137
7cf5b976 6138 ret = btrfs_check_data_free_space(inode, start, len);
1ada3a62
QW
6139 if (ret < 0)
6140 return ret;
6141 ret = btrfs_delalloc_reserve_metadata(inode, len);
6142 if (ret < 0)
7cf5b976 6143 btrfs_free_reserved_data_space(inode, start, len);
1ada3a62
QW
6144 return ret;
6145}
6146
7709cde3 6147/**
7cf5b976 6148 * btrfs_delalloc_release_space - release data and metadata space for delalloc
1ada3a62
QW
6149 * @inode: inode we're releasing space for
6150 * @start: start position of the space already reserved
6151 * @len: the len of the space already reserved
6152 *
6153 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
6154 * called in the case that we don't need the metadata AND data reservations
6155 * anymore. So if there is an error or we insert an inline extent.
6156 *
6157 * This function will release the metadata space that was not used and will
6158 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
6159 * list if there are no delalloc bytes left.
6160 * Also it will handle the qgroup reserved space.
6161 */
7cf5b976 6162void btrfs_delalloc_release_space(struct inode *inode, u64 start, u64 len)
1ada3a62
QW
6163{
6164 btrfs_delalloc_release_metadata(inode, len);
7cf5b976 6165 btrfs_free_reserved_data_space(inode, start, len);
6324fbf3
CM
6166}
6167
ce93ec54
JB
6168static int update_block_group(struct btrfs_trans_handle *trans,
6169 struct btrfs_root *root, u64 bytenr,
6170 u64 num_bytes, int alloc)
9078a3e1 6171{
0af3d00b 6172 struct btrfs_block_group_cache *cache = NULL;
9078a3e1 6173 struct btrfs_fs_info *info = root->fs_info;
db94535d 6174 u64 total = num_bytes;
9078a3e1 6175 u64 old_val;
db94535d 6176 u64 byte_in_group;
0af3d00b 6177 int factor;
3e1ad54f 6178
5d4f98a2 6179 /* block accounting for super block */
eb73c1b7 6180 spin_lock(&info->delalloc_root_lock);
6c41761f 6181 old_val = btrfs_super_bytes_used(info->super_copy);
5d4f98a2
YZ
6182 if (alloc)
6183 old_val += num_bytes;
6184 else
6185 old_val -= num_bytes;
6c41761f 6186 btrfs_set_super_bytes_used(info->super_copy, old_val);
eb73c1b7 6187 spin_unlock(&info->delalloc_root_lock);
5d4f98a2 6188
d397712b 6189 while (total) {
db94535d 6190 cache = btrfs_lookup_block_group(info, bytenr);
f3465ca4 6191 if (!cache)
79787eaa 6192 return -ENOENT;
b742bb82
YZ
6193 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
6194 BTRFS_BLOCK_GROUP_RAID1 |
6195 BTRFS_BLOCK_GROUP_RAID10))
6196 factor = 2;
6197 else
6198 factor = 1;
9d66e233
JB
6199 /*
6200 * If this block group has free space cache written out, we
6201 * need to make sure to load it if we are removing space. This
6202 * is because we need the unpinning stage to actually add the
6203 * space back to the block group, otherwise we will leak space.
6204 */
6205 if (!alloc && cache->cached == BTRFS_CACHE_NO)
f6373bf3 6206 cache_block_group(cache, 1);
0af3d00b 6207
db94535d
CM
6208 byte_in_group = bytenr - cache->key.objectid;
6209 WARN_ON(byte_in_group > cache->key.offset);
9078a3e1 6210
25179201 6211 spin_lock(&cache->space_info->lock);
c286ac48 6212 spin_lock(&cache->lock);
0af3d00b 6213
3cdde224 6214 if (btrfs_test_opt(root->fs_info, SPACE_CACHE) &&
0af3d00b
JB
6215 cache->disk_cache_state < BTRFS_DC_CLEAR)
6216 cache->disk_cache_state = BTRFS_DC_CLEAR;
6217
9078a3e1 6218 old_val = btrfs_block_group_used(&cache->item);
db94535d 6219 num_bytes = min(total, cache->key.offset - byte_in_group);
cd1bc465 6220 if (alloc) {
db94535d 6221 old_val += num_bytes;
11833d66
YZ
6222 btrfs_set_block_group_used(&cache->item, old_val);
6223 cache->reserved -= num_bytes;
11833d66 6224 cache->space_info->bytes_reserved -= num_bytes;
b742bb82
YZ
6225 cache->space_info->bytes_used += num_bytes;
6226 cache->space_info->disk_used += num_bytes * factor;
c286ac48 6227 spin_unlock(&cache->lock);
25179201 6228 spin_unlock(&cache->space_info->lock);
cd1bc465 6229 } else {
db94535d 6230 old_val -= num_bytes;
ae0ab003
FM
6231 btrfs_set_block_group_used(&cache->item, old_val);
6232 cache->pinned += num_bytes;
6233 cache->space_info->bytes_pinned += num_bytes;
6234 cache->space_info->bytes_used -= num_bytes;
6235 cache->space_info->disk_used -= num_bytes * factor;
6236 spin_unlock(&cache->lock);
6237 spin_unlock(&cache->space_info->lock);
47ab2a6c 6238
c51e7bb1
JB
6239 trace_btrfs_space_reservation(root->fs_info, "pinned",
6240 cache->space_info->flags,
6241 num_bytes, 1);
ae0ab003
FM
6242 set_extent_dirty(info->pinned_extents,
6243 bytenr, bytenr + num_bytes - 1,
6244 GFP_NOFS | __GFP_NOFAIL);
cd1bc465 6245 }
1bbc621e
CM
6246
6247 spin_lock(&trans->transaction->dirty_bgs_lock);
6248 if (list_empty(&cache->dirty_list)) {
6249 list_add_tail(&cache->dirty_list,
6250 &trans->transaction->dirty_bgs);
6251 trans->transaction->num_dirty_bgs++;
6252 btrfs_get_block_group(cache);
6253 }
6254 spin_unlock(&trans->transaction->dirty_bgs_lock);
6255
036a9348
FM
6256 /*
6257 * No longer have used bytes in this block group, queue it for
6258 * deletion. We do this after adding the block group to the
6259 * dirty list to avoid races between cleaner kthread and space
6260 * cache writeout.
6261 */
6262 if (!alloc && old_val == 0) {
6263 spin_lock(&info->unused_bgs_lock);
6264 if (list_empty(&cache->bg_list)) {
6265 btrfs_get_block_group(cache);
6266 list_add_tail(&cache->bg_list,
6267 &info->unused_bgs);
6268 }
6269 spin_unlock(&info->unused_bgs_lock);
6270 }
6271
fa9c0d79 6272 btrfs_put_block_group(cache);
db94535d
CM
6273 total -= num_bytes;
6274 bytenr += num_bytes;
9078a3e1
CM
6275 }
6276 return 0;
6277}
6324fbf3 6278
a061fc8d
CM
6279static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
6280{
0f9dd46c 6281 struct btrfs_block_group_cache *cache;
d2fb3437 6282 u64 bytenr;
0f9dd46c 6283
a1897fdd
LB
6284 spin_lock(&root->fs_info->block_group_cache_lock);
6285 bytenr = root->fs_info->first_logical_byte;
6286 spin_unlock(&root->fs_info->block_group_cache_lock);
6287
6288 if (bytenr < (u64)-1)
6289 return bytenr;
6290
0f9dd46c
JB
6291 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
6292 if (!cache)
a061fc8d 6293 return 0;
0f9dd46c 6294
d2fb3437 6295 bytenr = cache->key.objectid;
fa9c0d79 6296 btrfs_put_block_group(cache);
d2fb3437
YZ
6297
6298 return bytenr;
a061fc8d
CM
6299}
6300
f0486c68
YZ
6301static int pin_down_extent(struct btrfs_root *root,
6302 struct btrfs_block_group_cache *cache,
6303 u64 bytenr, u64 num_bytes, int reserved)
324ae4df 6304{
11833d66
YZ
6305 spin_lock(&cache->space_info->lock);
6306 spin_lock(&cache->lock);
6307 cache->pinned += num_bytes;
6308 cache->space_info->bytes_pinned += num_bytes;
6309 if (reserved) {
6310 cache->reserved -= num_bytes;
6311 cache->space_info->bytes_reserved -= num_bytes;
6312 }
6313 spin_unlock(&cache->lock);
6314 spin_unlock(&cache->space_info->lock);
68b38550 6315
c51e7bb1
JB
6316 trace_btrfs_space_reservation(root->fs_info, "pinned",
6317 cache->space_info->flags, num_bytes, 1);
f0486c68
YZ
6318 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
6319 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
6320 return 0;
6321}
68b38550 6322
f0486c68
YZ
6323/*
6324 * this function must be called within transaction
6325 */
6326int btrfs_pin_extent(struct btrfs_root *root,
6327 u64 bytenr, u64 num_bytes, int reserved)
6328{
6329 struct btrfs_block_group_cache *cache;
68b38550 6330
f0486c68 6331 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
79787eaa 6332 BUG_ON(!cache); /* Logic error */
f0486c68
YZ
6333
6334 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
6335
6336 btrfs_put_block_group(cache);
11833d66
YZ
6337 return 0;
6338}
6339
f0486c68 6340/*
e688b725
CM
6341 * this function must be called within transaction
6342 */
dcfac415 6343int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
e688b725
CM
6344 u64 bytenr, u64 num_bytes)
6345{
6346 struct btrfs_block_group_cache *cache;
b50c6e25 6347 int ret;
e688b725
CM
6348
6349 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
b50c6e25
JB
6350 if (!cache)
6351 return -EINVAL;
e688b725
CM
6352
6353 /*
6354 * pull in the free space cache (if any) so that our pin
6355 * removes the free space from the cache. We have load_only set
6356 * to one because the slow code to read in the free extents does check
6357 * the pinned extents.
6358 */
f6373bf3 6359 cache_block_group(cache, 1);
e688b725
CM
6360
6361 pin_down_extent(root, cache, bytenr, num_bytes, 0);
6362
6363 /* remove us from the free space cache (if we're there at all) */
b50c6e25 6364 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
e688b725 6365 btrfs_put_block_group(cache);
b50c6e25 6366 return ret;
e688b725
CM
6367}
6368
8c2a1a30
JB
6369static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes)
6370{
6371 int ret;
6372 struct btrfs_block_group_cache *block_group;
6373 struct btrfs_caching_control *caching_ctl;
6374
6375 block_group = btrfs_lookup_block_group(root->fs_info, start);
6376 if (!block_group)
6377 return -EINVAL;
6378
6379 cache_block_group(block_group, 0);
6380 caching_ctl = get_caching_control(block_group);
6381
6382 if (!caching_ctl) {
6383 /* Logic error */
6384 BUG_ON(!block_group_cache_done(block_group));
6385 ret = btrfs_remove_free_space(block_group, start, num_bytes);
6386 } else {
6387 mutex_lock(&caching_ctl->mutex);
6388
6389 if (start >= caching_ctl->progress) {
6390 ret = add_excluded_extent(root, start, num_bytes);
6391 } else if (start + num_bytes <= caching_ctl->progress) {
6392 ret = btrfs_remove_free_space(block_group,
6393 start, num_bytes);
6394 } else {
6395 num_bytes = caching_ctl->progress - start;
6396 ret = btrfs_remove_free_space(block_group,
6397 start, num_bytes);
6398 if (ret)
6399 goto out_lock;
6400
6401 num_bytes = (start + num_bytes) -
6402 caching_ctl->progress;
6403 start = caching_ctl->progress;
6404 ret = add_excluded_extent(root, start, num_bytes);
6405 }
6406out_lock:
6407 mutex_unlock(&caching_ctl->mutex);
6408 put_caching_control(caching_ctl);
6409 }
6410 btrfs_put_block_group(block_group);
6411 return ret;
6412}
6413
6414int btrfs_exclude_logged_extents(struct btrfs_root *log,
6415 struct extent_buffer *eb)
6416{
6417 struct btrfs_file_extent_item *item;
6418 struct btrfs_key key;
6419 int found_type;
6420 int i;
6421
6422 if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS))
6423 return 0;
6424
6425 for (i = 0; i < btrfs_header_nritems(eb); i++) {
6426 btrfs_item_key_to_cpu(eb, &key, i);
6427 if (key.type != BTRFS_EXTENT_DATA_KEY)
6428 continue;
6429 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
6430 found_type = btrfs_file_extent_type(eb, item);
6431 if (found_type == BTRFS_FILE_EXTENT_INLINE)
6432 continue;
6433 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
6434 continue;
6435 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
6436 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
6437 __exclude_logged_extent(log, key.objectid, key.offset);
6438 }
6439
6440 return 0;
6441}
6442
9cfa3e34
FM
6443static void
6444btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg)
6445{
6446 atomic_inc(&bg->reservations);
6447}
6448
6449void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info,
6450 const u64 start)
6451{
6452 struct btrfs_block_group_cache *bg;
6453
6454 bg = btrfs_lookup_block_group(fs_info, start);
6455 ASSERT(bg);
6456 if (atomic_dec_and_test(&bg->reservations))
6457 wake_up_atomic_t(&bg->reservations);
6458 btrfs_put_block_group(bg);
6459}
6460
6461static int btrfs_wait_bg_reservations_atomic_t(atomic_t *a)
6462{
6463 schedule();
6464 return 0;
6465}
6466
6467void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg)
6468{
6469 struct btrfs_space_info *space_info = bg->space_info;
6470
6471 ASSERT(bg->ro);
6472
6473 if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA))
6474 return;
6475
6476 /*
6477 * Our block group is read only but before we set it to read only,
6478 * some task might have had allocated an extent from it already, but it
6479 * has not yet created a respective ordered extent (and added it to a
6480 * root's list of ordered extents).
6481 * Therefore wait for any task currently allocating extents, since the
6482 * block group's reservations counter is incremented while a read lock
6483 * on the groups' semaphore is held and decremented after releasing
6484 * the read access on that semaphore and creating the ordered extent.
6485 */
6486 down_write(&space_info->groups_sem);
6487 up_write(&space_info->groups_sem);
6488
6489 wait_on_atomic_t(&bg->reservations,
6490 btrfs_wait_bg_reservations_atomic_t,
6491 TASK_UNINTERRUPTIBLE);
6492}
6493
fb25e914 6494/**
4824f1f4 6495 * btrfs_add_reserved_bytes - update the block_group and space info counters
fb25e914 6496 * @cache: The cache we are manipulating
18513091
WX
6497 * @ram_bytes: The number of bytes of file content, and will be same to
6498 * @num_bytes except for the compress path.
fb25e914 6499 * @num_bytes: The number of bytes in question
e570fd27 6500 * @delalloc: The blocks are allocated for the delalloc write
fb25e914 6501 *
4824f1f4
WX
6502 * This is called by the allocator when it reserves space. Metadata
6503 * reservations should be called with RESERVE_ALLOC so we do the proper
fb25e914
JB
6504 * ENOSPC accounting. For data we handle the reservation through clearing the
6505 * delalloc bits in the io_tree. We have to do this since we could end up
6506 * allocating less disk space for the amount of data we have reserved in the
6507 * case of compression.
6508 *
6509 * If this is a reservation and the block group has become read only we cannot
6510 * make the reservation and return -EAGAIN, otherwise this function always
6511 * succeeds.
f0486c68 6512 */
4824f1f4 6513static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache,
18513091 6514 u64 ram_bytes, u64 num_bytes, int delalloc)
11833d66 6515{
fb25e914 6516 struct btrfs_space_info *space_info = cache->space_info;
f0486c68 6517 int ret = 0;
79787eaa 6518
fb25e914
JB
6519 spin_lock(&space_info->lock);
6520 spin_lock(&cache->lock);
4824f1f4
WX
6521 if (cache->ro) {
6522 ret = -EAGAIN;
fb25e914 6523 } else {
4824f1f4
WX
6524 cache->reserved += num_bytes;
6525 space_info->bytes_reserved += num_bytes;
e570fd27 6526
18513091
WX
6527 trace_btrfs_space_reservation(cache->fs_info,
6528 "space_info", space_info->flags,
6529 ram_bytes, 0);
6530 space_info->bytes_may_use -= ram_bytes;
e570fd27 6531 if (delalloc)
4824f1f4 6532 cache->delalloc_bytes += num_bytes;
324ae4df 6533 }
fb25e914
JB
6534 spin_unlock(&cache->lock);
6535 spin_unlock(&space_info->lock);
f0486c68 6536 return ret;
324ae4df 6537}
9078a3e1 6538
4824f1f4
WX
6539/**
6540 * btrfs_free_reserved_bytes - update the block_group and space info counters
6541 * @cache: The cache we are manipulating
6542 * @num_bytes: The number of bytes in question
6543 * @delalloc: The blocks are allocated for the delalloc write
6544 *
6545 * This is called by somebody who is freeing space that was never actually used
6546 * on disk. For example if you reserve some space for a new leaf in transaction
6547 * A and before transaction A commits you free that leaf, you call this with
6548 * reserve set to 0 in order to clear the reservation.
6549 */
6550
6551static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
6552 u64 num_bytes, int delalloc)
6553{
6554 struct btrfs_space_info *space_info = cache->space_info;
6555 int ret = 0;
6556
6557 spin_lock(&space_info->lock);
6558 spin_lock(&cache->lock);
6559 if (cache->ro)
6560 space_info->bytes_readonly += num_bytes;
6561 cache->reserved -= num_bytes;
6562 space_info->bytes_reserved -= num_bytes;
6563
6564 if (delalloc)
6565 cache->delalloc_bytes -= num_bytes;
6566 spin_unlock(&cache->lock);
6567 spin_unlock(&space_info->lock);
6568 return ret;
6569}
143bede5 6570void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
11833d66 6571 struct btrfs_root *root)
e8569813 6572{
e8569813 6573 struct btrfs_fs_info *fs_info = root->fs_info;
11833d66
YZ
6574 struct btrfs_caching_control *next;
6575 struct btrfs_caching_control *caching_ctl;
6576 struct btrfs_block_group_cache *cache;
e8569813 6577
9e351cc8 6578 down_write(&fs_info->commit_root_sem);
25179201 6579
11833d66
YZ
6580 list_for_each_entry_safe(caching_ctl, next,
6581 &fs_info->caching_block_groups, list) {
6582 cache = caching_ctl->block_group;
6583 if (block_group_cache_done(cache)) {
6584 cache->last_byte_to_unpin = (u64)-1;
6585 list_del_init(&caching_ctl->list);
6586 put_caching_control(caching_ctl);
e8569813 6587 } else {
11833d66 6588 cache->last_byte_to_unpin = caching_ctl->progress;
e8569813 6589 }
e8569813 6590 }
11833d66
YZ
6591
6592 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6593 fs_info->pinned_extents = &fs_info->freed_extents[1];
6594 else
6595 fs_info->pinned_extents = &fs_info->freed_extents[0];
6596
9e351cc8 6597 up_write(&fs_info->commit_root_sem);
8929ecfa
YZ
6598
6599 update_global_block_rsv(fs_info);
e8569813
ZY
6600}
6601
c759c4e1
JB
6602/*
6603 * Returns the free cluster for the given space info and sets empty_cluster to
6604 * what it should be based on the mount options.
6605 */
6606static struct btrfs_free_cluster *
6607fetch_cluster_info(struct btrfs_root *root, struct btrfs_space_info *space_info,
6608 u64 *empty_cluster)
6609{
6610 struct btrfs_free_cluster *ret = NULL;
3cdde224 6611 bool ssd = btrfs_test_opt(root->fs_info, SSD);
c759c4e1
JB
6612
6613 *empty_cluster = 0;
6614 if (btrfs_mixed_space_info(space_info))
6615 return ret;
6616
6617 if (ssd)
ee22184b 6618 *empty_cluster = SZ_2M;
c759c4e1
JB
6619 if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
6620 ret = &root->fs_info->meta_alloc_cluster;
6621 if (!ssd)
ee22184b 6622 *empty_cluster = SZ_64K;
c759c4e1
JB
6623 } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) && ssd) {
6624 ret = &root->fs_info->data_alloc_cluster;
6625 }
6626
6627 return ret;
6628}
6629
678886bd
FM
6630static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end,
6631 const bool return_free_space)
ccd467d6 6632{
11833d66
YZ
6633 struct btrfs_fs_info *fs_info = root->fs_info;
6634 struct btrfs_block_group_cache *cache = NULL;
7b398f8e
JB
6635 struct btrfs_space_info *space_info;
6636 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
c759c4e1 6637 struct btrfs_free_cluster *cluster = NULL;
11833d66 6638 u64 len;
c759c4e1
JB
6639 u64 total_unpinned = 0;
6640 u64 empty_cluster = 0;
7b398f8e 6641 bool readonly;
ccd467d6 6642
11833d66 6643 while (start <= end) {
7b398f8e 6644 readonly = false;
11833d66
YZ
6645 if (!cache ||
6646 start >= cache->key.objectid + cache->key.offset) {
6647 if (cache)
6648 btrfs_put_block_group(cache);
c759c4e1 6649 total_unpinned = 0;
11833d66 6650 cache = btrfs_lookup_block_group(fs_info, start);
79787eaa 6651 BUG_ON(!cache); /* Logic error */
c759c4e1
JB
6652
6653 cluster = fetch_cluster_info(root,
6654 cache->space_info,
6655 &empty_cluster);
6656 empty_cluster <<= 1;
11833d66
YZ
6657 }
6658
6659 len = cache->key.objectid + cache->key.offset - start;
6660 len = min(len, end + 1 - start);
6661
6662 if (start < cache->last_byte_to_unpin) {
6663 len = min(len, cache->last_byte_to_unpin - start);
678886bd
FM
6664 if (return_free_space)
6665 btrfs_add_free_space(cache, start, len);
11833d66
YZ
6666 }
6667
f0486c68 6668 start += len;
c759c4e1 6669 total_unpinned += len;
7b398f8e 6670 space_info = cache->space_info;
f0486c68 6671
c759c4e1
JB
6672 /*
6673 * If this space cluster has been marked as fragmented and we've
6674 * unpinned enough in this block group to potentially allow a
6675 * cluster to be created inside of it go ahead and clear the
6676 * fragmented check.
6677 */
6678 if (cluster && cluster->fragmented &&
6679 total_unpinned > empty_cluster) {
6680 spin_lock(&cluster->lock);
6681 cluster->fragmented = 0;
6682 spin_unlock(&cluster->lock);
6683 }
6684
7b398f8e 6685 spin_lock(&space_info->lock);
11833d66
YZ
6686 spin_lock(&cache->lock);
6687 cache->pinned -= len;
7b398f8e 6688 space_info->bytes_pinned -= len;
c51e7bb1
JB
6689
6690 trace_btrfs_space_reservation(fs_info, "pinned",
6691 space_info->flags, len, 0);
4f4db217 6692 space_info->max_extent_size = 0;
d288db5d 6693 percpu_counter_add(&space_info->total_bytes_pinned, -len);
7b398f8e
JB
6694 if (cache->ro) {
6695 space_info->bytes_readonly += len;
6696 readonly = true;
6697 }
11833d66 6698 spin_unlock(&cache->lock);
957780eb
JB
6699 if (!readonly && return_free_space &&
6700 global_rsv->space_info == space_info) {
6701 u64 to_add = len;
6702 WARN_ON(!return_free_space);
7b398f8e
JB
6703 spin_lock(&global_rsv->lock);
6704 if (!global_rsv->full) {
957780eb
JB
6705 to_add = min(len, global_rsv->size -
6706 global_rsv->reserved);
6707 global_rsv->reserved += to_add;
6708 space_info->bytes_may_use += to_add;
7b398f8e
JB
6709 if (global_rsv->reserved >= global_rsv->size)
6710 global_rsv->full = 1;
957780eb
JB
6711 trace_btrfs_space_reservation(fs_info,
6712 "space_info",
6713 space_info->flags,
6714 to_add, 1);
6715 len -= to_add;
7b398f8e
JB
6716 }
6717 spin_unlock(&global_rsv->lock);
957780eb
JB
6718 /* Add to any tickets we may have */
6719 if (len)
6720 space_info_add_new_bytes(fs_info, space_info,
6721 len);
7b398f8e
JB
6722 }
6723 spin_unlock(&space_info->lock);
ccd467d6 6724 }
11833d66
YZ
6725
6726 if (cache)
6727 btrfs_put_block_group(cache);
ccd467d6
CM
6728 return 0;
6729}
6730
6731int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
11833d66 6732 struct btrfs_root *root)
a28ec197 6733{
11833d66 6734 struct btrfs_fs_info *fs_info = root->fs_info;
e33e17ee
JM
6735 struct btrfs_block_group_cache *block_group, *tmp;
6736 struct list_head *deleted_bgs;
11833d66 6737 struct extent_io_tree *unpin;
1a5bc167
CM
6738 u64 start;
6739 u64 end;
a28ec197 6740 int ret;
a28ec197 6741
11833d66
YZ
6742 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6743 unpin = &fs_info->freed_extents[1];
6744 else
6745 unpin = &fs_info->freed_extents[0];
6746
e33e17ee 6747 while (!trans->aborted) {
d4b450cd 6748 mutex_lock(&fs_info->unused_bg_unpin_mutex);
1a5bc167 6749 ret = find_first_extent_bit(unpin, 0, &start, &end,
e6138876 6750 EXTENT_DIRTY, NULL);
d4b450cd
FM
6751 if (ret) {
6752 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
a28ec197 6753 break;
d4b450cd 6754 }
1f3c79a2 6755
3cdde224 6756 if (btrfs_test_opt(root->fs_info, DISCARD))
5378e607
LD
6757 ret = btrfs_discard_extent(root, start,
6758 end + 1 - start, NULL);
1f3c79a2 6759
af6f8f60 6760 clear_extent_dirty(unpin, start, end);
678886bd 6761 unpin_extent_range(root, start, end, true);
d4b450cd 6762 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
b9473439 6763 cond_resched();
a28ec197 6764 }
817d52f8 6765
e33e17ee
JM
6766 /*
6767 * Transaction is finished. We don't need the lock anymore. We
6768 * do need to clean up the block groups in case of a transaction
6769 * abort.
6770 */
6771 deleted_bgs = &trans->transaction->deleted_bgs;
6772 list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) {
6773 u64 trimmed = 0;
6774
6775 ret = -EROFS;
6776 if (!trans->aborted)
6777 ret = btrfs_discard_extent(root,
6778 block_group->key.objectid,
6779 block_group->key.offset,
6780 &trimmed);
6781
6782 list_del_init(&block_group->bg_list);
6783 btrfs_put_block_group_trimming(block_group);
6784 btrfs_put_block_group(block_group);
6785
6786 if (ret) {
6787 const char *errstr = btrfs_decode_error(ret);
6788 btrfs_warn(fs_info,
6789 "Discard failed while removing blockgroup: errno=%d %s\n",
6790 ret, errstr);
6791 }
6792 }
6793
e20d96d6
CM
6794 return 0;
6795}
6796
b150a4f1
JB
6797static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes,
6798 u64 owner, u64 root_objectid)
6799{
6800 struct btrfs_space_info *space_info;
6801 u64 flags;
6802
6803 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
6804 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
6805 flags = BTRFS_BLOCK_GROUP_SYSTEM;
6806 else
6807 flags = BTRFS_BLOCK_GROUP_METADATA;
6808 } else {
6809 flags = BTRFS_BLOCK_GROUP_DATA;
6810 }
6811
6812 space_info = __find_space_info(fs_info, flags);
6813 BUG_ON(!space_info); /* Logic bug */
6814 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
6815}
6816
6817
5d4f98a2
YZ
6818static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
6819 struct btrfs_root *root,
c682f9b3 6820 struct btrfs_delayed_ref_node *node, u64 parent,
5d4f98a2
YZ
6821 u64 root_objectid, u64 owner_objectid,
6822 u64 owner_offset, int refs_to_drop,
c682f9b3 6823 struct btrfs_delayed_extent_op *extent_op)
a28ec197 6824{
e2fa7227 6825 struct btrfs_key key;
5d4f98a2 6826 struct btrfs_path *path;
1261ec42
CM
6827 struct btrfs_fs_info *info = root->fs_info;
6828 struct btrfs_root *extent_root = info->extent_root;
5f39d397 6829 struct extent_buffer *leaf;
5d4f98a2
YZ
6830 struct btrfs_extent_item *ei;
6831 struct btrfs_extent_inline_ref *iref;
a28ec197 6832 int ret;
5d4f98a2 6833 int is_data;
952fccac
CM
6834 int extent_slot = 0;
6835 int found_extent = 0;
6836 int num_to_del = 1;
5d4f98a2
YZ
6837 u32 item_size;
6838 u64 refs;
c682f9b3
QW
6839 u64 bytenr = node->bytenr;
6840 u64 num_bytes = node->num_bytes;
fcebe456 6841 int last_ref = 0;
3173a18f
JB
6842 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
6843 SKINNY_METADATA);
037e6390 6844
5caf2a00 6845 path = btrfs_alloc_path();
54aa1f4d
CM
6846 if (!path)
6847 return -ENOMEM;
5f26f772 6848
e4058b54 6849 path->reada = READA_FORWARD;
b9473439 6850 path->leave_spinning = 1;
5d4f98a2
YZ
6851
6852 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
6853 BUG_ON(!is_data && refs_to_drop != 1);
6854
3173a18f
JB
6855 if (is_data)
6856 skinny_metadata = 0;
6857
5d4f98a2
YZ
6858 ret = lookup_extent_backref(trans, extent_root, path, &iref,
6859 bytenr, num_bytes, parent,
6860 root_objectid, owner_objectid,
6861 owner_offset);
7bb86316 6862 if (ret == 0) {
952fccac 6863 extent_slot = path->slots[0];
5d4f98a2
YZ
6864 while (extent_slot >= 0) {
6865 btrfs_item_key_to_cpu(path->nodes[0], &key,
952fccac 6866 extent_slot);
5d4f98a2 6867 if (key.objectid != bytenr)
952fccac 6868 break;
5d4f98a2
YZ
6869 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6870 key.offset == num_bytes) {
952fccac
CM
6871 found_extent = 1;
6872 break;
6873 }
3173a18f
JB
6874 if (key.type == BTRFS_METADATA_ITEM_KEY &&
6875 key.offset == owner_objectid) {
6876 found_extent = 1;
6877 break;
6878 }
952fccac
CM
6879 if (path->slots[0] - extent_slot > 5)
6880 break;
5d4f98a2 6881 extent_slot--;
952fccac 6882 }
5d4f98a2
YZ
6883#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6884 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
6885 if (found_extent && item_size < sizeof(*ei))
6886 found_extent = 0;
6887#endif
31840ae1 6888 if (!found_extent) {
5d4f98a2 6889 BUG_ON(iref);
56bec294 6890 ret = remove_extent_backref(trans, extent_root, path,
5d4f98a2 6891 NULL, refs_to_drop,
fcebe456 6892 is_data, &last_ref);
005d6427 6893 if (ret) {
66642832 6894 btrfs_abort_transaction(trans, ret);
005d6427
DS
6895 goto out;
6896 }
b3b4aa74 6897 btrfs_release_path(path);
b9473439 6898 path->leave_spinning = 1;
5d4f98a2
YZ
6899
6900 key.objectid = bytenr;
6901 key.type = BTRFS_EXTENT_ITEM_KEY;
6902 key.offset = num_bytes;
6903
3173a18f
JB
6904 if (!is_data && skinny_metadata) {
6905 key.type = BTRFS_METADATA_ITEM_KEY;
6906 key.offset = owner_objectid;
6907 }
6908
31840ae1
ZY
6909 ret = btrfs_search_slot(trans, extent_root,
6910 &key, path, -1, 1);
3173a18f
JB
6911 if (ret > 0 && skinny_metadata && path->slots[0]) {
6912 /*
6913 * Couldn't find our skinny metadata item,
6914 * see if we have ye olde extent item.
6915 */
6916 path->slots[0]--;
6917 btrfs_item_key_to_cpu(path->nodes[0], &key,
6918 path->slots[0]);
6919 if (key.objectid == bytenr &&
6920 key.type == BTRFS_EXTENT_ITEM_KEY &&
6921 key.offset == num_bytes)
6922 ret = 0;
6923 }
6924
6925 if (ret > 0 && skinny_metadata) {
6926 skinny_metadata = false;
9ce49a0b 6927 key.objectid = bytenr;
3173a18f
JB
6928 key.type = BTRFS_EXTENT_ITEM_KEY;
6929 key.offset = num_bytes;
6930 btrfs_release_path(path);
6931 ret = btrfs_search_slot(trans, extent_root,
6932 &key, path, -1, 1);
6933 }
6934
f3465ca4 6935 if (ret) {
5d163e0e
JM
6936 btrfs_err(info,
6937 "umm, got %d back from search, was looking for %llu",
6938 ret, bytenr);
b783e62d
JB
6939 if (ret > 0)
6940 btrfs_print_leaf(extent_root,
6941 path->nodes[0]);
f3465ca4 6942 }
005d6427 6943 if (ret < 0) {
66642832 6944 btrfs_abort_transaction(trans, ret);
005d6427
DS
6945 goto out;
6946 }
31840ae1
ZY
6947 extent_slot = path->slots[0];
6948 }
fae7f21c 6949 } else if (WARN_ON(ret == -ENOENT)) {
7bb86316 6950 btrfs_print_leaf(extent_root, path->nodes[0]);
c2cf52eb
SK
6951 btrfs_err(info,
6952 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
c1c9ff7c
GU
6953 bytenr, parent, root_objectid, owner_objectid,
6954 owner_offset);
66642832 6955 btrfs_abort_transaction(trans, ret);
c4a050bb 6956 goto out;
79787eaa 6957 } else {
66642832 6958 btrfs_abort_transaction(trans, ret);
005d6427 6959 goto out;
7bb86316 6960 }
5f39d397
CM
6961
6962 leaf = path->nodes[0];
5d4f98a2
YZ
6963 item_size = btrfs_item_size_nr(leaf, extent_slot);
6964#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6965 if (item_size < sizeof(*ei)) {
6966 BUG_ON(found_extent || extent_slot != path->slots[0]);
6967 ret = convert_extent_item_v0(trans, extent_root, path,
6968 owner_objectid, 0);
005d6427 6969 if (ret < 0) {
66642832 6970 btrfs_abort_transaction(trans, ret);
005d6427
DS
6971 goto out;
6972 }
5d4f98a2 6973
b3b4aa74 6974 btrfs_release_path(path);
5d4f98a2
YZ
6975 path->leave_spinning = 1;
6976
6977 key.objectid = bytenr;
6978 key.type = BTRFS_EXTENT_ITEM_KEY;
6979 key.offset = num_bytes;
6980
6981 ret = btrfs_search_slot(trans, extent_root, &key, path,
6982 -1, 1);
6983 if (ret) {
5d163e0e
JM
6984 btrfs_err(info,
6985 "umm, got %d back from search, was looking for %llu",
c1c9ff7c 6986 ret, bytenr);
5d4f98a2
YZ
6987 btrfs_print_leaf(extent_root, path->nodes[0]);
6988 }
005d6427 6989 if (ret < 0) {
66642832 6990 btrfs_abort_transaction(trans, ret);
005d6427
DS
6991 goto out;
6992 }
6993
5d4f98a2
YZ
6994 extent_slot = path->slots[0];
6995 leaf = path->nodes[0];
6996 item_size = btrfs_item_size_nr(leaf, extent_slot);
6997 }
6998#endif
6999 BUG_ON(item_size < sizeof(*ei));
952fccac 7000 ei = btrfs_item_ptr(leaf, extent_slot,
123abc88 7001 struct btrfs_extent_item);
3173a18f
JB
7002 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
7003 key.type == BTRFS_EXTENT_ITEM_KEY) {
5d4f98a2
YZ
7004 struct btrfs_tree_block_info *bi;
7005 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
7006 bi = (struct btrfs_tree_block_info *)(ei + 1);
7007 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
7008 }
56bec294 7009
5d4f98a2 7010 refs = btrfs_extent_refs(leaf, ei);
32b02538 7011 if (refs < refs_to_drop) {
5d163e0e
JM
7012 btrfs_err(info,
7013 "trying to drop %d refs but we only have %Lu for bytenr %Lu",
7014 refs_to_drop, refs, bytenr);
32b02538 7015 ret = -EINVAL;
66642832 7016 btrfs_abort_transaction(trans, ret);
32b02538
JB
7017 goto out;
7018 }
56bec294 7019 refs -= refs_to_drop;
5f39d397 7020
5d4f98a2
YZ
7021 if (refs > 0) {
7022 if (extent_op)
7023 __run_delayed_extent_op(extent_op, leaf, ei);
7024 /*
7025 * In the case of inline back ref, reference count will
7026 * be updated by remove_extent_backref
952fccac 7027 */
5d4f98a2
YZ
7028 if (iref) {
7029 BUG_ON(!found_extent);
7030 } else {
7031 btrfs_set_extent_refs(leaf, ei, refs);
7032 btrfs_mark_buffer_dirty(leaf);
7033 }
7034 if (found_extent) {
7035 ret = remove_extent_backref(trans, extent_root, path,
7036 iref, refs_to_drop,
fcebe456 7037 is_data, &last_ref);
005d6427 7038 if (ret) {
66642832 7039 btrfs_abort_transaction(trans, ret);
005d6427
DS
7040 goto out;
7041 }
952fccac 7042 }
b150a4f1
JB
7043 add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid,
7044 root_objectid);
5d4f98a2 7045 } else {
5d4f98a2
YZ
7046 if (found_extent) {
7047 BUG_ON(is_data && refs_to_drop !=
9ed0dea0 7048 extent_data_ref_count(path, iref));
5d4f98a2
YZ
7049 if (iref) {
7050 BUG_ON(path->slots[0] != extent_slot);
7051 } else {
7052 BUG_ON(path->slots[0] != extent_slot + 1);
7053 path->slots[0] = extent_slot;
7054 num_to_del = 2;
7055 }
78fae27e 7056 }
b9473439 7057
fcebe456 7058 last_ref = 1;
952fccac
CM
7059 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
7060 num_to_del);
005d6427 7061 if (ret) {
66642832 7062 btrfs_abort_transaction(trans, ret);
005d6427
DS
7063 goto out;
7064 }
b3b4aa74 7065 btrfs_release_path(path);
21af804c 7066
5d4f98a2 7067 if (is_data) {
459931ec 7068 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
005d6427 7069 if (ret) {
66642832 7070 btrfs_abort_transaction(trans, ret);
005d6427
DS
7071 goto out;
7072 }
459931ec
CM
7073 }
7074
1e144fb8
OS
7075 ret = add_to_free_space_tree(trans, root->fs_info, bytenr,
7076 num_bytes);
7077 if (ret) {
66642832 7078 btrfs_abort_transaction(trans, ret);
1e144fb8
OS
7079 goto out;
7080 }
7081
ce93ec54 7082 ret = update_block_group(trans, root, bytenr, num_bytes, 0);
005d6427 7083 if (ret) {
66642832 7084 btrfs_abort_transaction(trans, ret);
005d6427
DS
7085 goto out;
7086 }
a28ec197 7087 }
fcebe456
JB
7088 btrfs_release_path(path);
7089
79787eaa 7090out:
5caf2a00 7091 btrfs_free_path(path);
a28ec197
CM
7092 return ret;
7093}
7094
1887be66 7095/*
f0486c68 7096 * when we free an block, it is possible (and likely) that we free the last
1887be66
CM
7097 * delayed ref for that extent as well. This searches the delayed ref tree for
7098 * a given extent, and if there are no other delayed refs to be processed, it
7099 * removes it from the tree.
7100 */
7101static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
7102 struct btrfs_root *root, u64 bytenr)
7103{
7104 struct btrfs_delayed_ref_head *head;
7105 struct btrfs_delayed_ref_root *delayed_refs;
f0486c68 7106 int ret = 0;
1887be66
CM
7107
7108 delayed_refs = &trans->transaction->delayed_refs;
7109 spin_lock(&delayed_refs->lock);
7110 head = btrfs_find_delayed_ref_head(trans, bytenr);
7111 if (!head)
cf93da7b 7112 goto out_delayed_unlock;
1887be66 7113
d7df2c79 7114 spin_lock(&head->lock);
c6fc2454 7115 if (!list_empty(&head->ref_list))
1887be66
CM
7116 goto out;
7117
5d4f98a2
YZ
7118 if (head->extent_op) {
7119 if (!head->must_insert_reserved)
7120 goto out;
78a6184a 7121 btrfs_free_delayed_extent_op(head->extent_op);
5d4f98a2
YZ
7122 head->extent_op = NULL;
7123 }
7124
1887be66
CM
7125 /*
7126 * waiting for the lock here would deadlock. If someone else has it
7127 * locked they are already in the process of dropping it anyway
7128 */
7129 if (!mutex_trylock(&head->mutex))
7130 goto out;
7131
7132 /*
7133 * at this point we have a head with no other entries. Go
7134 * ahead and process it.
7135 */
7136 head->node.in_tree = 0;
c46effa6 7137 rb_erase(&head->href_node, &delayed_refs->href_root);
c3e69d58 7138
d7df2c79 7139 atomic_dec(&delayed_refs->num_entries);
1887be66
CM
7140
7141 /*
7142 * we don't take a ref on the node because we're removing it from the
7143 * tree, so we just steal the ref the tree was holding.
7144 */
c3e69d58 7145 delayed_refs->num_heads--;
d7df2c79 7146 if (head->processing == 0)
c3e69d58 7147 delayed_refs->num_heads_ready--;
d7df2c79
JB
7148 head->processing = 0;
7149 spin_unlock(&head->lock);
1887be66
CM
7150 spin_unlock(&delayed_refs->lock);
7151
f0486c68
YZ
7152 BUG_ON(head->extent_op);
7153 if (head->must_insert_reserved)
7154 ret = 1;
7155
7156 mutex_unlock(&head->mutex);
1887be66 7157 btrfs_put_delayed_ref(&head->node);
f0486c68 7158 return ret;
1887be66 7159out:
d7df2c79 7160 spin_unlock(&head->lock);
cf93da7b
CM
7161
7162out_delayed_unlock:
1887be66
CM
7163 spin_unlock(&delayed_refs->lock);
7164 return 0;
7165}
7166
f0486c68
YZ
7167void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
7168 struct btrfs_root *root,
7169 struct extent_buffer *buf,
5581a51a 7170 u64 parent, int last_ref)
f0486c68 7171{
b150a4f1 7172 int pin = 1;
f0486c68
YZ
7173 int ret;
7174
7175 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
66d7e7f0
AJ
7176 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
7177 buf->start, buf->len,
7178 parent, root->root_key.objectid,
7179 btrfs_header_level(buf),
b06c4bf5 7180 BTRFS_DROP_DELAYED_REF, NULL);
79787eaa 7181 BUG_ON(ret); /* -ENOMEM */
f0486c68
YZ
7182 }
7183
7184 if (!last_ref)
7185 return;
7186
f0486c68 7187 if (btrfs_header_generation(buf) == trans->transid) {
6219872d
FM
7188 struct btrfs_block_group_cache *cache;
7189
f0486c68
YZ
7190 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
7191 ret = check_ref_cleanup(trans, root, buf->start);
7192 if (!ret)
37be25bc 7193 goto out;
f0486c68
YZ
7194 }
7195
6219872d
FM
7196 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
7197
f0486c68
YZ
7198 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
7199 pin_down_extent(root, cache, buf->start, buf->len, 1);
6219872d 7200 btrfs_put_block_group(cache);
37be25bc 7201 goto out;
f0486c68
YZ
7202 }
7203
7204 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
7205
7206 btrfs_add_free_space(cache, buf->start, buf->len);
4824f1f4 7207 btrfs_free_reserved_bytes(cache, buf->len, 0);
6219872d 7208 btrfs_put_block_group(cache);
0be5dc67 7209 trace_btrfs_reserved_extent_free(root, buf->start, buf->len);
b150a4f1 7210 pin = 0;
f0486c68
YZ
7211 }
7212out:
b150a4f1
JB
7213 if (pin)
7214 add_pinned_bytes(root->fs_info, buf->len,
7215 btrfs_header_level(buf),
7216 root->root_key.objectid);
7217
a826d6dc
JB
7218 /*
7219 * Deleting the buffer, clear the corrupt flag since it doesn't matter
7220 * anymore.
7221 */
7222 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
f0486c68
YZ
7223}
7224
79787eaa 7225/* Can return -ENOMEM */
66d7e7f0
AJ
7226int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root,
7227 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
b06c4bf5 7228 u64 owner, u64 offset)
925baedd
CM
7229{
7230 int ret;
66d7e7f0 7231 struct btrfs_fs_info *fs_info = root->fs_info;
925baedd 7232
f5ee5c9a 7233 if (btrfs_is_testing(fs_info))
faa2dbf0 7234 return 0;
fccb84c9 7235
b150a4f1
JB
7236 add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid);
7237
56bec294
CM
7238 /*
7239 * tree log blocks never actually go into the extent allocation
7240 * tree, just update pinning info and exit early.
56bec294 7241 */
5d4f98a2
YZ
7242 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
7243 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
b9473439 7244 /* unlocks the pinned mutex */
11833d66 7245 btrfs_pin_extent(root, bytenr, num_bytes, 1);
56bec294 7246 ret = 0;
5d4f98a2 7247 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
66d7e7f0
AJ
7248 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
7249 num_bytes,
5d4f98a2 7250 parent, root_objectid, (int)owner,
b06c4bf5 7251 BTRFS_DROP_DELAYED_REF, NULL);
5d4f98a2 7252 } else {
66d7e7f0
AJ
7253 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
7254 num_bytes,
7255 parent, root_objectid, owner,
5846a3c2
QW
7256 offset, 0,
7257 BTRFS_DROP_DELAYED_REF, NULL);
56bec294 7258 }
925baedd
CM
7259 return ret;
7260}
7261
817d52f8
JB
7262/*
7263 * when we wait for progress in the block group caching, its because
7264 * our allocation attempt failed at least once. So, we must sleep
7265 * and let some progress happen before we try again.
7266 *
7267 * This function will sleep at least once waiting for new free space to
7268 * show up, and then it will check the block group free space numbers
7269 * for our min num_bytes. Another option is to have it go ahead
7270 * and look in the rbtree for a free extent of a given size, but this
7271 * is a good start.
36cce922
JB
7272 *
7273 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
7274 * any of the information in this block group.
817d52f8 7275 */
36cce922 7276static noinline void
817d52f8
JB
7277wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
7278 u64 num_bytes)
7279{
11833d66 7280 struct btrfs_caching_control *caching_ctl;
817d52f8 7281
11833d66
YZ
7282 caching_ctl = get_caching_control(cache);
7283 if (!caching_ctl)
36cce922 7284 return;
817d52f8 7285
11833d66 7286 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
34d52cb6 7287 (cache->free_space_ctl->free_space >= num_bytes));
11833d66
YZ
7288
7289 put_caching_control(caching_ctl);
11833d66
YZ
7290}
7291
7292static noinline int
7293wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
7294{
7295 struct btrfs_caching_control *caching_ctl;
36cce922 7296 int ret = 0;
11833d66
YZ
7297
7298 caching_ctl = get_caching_control(cache);
7299 if (!caching_ctl)
36cce922 7300 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
11833d66
YZ
7301
7302 wait_event(caching_ctl->wait, block_group_cache_done(cache));
36cce922
JB
7303 if (cache->cached == BTRFS_CACHE_ERROR)
7304 ret = -EIO;
11833d66 7305 put_caching_control(caching_ctl);
36cce922 7306 return ret;
817d52f8
JB
7307}
7308
31e50229 7309int __get_raid_index(u64 flags)
b742bb82 7310{
7738a53a 7311 if (flags & BTRFS_BLOCK_GROUP_RAID10)
e6ec716f 7312 return BTRFS_RAID_RAID10;
7738a53a 7313 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
e6ec716f 7314 return BTRFS_RAID_RAID1;
7738a53a 7315 else if (flags & BTRFS_BLOCK_GROUP_DUP)
e6ec716f 7316 return BTRFS_RAID_DUP;
7738a53a 7317 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
e6ec716f 7318 return BTRFS_RAID_RAID0;
53b381b3 7319 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
e942f883 7320 return BTRFS_RAID_RAID5;
53b381b3 7321 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
e942f883 7322 return BTRFS_RAID_RAID6;
7738a53a 7323
e942f883 7324 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
b742bb82
YZ
7325}
7326
6ab0a202 7327int get_block_group_index(struct btrfs_block_group_cache *cache)
7738a53a 7328{
31e50229 7329 return __get_raid_index(cache->flags);
7738a53a
ID
7330}
7331
6ab0a202
JM
7332static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = {
7333 [BTRFS_RAID_RAID10] = "raid10",
7334 [BTRFS_RAID_RAID1] = "raid1",
7335 [BTRFS_RAID_DUP] = "dup",
7336 [BTRFS_RAID_RAID0] = "raid0",
7337 [BTRFS_RAID_SINGLE] = "single",
7338 [BTRFS_RAID_RAID5] = "raid5",
7339 [BTRFS_RAID_RAID6] = "raid6",
7340};
7341
1b8e5df6 7342static const char *get_raid_name(enum btrfs_raid_types type)
6ab0a202
JM
7343{
7344 if (type >= BTRFS_NR_RAID_TYPES)
7345 return NULL;
7346
7347 return btrfs_raid_type_names[type];
7348}
7349
817d52f8 7350enum btrfs_loop_type {
285ff5af
JB
7351 LOOP_CACHING_NOWAIT = 0,
7352 LOOP_CACHING_WAIT = 1,
7353 LOOP_ALLOC_CHUNK = 2,
7354 LOOP_NO_EMPTY_SIZE = 3,
817d52f8
JB
7355};
7356
e570fd27
MX
7357static inline void
7358btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
7359 int delalloc)
7360{
7361 if (delalloc)
7362 down_read(&cache->data_rwsem);
7363}
7364
7365static inline void
7366btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
7367 int delalloc)
7368{
7369 btrfs_get_block_group(cache);
7370 if (delalloc)
7371 down_read(&cache->data_rwsem);
7372}
7373
7374static struct btrfs_block_group_cache *
7375btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
7376 struct btrfs_free_cluster *cluster,
7377 int delalloc)
7378{
89771cc9 7379 struct btrfs_block_group_cache *used_bg = NULL;
6719afdc 7380
e570fd27 7381 spin_lock(&cluster->refill_lock);
6719afdc
GU
7382 while (1) {
7383 used_bg = cluster->block_group;
7384 if (!used_bg)
7385 return NULL;
7386
7387 if (used_bg == block_group)
e570fd27
MX
7388 return used_bg;
7389
6719afdc 7390 btrfs_get_block_group(used_bg);
e570fd27 7391
6719afdc
GU
7392 if (!delalloc)
7393 return used_bg;
e570fd27 7394
6719afdc
GU
7395 if (down_read_trylock(&used_bg->data_rwsem))
7396 return used_bg;
e570fd27 7397
6719afdc 7398 spin_unlock(&cluster->refill_lock);
e570fd27 7399
6719afdc 7400 down_read(&used_bg->data_rwsem);
e570fd27 7401
6719afdc
GU
7402 spin_lock(&cluster->refill_lock);
7403 if (used_bg == cluster->block_group)
7404 return used_bg;
e570fd27 7405
6719afdc
GU
7406 up_read(&used_bg->data_rwsem);
7407 btrfs_put_block_group(used_bg);
7408 }
e570fd27
MX
7409}
7410
7411static inline void
7412btrfs_release_block_group(struct btrfs_block_group_cache *cache,
7413 int delalloc)
7414{
7415 if (delalloc)
7416 up_read(&cache->data_rwsem);
7417 btrfs_put_block_group(cache);
7418}
7419
fec577fb
CM
7420/*
7421 * walks the btree of allocated extents and find a hole of a given size.
7422 * The key ins is changed to record the hole:
a4820398 7423 * ins->objectid == start position
62e2749e 7424 * ins->flags = BTRFS_EXTENT_ITEM_KEY
a4820398 7425 * ins->offset == the size of the hole.
fec577fb 7426 * Any available blocks before search_start are skipped.
a4820398
MX
7427 *
7428 * If there is no suitable free space, we will record the max size of
7429 * the free space extent currently.
fec577fb 7430 */
00361589 7431static noinline int find_free_extent(struct btrfs_root *orig_root,
18513091
WX
7432 u64 ram_bytes, u64 num_bytes, u64 empty_size,
7433 u64 hint_byte, struct btrfs_key *ins,
7434 u64 flags, int delalloc)
fec577fb 7435{
80eb234a 7436 int ret = 0;
d397712b 7437 struct btrfs_root *root = orig_root->fs_info->extent_root;
fa9c0d79 7438 struct btrfs_free_cluster *last_ptr = NULL;
80eb234a 7439 struct btrfs_block_group_cache *block_group = NULL;
81c9ad23 7440 u64 search_start = 0;
a4820398 7441 u64 max_extent_size = 0;
c759c4e1 7442 u64 empty_cluster = 0;
80eb234a 7443 struct btrfs_space_info *space_info;
fa9c0d79 7444 int loop = 0;
b6919a58 7445 int index = __get_raid_index(flags);
0a24325e 7446 bool failed_cluster_refill = false;
1cdda9b8 7447 bool failed_alloc = false;
67377734 7448 bool use_cluster = true;
60d2adbb 7449 bool have_caching_bg = false;
13a0db5a 7450 bool orig_have_caching_bg = false;
a5e681d9 7451 bool full_search = false;
fec577fb 7452
db94535d 7453 WARN_ON(num_bytes < root->sectorsize);
962a298f 7454 ins->type = BTRFS_EXTENT_ITEM_KEY;
80eb234a
JB
7455 ins->objectid = 0;
7456 ins->offset = 0;
b1a4d965 7457
b6919a58 7458 trace_find_free_extent(orig_root, num_bytes, empty_size, flags);
3f7de037 7459
b6919a58 7460 space_info = __find_space_info(root->fs_info, flags);
1b1d1f66 7461 if (!space_info) {
b6919a58 7462 btrfs_err(root->fs_info, "No space info for %llu", flags);
1b1d1f66
JB
7463 return -ENOSPC;
7464 }
2552d17e 7465
67377734 7466 /*
4f4db217
JB
7467 * If our free space is heavily fragmented we may not be able to make
7468 * big contiguous allocations, so instead of doing the expensive search
7469 * for free space, simply return ENOSPC with our max_extent_size so we
7470 * can go ahead and search for a more manageable chunk.
7471 *
7472 * If our max_extent_size is large enough for our allocation simply
7473 * disable clustering since we will likely not be able to find enough
7474 * space to create a cluster and induce latency trying.
67377734 7475 */
4f4db217
JB
7476 if (unlikely(space_info->max_extent_size)) {
7477 spin_lock(&space_info->lock);
7478 if (space_info->max_extent_size &&
7479 num_bytes > space_info->max_extent_size) {
7480 ins->offset = space_info->max_extent_size;
7481 spin_unlock(&space_info->lock);
7482 return -ENOSPC;
7483 } else if (space_info->max_extent_size) {
7484 use_cluster = false;
7485 }
7486 spin_unlock(&space_info->lock);
fa9c0d79 7487 }
0f9dd46c 7488
c759c4e1 7489 last_ptr = fetch_cluster_info(orig_root, space_info, &empty_cluster);
239b14b3 7490 if (last_ptr) {
fa9c0d79
CM
7491 spin_lock(&last_ptr->lock);
7492 if (last_ptr->block_group)
7493 hint_byte = last_ptr->window_start;
c759c4e1
JB
7494 if (last_ptr->fragmented) {
7495 /*
7496 * We still set window_start so we can keep track of the
7497 * last place we found an allocation to try and save
7498 * some time.
7499 */
7500 hint_byte = last_ptr->window_start;
7501 use_cluster = false;
7502 }
fa9c0d79 7503 spin_unlock(&last_ptr->lock);
239b14b3 7504 }
fa9c0d79 7505
a061fc8d 7506 search_start = max(search_start, first_logical_byte(root, 0));
239b14b3 7507 search_start = max(search_start, hint_byte);
2552d17e 7508 if (search_start == hint_byte) {
2552d17e
JB
7509 block_group = btrfs_lookup_block_group(root->fs_info,
7510 search_start);
817d52f8
JB
7511 /*
7512 * we don't want to use the block group if it doesn't match our
7513 * allocation bits, or if its not cached.
ccf0e725
JB
7514 *
7515 * However if we are re-searching with an ideal block group
7516 * picked out then we don't care that the block group is cached.
817d52f8 7517 */
b6919a58 7518 if (block_group && block_group_bits(block_group, flags) &&
285ff5af 7519 block_group->cached != BTRFS_CACHE_NO) {
2552d17e 7520 down_read(&space_info->groups_sem);
44fb5511
CM
7521 if (list_empty(&block_group->list) ||
7522 block_group->ro) {
7523 /*
7524 * someone is removing this block group,
7525 * we can't jump into the have_block_group
7526 * target because our list pointers are not
7527 * valid
7528 */
7529 btrfs_put_block_group(block_group);
7530 up_read(&space_info->groups_sem);
ccf0e725 7531 } else {
b742bb82 7532 index = get_block_group_index(block_group);
e570fd27 7533 btrfs_lock_block_group(block_group, delalloc);
44fb5511 7534 goto have_block_group;
ccf0e725 7535 }
2552d17e 7536 } else if (block_group) {
fa9c0d79 7537 btrfs_put_block_group(block_group);
2552d17e 7538 }
42e70e7a 7539 }
2552d17e 7540search:
60d2adbb 7541 have_caching_bg = false;
a5e681d9
JB
7542 if (index == 0 || index == __get_raid_index(flags))
7543 full_search = true;
80eb234a 7544 down_read(&space_info->groups_sem);
b742bb82
YZ
7545 list_for_each_entry(block_group, &space_info->block_groups[index],
7546 list) {
6226cb0a 7547 u64 offset;
817d52f8 7548 int cached;
8a1413a2 7549
e570fd27 7550 btrfs_grab_block_group(block_group, delalloc);
2552d17e 7551 search_start = block_group->key.objectid;
42e70e7a 7552
83a50de9
CM
7553 /*
7554 * this can happen if we end up cycling through all the
7555 * raid types, but we want to make sure we only allocate
7556 * for the proper type.
7557 */
b6919a58 7558 if (!block_group_bits(block_group, flags)) {
83a50de9
CM
7559 u64 extra = BTRFS_BLOCK_GROUP_DUP |
7560 BTRFS_BLOCK_GROUP_RAID1 |
53b381b3
DW
7561 BTRFS_BLOCK_GROUP_RAID5 |
7562 BTRFS_BLOCK_GROUP_RAID6 |
83a50de9
CM
7563 BTRFS_BLOCK_GROUP_RAID10;
7564
7565 /*
7566 * if they asked for extra copies and this block group
7567 * doesn't provide them, bail. This does allow us to
7568 * fill raid0 from raid1.
7569 */
b6919a58 7570 if ((flags & extra) && !(block_group->flags & extra))
83a50de9
CM
7571 goto loop;
7572 }
7573
2552d17e 7574have_block_group:
291c7d2f
JB
7575 cached = block_group_cache_done(block_group);
7576 if (unlikely(!cached)) {
a5e681d9 7577 have_caching_bg = true;
f6373bf3 7578 ret = cache_block_group(block_group, 0);
1d4284bd
CM
7579 BUG_ON(ret < 0);
7580 ret = 0;
817d52f8
JB
7581 }
7582
36cce922
JB
7583 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
7584 goto loop;
ea6a478e 7585 if (unlikely(block_group->ro))
2552d17e 7586 goto loop;
0f9dd46c 7587
0a24325e 7588 /*
062c05c4
AO
7589 * Ok we want to try and use the cluster allocator, so
7590 * lets look there
0a24325e 7591 */
c759c4e1 7592 if (last_ptr && use_cluster) {
215a63d1 7593 struct btrfs_block_group_cache *used_block_group;
8de972b4 7594 unsigned long aligned_cluster;
fa9c0d79
CM
7595 /*
7596 * the refill lock keeps out other
7597 * people trying to start a new cluster
7598 */
e570fd27
MX
7599 used_block_group = btrfs_lock_cluster(block_group,
7600 last_ptr,
7601 delalloc);
7602 if (!used_block_group)
44fb5511 7603 goto refill_cluster;
274bd4fb 7604
e570fd27
MX
7605 if (used_block_group != block_group &&
7606 (used_block_group->ro ||
7607 !block_group_bits(used_block_group, flags)))
7608 goto release_cluster;
44fb5511 7609
274bd4fb 7610 offset = btrfs_alloc_from_cluster(used_block_group,
a4820398
MX
7611 last_ptr,
7612 num_bytes,
7613 used_block_group->key.objectid,
7614 &max_extent_size);
fa9c0d79
CM
7615 if (offset) {
7616 /* we have a block, we're done */
7617 spin_unlock(&last_ptr->refill_lock);
3f7de037 7618 trace_btrfs_reserve_extent_cluster(root,
89d4346a
MX
7619 used_block_group,
7620 search_start, num_bytes);
215a63d1 7621 if (used_block_group != block_group) {
e570fd27
MX
7622 btrfs_release_block_group(block_group,
7623 delalloc);
215a63d1
MX
7624 block_group = used_block_group;
7625 }
fa9c0d79
CM
7626 goto checks;
7627 }
7628
274bd4fb 7629 WARN_ON(last_ptr->block_group != used_block_group);
e570fd27 7630release_cluster:
062c05c4
AO
7631 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
7632 * set up a new clusters, so lets just skip it
7633 * and let the allocator find whatever block
7634 * it can find. If we reach this point, we
7635 * will have tried the cluster allocator
7636 * plenty of times and not have found
7637 * anything, so we are likely way too
7638 * fragmented for the clustering stuff to find
a5f6f719
AO
7639 * anything.
7640 *
7641 * However, if the cluster is taken from the
7642 * current block group, release the cluster
7643 * first, so that we stand a better chance of
7644 * succeeding in the unclustered
7645 * allocation. */
7646 if (loop >= LOOP_NO_EMPTY_SIZE &&
e570fd27 7647 used_block_group != block_group) {
062c05c4 7648 spin_unlock(&last_ptr->refill_lock);
e570fd27
MX
7649 btrfs_release_block_group(used_block_group,
7650 delalloc);
062c05c4
AO
7651 goto unclustered_alloc;
7652 }
7653
fa9c0d79
CM
7654 /*
7655 * this cluster didn't work out, free it and
7656 * start over
7657 */
7658 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7659
e570fd27
MX
7660 if (used_block_group != block_group)
7661 btrfs_release_block_group(used_block_group,
7662 delalloc);
7663refill_cluster:
a5f6f719
AO
7664 if (loop >= LOOP_NO_EMPTY_SIZE) {
7665 spin_unlock(&last_ptr->refill_lock);
7666 goto unclustered_alloc;
7667 }
7668
8de972b4
CM
7669 aligned_cluster = max_t(unsigned long,
7670 empty_cluster + empty_size,
7671 block_group->full_stripe_len);
7672
fa9c0d79 7673 /* allocate a cluster in this block group */
00361589
JB
7674 ret = btrfs_find_space_cluster(root, block_group,
7675 last_ptr, search_start,
7676 num_bytes,
7677 aligned_cluster);
fa9c0d79
CM
7678 if (ret == 0) {
7679 /*
7680 * now pull our allocation out of this
7681 * cluster
7682 */
7683 offset = btrfs_alloc_from_cluster(block_group,
a4820398
MX
7684 last_ptr,
7685 num_bytes,
7686 search_start,
7687 &max_extent_size);
fa9c0d79
CM
7688 if (offset) {
7689 /* we found one, proceed */
7690 spin_unlock(&last_ptr->refill_lock);
3f7de037
JB
7691 trace_btrfs_reserve_extent_cluster(root,
7692 block_group, search_start,
7693 num_bytes);
fa9c0d79
CM
7694 goto checks;
7695 }
0a24325e
JB
7696 } else if (!cached && loop > LOOP_CACHING_NOWAIT
7697 && !failed_cluster_refill) {
817d52f8
JB
7698 spin_unlock(&last_ptr->refill_lock);
7699
0a24325e 7700 failed_cluster_refill = true;
817d52f8
JB
7701 wait_block_group_cache_progress(block_group,
7702 num_bytes + empty_cluster + empty_size);
7703 goto have_block_group;
fa9c0d79 7704 }
817d52f8 7705
fa9c0d79
CM
7706 /*
7707 * at this point we either didn't find a cluster
7708 * or we weren't able to allocate a block from our
7709 * cluster. Free the cluster we've been trying
7710 * to use, and go to the next block group
7711 */
0a24325e 7712 btrfs_return_cluster_to_free_space(NULL, last_ptr);
fa9c0d79 7713 spin_unlock(&last_ptr->refill_lock);
0a24325e 7714 goto loop;
fa9c0d79
CM
7715 }
7716
062c05c4 7717unclustered_alloc:
c759c4e1
JB
7718 /*
7719 * We are doing an unclustered alloc, set the fragmented flag so
7720 * we don't bother trying to setup a cluster again until we get
7721 * more space.
7722 */
7723 if (unlikely(last_ptr)) {
7724 spin_lock(&last_ptr->lock);
7725 last_ptr->fragmented = 1;
7726 spin_unlock(&last_ptr->lock);
7727 }
a5f6f719
AO
7728 spin_lock(&block_group->free_space_ctl->tree_lock);
7729 if (cached &&
7730 block_group->free_space_ctl->free_space <
7731 num_bytes + empty_cluster + empty_size) {
a4820398
MX
7732 if (block_group->free_space_ctl->free_space >
7733 max_extent_size)
7734 max_extent_size =
7735 block_group->free_space_ctl->free_space;
a5f6f719
AO
7736 spin_unlock(&block_group->free_space_ctl->tree_lock);
7737 goto loop;
7738 }
7739 spin_unlock(&block_group->free_space_ctl->tree_lock);
7740
6226cb0a 7741 offset = btrfs_find_space_for_alloc(block_group, search_start,
a4820398
MX
7742 num_bytes, empty_size,
7743 &max_extent_size);
1cdda9b8
JB
7744 /*
7745 * If we didn't find a chunk, and we haven't failed on this
7746 * block group before, and this block group is in the middle of
7747 * caching and we are ok with waiting, then go ahead and wait
7748 * for progress to be made, and set failed_alloc to true.
7749 *
7750 * If failed_alloc is true then we've already waited on this
7751 * block group once and should move on to the next block group.
7752 */
7753 if (!offset && !failed_alloc && !cached &&
7754 loop > LOOP_CACHING_NOWAIT) {
817d52f8 7755 wait_block_group_cache_progress(block_group,
1cdda9b8
JB
7756 num_bytes + empty_size);
7757 failed_alloc = true;
817d52f8 7758 goto have_block_group;
1cdda9b8
JB
7759 } else if (!offset) {
7760 goto loop;
817d52f8 7761 }
fa9c0d79 7762checks:
4e54b17a 7763 search_start = ALIGN(offset, root->stripesize);
25179201 7764
2552d17e
JB
7765 /* move on to the next group */
7766 if (search_start + num_bytes >
215a63d1
MX
7767 block_group->key.objectid + block_group->key.offset) {
7768 btrfs_add_free_space(block_group, offset, num_bytes);
2552d17e 7769 goto loop;
6226cb0a 7770 }
f5a31e16 7771
f0486c68 7772 if (offset < search_start)
215a63d1 7773 btrfs_add_free_space(block_group, offset,
f0486c68
YZ
7774 search_start - offset);
7775 BUG_ON(offset > search_start);
2552d17e 7776
18513091
WX
7777 ret = btrfs_add_reserved_bytes(block_group, ram_bytes,
7778 num_bytes, delalloc);
f0486c68 7779 if (ret == -EAGAIN) {
215a63d1 7780 btrfs_add_free_space(block_group, offset, num_bytes);
2552d17e 7781 goto loop;
0f9dd46c 7782 }
9cfa3e34 7783 btrfs_inc_block_group_reservations(block_group);
0b86a832 7784
f0486c68 7785 /* we are all good, lets return */
2552d17e
JB
7786 ins->objectid = search_start;
7787 ins->offset = num_bytes;
d2fb3437 7788
3f7de037
JB
7789 trace_btrfs_reserve_extent(orig_root, block_group,
7790 search_start, num_bytes);
e570fd27 7791 btrfs_release_block_group(block_group, delalloc);
2552d17e
JB
7792 break;
7793loop:
0a24325e 7794 failed_cluster_refill = false;
1cdda9b8 7795 failed_alloc = false;
b742bb82 7796 BUG_ON(index != get_block_group_index(block_group));
e570fd27 7797 btrfs_release_block_group(block_group, delalloc);
2552d17e
JB
7798 }
7799 up_read(&space_info->groups_sem);
7800
13a0db5a 7801 if ((loop == LOOP_CACHING_NOWAIT) && have_caching_bg
7802 && !orig_have_caching_bg)
7803 orig_have_caching_bg = true;
7804
60d2adbb
MX
7805 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
7806 goto search;
7807
b742bb82
YZ
7808 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
7809 goto search;
7810
285ff5af 7811 /*
ccf0e725
JB
7812 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
7813 * caching kthreads as we move along
817d52f8
JB
7814 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
7815 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
7816 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
7817 * again
fa9c0d79 7818 */
723bda20 7819 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
b742bb82 7820 index = 0;
a5e681d9
JB
7821 if (loop == LOOP_CACHING_NOWAIT) {
7822 /*
7823 * We want to skip the LOOP_CACHING_WAIT step if we
01327610 7824 * don't have any uncached bgs and we've already done a
a5e681d9
JB
7825 * full search through.
7826 */
13a0db5a 7827 if (orig_have_caching_bg || !full_search)
a5e681d9
JB
7828 loop = LOOP_CACHING_WAIT;
7829 else
7830 loop = LOOP_ALLOC_CHUNK;
7831 } else {
7832 loop++;
7833 }
7834
817d52f8 7835 if (loop == LOOP_ALLOC_CHUNK) {
00361589 7836 struct btrfs_trans_handle *trans;
f017f15f
WS
7837 int exist = 0;
7838
7839 trans = current->journal_info;
7840 if (trans)
7841 exist = 1;
7842 else
7843 trans = btrfs_join_transaction(root);
00361589 7844
00361589
JB
7845 if (IS_ERR(trans)) {
7846 ret = PTR_ERR(trans);
7847 goto out;
7848 }
7849
b6919a58 7850 ret = do_chunk_alloc(trans, root, flags,
ea658bad 7851 CHUNK_ALLOC_FORCE);
a5e681d9
JB
7852
7853 /*
7854 * If we can't allocate a new chunk we've already looped
7855 * through at least once, move on to the NO_EMPTY_SIZE
7856 * case.
7857 */
7858 if (ret == -ENOSPC)
7859 loop = LOOP_NO_EMPTY_SIZE;
7860
ea658bad
JB
7861 /*
7862 * Do not bail out on ENOSPC since we
7863 * can do more things.
7864 */
00361589 7865 if (ret < 0 && ret != -ENOSPC)
66642832 7866 btrfs_abort_transaction(trans, ret);
00361589
JB
7867 else
7868 ret = 0;
f017f15f
WS
7869 if (!exist)
7870 btrfs_end_transaction(trans, root);
00361589 7871 if (ret)
ea658bad 7872 goto out;
2552d17e
JB
7873 }
7874
723bda20 7875 if (loop == LOOP_NO_EMPTY_SIZE) {
a5e681d9
JB
7876 /*
7877 * Don't loop again if we already have no empty_size and
7878 * no empty_cluster.
7879 */
7880 if (empty_size == 0 &&
7881 empty_cluster == 0) {
7882 ret = -ENOSPC;
7883 goto out;
7884 }
723bda20
JB
7885 empty_size = 0;
7886 empty_cluster = 0;
fa9c0d79 7887 }
723bda20
JB
7888
7889 goto search;
2552d17e
JB
7890 } else if (!ins->objectid) {
7891 ret = -ENOSPC;
d82a6f1d 7892 } else if (ins->objectid) {
c759c4e1
JB
7893 if (!use_cluster && last_ptr) {
7894 spin_lock(&last_ptr->lock);
7895 last_ptr->window_start = ins->objectid;
7896 spin_unlock(&last_ptr->lock);
7897 }
80eb234a 7898 ret = 0;
be744175 7899 }
79787eaa 7900out:
4f4db217
JB
7901 if (ret == -ENOSPC) {
7902 spin_lock(&space_info->lock);
7903 space_info->max_extent_size = max_extent_size;
7904 spin_unlock(&space_info->lock);
a4820398 7905 ins->offset = max_extent_size;
4f4db217 7906 }
0f70abe2 7907 return ret;
fec577fb 7908}
ec44a35c 7909
ab8d0fc4
JM
7910static void dump_space_info(struct btrfs_fs_info *fs_info,
7911 struct btrfs_space_info *info, u64 bytes,
9ed74f2d 7912 int dump_block_groups)
0f9dd46c
JB
7913{
7914 struct btrfs_block_group_cache *cache;
b742bb82 7915 int index = 0;
0f9dd46c 7916
9ed74f2d 7917 spin_lock(&info->lock);
ab8d0fc4
JM
7918 btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull",
7919 info->flags,
7920 info->total_bytes - info->bytes_used - info->bytes_pinned -
7921 info->bytes_reserved - info->bytes_readonly -
7922 info->bytes_may_use, (info->full) ? "" : "not ");
7923 btrfs_info(fs_info,
7924 "space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu",
7925 info->total_bytes, info->bytes_used, info->bytes_pinned,
7926 info->bytes_reserved, info->bytes_may_use,
7927 info->bytes_readonly);
9ed74f2d
JB
7928 spin_unlock(&info->lock);
7929
7930 if (!dump_block_groups)
7931 return;
0f9dd46c 7932
80eb234a 7933 down_read(&info->groups_sem);
b742bb82
YZ
7934again:
7935 list_for_each_entry(cache, &info->block_groups[index], list) {
0f9dd46c 7936 spin_lock(&cache->lock);
ab8d0fc4
JM
7937 btrfs_info(fs_info,
7938 "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s",
7939 cache->key.objectid, cache->key.offset,
7940 btrfs_block_group_used(&cache->item), cache->pinned,
7941 cache->reserved, cache->ro ? "[readonly]" : "");
0f9dd46c
JB
7942 btrfs_dump_free_space(cache, bytes);
7943 spin_unlock(&cache->lock);
7944 }
b742bb82
YZ
7945 if (++index < BTRFS_NR_RAID_TYPES)
7946 goto again;
80eb234a 7947 up_read(&info->groups_sem);
0f9dd46c 7948}
e8569813 7949
18513091 7950int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes,
11833d66
YZ
7951 u64 num_bytes, u64 min_alloc_size,
7952 u64 empty_size, u64 hint_byte,
e570fd27 7953 struct btrfs_key *ins, int is_data, int delalloc)
fec577fb 7954{
ab8d0fc4 7955 struct btrfs_fs_info *fs_info = root->fs_info;
36af4e07 7956 bool final_tried = num_bytes == min_alloc_size;
b6919a58 7957 u64 flags;
fec577fb 7958 int ret;
925baedd 7959
b6919a58 7960 flags = btrfs_get_alloc_profile(root, is_data);
98d20f67 7961again:
db94535d 7962 WARN_ON(num_bytes < root->sectorsize);
18513091
WX
7963 ret = find_free_extent(root, ram_bytes, num_bytes, empty_size,
7964 hint_byte, ins, flags, delalloc);
9cfa3e34 7965 if (!ret && !is_data) {
ab8d0fc4 7966 btrfs_dec_block_group_reservations(fs_info, ins->objectid);
9cfa3e34 7967 } else if (ret == -ENOSPC) {
a4820398
MX
7968 if (!final_tried && ins->offset) {
7969 num_bytes = min(num_bytes >> 1, ins->offset);
24542bf7 7970 num_bytes = round_down(num_bytes, root->sectorsize);
9e622d6b 7971 num_bytes = max(num_bytes, min_alloc_size);
18513091 7972 ram_bytes = num_bytes;
9e622d6b
MX
7973 if (num_bytes == min_alloc_size)
7974 final_tried = true;
7975 goto again;
ab8d0fc4 7976 } else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
9e622d6b
MX
7977 struct btrfs_space_info *sinfo;
7978
ab8d0fc4 7979 sinfo = __find_space_info(fs_info, flags);
5d163e0e
JM
7980 btrfs_err(root->fs_info,
7981 "allocation failed flags %llu, wanted %llu",
7982 flags, num_bytes);
53804280 7983 if (sinfo)
ab8d0fc4 7984 dump_space_info(fs_info, sinfo, num_bytes, 1);
9e622d6b 7985 }
925baedd 7986 }
0f9dd46c
JB
7987
7988 return ret;
e6dcd2dc
CM
7989}
7990
e688b725 7991static int __btrfs_free_reserved_extent(struct btrfs_root *root,
e570fd27
MX
7992 u64 start, u64 len,
7993 int pin, int delalloc)
65b51a00 7994{
0f9dd46c 7995 struct btrfs_block_group_cache *cache;
1f3c79a2 7996 int ret = 0;
0f9dd46c 7997
0f9dd46c
JB
7998 cache = btrfs_lookup_block_group(root->fs_info, start);
7999 if (!cache) {
c2cf52eb 8000 btrfs_err(root->fs_info, "Unable to find block group for %llu",
c1c9ff7c 8001 start);
0f9dd46c
JB
8002 return -ENOSPC;
8003 }
1f3c79a2 8004
e688b725
CM
8005 if (pin)
8006 pin_down_extent(root, cache, start, len, 1);
8007 else {
3cdde224 8008 if (btrfs_test_opt(root->fs_info, DISCARD))
dcc82f47 8009 ret = btrfs_discard_extent(root, start, len, NULL);
e688b725 8010 btrfs_add_free_space(cache, start, len);
4824f1f4 8011 btrfs_free_reserved_bytes(cache, len, delalloc);
31bada7c 8012 trace_btrfs_reserved_extent_free(root, start, len);
e688b725 8013 }
31193213 8014
fa9c0d79 8015 btrfs_put_block_group(cache);
e6dcd2dc
CM
8016 return ret;
8017}
8018
e688b725 8019int btrfs_free_reserved_extent(struct btrfs_root *root,
e570fd27 8020 u64 start, u64 len, int delalloc)
e688b725 8021{
e570fd27 8022 return __btrfs_free_reserved_extent(root, start, len, 0, delalloc);
e688b725
CM
8023}
8024
8025int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
8026 u64 start, u64 len)
8027{
e570fd27 8028 return __btrfs_free_reserved_extent(root, start, len, 1, 0);
e688b725
CM
8029}
8030
5d4f98a2
YZ
8031static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
8032 struct btrfs_root *root,
8033 u64 parent, u64 root_objectid,
8034 u64 flags, u64 owner, u64 offset,
8035 struct btrfs_key *ins, int ref_mod)
e6dcd2dc
CM
8036{
8037 int ret;
5d4f98a2 8038 struct btrfs_fs_info *fs_info = root->fs_info;
e6dcd2dc 8039 struct btrfs_extent_item *extent_item;
5d4f98a2 8040 struct btrfs_extent_inline_ref *iref;
e6dcd2dc 8041 struct btrfs_path *path;
5d4f98a2
YZ
8042 struct extent_buffer *leaf;
8043 int type;
8044 u32 size;
26b8003f 8045
5d4f98a2
YZ
8046 if (parent > 0)
8047 type = BTRFS_SHARED_DATA_REF_KEY;
8048 else
8049 type = BTRFS_EXTENT_DATA_REF_KEY;
58176a96 8050
5d4f98a2 8051 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
7bb86316
CM
8052
8053 path = btrfs_alloc_path();
db5b493a
TI
8054 if (!path)
8055 return -ENOMEM;
47e4bb98 8056
b9473439 8057 path->leave_spinning = 1;
5d4f98a2
YZ
8058 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8059 ins, size);
79787eaa
JM
8060 if (ret) {
8061 btrfs_free_path(path);
8062 return ret;
8063 }
0f9dd46c 8064
5d4f98a2
YZ
8065 leaf = path->nodes[0];
8066 extent_item = btrfs_item_ptr(leaf, path->slots[0],
47e4bb98 8067 struct btrfs_extent_item);
5d4f98a2
YZ
8068 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
8069 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8070 btrfs_set_extent_flags(leaf, extent_item,
8071 flags | BTRFS_EXTENT_FLAG_DATA);
8072
8073 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
8074 btrfs_set_extent_inline_ref_type(leaf, iref, type);
8075 if (parent > 0) {
8076 struct btrfs_shared_data_ref *ref;
8077 ref = (struct btrfs_shared_data_ref *)(iref + 1);
8078 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8079 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
8080 } else {
8081 struct btrfs_extent_data_ref *ref;
8082 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
8083 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
8084 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
8085 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
8086 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
8087 }
47e4bb98
CM
8088
8089 btrfs_mark_buffer_dirty(path->nodes[0]);
7bb86316 8090 btrfs_free_path(path);
f510cfec 8091
1e144fb8
OS
8092 ret = remove_from_free_space_tree(trans, fs_info, ins->objectid,
8093 ins->offset);
8094 if (ret)
8095 return ret;
8096
ce93ec54 8097 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
79787eaa 8098 if (ret) { /* -ENOENT, logic error */
c2cf52eb 8099 btrfs_err(fs_info, "update block group failed for %llu %llu",
c1c9ff7c 8100 ins->objectid, ins->offset);
f5947066
CM
8101 BUG();
8102 }
0be5dc67 8103 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
e6dcd2dc
CM
8104 return ret;
8105}
8106
5d4f98a2
YZ
8107static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
8108 struct btrfs_root *root,
8109 u64 parent, u64 root_objectid,
8110 u64 flags, struct btrfs_disk_key *key,
b06c4bf5 8111 int level, struct btrfs_key *ins)
e6dcd2dc
CM
8112{
8113 int ret;
5d4f98a2
YZ
8114 struct btrfs_fs_info *fs_info = root->fs_info;
8115 struct btrfs_extent_item *extent_item;
8116 struct btrfs_tree_block_info *block_info;
8117 struct btrfs_extent_inline_ref *iref;
8118 struct btrfs_path *path;
8119 struct extent_buffer *leaf;
3173a18f 8120 u32 size = sizeof(*extent_item) + sizeof(*iref);
fcebe456 8121 u64 num_bytes = ins->offset;
3173a18f
JB
8122 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
8123 SKINNY_METADATA);
8124
8125 if (!skinny_metadata)
8126 size += sizeof(*block_info);
1c2308f8 8127
5d4f98a2 8128 path = btrfs_alloc_path();
857cc2fc
JB
8129 if (!path) {
8130 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
707e8a07 8131 root->nodesize);
d8926bb3 8132 return -ENOMEM;
857cc2fc 8133 }
56bec294 8134
5d4f98a2
YZ
8135 path->leave_spinning = 1;
8136 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8137 ins, size);
79787eaa 8138 if (ret) {
dd825259 8139 btrfs_free_path(path);
857cc2fc 8140 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
707e8a07 8141 root->nodesize);
79787eaa
JM
8142 return ret;
8143 }
5d4f98a2
YZ
8144
8145 leaf = path->nodes[0];
8146 extent_item = btrfs_item_ptr(leaf, path->slots[0],
8147 struct btrfs_extent_item);
8148 btrfs_set_extent_refs(leaf, extent_item, 1);
8149 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8150 btrfs_set_extent_flags(leaf, extent_item,
8151 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
5d4f98a2 8152
3173a18f
JB
8153 if (skinny_metadata) {
8154 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
707e8a07 8155 num_bytes = root->nodesize;
3173a18f
JB
8156 } else {
8157 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
8158 btrfs_set_tree_block_key(leaf, block_info, key);
8159 btrfs_set_tree_block_level(leaf, block_info, level);
8160 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
8161 }
5d4f98a2 8162
5d4f98a2
YZ
8163 if (parent > 0) {
8164 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
8165 btrfs_set_extent_inline_ref_type(leaf, iref,
8166 BTRFS_SHARED_BLOCK_REF_KEY);
8167 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8168 } else {
8169 btrfs_set_extent_inline_ref_type(leaf, iref,
8170 BTRFS_TREE_BLOCK_REF_KEY);
8171 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
8172 }
8173
8174 btrfs_mark_buffer_dirty(leaf);
8175 btrfs_free_path(path);
8176
1e144fb8
OS
8177 ret = remove_from_free_space_tree(trans, fs_info, ins->objectid,
8178 num_bytes);
8179 if (ret)
8180 return ret;
8181
ce93ec54
JB
8182 ret = update_block_group(trans, root, ins->objectid, root->nodesize,
8183 1);
79787eaa 8184 if (ret) { /* -ENOENT, logic error */
c2cf52eb 8185 btrfs_err(fs_info, "update block group failed for %llu %llu",
c1c9ff7c 8186 ins->objectid, ins->offset);
5d4f98a2
YZ
8187 BUG();
8188 }
0be5dc67 8189
707e8a07 8190 trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->nodesize);
5d4f98a2
YZ
8191 return ret;
8192}
8193
8194int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
8195 struct btrfs_root *root,
8196 u64 root_objectid, u64 owner,
5846a3c2
QW
8197 u64 offset, u64 ram_bytes,
8198 struct btrfs_key *ins)
5d4f98a2
YZ
8199{
8200 int ret;
8201
8202 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
8203
66d7e7f0
AJ
8204 ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid,
8205 ins->offset, 0,
8206 root_objectid, owner, offset,
5846a3c2
QW
8207 ram_bytes, BTRFS_ADD_DELAYED_EXTENT,
8208 NULL);
e6dcd2dc
CM
8209 return ret;
8210}
e02119d5
CM
8211
8212/*
8213 * this is used by the tree logging recovery code. It records that
8214 * an extent has been allocated and makes sure to clear the free
8215 * space cache bits as well
8216 */
5d4f98a2
YZ
8217int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
8218 struct btrfs_root *root,
8219 u64 root_objectid, u64 owner, u64 offset,
8220 struct btrfs_key *ins)
e02119d5
CM
8221{
8222 int ret;
8223 struct btrfs_block_group_cache *block_group;
ed7a6948 8224 struct btrfs_space_info *space_info;
11833d66 8225
8c2a1a30
JB
8226 /*
8227 * Mixed block groups will exclude before processing the log so we only
01327610 8228 * need to do the exclude dance if this fs isn't mixed.
8c2a1a30
JB
8229 */
8230 if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) {
8231 ret = __exclude_logged_extent(root, ins->objectid, ins->offset);
b50c6e25 8232 if (ret)
8c2a1a30 8233 return ret;
11833d66
YZ
8234 }
8235
8c2a1a30
JB
8236 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
8237 if (!block_group)
8238 return -EINVAL;
8239
ed7a6948
WX
8240 space_info = block_group->space_info;
8241 spin_lock(&space_info->lock);
8242 spin_lock(&block_group->lock);
8243 space_info->bytes_reserved += ins->offset;
8244 block_group->reserved += ins->offset;
8245 spin_unlock(&block_group->lock);
8246 spin_unlock(&space_info->lock);
8247
5d4f98a2
YZ
8248 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
8249 0, owner, offset, ins, 1);
b50c6e25 8250 btrfs_put_block_group(block_group);
e02119d5
CM
8251 return ret;
8252}
8253
48a3b636
ES
8254static struct extent_buffer *
8255btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
fe864576 8256 u64 bytenr, int level)
65b51a00
CM
8257{
8258 struct extent_buffer *buf;
8259
a83fffb7 8260 buf = btrfs_find_create_tree_block(root, bytenr);
c871b0f2
LB
8261 if (IS_ERR(buf))
8262 return buf;
8263
65b51a00 8264 btrfs_set_header_generation(buf, trans->transid);
85d4e461 8265 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
65b51a00 8266 btrfs_tree_lock(buf);
01d58472 8267 clean_tree_block(trans, root->fs_info, buf);
3083ee2e 8268 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
b4ce94de
CM
8269
8270 btrfs_set_lock_blocking(buf);
4db8c528 8271 set_extent_buffer_uptodate(buf);
b4ce94de 8272
d0c803c4 8273 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
656f30db 8274 buf->log_index = root->log_transid % 2;
8cef4e16
YZ
8275 /*
8276 * we allow two log transactions at a time, use different
8277 * EXENT bit to differentiate dirty pages.
8278 */
656f30db 8279 if (buf->log_index == 0)
8cef4e16
YZ
8280 set_extent_dirty(&root->dirty_log_pages, buf->start,
8281 buf->start + buf->len - 1, GFP_NOFS);
8282 else
8283 set_extent_new(&root->dirty_log_pages, buf->start,
3744dbeb 8284 buf->start + buf->len - 1);
d0c803c4 8285 } else {
656f30db 8286 buf->log_index = -1;
d0c803c4 8287 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
65b51a00 8288 buf->start + buf->len - 1, GFP_NOFS);
d0c803c4 8289 }
64c12921 8290 trans->dirty = true;
b4ce94de 8291 /* this returns a buffer locked for blocking */
65b51a00
CM
8292 return buf;
8293}
8294
f0486c68
YZ
8295static struct btrfs_block_rsv *
8296use_block_rsv(struct btrfs_trans_handle *trans,
8297 struct btrfs_root *root, u32 blocksize)
8298{
8299 struct btrfs_block_rsv *block_rsv;
68a82277 8300 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
f0486c68 8301 int ret;
d88033db 8302 bool global_updated = false;
f0486c68
YZ
8303
8304 block_rsv = get_block_rsv(trans, root);
8305
b586b323
MX
8306 if (unlikely(block_rsv->size == 0))
8307 goto try_reserve;
d88033db 8308again:
f0486c68
YZ
8309 ret = block_rsv_use_bytes(block_rsv, blocksize);
8310 if (!ret)
8311 return block_rsv;
8312
b586b323
MX
8313 if (block_rsv->failfast)
8314 return ERR_PTR(ret);
8315
d88033db
MX
8316 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
8317 global_updated = true;
8318 update_global_block_rsv(root->fs_info);
8319 goto again;
8320 }
8321
3cdde224 8322 if (btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) {
b586b323
MX
8323 static DEFINE_RATELIMIT_STATE(_rs,
8324 DEFAULT_RATELIMIT_INTERVAL * 10,
8325 /*DEFAULT_RATELIMIT_BURST*/ 1);
8326 if (__ratelimit(&_rs))
8327 WARN(1, KERN_DEBUG
efe120a0 8328 "BTRFS: block rsv returned %d\n", ret);
b586b323
MX
8329 }
8330try_reserve:
8331 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
8332 BTRFS_RESERVE_NO_FLUSH);
8333 if (!ret)
8334 return block_rsv;
8335 /*
8336 * If we couldn't reserve metadata bytes try and use some from
5881cfc9
MX
8337 * the global reserve if its space type is the same as the global
8338 * reservation.
b586b323 8339 */
5881cfc9
MX
8340 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
8341 block_rsv->space_info == global_rsv->space_info) {
b586b323
MX
8342 ret = block_rsv_use_bytes(global_rsv, blocksize);
8343 if (!ret)
8344 return global_rsv;
8345 }
8346 return ERR_PTR(ret);
f0486c68
YZ
8347}
8348
8c2a3ca2
JB
8349static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
8350 struct btrfs_block_rsv *block_rsv, u32 blocksize)
f0486c68
YZ
8351{
8352 block_rsv_add_bytes(block_rsv, blocksize, 0);
8c2a3ca2 8353 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
f0486c68
YZ
8354}
8355
fec577fb 8356/*
f0486c68 8357 * finds a free extent and does all the dirty work required for allocation
67b7859e 8358 * returns the tree buffer or an ERR_PTR on error.
fec577fb 8359 */
4d75f8a9
DS
8360struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
8361 struct btrfs_root *root,
5d4f98a2
YZ
8362 u64 parent, u64 root_objectid,
8363 struct btrfs_disk_key *key, int level,
5581a51a 8364 u64 hint, u64 empty_size)
fec577fb 8365{
e2fa7227 8366 struct btrfs_key ins;
f0486c68 8367 struct btrfs_block_rsv *block_rsv;
5f39d397 8368 struct extent_buffer *buf;
67b7859e 8369 struct btrfs_delayed_extent_op *extent_op;
f0486c68
YZ
8370 u64 flags = 0;
8371 int ret;
4d75f8a9 8372 u32 blocksize = root->nodesize;
3173a18f
JB
8373 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
8374 SKINNY_METADATA);
fec577fb 8375
05653ef3 8376#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
f5ee5c9a 8377 if (btrfs_is_testing(root->fs_info)) {
faa2dbf0 8378 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
fe864576 8379 level);
faa2dbf0
JB
8380 if (!IS_ERR(buf))
8381 root->alloc_bytenr += blocksize;
8382 return buf;
8383 }
05653ef3 8384#endif
fccb84c9 8385
f0486c68
YZ
8386 block_rsv = use_block_rsv(trans, root, blocksize);
8387 if (IS_ERR(block_rsv))
8388 return ERR_CAST(block_rsv);
8389
18513091 8390 ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize,
e570fd27 8391 empty_size, hint, &ins, 0, 0);
67b7859e
OS
8392 if (ret)
8393 goto out_unuse;
55c69072 8394
fe864576 8395 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level);
67b7859e
OS
8396 if (IS_ERR(buf)) {
8397 ret = PTR_ERR(buf);
8398 goto out_free_reserved;
8399 }
f0486c68
YZ
8400
8401 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
8402 if (parent == 0)
8403 parent = ins.objectid;
8404 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
8405 } else
8406 BUG_ON(parent > 0);
8407
8408 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
78a6184a 8409 extent_op = btrfs_alloc_delayed_extent_op();
67b7859e
OS
8410 if (!extent_op) {
8411 ret = -ENOMEM;
8412 goto out_free_buf;
8413 }
f0486c68
YZ
8414 if (key)
8415 memcpy(&extent_op->key, key, sizeof(extent_op->key));
8416 else
8417 memset(&extent_op->key, 0, sizeof(extent_op->key));
8418 extent_op->flags_to_set = flags;
35b3ad50
DS
8419 extent_op->update_key = skinny_metadata ? false : true;
8420 extent_op->update_flags = true;
8421 extent_op->is_data = false;
b1c79e09 8422 extent_op->level = level;
f0486c68 8423
66d7e7f0 8424 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
67b7859e
OS
8425 ins.objectid, ins.offset,
8426 parent, root_objectid, level,
8427 BTRFS_ADD_DELAYED_EXTENT,
b06c4bf5 8428 extent_op);
67b7859e
OS
8429 if (ret)
8430 goto out_free_delayed;
f0486c68 8431 }
fec577fb 8432 return buf;
67b7859e
OS
8433
8434out_free_delayed:
8435 btrfs_free_delayed_extent_op(extent_op);
8436out_free_buf:
8437 free_extent_buffer(buf);
8438out_free_reserved:
8439 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 0);
8440out_unuse:
8441 unuse_block_rsv(root->fs_info, block_rsv, blocksize);
8442 return ERR_PTR(ret);
fec577fb 8443}
a28ec197 8444
2c47e605
YZ
8445struct walk_control {
8446 u64 refs[BTRFS_MAX_LEVEL];
8447 u64 flags[BTRFS_MAX_LEVEL];
8448 struct btrfs_key update_progress;
8449 int stage;
8450 int level;
8451 int shared_level;
8452 int update_ref;
8453 int keep_locks;
1c4850e2
YZ
8454 int reada_slot;
8455 int reada_count;
66d7e7f0 8456 int for_reloc;
2c47e605
YZ
8457};
8458
8459#define DROP_REFERENCE 1
8460#define UPDATE_BACKREF 2
8461
1c4850e2
YZ
8462static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
8463 struct btrfs_root *root,
8464 struct walk_control *wc,
8465 struct btrfs_path *path)
6407bf6d 8466{
1c4850e2
YZ
8467 u64 bytenr;
8468 u64 generation;
8469 u64 refs;
94fcca9f 8470 u64 flags;
5d4f98a2 8471 u32 nritems;
1c4850e2
YZ
8472 struct btrfs_key key;
8473 struct extent_buffer *eb;
6407bf6d 8474 int ret;
1c4850e2
YZ
8475 int slot;
8476 int nread = 0;
6407bf6d 8477
1c4850e2
YZ
8478 if (path->slots[wc->level] < wc->reada_slot) {
8479 wc->reada_count = wc->reada_count * 2 / 3;
8480 wc->reada_count = max(wc->reada_count, 2);
8481 } else {
8482 wc->reada_count = wc->reada_count * 3 / 2;
8483 wc->reada_count = min_t(int, wc->reada_count,
8484 BTRFS_NODEPTRS_PER_BLOCK(root));
8485 }
7bb86316 8486
1c4850e2
YZ
8487 eb = path->nodes[wc->level];
8488 nritems = btrfs_header_nritems(eb);
bd56b302 8489
1c4850e2
YZ
8490 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
8491 if (nread >= wc->reada_count)
8492 break;
bd56b302 8493
2dd3e67b 8494 cond_resched();
1c4850e2
YZ
8495 bytenr = btrfs_node_blockptr(eb, slot);
8496 generation = btrfs_node_ptr_generation(eb, slot);
2dd3e67b 8497
1c4850e2
YZ
8498 if (slot == path->slots[wc->level])
8499 goto reada;
5d4f98a2 8500
1c4850e2
YZ
8501 if (wc->stage == UPDATE_BACKREF &&
8502 generation <= root->root_key.offset)
bd56b302
CM
8503 continue;
8504
94fcca9f 8505 /* We don't lock the tree block, it's OK to be racy here */
3173a18f
JB
8506 ret = btrfs_lookup_extent_info(trans, root, bytenr,
8507 wc->level - 1, 1, &refs,
8508 &flags);
79787eaa
JM
8509 /* We don't care about errors in readahead. */
8510 if (ret < 0)
8511 continue;
94fcca9f
YZ
8512 BUG_ON(refs == 0);
8513
1c4850e2 8514 if (wc->stage == DROP_REFERENCE) {
1c4850e2
YZ
8515 if (refs == 1)
8516 goto reada;
bd56b302 8517
94fcca9f
YZ
8518 if (wc->level == 1 &&
8519 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8520 continue;
1c4850e2
YZ
8521 if (!wc->update_ref ||
8522 generation <= root->root_key.offset)
8523 continue;
8524 btrfs_node_key_to_cpu(eb, &key, slot);
8525 ret = btrfs_comp_cpu_keys(&key,
8526 &wc->update_progress);
8527 if (ret < 0)
8528 continue;
94fcca9f
YZ
8529 } else {
8530 if (wc->level == 1 &&
8531 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8532 continue;
6407bf6d 8533 }
1c4850e2 8534reada:
d3e46fea 8535 readahead_tree_block(root, bytenr);
1c4850e2 8536 nread++;
20524f02 8537 }
1c4850e2 8538 wc->reada_slot = slot;
20524f02 8539}
2c47e605 8540
1152651a
MF
8541static int account_leaf_items(struct btrfs_trans_handle *trans,
8542 struct btrfs_root *root,
8543 struct extent_buffer *eb)
8544{
8545 int nr = btrfs_header_nritems(eb);
82bd101b 8546 int i, extent_type, ret;
1152651a
MF
8547 struct btrfs_key key;
8548 struct btrfs_file_extent_item *fi;
8549 u64 bytenr, num_bytes;
8550
82bd101b 8551 /* We can be called directly from walk_up_proc() */
afcdd129 8552 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &root->fs_info->flags))
82bd101b
MF
8553 return 0;
8554
1152651a
MF
8555 for (i = 0; i < nr; i++) {
8556 btrfs_item_key_to_cpu(eb, &key, i);
8557
8558 if (key.type != BTRFS_EXTENT_DATA_KEY)
8559 continue;
8560
8561 fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
8562 /* filter out non qgroup-accountable extents */
8563 extent_type = btrfs_file_extent_type(eb, fi);
8564
8565 if (extent_type == BTRFS_FILE_EXTENT_INLINE)
8566 continue;
8567
8568 bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
8569 if (!bytenr)
8570 continue;
8571
8572 num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
82bd101b 8573
cb93b52c
QW
8574 ret = btrfs_qgroup_insert_dirty_extent(trans, root->fs_info,
8575 bytenr, num_bytes, GFP_NOFS);
82bd101b
MF
8576 if (ret)
8577 return ret;
1152651a
MF
8578 }
8579 return 0;
8580}
8581
8582/*
8583 * Walk up the tree from the bottom, freeing leaves and any interior
8584 * nodes which have had all slots visited. If a node (leaf or
8585 * interior) is freed, the node above it will have it's slot
8586 * incremented. The root node will never be freed.
8587 *
8588 * At the end of this function, we should have a path which has all
8589 * slots incremented to the next position for a search. If we need to
8590 * read a new node it will be NULL and the node above it will have the
8591 * correct slot selected for a later read.
8592 *
8593 * If we increment the root nodes slot counter past the number of
8594 * elements, 1 is returned to signal completion of the search.
8595 */
8596static int adjust_slots_upwards(struct btrfs_root *root,
8597 struct btrfs_path *path, int root_level)
8598{
8599 int level = 0;
8600 int nr, slot;
8601 struct extent_buffer *eb;
8602
8603 if (root_level == 0)
8604 return 1;
8605
8606 while (level <= root_level) {
8607 eb = path->nodes[level];
8608 nr = btrfs_header_nritems(eb);
8609 path->slots[level]++;
8610 slot = path->slots[level];
8611 if (slot >= nr || level == 0) {
8612 /*
8613 * Don't free the root - we will detect this
8614 * condition after our loop and return a
8615 * positive value for caller to stop walking the tree.
8616 */
8617 if (level != root_level) {
8618 btrfs_tree_unlock_rw(eb, path->locks[level]);
8619 path->locks[level] = 0;
8620
8621 free_extent_buffer(eb);
8622 path->nodes[level] = NULL;
8623 path->slots[level] = 0;
8624 }
8625 } else {
8626 /*
8627 * We have a valid slot to walk back down
8628 * from. Stop here so caller can process these
8629 * new nodes.
8630 */
8631 break;
8632 }
8633
8634 level++;
8635 }
8636
8637 eb = path->nodes[root_level];
8638 if (path->slots[root_level] >= btrfs_header_nritems(eb))
8639 return 1;
8640
8641 return 0;
8642}
8643
8644/*
8645 * root_eb is the subtree root and is locked before this function is called.
8646 */
8647static int account_shared_subtree(struct btrfs_trans_handle *trans,
8648 struct btrfs_root *root,
8649 struct extent_buffer *root_eb,
8650 u64 root_gen,
8651 int root_level)
8652{
8653 int ret = 0;
8654 int level;
8655 struct extent_buffer *eb = root_eb;
8656 struct btrfs_path *path = NULL;
8657
8658 BUG_ON(root_level < 0 || root_level > BTRFS_MAX_LEVEL);
8659 BUG_ON(root_eb == NULL);
8660
afcdd129 8661 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &root->fs_info->flags))
1152651a
MF
8662 return 0;
8663
8664 if (!extent_buffer_uptodate(root_eb)) {
8665 ret = btrfs_read_buffer(root_eb, root_gen);
8666 if (ret)
8667 goto out;
8668 }
8669
8670 if (root_level == 0) {
8671 ret = account_leaf_items(trans, root, root_eb);
8672 goto out;
8673 }
8674
8675 path = btrfs_alloc_path();
8676 if (!path)
8677 return -ENOMEM;
8678
8679 /*
8680 * Walk down the tree. Missing extent blocks are filled in as
8681 * we go. Metadata is accounted every time we read a new
8682 * extent block.
8683 *
8684 * When we reach a leaf, we account for file extent items in it,
8685 * walk back up the tree (adjusting slot pointers as we go)
8686 * and restart the search process.
8687 */
8688 extent_buffer_get(root_eb); /* For path */
8689 path->nodes[root_level] = root_eb;
8690 path->slots[root_level] = 0;
8691 path->locks[root_level] = 0; /* so release_path doesn't try to unlock */
8692walk_down:
8693 level = root_level;
8694 while (level >= 0) {
8695 if (path->nodes[level] == NULL) {
1152651a
MF
8696 int parent_slot;
8697 u64 child_gen;
8698 u64 child_bytenr;
8699
8700 /* We need to get child blockptr/gen from
8701 * parent before we can read it. */
8702 eb = path->nodes[level + 1];
8703 parent_slot = path->slots[level + 1];
8704 child_bytenr = btrfs_node_blockptr(eb, parent_slot);
8705 child_gen = btrfs_node_ptr_generation(eb, parent_slot);
8706
ce86cd59 8707 eb = read_tree_block(root, child_bytenr, child_gen);
64c043de
LB
8708 if (IS_ERR(eb)) {
8709 ret = PTR_ERR(eb);
8710 goto out;
8711 } else if (!extent_buffer_uptodate(eb)) {
8635eda9 8712 free_extent_buffer(eb);
64c043de 8713 ret = -EIO;
1152651a
MF
8714 goto out;
8715 }
8716
8717 path->nodes[level] = eb;
8718 path->slots[level] = 0;
8719
8720 btrfs_tree_read_lock(eb);
8721 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
8722 path->locks[level] = BTRFS_READ_LOCK_BLOCKING;
82bd101b 8723
cb93b52c
QW
8724 ret = btrfs_qgroup_insert_dirty_extent(trans,
8725 root->fs_info, child_bytenr,
8726 root->nodesize, GFP_NOFS);
82bd101b
MF
8727 if (ret)
8728 goto out;
1152651a
MF
8729 }
8730
8731 if (level == 0) {
8732 ret = account_leaf_items(trans, root, path->nodes[level]);
8733 if (ret)
8734 goto out;
8735
8736 /* Nonzero return here means we completed our search */
8737 ret = adjust_slots_upwards(root, path, root_level);
8738 if (ret)
8739 break;
8740
8741 /* Restart search with new slots */
8742 goto walk_down;
8743 }
8744
8745 level--;
8746 }
8747
8748 ret = 0;
8749out:
8750 btrfs_free_path(path);
8751
8752 return ret;
8753}
8754
f82d02d9 8755/*
2c016dc2 8756 * helper to process tree block while walking down the tree.
2c47e605 8757 *
2c47e605
YZ
8758 * when wc->stage == UPDATE_BACKREF, this function updates
8759 * back refs for pointers in the block.
8760 *
8761 * NOTE: return value 1 means we should stop walking down.
f82d02d9 8762 */
2c47e605 8763static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
5d4f98a2 8764 struct btrfs_root *root,
2c47e605 8765 struct btrfs_path *path,
94fcca9f 8766 struct walk_control *wc, int lookup_info)
f82d02d9 8767{
2c47e605
YZ
8768 int level = wc->level;
8769 struct extent_buffer *eb = path->nodes[level];
2c47e605 8770 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
f82d02d9
YZ
8771 int ret;
8772
2c47e605
YZ
8773 if (wc->stage == UPDATE_BACKREF &&
8774 btrfs_header_owner(eb) != root->root_key.objectid)
8775 return 1;
f82d02d9 8776
2c47e605
YZ
8777 /*
8778 * when reference count of tree block is 1, it won't increase
8779 * again. once full backref flag is set, we never clear it.
8780 */
94fcca9f
YZ
8781 if (lookup_info &&
8782 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
8783 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
2c47e605
YZ
8784 BUG_ON(!path->locks[level]);
8785 ret = btrfs_lookup_extent_info(trans, root,
3173a18f 8786 eb->start, level, 1,
2c47e605
YZ
8787 &wc->refs[level],
8788 &wc->flags[level]);
79787eaa
JM
8789 BUG_ON(ret == -ENOMEM);
8790 if (ret)
8791 return ret;
2c47e605
YZ
8792 BUG_ON(wc->refs[level] == 0);
8793 }
5d4f98a2 8794
2c47e605
YZ
8795 if (wc->stage == DROP_REFERENCE) {
8796 if (wc->refs[level] > 1)
8797 return 1;
f82d02d9 8798
2c47e605 8799 if (path->locks[level] && !wc->keep_locks) {
bd681513 8800 btrfs_tree_unlock_rw(eb, path->locks[level]);
2c47e605
YZ
8801 path->locks[level] = 0;
8802 }
8803 return 0;
8804 }
f82d02d9 8805
2c47e605
YZ
8806 /* wc->stage == UPDATE_BACKREF */
8807 if (!(wc->flags[level] & flag)) {
8808 BUG_ON(!path->locks[level]);
e339a6b0 8809 ret = btrfs_inc_ref(trans, root, eb, 1);
79787eaa 8810 BUG_ON(ret); /* -ENOMEM */
e339a6b0 8811 ret = btrfs_dec_ref(trans, root, eb, 0);
79787eaa 8812 BUG_ON(ret); /* -ENOMEM */
2c47e605 8813 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
b1c79e09
JB
8814 eb->len, flag,
8815 btrfs_header_level(eb), 0);
79787eaa 8816 BUG_ON(ret); /* -ENOMEM */
2c47e605
YZ
8817 wc->flags[level] |= flag;
8818 }
8819
8820 /*
8821 * the block is shared by multiple trees, so it's not good to
8822 * keep the tree lock
8823 */
8824 if (path->locks[level] && level > 0) {
bd681513 8825 btrfs_tree_unlock_rw(eb, path->locks[level]);
2c47e605
YZ
8826 path->locks[level] = 0;
8827 }
8828 return 0;
8829}
8830
1c4850e2 8831/*
2c016dc2 8832 * helper to process tree block pointer.
1c4850e2
YZ
8833 *
8834 * when wc->stage == DROP_REFERENCE, this function checks
8835 * reference count of the block pointed to. if the block
8836 * is shared and we need update back refs for the subtree
8837 * rooted at the block, this function changes wc->stage to
8838 * UPDATE_BACKREF. if the block is shared and there is no
8839 * need to update back, this function drops the reference
8840 * to the block.
8841 *
8842 * NOTE: return value 1 means we should stop walking down.
8843 */
8844static noinline int do_walk_down(struct btrfs_trans_handle *trans,
8845 struct btrfs_root *root,
8846 struct btrfs_path *path,
94fcca9f 8847 struct walk_control *wc, int *lookup_info)
1c4850e2
YZ
8848{
8849 u64 bytenr;
8850 u64 generation;
8851 u64 parent;
8852 u32 blocksize;
8853 struct btrfs_key key;
8854 struct extent_buffer *next;
8855 int level = wc->level;
8856 int reada = 0;
8857 int ret = 0;
1152651a 8858 bool need_account = false;
1c4850e2
YZ
8859
8860 generation = btrfs_node_ptr_generation(path->nodes[level],
8861 path->slots[level]);
8862 /*
8863 * if the lower level block was created before the snapshot
8864 * was created, we know there is no need to update back refs
8865 * for the subtree
8866 */
8867 if (wc->stage == UPDATE_BACKREF &&
94fcca9f
YZ
8868 generation <= root->root_key.offset) {
8869 *lookup_info = 1;
1c4850e2 8870 return 1;
94fcca9f 8871 }
1c4850e2
YZ
8872
8873 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
707e8a07 8874 blocksize = root->nodesize;
1c4850e2 8875
01d58472 8876 next = btrfs_find_tree_block(root->fs_info, bytenr);
1c4850e2 8877 if (!next) {
a83fffb7 8878 next = btrfs_find_create_tree_block(root, bytenr);
c871b0f2
LB
8879 if (IS_ERR(next))
8880 return PTR_ERR(next);
8881
b2aaaa3b
JB
8882 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
8883 level - 1);
1c4850e2
YZ
8884 reada = 1;
8885 }
8886 btrfs_tree_lock(next);
8887 btrfs_set_lock_blocking(next);
8888
3173a18f 8889 ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1,
94fcca9f
YZ
8890 &wc->refs[level - 1],
8891 &wc->flags[level - 1]);
4867268c
JB
8892 if (ret < 0)
8893 goto out_unlock;
79787eaa 8894
c2cf52eb
SK
8895 if (unlikely(wc->refs[level - 1] == 0)) {
8896 btrfs_err(root->fs_info, "Missing references.");
4867268c
JB
8897 ret = -EIO;
8898 goto out_unlock;
c2cf52eb 8899 }
94fcca9f 8900 *lookup_info = 0;
1c4850e2 8901
94fcca9f 8902 if (wc->stage == DROP_REFERENCE) {
1c4850e2 8903 if (wc->refs[level - 1] > 1) {
1152651a 8904 need_account = true;
94fcca9f
YZ
8905 if (level == 1 &&
8906 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8907 goto skip;
8908
1c4850e2
YZ
8909 if (!wc->update_ref ||
8910 generation <= root->root_key.offset)
8911 goto skip;
8912
8913 btrfs_node_key_to_cpu(path->nodes[level], &key,
8914 path->slots[level]);
8915 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
8916 if (ret < 0)
8917 goto skip;
8918
8919 wc->stage = UPDATE_BACKREF;
8920 wc->shared_level = level - 1;
8921 }
94fcca9f
YZ
8922 } else {
8923 if (level == 1 &&
8924 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8925 goto skip;
1c4850e2
YZ
8926 }
8927
b9fab919 8928 if (!btrfs_buffer_uptodate(next, generation, 0)) {
1c4850e2
YZ
8929 btrfs_tree_unlock(next);
8930 free_extent_buffer(next);
8931 next = NULL;
94fcca9f 8932 *lookup_info = 1;
1c4850e2
YZ
8933 }
8934
8935 if (!next) {
8936 if (reada && level == 1)
8937 reada_walk_down(trans, root, wc, path);
ce86cd59 8938 next = read_tree_block(root, bytenr, generation);
64c043de
LB
8939 if (IS_ERR(next)) {
8940 return PTR_ERR(next);
8941 } else if (!extent_buffer_uptodate(next)) {
416bc658 8942 free_extent_buffer(next);
97d9a8a4 8943 return -EIO;
416bc658 8944 }
1c4850e2
YZ
8945 btrfs_tree_lock(next);
8946 btrfs_set_lock_blocking(next);
8947 }
8948
8949 level--;
4867268c
JB
8950 ASSERT(level == btrfs_header_level(next));
8951 if (level != btrfs_header_level(next)) {
8952 btrfs_err(root->fs_info, "mismatched level");
8953 ret = -EIO;
8954 goto out_unlock;
8955 }
1c4850e2
YZ
8956 path->nodes[level] = next;
8957 path->slots[level] = 0;
bd681513 8958 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
1c4850e2
YZ
8959 wc->level = level;
8960 if (wc->level == 1)
8961 wc->reada_slot = 0;
8962 return 0;
8963skip:
8964 wc->refs[level - 1] = 0;
8965 wc->flags[level - 1] = 0;
94fcca9f
YZ
8966 if (wc->stage == DROP_REFERENCE) {
8967 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
8968 parent = path->nodes[level]->start;
8969 } else {
4867268c 8970 ASSERT(root->root_key.objectid ==
94fcca9f 8971 btrfs_header_owner(path->nodes[level]));
4867268c
JB
8972 if (root->root_key.objectid !=
8973 btrfs_header_owner(path->nodes[level])) {
8974 btrfs_err(root->fs_info,
8975 "mismatched block owner");
8976 ret = -EIO;
8977 goto out_unlock;
8978 }
94fcca9f
YZ
8979 parent = 0;
8980 }
1c4850e2 8981
1152651a
MF
8982 if (need_account) {
8983 ret = account_shared_subtree(trans, root, next,
8984 generation, level - 1);
8985 if (ret) {
94647322 8986 btrfs_err_rl(root->fs_info,
5d163e0e
JM
8987 "Error %d accounting shared subtree. Quota is out of sync, rescan required.",
8988 ret);
1152651a
MF
8989 }
8990 }
94fcca9f 8991 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
b06c4bf5 8992 root->root_key.objectid, level - 1, 0);
4867268c
JB
8993 if (ret)
8994 goto out_unlock;
1c4850e2 8995 }
4867268c
JB
8996
8997 *lookup_info = 1;
8998 ret = 1;
8999
9000out_unlock:
1c4850e2
YZ
9001 btrfs_tree_unlock(next);
9002 free_extent_buffer(next);
4867268c
JB
9003
9004 return ret;
1c4850e2
YZ
9005}
9006
2c47e605 9007/*
2c016dc2 9008 * helper to process tree block while walking up the tree.
2c47e605
YZ
9009 *
9010 * when wc->stage == DROP_REFERENCE, this function drops
9011 * reference count on the block.
9012 *
9013 * when wc->stage == UPDATE_BACKREF, this function changes
9014 * wc->stage back to DROP_REFERENCE if we changed wc->stage
9015 * to UPDATE_BACKREF previously while processing the block.
9016 *
9017 * NOTE: return value 1 means we should stop walking up.
9018 */
9019static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
9020 struct btrfs_root *root,
9021 struct btrfs_path *path,
9022 struct walk_control *wc)
9023{
f0486c68 9024 int ret;
2c47e605
YZ
9025 int level = wc->level;
9026 struct extent_buffer *eb = path->nodes[level];
9027 u64 parent = 0;
9028
9029 if (wc->stage == UPDATE_BACKREF) {
9030 BUG_ON(wc->shared_level < level);
9031 if (level < wc->shared_level)
9032 goto out;
9033
2c47e605
YZ
9034 ret = find_next_key(path, level + 1, &wc->update_progress);
9035 if (ret > 0)
9036 wc->update_ref = 0;
9037
9038 wc->stage = DROP_REFERENCE;
9039 wc->shared_level = -1;
9040 path->slots[level] = 0;
9041
9042 /*
9043 * check reference count again if the block isn't locked.
9044 * we should start walking down the tree again if reference
9045 * count is one.
9046 */
9047 if (!path->locks[level]) {
9048 BUG_ON(level == 0);
9049 btrfs_tree_lock(eb);
9050 btrfs_set_lock_blocking(eb);
bd681513 9051 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
2c47e605
YZ
9052
9053 ret = btrfs_lookup_extent_info(trans, root,
3173a18f 9054 eb->start, level, 1,
2c47e605
YZ
9055 &wc->refs[level],
9056 &wc->flags[level]);
79787eaa
JM
9057 if (ret < 0) {
9058 btrfs_tree_unlock_rw(eb, path->locks[level]);
3268a246 9059 path->locks[level] = 0;
79787eaa
JM
9060 return ret;
9061 }
2c47e605
YZ
9062 BUG_ON(wc->refs[level] == 0);
9063 if (wc->refs[level] == 1) {
bd681513 9064 btrfs_tree_unlock_rw(eb, path->locks[level]);
3268a246 9065 path->locks[level] = 0;
2c47e605
YZ
9066 return 1;
9067 }
f82d02d9 9068 }
2c47e605 9069 }
f82d02d9 9070
2c47e605
YZ
9071 /* wc->stage == DROP_REFERENCE */
9072 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
5d4f98a2 9073
2c47e605
YZ
9074 if (wc->refs[level] == 1) {
9075 if (level == 0) {
9076 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
e339a6b0 9077 ret = btrfs_dec_ref(trans, root, eb, 1);
2c47e605 9078 else
e339a6b0 9079 ret = btrfs_dec_ref(trans, root, eb, 0);
79787eaa 9080 BUG_ON(ret); /* -ENOMEM */
1152651a
MF
9081 ret = account_leaf_items(trans, root, eb);
9082 if (ret) {
94647322 9083 btrfs_err_rl(root->fs_info,
5d163e0e
JM
9084 "error %d accounting leaf items. Quota is out of sync, rescan required.",
9085 ret);
1152651a 9086 }
2c47e605
YZ
9087 }
9088 /* make block locked assertion in clean_tree_block happy */
9089 if (!path->locks[level] &&
9090 btrfs_header_generation(eb) == trans->transid) {
9091 btrfs_tree_lock(eb);
9092 btrfs_set_lock_blocking(eb);
bd681513 9093 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
2c47e605 9094 }
01d58472 9095 clean_tree_block(trans, root->fs_info, eb);
2c47e605
YZ
9096 }
9097
9098 if (eb == root->node) {
9099 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9100 parent = eb->start;
9101 else
9102 BUG_ON(root->root_key.objectid !=
9103 btrfs_header_owner(eb));
9104 } else {
9105 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9106 parent = path->nodes[level + 1]->start;
9107 else
9108 BUG_ON(root->root_key.objectid !=
9109 btrfs_header_owner(path->nodes[level + 1]));
f82d02d9 9110 }
f82d02d9 9111
5581a51a 9112 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
2c47e605
YZ
9113out:
9114 wc->refs[level] = 0;
9115 wc->flags[level] = 0;
f0486c68 9116 return 0;
2c47e605
YZ
9117}
9118
9119static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
9120 struct btrfs_root *root,
9121 struct btrfs_path *path,
9122 struct walk_control *wc)
9123{
2c47e605 9124 int level = wc->level;
94fcca9f 9125 int lookup_info = 1;
2c47e605
YZ
9126 int ret;
9127
9128 while (level >= 0) {
94fcca9f 9129 ret = walk_down_proc(trans, root, path, wc, lookup_info);
2c47e605
YZ
9130 if (ret > 0)
9131 break;
9132
9133 if (level == 0)
9134 break;
9135
7a7965f8
YZ
9136 if (path->slots[level] >=
9137 btrfs_header_nritems(path->nodes[level]))
9138 break;
9139
94fcca9f 9140 ret = do_walk_down(trans, root, path, wc, &lookup_info);
1c4850e2
YZ
9141 if (ret > 0) {
9142 path->slots[level]++;
9143 continue;
90d2c51d
MX
9144 } else if (ret < 0)
9145 return ret;
1c4850e2 9146 level = wc->level;
f82d02d9 9147 }
f82d02d9
YZ
9148 return 0;
9149}
9150
d397712b 9151static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
98ed5174 9152 struct btrfs_root *root,
f82d02d9 9153 struct btrfs_path *path,
2c47e605 9154 struct walk_control *wc, int max_level)
20524f02 9155{
2c47e605 9156 int level = wc->level;
20524f02 9157 int ret;
9f3a7427 9158
2c47e605
YZ
9159 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
9160 while (level < max_level && path->nodes[level]) {
9161 wc->level = level;
9162 if (path->slots[level] + 1 <
9163 btrfs_header_nritems(path->nodes[level])) {
9164 path->slots[level]++;
20524f02
CM
9165 return 0;
9166 } else {
2c47e605
YZ
9167 ret = walk_up_proc(trans, root, path, wc);
9168 if (ret > 0)
9169 return 0;
bd56b302 9170
2c47e605 9171 if (path->locks[level]) {
bd681513
CM
9172 btrfs_tree_unlock_rw(path->nodes[level],
9173 path->locks[level]);
2c47e605 9174 path->locks[level] = 0;
f82d02d9 9175 }
2c47e605
YZ
9176 free_extent_buffer(path->nodes[level]);
9177 path->nodes[level] = NULL;
9178 level++;
20524f02
CM
9179 }
9180 }
9181 return 1;
9182}
9183
9aca1d51 9184/*
2c47e605
YZ
9185 * drop a subvolume tree.
9186 *
9187 * this function traverses the tree freeing any blocks that only
9188 * referenced by the tree.
9189 *
9190 * when a shared tree block is found. this function decreases its
9191 * reference count by one. if update_ref is true, this function
9192 * also make sure backrefs for the shared block and all lower level
9193 * blocks are properly updated.
9d1a2a3a
DS
9194 *
9195 * If called with for_reloc == 0, may exit early with -EAGAIN
9aca1d51 9196 */
2c536799 9197int btrfs_drop_snapshot(struct btrfs_root *root,
66d7e7f0
AJ
9198 struct btrfs_block_rsv *block_rsv, int update_ref,
9199 int for_reloc)
20524f02 9200{
ab8d0fc4 9201 struct btrfs_fs_info *fs_info = root->fs_info;
5caf2a00 9202 struct btrfs_path *path;
2c47e605 9203 struct btrfs_trans_handle *trans;
ab8d0fc4 9204 struct btrfs_root *tree_root = fs_info->tree_root;
9f3a7427 9205 struct btrfs_root_item *root_item = &root->root_item;
2c47e605
YZ
9206 struct walk_control *wc;
9207 struct btrfs_key key;
9208 int err = 0;
9209 int ret;
9210 int level;
d29a9f62 9211 bool root_dropped = false;
20524f02 9212
ab8d0fc4 9213 btrfs_debug(fs_info, "Drop subvolume %llu", root->objectid);
1152651a 9214
5caf2a00 9215 path = btrfs_alloc_path();
cb1b69f4
TI
9216 if (!path) {
9217 err = -ENOMEM;
9218 goto out;
9219 }
20524f02 9220
2c47e605 9221 wc = kzalloc(sizeof(*wc), GFP_NOFS);
38a1a919
MF
9222 if (!wc) {
9223 btrfs_free_path(path);
cb1b69f4
TI
9224 err = -ENOMEM;
9225 goto out;
38a1a919 9226 }
2c47e605 9227
a22285a6 9228 trans = btrfs_start_transaction(tree_root, 0);
79787eaa
JM
9229 if (IS_ERR(trans)) {
9230 err = PTR_ERR(trans);
9231 goto out_free;
9232 }
98d5dc13 9233
3fd0a558
YZ
9234 if (block_rsv)
9235 trans->block_rsv = block_rsv;
2c47e605 9236
9f3a7427 9237 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2c47e605 9238 level = btrfs_header_level(root->node);
5d4f98a2
YZ
9239 path->nodes[level] = btrfs_lock_root_node(root);
9240 btrfs_set_lock_blocking(path->nodes[level]);
9f3a7427 9241 path->slots[level] = 0;
bd681513 9242 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
2c47e605
YZ
9243 memset(&wc->update_progress, 0,
9244 sizeof(wc->update_progress));
9f3a7427 9245 } else {
9f3a7427 9246 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
2c47e605
YZ
9247 memcpy(&wc->update_progress, &key,
9248 sizeof(wc->update_progress));
9249
6702ed49 9250 level = root_item->drop_level;
2c47e605 9251 BUG_ON(level == 0);
6702ed49 9252 path->lowest_level = level;
2c47e605
YZ
9253 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
9254 path->lowest_level = 0;
9255 if (ret < 0) {
9256 err = ret;
79787eaa 9257 goto out_end_trans;
9f3a7427 9258 }
1c4850e2 9259 WARN_ON(ret > 0);
2c47e605 9260
7d9eb12c
CM
9261 /*
9262 * unlock our path, this is safe because only this
9263 * function is allowed to delete this snapshot
9264 */
5d4f98a2 9265 btrfs_unlock_up_safe(path, 0);
2c47e605
YZ
9266
9267 level = btrfs_header_level(root->node);
9268 while (1) {
9269 btrfs_tree_lock(path->nodes[level]);
9270 btrfs_set_lock_blocking(path->nodes[level]);
fec386ac 9271 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
2c47e605
YZ
9272
9273 ret = btrfs_lookup_extent_info(trans, root,
9274 path->nodes[level]->start,
3173a18f 9275 level, 1, &wc->refs[level],
2c47e605 9276 &wc->flags[level]);
79787eaa
JM
9277 if (ret < 0) {
9278 err = ret;
9279 goto out_end_trans;
9280 }
2c47e605
YZ
9281 BUG_ON(wc->refs[level] == 0);
9282
9283 if (level == root_item->drop_level)
9284 break;
9285
9286 btrfs_tree_unlock(path->nodes[level]);
fec386ac 9287 path->locks[level] = 0;
2c47e605
YZ
9288 WARN_ON(wc->refs[level] != 1);
9289 level--;
9290 }
9f3a7427 9291 }
2c47e605
YZ
9292
9293 wc->level = level;
9294 wc->shared_level = -1;
9295 wc->stage = DROP_REFERENCE;
9296 wc->update_ref = update_ref;
9297 wc->keep_locks = 0;
66d7e7f0 9298 wc->for_reloc = for_reloc;
1c4850e2 9299 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
2c47e605 9300
d397712b 9301 while (1) {
9d1a2a3a 9302
2c47e605
YZ
9303 ret = walk_down_tree(trans, root, path, wc);
9304 if (ret < 0) {
9305 err = ret;
20524f02 9306 break;
2c47e605 9307 }
9aca1d51 9308
2c47e605
YZ
9309 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
9310 if (ret < 0) {
9311 err = ret;
20524f02 9312 break;
2c47e605
YZ
9313 }
9314
9315 if (ret > 0) {
9316 BUG_ON(wc->stage != DROP_REFERENCE);
e7a84565
CM
9317 break;
9318 }
2c47e605
YZ
9319
9320 if (wc->stage == DROP_REFERENCE) {
9321 level = wc->level;
9322 btrfs_node_key(path->nodes[level],
9323 &root_item->drop_progress,
9324 path->slots[level]);
9325 root_item->drop_level = level;
9326 }
9327
9328 BUG_ON(wc->level == 0);
3c8f2422
JB
9329 if (btrfs_should_end_transaction(trans, tree_root) ||
9330 (!for_reloc && btrfs_need_cleaner_sleep(root))) {
2c47e605
YZ
9331 ret = btrfs_update_root(trans, tree_root,
9332 &root->root_key,
9333 root_item);
79787eaa 9334 if (ret) {
66642832 9335 btrfs_abort_transaction(trans, ret);
79787eaa
JM
9336 err = ret;
9337 goto out_end_trans;
9338 }
2c47e605 9339
3fd0a558 9340 btrfs_end_transaction_throttle(trans, tree_root);
3c8f2422 9341 if (!for_reloc && btrfs_need_cleaner_sleep(root)) {
ab8d0fc4
JM
9342 btrfs_debug(fs_info,
9343 "drop snapshot early exit");
3c8f2422
JB
9344 err = -EAGAIN;
9345 goto out_free;
9346 }
9347
a22285a6 9348 trans = btrfs_start_transaction(tree_root, 0);
79787eaa
JM
9349 if (IS_ERR(trans)) {
9350 err = PTR_ERR(trans);
9351 goto out_free;
9352 }
3fd0a558
YZ
9353 if (block_rsv)
9354 trans->block_rsv = block_rsv;
c3e69d58 9355 }
20524f02 9356 }
b3b4aa74 9357 btrfs_release_path(path);
79787eaa
JM
9358 if (err)
9359 goto out_end_trans;
2c47e605
YZ
9360
9361 ret = btrfs_del_root(trans, tree_root, &root->root_key);
79787eaa 9362 if (ret) {
66642832 9363 btrfs_abort_transaction(trans, ret);
79787eaa
JM
9364 goto out_end_trans;
9365 }
2c47e605 9366
76dda93c 9367 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
cb517eab
MX
9368 ret = btrfs_find_root(tree_root, &root->root_key, path,
9369 NULL, NULL);
79787eaa 9370 if (ret < 0) {
66642832 9371 btrfs_abort_transaction(trans, ret);
79787eaa
JM
9372 err = ret;
9373 goto out_end_trans;
9374 } else if (ret > 0) {
84cd948c
JB
9375 /* if we fail to delete the orphan item this time
9376 * around, it'll get picked up the next time.
9377 *
9378 * The most common failure here is just -ENOENT.
9379 */
9380 btrfs_del_orphan_item(trans, tree_root,
9381 root->root_key.objectid);
76dda93c
YZ
9382 }
9383 }
9384
27cdeb70 9385 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
2b9dbef2 9386 btrfs_add_dropped_root(trans, root);
76dda93c
YZ
9387 } else {
9388 free_extent_buffer(root->node);
9389 free_extent_buffer(root->commit_root);
b0feb9d9 9390 btrfs_put_fs_root(root);
76dda93c 9391 }
d29a9f62 9392 root_dropped = true;
79787eaa 9393out_end_trans:
3fd0a558 9394 btrfs_end_transaction_throttle(trans, tree_root);
79787eaa 9395out_free:
2c47e605 9396 kfree(wc);
5caf2a00 9397 btrfs_free_path(path);
cb1b69f4 9398out:
d29a9f62
JB
9399 /*
9400 * So if we need to stop dropping the snapshot for whatever reason we
9401 * need to make sure to add it back to the dead root list so that we
9402 * keep trying to do the work later. This also cleans up roots if we
9403 * don't have it in the radix (like when we recover after a power fail
9404 * or unmount) so we don't leak memory.
9405 */
b37b39cd 9406 if (!for_reloc && root_dropped == false)
d29a9f62 9407 btrfs_add_dead_root(root);
90515e7f 9408 if (err && err != -EAGAIN)
ab8d0fc4 9409 btrfs_handle_fs_error(fs_info, err, NULL);
2c536799 9410 return err;
20524f02 9411}
9078a3e1 9412
2c47e605
YZ
9413/*
9414 * drop subtree rooted at tree block 'node'.
9415 *
9416 * NOTE: this function will unlock and release tree block 'node'
66d7e7f0 9417 * only used by relocation code
2c47e605 9418 */
f82d02d9
YZ
9419int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
9420 struct btrfs_root *root,
9421 struct extent_buffer *node,
9422 struct extent_buffer *parent)
9423{
9424 struct btrfs_path *path;
2c47e605 9425 struct walk_control *wc;
f82d02d9
YZ
9426 int level;
9427 int parent_level;
9428 int ret = 0;
9429 int wret;
9430
2c47e605
YZ
9431 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
9432
f82d02d9 9433 path = btrfs_alloc_path();
db5b493a
TI
9434 if (!path)
9435 return -ENOMEM;
f82d02d9 9436
2c47e605 9437 wc = kzalloc(sizeof(*wc), GFP_NOFS);
db5b493a
TI
9438 if (!wc) {
9439 btrfs_free_path(path);
9440 return -ENOMEM;
9441 }
2c47e605 9442
b9447ef8 9443 btrfs_assert_tree_locked(parent);
f82d02d9
YZ
9444 parent_level = btrfs_header_level(parent);
9445 extent_buffer_get(parent);
9446 path->nodes[parent_level] = parent;
9447 path->slots[parent_level] = btrfs_header_nritems(parent);
9448
b9447ef8 9449 btrfs_assert_tree_locked(node);
f82d02d9 9450 level = btrfs_header_level(node);
f82d02d9
YZ
9451 path->nodes[level] = node;
9452 path->slots[level] = 0;
bd681513 9453 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
2c47e605
YZ
9454
9455 wc->refs[parent_level] = 1;
9456 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
9457 wc->level = level;
9458 wc->shared_level = -1;
9459 wc->stage = DROP_REFERENCE;
9460 wc->update_ref = 0;
9461 wc->keep_locks = 1;
66d7e7f0 9462 wc->for_reloc = 1;
1c4850e2 9463 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
f82d02d9
YZ
9464
9465 while (1) {
2c47e605
YZ
9466 wret = walk_down_tree(trans, root, path, wc);
9467 if (wret < 0) {
f82d02d9 9468 ret = wret;
f82d02d9 9469 break;
2c47e605 9470 }
f82d02d9 9471
2c47e605 9472 wret = walk_up_tree(trans, root, path, wc, parent_level);
f82d02d9
YZ
9473 if (wret < 0)
9474 ret = wret;
9475 if (wret != 0)
9476 break;
9477 }
9478
2c47e605 9479 kfree(wc);
f82d02d9
YZ
9480 btrfs_free_path(path);
9481 return ret;
9482}
9483
ec44a35c
CM
9484static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
9485{
9486 u64 num_devices;
fc67c450 9487 u64 stripped;
e4d8ec0f 9488
fc67c450
ID
9489 /*
9490 * if restripe for this chunk_type is on pick target profile and
9491 * return, otherwise do the usual balance
9492 */
9493 stripped = get_restripe_target(root->fs_info, flags);
9494 if (stripped)
9495 return extended_to_chunk(stripped);
e4d8ec0f 9496
95669976 9497 num_devices = root->fs_info->fs_devices->rw_devices;
cd02dca5 9498
fc67c450 9499 stripped = BTRFS_BLOCK_GROUP_RAID0 |
53b381b3 9500 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
fc67c450
ID
9501 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
9502
ec44a35c
CM
9503 if (num_devices == 1) {
9504 stripped |= BTRFS_BLOCK_GROUP_DUP;
9505 stripped = flags & ~stripped;
9506
9507 /* turn raid0 into single device chunks */
9508 if (flags & BTRFS_BLOCK_GROUP_RAID0)
9509 return stripped;
9510
9511 /* turn mirroring into duplication */
9512 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
9513 BTRFS_BLOCK_GROUP_RAID10))
9514 return stripped | BTRFS_BLOCK_GROUP_DUP;
ec44a35c
CM
9515 } else {
9516 /* they already had raid on here, just return */
ec44a35c
CM
9517 if (flags & stripped)
9518 return flags;
9519
9520 stripped |= BTRFS_BLOCK_GROUP_DUP;
9521 stripped = flags & ~stripped;
9522
9523 /* switch duplicated blocks with raid1 */
9524 if (flags & BTRFS_BLOCK_GROUP_DUP)
9525 return stripped | BTRFS_BLOCK_GROUP_RAID1;
9526
e3176ca2 9527 /* this is drive concat, leave it alone */
ec44a35c 9528 }
e3176ca2 9529
ec44a35c
CM
9530 return flags;
9531}
9532
868f401a 9533static int inc_block_group_ro(struct btrfs_block_group_cache *cache, int force)
0ef3e66b 9534{
f0486c68
YZ
9535 struct btrfs_space_info *sinfo = cache->space_info;
9536 u64 num_bytes;
199c36ea 9537 u64 min_allocable_bytes;
f0486c68 9538 int ret = -ENOSPC;
0ef3e66b 9539
199c36ea
MX
9540 /*
9541 * We need some metadata space and system metadata space for
9542 * allocating chunks in some corner cases until we force to set
9543 * it to be readonly.
9544 */
9545 if ((sinfo->flags &
9546 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
9547 !force)
ee22184b 9548 min_allocable_bytes = SZ_1M;
199c36ea
MX
9549 else
9550 min_allocable_bytes = 0;
9551
f0486c68
YZ
9552 spin_lock(&sinfo->lock);
9553 spin_lock(&cache->lock);
61cfea9b
W
9554
9555 if (cache->ro) {
868f401a 9556 cache->ro++;
61cfea9b
W
9557 ret = 0;
9558 goto out;
9559 }
9560
f0486c68
YZ
9561 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
9562 cache->bytes_super - btrfs_block_group_used(&cache->item);
9563
9564 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
37be25bc
JB
9565 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
9566 min_allocable_bytes <= sinfo->total_bytes) {
f0486c68 9567 sinfo->bytes_readonly += num_bytes;
868f401a 9568 cache->ro++;
633c0aad 9569 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
f0486c68
YZ
9570 ret = 0;
9571 }
61cfea9b 9572out:
f0486c68
YZ
9573 spin_unlock(&cache->lock);
9574 spin_unlock(&sinfo->lock);
9575 return ret;
9576}
7d9eb12c 9577
868f401a 9578int btrfs_inc_block_group_ro(struct btrfs_root *root,
f0486c68 9579 struct btrfs_block_group_cache *cache)
c286ac48 9580
f0486c68
YZ
9581{
9582 struct btrfs_trans_handle *trans;
9583 u64 alloc_flags;
9584 int ret;
7d9eb12c 9585
1bbc621e 9586again:
ff5714cc 9587 trans = btrfs_join_transaction(root);
79787eaa
JM
9588 if (IS_ERR(trans))
9589 return PTR_ERR(trans);
5d4f98a2 9590
1bbc621e
CM
9591 /*
9592 * we're not allowed to set block groups readonly after the dirty
9593 * block groups cache has started writing. If it already started,
9594 * back off and let this transaction commit
9595 */
9596 mutex_lock(&root->fs_info->ro_block_group_mutex);
3204d33c 9597 if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) {
1bbc621e
CM
9598 u64 transid = trans->transid;
9599
9600 mutex_unlock(&root->fs_info->ro_block_group_mutex);
9601 btrfs_end_transaction(trans, root);
9602
9603 ret = btrfs_wait_for_commit(root, transid);
9604 if (ret)
9605 return ret;
9606 goto again;
9607 }
9608
153c35b6
CM
9609 /*
9610 * if we are changing raid levels, try to allocate a corresponding
9611 * block group with the new raid level.
9612 */
9613 alloc_flags = update_block_group_flags(root, cache->flags);
9614 if (alloc_flags != cache->flags) {
9615 ret = do_chunk_alloc(trans, root, alloc_flags,
9616 CHUNK_ALLOC_FORCE);
9617 /*
9618 * ENOSPC is allowed here, we may have enough space
9619 * already allocated at the new raid level to
9620 * carry on
9621 */
9622 if (ret == -ENOSPC)
9623 ret = 0;
9624 if (ret < 0)
9625 goto out;
9626 }
1bbc621e 9627
868f401a 9628 ret = inc_block_group_ro(cache, 0);
f0486c68
YZ
9629 if (!ret)
9630 goto out;
9631 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
698d0082 9632 ret = do_chunk_alloc(trans, root, alloc_flags,
0e4f8f88 9633 CHUNK_ALLOC_FORCE);
f0486c68
YZ
9634 if (ret < 0)
9635 goto out;
868f401a 9636 ret = inc_block_group_ro(cache, 0);
f0486c68 9637out:
2f081088
SL
9638 if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
9639 alloc_flags = update_block_group_flags(root, cache->flags);
a9629596 9640 lock_chunks(root->fs_info->chunk_root);
4617ea3a 9641 check_system_chunk(trans, root, alloc_flags);
a9629596 9642 unlock_chunks(root->fs_info->chunk_root);
2f081088 9643 }
1bbc621e 9644 mutex_unlock(&root->fs_info->ro_block_group_mutex);
2f081088 9645
f0486c68
YZ
9646 btrfs_end_transaction(trans, root);
9647 return ret;
9648}
5d4f98a2 9649
c87f08ca
CM
9650int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
9651 struct btrfs_root *root, u64 type)
9652{
9653 u64 alloc_flags = get_alloc_profile(root, type);
698d0082 9654 return do_chunk_alloc(trans, root, alloc_flags,
0e4f8f88 9655 CHUNK_ALLOC_FORCE);
c87f08ca
CM
9656}
9657
6d07bcec
MX
9658/*
9659 * helper to account the unused space of all the readonly block group in the
633c0aad 9660 * space_info. takes mirrors into account.
6d07bcec 9661 */
633c0aad 9662u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
6d07bcec
MX
9663{
9664 struct btrfs_block_group_cache *block_group;
9665 u64 free_bytes = 0;
9666 int factor;
9667
01327610 9668 /* It's df, we don't care if it's racy */
633c0aad
JB
9669 if (list_empty(&sinfo->ro_bgs))
9670 return 0;
9671
9672 spin_lock(&sinfo->lock);
9673 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
6d07bcec
MX
9674 spin_lock(&block_group->lock);
9675
9676 if (!block_group->ro) {
9677 spin_unlock(&block_group->lock);
9678 continue;
9679 }
9680
9681 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
9682 BTRFS_BLOCK_GROUP_RAID10 |
9683 BTRFS_BLOCK_GROUP_DUP))
9684 factor = 2;
9685 else
9686 factor = 1;
9687
9688 free_bytes += (block_group->key.offset -
9689 btrfs_block_group_used(&block_group->item)) *
9690 factor;
9691
9692 spin_unlock(&block_group->lock);
9693 }
6d07bcec
MX
9694 spin_unlock(&sinfo->lock);
9695
9696 return free_bytes;
9697}
9698
868f401a 9699void btrfs_dec_block_group_ro(struct btrfs_root *root,
f0486c68 9700 struct btrfs_block_group_cache *cache)
5d4f98a2 9701{
f0486c68
YZ
9702 struct btrfs_space_info *sinfo = cache->space_info;
9703 u64 num_bytes;
9704
9705 BUG_ON(!cache->ro);
9706
9707 spin_lock(&sinfo->lock);
9708 spin_lock(&cache->lock);
868f401a
Z
9709 if (!--cache->ro) {
9710 num_bytes = cache->key.offset - cache->reserved -
9711 cache->pinned - cache->bytes_super -
9712 btrfs_block_group_used(&cache->item);
9713 sinfo->bytes_readonly -= num_bytes;
9714 list_del_init(&cache->ro_list);
9715 }
f0486c68
YZ
9716 spin_unlock(&cache->lock);
9717 spin_unlock(&sinfo->lock);
5d4f98a2
YZ
9718}
9719
ba1bf481
JB
9720/*
9721 * checks to see if its even possible to relocate this block group.
9722 *
9723 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
9724 * ok to go ahead and try.
9725 */
9726int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
1a40e23b 9727{
ba1bf481
JB
9728 struct btrfs_block_group_cache *block_group;
9729 struct btrfs_space_info *space_info;
9730 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
9731 struct btrfs_device *device;
6df9a95e 9732 struct btrfs_trans_handle *trans;
cdcb725c 9733 u64 min_free;
6719db6a
JB
9734 u64 dev_min = 1;
9735 u64 dev_nr = 0;
4a5e98f5 9736 u64 target;
0305bc27 9737 int debug;
cdcb725c 9738 int index;
ba1bf481
JB
9739 int full = 0;
9740 int ret = 0;
1a40e23b 9741
3cdde224 9742 debug = btrfs_test_opt(root->fs_info, ENOSPC_DEBUG);
0305bc27 9743
ba1bf481 9744 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
1a40e23b 9745
ba1bf481 9746 /* odd, couldn't find the block group, leave it alone */
0305bc27
QW
9747 if (!block_group) {
9748 if (debug)
9749 btrfs_warn(root->fs_info,
9750 "can't find block group for bytenr %llu",
9751 bytenr);
ba1bf481 9752 return -1;
0305bc27 9753 }
1a40e23b 9754
cdcb725c 9755 min_free = btrfs_block_group_used(&block_group->item);
9756
ba1bf481 9757 /* no bytes used, we're good */
cdcb725c 9758 if (!min_free)
1a40e23b
ZY
9759 goto out;
9760
ba1bf481
JB
9761 space_info = block_group->space_info;
9762 spin_lock(&space_info->lock);
17d217fe 9763
ba1bf481 9764 full = space_info->full;
17d217fe 9765
ba1bf481
JB
9766 /*
9767 * if this is the last block group we have in this space, we can't
7ce618db
CM
9768 * relocate it unless we're able to allocate a new chunk below.
9769 *
9770 * Otherwise, we need to make sure we have room in the space to handle
9771 * all of the extents from this block group. If we can, we're good
ba1bf481 9772 */
7ce618db 9773 if ((space_info->total_bytes != block_group->key.offset) &&
cdcb725c 9774 (space_info->bytes_used + space_info->bytes_reserved +
9775 space_info->bytes_pinned + space_info->bytes_readonly +
9776 min_free < space_info->total_bytes)) {
ba1bf481
JB
9777 spin_unlock(&space_info->lock);
9778 goto out;
17d217fe 9779 }
ba1bf481 9780 spin_unlock(&space_info->lock);
ea8c2819 9781
ba1bf481
JB
9782 /*
9783 * ok we don't have enough space, but maybe we have free space on our
9784 * devices to allocate new chunks for relocation, so loop through our
4a5e98f5
ID
9785 * alloc devices and guess if we have enough space. if this block
9786 * group is going to be restriped, run checks against the target
9787 * profile instead of the current one.
ba1bf481
JB
9788 */
9789 ret = -1;
ea8c2819 9790
cdcb725c 9791 /*
9792 * index:
9793 * 0: raid10
9794 * 1: raid1
9795 * 2: dup
9796 * 3: raid0
9797 * 4: single
9798 */
4a5e98f5
ID
9799 target = get_restripe_target(root->fs_info, block_group->flags);
9800 if (target) {
31e50229 9801 index = __get_raid_index(extended_to_chunk(target));
4a5e98f5
ID
9802 } else {
9803 /*
9804 * this is just a balance, so if we were marked as full
9805 * we know there is no space for a new chunk
9806 */
0305bc27
QW
9807 if (full) {
9808 if (debug)
9809 btrfs_warn(root->fs_info,
9810 "no space to alloc new chunk for block group %llu",
9811 block_group->key.objectid);
4a5e98f5 9812 goto out;
0305bc27 9813 }
4a5e98f5
ID
9814
9815 index = get_block_group_index(block_group);
9816 }
9817
e6ec716f 9818 if (index == BTRFS_RAID_RAID10) {
cdcb725c 9819 dev_min = 4;
6719db6a
JB
9820 /* Divide by 2 */
9821 min_free >>= 1;
e6ec716f 9822 } else if (index == BTRFS_RAID_RAID1) {
cdcb725c 9823 dev_min = 2;
e6ec716f 9824 } else if (index == BTRFS_RAID_DUP) {
6719db6a
JB
9825 /* Multiply by 2 */
9826 min_free <<= 1;
e6ec716f 9827 } else if (index == BTRFS_RAID_RAID0) {
cdcb725c 9828 dev_min = fs_devices->rw_devices;
47c5713f 9829 min_free = div64_u64(min_free, dev_min);
cdcb725c 9830 }
9831
6df9a95e
JB
9832 /* We need to do this so that we can look at pending chunks */
9833 trans = btrfs_join_transaction(root);
9834 if (IS_ERR(trans)) {
9835 ret = PTR_ERR(trans);
9836 goto out;
9837 }
9838
ba1bf481
JB
9839 mutex_lock(&root->fs_info->chunk_mutex);
9840 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
7bfc837d 9841 u64 dev_offset;
56bec294 9842
ba1bf481
JB
9843 /*
9844 * check to make sure we can actually find a chunk with enough
9845 * space to fit our block group in.
9846 */
63a212ab
SB
9847 if (device->total_bytes > device->bytes_used + min_free &&
9848 !device->is_tgtdev_for_dev_replace) {
6df9a95e 9849 ret = find_free_dev_extent(trans, device, min_free,
7bfc837d 9850 &dev_offset, NULL);
ba1bf481 9851 if (!ret)
cdcb725c 9852 dev_nr++;
9853
9854 if (dev_nr >= dev_min)
73e48b27 9855 break;
cdcb725c 9856
ba1bf481 9857 ret = -1;
725c8463 9858 }
edbd8d4e 9859 }
0305bc27
QW
9860 if (debug && ret == -1)
9861 btrfs_warn(root->fs_info,
9862 "no space to allocate a new chunk for block group %llu",
9863 block_group->key.objectid);
ba1bf481 9864 mutex_unlock(&root->fs_info->chunk_mutex);
6df9a95e 9865 btrfs_end_transaction(trans, root);
edbd8d4e 9866out:
ba1bf481 9867 btrfs_put_block_group(block_group);
edbd8d4e
CM
9868 return ret;
9869}
9870
b2950863
CH
9871static int find_first_block_group(struct btrfs_root *root,
9872 struct btrfs_path *path, struct btrfs_key *key)
0b86a832 9873{
925baedd 9874 int ret = 0;
0b86a832
CM
9875 struct btrfs_key found_key;
9876 struct extent_buffer *leaf;
9877 int slot;
edbd8d4e 9878
0b86a832
CM
9879 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
9880 if (ret < 0)
925baedd
CM
9881 goto out;
9882
d397712b 9883 while (1) {
0b86a832 9884 slot = path->slots[0];
edbd8d4e 9885 leaf = path->nodes[0];
0b86a832
CM
9886 if (slot >= btrfs_header_nritems(leaf)) {
9887 ret = btrfs_next_leaf(root, path);
9888 if (ret == 0)
9889 continue;
9890 if (ret < 0)
925baedd 9891 goto out;
0b86a832 9892 break;
edbd8d4e 9893 }
0b86a832 9894 btrfs_item_key_to_cpu(leaf, &found_key, slot);
edbd8d4e 9895
0b86a832 9896 if (found_key.objectid >= key->objectid &&
925baedd 9897 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
6fb37b75
LB
9898 struct extent_map_tree *em_tree;
9899 struct extent_map *em;
9900
9901 em_tree = &root->fs_info->mapping_tree.map_tree;
9902 read_lock(&em_tree->lock);
9903 em = lookup_extent_mapping(em_tree, found_key.objectid,
9904 found_key.offset);
9905 read_unlock(&em_tree->lock);
9906 if (!em) {
9907 btrfs_err(root->fs_info,
9908 "logical %llu len %llu found bg but no related chunk",
9909 found_key.objectid, found_key.offset);
9910 ret = -ENOENT;
9911 } else {
9912 ret = 0;
9913 }
187ee58c 9914 free_extent_map(em);
925baedd
CM
9915 goto out;
9916 }
0b86a832 9917 path->slots[0]++;
edbd8d4e 9918 }
925baedd 9919out:
0b86a832 9920 return ret;
edbd8d4e
CM
9921}
9922
0af3d00b
JB
9923void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
9924{
9925 struct btrfs_block_group_cache *block_group;
9926 u64 last = 0;
9927
9928 while (1) {
9929 struct inode *inode;
9930
9931 block_group = btrfs_lookup_first_block_group(info, last);
9932 while (block_group) {
9933 spin_lock(&block_group->lock);
9934 if (block_group->iref)
9935 break;
9936 spin_unlock(&block_group->lock);
9937 block_group = next_block_group(info->tree_root,
9938 block_group);
9939 }
9940 if (!block_group) {
9941 if (last == 0)
9942 break;
9943 last = 0;
9944 continue;
9945 }
9946
9947 inode = block_group->inode;
9948 block_group->iref = 0;
9949 block_group->inode = NULL;
9950 spin_unlock(&block_group->lock);
f3bca802 9951 ASSERT(block_group->io_ctl.inode == NULL);
0af3d00b
JB
9952 iput(inode);
9953 last = block_group->key.objectid + block_group->key.offset;
9954 btrfs_put_block_group(block_group);
9955 }
9956}
9957
1a40e23b
ZY
9958int btrfs_free_block_groups(struct btrfs_fs_info *info)
9959{
9960 struct btrfs_block_group_cache *block_group;
4184ea7f 9961 struct btrfs_space_info *space_info;
11833d66 9962 struct btrfs_caching_control *caching_ctl;
1a40e23b
ZY
9963 struct rb_node *n;
9964
9e351cc8 9965 down_write(&info->commit_root_sem);
11833d66
YZ
9966 while (!list_empty(&info->caching_block_groups)) {
9967 caching_ctl = list_entry(info->caching_block_groups.next,
9968 struct btrfs_caching_control, list);
9969 list_del(&caching_ctl->list);
9970 put_caching_control(caching_ctl);
9971 }
9e351cc8 9972 up_write(&info->commit_root_sem);
11833d66 9973
47ab2a6c
JB
9974 spin_lock(&info->unused_bgs_lock);
9975 while (!list_empty(&info->unused_bgs)) {
9976 block_group = list_first_entry(&info->unused_bgs,
9977 struct btrfs_block_group_cache,
9978 bg_list);
9979 list_del_init(&block_group->bg_list);
9980 btrfs_put_block_group(block_group);
9981 }
9982 spin_unlock(&info->unused_bgs_lock);
9983
1a40e23b
ZY
9984 spin_lock(&info->block_group_cache_lock);
9985 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
9986 block_group = rb_entry(n, struct btrfs_block_group_cache,
9987 cache_node);
1a40e23b
ZY
9988 rb_erase(&block_group->cache_node,
9989 &info->block_group_cache_tree);
01eacb27 9990 RB_CLEAR_NODE(&block_group->cache_node);
d899e052
YZ
9991 spin_unlock(&info->block_group_cache_lock);
9992
80eb234a 9993 down_write(&block_group->space_info->groups_sem);
1a40e23b 9994 list_del(&block_group->list);
80eb234a 9995 up_write(&block_group->space_info->groups_sem);
d2fb3437 9996
817d52f8 9997 if (block_group->cached == BTRFS_CACHE_STARTED)
11833d66 9998 wait_block_group_cache_done(block_group);
817d52f8 9999
3c14874a
JB
10000 /*
10001 * We haven't cached this block group, which means we could
10002 * possibly have excluded extents on this block group.
10003 */
36cce922
JB
10004 if (block_group->cached == BTRFS_CACHE_NO ||
10005 block_group->cached == BTRFS_CACHE_ERROR)
3c14874a
JB
10006 free_excluded_extents(info->extent_root, block_group);
10007
817d52f8 10008 btrfs_remove_free_space_cache(block_group);
f3bca802
LB
10009 ASSERT(list_empty(&block_group->dirty_list));
10010 ASSERT(list_empty(&block_group->io_list));
10011 ASSERT(list_empty(&block_group->bg_list));
10012 ASSERT(atomic_read(&block_group->count) == 1);
11dfe35a 10013 btrfs_put_block_group(block_group);
d899e052
YZ
10014
10015 spin_lock(&info->block_group_cache_lock);
1a40e23b
ZY
10016 }
10017 spin_unlock(&info->block_group_cache_lock);
4184ea7f
CM
10018
10019 /* now that all the block groups are freed, go through and
10020 * free all the space_info structs. This is only called during
10021 * the final stages of unmount, and so we know nobody is
10022 * using them. We call synchronize_rcu() once before we start,
10023 * just to be on the safe side.
10024 */
10025 synchronize_rcu();
10026
8929ecfa
YZ
10027 release_global_block_rsv(info);
10028
67871254 10029 while (!list_empty(&info->space_info)) {
6ab0a202
JM
10030 int i;
10031
4184ea7f
CM
10032 space_info = list_entry(info->space_info.next,
10033 struct btrfs_space_info,
10034 list);
d555b6c3
JB
10035
10036 /*
10037 * Do not hide this behind enospc_debug, this is actually
10038 * important and indicates a real bug if this happens.
10039 */
10040 if (WARN_ON(space_info->bytes_pinned > 0 ||
b069e0c3 10041 space_info->bytes_reserved > 0 ||
d555b6c3 10042 space_info->bytes_may_use > 0))
ab8d0fc4 10043 dump_space_info(info, space_info, 0, 0);
4184ea7f 10044 list_del(&space_info->list);
6ab0a202
JM
10045 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
10046 struct kobject *kobj;
c1895442
JM
10047 kobj = space_info->block_group_kobjs[i];
10048 space_info->block_group_kobjs[i] = NULL;
10049 if (kobj) {
6ab0a202
JM
10050 kobject_del(kobj);
10051 kobject_put(kobj);
10052 }
10053 }
10054 kobject_del(&space_info->kobj);
10055 kobject_put(&space_info->kobj);
4184ea7f 10056 }
1a40e23b
ZY
10057 return 0;
10058}
10059
b742bb82
YZ
10060static void __link_block_group(struct btrfs_space_info *space_info,
10061 struct btrfs_block_group_cache *cache)
10062{
10063 int index = get_block_group_index(cache);
ed55b6ac 10064 bool first = false;
b742bb82
YZ
10065
10066 down_write(&space_info->groups_sem);
ed55b6ac
JM
10067 if (list_empty(&space_info->block_groups[index]))
10068 first = true;
10069 list_add_tail(&cache->list, &space_info->block_groups[index]);
10070 up_write(&space_info->groups_sem);
10071
10072 if (first) {
c1895442 10073 struct raid_kobject *rkobj;
6ab0a202
JM
10074 int ret;
10075
c1895442
JM
10076 rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
10077 if (!rkobj)
10078 goto out_err;
10079 rkobj->raid_type = index;
10080 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
10081 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
10082 "%s", get_raid_name(index));
6ab0a202 10083 if (ret) {
c1895442
JM
10084 kobject_put(&rkobj->kobj);
10085 goto out_err;
6ab0a202 10086 }
c1895442 10087 space_info->block_group_kobjs[index] = &rkobj->kobj;
6ab0a202 10088 }
c1895442
JM
10089
10090 return;
10091out_err:
ab8d0fc4
JM
10092 btrfs_warn(cache->fs_info,
10093 "failed to add kobject for block cache, ignoring");
b742bb82
YZ
10094}
10095
920e4a58
MX
10096static struct btrfs_block_group_cache *
10097btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size)
10098{
10099 struct btrfs_block_group_cache *cache;
10100
10101 cache = kzalloc(sizeof(*cache), GFP_NOFS);
10102 if (!cache)
10103 return NULL;
10104
10105 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
10106 GFP_NOFS);
10107 if (!cache->free_space_ctl) {
10108 kfree(cache);
10109 return NULL;
10110 }
10111
10112 cache->key.objectid = start;
10113 cache->key.offset = size;
10114 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
10115
10116 cache->sectorsize = root->sectorsize;
10117 cache->fs_info = root->fs_info;
10118 cache->full_stripe_len = btrfs_full_stripe_len(root,
10119 &root->fs_info->mapping_tree,
10120 start);
1e144fb8
OS
10121 set_free_space_tree_thresholds(cache);
10122
920e4a58
MX
10123 atomic_set(&cache->count, 1);
10124 spin_lock_init(&cache->lock);
e570fd27 10125 init_rwsem(&cache->data_rwsem);
920e4a58
MX
10126 INIT_LIST_HEAD(&cache->list);
10127 INIT_LIST_HEAD(&cache->cluster_list);
47ab2a6c 10128 INIT_LIST_HEAD(&cache->bg_list);
633c0aad 10129 INIT_LIST_HEAD(&cache->ro_list);
ce93ec54 10130 INIT_LIST_HEAD(&cache->dirty_list);
c9dc4c65 10131 INIT_LIST_HEAD(&cache->io_list);
920e4a58 10132 btrfs_init_free_space_ctl(cache);
04216820 10133 atomic_set(&cache->trimming, 0);
a5ed9182 10134 mutex_init(&cache->free_space_lock);
920e4a58
MX
10135
10136 return cache;
10137}
10138
9078a3e1
CM
10139int btrfs_read_block_groups(struct btrfs_root *root)
10140{
10141 struct btrfs_path *path;
10142 int ret;
9078a3e1 10143 struct btrfs_block_group_cache *cache;
be744175 10144 struct btrfs_fs_info *info = root->fs_info;
6324fbf3 10145 struct btrfs_space_info *space_info;
9078a3e1
CM
10146 struct btrfs_key key;
10147 struct btrfs_key found_key;
5f39d397 10148 struct extent_buffer *leaf;
0af3d00b
JB
10149 int need_clear = 0;
10150 u64 cache_gen;
49303381
LB
10151 u64 feature;
10152 int mixed;
10153
10154 feature = btrfs_super_incompat_flags(info->super_copy);
10155 mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS);
96b5179d 10156
be744175 10157 root = info->extent_root;
9078a3e1 10158 key.objectid = 0;
0b86a832 10159 key.offset = 0;
962a298f 10160 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
9078a3e1
CM
10161 path = btrfs_alloc_path();
10162 if (!path)
10163 return -ENOMEM;
e4058b54 10164 path->reada = READA_FORWARD;
9078a3e1 10165
6c41761f 10166 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
3cdde224 10167 if (btrfs_test_opt(root->fs_info, SPACE_CACHE) &&
6c41761f 10168 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
0af3d00b 10169 need_clear = 1;
3cdde224 10170 if (btrfs_test_opt(root->fs_info, CLEAR_CACHE))
88c2ba3b 10171 need_clear = 1;
0af3d00b 10172
d397712b 10173 while (1) {
0b86a832 10174 ret = find_first_block_group(root, path, &key);
b742bb82
YZ
10175 if (ret > 0)
10176 break;
0b86a832
CM
10177 if (ret != 0)
10178 goto error;
920e4a58 10179
5f39d397
CM
10180 leaf = path->nodes[0];
10181 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
920e4a58
MX
10182
10183 cache = btrfs_create_block_group_cache(root, found_key.objectid,
10184 found_key.offset);
9078a3e1 10185 if (!cache) {
0b86a832 10186 ret = -ENOMEM;
f0486c68 10187 goto error;
9078a3e1 10188 }
96303081 10189
cf7c1ef6
LB
10190 if (need_clear) {
10191 /*
10192 * When we mount with old space cache, we need to
10193 * set BTRFS_DC_CLEAR and set dirty flag.
10194 *
10195 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
10196 * truncate the old free space cache inode and
10197 * setup a new one.
10198 * b) Setting 'dirty flag' makes sure that we flush
10199 * the new space cache info onto disk.
10200 */
3cdde224 10201 if (btrfs_test_opt(root->fs_info, SPACE_CACHE))
ce93ec54 10202 cache->disk_cache_state = BTRFS_DC_CLEAR;
cf7c1ef6 10203 }
0af3d00b 10204
5f39d397
CM
10205 read_extent_buffer(leaf, &cache->item,
10206 btrfs_item_ptr_offset(leaf, path->slots[0]),
10207 sizeof(cache->item));
920e4a58 10208 cache->flags = btrfs_block_group_flags(&cache->item);
49303381
LB
10209 if (!mixed &&
10210 ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) &&
10211 (cache->flags & BTRFS_BLOCK_GROUP_DATA))) {
10212 btrfs_err(info,
10213"bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups",
10214 cache->key.objectid);
10215 ret = -EINVAL;
10216 goto error;
10217 }
0b86a832 10218
9078a3e1 10219 key.objectid = found_key.objectid + found_key.offset;
b3b4aa74 10220 btrfs_release_path(path);
34d52cb6 10221
3c14874a
JB
10222 /*
10223 * We need to exclude the super stripes now so that the space
10224 * info has super bytes accounted for, otherwise we'll think
10225 * we have more space than we actually do.
10226 */
835d974f
JB
10227 ret = exclude_super_stripes(root, cache);
10228 if (ret) {
10229 /*
10230 * We may have excluded something, so call this just in
10231 * case.
10232 */
10233 free_excluded_extents(root, cache);
920e4a58 10234 btrfs_put_block_group(cache);
835d974f
JB
10235 goto error;
10236 }
3c14874a 10237
817d52f8
JB
10238 /*
10239 * check for two cases, either we are full, and therefore
10240 * don't need to bother with the caching work since we won't
10241 * find any space, or we are empty, and we can just add all
10242 * the space in and be done with it. This saves us _alot_ of
10243 * time, particularly in the full case.
10244 */
10245 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
11833d66 10246 cache->last_byte_to_unpin = (u64)-1;
817d52f8 10247 cache->cached = BTRFS_CACHE_FINISHED;
1b2da372 10248 free_excluded_extents(root, cache);
817d52f8 10249 } else if (btrfs_block_group_used(&cache->item) == 0) {
11833d66 10250 cache->last_byte_to_unpin = (u64)-1;
817d52f8
JB
10251 cache->cached = BTRFS_CACHE_FINISHED;
10252 add_new_free_space(cache, root->fs_info,
10253 found_key.objectid,
10254 found_key.objectid +
10255 found_key.offset);
11833d66 10256 free_excluded_extents(root, cache);
817d52f8 10257 }
96b5179d 10258
8c579fe7
JB
10259 ret = btrfs_add_block_group_cache(root->fs_info, cache);
10260 if (ret) {
10261 btrfs_remove_free_space_cache(cache);
10262 btrfs_put_block_group(cache);
10263 goto error;
10264 }
10265
c83f8eff 10266 trace_btrfs_add_block_group(root->fs_info, cache, 0);
6324fbf3
CM
10267 ret = update_space_info(info, cache->flags, found_key.offset,
10268 btrfs_block_group_used(&cache->item),
e40edf2d 10269 cache->bytes_super, &space_info);
8c579fe7
JB
10270 if (ret) {
10271 btrfs_remove_free_space_cache(cache);
10272 spin_lock(&info->block_group_cache_lock);
10273 rb_erase(&cache->cache_node,
10274 &info->block_group_cache_tree);
01eacb27 10275 RB_CLEAR_NODE(&cache->cache_node);
8c579fe7
JB
10276 spin_unlock(&info->block_group_cache_lock);
10277 btrfs_put_block_group(cache);
10278 goto error;
10279 }
10280
6324fbf3 10281 cache->space_info = space_info;
1b2da372 10282
b742bb82 10283 __link_block_group(space_info, cache);
0f9dd46c 10284
75ccf47d 10285 set_avail_alloc_bits(root->fs_info, cache->flags);
47ab2a6c 10286 if (btrfs_chunk_readonly(root, cache->key.objectid)) {
868f401a 10287 inc_block_group_ro(cache, 1);
47ab2a6c
JB
10288 } else if (btrfs_block_group_used(&cache->item) == 0) {
10289 spin_lock(&info->unused_bgs_lock);
10290 /* Should always be true but just in case. */
10291 if (list_empty(&cache->bg_list)) {
10292 btrfs_get_block_group(cache);
10293 list_add_tail(&cache->bg_list,
10294 &info->unused_bgs);
10295 }
10296 spin_unlock(&info->unused_bgs_lock);
10297 }
9078a3e1 10298 }
b742bb82
YZ
10299
10300 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
10301 if (!(get_alloc_profile(root, space_info->flags) &
10302 (BTRFS_BLOCK_GROUP_RAID10 |
10303 BTRFS_BLOCK_GROUP_RAID1 |
53b381b3
DW
10304 BTRFS_BLOCK_GROUP_RAID5 |
10305 BTRFS_BLOCK_GROUP_RAID6 |
b742bb82
YZ
10306 BTRFS_BLOCK_GROUP_DUP)))
10307 continue;
10308 /*
10309 * avoid allocating from un-mirrored block group if there are
10310 * mirrored block groups.
10311 */
1095cc0d 10312 list_for_each_entry(cache,
10313 &space_info->block_groups[BTRFS_RAID_RAID0],
10314 list)
868f401a 10315 inc_block_group_ro(cache, 1);
1095cc0d 10316 list_for_each_entry(cache,
10317 &space_info->block_groups[BTRFS_RAID_SINGLE],
10318 list)
868f401a 10319 inc_block_group_ro(cache, 1);
9078a3e1 10320 }
f0486c68
YZ
10321
10322 init_global_block_rsv(info);
0b86a832
CM
10323 ret = 0;
10324error:
9078a3e1 10325 btrfs_free_path(path);
0b86a832 10326 return ret;
9078a3e1 10327}
6324fbf3 10328
ea658bad
JB
10329void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
10330 struct btrfs_root *root)
10331{
10332 struct btrfs_block_group_cache *block_group, *tmp;
10333 struct btrfs_root *extent_root = root->fs_info->extent_root;
10334 struct btrfs_block_group_item item;
10335 struct btrfs_key key;
10336 int ret = 0;
d9a0540a 10337 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
ea658bad 10338
d9a0540a 10339 trans->can_flush_pending_bgs = false;
47ab2a6c 10340 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
ea658bad 10341 if (ret)
c92f6be3 10342 goto next;
ea658bad
JB
10343
10344 spin_lock(&block_group->lock);
10345 memcpy(&item, &block_group->item, sizeof(item));
10346 memcpy(&key, &block_group->key, sizeof(key));
10347 spin_unlock(&block_group->lock);
10348
10349 ret = btrfs_insert_item(trans, extent_root, &key, &item,
10350 sizeof(item));
10351 if (ret)
66642832 10352 btrfs_abort_transaction(trans, ret);
6df9a95e
JB
10353 ret = btrfs_finish_chunk_alloc(trans, extent_root,
10354 key.objectid, key.offset);
10355 if (ret)
66642832 10356 btrfs_abort_transaction(trans, ret);
1e144fb8
OS
10357 add_block_group_free_space(trans, root->fs_info, block_group);
10358 /* already aborted the transaction if it failed. */
c92f6be3
FM
10359next:
10360 list_del_init(&block_group->bg_list);
ea658bad 10361 }
d9a0540a 10362 trans->can_flush_pending_bgs = can_flush_pending_bgs;
ea658bad
JB
10363}
10364
6324fbf3
CM
10365int btrfs_make_block_group(struct btrfs_trans_handle *trans,
10366 struct btrfs_root *root, u64 bytes_used,
e17cade2 10367 u64 type, u64 chunk_objectid, u64 chunk_offset,
6324fbf3
CM
10368 u64 size)
10369{
10370 int ret;
6324fbf3
CM
10371 struct btrfs_root *extent_root;
10372 struct btrfs_block_group_cache *cache;
6324fbf3 10373 extent_root = root->fs_info->extent_root;
6324fbf3 10374
995946dd 10375 btrfs_set_log_full_commit(root->fs_info, trans);
e02119d5 10376
920e4a58 10377 cache = btrfs_create_block_group_cache(root, chunk_offset, size);
0f9dd46c
JB
10378 if (!cache)
10379 return -ENOMEM;
34d52cb6 10380
6324fbf3 10381 btrfs_set_block_group_used(&cache->item, bytes_used);
6324fbf3 10382 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
6324fbf3
CM
10383 btrfs_set_block_group_flags(&cache->item, type);
10384
920e4a58 10385 cache->flags = type;
11833d66 10386 cache->last_byte_to_unpin = (u64)-1;
817d52f8 10387 cache->cached = BTRFS_CACHE_FINISHED;
1e144fb8 10388 cache->needs_free_space = 1;
835d974f
JB
10389 ret = exclude_super_stripes(root, cache);
10390 if (ret) {
10391 /*
10392 * We may have excluded something, so call this just in
10393 * case.
10394 */
10395 free_excluded_extents(root, cache);
920e4a58 10396 btrfs_put_block_group(cache);
835d974f
JB
10397 return ret;
10398 }
96303081 10399
817d52f8
JB
10400 add_new_free_space(cache, root->fs_info, chunk_offset,
10401 chunk_offset + size);
10402
11833d66
YZ
10403 free_excluded_extents(root, cache);
10404
d0bd4560
JB
10405#ifdef CONFIG_BTRFS_DEBUG
10406 if (btrfs_should_fragment_free_space(root, cache)) {
10407 u64 new_bytes_used = size - bytes_used;
10408
10409 bytes_used += new_bytes_used >> 1;
10410 fragment_free_space(root, cache);
10411 }
10412#endif
2e6e5183
FM
10413 /*
10414 * Call to ensure the corresponding space_info object is created and
10415 * assigned to our block group, but don't update its counters just yet.
10416 * We want our bg to be added to the rbtree with its ->space_info set.
10417 */
e40edf2d 10418 ret = update_space_info(root->fs_info, cache->flags, 0, 0, 0,
2e6e5183
FM
10419 &cache->space_info);
10420 if (ret) {
10421 btrfs_remove_free_space_cache(cache);
10422 btrfs_put_block_group(cache);
10423 return ret;
10424 }
10425
8c579fe7
JB
10426 ret = btrfs_add_block_group_cache(root->fs_info, cache);
10427 if (ret) {
10428 btrfs_remove_free_space_cache(cache);
10429 btrfs_put_block_group(cache);
10430 return ret;
10431 }
10432
2e6e5183
FM
10433 /*
10434 * Now that our block group has its ->space_info set and is inserted in
10435 * the rbtree, update the space info's counters.
10436 */
c83f8eff 10437 trace_btrfs_add_block_group(root->fs_info, cache, 1);
6324fbf3 10438 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
e40edf2d 10439 cache->bytes_super, &cache->space_info);
8c579fe7
JB
10440 if (ret) {
10441 btrfs_remove_free_space_cache(cache);
10442 spin_lock(&root->fs_info->block_group_cache_lock);
10443 rb_erase(&cache->cache_node,
10444 &root->fs_info->block_group_cache_tree);
01eacb27 10445 RB_CLEAR_NODE(&cache->cache_node);
8c579fe7
JB
10446 spin_unlock(&root->fs_info->block_group_cache_lock);
10447 btrfs_put_block_group(cache);
10448 return ret;
10449 }
c7c144db 10450 update_global_block_rsv(root->fs_info);
1b2da372 10451
b742bb82 10452 __link_block_group(cache->space_info, cache);
6324fbf3 10453
47ab2a6c 10454 list_add_tail(&cache->bg_list, &trans->new_bgs);
6324fbf3 10455
d18a2c44 10456 set_avail_alloc_bits(extent_root->fs_info, type);
6324fbf3
CM
10457 return 0;
10458}
1a40e23b 10459
10ea00f5
ID
10460static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
10461{
899c81ea
ID
10462 u64 extra_flags = chunk_to_extended(flags) &
10463 BTRFS_EXTENDED_PROFILE_MASK;
10ea00f5 10464
de98ced9 10465 write_seqlock(&fs_info->profiles_lock);
10ea00f5
ID
10466 if (flags & BTRFS_BLOCK_GROUP_DATA)
10467 fs_info->avail_data_alloc_bits &= ~extra_flags;
10468 if (flags & BTRFS_BLOCK_GROUP_METADATA)
10469 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
10470 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
10471 fs_info->avail_system_alloc_bits &= ~extra_flags;
de98ced9 10472 write_sequnlock(&fs_info->profiles_lock);
10ea00f5
ID
10473}
10474
1a40e23b 10475int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
04216820
FM
10476 struct btrfs_root *root, u64 group_start,
10477 struct extent_map *em)
1a40e23b
ZY
10478{
10479 struct btrfs_path *path;
10480 struct btrfs_block_group_cache *block_group;
44fb5511 10481 struct btrfs_free_cluster *cluster;
0af3d00b 10482 struct btrfs_root *tree_root = root->fs_info->tree_root;
1a40e23b 10483 struct btrfs_key key;
0af3d00b 10484 struct inode *inode;
c1895442 10485 struct kobject *kobj = NULL;
1a40e23b 10486 int ret;
10ea00f5 10487 int index;
89a55897 10488 int factor;
4f69cb98 10489 struct btrfs_caching_control *caching_ctl = NULL;
04216820 10490 bool remove_em;
1a40e23b 10491
1a40e23b
ZY
10492 root = root->fs_info->extent_root;
10493
10494 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
10495 BUG_ON(!block_group);
c146afad 10496 BUG_ON(!block_group->ro);
1a40e23b 10497
9f7c43c9 10498 /*
10499 * Free the reserved super bytes from this block group before
10500 * remove it.
10501 */
10502 free_excluded_extents(root, block_group);
10503
1a40e23b 10504 memcpy(&key, &block_group->key, sizeof(key));
10ea00f5 10505 index = get_block_group_index(block_group);
89a55897
JB
10506 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
10507 BTRFS_BLOCK_GROUP_RAID1 |
10508 BTRFS_BLOCK_GROUP_RAID10))
10509 factor = 2;
10510 else
10511 factor = 1;
1a40e23b 10512
44fb5511
CM
10513 /* make sure this block group isn't part of an allocation cluster */
10514 cluster = &root->fs_info->data_alloc_cluster;
10515 spin_lock(&cluster->refill_lock);
10516 btrfs_return_cluster_to_free_space(block_group, cluster);
10517 spin_unlock(&cluster->refill_lock);
10518
10519 /*
10520 * make sure this block group isn't part of a metadata
10521 * allocation cluster
10522 */
10523 cluster = &root->fs_info->meta_alloc_cluster;
10524 spin_lock(&cluster->refill_lock);
10525 btrfs_return_cluster_to_free_space(block_group, cluster);
10526 spin_unlock(&cluster->refill_lock);
10527
1a40e23b 10528 path = btrfs_alloc_path();
d8926bb3
MF
10529 if (!path) {
10530 ret = -ENOMEM;
10531 goto out;
10532 }
1a40e23b 10533
1bbc621e
CM
10534 /*
10535 * get the inode first so any iput calls done for the io_list
10536 * aren't the final iput (no unlinks allowed now)
10537 */
10b2f34d 10538 inode = lookup_free_space_inode(tree_root, block_group, path);
1bbc621e
CM
10539
10540 mutex_lock(&trans->transaction->cache_write_mutex);
10541 /*
10542 * make sure our free spache cache IO is done before remove the
10543 * free space inode
10544 */
10545 spin_lock(&trans->transaction->dirty_bgs_lock);
10546 if (!list_empty(&block_group->io_list)) {
10547 list_del_init(&block_group->io_list);
10548
10549 WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
10550
10551 spin_unlock(&trans->transaction->dirty_bgs_lock);
10552 btrfs_wait_cache_io(root, trans, block_group,
10553 &block_group->io_ctl, path,
10554 block_group->key.objectid);
10555 btrfs_put_block_group(block_group);
10556 spin_lock(&trans->transaction->dirty_bgs_lock);
10557 }
10558
10559 if (!list_empty(&block_group->dirty_list)) {
10560 list_del_init(&block_group->dirty_list);
10561 btrfs_put_block_group(block_group);
10562 }
10563 spin_unlock(&trans->transaction->dirty_bgs_lock);
10564 mutex_unlock(&trans->transaction->cache_write_mutex);
10565
0af3d00b 10566 if (!IS_ERR(inode)) {
b532402e 10567 ret = btrfs_orphan_add(trans, inode);
79787eaa
JM
10568 if (ret) {
10569 btrfs_add_delayed_iput(inode);
10570 goto out;
10571 }
0af3d00b
JB
10572 clear_nlink(inode);
10573 /* One for the block groups ref */
10574 spin_lock(&block_group->lock);
10575 if (block_group->iref) {
10576 block_group->iref = 0;
10577 block_group->inode = NULL;
10578 spin_unlock(&block_group->lock);
10579 iput(inode);
10580 } else {
10581 spin_unlock(&block_group->lock);
10582 }
10583 /* One for our lookup ref */
455757c3 10584 btrfs_add_delayed_iput(inode);
0af3d00b
JB
10585 }
10586
10587 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
10588 key.offset = block_group->key.objectid;
10589 key.type = 0;
10590
10591 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
10592 if (ret < 0)
10593 goto out;
10594 if (ret > 0)
b3b4aa74 10595 btrfs_release_path(path);
0af3d00b
JB
10596 if (ret == 0) {
10597 ret = btrfs_del_item(trans, tree_root, path);
10598 if (ret)
10599 goto out;
b3b4aa74 10600 btrfs_release_path(path);
0af3d00b
JB
10601 }
10602
3dfdb934 10603 spin_lock(&root->fs_info->block_group_cache_lock);
1a40e23b
ZY
10604 rb_erase(&block_group->cache_node,
10605 &root->fs_info->block_group_cache_tree);
292cbd51 10606 RB_CLEAR_NODE(&block_group->cache_node);
a1897fdd
LB
10607
10608 if (root->fs_info->first_logical_byte == block_group->key.objectid)
10609 root->fs_info->first_logical_byte = (u64)-1;
3dfdb934 10610 spin_unlock(&root->fs_info->block_group_cache_lock);
817d52f8 10611
80eb234a 10612 down_write(&block_group->space_info->groups_sem);
44fb5511
CM
10613 /*
10614 * we must use list_del_init so people can check to see if they
10615 * are still on the list after taking the semaphore
10616 */
10617 list_del_init(&block_group->list);
6ab0a202 10618 if (list_empty(&block_group->space_info->block_groups[index])) {
c1895442
JM
10619 kobj = block_group->space_info->block_group_kobjs[index];
10620 block_group->space_info->block_group_kobjs[index] = NULL;
10ea00f5 10621 clear_avail_alloc_bits(root->fs_info, block_group->flags);
6ab0a202 10622 }
80eb234a 10623 up_write(&block_group->space_info->groups_sem);
c1895442
JM
10624 if (kobj) {
10625 kobject_del(kobj);
10626 kobject_put(kobj);
10627 }
1a40e23b 10628
4f69cb98
FM
10629 if (block_group->has_caching_ctl)
10630 caching_ctl = get_caching_control(block_group);
817d52f8 10631 if (block_group->cached == BTRFS_CACHE_STARTED)
11833d66 10632 wait_block_group_cache_done(block_group);
4f69cb98
FM
10633 if (block_group->has_caching_ctl) {
10634 down_write(&root->fs_info->commit_root_sem);
10635 if (!caching_ctl) {
10636 struct btrfs_caching_control *ctl;
10637
10638 list_for_each_entry(ctl,
10639 &root->fs_info->caching_block_groups, list)
10640 if (ctl->block_group == block_group) {
10641 caching_ctl = ctl;
10642 atomic_inc(&caching_ctl->count);
10643 break;
10644 }
10645 }
10646 if (caching_ctl)
10647 list_del_init(&caching_ctl->list);
10648 up_write(&root->fs_info->commit_root_sem);
10649 if (caching_ctl) {
10650 /* Once for the caching bgs list and once for us. */
10651 put_caching_control(caching_ctl);
10652 put_caching_control(caching_ctl);
10653 }
10654 }
817d52f8 10655
ce93ec54
JB
10656 spin_lock(&trans->transaction->dirty_bgs_lock);
10657 if (!list_empty(&block_group->dirty_list)) {
1bbc621e
CM
10658 WARN_ON(1);
10659 }
10660 if (!list_empty(&block_group->io_list)) {
10661 WARN_ON(1);
ce93ec54
JB
10662 }
10663 spin_unlock(&trans->transaction->dirty_bgs_lock);
817d52f8
JB
10664 btrfs_remove_free_space_cache(block_group);
10665
c146afad 10666 spin_lock(&block_group->space_info->lock);
75c68e9f 10667 list_del_init(&block_group->ro_list);
18d018ad 10668
3cdde224 10669 if (btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) {
18d018ad
ZL
10670 WARN_ON(block_group->space_info->total_bytes
10671 < block_group->key.offset);
10672 WARN_ON(block_group->space_info->bytes_readonly
10673 < block_group->key.offset);
10674 WARN_ON(block_group->space_info->disk_total
10675 < block_group->key.offset * factor);
10676 }
c146afad
YZ
10677 block_group->space_info->total_bytes -= block_group->key.offset;
10678 block_group->space_info->bytes_readonly -= block_group->key.offset;
89a55897 10679 block_group->space_info->disk_total -= block_group->key.offset * factor;
18d018ad 10680
c146afad 10681 spin_unlock(&block_group->space_info->lock);
283bb197 10682
0af3d00b
JB
10683 memcpy(&key, &block_group->key, sizeof(key));
10684
04216820 10685 lock_chunks(root);
495e64f4
FM
10686 if (!list_empty(&em->list)) {
10687 /* We're in the transaction->pending_chunks list. */
10688 free_extent_map(em);
10689 }
04216820
FM
10690 spin_lock(&block_group->lock);
10691 block_group->removed = 1;
10692 /*
10693 * At this point trimming can't start on this block group, because we
10694 * removed the block group from the tree fs_info->block_group_cache_tree
10695 * so no one can't find it anymore and even if someone already got this
10696 * block group before we removed it from the rbtree, they have already
10697 * incremented block_group->trimming - if they didn't, they won't find
10698 * any free space entries because we already removed them all when we
10699 * called btrfs_remove_free_space_cache().
10700 *
10701 * And we must not remove the extent map from the fs_info->mapping_tree
10702 * to prevent the same logical address range and physical device space
10703 * ranges from being reused for a new block group. This is because our
10704 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
10705 * completely transactionless, so while it is trimming a range the
10706 * currently running transaction might finish and a new one start,
10707 * allowing for new block groups to be created that can reuse the same
10708 * physical device locations unless we take this special care.
e33e17ee
JM
10709 *
10710 * There may also be an implicit trim operation if the file system
10711 * is mounted with -odiscard. The same protections must remain
10712 * in place until the extents have been discarded completely when
10713 * the transaction commit has completed.
04216820
FM
10714 */
10715 remove_em = (atomic_read(&block_group->trimming) == 0);
10716 /*
10717 * Make sure a trimmer task always sees the em in the pinned_chunks list
10718 * if it sees block_group->removed == 1 (needs to lock block_group->lock
10719 * before checking block_group->removed).
10720 */
10721 if (!remove_em) {
10722 /*
10723 * Our em might be in trans->transaction->pending_chunks which
10724 * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks),
10725 * and so is the fs_info->pinned_chunks list.
10726 *
10727 * So at this point we must be holding the chunk_mutex to avoid
10728 * any races with chunk allocation (more specifically at
10729 * volumes.c:contains_pending_extent()), to ensure it always
10730 * sees the em, either in the pending_chunks list or in the
10731 * pinned_chunks list.
10732 */
10733 list_move_tail(&em->list, &root->fs_info->pinned_chunks);
10734 }
10735 spin_unlock(&block_group->lock);
04216820
FM
10736
10737 if (remove_em) {
10738 struct extent_map_tree *em_tree;
10739
10740 em_tree = &root->fs_info->mapping_tree.map_tree;
10741 write_lock(&em_tree->lock);
8dbcd10f
FM
10742 /*
10743 * The em might be in the pending_chunks list, so make sure the
10744 * chunk mutex is locked, since remove_extent_mapping() will
10745 * delete us from that list.
10746 */
04216820
FM
10747 remove_extent_mapping(em_tree, em);
10748 write_unlock(&em_tree->lock);
10749 /* once for the tree */
10750 free_extent_map(em);
10751 }
10752
8dbcd10f
FM
10753 unlock_chunks(root);
10754
1e144fb8
OS
10755 ret = remove_block_group_free_space(trans, root->fs_info, block_group);
10756 if (ret)
10757 goto out;
10758
fa9c0d79
CM
10759 btrfs_put_block_group(block_group);
10760 btrfs_put_block_group(block_group);
1a40e23b
ZY
10761
10762 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
10763 if (ret > 0)
10764 ret = -EIO;
10765 if (ret < 0)
10766 goto out;
10767
10768 ret = btrfs_del_item(trans, root, path);
10769out:
10770 btrfs_free_path(path);
10771 return ret;
10772}
acce952b 10773
8eab77ff 10774struct btrfs_trans_handle *
7fd01182
FM
10775btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info,
10776 const u64 chunk_offset)
8eab77ff 10777{
7fd01182
FM
10778 struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree;
10779 struct extent_map *em;
10780 struct map_lookup *map;
10781 unsigned int num_items;
10782
10783 read_lock(&em_tree->lock);
10784 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
10785 read_unlock(&em_tree->lock);
10786 ASSERT(em && em->start == chunk_offset);
10787
8eab77ff 10788 /*
7fd01182
FM
10789 * We need to reserve 3 + N units from the metadata space info in order
10790 * to remove a block group (done at btrfs_remove_chunk() and at
10791 * btrfs_remove_block_group()), which are used for:
10792 *
8eab77ff
FM
10793 * 1 unit for adding the free space inode's orphan (located in the tree
10794 * of tree roots).
7fd01182
FM
10795 * 1 unit for deleting the block group item (located in the extent
10796 * tree).
10797 * 1 unit for deleting the free space item (located in tree of tree
10798 * roots).
10799 * N units for deleting N device extent items corresponding to each
10800 * stripe (located in the device tree).
10801 *
10802 * In order to remove a block group we also need to reserve units in the
10803 * system space info in order to update the chunk tree (update one or
10804 * more device items and remove one chunk item), but this is done at
10805 * btrfs_remove_chunk() through a call to check_system_chunk().
8eab77ff 10806 */
95617d69 10807 map = em->map_lookup;
7fd01182
FM
10808 num_items = 3 + map->num_stripes;
10809 free_extent_map(em);
10810
8eab77ff 10811 return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root,
7fd01182 10812 num_items, 1);
8eab77ff
FM
10813}
10814
47ab2a6c
JB
10815/*
10816 * Process the unused_bgs list and remove any that don't have any allocated
10817 * space inside of them.
10818 */
10819void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
10820{
10821 struct btrfs_block_group_cache *block_group;
10822 struct btrfs_space_info *space_info;
10823 struct btrfs_root *root = fs_info->extent_root;
10824 struct btrfs_trans_handle *trans;
10825 int ret = 0;
10826
afcdd129 10827 if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags))
47ab2a6c
JB
10828 return;
10829
10830 spin_lock(&fs_info->unused_bgs_lock);
10831 while (!list_empty(&fs_info->unused_bgs)) {
10832 u64 start, end;
e33e17ee 10833 int trimming;
47ab2a6c
JB
10834
10835 block_group = list_first_entry(&fs_info->unused_bgs,
10836 struct btrfs_block_group_cache,
10837 bg_list);
47ab2a6c 10838 list_del_init(&block_group->bg_list);
aefbe9a6
ZL
10839
10840 space_info = block_group->space_info;
10841
47ab2a6c
JB
10842 if (ret || btrfs_mixed_space_info(space_info)) {
10843 btrfs_put_block_group(block_group);
10844 continue;
10845 }
10846 spin_unlock(&fs_info->unused_bgs_lock);
10847
d5f2e33b 10848 mutex_lock(&fs_info->delete_unused_bgs_mutex);
67c5e7d4 10849
47ab2a6c
JB
10850 /* Don't want to race with allocators so take the groups_sem */
10851 down_write(&space_info->groups_sem);
10852 spin_lock(&block_group->lock);
10853 if (block_group->reserved ||
10854 btrfs_block_group_used(&block_group->item) ||
19c4d2f9 10855 block_group->ro ||
aefbe9a6 10856 list_is_singular(&block_group->list)) {
47ab2a6c
JB
10857 /*
10858 * We want to bail if we made new allocations or have
10859 * outstanding allocations in this block group. We do
10860 * the ro check in case balance is currently acting on
10861 * this block group.
10862 */
10863 spin_unlock(&block_group->lock);
10864 up_write(&space_info->groups_sem);
10865 goto next;
10866 }
10867 spin_unlock(&block_group->lock);
10868
10869 /* We don't want to force the issue, only flip if it's ok. */
868f401a 10870 ret = inc_block_group_ro(block_group, 0);
47ab2a6c
JB
10871 up_write(&space_info->groups_sem);
10872 if (ret < 0) {
10873 ret = 0;
10874 goto next;
10875 }
10876
10877 /*
10878 * Want to do this before we do anything else so we can recover
10879 * properly if we fail to join the transaction.
10880 */
7fd01182
FM
10881 trans = btrfs_start_trans_remove_block_group(fs_info,
10882 block_group->key.objectid);
47ab2a6c 10883 if (IS_ERR(trans)) {
868f401a 10884 btrfs_dec_block_group_ro(root, block_group);
47ab2a6c
JB
10885 ret = PTR_ERR(trans);
10886 goto next;
10887 }
10888
10889 /*
10890 * We could have pending pinned extents for this block group,
10891 * just delete them, we don't care about them anymore.
10892 */
10893 start = block_group->key.objectid;
10894 end = start + block_group->key.offset - 1;
d4b450cd
FM
10895 /*
10896 * Hold the unused_bg_unpin_mutex lock to avoid racing with
10897 * btrfs_finish_extent_commit(). If we are at transaction N,
10898 * another task might be running finish_extent_commit() for the
10899 * previous transaction N - 1, and have seen a range belonging
10900 * to the block group in freed_extents[] before we were able to
10901 * clear the whole block group range from freed_extents[]. This
10902 * means that task can lookup for the block group after we
10903 * unpinned it from freed_extents[] and removed it, leading to
10904 * a BUG_ON() at btrfs_unpin_extent_range().
10905 */
10906 mutex_lock(&fs_info->unused_bg_unpin_mutex);
758eb51e 10907 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
91166212 10908 EXTENT_DIRTY);
758eb51e 10909 if (ret) {
d4b450cd 10910 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
868f401a 10911 btrfs_dec_block_group_ro(root, block_group);
758eb51e
FM
10912 goto end_trans;
10913 }
10914 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
91166212 10915 EXTENT_DIRTY);
758eb51e 10916 if (ret) {
d4b450cd 10917 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
868f401a 10918 btrfs_dec_block_group_ro(root, block_group);
758eb51e
FM
10919 goto end_trans;
10920 }
d4b450cd 10921 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
47ab2a6c
JB
10922
10923 /* Reset pinned so btrfs_put_block_group doesn't complain */
c30666d4
ZL
10924 spin_lock(&space_info->lock);
10925 spin_lock(&block_group->lock);
10926
10927 space_info->bytes_pinned -= block_group->pinned;
10928 space_info->bytes_readonly += block_group->pinned;
10929 percpu_counter_add(&space_info->total_bytes_pinned,
10930 -block_group->pinned);
47ab2a6c
JB
10931 block_group->pinned = 0;
10932
c30666d4
ZL
10933 spin_unlock(&block_group->lock);
10934 spin_unlock(&space_info->lock);
10935
e33e17ee 10936 /* DISCARD can flip during remount */
3cdde224 10937 trimming = btrfs_test_opt(root->fs_info, DISCARD);
e33e17ee
JM
10938
10939 /* Implicit trim during transaction commit. */
10940 if (trimming)
10941 btrfs_get_block_group_trimming(block_group);
10942
47ab2a6c
JB
10943 /*
10944 * Btrfs_remove_chunk will abort the transaction if things go
10945 * horribly wrong.
10946 */
10947 ret = btrfs_remove_chunk(trans, root,
10948 block_group->key.objectid);
e33e17ee
JM
10949
10950 if (ret) {
10951 if (trimming)
10952 btrfs_put_block_group_trimming(block_group);
10953 goto end_trans;
10954 }
10955
10956 /*
10957 * If we're not mounted with -odiscard, we can just forget
10958 * about this block group. Otherwise we'll need to wait
10959 * until transaction commit to do the actual discard.
10960 */
10961 if (trimming) {
348a0013
FM
10962 spin_lock(&fs_info->unused_bgs_lock);
10963 /*
10964 * A concurrent scrub might have added us to the list
10965 * fs_info->unused_bgs, so use a list_move operation
10966 * to add the block group to the deleted_bgs list.
10967 */
e33e17ee
JM
10968 list_move(&block_group->bg_list,
10969 &trans->transaction->deleted_bgs);
348a0013 10970 spin_unlock(&fs_info->unused_bgs_lock);
e33e17ee
JM
10971 btrfs_get_block_group(block_group);
10972 }
758eb51e 10973end_trans:
47ab2a6c
JB
10974 btrfs_end_transaction(trans, root);
10975next:
d5f2e33b 10976 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
47ab2a6c
JB
10977 btrfs_put_block_group(block_group);
10978 spin_lock(&fs_info->unused_bgs_lock);
10979 }
10980 spin_unlock(&fs_info->unused_bgs_lock);
10981}
10982
c59021f8 10983int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
10984{
10985 struct btrfs_space_info *space_info;
1aba86d6 10986 struct btrfs_super_block *disk_super;
10987 u64 features;
10988 u64 flags;
10989 int mixed = 0;
c59021f8 10990 int ret;
10991
6c41761f 10992 disk_super = fs_info->super_copy;
1aba86d6 10993 if (!btrfs_super_root(disk_super))
0dc924c5 10994 return -EINVAL;
c59021f8 10995
1aba86d6 10996 features = btrfs_super_incompat_flags(disk_super);
10997 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
10998 mixed = 1;
c59021f8 10999
1aba86d6 11000 flags = BTRFS_BLOCK_GROUP_SYSTEM;
e40edf2d 11001 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
c59021f8 11002 if (ret)
1aba86d6 11003 goto out;
c59021f8 11004
1aba86d6 11005 if (mixed) {
11006 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
e40edf2d 11007 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
1aba86d6 11008 } else {
11009 flags = BTRFS_BLOCK_GROUP_METADATA;
e40edf2d 11010 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
1aba86d6 11011 if (ret)
11012 goto out;
11013
11014 flags = BTRFS_BLOCK_GROUP_DATA;
e40edf2d 11015 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
1aba86d6 11016 }
11017out:
c59021f8 11018 return ret;
11019}
11020
acce952b 11021int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
11022{
678886bd 11023 return unpin_extent_range(root, start, end, false);
acce952b 11024}
11025
499f377f
JM
11026/*
11027 * It used to be that old block groups would be left around forever.
11028 * Iterating over them would be enough to trim unused space. Since we
11029 * now automatically remove them, we also need to iterate over unallocated
11030 * space.
11031 *
11032 * We don't want a transaction for this since the discard may take a
11033 * substantial amount of time. We don't require that a transaction be
11034 * running, but we do need to take a running transaction into account
11035 * to ensure that we're not discarding chunks that were released in
11036 * the current transaction.
11037 *
11038 * Holding the chunks lock will prevent other threads from allocating
11039 * or releasing chunks, but it won't prevent a running transaction
11040 * from committing and releasing the memory that the pending chunks
11041 * list head uses. For that, we need to take a reference to the
11042 * transaction.
11043 */
11044static int btrfs_trim_free_extents(struct btrfs_device *device,
11045 u64 minlen, u64 *trimmed)
11046{
11047 u64 start = 0, len = 0;
11048 int ret;
11049
11050 *trimmed = 0;
11051
11052 /* Not writeable = nothing to do. */
11053 if (!device->writeable)
11054 return 0;
11055
11056 /* No free space = nothing to do. */
11057 if (device->total_bytes <= device->bytes_used)
11058 return 0;
11059
11060 ret = 0;
11061
11062 while (1) {
11063 struct btrfs_fs_info *fs_info = device->dev_root->fs_info;
11064 struct btrfs_transaction *trans;
11065 u64 bytes;
11066
11067 ret = mutex_lock_interruptible(&fs_info->chunk_mutex);
11068 if (ret)
11069 return ret;
11070
11071 down_read(&fs_info->commit_root_sem);
11072
11073 spin_lock(&fs_info->trans_lock);
11074 trans = fs_info->running_transaction;
11075 if (trans)
11076 atomic_inc(&trans->use_count);
11077 spin_unlock(&fs_info->trans_lock);
11078
11079 ret = find_free_dev_extent_start(trans, device, minlen, start,
11080 &start, &len);
11081 if (trans)
11082 btrfs_put_transaction(trans);
11083
11084 if (ret) {
11085 up_read(&fs_info->commit_root_sem);
11086 mutex_unlock(&fs_info->chunk_mutex);
11087 if (ret == -ENOSPC)
11088 ret = 0;
11089 break;
11090 }
11091
11092 ret = btrfs_issue_discard(device->bdev, start, len, &bytes);
11093 up_read(&fs_info->commit_root_sem);
11094 mutex_unlock(&fs_info->chunk_mutex);
11095
11096 if (ret)
11097 break;
11098
11099 start += len;
11100 *trimmed += bytes;
11101
11102 if (fatal_signal_pending(current)) {
11103 ret = -ERESTARTSYS;
11104 break;
11105 }
11106
11107 cond_resched();
11108 }
11109
11110 return ret;
11111}
11112
f7039b1d
LD
11113int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
11114{
11115 struct btrfs_fs_info *fs_info = root->fs_info;
11116 struct btrfs_block_group_cache *cache = NULL;
499f377f
JM
11117 struct btrfs_device *device;
11118 struct list_head *devices;
f7039b1d
LD
11119 u64 group_trimmed;
11120 u64 start;
11121 u64 end;
11122 u64 trimmed = 0;
2cac13e4 11123 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
f7039b1d
LD
11124 int ret = 0;
11125
2cac13e4
LB
11126 /*
11127 * try to trim all FS space, our block group may start from non-zero.
11128 */
11129 if (range->len == total_bytes)
11130 cache = btrfs_lookup_first_block_group(fs_info, range->start);
11131 else
11132 cache = btrfs_lookup_block_group(fs_info, range->start);
f7039b1d
LD
11133
11134 while (cache) {
11135 if (cache->key.objectid >= (range->start + range->len)) {
11136 btrfs_put_block_group(cache);
11137 break;
11138 }
11139
11140 start = max(range->start, cache->key.objectid);
11141 end = min(range->start + range->len,
11142 cache->key.objectid + cache->key.offset);
11143
11144 if (end - start >= range->minlen) {
11145 if (!block_group_cache_done(cache)) {
f6373bf3 11146 ret = cache_block_group(cache, 0);
1be41b78
JB
11147 if (ret) {
11148 btrfs_put_block_group(cache);
11149 break;
11150 }
11151 ret = wait_block_group_cache_done(cache);
11152 if (ret) {
11153 btrfs_put_block_group(cache);
11154 break;
11155 }
f7039b1d
LD
11156 }
11157 ret = btrfs_trim_block_group(cache,
11158 &group_trimmed,
11159 start,
11160 end,
11161 range->minlen);
11162
11163 trimmed += group_trimmed;
11164 if (ret) {
11165 btrfs_put_block_group(cache);
11166 break;
11167 }
11168 }
11169
11170 cache = next_block_group(fs_info->tree_root, cache);
11171 }
11172
499f377f
JM
11173 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
11174 devices = &root->fs_info->fs_devices->alloc_list;
11175 list_for_each_entry(device, devices, dev_alloc_list) {
11176 ret = btrfs_trim_free_extents(device, range->minlen,
11177 &group_trimmed);
11178 if (ret)
11179 break;
11180
11181 trimmed += group_trimmed;
11182 }
11183 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
11184
f7039b1d
LD
11185 range->len = trimmed;
11186 return ret;
11187}
8257b2dc
MX
11188
11189/*
9ea24bbe
FM
11190 * btrfs_{start,end}_write_no_snapshoting() are similar to
11191 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
11192 * data into the page cache through nocow before the subvolume is snapshoted,
11193 * but flush the data into disk after the snapshot creation, or to prevent
11194 * operations while snapshoting is ongoing and that cause the snapshot to be
11195 * inconsistent (writes followed by expanding truncates for example).
8257b2dc 11196 */
9ea24bbe 11197void btrfs_end_write_no_snapshoting(struct btrfs_root *root)
8257b2dc
MX
11198{
11199 percpu_counter_dec(&root->subv_writers->counter);
11200 /*
a83342aa 11201 * Make sure counter is updated before we wake up waiters.
8257b2dc
MX
11202 */
11203 smp_mb();
11204 if (waitqueue_active(&root->subv_writers->wait))
11205 wake_up(&root->subv_writers->wait);
11206}
11207
9ea24bbe 11208int btrfs_start_write_no_snapshoting(struct btrfs_root *root)
8257b2dc 11209{
ee39b432 11210 if (atomic_read(&root->will_be_snapshoted))
8257b2dc
MX
11211 return 0;
11212
11213 percpu_counter_inc(&root->subv_writers->counter);
11214 /*
11215 * Make sure counter is updated before we check for snapshot creation.
11216 */
11217 smp_mb();
ee39b432 11218 if (atomic_read(&root->will_be_snapshoted)) {
9ea24bbe 11219 btrfs_end_write_no_snapshoting(root);
8257b2dc
MX
11220 return 0;
11221 }
11222 return 1;
11223}
0bc19f90
ZL
11224
11225static int wait_snapshoting_atomic_t(atomic_t *a)
11226{
11227 schedule();
11228 return 0;
11229}
11230
11231void btrfs_wait_for_snapshot_creation(struct btrfs_root *root)
11232{
11233 while (true) {
11234 int ret;
11235
11236 ret = btrfs_start_write_no_snapshoting(root);
11237 if (ret)
11238 break;
11239 wait_on_atomic_t(&root->will_be_snapshoted,
11240 wait_snapshoting_atomic_t,
11241 TASK_UNINTERRUPTIBLE);
11242 }
11243}