]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - fs/btrfs/extent-tree.c
Btrfs: pick up the code for the item number calculation in flush_space()
[mirror_ubuntu-hirsute-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"
fec577fb
CM
29#include "ctree.h"
30#include "disk-io.h"
31#include "print-tree.h"
e089f05c 32#include "transaction.h"
0b86a832 33#include "volumes.h"
53b381b3 34#include "raid56.h"
925baedd 35#include "locking.h"
fa9c0d79 36#include "free-space-cache.h"
3fed40cc 37#include "math.h"
fec577fb 38
709c0486
AJ
39#undef SCRAMBLE_DELAYED_REFS
40
9e622d6b
MX
41/*
42 * control flags for do_chunk_alloc's force field
0e4f8f88
CM
43 * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk
44 * if we really need one.
45 *
0e4f8f88
CM
46 * CHUNK_ALLOC_LIMITED means to only try and allocate one
47 * if we have very few chunks already allocated. This is
48 * used as part of the clustering code to help make sure
49 * we have a good pool of storage to cluster in, without
50 * filling the FS with empty chunks
51 *
9e622d6b
MX
52 * CHUNK_ALLOC_FORCE means it must try to allocate one
53 *
0e4f8f88
CM
54 */
55enum {
56 CHUNK_ALLOC_NO_FORCE = 0,
9e622d6b
MX
57 CHUNK_ALLOC_LIMITED = 1,
58 CHUNK_ALLOC_FORCE = 2,
0e4f8f88
CM
59};
60
fb25e914
JB
61/*
62 * Control how reservations are dealt with.
63 *
64 * RESERVE_FREE - freeing a reservation.
65 * RESERVE_ALLOC - allocating space and we need to update bytes_may_use for
66 * ENOSPC accounting
67 * RESERVE_ALLOC_NO_ACCOUNT - allocating space and we should not update
68 * bytes_may_use as the ENOSPC accounting is done elsewhere
69 */
70enum {
71 RESERVE_FREE = 0,
72 RESERVE_ALLOC = 1,
73 RESERVE_ALLOC_NO_ACCOUNT = 2,
74};
75
c53d613e 76static int update_block_group(struct btrfs_root *root,
f0486c68 77 u64 bytenr, u64 num_bytes, int alloc);
5d4f98a2
YZ
78static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
79 struct btrfs_root *root,
80 u64 bytenr, u64 num_bytes, u64 parent,
81 u64 root_objectid, u64 owner_objectid,
82 u64 owner_offset, int refs_to_drop,
83 struct btrfs_delayed_extent_op *extra_op);
84static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
85 struct extent_buffer *leaf,
86 struct btrfs_extent_item *ei);
87static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
88 struct btrfs_root *root,
89 u64 parent, u64 root_objectid,
90 u64 flags, u64 owner, u64 offset,
91 struct btrfs_key *ins, int ref_mod);
92static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
93 struct btrfs_root *root,
94 u64 parent, u64 root_objectid,
95 u64 flags, struct btrfs_disk_key *key,
96 int level, struct btrfs_key *ins);
6a63209f 97static int do_chunk_alloc(struct btrfs_trans_handle *trans,
698d0082
JB
98 struct btrfs_root *extent_root, u64 flags,
99 int force);
11833d66
YZ
100static int find_next_key(struct btrfs_path *path, int level,
101 struct btrfs_key *key);
9ed74f2d
JB
102static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
103 int dump_block_groups);
fb25e914
JB
104static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
105 u64 num_bytes, int reserve);
5d80366e
JB
106static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
107 u64 num_bytes);
48a3b636
ES
108int btrfs_pin_extent(struct btrfs_root *root,
109 u64 bytenr, u64 num_bytes, int reserved);
6a63209f 110
817d52f8
JB
111static noinline int
112block_group_cache_done(struct btrfs_block_group_cache *cache)
113{
114 smp_mb();
36cce922
JB
115 return cache->cached == BTRFS_CACHE_FINISHED ||
116 cache->cached == BTRFS_CACHE_ERROR;
817d52f8
JB
117}
118
0f9dd46c
JB
119static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
120{
121 return (cache->flags & bits) == bits;
122}
123
62a45b60 124static void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
11dfe35a
JB
125{
126 atomic_inc(&cache->count);
127}
128
129void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
130{
f0486c68
YZ
131 if (atomic_dec_and_test(&cache->count)) {
132 WARN_ON(cache->pinned > 0);
133 WARN_ON(cache->reserved > 0);
34d52cb6 134 kfree(cache->free_space_ctl);
11dfe35a 135 kfree(cache);
f0486c68 136 }
11dfe35a
JB
137}
138
0f9dd46c
JB
139/*
140 * this adds the block group to the fs_info rb tree for the block group
141 * cache
142 */
b2950863 143static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
0f9dd46c
JB
144 struct btrfs_block_group_cache *block_group)
145{
146 struct rb_node **p;
147 struct rb_node *parent = NULL;
148 struct btrfs_block_group_cache *cache;
149
150 spin_lock(&info->block_group_cache_lock);
151 p = &info->block_group_cache_tree.rb_node;
152
153 while (*p) {
154 parent = *p;
155 cache = rb_entry(parent, struct btrfs_block_group_cache,
156 cache_node);
157 if (block_group->key.objectid < cache->key.objectid) {
158 p = &(*p)->rb_left;
159 } else if (block_group->key.objectid > cache->key.objectid) {
160 p = &(*p)->rb_right;
161 } else {
162 spin_unlock(&info->block_group_cache_lock);
163 return -EEXIST;
164 }
165 }
166
167 rb_link_node(&block_group->cache_node, parent, p);
168 rb_insert_color(&block_group->cache_node,
169 &info->block_group_cache_tree);
a1897fdd
LB
170
171 if (info->first_logical_byte > block_group->key.objectid)
172 info->first_logical_byte = block_group->key.objectid;
173
0f9dd46c
JB
174 spin_unlock(&info->block_group_cache_lock);
175
176 return 0;
177}
178
179/*
180 * This will return the block group at or after bytenr if contains is 0, else
181 * it will return the block group that contains the bytenr
182 */
183static struct btrfs_block_group_cache *
184block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
185 int contains)
186{
187 struct btrfs_block_group_cache *cache, *ret = NULL;
188 struct rb_node *n;
189 u64 end, start;
190
191 spin_lock(&info->block_group_cache_lock);
192 n = info->block_group_cache_tree.rb_node;
193
194 while (n) {
195 cache = rb_entry(n, struct btrfs_block_group_cache,
196 cache_node);
197 end = cache->key.objectid + cache->key.offset - 1;
198 start = cache->key.objectid;
199
200 if (bytenr < start) {
201 if (!contains && (!ret || start < ret->key.objectid))
202 ret = cache;
203 n = n->rb_left;
204 } else if (bytenr > start) {
205 if (contains && bytenr <= end) {
206 ret = cache;
207 break;
208 }
209 n = n->rb_right;
210 } else {
211 ret = cache;
212 break;
213 }
214 }
a1897fdd 215 if (ret) {
11dfe35a 216 btrfs_get_block_group(ret);
a1897fdd
LB
217 if (bytenr == 0 && info->first_logical_byte > ret->key.objectid)
218 info->first_logical_byte = ret->key.objectid;
219 }
0f9dd46c
JB
220 spin_unlock(&info->block_group_cache_lock);
221
222 return ret;
223}
224
11833d66
YZ
225static int add_excluded_extent(struct btrfs_root *root,
226 u64 start, u64 num_bytes)
817d52f8 227{
11833d66
YZ
228 u64 end = start + num_bytes - 1;
229 set_extent_bits(&root->fs_info->freed_extents[0],
230 start, end, EXTENT_UPTODATE, GFP_NOFS);
231 set_extent_bits(&root->fs_info->freed_extents[1],
232 start, end, EXTENT_UPTODATE, GFP_NOFS);
233 return 0;
234}
817d52f8 235
11833d66
YZ
236static void free_excluded_extents(struct btrfs_root *root,
237 struct btrfs_block_group_cache *cache)
238{
239 u64 start, end;
817d52f8 240
11833d66
YZ
241 start = cache->key.objectid;
242 end = start + cache->key.offset - 1;
243
244 clear_extent_bits(&root->fs_info->freed_extents[0],
245 start, end, EXTENT_UPTODATE, GFP_NOFS);
246 clear_extent_bits(&root->fs_info->freed_extents[1],
247 start, end, EXTENT_UPTODATE, GFP_NOFS);
817d52f8
JB
248}
249
11833d66
YZ
250static int exclude_super_stripes(struct btrfs_root *root,
251 struct btrfs_block_group_cache *cache)
817d52f8 252{
817d52f8
JB
253 u64 bytenr;
254 u64 *logical;
255 int stripe_len;
256 int i, nr, ret;
257
06b2331f
YZ
258 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
259 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
260 cache->bytes_super += stripe_len;
261 ret = add_excluded_extent(root, cache->key.objectid,
262 stripe_len);
835d974f
JB
263 if (ret)
264 return ret;
06b2331f
YZ
265 }
266
817d52f8
JB
267 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
268 bytenr = btrfs_sb_offset(i);
269 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
270 cache->key.objectid, bytenr,
271 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);
314 if (cache->cached != BTRFS_CACHE_STARTED) {
315 spin_unlock(&cache->lock);
316 return NULL;
317 }
318
dde5abee
JB
319 /* We're loading it the fast way, so we don't have a caching_ctl. */
320 if (!cache->caching_ctl) {
321 spin_unlock(&cache->lock);
11833d66
YZ
322 return NULL;
323 }
324
325 ctl = cache->caching_ctl;
326 atomic_inc(&ctl->count);
327 spin_unlock(&cache->lock);
328 return ctl;
329}
330
331static void put_caching_control(struct btrfs_caching_control *ctl)
332{
333 if (atomic_dec_and_test(&ctl->count))
334 kfree(ctl);
335}
336
0f9dd46c
JB
337/*
338 * this is only called by cache_block_group, since we could have freed extents
339 * we need to check the pinned_extents for any extents that can't be used yet
340 * since their free space will be released as soon as the transaction commits.
341 */
817d52f8 342static u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
0f9dd46c
JB
343 struct btrfs_fs_info *info, u64 start, u64 end)
344{
817d52f8 345 u64 extent_start, extent_end, size, total_added = 0;
0f9dd46c
JB
346 int ret;
347
348 while (start < end) {
11833d66 349 ret = find_first_extent_bit(info->pinned_extents, start,
0f9dd46c 350 &extent_start, &extent_end,
e6138876
JB
351 EXTENT_DIRTY | EXTENT_UPTODATE,
352 NULL);
0f9dd46c
JB
353 if (ret)
354 break;
355
06b2331f 356 if (extent_start <= start) {
0f9dd46c
JB
357 start = extent_end + 1;
358 } else if (extent_start > start && extent_start < end) {
359 size = extent_start - start;
817d52f8 360 total_added += size;
ea6a478e
JB
361 ret = btrfs_add_free_space(block_group, start,
362 size);
79787eaa 363 BUG_ON(ret); /* -ENOMEM or logic error */
0f9dd46c
JB
364 start = extent_end + 1;
365 } else {
366 break;
367 }
368 }
369
370 if (start < end) {
371 size = end - start;
817d52f8 372 total_added += size;
ea6a478e 373 ret = btrfs_add_free_space(block_group, start, size);
79787eaa 374 BUG_ON(ret); /* -ENOMEM or logic error */
0f9dd46c
JB
375 }
376
817d52f8 377 return total_added;
0f9dd46c
JB
378}
379
bab39bf9 380static noinline void caching_thread(struct btrfs_work *work)
e37c9e69 381{
bab39bf9
JB
382 struct btrfs_block_group_cache *block_group;
383 struct btrfs_fs_info *fs_info;
384 struct btrfs_caching_control *caching_ctl;
385 struct btrfs_root *extent_root;
e37c9e69 386 struct btrfs_path *path;
5f39d397 387 struct extent_buffer *leaf;
11833d66 388 struct btrfs_key key;
817d52f8 389 u64 total_found = 0;
11833d66
YZ
390 u64 last = 0;
391 u32 nritems;
36cce922 392 int ret = -ENOMEM;
f510cfec 393
bab39bf9
JB
394 caching_ctl = container_of(work, struct btrfs_caching_control, work);
395 block_group = caching_ctl->block_group;
396 fs_info = block_group->fs_info;
397 extent_root = fs_info->extent_root;
398
e37c9e69
CM
399 path = btrfs_alloc_path();
400 if (!path)
bab39bf9 401 goto out;
7d7d6068 402
817d52f8 403 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
11833d66 404
5cd57b2c 405 /*
817d52f8
JB
406 * We don't want to deadlock with somebody trying to allocate a new
407 * extent for the extent root while also trying to search the extent
408 * root to add free space. So we skip locking and search the commit
409 * root, since its read-only
5cd57b2c
CM
410 */
411 path->skip_locking = 1;
817d52f8 412 path->search_commit_root = 1;
026fd317 413 path->reada = 1;
817d52f8 414
e4404d6e 415 key.objectid = last;
e37c9e69 416 key.offset = 0;
11833d66 417 key.type = BTRFS_EXTENT_ITEM_KEY;
013f1b12 418again:
11833d66 419 mutex_lock(&caching_ctl->mutex);
013f1b12
CM
420 /* need to make sure the commit_root doesn't disappear */
421 down_read(&fs_info->extent_commit_sem);
422
52ee28d2 423next:
11833d66 424 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
e37c9e69 425 if (ret < 0)
ef8bbdfe 426 goto err;
a512bbf8 427
11833d66
YZ
428 leaf = path->nodes[0];
429 nritems = btrfs_header_nritems(leaf);
430
d397712b 431 while (1) {
7841cb28 432 if (btrfs_fs_closing(fs_info) > 1) {
f25784b3 433 last = (u64)-1;
817d52f8 434 break;
f25784b3 435 }
817d52f8 436
11833d66
YZ
437 if (path->slots[0] < nritems) {
438 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
439 } else {
440 ret = find_next_key(path, 0, &key);
441 if (ret)
e37c9e69 442 break;
817d52f8 443
0a3896d0 444 if (need_resched()) {
589d8ade 445 caching_ctl->progress = last;
ff5714cc 446 btrfs_release_path(path);
589d8ade
JB
447 up_read(&fs_info->extent_commit_sem);
448 mutex_unlock(&caching_ctl->mutex);
11833d66 449 cond_resched();
589d8ade
JB
450 goto again;
451 }
0a3896d0
JB
452
453 ret = btrfs_next_leaf(extent_root, path);
454 if (ret < 0)
455 goto err;
456 if (ret)
457 break;
589d8ade
JB
458 leaf = path->nodes[0];
459 nritems = btrfs_header_nritems(leaf);
460 continue;
11833d66 461 }
817d52f8 462
52ee28d2
LB
463 if (key.objectid < last) {
464 key.objectid = last;
465 key.offset = 0;
466 key.type = BTRFS_EXTENT_ITEM_KEY;
467
468 caching_ctl->progress = last;
469 btrfs_release_path(path);
470 goto next;
471 }
472
11833d66
YZ
473 if (key.objectid < block_group->key.objectid) {
474 path->slots[0]++;
817d52f8 475 continue;
e37c9e69 476 }
0f9dd46c 477
e37c9e69 478 if (key.objectid >= block_group->key.objectid +
0f9dd46c 479 block_group->key.offset)
e37c9e69 480 break;
7d7d6068 481
3173a18f
JB
482 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
483 key.type == BTRFS_METADATA_ITEM_KEY) {
817d52f8
JB
484 total_found += add_new_free_space(block_group,
485 fs_info, last,
486 key.objectid);
3173a18f
JB
487 if (key.type == BTRFS_METADATA_ITEM_KEY)
488 last = key.objectid +
489 fs_info->tree_root->leafsize;
490 else
491 last = key.objectid + key.offset;
817d52f8 492
11833d66
YZ
493 if (total_found > (1024 * 1024 * 2)) {
494 total_found = 0;
495 wake_up(&caching_ctl->wait);
496 }
817d52f8 497 }
e37c9e69
CM
498 path->slots[0]++;
499 }
817d52f8 500 ret = 0;
e37c9e69 501
817d52f8
JB
502 total_found += add_new_free_space(block_group, fs_info, last,
503 block_group->key.objectid +
504 block_group->key.offset);
11833d66 505 caching_ctl->progress = (u64)-1;
817d52f8
JB
506
507 spin_lock(&block_group->lock);
11833d66 508 block_group->caching_ctl = NULL;
817d52f8
JB
509 block_group->cached = BTRFS_CACHE_FINISHED;
510 spin_unlock(&block_group->lock);
0f9dd46c 511
54aa1f4d 512err:
e37c9e69 513 btrfs_free_path(path);
276e680d 514 up_read(&fs_info->extent_commit_sem);
817d52f8 515
11833d66
YZ
516 free_excluded_extents(extent_root, block_group);
517
518 mutex_unlock(&caching_ctl->mutex);
bab39bf9 519out:
36cce922
JB
520 if (ret) {
521 spin_lock(&block_group->lock);
522 block_group->caching_ctl = NULL;
523 block_group->cached = BTRFS_CACHE_ERROR;
524 spin_unlock(&block_group->lock);
525 }
11833d66
YZ
526 wake_up(&caching_ctl->wait);
527
528 put_caching_control(caching_ctl);
11dfe35a 529 btrfs_put_block_group(block_group);
817d52f8
JB
530}
531
9d66e233 532static int cache_block_group(struct btrfs_block_group_cache *cache,
9d66e233 533 int load_cache_only)
817d52f8 534{
291c7d2f 535 DEFINE_WAIT(wait);
11833d66
YZ
536 struct btrfs_fs_info *fs_info = cache->fs_info;
537 struct btrfs_caching_control *caching_ctl;
817d52f8
JB
538 int ret = 0;
539
291c7d2f 540 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
79787eaa
JM
541 if (!caching_ctl)
542 return -ENOMEM;
291c7d2f
JB
543
544 INIT_LIST_HEAD(&caching_ctl->list);
545 mutex_init(&caching_ctl->mutex);
546 init_waitqueue_head(&caching_ctl->wait);
547 caching_ctl->block_group = cache;
548 caching_ctl->progress = cache->key.objectid;
549 atomic_set(&caching_ctl->count, 1);
550 caching_ctl->work.func = caching_thread;
551
552 spin_lock(&cache->lock);
553 /*
554 * This should be a rare occasion, but this could happen I think in the
555 * case where one thread starts to load the space cache info, and then
556 * some other thread starts a transaction commit which tries to do an
557 * allocation while the other thread is still loading the space cache
558 * info. The previous loop should have kept us from choosing this block
559 * group, but if we've moved to the state where we will wait on caching
560 * block groups we need to first check if we're doing a fast load here,
561 * so we can wait for it to finish, otherwise we could end up allocating
562 * from a block group who's cache gets evicted for one reason or
563 * another.
564 */
565 while (cache->cached == BTRFS_CACHE_FAST) {
566 struct btrfs_caching_control *ctl;
567
568 ctl = cache->caching_ctl;
569 atomic_inc(&ctl->count);
570 prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
571 spin_unlock(&cache->lock);
572
573 schedule();
574
575 finish_wait(&ctl->wait, &wait);
576 put_caching_control(ctl);
577 spin_lock(&cache->lock);
578 }
579
580 if (cache->cached != BTRFS_CACHE_NO) {
581 spin_unlock(&cache->lock);
582 kfree(caching_ctl);
11833d66 583 return 0;
291c7d2f
JB
584 }
585 WARN_ON(cache->caching_ctl);
586 cache->caching_ctl = caching_ctl;
587 cache->cached = BTRFS_CACHE_FAST;
588 spin_unlock(&cache->lock);
11833d66 589
d53ba474 590 if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) {
9d66e233
JB
591 ret = load_free_space_cache(fs_info, cache);
592
593 spin_lock(&cache->lock);
594 if (ret == 1) {
291c7d2f 595 cache->caching_ctl = NULL;
9d66e233
JB
596 cache->cached = BTRFS_CACHE_FINISHED;
597 cache->last_byte_to_unpin = (u64)-1;
598 } else {
291c7d2f
JB
599 if (load_cache_only) {
600 cache->caching_ctl = NULL;
601 cache->cached = BTRFS_CACHE_NO;
602 } else {
603 cache->cached = BTRFS_CACHE_STARTED;
604 }
9d66e233
JB
605 }
606 spin_unlock(&cache->lock);
291c7d2f 607 wake_up(&caching_ctl->wait);
3c14874a 608 if (ret == 1) {
291c7d2f 609 put_caching_control(caching_ctl);
3c14874a 610 free_excluded_extents(fs_info->extent_root, cache);
9d66e233 611 return 0;
3c14874a 612 }
291c7d2f
JB
613 } else {
614 /*
615 * We are not going to do the fast caching, set cached to the
616 * appropriate value and wakeup any waiters.
617 */
618 spin_lock(&cache->lock);
619 if (load_cache_only) {
620 cache->caching_ctl = NULL;
621 cache->cached = BTRFS_CACHE_NO;
622 } else {
623 cache->cached = BTRFS_CACHE_STARTED;
624 }
625 spin_unlock(&cache->lock);
626 wake_up(&caching_ctl->wait);
9d66e233
JB
627 }
628
291c7d2f
JB
629 if (load_cache_only) {
630 put_caching_control(caching_ctl);
11833d66 631 return 0;
817d52f8 632 }
817d52f8 633
11833d66 634 down_write(&fs_info->extent_commit_sem);
291c7d2f 635 atomic_inc(&caching_ctl->count);
11833d66
YZ
636 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
637 up_write(&fs_info->extent_commit_sem);
638
11dfe35a 639 btrfs_get_block_group(cache);
11833d66 640
bab39bf9 641 btrfs_queue_worker(&fs_info->caching_workers, &caching_ctl->work);
817d52f8 642
ef8bbdfe 643 return ret;
e37c9e69
CM
644}
645
0f9dd46c
JB
646/*
647 * return the block group that starts at or after bytenr
648 */
d397712b
CM
649static struct btrfs_block_group_cache *
650btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
0ef3e66b 651{
0f9dd46c 652 struct btrfs_block_group_cache *cache;
0ef3e66b 653
0f9dd46c 654 cache = block_group_cache_tree_search(info, bytenr, 0);
0ef3e66b 655
0f9dd46c 656 return cache;
0ef3e66b
CM
657}
658
0f9dd46c 659/*
9f55684c 660 * return the block group that contains the given bytenr
0f9dd46c 661 */
d397712b
CM
662struct btrfs_block_group_cache *btrfs_lookup_block_group(
663 struct btrfs_fs_info *info,
664 u64 bytenr)
be744175 665{
0f9dd46c 666 struct btrfs_block_group_cache *cache;
be744175 667
0f9dd46c 668 cache = block_group_cache_tree_search(info, bytenr, 1);
96b5179d 669
0f9dd46c 670 return cache;
be744175 671}
0b86a832 672
0f9dd46c
JB
673static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
674 u64 flags)
6324fbf3 675{
0f9dd46c 676 struct list_head *head = &info->space_info;
0f9dd46c 677 struct btrfs_space_info *found;
4184ea7f 678
52ba6929 679 flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
b742bb82 680
4184ea7f
CM
681 rcu_read_lock();
682 list_for_each_entry_rcu(found, head, list) {
67377734 683 if (found->flags & flags) {
4184ea7f 684 rcu_read_unlock();
0f9dd46c 685 return found;
4184ea7f 686 }
0f9dd46c 687 }
4184ea7f 688 rcu_read_unlock();
0f9dd46c 689 return NULL;
6324fbf3
CM
690}
691
4184ea7f
CM
692/*
693 * after adding space to the filesystem, we need to clear the full flags
694 * on all the space infos.
695 */
696void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
697{
698 struct list_head *head = &info->space_info;
699 struct btrfs_space_info *found;
700
701 rcu_read_lock();
702 list_for_each_entry_rcu(found, head, list)
703 found->full = 0;
704 rcu_read_unlock();
705}
706
e02119d5 707/* simple helper to search for an existing extent at a given offset */
31840ae1 708int btrfs_lookup_extent(struct btrfs_root *root, u64 start, u64 len)
e02119d5
CM
709{
710 int ret;
711 struct btrfs_key key;
31840ae1 712 struct btrfs_path *path;
e02119d5 713
31840ae1 714 path = btrfs_alloc_path();
d8926bb3
MF
715 if (!path)
716 return -ENOMEM;
717
e02119d5
CM
718 key.objectid = start;
719 key.offset = len;
3173a18f 720 key.type = BTRFS_EXTENT_ITEM_KEY;
e02119d5
CM
721 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
722 0, 0);
3173a18f
JB
723 if (ret > 0) {
724 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
725 if (key.objectid == start &&
726 key.type == BTRFS_METADATA_ITEM_KEY)
727 ret = 0;
728 }
31840ae1 729 btrfs_free_path(path);
7bb86316
CM
730 return ret;
731}
732
a22285a6 733/*
3173a18f 734 * helper function to lookup reference count and flags of a tree block.
a22285a6
YZ
735 *
736 * the head node for delayed ref is used to store the sum of all the
737 * reference count modifications queued up in the rbtree. the head
738 * node may also store the extent flags to set. This way you can check
739 * to see what the reference count and extent flags would be if all of
740 * the delayed refs are not processed.
741 */
742int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
743 struct btrfs_root *root, u64 bytenr,
3173a18f 744 u64 offset, int metadata, u64 *refs, u64 *flags)
a22285a6
YZ
745{
746 struct btrfs_delayed_ref_head *head;
747 struct btrfs_delayed_ref_root *delayed_refs;
748 struct btrfs_path *path;
749 struct btrfs_extent_item *ei;
750 struct extent_buffer *leaf;
751 struct btrfs_key key;
752 u32 item_size;
753 u64 num_refs;
754 u64 extent_flags;
755 int ret;
756
3173a18f
JB
757 /*
758 * If we don't have skinny metadata, don't bother doing anything
759 * different
760 */
761 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) {
762 offset = root->leafsize;
763 metadata = 0;
764 }
765
a22285a6
YZ
766 path = btrfs_alloc_path();
767 if (!path)
768 return -ENOMEM;
769
3173a18f
JB
770 if (metadata) {
771 key.objectid = bytenr;
772 key.type = BTRFS_METADATA_ITEM_KEY;
773 key.offset = offset;
774 } else {
775 key.objectid = bytenr;
776 key.type = BTRFS_EXTENT_ITEM_KEY;
777 key.offset = offset;
778 }
779
a22285a6
YZ
780 if (!trans) {
781 path->skip_locking = 1;
782 path->search_commit_root = 1;
783 }
784again:
785 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
786 &key, path, 0, 0);
787 if (ret < 0)
788 goto out_free;
789
3173a18f 790 if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
74be9510
FDBM
791 metadata = 0;
792 if (path->slots[0]) {
793 path->slots[0]--;
794 btrfs_item_key_to_cpu(path->nodes[0], &key,
795 path->slots[0]);
796 if (key.objectid == bytenr &&
797 key.type == BTRFS_EXTENT_ITEM_KEY &&
798 key.offset == root->leafsize)
799 ret = 0;
800 }
801 if (ret) {
802 key.objectid = bytenr;
803 key.type = BTRFS_EXTENT_ITEM_KEY;
804 key.offset = root->leafsize;
805 btrfs_release_path(path);
806 goto again;
807 }
3173a18f
JB
808 }
809
a22285a6
YZ
810 if (ret == 0) {
811 leaf = path->nodes[0];
812 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
813 if (item_size >= sizeof(*ei)) {
814 ei = btrfs_item_ptr(leaf, path->slots[0],
815 struct btrfs_extent_item);
816 num_refs = btrfs_extent_refs(leaf, ei);
817 extent_flags = btrfs_extent_flags(leaf, ei);
818 } else {
819#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
820 struct btrfs_extent_item_v0 *ei0;
821 BUG_ON(item_size != sizeof(*ei0));
822 ei0 = btrfs_item_ptr(leaf, path->slots[0],
823 struct btrfs_extent_item_v0);
824 num_refs = btrfs_extent_refs_v0(leaf, ei0);
825 /* FIXME: this isn't correct for data */
826 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
827#else
828 BUG();
829#endif
830 }
831 BUG_ON(num_refs == 0);
832 } else {
833 num_refs = 0;
834 extent_flags = 0;
835 ret = 0;
836 }
837
838 if (!trans)
839 goto out;
840
841 delayed_refs = &trans->transaction->delayed_refs;
842 spin_lock(&delayed_refs->lock);
843 head = btrfs_find_delayed_ref_head(trans, bytenr);
844 if (head) {
845 if (!mutex_trylock(&head->mutex)) {
846 atomic_inc(&head->node.refs);
847 spin_unlock(&delayed_refs->lock);
848
b3b4aa74 849 btrfs_release_path(path);
a22285a6 850
8cc33e5c
DS
851 /*
852 * Mutex was contended, block until it's released and try
853 * again
854 */
a22285a6
YZ
855 mutex_lock(&head->mutex);
856 mutex_unlock(&head->mutex);
857 btrfs_put_delayed_ref(&head->node);
858 goto again;
859 }
860 if (head->extent_op && head->extent_op->update_flags)
861 extent_flags |= head->extent_op->flags_to_set;
862 else
863 BUG_ON(num_refs == 0);
864
865 num_refs += head->node.ref_mod;
866 mutex_unlock(&head->mutex);
867 }
868 spin_unlock(&delayed_refs->lock);
869out:
870 WARN_ON(num_refs == 0);
871 if (refs)
872 *refs = num_refs;
873 if (flags)
874 *flags = extent_flags;
875out_free:
876 btrfs_free_path(path);
877 return ret;
878}
879
d8d5f3e1
CM
880/*
881 * Back reference rules. Back refs have three main goals:
882 *
883 * 1) differentiate between all holders of references to an extent so that
884 * when a reference is dropped we can make sure it was a valid reference
885 * before freeing the extent.
886 *
887 * 2) Provide enough information to quickly find the holders of an extent
888 * if we notice a given block is corrupted or bad.
889 *
890 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
891 * maintenance. This is actually the same as #2, but with a slightly
892 * different use case.
893 *
5d4f98a2
YZ
894 * There are two kinds of back refs. The implicit back refs is optimized
895 * for pointers in non-shared tree blocks. For a given pointer in a block,
896 * back refs of this kind provide information about the block's owner tree
897 * and the pointer's key. These information allow us to find the block by
898 * b-tree searching. The full back refs is for pointers in tree blocks not
899 * referenced by their owner trees. The location of tree block is recorded
900 * in the back refs. Actually the full back refs is generic, and can be
901 * used in all cases the implicit back refs is used. The major shortcoming
902 * of the full back refs is its overhead. Every time a tree block gets
903 * COWed, we have to update back refs entry for all pointers in it.
904 *
905 * For a newly allocated tree block, we use implicit back refs for
906 * pointers in it. This means most tree related operations only involve
907 * implicit back refs. For a tree block created in old transaction, the
908 * only way to drop a reference to it is COW it. So we can detect the
909 * event that tree block loses its owner tree's reference and do the
910 * back refs conversion.
911 *
912 * When a tree block is COW'd through a tree, there are four cases:
913 *
914 * The reference count of the block is one and the tree is the block's
915 * owner tree. Nothing to do in this case.
916 *
917 * The reference count of the block is one and the tree is not the
918 * block's owner tree. In this case, full back refs is used for pointers
919 * in the block. Remove these full back refs, add implicit back refs for
920 * every pointers in the new block.
921 *
922 * The reference count of the block is greater than one and the tree is
923 * the block's owner tree. In this case, implicit back refs is used for
924 * pointers in the block. Add full back refs for every pointers in the
925 * block, increase lower level extents' reference counts. The original
926 * implicit back refs are entailed to the new block.
927 *
928 * The reference count of the block is greater than one and the tree is
929 * not the block's owner tree. Add implicit back refs for every pointer in
930 * the new block, increase lower level extents' reference count.
931 *
932 * Back Reference Key composing:
933 *
934 * The key objectid corresponds to the first byte in the extent,
935 * The key type is used to differentiate between types of back refs.
936 * There are different meanings of the key offset for different types
937 * of back refs.
938 *
d8d5f3e1
CM
939 * File extents can be referenced by:
940 *
941 * - multiple snapshots, subvolumes, or different generations in one subvol
31840ae1 942 * - different files inside a single subvolume
d8d5f3e1
CM
943 * - different offsets inside a file (bookend extents in file.c)
944 *
5d4f98a2 945 * The extent ref structure for the implicit back refs has fields for:
d8d5f3e1
CM
946 *
947 * - Objectid of the subvolume root
d8d5f3e1 948 * - objectid of the file holding the reference
5d4f98a2
YZ
949 * - original offset in the file
950 * - how many bookend extents
d8d5f3e1 951 *
5d4f98a2
YZ
952 * The key offset for the implicit back refs is hash of the first
953 * three fields.
d8d5f3e1 954 *
5d4f98a2 955 * The extent ref structure for the full back refs has field for:
d8d5f3e1 956 *
5d4f98a2 957 * - number of pointers in the tree leaf
d8d5f3e1 958 *
5d4f98a2
YZ
959 * The key offset for the implicit back refs is the first byte of
960 * the tree leaf
d8d5f3e1 961 *
5d4f98a2
YZ
962 * When a file extent is allocated, The implicit back refs is used.
963 * the fields are filled in:
d8d5f3e1 964 *
5d4f98a2 965 * (root_key.objectid, inode objectid, offset in file, 1)
d8d5f3e1 966 *
5d4f98a2
YZ
967 * When a file extent is removed file truncation, we find the
968 * corresponding implicit back refs and check the following fields:
d8d5f3e1 969 *
5d4f98a2 970 * (btrfs_header_owner(leaf), inode objectid, offset in file)
d8d5f3e1 971 *
5d4f98a2 972 * Btree extents can be referenced by:
d8d5f3e1 973 *
5d4f98a2 974 * - Different subvolumes
d8d5f3e1 975 *
5d4f98a2
YZ
976 * Both the implicit back refs and the full back refs for tree blocks
977 * only consist of key. The key offset for the implicit back refs is
978 * objectid of block's owner tree. The key offset for the full back refs
979 * is the first byte of parent block.
d8d5f3e1 980 *
5d4f98a2
YZ
981 * When implicit back refs is used, information about the lowest key and
982 * level of the tree block are required. These information are stored in
983 * tree block info structure.
d8d5f3e1 984 */
31840ae1 985
5d4f98a2
YZ
986#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
987static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
988 struct btrfs_root *root,
989 struct btrfs_path *path,
990 u64 owner, u32 extra_size)
7bb86316 991{
5d4f98a2
YZ
992 struct btrfs_extent_item *item;
993 struct btrfs_extent_item_v0 *ei0;
994 struct btrfs_extent_ref_v0 *ref0;
995 struct btrfs_tree_block_info *bi;
996 struct extent_buffer *leaf;
7bb86316 997 struct btrfs_key key;
5d4f98a2
YZ
998 struct btrfs_key found_key;
999 u32 new_size = sizeof(*item);
1000 u64 refs;
1001 int ret;
1002
1003 leaf = path->nodes[0];
1004 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
1005
1006 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1007 ei0 = btrfs_item_ptr(leaf, path->slots[0],
1008 struct btrfs_extent_item_v0);
1009 refs = btrfs_extent_refs_v0(leaf, ei0);
1010
1011 if (owner == (u64)-1) {
1012 while (1) {
1013 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1014 ret = btrfs_next_leaf(root, path);
1015 if (ret < 0)
1016 return ret;
79787eaa 1017 BUG_ON(ret > 0); /* Corruption */
5d4f98a2
YZ
1018 leaf = path->nodes[0];
1019 }
1020 btrfs_item_key_to_cpu(leaf, &found_key,
1021 path->slots[0]);
1022 BUG_ON(key.objectid != found_key.objectid);
1023 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
1024 path->slots[0]++;
1025 continue;
1026 }
1027 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1028 struct btrfs_extent_ref_v0);
1029 owner = btrfs_ref_objectid_v0(leaf, ref0);
1030 break;
1031 }
1032 }
b3b4aa74 1033 btrfs_release_path(path);
5d4f98a2
YZ
1034
1035 if (owner < BTRFS_FIRST_FREE_OBJECTID)
1036 new_size += sizeof(*bi);
1037
1038 new_size -= sizeof(*ei0);
1039 ret = btrfs_search_slot(trans, root, &key, path,
1040 new_size + extra_size, 1);
1041 if (ret < 0)
1042 return ret;
79787eaa 1043 BUG_ON(ret); /* Corruption */
5d4f98a2 1044
4b90c680 1045 btrfs_extend_item(root, path, new_size);
5d4f98a2
YZ
1046
1047 leaf = path->nodes[0];
1048 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1049 btrfs_set_extent_refs(leaf, item, refs);
1050 /* FIXME: get real generation */
1051 btrfs_set_extent_generation(leaf, item, 0);
1052 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1053 btrfs_set_extent_flags(leaf, item,
1054 BTRFS_EXTENT_FLAG_TREE_BLOCK |
1055 BTRFS_BLOCK_FLAG_FULL_BACKREF);
1056 bi = (struct btrfs_tree_block_info *)(item + 1);
1057 /* FIXME: get first key of the block */
1058 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
1059 btrfs_set_tree_block_level(leaf, bi, (int)owner);
1060 } else {
1061 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
1062 }
1063 btrfs_mark_buffer_dirty(leaf);
1064 return 0;
1065}
1066#endif
1067
1068static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1069{
1070 u32 high_crc = ~(u32)0;
1071 u32 low_crc = ~(u32)0;
1072 __le64 lenum;
1073
1074 lenum = cpu_to_le64(root_objectid);
163e783e 1075 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
5d4f98a2 1076 lenum = cpu_to_le64(owner);
163e783e 1077 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
5d4f98a2 1078 lenum = cpu_to_le64(offset);
163e783e 1079 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
5d4f98a2
YZ
1080
1081 return ((u64)high_crc << 31) ^ (u64)low_crc;
1082}
1083
1084static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1085 struct btrfs_extent_data_ref *ref)
1086{
1087 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1088 btrfs_extent_data_ref_objectid(leaf, ref),
1089 btrfs_extent_data_ref_offset(leaf, ref));
1090}
1091
1092static int match_extent_data_ref(struct extent_buffer *leaf,
1093 struct btrfs_extent_data_ref *ref,
1094 u64 root_objectid, u64 owner, u64 offset)
1095{
1096 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1097 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1098 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1099 return 0;
1100 return 1;
1101}
1102
1103static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
1104 struct btrfs_root *root,
1105 struct btrfs_path *path,
1106 u64 bytenr, u64 parent,
1107 u64 root_objectid,
1108 u64 owner, u64 offset)
1109{
1110 struct btrfs_key key;
1111 struct btrfs_extent_data_ref *ref;
31840ae1 1112 struct extent_buffer *leaf;
5d4f98a2 1113 u32 nritems;
74493f7a 1114 int ret;
5d4f98a2
YZ
1115 int recow;
1116 int err = -ENOENT;
74493f7a 1117
31840ae1 1118 key.objectid = bytenr;
5d4f98a2
YZ
1119 if (parent) {
1120 key.type = BTRFS_SHARED_DATA_REF_KEY;
1121 key.offset = parent;
1122 } else {
1123 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1124 key.offset = hash_extent_data_ref(root_objectid,
1125 owner, offset);
1126 }
1127again:
1128 recow = 0;
1129 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1130 if (ret < 0) {
1131 err = ret;
1132 goto fail;
1133 }
31840ae1 1134
5d4f98a2
YZ
1135 if (parent) {
1136 if (!ret)
1137 return 0;
1138#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1139 key.type = BTRFS_EXTENT_REF_V0_KEY;
b3b4aa74 1140 btrfs_release_path(path);
5d4f98a2
YZ
1141 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1142 if (ret < 0) {
1143 err = ret;
1144 goto fail;
1145 }
1146 if (!ret)
1147 return 0;
1148#endif
1149 goto fail;
31840ae1
ZY
1150 }
1151
1152 leaf = path->nodes[0];
5d4f98a2
YZ
1153 nritems = btrfs_header_nritems(leaf);
1154 while (1) {
1155 if (path->slots[0] >= nritems) {
1156 ret = btrfs_next_leaf(root, path);
1157 if (ret < 0)
1158 err = ret;
1159 if (ret)
1160 goto fail;
1161
1162 leaf = path->nodes[0];
1163 nritems = btrfs_header_nritems(leaf);
1164 recow = 1;
1165 }
1166
1167 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1168 if (key.objectid != bytenr ||
1169 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1170 goto fail;
1171
1172 ref = btrfs_item_ptr(leaf, path->slots[0],
1173 struct btrfs_extent_data_ref);
1174
1175 if (match_extent_data_ref(leaf, ref, root_objectid,
1176 owner, offset)) {
1177 if (recow) {
b3b4aa74 1178 btrfs_release_path(path);
5d4f98a2
YZ
1179 goto again;
1180 }
1181 err = 0;
1182 break;
1183 }
1184 path->slots[0]++;
31840ae1 1185 }
5d4f98a2
YZ
1186fail:
1187 return err;
31840ae1
ZY
1188}
1189
5d4f98a2
YZ
1190static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1191 struct btrfs_root *root,
1192 struct btrfs_path *path,
1193 u64 bytenr, u64 parent,
1194 u64 root_objectid, u64 owner,
1195 u64 offset, int refs_to_add)
31840ae1
ZY
1196{
1197 struct btrfs_key key;
1198 struct extent_buffer *leaf;
5d4f98a2 1199 u32 size;
31840ae1
ZY
1200 u32 num_refs;
1201 int ret;
74493f7a 1202
74493f7a 1203 key.objectid = bytenr;
5d4f98a2
YZ
1204 if (parent) {
1205 key.type = BTRFS_SHARED_DATA_REF_KEY;
1206 key.offset = parent;
1207 size = sizeof(struct btrfs_shared_data_ref);
1208 } else {
1209 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1210 key.offset = hash_extent_data_ref(root_objectid,
1211 owner, offset);
1212 size = sizeof(struct btrfs_extent_data_ref);
1213 }
74493f7a 1214
5d4f98a2
YZ
1215 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1216 if (ret && ret != -EEXIST)
1217 goto fail;
1218
1219 leaf = path->nodes[0];
1220 if (parent) {
1221 struct btrfs_shared_data_ref *ref;
31840ae1 1222 ref = btrfs_item_ptr(leaf, path->slots[0],
5d4f98a2
YZ
1223 struct btrfs_shared_data_ref);
1224 if (ret == 0) {
1225 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1226 } else {
1227 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1228 num_refs += refs_to_add;
1229 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
31840ae1 1230 }
5d4f98a2
YZ
1231 } else {
1232 struct btrfs_extent_data_ref *ref;
1233 while (ret == -EEXIST) {
1234 ref = btrfs_item_ptr(leaf, path->slots[0],
1235 struct btrfs_extent_data_ref);
1236 if (match_extent_data_ref(leaf, ref, root_objectid,
1237 owner, offset))
1238 break;
b3b4aa74 1239 btrfs_release_path(path);
5d4f98a2
YZ
1240 key.offset++;
1241 ret = btrfs_insert_empty_item(trans, root, path, &key,
1242 size);
1243 if (ret && ret != -EEXIST)
1244 goto fail;
31840ae1 1245
5d4f98a2
YZ
1246 leaf = path->nodes[0];
1247 }
1248 ref = btrfs_item_ptr(leaf, path->slots[0],
1249 struct btrfs_extent_data_ref);
1250 if (ret == 0) {
1251 btrfs_set_extent_data_ref_root(leaf, ref,
1252 root_objectid);
1253 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1254 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1255 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1256 } else {
1257 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1258 num_refs += refs_to_add;
1259 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
31840ae1 1260 }
31840ae1 1261 }
5d4f98a2
YZ
1262 btrfs_mark_buffer_dirty(leaf);
1263 ret = 0;
1264fail:
b3b4aa74 1265 btrfs_release_path(path);
7bb86316 1266 return ret;
74493f7a
CM
1267}
1268
5d4f98a2
YZ
1269static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1270 struct btrfs_root *root,
1271 struct btrfs_path *path,
1272 int refs_to_drop)
31840ae1 1273{
5d4f98a2
YZ
1274 struct btrfs_key key;
1275 struct btrfs_extent_data_ref *ref1 = NULL;
1276 struct btrfs_shared_data_ref *ref2 = NULL;
31840ae1 1277 struct extent_buffer *leaf;
5d4f98a2 1278 u32 num_refs = 0;
31840ae1
ZY
1279 int ret = 0;
1280
1281 leaf = path->nodes[0];
5d4f98a2
YZ
1282 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1283
1284 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1285 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1286 struct btrfs_extent_data_ref);
1287 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1288 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1289 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1290 struct btrfs_shared_data_ref);
1291 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1292#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1293 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1294 struct btrfs_extent_ref_v0 *ref0;
1295 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1296 struct btrfs_extent_ref_v0);
1297 num_refs = btrfs_ref_count_v0(leaf, ref0);
1298#endif
1299 } else {
1300 BUG();
1301 }
1302
56bec294
CM
1303 BUG_ON(num_refs < refs_to_drop);
1304 num_refs -= refs_to_drop;
5d4f98a2 1305
31840ae1
ZY
1306 if (num_refs == 0) {
1307 ret = btrfs_del_item(trans, root, path);
1308 } else {
5d4f98a2
YZ
1309 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1310 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1311 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1312 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1313#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1314 else {
1315 struct btrfs_extent_ref_v0 *ref0;
1316 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1317 struct btrfs_extent_ref_v0);
1318 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1319 }
1320#endif
31840ae1
ZY
1321 btrfs_mark_buffer_dirty(leaf);
1322 }
31840ae1
ZY
1323 return ret;
1324}
1325
5d4f98a2
YZ
1326static noinline u32 extent_data_ref_count(struct btrfs_root *root,
1327 struct btrfs_path *path,
1328 struct btrfs_extent_inline_ref *iref)
15916de8 1329{
5d4f98a2
YZ
1330 struct btrfs_key key;
1331 struct extent_buffer *leaf;
1332 struct btrfs_extent_data_ref *ref1;
1333 struct btrfs_shared_data_ref *ref2;
1334 u32 num_refs = 0;
1335
1336 leaf = path->nodes[0];
1337 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1338 if (iref) {
1339 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1340 BTRFS_EXTENT_DATA_REF_KEY) {
1341 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1342 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1343 } else {
1344 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1345 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1346 }
1347 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1348 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1349 struct btrfs_extent_data_ref);
1350 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1351 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1352 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1353 struct btrfs_shared_data_ref);
1354 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1355#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1356 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1357 struct btrfs_extent_ref_v0 *ref0;
1358 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1359 struct btrfs_extent_ref_v0);
1360 num_refs = btrfs_ref_count_v0(leaf, ref0);
4b4e25f2 1361#endif
5d4f98a2
YZ
1362 } else {
1363 WARN_ON(1);
1364 }
1365 return num_refs;
1366}
15916de8 1367
5d4f98a2
YZ
1368static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1369 struct btrfs_root *root,
1370 struct btrfs_path *path,
1371 u64 bytenr, u64 parent,
1372 u64 root_objectid)
1f3c79a2 1373{
5d4f98a2 1374 struct btrfs_key key;
1f3c79a2 1375 int ret;
1f3c79a2 1376
5d4f98a2
YZ
1377 key.objectid = bytenr;
1378 if (parent) {
1379 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1380 key.offset = parent;
1381 } else {
1382 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1383 key.offset = root_objectid;
1f3c79a2
LH
1384 }
1385
5d4f98a2
YZ
1386 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1387 if (ret > 0)
1388 ret = -ENOENT;
1389#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1390 if (ret == -ENOENT && parent) {
b3b4aa74 1391 btrfs_release_path(path);
5d4f98a2
YZ
1392 key.type = BTRFS_EXTENT_REF_V0_KEY;
1393 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1394 if (ret > 0)
1395 ret = -ENOENT;
1396 }
1f3c79a2 1397#endif
5d4f98a2 1398 return ret;
1f3c79a2
LH
1399}
1400
5d4f98a2
YZ
1401static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1402 struct btrfs_root *root,
1403 struct btrfs_path *path,
1404 u64 bytenr, u64 parent,
1405 u64 root_objectid)
31840ae1 1406{
5d4f98a2 1407 struct btrfs_key key;
31840ae1 1408 int ret;
31840ae1 1409
5d4f98a2
YZ
1410 key.objectid = bytenr;
1411 if (parent) {
1412 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1413 key.offset = parent;
1414 } else {
1415 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1416 key.offset = root_objectid;
1417 }
1418
1419 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
b3b4aa74 1420 btrfs_release_path(path);
31840ae1
ZY
1421 return ret;
1422}
1423
5d4f98a2 1424static inline int extent_ref_type(u64 parent, u64 owner)
31840ae1 1425{
5d4f98a2
YZ
1426 int type;
1427 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1428 if (parent > 0)
1429 type = BTRFS_SHARED_BLOCK_REF_KEY;
1430 else
1431 type = BTRFS_TREE_BLOCK_REF_KEY;
1432 } else {
1433 if (parent > 0)
1434 type = BTRFS_SHARED_DATA_REF_KEY;
1435 else
1436 type = BTRFS_EXTENT_DATA_REF_KEY;
1437 }
1438 return type;
31840ae1 1439}
56bec294 1440
2c47e605
YZ
1441static int find_next_key(struct btrfs_path *path, int level,
1442 struct btrfs_key *key)
56bec294 1443
02217ed2 1444{
2c47e605 1445 for (; level < BTRFS_MAX_LEVEL; level++) {
5d4f98a2
YZ
1446 if (!path->nodes[level])
1447 break;
5d4f98a2
YZ
1448 if (path->slots[level] + 1 >=
1449 btrfs_header_nritems(path->nodes[level]))
1450 continue;
1451 if (level == 0)
1452 btrfs_item_key_to_cpu(path->nodes[level], key,
1453 path->slots[level] + 1);
1454 else
1455 btrfs_node_key_to_cpu(path->nodes[level], key,
1456 path->slots[level] + 1);
1457 return 0;
1458 }
1459 return 1;
1460}
037e6390 1461
5d4f98a2
YZ
1462/*
1463 * look for inline back ref. if back ref is found, *ref_ret is set
1464 * to the address of inline back ref, and 0 is returned.
1465 *
1466 * if back ref isn't found, *ref_ret is set to the address where it
1467 * should be inserted, and -ENOENT is returned.
1468 *
1469 * if insert is true and there are too many inline back refs, the path
1470 * points to the extent item, and -EAGAIN is returned.
1471 *
1472 * NOTE: inline back refs are ordered in the same way that back ref
1473 * items in the tree are ordered.
1474 */
1475static noinline_for_stack
1476int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1477 struct btrfs_root *root,
1478 struct btrfs_path *path,
1479 struct btrfs_extent_inline_ref **ref_ret,
1480 u64 bytenr, u64 num_bytes,
1481 u64 parent, u64 root_objectid,
1482 u64 owner, u64 offset, int insert)
1483{
1484 struct btrfs_key key;
1485 struct extent_buffer *leaf;
1486 struct btrfs_extent_item *ei;
1487 struct btrfs_extent_inline_ref *iref;
1488 u64 flags;
1489 u64 item_size;
1490 unsigned long ptr;
1491 unsigned long end;
1492 int extra_size;
1493 int type;
1494 int want;
1495 int ret;
1496 int err = 0;
3173a18f
JB
1497 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
1498 SKINNY_METADATA);
26b8003f 1499
db94535d 1500 key.objectid = bytenr;
31840ae1 1501 key.type = BTRFS_EXTENT_ITEM_KEY;
56bec294 1502 key.offset = num_bytes;
31840ae1 1503
5d4f98a2
YZ
1504 want = extent_ref_type(parent, owner);
1505 if (insert) {
1506 extra_size = btrfs_extent_inline_ref_size(want);
85d4198e 1507 path->keep_locks = 1;
5d4f98a2
YZ
1508 } else
1509 extra_size = -1;
3173a18f
JB
1510
1511 /*
1512 * Owner is our parent level, so we can just add one to get the level
1513 * for the block we are interested in.
1514 */
1515 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1516 key.type = BTRFS_METADATA_ITEM_KEY;
1517 key.offset = owner;
1518 }
1519
1520again:
5d4f98a2 1521 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
b9473439 1522 if (ret < 0) {
5d4f98a2
YZ
1523 err = ret;
1524 goto out;
1525 }
3173a18f
JB
1526
1527 /*
1528 * We may be a newly converted file system which still has the old fat
1529 * extent entries for metadata, so try and see if we have one of those.
1530 */
1531 if (ret > 0 && skinny_metadata) {
1532 skinny_metadata = false;
1533 if (path->slots[0]) {
1534 path->slots[0]--;
1535 btrfs_item_key_to_cpu(path->nodes[0], &key,
1536 path->slots[0]);
1537 if (key.objectid == bytenr &&
1538 key.type == BTRFS_EXTENT_ITEM_KEY &&
1539 key.offset == num_bytes)
1540 ret = 0;
1541 }
1542 if (ret) {
1543 key.type = BTRFS_EXTENT_ITEM_KEY;
1544 key.offset = num_bytes;
1545 btrfs_release_path(path);
1546 goto again;
1547 }
1548 }
1549
79787eaa
JM
1550 if (ret && !insert) {
1551 err = -ENOENT;
1552 goto out;
fae7f21c 1553 } else if (WARN_ON(ret)) {
492104c8 1554 err = -EIO;
492104c8 1555 goto out;
79787eaa 1556 }
5d4f98a2
YZ
1557
1558 leaf = path->nodes[0];
1559 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1560#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1561 if (item_size < sizeof(*ei)) {
1562 if (!insert) {
1563 err = -ENOENT;
1564 goto out;
1565 }
1566 ret = convert_extent_item_v0(trans, root, path, owner,
1567 extra_size);
1568 if (ret < 0) {
1569 err = ret;
1570 goto out;
1571 }
1572 leaf = path->nodes[0];
1573 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1574 }
1575#endif
1576 BUG_ON(item_size < sizeof(*ei));
1577
5d4f98a2
YZ
1578 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1579 flags = btrfs_extent_flags(leaf, ei);
1580
1581 ptr = (unsigned long)(ei + 1);
1582 end = (unsigned long)ei + item_size;
1583
3173a18f 1584 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
5d4f98a2
YZ
1585 ptr += sizeof(struct btrfs_tree_block_info);
1586 BUG_ON(ptr > end);
5d4f98a2
YZ
1587 }
1588
1589 err = -ENOENT;
1590 while (1) {
1591 if (ptr >= end) {
1592 WARN_ON(ptr > end);
1593 break;
1594 }
1595 iref = (struct btrfs_extent_inline_ref *)ptr;
1596 type = btrfs_extent_inline_ref_type(leaf, iref);
1597 if (want < type)
1598 break;
1599 if (want > type) {
1600 ptr += btrfs_extent_inline_ref_size(type);
1601 continue;
1602 }
1603
1604 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1605 struct btrfs_extent_data_ref *dref;
1606 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1607 if (match_extent_data_ref(leaf, dref, root_objectid,
1608 owner, offset)) {
1609 err = 0;
1610 break;
1611 }
1612 if (hash_extent_data_ref_item(leaf, dref) <
1613 hash_extent_data_ref(root_objectid, owner, offset))
1614 break;
1615 } else {
1616 u64 ref_offset;
1617 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1618 if (parent > 0) {
1619 if (parent == ref_offset) {
1620 err = 0;
1621 break;
1622 }
1623 if (ref_offset < parent)
1624 break;
1625 } else {
1626 if (root_objectid == ref_offset) {
1627 err = 0;
1628 break;
1629 }
1630 if (ref_offset < root_objectid)
1631 break;
1632 }
1633 }
1634 ptr += btrfs_extent_inline_ref_size(type);
1635 }
1636 if (err == -ENOENT && insert) {
1637 if (item_size + extra_size >=
1638 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1639 err = -EAGAIN;
1640 goto out;
1641 }
1642 /*
1643 * To add new inline back ref, we have to make sure
1644 * there is no corresponding back ref item.
1645 * For simplicity, we just do not add new inline back
1646 * ref if there is any kind of item for this block
1647 */
2c47e605
YZ
1648 if (find_next_key(path, 0, &key) == 0 &&
1649 key.objectid == bytenr &&
85d4198e 1650 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
5d4f98a2
YZ
1651 err = -EAGAIN;
1652 goto out;
1653 }
1654 }
1655 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1656out:
85d4198e 1657 if (insert) {
5d4f98a2
YZ
1658 path->keep_locks = 0;
1659 btrfs_unlock_up_safe(path, 1);
1660 }
1661 return err;
1662}
1663
1664/*
1665 * helper to add new inline back ref
1666 */
1667static noinline_for_stack
fd279fae 1668void setup_inline_extent_backref(struct btrfs_root *root,
143bede5
JM
1669 struct btrfs_path *path,
1670 struct btrfs_extent_inline_ref *iref,
1671 u64 parent, u64 root_objectid,
1672 u64 owner, u64 offset, int refs_to_add,
1673 struct btrfs_delayed_extent_op *extent_op)
5d4f98a2
YZ
1674{
1675 struct extent_buffer *leaf;
1676 struct btrfs_extent_item *ei;
1677 unsigned long ptr;
1678 unsigned long end;
1679 unsigned long item_offset;
1680 u64 refs;
1681 int size;
1682 int type;
5d4f98a2
YZ
1683
1684 leaf = path->nodes[0];
1685 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1686 item_offset = (unsigned long)iref - (unsigned long)ei;
1687
1688 type = extent_ref_type(parent, owner);
1689 size = btrfs_extent_inline_ref_size(type);
1690
4b90c680 1691 btrfs_extend_item(root, path, size);
5d4f98a2
YZ
1692
1693 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1694 refs = btrfs_extent_refs(leaf, ei);
1695 refs += refs_to_add;
1696 btrfs_set_extent_refs(leaf, ei, refs);
1697 if (extent_op)
1698 __run_delayed_extent_op(extent_op, leaf, ei);
1699
1700 ptr = (unsigned long)ei + item_offset;
1701 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1702 if (ptr < end - size)
1703 memmove_extent_buffer(leaf, ptr + size, ptr,
1704 end - size - ptr);
1705
1706 iref = (struct btrfs_extent_inline_ref *)ptr;
1707 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1708 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1709 struct btrfs_extent_data_ref *dref;
1710 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1711 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1712 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1713 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1714 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1715 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1716 struct btrfs_shared_data_ref *sref;
1717 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1718 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1719 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1720 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1721 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1722 } else {
1723 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1724 }
1725 btrfs_mark_buffer_dirty(leaf);
5d4f98a2
YZ
1726}
1727
1728static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1729 struct btrfs_root *root,
1730 struct btrfs_path *path,
1731 struct btrfs_extent_inline_ref **ref_ret,
1732 u64 bytenr, u64 num_bytes, u64 parent,
1733 u64 root_objectid, u64 owner, u64 offset)
1734{
1735 int ret;
1736
1737 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1738 bytenr, num_bytes, parent,
1739 root_objectid, owner, offset, 0);
1740 if (ret != -ENOENT)
54aa1f4d 1741 return ret;
5d4f98a2 1742
b3b4aa74 1743 btrfs_release_path(path);
5d4f98a2
YZ
1744 *ref_ret = NULL;
1745
1746 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1747 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1748 root_objectid);
1749 } else {
1750 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1751 root_objectid, owner, offset);
b9473439 1752 }
5d4f98a2
YZ
1753 return ret;
1754}
31840ae1 1755
5d4f98a2
YZ
1756/*
1757 * helper to update/remove inline back ref
1758 */
1759static noinline_for_stack
afe5fea7 1760void update_inline_extent_backref(struct btrfs_root *root,
143bede5
JM
1761 struct btrfs_path *path,
1762 struct btrfs_extent_inline_ref *iref,
1763 int refs_to_mod,
1764 struct btrfs_delayed_extent_op *extent_op)
5d4f98a2
YZ
1765{
1766 struct extent_buffer *leaf;
1767 struct btrfs_extent_item *ei;
1768 struct btrfs_extent_data_ref *dref = NULL;
1769 struct btrfs_shared_data_ref *sref = NULL;
1770 unsigned long ptr;
1771 unsigned long end;
1772 u32 item_size;
1773 int size;
1774 int type;
5d4f98a2
YZ
1775 u64 refs;
1776
1777 leaf = path->nodes[0];
1778 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1779 refs = btrfs_extent_refs(leaf, ei);
1780 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1781 refs += refs_to_mod;
1782 btrfs_set_extent_refs(leaf, ei, refs);
1783 if (extent_op)
1784 __run_delayed_extent_op(extent_op, leaf, ei);
1785
1786 type = btrfs_extent_inline_ref_type(leaf, iref);
1787
1788 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1789 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1790 refs = btrfs_extent_data_ref_count(leaf, dref);
1791 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1792 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1793 refs = btrfs_shared_data_ref_count(leaf, sref);
1794 } else {
1795 refs = 1;
1796 BUG_ON(refs_to_mod != -1);
56bec294 1797 }
31840ae1 1798
5d4f98a2
YZ
1799 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1800 refs += refs_to_mod;
1801
1802 if (refs > 0) {
1803 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1804 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1805 else
1806 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1807 } else {
1808 size = btrfs_extent_inline_ref_size(type);
1809 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1810 ptr = (unsigned long)iref;
1811 end = (unsigned long)ei + item_size;
1812 if (ptr + size < end)
1813 memmove_extent_buffer(leaf, ptr, ptr + size,
1814 end - ptr - size);
1815 item_size -= size;
afe5fea7 1816 btrfs_truncate_item(root, path, item_size, 1);
5d4f98a2
YZ
1817 }
1818 btrfs_mark_buffer_dirty(leaf);
5d4f98a2
YZ
1819}
1820
1821static noinline_for_stack
1822int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1823 struct btrfs_root *root,
1824 struct btrfs_path *path,
1825 u64 bytenr, u64 num_bytes, u64 parent,
1826 u64 root_objectid, u64 owner,
1827 u64 offset, int refs_to_add,
1828 struct btrfs_delayed_extent_op *extent_op)
1829{
1830 struct btrfs_extent_inline_ref *iref;
1831 int ret;
1832
1833 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1834 bytenr, num_bytes, parent,
1835 root_objectid, owner, offset, 1);
1836 if (ret == 0) {
1837 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
afe5fea7 1838 update_inline_extent_backref(root, path, iref,
143bede5 1839 refs_to_add, extent_op);
5d4f98a2 1840 } else if (ret == -ENOENT) {
fd279fae 1841 setup_inline_extent_backref(root, path, iref, parent,
143bede5
JM
1842 root_objectid, owner, offset,
1843 refs_to_add, extent_op);
1844 ret = 0;
771ed689 1845 }
5d4f98a2
YZ
1846 return ret;
1847}
31840ae1 1848
5d4f98a2
YZ
1849static int insert_extent_backref(struct btrfs_trans_handle *trans,
1850 struct btrfs_root *root,
1851 struct btrfs_path *path,
1852 u64 bytenr, u64 parent, u64 root_objectid,
1853 u64 owner, u64 offset, int refs_to_add)
1854{
1855 int ret;
1856 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1857 BUG_ON(refs_to_add != 1);
1858 ret = insert_tree_block_ref(trans, root, path, bytenr,
1859 parent, root_objectid);
1860 } else {
1861 ret = insert_extent_data_ref(trans, root, path, bytenr,
1862 parent, root_objectid,
1863 owner, offset, refs_to_add);
1864 }
1865 return ret;
1866}
56bec294 1867
5d4f98a2
YZ
1868static int remove_extent_backref(struct btrfs_trans_handle *trans,
1869 struct btrfs_root *root,
1870 struct btrfs_path *path,
1871 struct btrfs_extent_inline_ref *iref,
1872 int refs_to_drop, int is_data)
1873{
143bede5 1874 int ret = 0;
b9473439 1875
5d4f98a2
YZ
1876 BUG_ON(!is_data && refs_to_drop != 1);
1877 if (iref) {
afe5fea7 1878 update_inline_extent_backref(root, path, iref,
143bede5 1879 -refs_to_drop, NULL);
5d4f98a2
YZ
1880 } else if (is_data) {
1881 ret = remove_extent_data_ref(trans, root, path, refs_to_drop);
1882 } else {
1883 ret = btrfs_del_item(trans, root, path);
1884 }
1885 return ret;
1886}
1887
5378e607 1888static int btrfs_issue_discard(struct block_device *bdev,
5d4f98a2
YZ
1889 u64 start, u64 len)
1890{
5378e607 1891 return blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_NOFS, 0);
5d4f98a2 1892}
5d4f98a2
YZ
1893
1894static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
5378e607 1895 u64 num_bytes, u64 *actual_bytes)
5d4f98a2 1896{
5d4f98a2 1897 int ret;
5378e607 1898 u64 discarded_bytes = 0;
a1d3c478 1899 struct btrfs_bio *bbio = NULL;
5d4f98a2 1900
e244a0ae 1901
5d4f98a2 1902 /* Tell the block device(s) that the sectors can be discarded */
3ec706c8 1903 ret = btrfs_map_block(root->fs_info, REQ_DISCARD,
a1d3c478 1904 bytenr, &num_bytes, &bbio, 0);
79787eaa 1905 /* Error condition is -ENOMEM */
5d4f98a2 1906 if (!ret) {
a1d3c478 1907 struct btrfs_bio_stripe *stripe = bbio->stripes;
5d4f98a2
YZ
1908 int i;
1909
5d4f98a2 1910
a1d3c478 1911 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
d5e2003c
JB
1912 if (!stripe->dev->can_discard)
1913 continue;
1914
5378e607
LD
1915 ret = btrfs_issue_discard(stripe->dev->bdev,
1916 stripe->physical,
1917 stripe->length);
1918 if (!ret)
1919 discarded_bytes += stripe->length;
1920 else if (ret != -EOPNOTSUPP)
79787eaa 1921 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
d5e2003c
JB
1922
1923 /*
1924 * Just in case we get back EOPNOTSUPP for some reason,
1925 * just ignore the return value so we don't screw up
1926 * people calling discard_extent.
1927 */
1928 ret = 0;
5d4f98a2 1929 }
a1d3c478 1930 kfree(bbio);
5d4f98a2 1931 }
5378e607
LD
1932
1933 if (actual_bytes)
1934 *actual_bytes = discarded_bytes;
1935
5d4f98a2 1936
53b381b3
DW
1937 if (ret == -EOPNOTSUPP)
1938 ret = 0;
5d4f98a2 1939 return ret;
5d4f98a2
YZ
1940}
1941
79787eaa 1942/* Can return -ENOMEM */
5d4f98a2
YZ
1943int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1944 struct btrfs_root *root,
1945 u64 bytenr, u64 num_bytes, u64 parent,
66d7e7f0 1946 u64 root_objectid, u64 owner, u64 offset, int for_cow)
5d4f98a2
YZ
1947{
1948 int ret;
66d7e7f0
AJ
1949 struct btrfs_fs_info *fs_info = root->fs_info;
1950
5d4f98a2
YZ
1951 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
1952 root_objectid == BTRFS_TREE_LOG_OBJECTID);
1953
1954 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
66d7e7f0
AJ
1955 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
1956 num_bytes,
5d4f98a2 1957 parent, root_objectid, (int)owner,
66d7e7f0 1958 BTRFS_ADD_DELAYED_REF, NULL, for_cow);
5d4f98a2 1959 } else {
66d7e7f0
AJ
1960 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
1961 num_bytes,
5d4f98a2 1962 parent, root_objectid, owner, offset,
66d7e7f0 1963 BTRFS_ADD_DELAYED_REF, NULL, for_cow);
5d4f98a2
YZ
1964 }
1965 return ret;
1966}
1967
1968static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1969 struct btrfs_root *root,
1970 u64 bytenr, u64 num_bytes,
1971 u64 parent, u64 root_objectid,
1972 u64 owner, u64 offset, int refs_to_add,
1973 struct btrfs_delayed_extent_op *extent_op)
1974{
1975 struct btrfs_path *path;
1976 struct extent_buffer *leaf;
1977 struct btrfs_extent_item *item;
1978 u64 refs;
1979 int ret;
5d4f98a2
YZ
1980
1981 path = btrfs_alloc_path();
1982 if (!path)
1983 return -ENOMEM;
1984
1985 path->reada = 1;
1986 path->leave_spinning = 1;
1987 /* this will setup the path even if it fails to insert the back ref */
1988 ret = insert_inline_extent_backref(trans, root->fs_info->extent_root,
1989 path, bytenr, num_bytes, parent,
1990 root_objectid, owner, offset,
1991 refs_to_add, extent_op);
30d133fc 1992 if (ret != -EAGAIN)
5d4f98a2
YZ
1993 goto out;
1994
5d4f98a2
YZ
1995 leaf = path->nodes[0];
1996 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1997 refs = btrfs_extent_refs(leaf, item);
1998 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
1999 if (extent_op)
2000 __run_delayed_extent_op(extent_op, leaf, item);
56bec294 2001
5d4f98a2 2002 btrfs_mark_buffer_dirty(leaf);
b3b4aa74 2003 btrfs_release_path(path);
56bec294
CM
2004
2005 path->reada = 1;
b9473439
CM
2006 path->leave_spinning = 1;
2007
56bec294
CM
2008 /* now insert the actual backref */
2009 ret = insert_extent_backref(trans, root->fs_info->extent_root,
5d4f98a2
YZ
2010 path, bytenr, parent, root_objectid,
2011 owner, offset, refs_to_add);
79787eaa
JM
2012 if (ret)
2013 btrfs_abort_transaction(trans, root, ret);
5d4f98a2 2014out:
56bec294 2015 btrfs_free_path(path);
30d133fc 2016 return ret;
56bec294
CM
2017}
2018
5d4f98a2
YZ
2019static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
2020 struct btrfs_root *root,
2021 struct btrfs_delayed_ref_node *node,
2022 struct btrfs_delayed_extent_op *extent_op,
2023 int insert_reserved)
56bec294 2024{
5d4f98a2
YZ
2025 int ret = 0;
2026 struct btrfs_delayed_data_ref *ref;
2027 struct btrfs_key ins;
2028 u64 parent = 0;
2029 u64 ref_root = 0;
2030 u64 flags = 0;
2031
2032 ins.objectid = node->bytenr;
2033 ins.offset = node->num_bytes;
2034 ins.type = BTRFS_EXTENT_ITEM_KEY;
2035
2036 ref = btrfs_delayed_node_to_data_ref(node);
599c75ec
LB
2037 trace_run_delayed_data_ref(node, ref, node->action);
2038
5d4f98a2
YZ
2039 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2040 parent = ref->parent;
2041 else
2042 ref_root = ref->root;
2043
2044 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
3173a18f 2045 if (extent_op)
5d4f98a2 2046 flags |= extent_op->flags_to_set;
5d4f98a2
YZ
2047 ret = alloc_reserved_file_extent(trans, root,
2048 parent, ref_root, flags,
2049 ref->objectid, ref->offset,
2050 &ins, node->ref_mod);
5d4f98a2
YZ
2051 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2052 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2053 node->num_bytes, parent,
2054 ref_root, ref->objectid,
2055 ref->offset, node->ref_mod,
2056 extent_op);
2057 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2058 ret = __btrfs_free_extent(trans, root, node->bytenr,
2059 node->num_bytes, parent,
2060 ref_root, ref->objectid,
2061 ref->offset, node->ref_mod,
2062 extent_op);
2063 } else {
2064 BUG();
2065 }
2066 return ret;
2067}
2068
2069static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2070 struct extent_buffer *leaf,
2071 struct btrfs_extent_item *ei)
2072{
2073 u64 flags = btrfs_extent_flags(leaf, ei);
2074 if (extent_op->update_flags) {
2075 flags |= extent_op->flags_to_set;
2076 btrfs_set_extent_flags(leaf, ei, flags);
2077 }
2078
2079 if (extent_op->update_key) {
2080 struct btrfs_tree_block_info *bi;
2081 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2082 bi = (struct btrfs_tree_block_info *)(ei + 1);
2083 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2084 }
2085}
2086
2087static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
2088 struct btrfs_root *root,
2089 struct btrfs_delayed_ref_node *node,
2090 struct btrfs_delayed_extent_op *extent_op)
2091{
2092 struct btrfs_key key;
2093 struct btrfs_path *path;
2094 struct btrfs_extent_item *ei;
2095 struct extent_buffer *leaf;
2096 u32 item_size;
56bec294 2097 int ret;
5d4f98a2 2098 int err = 0;
b1c79e09 2099 int metadata = !extent_op->is_data;
5d4f98a2 2100
79787eaa
JM
2101 if (trans->aborted)
2102 return 0;
2103
3173a18f
JB
2104 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2105 metadata = 0;
2106
5d4f98a2
YZ
2107 path = btrfs_alloc_path();
2108 if (!path)
2109 return -ENOMEM;
2110
2111 key.objectid = node->bytenr;
5d4f98a2 2112
3173a18f 2113 if (metadata) {
3173a18f 2114 key.type = BTRFS_METADATA_ITEM_KEY;
b1c79e09 2115 key.offset = extent_op->level;
3173a18f
JB
2116 } else {
2117 key.type = BTRFS_EXTENT_ITEM_KEY;
2118 key.offset = node->num_bytes;
2119 }
2120
2121again:
5d4f98a2
YZ
2122 path->reada = 1;
2123 path->leave_spinning = 1;
2124 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
2125 path, 0, 1);
2126 if (ret < 0) {
2127 err = ret;
2128 goto out;
2129 }
2130 if (ret > 0) {
3173a18f 2131 if (metadata) {
55994887
FDBM
2132 if (path->slots[0] > 0) {
2133 path->slots[0]--;
2134 btrfs_item_key_to_cpu(path->nodes[0], &key,
2135 path->slots[0]);
2136 if (key.objectid == node->bytenr &&
2137 key.type == BTRFS_EXTENT_ITEM_KEY &&
2138 key.offset == node->num_bytes)
2139 ret = 0;
2140 }
2141 if (ret > 0) {
2142 btrfs_release_path(path);
2143 metadata = 0;
3173a18f 2144
55994887
FDBM
2145 key.objectid = node->bytenr;
2146 key.offset = node->num_bytes;
2147 key.type = BTRFS_EXTENT_ITEM_KEY;
2148 goto again;
2149 }
2150 } else {
2151 err = -EIO;
2152 goto out;
3173a18f 2153 }
5d4f98a2
YZ
2154 }
2155
2156 leaf = path->nodes[0];
2157 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2158#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2159 if (item_size < sizeof(*ei)) {
2160 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
2161 path, (u64)-1, 0);
2162 if (ret < 0) {
2163 err = ret;
2164 goto out;
2165 }
2166 leaf = path->nodes[0];
2167 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2168 }
2169#endif
2170 BUG_ON(item_size < sizeof(*ei));
2171 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2172 __run_delayed_extent_op(extent_op, leaf, ei);
56bec294 2173
5d4f98a2
YZ
2174 btrfs_mark_buffer_dirty(leaf);
2175out:
2176 btrfs_free_path(path);
2177 return err;
56bec294
CM
2178}
2179
5d4f98a2
YZ
2180static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2181 struct btrfs_root *root,
2182 struct btrfs_delayed_ref_node *node,
2183 struct btrfs_delayed_extent_op *extent_op,
2184 int insert_reserved)
56bec294
CM
2185{
2186 int ret = 0;
5d4f98a2
YZ
2187 struct btrfs_delayed_tree_ref *ref;
2188 struct btrfs_key ins;
2189 u64 parent = 0;
2190 u64 ref_root = 0;
3173a18f
JB
2191 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
2192 SKINNY_METADATA);
56bec294 2193
5d4f98a2 2194 ref = btrfs_delayed_node_to_tree_ref(node);
599c75ec
LB
2195 trace_run_delayed_tree_ref(node, ref, node->action);
2196
5d4f98a2
YZ
2197 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2198 parent = ref->parent;
2199 else
2200 ref_root = ref->root;
2201
3173a18f
JB
2202 ins.objectid = node->bytenr;
2203 if (skinny_metadata) {
2204 ins.offset = ref->level;
2205 ins.type = BTRFS_METADATA_ITEM_KEY;
2206 } else {
2207 ins.offset = node->num_bytes;
2208 ins.type = BTRFS_EXTENT_ITEM_KEY;
2209 }
2210
5d4f98a2
YZ
2211 BUG_ON(node->ref_mod != 1);
2212 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
3173a18f 2213 BUG_ON(!extent_op || !extent_op->update_flags);
5d4f98a2
YZ
2214 ret = alloc_reserved_tree_block(trans, root,
2215 parent, ref_root,
2216 extent_op->flags_to_set,
2217 &extent_op->key,
2218 ref->level, &ins);
5d4f98a2
YZ
2219 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2220 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2221 node->num_bytes, parent, ref_root,
2222 ref->level, 0, 1, extent_op);
2223 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2224 ret = __btrfs_free_extent(trans, root, node->bytenr,
2225 node->num_bytes, parent, ref_root,
2226 ref->level, 0, 1, extent_op);
2227 } else {
2228 BUG();
2229 }
56bec294
CM
2230 return ret;
2231}
2232
2233/* helper function to actually process a single delayed ref entry */
5d4f98a2
YZ
2234static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2235 struct btrfs_root *root,
2236 struct btrfs_delayed_ref_node *node,
2237 struct btrfs_delayed_extent_op *extent_op,
2238 int insert_reserved)
56bec294 2239{
79787eaa
JM
2240 int ret = 0;
2241
857cc2fc
JB
2242 if (trans->aborted) {
2243 if (insert_reserved)
2244 btrfs_pin_extent(root, node->bytenr,
2245 node->num_bytes, 1);
79787eaa 2246 return 0;
857cc2fc 2247 }
79787eaa 2248
5d4f98a2 2249 if (btrfs_delayed_ref_is_head(node)) {
56bec294
CM
2250 struct btrfs_delayed_ref_head *head;
2251 /*
2252 * we've hit the end of the chain and we were supposed
2253 * to insert this extent into the tree. But, it got
2254 * deleted before we ever needed to insert it, so all
2255 * we have to do is clean up the accounting
2256 */
5d4f98a2
YZ
2257 BUG_ON(extent_op);
2258 head = btrfs_delayed_node_to_head(node);
599c75ec
LB
2259 trace_run_delayed_ref_head(node, head, node->action);
2260
56bec294 2261 if (insert_reserved) {
f0486c68
YZ
2262 btrfs_pin_extent(root, node->bytenr,
2263 node->num_bytes, 1);
5d4f98a2
YZ
2264 if (head->is_data) {
2265 ret = btrfs_del_csums(trans, root,
2266 node->bytenr,
2267 node->num_bytes);
5d4f98a2 2268 }
56bec294 2269 }
79787eaa 2270 return ret;
56bec294
CM
2271 }
2272
5d4f98a2
YZ
2273 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2274 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2275 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2276 insert_reserved);
2277 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2278 node->type == BTRFS_SHARED_DATA_REF_KEY)
2279 ret = run_delayed_data_ref(trans, root, node, extent_op,
2280 insert_reserved);
2281 else
2282 BUG();
2283 return ret;
56bec294
CM
2284}
2285
2286static noinline struct btrfs_delayed_ref_node *
2287select_delayed_ref(struct btrfs_delayed_ref_head *head)
2288{
2289 struct rb_node *node;
2290 struct btrfs_delayed_ref_node *ref;
2291 int action = BTRFS_ADD_DELAYED_REF;
2292again:
2293 /*
2294 * select delayed ref of type BTRFS_ADD_DELAYED_REF first.
2295 * this prevents ref count from going down to zero when
2296 * there still are pending delayed ref.
2297 */
2298 node = rb_prev(&head->node.rb_node);
2299 while (1) {
2300 if (!node)
2301 break;
2302 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2303 rb_node);
2304 if (ref->bytenr != head->node.bytenr)
2305 break;
5d4f98a2 2306 if (ref->action == action)
56bec294
CM
2307 return ref;
2308 node = rb_prev(node);
2309 }
2310 if (action == BTRFS_ADD_DELAYED_REF) {
2311 action = BTRFS_DROP_DELAYED_REF;
2312 goto again;
2313 }
2314 return NULL;
2315}
2316
79787eaa
JM
2317/*
2318 * Returns 0 on success or if called with an already aborted transaction.
2319 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2320 */
c3e69d58
CM
2321static noinline int run_clustered_refs(struct btrfs_trans_handle *trans,
2322 struct btrfs_root *root,
2323 struct list_head *cluster)
56bec294 2324{
56bec294
CM
2325 struct btrfs_delayed_ref_root *delayed_refs;
2326 struct btrfs_delayed_ref_node *ref;
2327 struct btrfs_delayed_ref_head *locked_ref = NULL;
5d4f98a2 2328 struct btrfs_delayed_extent_op *extent_op;
097b8a7c 2329 struct btrfs_fs_info *fs_info = root->fs_info;
56bec294 2330 int ret;
c3e69d58 2331 int count = 0;
56bec294 2332 int must_insert_reserved = 0;
56bec294
CM
2333
2334 delayed_refs = &trans->transaction->delayed_refs;
56bec294
CM
2335 while (1) {
2336 if (!locked_ref) {
c3e69d58
CM
2337 /* pick a new head ref from the cluster list */
2338 if (list_empty(cluster))
56bec294 2339 break;
56bec294 2340
c3e69d58
CM
2341 locked_ref = list_entry(cluster->next,
2342 struct btrfs_delayed_ref_head, cluster);
2343
2344 /* grab the lock that says we are going to process
2345 * all the refs for this head */
2346 ret = btrfs_delayed_ref_lock(trans, locked_ref);
2347
2348 /*
2349 * we may have dropped the spin lock to get the head
2350 * mutex lock, and that might have given someone else
2351 * time to free the head. If that's true, it has been
2352 * removed from our list and we can move on.
2353 */
2354 if (ret == -EAGAIN) {
2355 locked_ref = NULL;
2356 count++;
2357 continue;
56bec294
CM
2358 }
2359 }
a28ec197 2360
ae1e206b
JB
2361 /*
2362 * We need to try and merge add/drops of the same ref since we
2363 * can run into issues with relocate dropping the implicit ref
2364 * and then it being added back again before the drop can
2365 * finish. If we merged anything we need to re-loop so we can
2366 * get a good ref.
2367 */
2368 btrfs_merge_delayed_refs(trans, fs_info, delayed_refs,
2369 locked_ref);
2370
d1270cd9
AJ
2371 /*
2372 * locked_ref is the head node, so we have to go one
2373 * node back for any delayed ref updates
2374 */
2375 ref = select_delayed_ref(locked_ref);
2376
2377 if (ref && ref->seq &&
097b8a7c 2378 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
d1270cd9
AJ
2379 /*
2380 * there are still refs with lower seq numbers in the
2381 * process of being added. Don't run this ref yet.
2382 */
2383 list_del_init(&locked_ref->cluster);
093486c4 2384 btrfs_delayed_ref_unlock(locked_ref);
d1270cd9
AJ
2385 locked_ref = NULL;
2386 delayed_refs->num_heads_ready++;
2387 spin_unlock(&delayed_refs->lock);
2388 cond_resched();
2389 spin_lock(&delayed_refs->lock);
2390 continue;
2391 }
2392
56bec294
CM
2393 /*
2394 * record the must insert reserved flag before we
2395 * drop the spin lock.
2396 */
2397 must_insert_reserved = locked_ref->must_insert_reserved;
2398 locked_ref->must_insert_reserved = 0;
7bb86316 2399
5d4f98a2
YZ
2400 extent_op = locked_ref->extent_op;
2401 locked_ref->extent_op = NULL;
2402
56bec294
CM
2403 if (!ref) {
2404 /* All delayed refs have been processed, Go ahead
2405 * and send the head node to run_one_delayed_ref,
2406 * so that any accounting fixes can happen
2407 */
2408 ref = &locked_ref->node;
5d4f98a2
YZ
2409
2410 if (extent_op && must_insert_reserved) {
78a6184a 2411 btrfs_free_delayed_extent_op(extent_op);
5d4f98a2
YZ
2412 extent_op = NULL;
2413 }
2414
2415 if (extent_op) {
2416 spin_unlock(&delayed_refs->lock);
2417
2418 ret = run_delayed_extent_op(trans, root,
2419 ref, extent_op);
78a6184a 2420 btrfs_free_delayed_extent_op(extent_op);
5d4f98a2 2421
79787eaa 2422 if (ret) {
857cc2fc
JB
2423 /*
2424 * Need to reset must_insert_reserved if
2425 * there was an error so the abort stuff
2426 * can cleanup the reserved space
2427 * properly.
2428 */
2429 if (must_insert_reserved)
2430 locked_ref->must_insert_reserved = 1;
c2cf52eb 2431 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
253beebd 2432 spin_lock(&delayed_refs->lock);
093486c4 2433 btrfs_delayed_ref_unlock(locked_ref);
79787eaa
JM
2434 return ret;
2435 }
2436
203bf287 2437 goto next;
5d4f98a2 2438 }
56bec294 2439 }
02217ed2 2440
56bec294
CM
2441 ref->in_tree = 0;
2442 rb_erase(&ref->rb_node, &delayed_refs->root);
2443 delayed_refs->num_entries--;
093486c4 2444 if (!btrfs_delayed_ref_is_head(ref)) {
22cd2e7d
AJ
2445 /*
2446 * when we play the delayed ref, also correct the
2447 * ref_mod on head
2448 */
2449 switch (ref->action) {
2450 case BTRFS_ADD_DELAYED_REF:
2451 case BTRFS_ADD_DELAYED_EXTENT:
2452 locked_ref->node.ref_mod -= ref->ref_mod;
2453 break;
2454 case BTRFS_DROP_DELAYED_REF:
2455 locked_ref->node.ref_mod += ref->ref_mod;
2456 break;
2457 default:
2458 WARN_ON(1);
2459 }
b8d0c69b
JB
2460 } else {
2461 list_del_init(&locked_ref->cluster);
22cd2e7d 2462 }
56bec294 2463 spin_unlock(&delayed_refs->lock);
925baedd 2464
5d4f98a2 2465 ret = run_one_delayed_ref(trans, root, ref, extent_op,
56bec294 2466 must_insert_reserved);
eb099670 2467
78a6184a 2468 btrfs_free_delayed_extent_op(extent_op);
79787eaa 2469 if (ret) {
093486c4
MX
2470 btrfs_delayed_ref_unlock(locked_ref);
2471 btrfs_put_delayed_ref(ref);
c2cf52eb 2472 btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret);
253beebd 2473 spin_lock(&delayed_refs->lock);
79787eaa
JM
2474 return ret;
2475 }
2476
093486c4
MX
2477 /*
2478 * If this node is a head, that means all the refs in this head
2479 * have been dealt with, and we will pick the next head to deal
2480 * with, so we must unlock the head and drop it from the cluster
2481 * list before we release it.
2482 */
2483 if (btrfs_delayed_ref_is_head(ref)) {
093486c4
MX
2484 btrfs_delayed_ref_unlock(locked_ref);
2485 locked_ref = NULL;
2486 }
2487 btrfs_put_delayed_ref(ref);
2488 count++;
203bf287 2489next:
c3e69d58
CM
2490 cond_resched();
2491 spin_lock(&delayed_refs->lock);
2492 }
2493 return count;
2494}
2495
709c0486
AJ
2496#ifdef SCRAMBLE_DELAYED_REFS
2497/*
2498 * Normally delayed refs get processed in ascending bytenr order. This
2499 * correlates in most cases to the order added. To expose dependencies on this
2500 * order, we start to process the tree in the middle instead of the beginning
2501 */
2502static u64 find_middle(struct rb_root *root)
2503{
2504 struct rb_node *n = root->rb_node;
2505 struct btrfs_delayed_ref_node *entry;
2506 int alt = 1;
2507 u64 middle;
2508 u64 first = 0, last = 0;
2509
2510 n = rb_first(root);
2511 if (n) {
2512 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2513 first = entry->bytenr;
2514 }
2515 n = rb_last(root);
2516 if (n) {
2517 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2518 last = entry->bytenr;
2519 }
2520 n = root->rb_node;
2521
2522 while (n) {
2523 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2524 WARN_ON(!entry->in_tree);
2525
2526 middle = entry->bytenr;
2527
2528 if (alt)
2529 n = n->rb_left;
2530 else
2531 n = n->rb_right;
2532
2533 alt = 1 - alt;
2534 }
2535 return middle;
2536}
2537#endif
2538
bed92eae
AJ
2539int btrfs_delayed_refs_qgroup_accounting(struct btrfs_trans_handle *trans,
2540 struct btrfs_fs_info *fs_info)
2541{
2542 struct qgroup_update *qgroup_update;
2543 int ret = 0;
2544
2545 if (list_empty(&trans->qgroup_ref_list) !=
2546 !trans->delayed_ref_elem.seq) {
2547 /* list without seq or seq without list */
c2cf52eb 2548 btrfs_err(fs_info,
fc36ed7e 2549 "qgroup accounting update error, list is%s empty, seq is %#x.%x",
bed92eae 2550 list_empty(&trans->qgroup_ref_list) ? "" : " not",
fc36ed7e
JS
2551 (u32)(trans->delayed_ref_elem.seq >> 32),
2552 (u32)trans->delayed_ref_elem.seq);
bed92eae
AJ
2553 BUG();
2554 }
2555
2556 if (!trans->delayed_ref_elem.seq)
2557 return 0;
2558
2559 while (!list_empty(&trans->qgroup_ref_list)) {
2560 qgroup_update = list_first_entry(&trans->qgroup_ref_list,
2561 struct qgroup_update, list);
2562 list_del(&qgroup_update->list);
2563 if (!ret)
2564 ret = btrfs_qgroup_account_ref(
2565 trans, fs_info, qgroup_update->node,
2566 qgroup_update->extent_op);
2567 kfree(qgroup_update);
2568 }
2569
2570 btrfs_put_tree_mod_seq(fs_info, &trans->delayed_ref_elem);
2571
2572 return ret;
2573}
2574
bb721703
CM
2575static int refs_newer(struct btrfs_delayed_ref_root *delayed_refs, int seq,
2576 int count)
2577{
2578 int val = atomic_read(&delayed_refs->ref_seq);
2579
2580 if (val < seq || val >= seq + count)
2581 return 1;
2582 return 0;
2583}
2584
1be41b78
JB
2585static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads)
2586{
2587 u64 num_bytes;
2588
2589 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2590 sizeof(struct btrfs_extent_inline_ref));
2591 if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2592 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2593
2594 /*
2595 * We don't ever fill up leaves all the way so multiply by 2 just to be
2596 * closer to what we're really going to want to ouse.
2597 */
2598 return div64_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root));
2599}
2600
2601int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
2602 struct btrfs_root *root)
2603{
2604 struct btrfs_block_rsv *global_rsv;
2605 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
2606 u64 num_bytes;
2607 int ret = 0;
2608
2609 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
2610 num_heads = heads_to_leaves(root, num_heads);
2611 if (num_heads > 1)
2612 num_bytes += (num_heads - 1) * root->leafsize;
2613 num_bytes <<= 1;
2614 global_rsv = &root->fs_info->global_block_rsv;
2615
2616 /*
2617 * If we can't allocate any more chunks lets make sure we have _lots_ of
2618 * wiggle room since running delayed refs can create more delayed refs.
2619 */
2620 if (global_rsv->space_info->full)
2621 num_bytes <<= 1;
2622
2623 spin_lock(&global_rsv->lock);
2624 if (global_rsv->reserved <= num_bytes)
2625 ret = 1;
2626 spin_unlock(&global_rsv->lock);
2627 return ret;
2628}
2629
c3e69d58
CM
2630/*
2631 * this starts processing the delayed reference count updates and
2632 * extent insertions we have queued up so far. count can be
2633 * 0, which means to process everything in the tree at the start
2634 * of the run (but not newly added entries), or it can be some target
2635 * number you'd like to process.
79787eaa
JM
2636 *
2637 * Returns 0 on success or if called with an aborted transaction
2638 * Returns <0 on error and aborts the transaction
c3e69d58
CM
2639 */
2640int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2641 struct btrfs_root *root, unsigned long count)
2642{
2643 struct rb_node *node;
2644 struct btrfs_delayed_ref_root *delayed_refs;
2645 struct btrfs_delayed_ref_node *ref;
2646 struct list_head cluster;
2647 int ret;
a168650c 2648 u64 delayed_start;
c3e69d58
CM
2649 int run_all = count == (unsigned long)-1;
2650 int run_most = 0;
1fa11e26 2651 int loops;
c3e69d58 2652
79787eaa
JM
2653 /* We'll clean this up in btrfs_cleanup_transaction */
2654 if (trans->aborted)
2655 return 0;
2656
c3e69d58
CM
2657 if (root == root->fs_info->extent_root)
2658 root = root->fs_info->tree_root;
2659
edf39272
JS
2660 btrfs_delayed_refs_qgroup_accounting(trans, root->fs_info);
2661
c3e69d58
CM
2662 delayed_refs = &trans->transaction->delayed_refs;
2663 INIT_LIST_HEAD(&cluster);
bb721703
CM
2664 if (count == 0) {
2665 count = delayed_refs->num_entries * 2;
2666 run_most = 1;
2667 }
2668
2669 if (!run_all && !run_most) {
2670 int old;
2671 int seq = atomic_read(&delayed_refs->ref_seq);
2672
2673progress:
2674 old = atomic_cmpxchg(&delayed_refs->procs_running_refs, 0, 1);
2675 if (old) {
2676 DEFINE_WAIT(__wait);
1be41b78
JB
2677 if (delayed_refs->flushing ||
2678 !btrfs_should_throttle_delayed_refs(trans, root))
bb721703
CM
2679 return 0;
2680
2681 prepare_to_wait(&delayed_refs->wait, &__wait,
2682 TASK_UNINTERRUPTIBLE);
2683
2684 old = atomic_cmpxchg(&delayed_refs->procs_running_refs, 0, 1);
2685 if (old) {
2686 schedule();
2687 finish_wait(&delayed_refs->wait, &__wait);
2688
2689 if (!refs_newer(delayed_refs, seq, 256))
2690 goto progress;
2691 else
2692 return 0;
2693 } else {
2694 finish_wait(&delayed_refs->wait, &__wait);
2695 goto again;
2696 }
2697 }
2698
2699 } else {
2700 atomic_inc(&delayed_refs->procs_running_refs);
2701 }
2702
c3e69d58 2703again:
1fa11e26 2704 loops = 0;
c3e69d58 2705 spin_lock(&delayed_refs->lock);
097b8a7c 2706
709c0486
AJ
2707#ifdef SCRAMBLE_DELAYED_REFS
2708 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2709#endif
2710
c3e69d58
CM
2711 while (1) {
2712 if (!(run_all || run_most) &&
1be41b78 2713 !btrfs_should_throttle_delayed_refs(trans, root))
c3e69d58 2714 break;
eb099670 2715
56bec294 2716 /*
c3e69d58
CM
2717 * go find something we can process in the rbtree. We start at
2718 * the beginning of the tree, and then build a cluster
2719 * of refs to process starting at the first one we are able to
2720 * lock
56bec294 2721 */
a168650c 2722 delayed_start = delayed_refs->run_delayed_start;
c3e69d58
CM
2723 ret = btrfs_find_ref_cluster(trans, &cluster,
2724 delayed_refs->run_delayed_start);
2725 if (ret)
56bec294
CM
2726 break;
2727
c3e69d58 2728 ret = run_clustered_refs(trans, root, &cluster);
79787eaa 2729 if (ret < 0) {
093486c4 2730 btrfs_release_ref_cluster(&cluster);
79787eaa
JM
2731 spin_unlock(&delayed_refs->lock);
2732 btrfs_abort_transaction(trans, root, ret);
bb721703 2733 atomic_dec(&delayed_refs->procs_running_refs);
f971fe29 2734 wake_up(&delayed_refs->wait);
79787eaa
JM
2735 return ret;
2736 }
c3e69d58 2737
bb721703
CM
2738 atomic_add(ret, &delayed_refs->ref_seq);
2739
c3e69d58
CM
2740 count -= min_t(unsigned long, ret, count);
2741
2742 if (count == 0)
2743 break;
a168650c 2744
1fa11e26
AJ
2745 if (delayed_start >= delayed_refs->run_delayed_start) {
2746 if (loops == 0) {
2747 /*
2748 * btrfs_find_ref_cluster looped. let's do one
2749 * more cycle. if we don't run any delayed ref
2750 * during that cycle (because we can't because
2751 * all of them are blocked), bail out.
2752 */
2753 loops = 1;
2754 } else {
2755 /*
2756 * no runnable refs left, stop trying
2757 */
2758 BUG_ON(run_all);
2759 break;
2760 }
2761 }
2762 if (ret) {
a168650c 2763 /* refs were run, let's reset staleness detection */
1fa11e26 2764 loops = 0;
a168650c 2765 }
eb099670 2766 }
c3e69d58 2767
56bec294 2768 if (run_all) {
ea658bad
JB
2769 if (!list_empty(&trans->new_bgs)) {
2770 spin_unlock(&delayed_refs->lock);
2771 btrfs_create_pending_block_groups(trans, root);
2772 spin_lock(&delayed_refs->lock);
2773 }
2774
56bec294 2775 node = rb_first(&delayed_refs->root);
c3e69d58 2776 if (!node)
56bec294 2777 goto out;
c3e69d58 2778 count = (unsigned long)-1;
e9d0b13b 2779
56bec294
CM
2780 while (node) {
2781 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2782 rb_node);
2783 if (btrfs_delayed_ref_is_head(ref)) {
2784 struct btrfs_delayed_ref_head *head;
5caf2a00 2785
56bec294
CM
2786 head = btrfs_delayed_node_to_head(ref);
2787 atomic_inc(&ref->refs);
2788
2789 spin_unlock(&delayed_refs->lock);
8cc33e5c
DS
2790 /*
2791 * Mutex was contended, block until it's
2792 * released and try again
2793 */
56bec294
CM
2794 mutex_lock(&head->mutex);
2795 mutex_unlock(&head->mutex);
2796
2797 btrfs_put_delayed_ref(ref);
1887be66 2798 cond_resched();
56bec294
CM
2799 goto again;
2800 }
2801 node = rb_next(node);
2802 }
2803 spin_unlock(&delayed_refs->lock);
56bec294
CM
2804 schedule_timeout(1);
2805 goto again;
5f39d397 2806 }
54aa1f4d 2807out:
bb721703
CM
2808 atomic_dec(&delayed_refs->procs_running_refs);
2809 smp_mb();
2810 if (waitqueue_active(&delayed_refs->wait))
2811 wake_up(&delayed_refs->wait);
2812
c3e69d58 2813 spin_unlock(&delayed_refs->lock);
edf39272 2814 assert_qgroups_uptodate(trans);
a28ec197
CM
2815 return 0;
2816}
2817
5d4f98a2
YZ
2818int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2819 struct btrfs_root *root,
2820 u64 bytenr, u64 num_bytes, u64 flags,
b1c79e09 2821 int level, int is_data)
5d4f98a2
YZ
2822{
2823 struct btrfs_delayed_extent_op *extent_op;
2824 int ret;
2825
78a6184a 2826 extent_op = btrfs_alloc_delayed_extent_op();
5d4f98a2
YZ
2827 if (!extent_op)
2828 return -ENOMEM;
2829
2830 extent_op->flags_to_set = flags;
2831 extent_op->update_flags = 1;
2832 extent_op->update_key = 0;
2833 extent_op->is_data = is_data ? 1 : 0;
b1c79e09 2834 extent_op->level = level;
5d4f98a2 2835
66d7e7f0
AJ
2836 ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr,
2837 num_bytes, extent_op);
5d4f98a2 2838 if (ret)
78a6184a 2839 btrfs_free_delayed_extent_op(extent_op);
5d4f98a2
YZ
2840 return ret;
2841}
2842
2843static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2844 struct btrfs_root *root,
2845 struct btrfs_path *path,
2846 u64 objectid, u64 offset, u64 bytenr)
2847{
2848 struct btrfs_delayed_ref_head *head;
2849 struct btrfs_delayed_ref_node *ref;
2850 struct btrfs_delayed_data_ref *data_ref;
2851 struct btrfs_delayed_ref_root *delayed_refs;
2852 struct rb_node *node;
2853 int ret = 0;
2854
2855 ret = -ENOENT;
2856 delayed_refs = &trans->transaction->delayed_refs;
2857 spin_lock(&delayed_refs->lock);
2858 head = btrfs_find_delayed_ref_head(trans, bytenr);
2859 if (!head)
2860 goto out;
2861
2862 if (!mutex_trylock(&head->mutex)) {
2863 atomic_inc(&head->node.refs);
2864 spin_unlock(&delayed_refs->lock);
2865
b3b4aa74 2866 btrfs_release_path(path);
5d4f98a2 2867
8cc33e5c
DS
2868 /*
2869 * Mutex was contended, block until it's released and let
2870 * caller try again
2871 */
5d4f98a2
YZ
2872 mutex_lock(&head->mutex);
2873 mutex_unlock(&head->mutex);
2874 btrfs_put_delayed_ref(&head->node);
2875 return -EAGAIN;
2876 }
2877
2878 node = rb_prev(&head->node.rb_node);
2879 if (!node)
2880 goto out_unlock;
2881
2882 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2883
2884 if (ref->bytenr != bytenr)
2885 goto out_unlock;
2886
2887 ret = 1;
2888 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY)
2889 goto out_unlock;
2890
2891 data_ref = btrfs_delayed_node_to_data_ref(ref);
2892
2893 node = rb_prev(node);
2894 if (node) {
df57dbe6
LB
2895 int seq = ref->seq;
2896
5d4f98a2 2897 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
df57dbe6 2898 if (ref->bytenr == bytenr && ref->seq == seq)
5d4f98a2
YZ
2899 goto out_unlock;
2900 }
2901
2902 if (data_ref->root != root->root_key.objectid ||
2903 data_ref->objectid != objectid || data_ref->offset != offset)
2904 goto out_unlock;
2905
2906 ret = 0;
2907out_unlock:
2908 mutex_unlock(&head->mutex);
2909out:
2910 spin_unlock(&delayed_refs->lock);
2911 return ret;
2912}
2913
2914static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2915 struct btrfs_root *root,
2916 struct btrfs_path *path,
2917 u64 objectid, u64 offset, u64 bytenr)
be20aa9d
CM
2918{
2919 struct btrfs_root *extent_root = root->fs_info->extent_root;
f321e491 2920 struct extent_buffer *leaf;
5d4f98a2
YZ
2921 struct btrfs_extent_data_ref *ref;
2922 struct btrfs_extent_inline_ref *iref;
2923 struct btrfs_extent_item *ei;
f321e491 2924 struct btrfs_key key;
5d4f98a2 2925 u32 item_size;
be20aa9d 2926 int ret;
925baedd 2927
be20aa9d 2928 key.objectid = bytenr;
31840ae1 2929 key.offset = (u64)-1;
f321e491 2930 key.type = BTRFS_EXTENT_ITEM_KEY;
be20aa9d 2931
be20aa9d
CM
2932 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2933 if (ret < 0)
2934 goto out;
79787eaa 2935 BUG_ON(ret == 0); /* Corruption */
80ff3856
YZ
2936
2937 ret = -ENOENT;
2938 if (path->slots[0] == 0)
31840ae1 2939 goto out;
be20aa9d 2940
31840ae1 2941 path->slots[0]--;
f321e491 2942 leaf = path->nodes[0];
5d4f98a2 2943 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
be20aa9d 2944
5d4f98a2 2945 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
be20aa9d 2946 goto out;
f321e491 2947
5d4f98a2
YZ
2948 ret = 1;
2949 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2950#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2951 if (item_size < sizeof(*ei)) {
2952 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2953 goto out;
2954 }
2955#endif
2956 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
bd09835d 2957
5d4f98a2
YZ
2958 if (item_size != sizeof(*ei) +
2959 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2960 goto out;
be20aa9d 2961
5d4f98a2
YZ
2962 if (btrfs_extent_generation(leaf, ei) <=
2963 btrfs_root_last_snapshot(&root->root_item))
2964 goto out;
2965
2966 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2967 if (btrfs_extent_inline_ref_type(leaf, iref) !=
2968 BTRFS_EXTENT_DATA_REF_KEY)
2969 goto out;
2970
2971 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2972 if (btrfs_extent_refs(leaf, ei) !=
2973 btrfs_extent_data_ref_count(leaf, ref) ||
2974 btrfs_extent_data_ref_root(leaf, ref) !=
2975 root->root_key.objectid ||
2976 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
2977 btrfs_extent_data_ref_offset(leaf, ref) != offset)
2978 goto out;
2979
2980 ret = 0;
2981out:
2982 return ret;
2983}
2984
2985int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
2986 struct btrfs_root *root,
2987 u64 objectid, u64 offset, u64 bytenr)
2988{
2989 struct btrfs_path *path;
2990 int ret;
2991 int ret2;
2992
2993 path = btrfs_alloc_path();
2994 if (!path)
2995 return -ENOENT;
2996
2997 do {
2998 ret = check_committed_ref(trans, root, path, objectid,
2999 offset, bytenr);
3000 if (ret && ret != -ENOENT)
f321e491 3001 goto out;
80ff3856 3002
5d4f98a2
YZ
3003 ret2 = check_delayed_ref(trans, root, path, objectid,
3004 offset, bytenr);
3005 } while (ret2 == -EAGAIN);
3006
3007 if (ret2 && ret2 != -ENOENT) {
3008 ret = ret2;
3009 goto out;
f321e491 3010 }
5d4f98a2
YZ
3011
3012 if (ret != -ENOENT || ret2 != -ENOENT)
3013 ret = 0;
be20aa9d 3014out:
80ff3856 3015 btrfs_free_path(path);
f0486c68
YZ
3016 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3017 WARN_ON(ret > 0);
f321e491 3018 return ret;
be20aa9d 3019}
c5739bba 3020
5d4f98a2 3021static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
b7a9f29f 3022 struct btrfs_root *root,
5d4f98a2 3023 struct extent_buffer *buf,
66d7e7f0 3024 int full_backref, int inc, int for_cow)
31840ae1
ZY
3025{
3026 u64 bytenr;
5d4f98a2
YZ
3027 u64 num_bytes;
3028 u64 parent;
31840ae1 3029 u64 ref_root;
31840ae1 3030 u32 nritems;
31840ae1
ZY
3031 struct btrfs_key key;
3032 struct btrfs_file_extent_item *fi;
3033 int i;
3034 int level;
3035 int ret = 0;
31840ae1 3036 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
66d7e7f0 3037 u64, u64, u64, u64, u64, u64, int);
31840ae1
ZY
3038
3039 ref_root = btrfs_header_owner(buf);
31840ae1
ZY
3040 nritems = btrfs_header_nritems(buf);
3041 level = btrfs_header_level(buf);
3042
5d4f98a2
YZ
3043 if (!root->ref_cows && level == 0)
3044 return 0;
31840ae1 3045
5d4f98a2
YZ
3046 if (inc)
3047 process_func = btrfs_inc_extent_ref;
3048 else
3049 process_func = btrfs_free_extent;
31840ae1 3050
5d4f98a2
YZ
3051 if (full_backref)
3052 parent = buf->start;
3053 else
3054 parent = 0;
3055
3056 for (i = 0; i < nritems; i++) {
31840ae1 3057 if (level == 0) {
5d4f98a2 3058 btrfs_item_key_to_cpu(buf, &key, i);
31840ae1
ZY
3059 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
3060 continue;
5d4f98a2 3061 fi = btrfs_item_ptr(buf, i,
31840ae1
ZY
3062 struct btrfs_file_extent_item);
3063 if (btrfs_file_extent_type(buf, fi) ==
3064 BTRFS_FILE_EXTENT_INLINE)
3065 continue;
3066 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3067 if (bytenr == 0)
3068 continue;
5d4f98a2
YZ
3069
3070 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3071 key.offset -= btrfs_file_extent_offset(buf, fi);
3072 ret = process_func(trans, root, bytenr, num_bytes,
3073 parent, ref_root, key.objectid,
66d7e7f0 3074 key.offset, for_cow);
31840ae1
ZY
3075 if (ret)
3076 goto fail;
3077 } else {
5d4f98a2
YZ
3078 bytenr = btrfs_node_blockptr(buf, i);
3079 num_bytes = btrfs_level_size(root, level - 1);
3080 ret = process_func(trans, root, bytenr, num_bytes,
66d7e7f0
AJ
3081 parent, ref_root, level - 1, 0,
3082 for_cow);
31840ae1
ZY
3083 if (ret)
3084 goto fail;
3085 }
3086 }
3087 return 0;
3088fail:
5d4f98a2
YZ
3089 return ret;
3090}
3091
3092int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
66d7e7f0 3093 struct extent_buffer *buf, int full_backref, int for_cow)
5d4f98a2 3094{
66d7e7f0 3095 return __btrfs_mod_ref(trans, root, buf, full_backref, 1, for_cow);
5d4f98a2
YZ
3096}
3097
3098int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
66d7e7f0 3099 struct extent_buffer *buf, int full_backref, int for_cow)
5d4f98a2 3100{
66d7e7f0 3101 return __btrfs_mod_ref(trans, root, buf, full_backref, 0, for_cow);
31840ae1
ZY
3102}
3103
9078a3e1
CM
3104static int write_one_cache_group(struct btrfs_trans_handle *trans,
3105 struct btrfs_root *root,
3106 struct btrfs_path *path,
3107 struct btrfs_block_group_cache *cache)
3108{
3109 int ret;
9078a3e1 3110 struct btrfs_root *extent_root = root->fs_info->extent_root;
5f39d397
CM
3111 unsigned long bi;
3112 struct extent_buffer *leaf;
9078a3e1 3113
9078a3e1 3114 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
54aa1f4d
CM
3115 if (ret < 0)
3116 goto fail;
79787eaa 3117 BUG_ON(ret); /* Corruption */
5f39d397
CM
3118
3119 leaf = path->nodes[0];
3120 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3121 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3122 btrfs_mark_buffer_dirty(leaf);
b3b4aa74 3123 btrfs_release_path(path);
54aa1f4d 3124fail:
79787eaa
JM
3125 if (ret) {
3126 btrfs_abort_transaction(trans, root, ret);
9078a3e1 3127 return ret;
79787eaa 3128 }
9078a3e1
CM
3129 return 0;
3130
3131}
3132
4a8c9a62
YZ
3133static struct btrfs_block_group_cache *
3134next_block_group(struct btrfs_root *root,
3135 struct btrfs_block_group_cache *cache)
3136{
3137 struct rb_node *node;
3138 spin_lock(&root->fs_info->block_group_cache_lock);
3139 node = rb_next(&cache->cache_node);
3140 btrfs_put_block_group(cache);
3141 if (node) {
3142 cache = rb_entry(node, struct btrfs_block_group_cache,
3143 cache_node);
11dfe35a 3144 btrfs_get_block_group(cache);
4a8c9a62
YZ
3145 } else
3146 cache = NULL;
3147 spin_unlock(&root->fs_info->block_group_cache_lock);
3148 return cache;
3149}
3150
0af3d00b
JB
3151static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3152 struct btrfs_trans_handle *trans,
3153 struct btrfs_path *path)
3154{
3155 struct btrfs_root *root = block_group->fs_info->tree_root;
3156 struct inode *inode = NULL;
3157 u64 alloc_hint = 0;
2b20982e 3158 int dcs = BTRFS_DC_ERROR;
0af3d00b
JB
3159 int num_pages = 0;
3160 int retries = 0;
3161 int ret = 0;
3162
3163 /*
3164 * If this block group is smaller than 100 megs don't bother caching the
3165 * block group.
3166 */
3167 if (block_group->key.offset < (100 * 1024 * 1024)) {
3168 spin_lock(&block_group->lock);
3169 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3170 spin_unlock(&block_group->lock);
3171 return 0;
3172 }
3173
3174again:
3175 inode = lookup_free_space_inode(root, block_group, path);
3176 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3177 ret = PTR_ERR(inode);
b3b4aa74 3178 btrfs_release_path(path);
0af3d00b
JB
3179 goto out;
3180 }
3181
3182 if (IS_ERR(inode)) {
3183 BUG_ON(retries);
3184 retries++;
3185
3186 if (block_group->ro)
3187 goto out_free;
3188
3189 ret = create_free_space_inode(root, trans, block_group, path);
3190 if (ret)
3191 goto out_free;
3192 goto again;
3193 }
3194
5b0e95bf
JB
3195 /* We've already setup this transaction, go ahead and exit */
3196 if (block_group->cache_generation == trans->transid &&
3197 i_size_read(inode)) {
3198 dcs = BTRFS_DC_SETUP;
3199 goto out_put;
3200 }
3201
0af3d00b
JB
3202 /*
3203 * We want to set the generation to 0, that way if anything goes wrong
3204 * from here on out we know not to trust this cache when we load up next
3205 * time.
3206 */
3207 BTRFS_I(inode)->generation = 0;
3208 ret = btrfs_update_inode(trans, root, inode);
3209 WARN_ON(ret);
3210
3211 if (i_size_read(inode) > 0) {
7b61cd92
MX
3212 ret = btrfs_check_trunc_cache_free_space(root,
3213 &root->fs_info->global_block_rsv);
3214 if (ret)
3215 goto out_put;
3216
74514323 3217 ret = btrfs_truncate_free_space_cache(root, trans, inode);
0af3d00b
JB
3218 if (ret)
3219 goto out_put;
3220 }
3221
3222 spin_lock(&block_group->lock);
cf7c1ef6
LB
3223 if (block_group->cached != BTRFS_CACHE_FINISHED ||
3224 !btrfs_test_opt(root, SPACE_CACHE)) {
3225 /*
3226 * don't bother trying to write stuff out _if_
3227 * a) we're not cached,
3228 * b) we're with nospace_cache mount option.
3229 */
2b20982e 3230 dcs = BTRFS_DC_WRITTEN;
0af3d00b
JB
3231 spin_unlock(&block_group->lock);
3232 goto out_put;
3233 }
3234 spin_unlock(&block_group->lock);
3235
6fc823b1
JB
3236 /*
3237 * Try to preallocate enough space based on how big the block group is.
3238 * Keep in mind this has to include any pinned space which could end up
3239 * taking up quite a bit since it's not folded into the other space
3240 * cache.
3241 */
3242 num_pages = (int)div64_u64(block_group->key.offset, 256 * 1024 * 1024);
0af3d00b
JB
3243 if (!num_pages)
3244 num_pages = 1;
3245
0af3d00b
JB
3246 num_pages *= 16;
3247 num_pages *= PAGE_CACHE_SIZE;
3248
3249 ret = btrfs_check_data_free_space(inode, num_pages);
3250 if (ret)
3251 goto out_put;
3252
3253 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3254 num_pages, num_pages,
3255 &alloc_hint);
2b20982e
JB
3256 if (!ret)
3257 dcs = BTRFS_DC_SETUP;
0af3d00b 3258 btrfs_free_reserved_data_space(inode, num_pages);
c09544e0 3259
0af3d00b
JB
3260out_put:
3261 iput(inode);
3262out_free:
b3b4aa74 3263 btrfs_release_path(path);
0af3d00b
JB
3264out:
3265 spin_lock(&block_group->lock);
e65cbb94 3266 if (!ret && dcs == BTRFS_DC_SETUP)
5b0e95bf 3267 block_group->cache_generation = trans->transid;
2b20982e 3268 block_group->disk_cache_state = dcs;
0af3d00b
JB
3269 spin_unlock(&block_group->lock);
3270
3271 return ret;
3272}
3273
96b5179d
CM
3274int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3275 struct btrfs_root *root)
9078a3e1 3276{
4a8c9a62 3277 struct btrfs_block_group_cache *cache;
9078a3e1 3278 int err = 0;
9078a3e1 3279 struct btrfs_path *path;
96b5179d 3280 u64 last = 0;
9078a3e1
CM
3281
3282 path = btrfs_alloc_path();
3283 if (!path)
3284 return -ENOMEM;
3285
0af3d00b
JB
3286again:
3287 while (1) {
3288 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3289 while (cache) {
3290 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3291 break;
3292 cache = next_block_group(root, cache);
3293 }
3294 if (!cache) {
3295 if (last == 0)
3296 break;
3297 last = 0;
3298 continue;
3299 }
3300 err = cache_save_setup(cache, trans, path);
3301 last = cache->key.objectid + cache->key.offset;
3302 btrfs_put_block_group(cache);
3303 }
3304
d397712b 3305 while (1) {
4a8c9a62
YZ
3306 if (last == 0) {
3307 err = btrfs_run_delayed_refs(trans, root,
3308 (unsigned long)-1);
79787eaa
JM
3309 if (err) /* File system offline */
3310 goto out;
0f9dd46c 3311 }
54aa1f4d 3312
4a8c9a62
YZ
3313 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3314 while (cache) {
0af3d00b
JB
3315 if (cache->disk_cache_state == BTRFS_DC_CLEAR) {
3316 btrfs_put_block_group(cache);
3317 goto again;
3318 }
3319
4a8c9a62
YZ
3320 if (cache->dirty)
3321 break;
3322 cache = next_block_group(root, cache);
3323 }
3324 if (!cache) {
3325 if (last == 0)
3326 break;
3327 last = 0;
3328 continue;
3329 }
0f9dd46c 3330
0cb59c99
JB
3331 if (cache->disk_cache_state == BTRFS_DC_SETUP)
3332 cache->disk_cache_state = BTRFS_DC_NEED_WRITE;
e8569813 3333 cache->dirty = 0;
4a8c9a62 3334 last = cache->key.objectid + cache->key.offset;
0f9dd46c 3335
4a8c9a62 3336 err = write_one_cache_group(trans, root, path, cache);
e84cc142 3337 btrfs_put_block_group(cache);
79787eaa
JM
3338 if (err) /* File system offline */
3339 goto out;
9078a3e1 3340 }
4a8c9a62 3341
0cb59c99
JB
3342 while (1) {
3343 /*
3344 * I don't think this is needed since we're just marking our
3345 * preallocated extent as written, but just in case it can't
3346 * hurt.
3347 */
3348 if (last == 0) {
3349 err = btrfs_run_delayed_refs(trans, root,
3350 (unsigned long)-1);
79787eaa
JM
3351 if (err) /* File system offline */
3352 goto out;
0cb59c99
JB
3353 }
3354
3355 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3356 while (cache) {
3357 /*
3358 * Really this shouldn't happen, but it could if we
3359 * couldn't write the entire preallocated extent and
3360 * splitting the extent resulted in a new block.
3361 */
3362 if (cache->dirty) {
3363 btrfs_put_block_group(cache);
3364 goto again;
3365 }
3366 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
3367 break;
3368 cache = next_block_group(root, cache);
3369 }
3370 if (!cache) {
3371 if (last == 0)
3372 break;
3373 last = 0;
3374 continue;
3375 }
3376
79787eaa 3377 err = btrfs_write_out_cache(root, trans, cache, path);
0cb59c99
JB
3378
3379 /*
3380 * If we didn't have an error then the cache state is still
3381 * NEED_WRITE, so we can set it to WRITTEN.
3382 */
79787eaa 3383 if (!err && cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
0cb59c99
JB
3384 cache->disk_cache_state = BTRFS_DC_WRITTEN;
3385 last = cache->key.objectid + cache->key.offset;
3386 btrfs_put_block_group(cache);
3387 }
79787eaa 3388out:
0cb59c99 3389
9078a3e1 3390 btrfs_free_path(path);
79787eaa 3391 return err;
9078a3e1
CM
3392}
3393
d2fb3437
YZ
3394int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
3395{
3396 struct btrfs_block_group_cache *block_group;
3397 int readonly = 0;
3398
3399 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
3400 if (!block_group || block_group->ro)
3401 readonly = 1;
3402 if (block_group)
fa9c0d79 3403 btrfs_put_block_group(block_group);
d2fb3437
YZ
3404 return readonly;
3405}
3406
593060d7
CM
3407static int update_space_info(struct btrfs_fs_info *info, u64 flags,
3408 u64 total_bytes, u64 bytes_used,
3409 struct btrfs_space_info **space_info)
3410{
3411 struct btrfs_space_info *found;
b742bb82
YZ
3412 int i;
3413 int factor;
b150a4f1 3414 int ret;
b742bb82
YZ
3415
3416 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3417 BTRFS_BLOCK_GROUP_RAID10))
3418 factor = 2;
3419 else
3420 factor = 1;
593060d7
CM
3421
3422 found = __find_space_info(info, flags);
3423 if (found) {
25179201 3424 spin_lock(&found->lock);
593060d7 3425 found->total_bytes += total_bytes;
89a55897 3426 found->disk_total += total_bytes * factor;
593060d7 3427 found->bytes_used += bytes_used;
b742bb82 3428 found->disk_used += bytes_used * factor;
8f18cf13 3429 found->full = 0;
25179201 3430 spin_unlock(&found->lock);
593060d7
CM
3431 *space_info = found;
3432 return 0;
3433 }
c146afad 3434 found = kzalloc(sizeof(*found), GFP_NOFS);
593060d7
CM
3435 if (!found)
3436 return -ENOMEM;
3437
b150a4f1
JB
3438 ret = percpu_counter_init(&found->total_bytes_pinned, 0);
3439 if (ret) {
3440 kfree(found);
3441 return ret;
3442 }
3443
b742bb82
YZ
3444 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
3445 INIT_LIST_HEAD(&found->block_groups[i]);
80eb234a 3446 init_rwsem(&found->groups_sem);
0f9dd46c 3447 spin_lock_init(&found->lock);
52ba6929 3448 found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
593060d7 3449 found->total_bytes = total_bytes;
89a55897 3450 found->disk_total = total_bytes * factor;
593060d7 3451 found->bytes_used = bytes_used;
b742bb82 3452 found->disk_used = bytes_used * factor;
593060d7 3453 found->bytes_pinned = 0;
e8569813 3454 found->bytes_reserved = 0;
c146afad 3455 found->bytes_readonly = 0;
f0486c68 3456 found->bytes_may_use = 0;
593060d7 3457 found->full = 0;
0e4f8f88 3458 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
6d74119f 3459 found->chunk_alloc = 0;
fdb5effd
JB
3460 found->flush = 0;
3461 init_waitqueue_head(&found->wait);
593060d7 3462 *space_info = found;
4184ea7f 3463 list_add_rcu(&found->list, &info->space_info);
b4d7c3c9
LZ
3464 if (flags & BTRFS_BLOCK_GROUP_DATA)
3465 info->data_sinfo = found;
593060d7
CM
3466 return 0;
3467}
3468
8790d502
CM
3469static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3470{
899c81ea
ID
3471 u64 extra_flags = chunk_to_extended(flags) &
3472 BTRFS_EXTENDED_PROFILE_MASK;
a46d11a8 3473
de98ced9 3474 write_seqlock(&fs_info->profiles_lock);
a46d11a8
ID
3475 if (flags & BTRFS_BLOCK_GROUP_DATA)
3476 fs_info->avail_data_alloc_bits |= extra_flags;
3477 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3478 fs_info->avail_metadata_alloc_bits |= extra_flags;
3479 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3480 fs_info->avail_system_alloc_bits |= extra_flags;
de98ced9 3481 write_sequnlock(&fs_info->profiles_lock);
8790d502 3482}
593060d7 3483
fc67c450
ID
3484/*
3485 * returns target flags in extended format or 0 if restripe for this
3486 * chunk_type is not in progress
c6664b42
ID
3487 *
3488 * should be called with either volume_mutex or balance_lock held
fc67c450
ID
3489 */
3490static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
3491{
3492 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3493 u64 target = 0;
3494
fc67c450
ID
3495 if (!bctl)
3496 return 0;
3497
3498 if (flags & BTRFS_BLOCK_GROUP_DATA &&
3499 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3500 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
3501 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
3502 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3503 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
3504 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
3505 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3506 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
3507 }
3508
3509 return target;
3510}
3511
a46d11a8
ID
3512/*
3513 * @flags: available profiles in extended format (see ctree.h)
3514 *
e4d8ec0f
ID
3515 * Returns reduced profile in chunk format. If profile changing is in
3516 * progress (either running or paused) picks the target profile (if it's
3517 * already available), otherwise falls back to plain reducing.
a46d11a8 3518 */
48a3b636 3519static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
ec44a35c 3520{
cd02dca5
CM
3521 /*
3522 * we add in the count of missing devices because we want
3523 * to make sure that any RAID levels on a degraded FS
3524 * continue to be honored.
3525 */
3526 u64 num_devices = root->fs_info->fs_devices->rw_devices +
3527 root->fs_info->fs_devices->missing_devices;
fc67c450 3528 u64 target;
53b381b3 3529 u64 tmp;
a061fc8d 3530
fc67c450
ID
3531 /*
3532 * see if restripe for this chunk_type is in progress, if so
3533 * try to reduce to the target profile
3534 */
e4d8ec0f 3535 spin_lock(&root->fs_info->balance_lock);
fc67c450
ID
3536 target = get_restripe_target(root->fs_info, flags);
3537 if (target) {
3538 /* pick target profile only if it's already available */
3539 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
e4d8ec0f 3540 spin_unlock(&root->fs_info->balance_lock);
fc67c450 3541 return extended_to_chunk(target);
e4d8ec0f
ID
3542 }
3543 }
3544 spin_unlock(&root->fs_info->balance_lock);
3545
53b381b3 3546 /* First, mask out the RAID levels which aren't possible */
a061fc8d 3547 if (num_devices == 1)
53b381b3
DW
3548 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0 |
3549 BTRFS_BLOCK_GROUP_RAID5);
3550 if (num_devices < 3)
3551 flags &= ~BTRFS_BLOCK_GROUP_RAID6;
a061fc8d
CM
3552 if (num_devices < 4)
3553 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
3554
53b381b3
DW
3555 tmp = flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 |
3556 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID5 |
3557 BTRFS_BLOCK_GROUP_RAID6 | BTRFS_BLOCK_GROUP_RAID10);
3558 flags &= ~tmp;
ec44a35c 3559
53b381b3
DW
3560 if (tmp & BTRFS_BLOCK_GROUP_RAID6)
3561 tmp = BTRFS_BLOCK_GROUP_RAID6;
3562 else if (tmp & BTRFS_BLOCK_GROUP_RAID5)
3563 tmp = BTRFS_BLOCK_GROUP_RAID5;
3564 else if (tmp & BTRFS_BLOCK_GROUP_RAID10)
3565 tmp = BTRFS_BLOCK_GROUP_RAID10;
3566 else if (tmp & BTRFS_BLOCK_GROUP_RAID1)
3567 tmp = BTRFS_BLOCK_GROUP_RAID1;
3568 else if (tmp & BTRFS_BLOCK_GROUP_RAID0)
3569 tmp = BTRFS_BLOCK_GROUP_RAID0;
a46d11a8 3570
53b381b3 3571 return extended_to_chunk(flags | tmp);
ec44a35c
CM
3572}
3573
b742bb82 3574static u64 get_alloc_profile(struct btrfs_root *root, u64 flags)
6a63209f 3575{
de98ced9
MX
3576 unsigned seq;
3577
3578 do {
3579 seq = read_seqbegin(&root->fs_info->profiles_lock);
3580
3581 if (flags & BTRFS_BLOCK_GROUP_DATA)
3582 flags |= root->fs_info->avail_data_alloc_bits;
3583 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3584 flags |= root->fs_info->avail_system_alloc_bits;
3585 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3586 flags |= root->fs_info->avail_metadata_alloc_bits;
3587 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
6fef8df1 3588
b742bb82 3589 return btrfs_reduce_alloc_profile(root, flags);
6a63209f
JB
3590}
3591
6d07bcec 3592u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
9ed74f2d 3593{
b742bb82 3594 u64 flags;
53b381b3 3595 u64 ret;
9ed74f2d 3596
b742bb82
YZ
3597 if (data)
3598 flags = BTRFS_BLOCK_GROUP_DATA;
3599 else if (root == root->fs_info->chunk_root)
3600 flags = BTRFS_BLOCK_GROUP_SYSTEM;
9ed74f2d 3601 else
b742bb82 3602 flags = BTRFS_BLOCK_GROUP_METADATA;
9ed74f2d 3603
53b381b3
DW
3604 ret = get_alloc_profile(root, flags);
3605 return ret;
6a63209f 3606}
9ed74f2d 3607
6a63209f 3608/*
6a63209f
JB
3609 * This will check the space that the inode allocates from to make sure we have
3610 * enough space for bytes.
6a63209f 3611 */
0ca1f7ce 3612int btrfs_check_data_free_space(struct inode *inode, u64 bytes)
6a63209f 3613{
6a63209f 3614 struct btrfs_space_info *data_sinfo;
0ca1f7ce 3615 struct btrfs_root *root = BTRFS_I(inode)->root;
b4d7c3c9 3616 struct btrfs_fs_info *fs_info = root->fs_info;
ab6e2410 3617 u64 used;
0af3d00b 3618 int ret = 0, committed = 0, alloc_chunk = 1;
6a63209f 3619
6a63209f 3620 /* make sure bytes are sectorsize aligned */
fda2832f 3621 bytes = ALIGN(bytes, root->sectorsize);
6a63209f 3622
9dced186 3623 if (btrfs_is_free_space_inode(inode)) {
0af3d00b 3624 committed = 1;
9dced186 3625 ASSERT(current->journal_info);
0af3d00b
JB
3626 }
3627
b4d7c3c9 3628 data_sinfo = fs_info->data_sinfo;
33b4d47f
CM
3629 if (!data_sinfo)
3630 goto alloc;
9ed74f2d 3631
6a63209f
JB
3632again:
3633 /* make sure we have enough space to handle the data first */
3634 spin_lock(&data_sinfo->lock);
8929ecfa
YZ
3635 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3636 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3637 data_sinfo->bytes_may_use;
ab6e2410
JB
3638
3639 if (used + bytes > data_sinfo->total_bytes) {
4e06bdd6 3640 struct btrfs_trans_handle *trans;
9ed74f2d 3641
6a63209f
JB
3642 /*
3643 * if we don't have enough free bytes in this space then we need
3644 * to alloc a new chunk.
3645 */
0af3d00b 3646 if (!data_sinfo->full && alloc_chunk) {
6a63209f 3647 u64 alloc_target;
9ed74f2d 3648
0e4f8f88 3649 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
6a63209f 3650 spin_unlock(&data_sinfo->lock);
33b4d47f 3651alloc:
6a63209f 3652 alloc_target = btrfs_get_alloc_profile(root, 1);
9dced186
MX
3653 /*
3654 * It is ugly that we don't call nolock join
3655 * transaction for the free space inode case here.
3656 * But it is safe because we only do the data space
3657 * reservation for the free space cache in the
3658 * transaction context, the common join transaction
3659 * just increase the counter of the current transaction
3660 * handler, doesn't try to acquire the trans_lock of
3661 * the fs.
3662 */
7a7eaa40 3663 trans = btrfs_join_transaction(root);
a22285a6
YZ
3664 if (IS_ERR(trans))
3665 return PTR_ERR(trans);
9ed74f2d 3666
6a63209f 3667 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
0e4f8f88
CM
3668 alloc_target,
3669 CHUNK_ALLOC_NO_FORCE);
6a63209f 3670 btrfs_end_transaction(trans, root);
d52a5b5f
MX
3671 if (ret < 0) {
3672 if (ret != -ENOSPC)
3673 return ret;
3674 else
3675 goto commit_trans;
3676 }
9ed74f2d 3677
b4d7c3c9
LZ
3678 if (!data_sinfo)
3679 data_sinfo = fs_info->data_sinfo;
3680
6a63209f
JB
3681 goto again;
3682 }
f2bb8f5c
JB
3683
3684 /*
b150a4f1
JB
3685 * If we don't have enough pinned space to deal with this
3686 * allocation don't bother committing the transaction.
f2bb8f5c 3687 */
b150a4f1
JB
3688 if (percpu_counter_compare(&data_sinfo->total_bytes_pinned,
3689 bytes) < 0)
f2bb8f5c 3690 committed = 1;
6a63209f 3691 spin_unlock(&data_sinfo->lock);
6a63209f 3692
4e06bdd6 3693 /* commit the current transaction and try again */
d52a5b5f 3694commit_trans:
a4abeea4
JB
3695 if (!committed &&
3696 !atomic_read(&root->fs_info->open_ioctl_trans)) {
4e06bdd6 3697 committed = 1;
b150a4f1 3698
7a7eaa40 3699 trans = btrfs_join_transaction(root);
a22285a6
YZ
3700 if (IS_ERR(trans))
3701 return PTR_ERR(trans);
4e06bdd6
JB
3702 ret = btrfs_commit_transaction(trans, root);
3703 if (ret)
3704 return ret;
3705 goto again;
3706 }
9ed74f2d 3707
cab45e22
JM
3708 trace_btrfs_space_reservation(root->fs_info,
3709 "space_info:enospc",
3710 data_sinfo->flags, bytes, 1);
6a63209f
JB
3711 return -ENOSPC;
3712 }
3713 data_sinfo->bytes_may_use += bytes;
8c2a3ca2 3714 trace_btrfs_space_reservation(root->fs_info, "space_info",
2bcc0328 3715 data_sinfo->flags, bytes, 1);
6a63209f 3716 spin_unlock(&data_sinfo->lock);
6a63209f 3717
9ed74f2d 3718 return 0;
9ed74f2d 3719}
6a63209f 3720
6a63209f 3721/*
fb25e914 3722 * Called if we need to clear a data reservation for this inode.
6a63209f 3723 */
0ca1f7ce 3724void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
e3ccfa98 3725{
0ca1f7ce 3726 struct btrfs_root *root = BTRFS_I(inode)->root;
6a63209f 3727 struct btrfs_space_info *data_sinfo;
e3ccfa98 3728
6a63209f 3729 /* make sure bytes are sectorsize aligned */
fda2832f 3730 bytes = ALIGN(bytes, root->sectorsize);
e3ccfa98 3731
b4d7c3c9 3732 data_sinfo = root->fs_info->data_sinfo;
6a63209f 3733 spin_lock(&data_sinfo->lock);
7ee9e440 3734 WARN_ON(data_sinfo->bytes_may_use < bytes);
6a63209f 3735 data_sinfo->bytes_may_use -= bytes;
8c2a3ca2 3736 trace_btrfs_space_reservation(root->fs_info, "space_info",
2bcc0328 3737 data_sinfo->flags, bytes, 0);
6a63209f 3738 spin_unlock(&data_sinfo->lock);
e3ccfa98
JB
3739}
3740
97e728d4 3741static void force_metadata_allocation(struct btrfs_fs_info *info)
e3ccfa98 3742{
97e728d4
JB
3743 struct list_head *head = &info->space_info;
3744 struct btrfs_space_info *found;
e3ccfa98 3745
97e728d4
JB
3746 rcu_read_lock();
3747 list_for_each_entry_rcu(found, head, list) {
3748 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
0e4f8f88 3749 found->force_alloc = CHUNK_ALLOC_FORCE;
e3ccfa98 3750 }
97e728d4 3751 rcu_read_unlock();
e3ccfa98
JB
3752}
3753
3c76cd84
MX
3754static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
3755{
3756 return (global->size << 1);
3757}
3758
e5bc2458 3759static int should_alloc_chunk(struct btrfs_root *root,
698d0082 3760 struct btrfs_space_info *sinfo, int force)
32c00aff 3761{
fb25e914 3762 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
424499db 3763 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
0e4f8f88 3764 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
e5bc2458 3765 u64 thresh;
e3ccfa98 3766
0e4f8f88
CM
3767 if (force == CHUNK_ALLOC_FORCE)
3768 return 1;
3769
fb25e914
JB
3770 /*
3771 * We need to take into account the global rsv because for all intents
3772 * and purposes it's used space. Don't worry about locking the
3773 * global_rsv, it doesn't change except when the transaction commits.
3774 */
54338b5c 3775 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
3c76cd84 3776 num_allocated += calc_global_rsv_need_space(global_rsv);
fb25e914 3777
0e4f8f88
CM
3778 /*
3779 * in limited mode, we want to have some free space up to
3780 * about 1% of the FS size.
3781 */
3782 if (force == CHUNK_ALLOC_LIMITED) {
6c41761f 3783 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
0e4f8f88
CM
3784 thresh = max_t(u64, 64 * 1024 * 1024,
3785 div_factor_fine(thresh, 1));
3786
3787 if (num_bytes - num_allocated < thresh)
3788 return 1;
3789 }
0e4f8f88 3790
698d0082 3791 if (num_allocated + 2 * 1024 * 1024 < div_factor(num_bytes, 8))
14ed0ca6 3792 return 0;
424499db 3793 return 1;
32c00aff
JB
3794}
3795
15d1ff81
LB
3796static u64 get_system_chunk_thresh(struct btrfs_root *root, u64 type)
3797{
3798 u64 num_dev;
3799
53b381b3
DW
3800 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
3801 BTRFS_BLOCK_GROUP_RAID0 |
3802 BTRFS_BLOCK_GROUP_RAID5 |
3803 BTRFS_BLOCK_GROUP_RAID6))
15d1ff81
LB
3804 num_dev = root->fs_info->fs_devices->rw_devices;
3805 else if (type & BTRFS_BLOCK_GROUP_RAID1)
3806 num_dev = 2;
3807 else
3808 num_dev = 1; /* DUP or single */
3809
3810 /* metadata for updaing devices and chunk tree */
3811 return btrfs_calc_trans_metadata_size(root, num_dev + 1);
3812}
3813
3814static void check_system_chunk(struct btrfs_trans_handle *trans,
3815 struct btrfs_root *root, u64 type)
3816{
3817 struct btrfs_space_info *info;
3818 u64 left;
3819 u64 thresh;
3820
3821 info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
3822 spin_lock(&info->lock);
3823 left = info->total_bytes - info->bytes_used - info->bytes_pinned -
3824 info->bytes_reserved - info->bytes_readonly;
3825 spin_unlock(&info->lock);
3826
3827 thresh = get_system_chunk_thresh(root, type);
3828 if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) {
c2cf52eb
SK
3829 btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu",
3830 left, thresh, type);
15d1ff81
LB
3831 dump_space_info(info, 0, 0);
3832 }
3833
3834 if (left < thresh) {
3835 u64 flags;
3836
3837 flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0);
3838 btrfs_alloc_chunk(trans, root, flags);
3839 }
3840}
3841
6324fbf3 3842static int do_chunk_alloc(struct btrfs_trans_handle *trans,
698d0082 3843 struct btrfs_root *extent_root, u64 flags, int force)
9ed74f2d 3844{
6324fbf3 3845 struct btrfs_space_info *space_info;
97e728d4 3846 struct btrfs_fs_info *fs_info = extent_root->fs_info;
6d74119f 3847 int wait_for_alloc = 0;
9ed74f2d 3848 int ret = 0;
9ed74f2d 3849
c6b305a8
JB
3850 /* Don't re-enter if we're already allocating a chunk */
3851 if (trans->allocating_chunk)
3852 return -ENOSPC;
3853
6324fbf3 3854 space_info = __find_space_info(extent_root->fs_info, flags);
593060d7
CM
3855 if (!space_info) {
3856 ret = update_space_info(extent_root->fs_info, flags,
3857 0, 0, &space_info);
79787eaa 3858 BUG_ON(ret); /* -ENOMEM */
9ed74f2d 3859 }
79787eaa 3860 BUG_ON(!space_info); /* Logic error */
9ed74f2d 3861
6d74119f 3862again:
25179201 3863 spin_lock(&space_info->lock);
9e622d6b 3864 if (force < space_info->force_alloc)
0e4f8f88 3865 force = space_info->force_alloc;
25179201 3866 if (space_info->full) {
09fb99a6
FDBM
3867 if (should_alloc_chunk(extent_root, space_info, force))
3868 ret = -ENOSPC;
3869 else
3870 ret = 0;
25179201 3871 spin_unlock(&space_info->lock);
09fb99a6 3872 return ret;
9ed74f2d
JB
3873 }
3874
698d0082 3875 if (!should_alloc_chunk(extent_root, space_info, force)) {
25179201 3876 spin_unlock(&space_info->lock);
6d74119f
JB
3877 return 0;
3878 } else if (space_info->chunk_alloc) {
3879 wait_for_alloc = 1;
3880 } else {
3881 space_info->chunk_alloc = 1;
9ed74f2d 3882 }
0e4f8f88 3883
25179201 3884 spin_unlock(&space_info->lock);
9ed74f2d 3885
6d74119f
JB
3886 mutex_lock(&fs_info->chunk_mutex);
3887
3888 /*
3889 * The chunk_mutex is held throughout the entirety of a chunk
3890 * allocation, so once we've acquired the chunk_mutex we know that the
3891 * other guy is done and we need to recheck and see if we should
3892 * allocate.
3893 */
3894 if (wait_for_alloc) {
3895 mutex_unlock(&fs_info->chunk_mutex);
3896 wait_for_alloc = 0;
3897 goto again;
3898 }
3899
c6b305a8
JB
3900 trans->allocating_chunk = true;
3901
67377734
JB
3902 /*
3903 * If we have mixed data/metadata chunks we want to make sure we keep
3904 * allocating mixed chunks instead of individual chunks.
3905 */
3906 if (btrfs_mixed_space_info(space_info))
3907 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
3908
97e728d4
JB
3909 /*
3910 * if we're doing a data chunk, go ahead and make sure that
3911 * we keep a reasonable number of metadata chunks allocated in the
3912 * FS as well.
3913 */
9ed74f2d 3914 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
97e728d4
JB
3915 fs_info->data_chunk_allocations++;
3916 if (!(fs_info->data_chunk_allocations %
3917 fs_info->metadata_ratio))
3918 force_metadata_allocation(fs_info);
9ed74f2d
JB
3919 }
3920
15d1ff81
LB
3921 /*
3922 * Check if we have enough space in SYSTEM chunk because we may need
3923 * to update devices.
3924 */
3925 check_system_chunk(trans, extent_root, flags);
3926
2b82032c 3927 ret = btrfs_alloc_chunk(trans, extent_root, flags);
c6b305a8 3928 trans->allocating_chunk = false;
92b8e897 3929
9ed74f2d 3930 spin_lock(&space_info->lock);
a81cb9a2
AO
3931 if (ret < 0 && ret != -ENOSPC)
3932 goto out;
9ed74f2d 3933 if (ret)
6324fbf3 3934 space_info->full = 1;
424499db
YZ
3935 else
3936 ret = 1;
6d74119f 3937
0e4f8f88 3938 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
a81cb9a2 3939out:
6d74119f 3940 space_info->chunk_alloc = 0;
9ed74f2d 3941 spin_unlock(&space_info->lock);
a25c75d5 3942 mutex_unlock(&fs_info->chunk_mutex);
0f9dd46c 3943 return ret;
6324fbf3 3944}
9ed74f2d 3945
a80c8dcf
JB
3946static int can_overcommit(struct btrfs_root *root,
3947 struct btrfs_space_info *space_info, u64 bytes,
08e007d2 3948 enum btrfs_reserve_flush_enum flush)
a80c8dcf 3949{
96f1bb57 3950 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
a80c8dcf 3951 u64 profile = btrfs_get_alloc_profile(root, 0);
3c76cd84 3952 u64 space_size;
a80c8dcf
JB
3953 u64 avail;
3954 u64 used;
3955
3956 used = space_info->bytes_used + space_info->bytes_reserved +
96f1bb57
JB
3957 space_info->bytes_pinned + space_info->bytes_readonly;
3958
96f1bb57
JB
3959 /*
3960 * We only want to allow over committing if we have lots of actual space
3961 * free, but if we don't have enough space to handle the global reserve
3962 * space then we could end up having a real enospc problem when trying
3963 * to allocate a chunk or some other such important allocation.
3964 */
3c76cd84
MX
3965 spin_lock(&global_rsv->lock);
3966 space_size = calc_global_rsv_need_space(global_rsv);
3967 spin_unlock(&global_rsv->lock);
3968 if (used + space_size >= space_info->total_bytes)
96f1bb57
JB
3969 return 0;
3970
3971 used += space_info->bytes_may_use;
a80c8dcf
JB
3972
3973 spin_lock(&root->fs_info->free_chunk_lock);
3974 avail = root->fs_info->free_chunk_space;
3975 spin_unlock(&root->fs_info->free_chunk_lock);
3976
3977 /*
3978 * If we have dup, raid1 or raid10 then only half of the free
53b381b3
DW
3979 * space is actually useable. For raid56, the space info used
3980 * doesn't include the parity drive, so we don't have to
3981 * change the math
a80c8dcf
JB
3982 */
3983 if (profile & (BTRFS_BLOCK_GROUP_DUP |
3984 BTRFS_BLOCK_GROUP_RAID1 |
3985 BTRFS_BLOCK_GROUP_RAID10))
3986 avail >>= 1;
3987
3988 /*
561c294d
MX
3989 * If we aren't flushing all things, let us overcommit up to
3990 * 1/2th of the space. If we can flush, don't let us overcommit
3991 * too much, let it overcommit up to 1/8 of the space.
a80c8dcf 3992 */
08e007d2 3993 if (flush == BTRFS_RESERVE_FLUSH_ALL)
14575aef 3994 avail >>= 3;
a80c8dcf 3995 else
14575aef 3996 avail >>= 1;
a80c8dcf 3997
14575aef 3998 if (used + bytes < space_info->total_bytes + avail)
a80c8dcf
JB
3999 return 1;
4000 return 0;
4001}
4002
48a3b636
ES
4003static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root,
4004 unsigned long nr_pages)
da633a42
MX
4005{
4006 struct super_block *sb = root->fs_info->sb;
da633a42 4007
925a6efb
JB
4008 if (down_read_trylock(&sb->s_umount)) {
4009 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4010 up_read(&sb->s_umount);
4011 } else {
da633a42
MX
4012 /*
4013 * We needn't worry the filesystem going from r/w to r/o though
4014 * we don't acquire ->s_umount mutex, because the filesystem
4015 * should guarantee the delalloc inodes list be empty after
4016 * the filesystem is readonly(all dirty pages are written to
4017 * the disk).
4018 */
eb73c1b7 4019 btrfs_start_all_delalloc_inodes(root->fs_info, 0);
98ad69cf 4020 if (!current->journal_info)
f0de181c 4021 btrfs_wait_all_ordered_extents(root->fs_info);
da633a42
MX
4022 }
4023}
4024
18cd8ea6
MX
4025static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim)
4026{
4027 u64 bytes;
4028 int nr;
4029
4030 bytes = btrfs_calc_trans_metadata_size(root, 1);
4031 nr = (int)div64_u64(to_reclaim, bytes);
4032 if (!nr)
4033 nr = 1;
4034 return nr;
4035}
4036
9ed74f2d 4037/*
5da9d01b 4038 * shrink metadata reservation for delalloc
9ed74f2d 4039 */
f4c738c2
JB
4040static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
4041 bool wait_ordered)
5da9d01b 4042{
0ca1f7ce 4043 struct btrfs_block_rsv *block_rsv;
0019f10d 4044 struct btrfs_space_info *space_info;
663350ac 4045 struct btrfs_trans_handle *trans;
f4c738c2 4046 u64 delalloc_bytes;
5da9d01b 4047 u64 max_reclaim;
b1953bce 4048 long time_left;
d3ee29e3
MX
4049 unsigned long nr_pages;
4050 int loops;
08e007d2 4051 enum btrfs_reserve_flush_enum flush;
5da9d01b 4052
663350ac 4053 trans = (struct btrfs_trans_handle *)current->journal_info;
0ca1f7ce 4054 block_rsv = &root->fs_info->delalloc_block_rsv;
0019f10d 4055 space_info = block_rsv->space_info;
bf9022e0 4056
963d678b
MX
4057 delalloc_bytes = percpu_counter_sum_positive(
4058 &root->fs_info->delalloc_bytes);
f4c738c2 4059 if (delalloc_bytes == 0) {
fdb5effd 4060 if (trans)
f4c738c2 4061 return;
38c135af
MX
4062 if (wait_ordered)
4063 btrfs_wait_all_ordered_extents(root->fs_info);
f4c738c2 4064 return;
fdb5effd
JB
4065 }
4066
d3ee29e3 4067 loops = 0;
f4c738c2
JB
4068 while (delalloc_bytes && loops < 3) {
4069 max_reclaim = min(delalloc_bytes, to_reclaim);
4070 nr_pages = max_reclaim >> PAGE_CACHE_SHIFT;
da633a42 4071 btrfs_writeback_inodes_sb_nr(root, nr_pages);
dea31f52
JB
4072 /*
4073 * We need to wait for the async pages to actually start before
4074 * we do anything.
4075 */
4076 wait_event(root->fs_info->async_submit_wait,
4077 !atomic_read(&root->fs_info->async_delalloc_pages));
4078
08e007d2
MX
4079 if (!trans)
4080 flush = BTRFS_RESERVE_FLUSH_ALL;
4081 else
4082 flush = BTRFS_RESERVE_NO_FLUSH;
0019f10d 4083 spin_lock(&space_info->lock);
08e007d2 4084 if (can_overcommit(root, space_info, orig, flush)) {
f4c738c2
JB
4085 spin_unlock(&space_info->lock);
4086 break;
4087 }
0019f10d 4088 spin_unlock(&space_info->lock);
5da9d01b 4089
36e39c40 4090 loops++;
f104d044 4091 if (wait_ordered && !trans) {
f0de181c 4092 btrfs_wait_all_ordered_extents(root->fs_info);
f104d044 4093 } else {
f4c738c2 4094 time_left = schedule_timeout_killable(1);
f104d044
JB
4095 if (time_left)
4096 break;
4097 }
963d678b
MX
4098 delalloc_bytes = percpu_counter_sum_positive(
4099 &root->fs_info->delalloc_bytes);
5da9d01b 4100 }
5da9d01b
YZ
4101}
4102
663350ac
JB
4103/**
4104 * maybe_commit_transaction - possibly commit the transaction if its ok to
4105 * @root - the root we're allocating for
4106 * @bytes - the number of bytes we want to reserve
4107 * @force - force the commit
8bb8ab2e 4108 *
663350ac
JB
4109 * This will check to make sure that committing the transaction will actually
4110 * get us somewhere and then commit the transaction if it does. Otherwise it
4111 * will return -ENOSPC.
8bb8ab2e 4112 */
663350ac
JB
4113static int may_commit_transaction(struct btrfs_root *root,
4114 struct btrfs_space_info *space_info,
4115 u64 bytes, int force)
4116{
4117 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
4118 struct btrfs_trans_handle *trans;
4119
4120 trans = (struct btrfs_trans_handle *)current->journal_info;
4121 if (trans)
4122 return -EAGAIN;
4123
4124 if (force)
4125 goto commit;
4126
4127 /* See if there is enough pinned space to make this reservation */
4128 spin_lock(&space_info->lock);
b150a4f1
JB
4129 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4130 bytes) >= 0) {
663350ac
JB
4131 spin_unlock(&space_info->lock);
4132 goto commit;
4133 }
4134 spin_unlock(&space_info->lock);
4135
4136 /*
4137 * See if there is some space in the delayed insertion reservation for
4138 * this reservation.
4139 */
4140 if (space_info != delayed_rsv->space_info)
4141 return -ENOSPC;
4142
d9b0218f 4143 spin_lock(&space_info->lock);
663350ac 4144 spin_lock(&delayed_rsv->lock);
b150a4f1
JB
4145 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4146 bytes - delayed_rsv->size) >= 0) {
663350ac 4147 spin_unlock(&delayed_rsv->lock);
d9b0218f 4148 spin_unlock(&space_info->lock);
663350ac
JB
4149 return -ENOSPC;
4150 }
4151 spin_unlock(&delayed_rsv->lock);
d9b0218f 4152 spin_unlock(&space_info->lock);
663350ac
JB
4153
4154commit:
4155 trans = btrfs_join_transaction(root);
4156 if (IS_ERR(trans))
4157 return -ENOSPC;
4158
4159 return btrfs_commit_transaction(trans, root);
4160}
4161
96c3f433 4162enum flush_state {
67b0fd63
JB
4163 FLUSH_DELAYED_ITEMS_NR = 1,
4164 FLUSH_DELAYED_ITEMS = 2,
4165 FLUSH_DELALLOC = 3,
4166 FLUSH_DELALLOC_WAIT = 4,
ea658bad
JB
4167 ALLOC_CHUNK = 5,
4168 COMMIT_TRANS = 6,
96c3f433
JB
4169};
4170
4171static int flush_space(struct btrfs_root *root,
4172 struct btrfs_space_info *space_info, u64 num_bytes,
4173 u64 orig_bytes, int state)
4174{
4175 struct btrfs_trans_handle *trans;
4176 int nr;
f4c738c2 4177 int ret = 0;
96c3f433
JB
4178
4179 switch (state) {
96c3f433
JB
4180 case FLUSH_DELAYED_ITEMS_NR:
4181 case FLUSH_DELAYED_ITEMS:
18cd8ea6
MX
4182 if (state == FLUSH_DELAYED_ITEMS_NR)
4183 nr = calc_reclaim_items_nr(root, num_bytes) * 2;
4184 else
96c3f433 4185 nr = -1;
18cd8ea6 4186
96c3f433
JB
4187 trans = btrfs_join_transaction(root);
4188 if (IS_ERR(trans)) {
4189 ret = PTR_ERR(trans);
4190 break;
4191 }
4192 ret = btrfs_run_delayed_items_nr(trans, root, nr);
4193 btrfs_end_transaction(trans, root);
4194 break;
67b0fd63
JB
4195 case FLUSH_DELALLOC:
4196 case FLUSH_DELALLOC_WAIT:
4197 shrink_delalloc(root, num_bytes, orig_bytes,
4198 state == FLUSH_DELALLOC_WAIT);
4199 break;
ea658bad
JB
4200 case ALLOC_CHUNK:
4201 trans = btrfs_join_transaction(root);
4202 if (IS_ERR(trans)) {
4203 ret = PTR_ERR(trans);
4204 break;
4205 }
4206 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
ea658bad
JB
4207 btrfs_get_alloc_profile(root, 0),
4208 CHUNK_ALLOC_NO_FORCE);
4209 btrfs_end_transaction(trans, root);
4210 if (ret == -ENOSPC)
4211 ret = 0;
4212 break;
96c3f433
JB
4213 case COMMIT_TRANS:
4214 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
4215 break;
4216 default:
4217 ret = -ENOSPC;
4218 break;
4219 }
4220
4221 return ret;
4222}
4a92b1b8
JB
4223/**
4224 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
4225 * @root - the root we're allocating for
4226 * @block_rsv - the block_rsv we're allocating for
4227 * @orig_bytes - the number of bytes we want
48fc7f7e 4228 * @flush - whether or not we can flush to make our reservation
8bb8ab2e 4229 *
4a92b1b8
JB
4230 * This will reserve orgi_bytes number of bytes from the space info associated
4231 * with the block_rsv. If there is not enough space it will make an attempt to
4232 * flush out space to make room. It will do this by flushing delalloc if
4233 * possible or committing the transaction. If flush is 0 then no attempts to
4234 * regain reservations will be made and this will fail if there is not enough
4235 * space already.
8bb8ab2e 4236 */
4a92b1b8 4237static int reserve_metadata_bytes(struct btrfs_root *root,
8bb8ab2e 4238 struct btrfs_block_rsv *block_rsv,
08e007d2
MX
4239 u64 orig_bytes,
4240 enum btrfs_reserve_flush_enum flush)
9ed74f2d 4241{
f0486c68 4242 struct btrfs_space_info *space_info = block_rsv->space_info;
2bf64758 4243 u64 used;
8bb8ab2e 4244 u64 num_bytes = orig_bytes;
67b0fd63 4245 int flush_state = FLUSH_DELAYED_ITEMS_NR;
8bb8ab2e 4246 int ret = 0;
fdb5effd 4247 bool flushing = false;
9ed74f2d 4248
8bb8ab2e 4249again:
fdb5effd 4250 ret = 0;
8bb8ab2e 4251 spin_lock(&space_info->lock);
fdb5effd 4252 /*
08e007d2
MX
4253 * We only want to wait if somebody other than us is flushing and we
4254 * are actually allowed to flush all things.
fdb5effd 4255 */
08e007d2
MX
4256 while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing &&
4257 space_info->flush) {
fdb5effd
JB
4258 spin_unlock(&space_info->lock);
4259 /*
4260 * If we have a trans handle we can't wait because the flusher
4261 * may have to commit the transaction, which would mean we would
4262 * deadlock since we are waiting for the flusher to finish, but
4263 * hold the current transaction open.
4264 */
663350ac 4265 if (current->journal_info)
fdb5effd 4266 return -EAGAIN;
b9688bb8
AJ
4267 ret = wait_event_killable(space_info->wait, !space_info->flush);
4268 /* Must have been killed, return */
4269 if (ret)
fdb5effd
JB
4270 return -EINTR;
4271
4272 spin_lock(&space_info->lock);
4273 }
4274
4275 ret = -ENOSPC;
2bf64758
JB
4276 used = space_info->bytes_used + space_info->bytes_reserved +
4277 space_info->bytes_pinned + space_info->bytes_readonly +
4278 space_info->bytes_may_use;
9ed74f2d 4279
8bb8ab2e
JB
4280 /*
4281 * The idea here is that we've not already over-reserved the block group
4282 * then we can go ahead and save our reservation first and then start
4283 * flushing if we need to. Otherwise if we've already overcommitted
4284 * lets start flushing stuff first and then come back and try to make
4285 * our reservation.
4286 */
2bf64758
JB
4287 if (used <= space_info->total_bytes) {
4288 if (used + orig_bytes <= space_info->total_bytes) {
fb25e914 4289 space_info->bytes_may_use += orig_bytes;
8c2a3ca2 4290 trace_btrfs_space_reservation(root->fs_info,
2bcc0328 4291 "space_info", space_info->flags, orig_bytes, 1);
8bb8ab2e
JB
4292 ret = 0;
4293 } else {
4294 /*
4295 * Ok set num_bytes to orig_bytes since we aren't
4296 * overocmmitted, this way we only try and reclaim what
4297 * we need.
4298 */
4299 num_bytes = orig_bytes;
4300 }
4301 } else {
4302 /*
4303 * Ok we're over committed, set num_bytes to the overcommitted
4304 * amount plus the amount of bytes that we need for this
4305 * reservation.
4306 */
2bf64758 4307 num_bytes = used - space_info->total_bytes +
96c3f433 4308 (orig_bytes * 2);
8bb8ab2e 4309 }
9ed74f2d 4310
44734ed1
JB
4311 if (ret && can_overcommit(root, space_info, orig_bytes, flush)) {
4312 space_info->bytes_may_use += orig_bytes;
4313 trace_btrfs_space_reservation(root->fs_info, "space_info",
4314 space_info->flags, orig_bytes,
4315 1);
4316 ret = 0;
2bf64758
JB
4317 }
4318
8bb8ab2e
JB
4319 /*
4320 * Couldn't make our reservation, save our place so while we're trying
4321 * to reclaim space we can actually use it instead of somebody else
4322 * stealing it from us.
08e007d2
MX
4323 *
4324 * We make the other tasks wait for the flush only when we can flush
4325 * all things.
8bb8ab2e 4326 */
72bcd99d 4327 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
fdb5effd
JB
4328 flushing = true;
4329 space_info->flush = 1;
8bb8ab2e 4330 }
9ed74f2d 4331
f0486c68 4332 spin_unlock(&space_info->lock);
9ed74f2d 4333
08e007d2 4334 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
8bb8ab2e 4335 goto out;
f0486c68 4336
96c3f433
JB
4337 ret = flush_space(root, space_info, num_bytes, orig_bytes,
4338 flush_state);
4339 flush_state++;
08e007d2
MX
4340
4341 /*
4342 * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock
4343 * would happen. So skip delalloc flush.
4344 */
4345 if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4346 (flush_state == FLUSH_DELALLOC ||
4347 flush_state == FLUSH_DELALLOC_WAIT))
4348 flush_state = ALLOC_CHUNK;
4349
96c3f433 4350 if (!ret)
8bb8ab2e 4351 goto again;
08e007d2
MX
4352 else if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4353 flush_state < COMMIT_TRANS)
4354 goto again;
4355 else if (flush == BTRFS_RESERVE_FLUSH_ALL &&
4356 flush_state <= COMMIT_TRANS)
8bb8ab2e
JB
4357 goto again;
4358
4359out:
5d80366e
JB
4360 if (ret == -ENOSPC &&
4361 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
4362 struct btrfs_block_rsv *global_rsv =
4363 &root->fs_info->global_block_rsv;
4364
4365 if (block_rsv != global_rsv &&
4366 !block_rsv_use_bytes(global_rsv, orig_bytes))
4367 ret = 0;
4368 }
cab45e22
JM
4369 if (ret == -ENOSPC)
4370 trace_btrfs_space_reservation(root->fs_info,
4371 "space_info:enospc",
4372 space_info->flags, orig_bytes, 1);
fdb5effd 4373 if (flushing) {
8bb8ab2e 4374 spin_lock(&space_info->lock);
fdb5effd
JB
4375 space_info->flush = 0;
4376 wake_up_all(&space_info->wait);
8bb8ab2e 4377 spin_unlock(&space_info->lock);
f0486c68 4378 }
f0486c68
YZ
4379 return ret;
4380}
4381
79787eaa
JM
4382static struct btrfs_block_rsv *get_block_rsv(
4383 const struct btrfs_trans_handle *trans,
4384 const struct btrfs_root *root)
f0486c68 4385{
4c13d758
JB
4386 struct btrfs_block_rsv *block_rsv = NULL;
4387
0e721106
JB
4388 if (root->ref_cows)
4389 block_rsv = trans->block_rsv;
4390
4391 if (root == root->fs_info->csum_root && trans->adding_csums)
f0486c68 4392 block_rsv = trans->block_rsv;
4c13d758 4393
f7a81ea4
SB
4394 if (root == root->fs_info->uuid_root)
4395 block_rsv = trans->block_rsv;
4396
4c13d758 4397 if (!block_rsv)
f0486c68
YZ
4398 block_rsv = root->block_rsv;
4399
4400 if (!block_rsv)
4401 block_rsv = &root->fs_info->empty_block_rsv;
4402
4403 return block_rsv;
4404}
4405
4406static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
4407 u64 num_bytes)
4408{
4409 int ret = -ENOSPC;
4410 spin_lock(&block_rsv->lock);
4411 if (block_rsv->reserved >= num_bytes) {
4412 block_rsv->reserved -= num_bytes;
4413 if (block_rsv->reserved < block_rsv->size)
4414 block_rsv->full = 0;
4415 ret = 0;
4416 }
4417 spin_unlock(&block_rsv->lock);
4418 return ret;
4419}
4420
4421static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
4422 u64 num_bytes, int update_size)
4423{
4424 spin_lock(&block_rsv->lock);
4425 block_rsv->reserved += num_bytes;
4426 if (update_size)
4427 block_rsv->size += num_bytes;
4428 else if (block_rsv->reserved >= block_rsv->size)
4429 block_rsv->full = 1;
4430 spin_unlock(&block_rsv->lock);
4431}
4432
d52be818
JB
4433int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
4434 struct btrfs_block_rsv *dest, u64 num_bytes,
4435 int min_factor)
4436{
4437 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
4438 u64 min_bytes;
4439
4440 if (global_rsv->space_info != dest->space_info)
4441 return -ENOSPC;
4442
4443 spin_lock(&global_rsv->lock);
4444 min_bytes = div_factor(global_rsv->size, min_factor);
4445 if (global_rsv->reserved < min_bytes + num_bytes) {
4446 spin_unlock(&global_rsv->lock);
4447 return -ENOSPC;
4448 }
4449 global_rsv->reserved -= num_bytes;
4450 if (global_rsv->reserved < global_rsv->size)
4451 global_rsv->full = 0;
4452 spin_unlock(&global_rsv->lock);
4453
4454 block_rsv_add_bytes(dest, num_bytes, 1);
4455 return 0;
4456}
4457
8c2a3ca2
JB
4458static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
4459 struct btrfs_block_rsv *block_rsv,
62a45b60 4460 struct btrfs_block_rsv *dest, u64 num_bytes)
f0486c68
YZ
4461{
4462 struct btrfs_space_info *space_info = block_rsv->space_info;
4463
4464 spin_lock(&block_rsv->lock);
4465 if (num_bytes == (u64)-1)
4466 num_bytes = block_rsv->size;
4467 block_rsv->size -= num_bytes;
4468 if (block_rsv->reserved >= block_rsv->size) {
4469 num_bytes = block_rsv->reserved - block_rsv->size;
4470 block_rsv->reserved = block_rsv->size;
4471 block_rsv->full = 1;
4472 } else {
4473 num_bytes = 0;
4474 }
4475 spin_unlock(&block_rsv->lock);
4476
4477 if (num_bytes > 0) {
4478 if (dest) {
e9e22899
JB
4479 spin_lock(&dest->lock);
4480 if (!dest->full) {
4481 u64 bytes_to_add;
4482
4483 bytes_to_add = dest->size - dest->reserved;
4484 bytes_to_add = min(num_bytes, bytes_to_add);
4485 dest->reserved += bytes_to_add;
4486 if (dest->reserved >= dest->size)
4487 dest->full = 1;
4488 num_bytes -= bytes_to_add;
4489 }
4490 spin_unlock(&dest->lock);
4491 }
4492 if (num_bytes) {
f0486c68 4493 spin_lock(&space_info->lock);
fb25e914 4494 space_info->bytes_may_use -= num_bytes;
8c2a3ca2 4495 trace_btrfs_space_reservation(fs_info, "space_info",
2bcc0328 4496 space_info->flags, num_bytes, 0);
f0486c68 4497 spin_unlock(&space_info->lock);
4e06bdd6 4498 }
9ed74f2d 4499 }
f0486c68 4500}
4e06bdd6 4501
f0486c68
YZ
4502static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
4503 struct btrfs_block_rsv *dst, u64 num_bytes)
4504{
4505 int ret;
9ed74f2d 4506
f0486c68
YZ
4507 ret = block_rsv_use_bytes(src, num_bytes);
4508 if (ret)
4509 return ret;
9ed74f2d 4510
f0486c68 4511 block_rsv_add_bytes(dst, num_bytes, 1);
9ed74f2d
JB
4512 return 0;
4513}
4514
66d8f3dd 4515void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
9ed74f2d 4516{
f0486c68
YZ
4517 memset(rsv, 0, sizeof(*rsv));
4518 spin_lock_init(&rsv->lock);
66d8f3dd 4519 rsv->type = type;
f0486c68
YZ
4520}
4521
66d8f3dd
MX
4522struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
4523 unsigned short type)
f0486c68
YZ
4524{
4525 struct btrfs_block_rsv *block_rsv;
4526 struct btrfs_fs_info *fs_info = root->fs_info;
9ed74f2d 4527
f0486c68
YZ
4528 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
4529 if (!block_rsv)
4530 return NULL;
9ed74f2d 4531
66d8f3dd 4532 btrfs_init_block_rsv(block_rsv, type);
f0486c68
YZ
4533 block_rsv->space_info = __find_space_info(fs_info,
4534 BTRFS_BLOCK_GROUP_METADATA);
f0486c68
YZ
4535 return block_rsv;
4536}
9ed74f2d 4537
f0486c68
YZ
4538void btrfs_free_block_rsv(struct btrfs_root *root,
4539 struct btrfs_block_rsv *rsv)
4540{
2aaa6655
JB
4541 if (!rsv)
4542 return;
dabdb640
JB
4543 btrfs_block_rsv_release(root, rsv, (u64)-1);
4544 kfree(rsv);
9ed74f2d
JB
4545}
4546
08e007d2
MX
4547int btrfs_block_rsv_add(struct btrfs_root *root,
4548 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
4549 enum btrfs_reserve_flush_enum flush)
9ed74f2d 4550{
f0486c68 4551 int ret;
9ed74f2d 4552
f0486c68
YZ
4553 if (num_bytes == 0)
4554 return 0;
8bb8ab2e 4555
61b520a9 4556 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
f0486c68
YZ
4557 if (!ret) {
4558 block_rsv_add_bytes(block_rsv, num_bytes, 1);
4559 return 0;
4560 }
9ed74f2d 4561
f0486c68 4562 return ret;
f0486c68 4563}
9ed74f2d 4564
4a92b1b8 4565int btrfs_block_rsv_check(struct btrfs_root *root,
36ba022a 4566 struct btrfs_block_rsv *block_rsv, int min_factor)
f0486c68
YZ
4567{
4568 u64 num_bytes = 0;
f0486c68 4569 int ret = -ENOSPC;
9ed74f2d 4570
f0486c68
YZ
4571 if (!block_rsv)
4572 return 0;
9ed74f2d 4573
f0486c68 4574 spin_lock(&block_rsv->lock);
36ba022a
JB
4575 num_bytes = div_factor(block_rsv->size, min_factor);
4576 if (block_rsv->reserved >= num_bytes)
4577 ret = 0;
4578 spin_unlock(&block_rsv->lock);
9ed74f2d 4579
36ba022a
JB
4580 return ret;
4581}
4582
08e007d2
MX
4583int btrfs_block_rsv_refill(struct btrfs_root *root,
4584 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
4585 enum btrfs_reserve_flush_enum flush)
36ba022a
JB
4586{
4587 u64 num_bytes = 0;
4588 int ret = -ENOSPC;
4589
4590 if (!block_rsv)
4591 return 0;
4592
4593 spin_lock(&block_rsv->lock);
4594 num_bytes = min_reserved;
13553e52 4595 if (block_rsv->reserved >= num_bytes)
f0486c68 4596 ret = 0;
13553e52 4597 else
f0486c68 4598 num_bytes -= block_rsv->reserved;
f0486c68 4599 spin_unlock(&block_rsv->lock);
13553e52 4600
f0486c68
YZ
4601 if (!ret)
4602 return 0;
4603
aa38a711 4604 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
dabdb640
JB
4605 if (!ret) {
4606 block_rsv_add_bytes(block_rsv, num_bytes, 0);
f0486c68 4607 return 0;
6a63209f 4608 }
9ed74f2d 4609
13553e52 4610 return ret;
f0486c68
YZ
4611}
4612
4613int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
4614 struct btrfs_block_rsv *dst_rsv,
4615 u64 num_bytes)
4616{
4617 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4618}
4619
4620void btrfs_block_rsv_release(struct btrfs_root *root,
4621 struct btrfs_block_rsv *block_rsv,
4622 u64 num_bytes)
4623{
4624 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
4625 if (global_rsv->full || global_rsv == block_rsv ||
4626 block_rsv->space_info != global_rsv->space_info)
4627 global_rsv = NULL;
8c2a3ca2
JB
4628 block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv,
4629 num_bytes);
6a63209f
JB
4630}
4631
4632/*
8929ecfa
YZ
4633 * helper to calculate size of global block reservation.
4634 * the desired value is sum of space used by extent tree,
4635 * checksum tree and root tree
6a63209f 4636 */
8929ecfa 4637static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
6a63209f 4638{
8929ecfa
YZ
4639 struct btrfs_space_info *sinfo;
4640 u64 num_bytes;
4641 u64 meta_used;
4642 u64 data_used;
6c41761f 4643 int csum_size = btrfs_super_csum_size(fs_info->super_copy);
6a63209f 4644
8929ecfa
YZ
4645 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
4646 spin_lock(&sinfo->lock);
4647 data_used = sinfo->bytes_used;
4648 spin_unlock(&sinfo->lock);
33b4d47f 4649
8929ecfa
YZ
4650 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4651 spin_lock(&sinfo->lock);
6d48755d
JB
4652 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
4653 data_used = 0;
8929ecfa
YZ
4654 meta_used = sinfo->bytes_used;
4655 spin_unlock(&sinfo->lock);
ab6e2410 4656
8929ecfa
YZ
4657 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
4658 csum_size * 2;
4659 num_bytes += div64_u64(data_used + meta_used, 50);
4e06bdd6 4660
8929ecfa 4661 if (num_bytes * 3 > meta_used)
8e62c2de 4662 num_bytes = div64_u64(meta_used, 3);
ab6e2410 4663
8929ecfa
YZ
4664 return ALIGN(num_bytes, fs_info->extent_root->leafsize << 10);
4665}
6a63209f 4666
8929ecfa
YZ
4667static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
4668{
4669 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
4670 struct btrfs_space_info *sinfo = block_rsv->space_info;
4671 u64 num_bytes;
6a63209f 4672
8929ecfa 4673 num_bytes = calc_global_metadata_size(fs_info);
33b4d47f 4674
8929ecfa 4675 spin_lock(&sinfo->lock);
1f699d38 4676 spin_lock(&block_rsv->lock);
4e06bdd6 4677
fdf30d1c 4678 block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024);
4e06bdd6 4679
8929ecfa 4680 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
6d48755d
JB
4681 sinfo->bytes_reserved + sinfo->bytes_readonly +
4682 sinfo->bytes_may_use;
8929ecfa
YZ
4683
4684 if (sinfo->total_bytes > num_bytes) {
4685 num_bytes = sinfo->total_bytes - num_bytes;
4686 block_rsv->reserved += num_bytes;
fb25e914 4687 sinfo->bytes_may_use += num_bytes;
8c2a3ca2 4688 trace_btrfs_space_reservation(fs_info, "space_info",
2bcc0328 4689 sinfo->flags, num_bytes, 1);
6a63209f 4690 }
6a63209f 4691
8929ecfa
YZ
4692 if (block_rsv->reserved >= block_rsv->size) {
4693 num_bytes = block_rsv->reserved - block_rsv->size;
fb25e914 4694 sinfo->bytes_may_use -= num_bytes;
8c2a3ca2 4695 trace_btrfs_space_reservation(fs_info, "space_info",
2bcc0328 4696 sinfo->flags, num_bytes, 0);
8929ecfa
YZ
4697 block_rsv->reserved = block_rsv->size;
4698 block_rsv->full = 1;
4699 }
182608c8 4700
8929ecfa 4701 spin_unlock(&block_rsv->lock);
1f699d38 4702 spin_unlock(&sinfo->lock);
6a63209f
JB
4703}
4704
f0486c68 4705static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
6a63209f 4706{
f0486c68 4707 struct btrfs_space_info *space_info;
6a63209f 4708
f0486c68
YZ
4709 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4710 fs_info->chunk_block_rsv.space_info = space_info;
6a63209f 4711
f0486c68 4712 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
8929ecfa 4713 fs_info->global_block_rsv.space_info = space_info;
8929ecfa 4714 fs_info->delalloc_block_rsv.space_info = space_info;
f0486c68
YZ
4715 fs_info->trans_block_rsv.space_info = space_info;
4716 fs_info->empty_block_rsv.space_info = space_info;
6d668dda 4717 fs_info->delayed_block_rsv.space_info = space_info;
f0486c68 4718
8929ecfa
YZ
4719 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
4720 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
4721 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
4722 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
3a6cad90
SB
4723 if (fs_info->quota_root)
4724 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
f0486c68 4725 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
8929ecfa 4726
8929ecfa 4727 update_global_block_rsv(fs_info);
6a63209f
JB
4728}
4729
8929ecfa 4730static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
6a63209f 4731{
8c2a3ca2
JB
4732 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
4733 (u64)-1);
8929ecfa
YZ
4734 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
4735 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
4736 WARN_ON(fs_info->trans_block_rsv.size > 0);
4737 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
4738 WARN_ON(fs_info->chunk_block_rsv.size > 0);
4739 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
6d668dda
JB
4740 WARN_ON(fs_info->delayed_block_rsv.size > 0);
4741 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
fcb80c2a
JB
4742}
4743
a22285a6
YZ
4744void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
4745 struct btrfs_root *root)
6a63209f 4746{
0e721106
JB
4747 if (!trans->block_rsv)
4748 return;
4749
a22285a6
YZ
4750 if (!trans->bytes_reserved)
4751 return;
6a63209f 4752
e77266e4 4753 trace_btrfs_space_reservation(root->fs_info, "transaction",
2bcc0328 4754 trans->transid, trans->bytes_reserved, 0);
b24e03db 4755 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
a22285a6
YZ
4756 trans->bytes_reserved = 0;
4757}
6a63209f 4758
79787eaa 4759/* Can only return 0 or -ENOSPC */
d68fc57b
YZ
4760int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
4761 struct inode *inode)
4762{
4763 struct btrfs_root *root = BTRFS_I(inode)->root;
4764 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
4765 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
4766
4767 /*
fcb80c2a
JB
4768 * We need to hold space in order to delete our orphan item once we've
4769 * added it, so this takes the reservation so we can release it later
4770 * when we are truly done with the orphan item.
d68fc57b 4771 */
ff5714cc 4772 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
8c2a3ca2
JB
4773 trace_btrfs_space_reservation(root->fs_info, "orphan",
4774 btrfs_ino(inode), num_bytes, 1);
d68fc57b 4775 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
6a63209f
JB
4776}
4777
d68fc57b 4778void btrfs_orphan_release_metadata(struct inode *inode)
97e728d4 4779{
d68fc57b 4780 struct btrfs_root *root = BTRFS_I(inode)->root;
ff5714cc 4781 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
8c2a3ca2
JB
4782 trace_btrfs_space_reservation(root->fs_info, "orphan",
4783 btrfs_ino(inode), num_bytes, 0);
d68fc57b
YZ
4784 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
4785}
97e728d4 4786
d5c12070
MX
4787/*
4788 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
4789 * root: the root of the parent directory
4790 * rsv: block reservation
4791 * items: the number of items that we need do reservation
4792 * qgroup_reserved: used to return the reserved size in qgroup
4793 *
4794 * This function is used to reserve the space for snapshot/subvolume
4795 * creation and deletion. Those operations are different with the
4796 * common file/directory operations, they change two fs/file trees
4797 * and root tree, the number of items that the qgroup reserves is
4798 * different with the free space reservation. So we can not use
4799 * the space reseravtion mechanism in start_transaction().
4800 */
4801int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
4802 struct btrfs_block_rsv *rsv,
4803 int items,
ee3441b4
JM
4804 u64 *qgroup_reserved,
4805 bool use_global_rsv)
a22285a6 4806{
d5c12070
MX
4807 u64 num_bytes;
4808 int ret;
ee3441b4 4809 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
d5c12070
MX
4810
4811 if (root->fs_info->quota_enabled) {
4812 /* One for parent inode, two for dir entries */
4813 num_bytes = 3 * root->leafsize;
4814 ret = btrfs_qgroup_reserve(root, num_bytes);
4815 if (ret)
4816 return ret;
4817 } else {
4818 num_bytes = 0;
4819 }
4820
4821 *qgroup_reserved = num_bytes;
4822
4823 num_bytes = btrfs_calc_trans_metadata_size(root, items);
4824 rsv->space_info = __find_space_info(root->fs_info,
4825 BTRFS_BLOCK_GROUP_METADATA);
4826 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
4827 BTRFS_RESERVE_FLUSH_ALL);
ee3441b4
JM
4828
4829 if (ret == -ENOSPC && use_global_rsv)
4830 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes);
4831
d5c12070
MX
4832 if (ret) {
4833 if (*qgroup_reserved)
4834 btrfs_qgroup_free(root, *qgroup_reserved);
4835 }
4836
4837 return ret;
4838}
4839
4840void btrfs_subvolume_release_metadata(struct btrfs_root *root,
4841 struct btrfs_block_rsv *rsv,
4842 u64 qgroup_reserved)
4843{
4844 btrfs_block_rsv_release(root, rsv, (u64)-1);
4845 if (qgroup_reserved)
4846 btrfs_qgroup_free(root, qgroup_reserved);
97e728d4
JB
4847}
4848
7709cde3
JB
4849/**
4850 * drop_outstanding_extent - drop an outstanding extent
4851 * @inode: the inode we're dropping the extent for
4852 *
4853 * This is called when we are freeing up an outstanding extent, either called
4854 * after an error or after an extent is written. This will return the number of
4855 * reserved extents that need to be freed. This must be called with
4856 * BTRFS_I(inode)->lock held.
4857 */
9e0baf60
JB
4858static unsigned drop_outstanding_extent(struct inode *inode)
4859{
7fd2ae21 4860 unsigned drop_inode_space = 0;
9e0baf60
JB
4861 unsigned dropped_extents = 0;
4862
9e0baf60
JB
4863 BUG_ON(!BTRFS_I(inode)->outstanding_extents);
4864 BTRFS_I(inode)->outstanding_extents--;
4865
7fd2ae21 4866 if (BTRFS_I(inode)->outstanding_extents == 0 &&
72ac3c0d
JB
4867 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
4868 &BTRFS_I(inode)->runtime_flags))
7fd2ae21 4869 drop_inode_space = 1;
7fd2ae21 4870
9e0baf60
JB
4871 /*
4872 * If we have more or the same amount of outsanding extents than we have
4873 * reserved then we need to leave the reserved extents count alone.
4874 */
4875 if (BTRFS_I(inode)->outstanding_extents >=
4876 BTRFS_I(inode)->reserved_extents)
7fd2ae21 4877 return drop_inode_space;
9e0baf60
JB
4878
4879 dropped_extents = BTRFS_I(inode)->reserved_extents -
4880 BTRFS_I(inode)->outstanding_extents;
4881 BTRFS_I(inode)->reserved_extents -= dropped_extents;
7fd2ae21 4882 return dropped_extents + drop_inode_space;
9e0baf60
JB
4883}
4884
7709cde3
JB
4885/**
4886 * calc_csum_metadata_size - return the amount of metada space that must be
4887 * reserved/free'd for the given bytes.
4888 * @inode: the inode we're manipulating
4889 * @num_bytes: the number of bytes in question
4890 * @reserve: 1 if we are reserving space, 0 if we are freeing space
4891 *
4892 * This adjusts the number of csum_bytes in the inode and then returns the
4893 * correct amount of metadata that must either be reserved or freed. We
4894 * calculate how many checksums we can fit into one leaf and then divide the
4895 * number of bytes that will need to be checksumed by this value to figure out
4896 * how many checksums will be required. If we are adding bytes then the number
4897 * may go up and we will return the number of additional bytes that must be
4898 * reserved. If it is going down we will return the number of bytes that must
4899 * be freed.
4900 *
4901 * This must be called with BTRFS_I(inode)->lock held.
4902 */
4903static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
4904 int reserve)
6324fbf3 4905{
7709cde3
JB
4906 struct btrfs_root *root = BTRFS_I(inode)->root;
4907 u64 csum_size;
4908 int num_csums_per_leaf;
4909 int num_csums;
4910 int old_csums;
4911
4912 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
4913 BTRFS_I(inode)->csum_bytes == 0)
4914 return 0;
4915
4916 old_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
4917 if (reserve)
4918 BTRFS_I(inode)->csum_bytes += num_bytes;
4919 else
4920 BTRFS_I(inode)->csum_bytes -= num_bytes;
4921 csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item);
4922 num_csums_per_leaf = (int)div64_u64(csum_size,
4923 sizeof(struct btrfs_csum_item) +
4924 sizeof(struct btrfs_disk_key));
4925 num_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
4926 num_csums = num_csums + num_csums_per_leaf - 1;
4927 num_csums = num_csums / num_csums_per_leaf;
4928
4929 old_csums = old_csums + num_csums_per_leaf - 1;
4930 old_csums = old_csums / num_csums_per_leaf;
4931
4932 /* No change, no need to reserve more */
4933 if (old_csums == num_csums)
4934 return 0;
4935
4936 if (reserve)
4937 return btrfs_calc_trans_metadata_size(root,
4938 num_csums - old_csums);
4939
4940 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
0ca1f7ce 4941}
c146afad 4942
0ca1f7ce
YZ
4943int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
4944{
4945 struct btrfs_root *root = BTRFS_I(inode)->root;
4946 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
9e0baf60 4947 u64 to_reserve = 0;
660d3f6c 4948 u64 csum_bytes;
9e0baf60 4949 unsigned nr_extents = 0;
660d3f6c 4950 int extra_reserve = 0;
08e007d2 4951 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
eb6b88d9 4952 int ret = 0;
c64c2bd8 4953 bool delalloc_lock = true;
88e081bf
WS
4954 u64 to_free = 0;
4955 unsigned dropped;
6324fbf3 4956
c64c2bd8
JB
4957 /* If we are a free space inode we need to not flush since we will be in
4958 * the middle of a transaction commit. We also don't need the delalloc
4959 * mutex since we won't race with anybody. We need this mostly to make
4960 * lockdep shut its filthy mouth.
4961 */
4962 if (btrfs_is_free_space_inode(inode)) {
08e007d2 4963 flush = BTRFS_RESERVE_NO_FLUSH;
c64c2bd8
JB
4964 delalloc_lock = false;
4965 }
c09544e0 4966
08e007d2
MX
4967 if (flush != BTRFS_RESERVE_NO_FLUSH &&
4968 btrfs_transaction_in_commit(root->fs_info))
0ca1f7ce 4969 schedule_timeout(1);
ec44a35c 4970
c64c2bd8
JB
4971 if (delalloc_lock)
4972 mutex_lock(&BTRFS_I(inode)->delalloc_mutex);
4973
0ca1f7ce 4974 num_bytes = ALIGN(num_bytes, root->sectorsize);
8bb8ab2e 4975
9e0baf60
JB
4976 spin_lock(&BTRFS_I(inode)->lock);
4977 BTRFS_I(inode)->outstanding_extents++;
4978
4979 if (BTRFS_I(inode)->outstanding_extents >
660d3f6c 4980 BTRFS_I(inode)->reserved_extents)
9e0baf60
JB
4981 nr_extents = BTRFS_I(inode)->outstanding_extents -
4982 BTRFS_I(inode)->reserved_extents;
57a45ced 4983
7fd2ae21
JB
4984 /*
4985 * Add an item to reserve for updating the inode when we complete the
4986 * delalloc io.
4987 */
72ac3c0d
JB
4988 if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
4989 &BTRFS_I(inode)->runtime_flags)) {
7fd2ae21 4990 nr_extents++;
660d3f6c 4991 extra_reserve = 1;
593060d7 4992 }
7fd2ae21
JB
4993
4994 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents);
7709cde3 4995 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
660d3f6c 4996 csum_bytes = BTRFS_I(inode)->csum_bytes;
9e0baf60 4997 spin_unlock(&BTRFS_I(inode)->lock);
57a45ced 4998
88e081bf 4999 if (root->fs_info->quota_enabled) {
c5567237
AJ
5000 ret = btrfs_qgroup_reserve(root, num_bytes +
5001 nr_extents * root->leafsize);
88e081bf
WS
5002 if (ret)
5003 goto out_fail;
5004 }
c5567237 5005
88e081bf
WS
5006 ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush);
5007 if (unlikely(ret)) {
5008 if (root->fs_info->quota_enabled)
4b5829a8
MX
5009 btrfs_qgroup_free(root, num_bytes +
5010 nr_extents * root->leafsize);
88e081bf 5011 goto out_fail;
9e0baf60 5012 }
25179201 5013
660d3f6c
JB
5014 spin_lock(&BTRFS_I(inode)->lock);
5015 if (extra_reserve) {
72ac3c0d
JB
5016 set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5017 &BTRFS_I(inode)->runtime_flags);
660d3f6c
JB
5018 nr_extents--;
5019 }
5020 BTRFS_I(inode)->reserved_extents += nr_extents;
5021 spin_unlock(&BTRFS_I(inode)->lock);
c64c2bd8
JB
5022
5023 if (delalloc_lock)
5024 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
660d3f6c 5025
8c2a3ca2 5026 if (to_reserve)
67871254 5027 trace_btrfs_space_reservation(root->fs_info, "delalloc",
8c2a3ca2 5028 btrfs_ino(inode), to_reserve, 1);
0ca1f7ce
YZ
5029 block_rsv_add_bytes(block_rsv, to_reserve, 1);
5030
0ca1f7ce 5031 return 0;
88e081bf
WS
5032
5033out_fail:
5034 spin_lock(&BTRFS_I(inode)->lock);
5035 dropped = drop_outstanding_extent(inode);
5036 /*
5037 * If the inodes csum_bytes is the same as the original
5038 * csum_bytes then we know we haven't raced with any free()ers
5039 * so we can just reduce our inodes csum bytes and carry on.
88e081bf 5040 */
f4881bc7 5041 if (BTRFS_I(inode)->csum_bytes == csum_bytes) {
88e081bf 5042 calc_csum_metadata_size(inode, num_bytes, 0);
f4881bc7
JB
5043 } else {
5044 u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes;
5045 u64 bytes;
5046
5047 /*
5048 * This is tricky, but first we need to figure out how much we
5049 * free'd from any free-ers that occured during this
5050 * reservation, so we reset ->csum_bytes to the csum_bytes
5051 * before we dropped our lock, and then call the free for the
5052 * number of bytes that were freed while we were trying our
5053 * reservation.
5054 */
5055 bytes = csum_bytes - BTRFS_I(inode)->csum_bytes;
5056 BTRFS_I(inode)->csum_bytes = csum_bytes;
5057 to_free = calc_csum_metadata_size(inode, bytes, 0);
5058
5059
5060 /*
5061 * Now we need to see how much we would have freed had we not
5062 * been making this reservation and our ->csum_bytes were not
5063 * artificially inflated.
5064 */
5065 BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes;
5066 bytes = csum_bytes - orig_csum_bytes;
5067 bytes = calc_csum_metadata_size(inode, bytes, 0);
5068
5069 /*
5070 * Now reset ->csum_bytes to what it should be. If bytes is
5071 * more than to_free then we would have free'd more space had we
5072 * not had an artificially high ->csum_bytes, so we need to free
5073 * the remainder. If bytes is the same or less then we don't
5074 * need to do anything, the other free-ers did the correct
5075 * thing.
5076 */
5077 BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes;
5078 if (bytes > to_free)
5079 to_free = bytes - to_free;
5080 else
5081 to_free = 0;
5082 }
88e081bf
WS
5083 spin_unlock(&BTRFS_I(inode)->lock);
5084 if (dropped)
5085 to_free += btrfs_calc_trans_metadata_size(root, dropped);
5086
5087 if (to_free) {
5088 btrfs_block_rsv_release(root, block_rsv, to_free);
5089 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5090 btrfs_ino(inode), to_free, 0);
5091 }
5092 if (delalloc_lock)
5093 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
5094 return ret;
0ca1f7ce
YZ
5095}
5096
7709cde3
JB
5097/**
5098 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
5099 * @inode: the inode to release the reservation for
5100 * @num_bytes: the number of bytes we're releasing
5101 *
5102 * This will release the metadata reservation for an inode. This can be called
5103 * once we complete IO for a given set of bytes to release their metadata
5104 * reservations.
5105 */
0ca1f7ce
YZ
5106void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
5107{
5108 struct btrfs_root *root = BTRFS_I(inode)->root;
9e0baf60
JB
5109 u64 to_free = 0;
5110 unsigned dropped;
0ca1f7ce
YZ
5111
5112 num_bytes = ALIGN(num_bytes, root->sectorsize);
7709cde3 5113 spin_lock(&BTRFS_I(inode)->lock);
9e0baf60 5114 dropped = drop_outstanding_extent(inode);
97e728d4 5115
0934856d
MX
5116 if (num_bytes)
5117 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
7709cde3 5118 spin_unlock(&BTRFS_I(inode)->lock);
9e0baf60
JB
5119 if (dropped > 0)
5120 to_free += btrfs_calc_trans_metadata_size(root, dropped);
0ca1f7ce 5121
8c2a3ca2
JB
5122 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5123 btrfs_ino(inode), to_free, 0);
c5567237
AJ
5124 if (root->fs_info->quota_enabled) {
5125 btrfs_qgroup_free(root, num_bytes +
5126 dropped * root->leafsize);
5127 }
5128
0ca1f7ce
YZ
5129 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
5130 to_free);
5131}
5132
7709cde3
JB
5133/**
5134 * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc
5135 * @inode: inode we're writing to
5136 * @num_bytes: the number of bytes we want to allocate
5137 *
5138 * This will do the following things
5139 *
5140 * o reserve space in the data space info for num_bytes
5141 * o reserve space in the metadata space info based on number of outstanding
5142 * extents and how much csums will be needed
5143 * o add to the inodes ->delalloc_bytes
5144 * o add it to the fs_info's delalloc inodes list.
5145 *
5146 * This will return 0 for success and -ENOSPC if there is no space left.
5147 */
0ca1f7ce
YZ
5148int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
5149{
5150 int ret;
5151
5152 ret = btrfs_check_data_free_space(inode, num_bytes);
d397712b 5153 if (ret)
0ca1f7ce
YZ
5154 return ret;
5155
5156 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
5157 if (ret) {
5158 btrfs_free_reserved_data_space(inode, num_bytes);
5159 return ret;
5160 }
5161
5162 return 0;
5163}
5164
7709cde3
JB
5165/**
5166 * btrfs_delalloc_release_space - release data and metadata space for delalloc
5167 * @inode: inode we're releasing space for
5168 * @num_bytes: the number of bytes we want to free up
5169 *
5170 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
5171 * called in the case that we don't need the metadata AND data reservations
5172 * anymore. So if there is an error or we insert an inline extent.
5173 *
5174 * This function will release the metadata space that was not used and will
5175 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
5176 * list if there are no delalloc bytes left.
5177 */
0ca1f7ce
YZ
5178void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
5179{
5180 btrfs_delalloc_release_metadata(inode, num_bytes);
5181 btrfs_free_reserved_data_space(inode, num_bytes);
6324fbf3
CM
5182}
5183
c53d613e 5184static int update_block_group(struct btrfs_root *root,
f0486c68 5185 u64 bytenr, u64 num_bytes, int alloc)
9078a3e1 5186{
0af3d00b 5187 struct btrfs_block_group_cache *cache = NULL;
9078a3e1 5188 struct btrfs_fs_info *info = root->fs_info;
db94535d 5189 u64 total = num_bytes;
9078a3e1 5190 u64 old_val;
db94535d 5191 u64 byte_in_group;
0af3d00b 5192 int factor;
3e1ad54f 5193
5d4f98a2 5194 /* block accounting for super block */
eb73c1b7 5195 spin_lock(&info->delalloc_root_lock);
6c41761f 5196 old_val = btrfs_super_bytes_used(info->super_copy);
5d4f98a2
YZ
5197 if (alloc)
5198 old_val += num_bytes;
5199 else
5200 old_val -= num_bytes;
6c41761f 5201 btrfs_set_super_bytes_used(info->super_copy, old_val);
eb73c1b7 5202 spin_unlock(&info->delalloc_root_lock);
5d4f98a2 5203
d397712b 5204 while (total) {
db94535d 5205 cache = btrfs_lookup_block_group(info, bytenr);
f3465ca4 5206 if (!cache)
79787eaa 5207 return -ENOENT;
b742bb82
YZ
5208 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
5209 BTRFS_BLOCK_GROUP_RAID1 |
5210 BTRFS_BLOCK_GROUP_RAID10))
5211 factor = 2;
5212 else
5213 factor = 1;
9d66e233
JB
5214 /*
5215 * If this block group has free space cache written out, we
5216 * need to make sure to load it if we are removing space. This
5217 * is because we need the unpinning stage to actually add the
5218 * space back to the block group, otherwise we will leak space.
5219 */
5220 if (!alloc && cache->cached == BTRFS_CACHE_NO)
f6373bf3 5221 cache_block_group(cache, 1);
0af3d00b 5222
db94535d
CM
5223 byte_in_group = bytenr - cache->key.objectid;
5224 WARN_ON(byte_in_group > cache->key.offset);
9078a3e1 5225
25179201 5226 spin_lock(&cache->space_info->lock);
c286ac48 5227 spin_lock(&cache->lock);
0af3d00b 5228
73bc1876 5229 if (btrfs_test_opt(root, SPACE_CACHE) &&
0af3d00b
JB
5230 cache->disk_cache_state < BTRFS_DC_CLEAR)
5231 cache->disk_cache_state = BTRFS_DC_CLEAR;
5232
0f9dd46c 5233 cache->dirty = 1;
9078a3e1 5234 old_val = btrfs_block_group_used(&cache->item);
db94535d 5235 num_bytes = min(total, cache->key.offset - byte_in_group);
cd1bc465 5236 if (alloc) {
db94535d 5237 old_val += num_bytes;
11833d66
YZ
5238 btrfs_set_block_group_used(&cache->item, old_val);
5239 cache->reserved -= num_bytes;
11833d66 5240 cache->space_info->bytes_reserved -= num_bytes;
b742bb82
YZ
5241 cache->space_info->bytes_used += num_bytes;
5242 cache->space_info->disk_used += num_bytes * factor;
c286ac48 5243 spin_unlock(&cache->lock);
25179201 5244 spin_unlock(&cache->space_info->lock);
cd1bc465 5245 } else {
db94535d 5246 old_val -= num_bytes;
c286ac48 5247 btrfs_set_block_group_used(&cache->item, old_val);
f0486c68
YZ
5248 cache->pinned += num_bytes;
5249 cache->space_info->bytes_pinned += num_bytes;
6324fbf3 5250 cache->space_info->bytes_used -= num_bytes;
b742bb82 5251 cache->space_info->disk_used -= num_bytes * factor;
c286ac48 5252 spin_unlock(&cache->lock);
25179201 5253 spin_unlock(&cache->space_info->lock);
1f3c79a2 5254
f0486c68
YZ
5255 set_extent_dirty(info->pinned_extents,
5256 bytenr, bytenr + num_bytes - 1,
5257 GFP_NOFS | __GFP_NOFAIL);
cd1bc465 5258 }
fa9c0d79 5259 btrfs_put_block_group(cache);
db94535d
CM
5260 total -= num_bytes;
5261 bytenr += num_bytes;
9078a3e1
CM
5262 }
5263 return 0;
5264}
6324fbf3 5265
a061fc8d
CM
5266static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
5267{
0f9dd46c 5268 struct btrfs_block_group_cache *cache;
d2fb3437 5269 u64 bytenr;
0f9dd46c 5270
a1897fdd
LB
5271 spin_lock(&root->fs_info->block_group_cache_lock);
5272 bytenr = root->fs_info->first_logical_byte;
5273 spin_unlock(&root->fs_info->block_group_cache_lock);
5274
5275 if (bytenr < (u64)-1)
5276 return bytenr;
5277
0f9dd46c
JB
5278 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
5279 if (!cache)
a061fc8d 5280 return 0;
0f9dd46c 5281
d2fb3437 5282 bytenr = cache->key.objectid;
fa9c0d79 5283 btrfs_put_block_group(cache);
d2fb3437
YZ
5284
5285 return bytenr;
a061fc8d
CM
5286}
5287
f0486c68
YZ
5288static int pin_down_extent(struct btrfs_root *root,
5289 struct btrfs_block_group_cache *cache,
5290 u64 bytenr, u64 num_bytes, int reserved)
324ae4df 5291{
11833d66
YZ
5292 spin_lock(&cache->space_info->lock);
5293 spin_lock(&cache->lock);
5294 cache->pinned += num_bytes;
5295 cache->space_info->bytes_pinned += num_bytes;
5296 if (reserved) {
5297 cache->reserved -= num_bytes;
5298 cache->space_info->bytes_reserved -= num_bytes;
5299 }
5300 spin_unlock(&cache->lock);
5301 spin_unlock(&cache->space_info->lock);
68b38550 5302
f0486c68
YZ
5303 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
5304 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
0be5dc67
JB
5305 if (reserved)
5306 trace_btrfs_reserved_extent_free(root, bytenr, num_bytes);
f0486c68
YZ
5307 return 0;
5308}
68b38550 5309
f0486c68
YZ
5310/*
5311 * this function must be called within transaction
5312 */
5313int btrfs_pin_extent(struct btrfs_root *root,
5314 u64 bytenr, u64 num_bytes, int reserved)
5315{
5316 struct btrfs_block_group_cache *cache;
68b38550 5317
f0486c68 5318 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
79787eaa 5319 BUG_ON(!cache); /* Logic error */
f0486c68
YZ
5320
5321 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
5322
5323 btrfs_put_block_group(cache);
11833d66
YZ
5324 return 0;
5325}
5326
f0486c68 5327/*
e688b725
CM
5328 * this function must be called within transaction
5329 */
dcfac415 5330int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
e688b725
CM
5331 u64 bytenr, u64 num_bytes)
5332{
5333 struct btrfs_block_group_cache *cache;
b50c6e25 5334 int ret;
e688b725
CM
5335
5336 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
b50c6e25
JB
5337 if (!cache)
5338 return -EINVAL;
e688b725
CM
5339
5340 /*
5341 * pull in the free space cache (if any) so that our pin
5342 * removes the free space from the cache. We have load_only set
5343 * to one because the slow code to read in the free extents does check
5344 * the pinned extents.
5345 */
f6373bf3 5346 cache_block_group(cache, 1);
e688b725
CM
5347
5348 pin_down_extent(root, cache, bytenr, num_bytes, 0);
5349
5350 /* remove us from the free space cache (if we're there at all) */
b50c6e25 5351 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
e688b725 5352 btrfs_put_block_group(cache);
b50c6e25 5353 return ret;
e688b725
CM
5354}
5355
8c2a1a30
JB
5356static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes)
5357{
5358 int ret;
5359 struct btrfs_block_group_cache *block_group;
5360 struct btrfs_caching_control *caching_ctl;
5361
5362 block_group = btrfs_lookup_block_group(root->fs_info, start);
5363 if (!block_group)
5364 return -EINVAL;
5365
5366 cache_block_group(block_group, 0);
5367 caching_ctl = get_caching_control(block_group);
5368
5369 if (!caching_ctl) {
5370 /* Logic error */
5371 BUG_ON(!block_group_cache_done(block_group));
5372 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5373 } else {
5374 mutex_lock(&caching_ctl->mutex);
5375
5376 if (start >= caching_ctl->progress) {
5377 ret = add_excluded_extent(root, start, num_bytes);
5378 } else if (start + num_bytes <= caching_ctl->progress) {
5379 ret = btrfs_remove_free_space(block_group,
5380 start, num_bytes);
5381 } else {
5382 num_bytes = caching_ctl->progress - start;
5383 ret = btrfs_remove_free_space(block_group,
5384 start, num_bytes);
5385 if (ret)
5386 goto out_lock;
5387
5388 num_bytes = (start + num_bytes) -
5389 caching_ctl->progress;
5390 start = caching_ctl->progress;
5391 ret = add_excluded_extent(root, start, num_bytes);
5392 }
5393out_lock:
5394 mutex_unlock(&caching_ctl->mutex);
5395 put_caching_control(caching_ctl);
5396 }
5397 btrfs_put_block_group(block_group);
5398 return ret;
5399}
5400
5401int btrfs_exclude_logged_extents(struct btrfs_root *log,
5402 struct extent_buffer *eb)
5403{
5404 struct btrfs_file_extent_item *item;
5405 struct btrfs_key key;
5406 int found_type;
5407 int i;
5408
5409 if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS))
5410 return 0;
5411
5412 for (i = 0; i < btrfs_header_nritems(eb); i++) {
5413 btrfs_item_key_to_cpu(eb, &key, i);
5414 if (key.type != BTRFS_EXTENT_DATA_KEY)
5415 continue;
5416 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
5417 found_type = btrfs_file_extent_type(eb, item);
5418 if (found_type == BTRFS_FILE_EXTENT_INLINE)
5419 continue;
5420 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
5421 continue;
5422 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
5423 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
5424 __exclude_logged_extent(log, key.objectid, key.offset);
5425 }
5426
5427 return 0;
5428}
5429
fb25e914
JB
5430/**
5431 * btrfs_update_reserved_bytes - update the block_group and space info counters
5432 * @cache: The cache we are manipulating
5433 * @num_bytes: The number of bytes in question
5434 * @reserve: One of the reservation enums
5435 *
5436 * This is called by the allocator when it reserves space, or by somebody who is
5437 * freeing space that was never actually used on disk. For example if you
5438 * reserve some space for a new leaf in transaction A and before transaction A
5439 * commits you free that leaf, you call this with reserve set to 0 in order to
5440 * clear the reservation.
5441 *
5442 * Metadata reservations should be called with RESERVE_ALLOC so we do the proper
5443 * ENOSPC accounting. For data we handle the reservation through clearing the
5444 * delalloc bits in the io_tree. We have to do this since we could end up
5445 * allocating less disk space for the amount of data we have reserved in the
5446 * case of compression.
5447 *
5448 * If this is a reservation and the block group has become read only we cannot
5449 * make the reservation and return -EAGAIN, otherwise this function always
5450 * succeeds.
f0486c68 5451 */
fb25e914
JB
5452static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
5453 u64 num_bytes, int reserve)
11833d66 5454{
fb25e914 5455 struct btrfs_space_info *space_info = cache->space_info;
f0486c68 5456 int ret = 0;
79787eaa 5457
fb25e914
JB
5458 spin_lock(&space_info->lock);
5459 spin_lock(&cache->lock);
5460 if (reserve != RESERVE_FREE) {
f0486c68
YZ
5461 if (cache->ro) {
5462 ret = -EAGAIN;
5463 } else {
fb25e914
JB
5464 cache->reserved += num_bytes;
5465 space_info->bytes_reserved += num_bytes;
5466 if (reserve == RESERVE_ALLOC) {
8c2a3ca2 5467 trace_btrfs_space_reservation(cache->fs_info,
2bcc0328
LB
5468 "space_info", space_info->flags,
5469 num_bytes, 0);
fb25e914
JB
5470 space_info->bytes_may_use -= num_bytes;
5471 }
f0486c68 5472 }
fb25e914
JB
5473 } else {
5474 if (cache->ro)
5475 space_info->bytes_readonly += num_bytes;
5476 cache->reserved -= num_bytes;
5477 space_info->bytes_reserved -= num_bytes;
324ae4df 5478 }
fb25e914
JB
5479 spin_unlock(&cache->lock);
5480 spin_unlock(&space_info->lock);
f0486c68 5481 return ret;
324ae4df 5482}
9078a3e1 5483
143bede5 5484void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
11833d66 5485 struct btrfs_root *root)
e8569813 5486{
e8569813 5487 struct btrfs_fs_info *fs_info = root->fs_info;
11833d66
YZ
5488 struct btrfs_caching_control *next;
5489 struct btrfs_caching_control *caching_ctl;
5490 struct btrfs_block_group_cache *cache;
b150a4f1 5491 struct btrfs_space_info *space_info;
e8569813 5492
11833d66 5493 down_write(&fs_info->extent_commit_sem);
25179201 5494
11833d66
YZ
5495 list_for_each_entry_safe(caching_ctl, next,
5496 &fs_info->caching_block_groups, list) {
5497 cache = caching_ctl->block_group;
5498 if (block_group_cache_done(cache)) {
5499 cache->last_byte_to_unpin = (u64)-1;
5500 list_del_init(&caching_ctl->list);
5501 put_caching_control(caching_ctl);
e8569813 5502 } else {
11833d66 5503 cache->last_byte_to_unpin = caching_ctl->progress;
e8569813 5504 }
e8569813 5505 }
11833d66
YZ
5506
5507 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5508 fs_info->pinned_extents = &fs_info->freed_extents[1];
5509 else
5510 fs_info->pinned_extents = &fs_info->freed_extents[0];
5511
5512 up_write(&fs_info->extent_commit_sem);
8929ecfa 5513
b150a4f1
JB
5514 list_for_each_entry_rcu(space_info, &fs_info->space_info, list)
5515 percpu_counter_set(&space_info->total_bytes_pinned, 0);
5516
8929ecfa 5517 update_global_block_rsv(fs_info);
e8569813
ZY
5518}
5519
11833d66 5520static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
ccd467d6 5521{
11833d66
YZ
5522 struct btrfs_fs_info *fs_info = root->fs_info;
5523 struct btrfs_block_group_cache *cache = NULL;
7b398f8e
JB
5524 struct btrfs_space_info *space_info;
5525 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
11833d66 5526 u64 len;
7b398f8e 5527 bool readonly;
ccd467d6 5528
11833d66 5529 while (start <= end) {
7b398f8e 5530 readonly = false;
11833d66
YZ
5531 if (!cache ||
5532 start >= cache->key.objectid + cache->key.offset) {
5533 if (cache)
5534 btrfs_put_block_group(cache);
5535 cache = btrfs_lookup_block_group(fs_info, start);
79787eaa 5536 BUG_ON(!cache); /* Logic error */
11833d66
YZ
5537 }
5538
5539 len = cache->key.objectid + cache->key.offset - start;
5540 len = min(len, end + 1 - start);
5541
5542 if (start < cache->last_byte_to_unpin) {
5543 len = min(len, cache->last_byte_to_unpin - start);
5544 btrfs_add_free_space(cache, start, len);
5545 }
5546
f0486c68 5547 start += len;
7b398f8e 5548 space_info = cache->space_info;
f0486c68 5549
7b398f8e 5550 spin_lock(&space_info->lock);
11833d66
YZ
5551 spin_lock(&cache->lock);
5552 cache->pinned -= len;
7b398f8e
JB
5553 space_info->bytes_pinned -= len;
5554 if (cache->ro) {
5555 space_info->bytes_readonly += len;
5556 readonly = true;
5557 }
11833d66 5558 spin_unlock(&cache->lock);
7b398f8e
JB
5559 if (!readonly && global_rsv->space_info == space_info) {
5560 spin_lock(&global_rsv->lock);
5561 if (!global_rsv->full) {
5562 len = min(len, global_rsv->size -
5563 global_rsv->reserved);
5564 global_rsv->reserved += len;
5565 space_info->bytes_may_use += len;
5566 if (global_rsv->reserved >= global_rsv->size)
5567 global_rsv->full = 1;
5568 }
5569 spin_unlock(&global_rsv->lock);
5570 }
5571 spin_unlock(&space_info->lock);
ccd467d6 5572 }
11833d66
YZ
5573
5574 if (cache)
5575 btrfs_put_block_group(cache);
ccd467d6
CM
5576 return 0;
5577}
5578
5579int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
11833d66 5580 struct btrfs_root *root)
a28ec197 5581{
11833d66
YZ
5582 struct btrfs_fs_info *fs_info = root->fs_info;
5583 struct extent_io_tree *unpin;
1a5bc167
CM
5584 u64 start;
5585 u64 end;
a28ec197 5586 int ret;
a28ec197 5587
79787eaa
JM
5588 if (trans->aborted)
5589 return 0;
5590
11833d66
YZ
5591 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5592 unpin = &fs_info->freed_extents[1];
5593 else
5594 unpin = &fs_info->freed_extents[0];
5595
d397712b 5596 while (1) {
1a5bc167 5597 ret = find_first_extent_bit(unpin, 0, &start, &end,
e6138876 5598 EXTENT_DIRTY, NULL);
1a5bc167 5599 if (ret)
a28ec197 5600 break;
1f3c79a2 5601
5378e607
LD
5602 if (btrfs_test_opt(root, DISCARD))
5603 ret = btrfs_discard_extent(root, start,
5604 end + 1 - start, NULL);
1f3c79a2 5605
1a5bc167 5606 clear_extent_dirty(unpin, start, end, GFP_NOFS);
11833d66 5607 unpin_extent_range(root, start, end);
b9473439 5608 cond_resched();
a28ec197 5609 }
817d52f8 5610
e20d96d6
CM
5611 return 0;
5612}
5613
b150a4f1
JB
5614static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes,
5615 u64 owner, u64 root_objectid)
5616{
5617 struct btrfs_space_info *space_info;
5618 u64 flags;
5619
5620 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
5621 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
5622 flags = BTRFS_BLOCK_GROUP_SYSTEM;
5623 else
5624 flags = BTRFS_BLOCK_GROUP_METADATA;
5625 } else {
5626 flags = BTRFS_BLOCK_GROUP_DATA;
5627 }
5628
5629 space_info = __find_space_info(fs_info, flags);
5630 BUG_ON(!space_info); /* Logic bug */
5631 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
5632}
5633
5634
5d4f98a2
YZ
5635static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
5636 struct btrfs_root *root,
5637 u64 bytenr, u64 num_bytes, u64 parent,
5638 u64 root_objectid, u64 owner_objectid,
5639 u64 owner_offset, int refs_to_drop,
5640 struct btrfs_delayed_extent_op *extent_op)
a28ec197 5641{
e2fa7227 5642 struct btrfs_key key;
5d4f98a2 5643 struct btrfs_path *path;
1261ec42
CM
5644 struct btrfs_fs_info *info = root->fs_info;
5645 struct btrfs_root *extent_root = info->extent_root;
5f39d397 5646 struct extent_buffer *leaf;
5d4f98a2
YZ
5647 struct btrfs_extent_item *ei;
5648 struct btrfs_extent_inline_ref *iref;
a28ec197 5649 int ret;
5d4f98a2 5650 int is_data;
952fccac
CM
5651 int extent_slot = 0;
5652 int found_extent = 0;
5653 int num_to_del = 1;
5d4f98a2
YZ
5654 u32 item_size;
5655 u64 refs;
3173a18f
JB
5656 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
5657 SKINNY_METADATA);
037e6390 5658
5caf2a00 5659 path = btrfs_alloc_path();
54aa1f4d
CM
5660 if (!path)
5661 return -ENOMEM;
5f26f772 5662
3c12ac72 5663 path->reada = 1;
b9473439 5664 path->leave_spinning = 1;
5d4f98a2
YZ
5665
5666 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
5667 BUG_ON(!is_data && refs_to_drop != 1);
5668
3173a18f
JB
5669 if (is_data)
5670 skinny_metadata = 0;
5671
5d4f98a2
YZ
5672 ret = lookup_extent_backref(trans, extent_root, path, &iref,
5673 bytenr, num_bytes, parent,
5674 root_objectid, owner_objectid,
5675 owner_offset);
7bb86316 5676 if (ret == 0) {
952fccac 5677 extent_slot = path->slots[0];
5d4f98a2
YZ
5678 while (extent_slot >= 0) {
5679 btrfs_item_key_to_cpu(path->nodes[0], &key,
952fccac 5680 extent_slot);
5d4f98a2 5681 if (key.objectid != bytenr)
952fccac 5682 break;
5d4f98a2
YZ
5683 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
5684 key.offset == num_bytes) {
952fccac
CM
5685 found_extent = 1;
5686 break;
5687 }
3173a18f
JB
5688 if (key.type == BTRFS_METADATA_ITEM_KEY &&
5689 key.offset == owner_objectid) {
5690 found_extent = 1;
5691 break;
5692 }
952fccac
CM
5693 if (path->slots[0] - extent_slot > 5)
5694 break;
5d4f98a2 5695 extent_slot--;
952fccac 5696 }
5d4f98a2
YZ
5697#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5698 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
5699 if (found_extent && item_size < sizeof(*ei))
5700 found_extent = 0;
5701#endif
31840ae1 5702 if (!found_extent) {
5d4f98a2 5703 BUG_ON(iref);
56bec294 5704 ret = remove_extent_backref(trans, extent_root, path,
5d4f98a2
YZ
5705 NULL, refs_to_drop,
5706 is_data);
005d6427
DS
5707 if (ret) {
5708 btrfs_abort_transaction(trans, extent_root, ret);
5709 goto out;
5710 }
b3b4aa74 5711 btrfs_release_path(path);
b9473439 5712 path->leave_spinning = 1;
5d4f98a2
YZ
5713
5714 key.objectid = bytenr;
5715 key.type = BTRFS_EXTENT_ITEM_KEY;
5716 key.offset = num_bytes;
5717
3173a18f
JB
5718 if (!is_data && skinny_metadata) {
5719 key.type = BTRFS_METADATA_ITEM_KEY;
5720 key.offset = owner_objectid;
5721 }
5722
31840ae1
ZY
5723 ret = btrfs_search_slot(trans, extent_root,
5724 &key, path, -1, 1);
3173a18f
JB
5725 if (ret > 0 && skinny_metadata && path->slots[0]) {
5726 /*
5727 * Couldn't find our skinny metadata item,
5728 * see if we have ye olde extent item.
5729 */
5730 path->slots[0]--;
5731 btrfs_item_key_to_cpu(path->nodes[0], &key,
5732 path->slots[0]);
5733 if (key.objectid == bytenr &&
5734 key.type == BTRFS_EXTENT_ITEM_KEY &&
5735 key.offset == num_bytes)
5736 ret = 0;
5737 }
5738
5739 if (ret > 0 && skinny_metadata) {
5740 skinny_metadata = false;
5741 key.type = BTRFS_EXTENT_ITEM_KEY;
5742 key.offset = num_bytes;
5743 btrfs_release_path(path);
5744 ret = btrfs_search_slot(trans, extent_root,
5745 &key, path, -1, 1);
5746 }
5747
f3465ca4 5748 if (ret) {
c2cf52eb 5749 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
c1c9ff7c 5750 ret, bytenr);
b783e62d
JB
5751 if (ret > 0)
5752 btrfs_print_leaf(extent_root,
5753 path->nodes[0]);
f3465ca4 5754 }
005d6427
DS
5755 if (ret < 0) {
5756 btrfs_abort_transaction(trans, extent_root, ret);
5757 goto out;
5758 }
31840ae1
ZY
5759 extent_slot = path->slots[0];
5760 }
fae7f21c 5761 } else if (WARN_ON(ret == -ENOENT)) {
7bb86316 5762 btrfs_print_leaf(extent_root, path->nodes[0]);
c2cf52eb
SK
5763 btrfs_err(info,
5764 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
c1c9ff7c
GU
5765 bytenr, parent, root_objectid, owner_objectid,
5766 owner_offset);
79787eaa 5767 } else {
005d6427
DS
5768 btrfs_abort_transaction(trans, extent_root, ret);
5769 goto out;
7bb86316 5770 }
5f39d397
CM
5771
5772 leaf = path->nodes[0];
5d4f98a2
YZ
5773 item_size = btrfs_item_size_nr(leaf, extent_slot);
5774#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5775 if (item_size < sizeof(*ei)) {
5776 BUG_ON(found_extent || extent_slot != path->slots[0]);
5777 ret = convert_extent_item_v0(trans, extent_root, path,
5778 owner_objectid, 0);
005d6427
DS
5779 if (ret < 0) {
5780 btrfs_abort_transaction(trans, extent_root, ret);
5781 goto out;
5782 }
5d4f98a2 5783
b3b4aa74 5784 btrfs_release_path(path);
5d4f98a2
YZ
5785 path->leave_spinning = 1;
5786
5787 key.objectid = bytenr;
5788 key.type = BTRFS_EXTENT_ITEM_KEY;
5789 key.offset = num_bytes;
5790
5791 ret = btrfs_search_slot(trans, extent_root, &key, path,
5792 -1, 1);
5793 if (ret) {
c2cf52eb 5794 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
c1c9ff7c 5795 ret, bytenr);
5d4f98a2
YZ
5796 btrfs_print_leaf(extent_root, path->nodes[0]);
5797 }
005d6427
DS
5798 if (ret < 0) {
5799 btrfs_abort_transaction(trans, extent_root, ret);
5800 goto out;
5801 }
5802
5d4f98a2
YZ
5803 extent_slot = path->slots[0];
5804 leaf = path->nodes[0];
5805 item_size = btrfs_item_size_nr(leaf, extent_slot);
5806 }
5807#endif
5808 BUG_ON(item_size < sizeof(*ei));
952fccac 5809 ei = btrfs_item_ptr(leaf, extent_slot,
123abc88 5810 struct btrfs_extent_item);
3173a18f
JB
5811 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
5812 key.type == BTRFS_EXTENT_ITEM_KEY) {
5d4f98a2
YZ
5813 struct btrfs_tree_block_info *bi;
5814 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
5815 bi = (struct btrfs_tree_block_info *)(ei + 1);
5816 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
5817 }
56bec294 5818
5d4f98a2 5819 refs = btrfs_extent_refs(leaf, ei);
32b02538
JB
5820 if (refs < refs_to_drop) {
5821 btrfs_err(info, "trying to drop %d refs but we only have %Lu "
5822 "for bytenr %Lu\n", refs_to_drop, refs, bytenr);
5823 ret = -EINVAL;
5824 btrfs_abort_transaction(trans, extent_root, ret);
5825 goto out;
5826 }
56bec294 5827 refs -= refs_to_drop;
5f39d397 5828
5d4f98a2
YZ
5829 if (refs > 0) {
5830 if (extent_op)
5831 __run_delayed_extent_op(extent_op, leaf, ei);
5832 /*
5833 * In the case of inline back ref, reference count will
5834 * be updated by remove_extent_backref
952fccac 5835 */
5d4f98a2
YZ
5836 if (iref) {
5837 BUG_ON(!found_extent);
5838 } else {
5839 btrfs_set_extent_refs(leaf, ei, refs);
5840 btrfs_mark_buffer_dirty(leaf);
5841 }
5842 if (found_extent) {
5843 ret = remove_extent_backref(trans, extent_root, path,
5844 iref, refs_to_drop,
5845 is_data);
005d6427
DS
5846 if (ret) {
5847 btrfs_abort_transaction(trans, extent_root, ret);
5848 goto out;
5849 }
952fccac 5850 }
b150a4f1
JB
5851 add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid,
5852 root_objectid);
5d4f98a2 5853 } else {
5d4f98a2
YZ
5854 if (found_extent) {
5855 BUG_ON(is_data && refs_to_drop !=
5856 extent_data_ref_count(root, path, iref));
5857 if (iref) {
5858 BUG_ON(path->slots[0] != extent_slot);
5859 } else {
5860 BUG_ON(path->slots[0] != extent_slot + 1);
5861 path->slots[0] = extent_slot;
5862 num_to_del = 2;
5863 }
78fae27e 5864 }
b9473439 5865
952fccac
CM
5866 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
5867 num_to_del);
005d6427
DS
5868 if (ret) {
5869 btrfs_abort_transaction(trans, extent_root, ret);
5870 goto out;
5871 }
b3b4aa74 5872 btrfs_release_path(path);
21af804c 5873
5d4f98a2 5874 if (is_data) {
459931ec 5875 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
005d6427
DS
5876 if (ret) {
5877 btrfs_abort_transaction(trans, extent_root, ret);
5878 goto out;
5879 }
459931ec
CM
5880 }
5881
c53d613e 5882 ret = update_block_group(root, bytenr, num_bytes, 0);
005d6427
DS
5883 if (ret) {
5884 btrfs_abort_transaction(trans, extent_root, ret);
5885 goto out;
5886 }
a28ec197 5887 }
79787eaa 5888out:
5caf2a00 5889 btrfs_free_path(path);
a28ec197
CM
5890 return ret;
5891}
5892
1887be66 5893/*
f0486c68 5894 * when we free an block, it is possible (and likely) that we free the last
1887be66
CM
5895 * delayed ref for that extent as well. This searches the delayed ref tree for
5896 * a given extent, and if there are no other delayed refs to be processed, it
5897 * removes it from the tree.
5898 */
5899static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
5900 struct btrfs_root *root, u64 bytenr)
5901{
5902 struct btrfs_delayed_ref_head *head;
5903 struct btrfs_delayed_ref_root *delayed_refs;
5904 struct btrfs_delayed_ref_node *ref;
5905 struct rb_node *node;
f0486c68 5906 int ret = 0;
1887be66
CM
5907
5908 delayed_refs = &trans->transaction->delayed_refs;
5909 spin_lock(&delayed_refs->lock);
5910 head = btrfs_find_delayed_ref_head(trans, bytenr);
5911 if (!head)
5912 goto out;
5913
5914 node = rb_prev(&head->node.rb_node);
5915 if (!node)
5916 goto out;
5917
5918 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
5919
5920 /* there are still entries for this ref, we can't drop it */
5921 if (ref->bytenr == bytenr)
5922 goto out;
5923
5d4f98a2
YZ
5924 if (head->extent_op) {
5925 if (!head->must_insert_reserved)
5926 goto out;
78a6184a 5927 btrfs_free_delayed_extent_op(head->extent_op);
5d4f98a2
YZ
5928 head->extent_op = NULL;
5929 }
5930
1887be66
CM
5931 /*
5932 * waiting for the lock here would deadlock. If someone else has it
5933 * locked they are already in the process of dropping it anyway
5934 */
5935 if (!mutex_trylock(&head->mutex))
5936 goto out;
5937
5938 /*
5939 * at this point we have a head with no other entries. Go
5940 * ahead and process it.
5941 */
5942 head->node.in_tree = 0;
5943 rb_erase(&head->node.rb_node, &delayed_refs->root);
c3e69d58 5944
1887be66
CM
5945 delayed_refs->num_entries--;
5946
5947 /*
5948 * we don't take a ref on the node because we're removing it from the
5949 * tree, so we just steal the ref the tree was holding.
5950 */
c3e69d58
CM
5951 delayed_refs->num_heads--;
5952 if (list_empty(&head->cluster))
5953 delayed_refs->num_heads_ready--;
5954
5955 list_del_init(&head->cluster);
1887be66
CM
5956 spin_unlock(&delayed_refs->lock);
5957
f0486c68
YZ
5958 BUG_ON(head->extent_op);
5959 if (head->must_insert_reserved)
5960 ret = 1;
5961
5962 mutex_unlock(&head->mutex);
1887be66 5963 btrfs_put_delayed_ref(&head->node);
f0486c68 5964 return ret;
1887be66
CM
5965out:
5966 spin_unlock(&delayed_refs->lock);
5967 return 0;
5968}
5969
f0486c68
YZ
5970void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
5971 struct btrfs_root *root,
5972 struct extent_buffer *buf,
5581a51a 5973 u64 parent, int last_ref)
f0486c68 5974{
f0486c68 5975 struct btrfs_block_group_cache *cache = NULL;
b150a4f1 5976 int pin = 1;
f0486c68
YZ
5977 int ret;
5978
5979 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
66d7e7f0
AJ
5980 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
5981 buf->start, buf->len,
5982 parent, root->root_key.objectid,
5983 btrfs_header_level(buf),
5581a51a 5984 BTRFS_DROP_DELAYED_REF, NULL, 0);
79787eaa 5985 BUG_ON(ret); /* -ENOMEM */
f0486c68
YZ
5986 }
5987
5988 if (!last_ref)
5989 return;
5990
f0486c68 5991 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
f0486c68
YZ
5992
5993 if (btrfs_header_generation(buf) == trans->transid) {
5994 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
5995 ret = check_ref_cleanup(trans, root, buf->start);
5996 if (!ret)
37be25bc 5997 goto out;
f0486c68
YZ
5998 }
5999
6000 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
6001 pin_down_extent(root, cache, buf->start, buf->len, 1);
37be25bc 6002 goto out;
f0486c68
YZ
6003 }
6004
6005 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
6006
6007 btrfs_add_free_space(cache, buf->start, buf->len);
fb25e914 6008 btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE);
0be5dc67 6009 trace_btrfs_reserved_extent_free(root, buf->start, buf->len);
b150a4f1 6010 pin = 0;
f0486c68
YZ
6011 }
6012out:
b150a4f1
JB
6013 if (pin)
6014 add_pinned_bytes(root->fs_info, buf->len,
6015 btrfs_header_level(buf),
6016 root->root_key.objectid);
6017
a826d6dc
JB
6018 /*
6019 * Deleting the buffer, clear the corrupt flag since it doesn't matter
6020 * anymore.
6021 */
6022 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
f0486c68
YZ
6023 btrfs_put_block_group(cache);
6024}
6025
79787eaa 6026/* Can return -ENOMEM */
66d7e7f0
AJ
6027int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root,
6028 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
6029 u64 owner, u64 offset, int for_cow)
925baedd
CM
6030{
6031 int ret;
66d7e7f0 6032 struct btrfs_fs_info *fs_info = root->fs_info;
925baedd 6033
b150a4f1
JB
6034 add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid);
6035
56bec294
CM
6036 /*
6037 * tree log blocks never actually go into the extent allocation
6038 * tree, just update pinning info and exit early.
56bec294 6039 */
5d4f98a2
YZ
6040 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
6041 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
b9473439 6042 /* unlocks the pinned mutex */
11833d66 6043 btrfs_pin_extent(root, bytenr, num_bytes, 1);
56bec294 6044 ret = 0;
5d4f98a2 6045 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
66d7e7f0
AJ
6046 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
6047 num_bytes,
5d4f98a2 6048 parent, root_objectid, (int)owner,
66d7e7f0 6049 BTRFS_DROP_DELAYED_REF, NULL, for_cow);
5d4f98a2 6050 } else {
66d7e7f0
AJ
6051 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
6052 num_bytes,
6053 parent, root_objectid, owner,
6054 offset, BTRFS_DROP_DELAYED_REF,
6055 NULL, for_cow);
56bec294 6056 }
925baedd
CM
6057 return ret;
6058}
6059
53b381b3
DW
6060static u64 stripe_align(struct btrfs_root *root,
6061 struct btrfs_block_group_cache *cache,
6062 u64 val, u64 num_bytes)
87ee04eb 6063{
fda2832f 6064 u64 ret = ALIGN(val, root->stripesize);
87ee04eb
CM
6065 return ret;
6066}
6067
817d52f8
JB
6068/*
6069 * when we wait for progress in the block group caching, its because
6070 * our allocation attempt failed at least once. So, we must sleep
6071 * and let some progress happen before we try again.
6072 *
6073 * This function will sleep at least once waiting for new free space to
6074 * show up, and then it will check the block group free space numbers
6075 * for our min num_bytes. Another option is to have it go ahead
6076 * and look in the rbtree for a free extent of a given size, but this
6077 * is a good start.
36cce922
JB
6078 *
6079 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
6080 * any of the information in this block group.
817d52f8 6081 */
36cce922 6082static noinline void
817d52f8
JB
6083wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
6084 u64 num_bytes)
6085{
11833d66 6086 struct btrfs_caching_control *caching_ctl;
817d52f8 6087
11833d66
YZ
6088 caching_ctl = get_caching_control(cache);
6089 if (!caching_ctl)
36cce922 6090 return;
817d52f8 6091
11833d66 6092 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
34d52cb6 6093 (cache->free_space_ctl->free_space >= num_bytes));
11833d66
YZ
6094
6095 put_caching_control(caching_ctl);
11833d66
YZ
6096}
6097
6098static noinline int
6099wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
6100{
6101 struct btrfs_caching_control *caching_ctl;
36cce922 6102 int ret = 0;
11833d66
YZ
6103
6104 caching_ctl = get_caching_control(cache);
6105 if (!caching_ctl)
36cce922 6106 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
11833d66
YZ
6107
6108 wait_event(caching_ctl->wait, block_group_cache_done(cache));
36cce922
JB
6109 if (cache->cached == BTRFS_CACHE_ERROR)
6110 ret = -EIO;
11833d66 6111 put_caching_control(caching_ctl);
36cce922 6112 return ret;
817d52f8
JB
6113}
6114
31e50229 6115int __get_raid_index(u64 flags)
b742bb82 6116{
7738a53a 6117 if (flags & BTRFS_BLOCK_GROUP_RAID10)
e6ec716f 6118 return BTRFS_RAID_RAID10;
7738a53a 6119 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
e6ec716f 6120 return BTRFS_RAID_RAID1;
7738a53a 6121 else if (flags & BTRFS_BLOCK_GROUP_DUP)
e6ec716f 6122 return BTRFS_RAID_DUP;
7738a53a 6123 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
e6ec716f 6124 return BTRFS_RAID_RAID0;
53b381b3 6125 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
e942f883 6126 return BTRFS_RAID_RAID5;
53b381b3 6127 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
e942f883 6128 return BTRFS_RAID_RAID6;
7738a53a 6129
e942f883 6130 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
b742bb82
YZ
6131}
6132
7738a53a
ID
6133static int get_block_group_index(struct btrfs_block_group_cache *cache)
6134{
31e50229 6135 return __get_raid_index(cache->flags);
7738a53a
ID
6136}
6137
817d52f8 6138enum btrfs_loop_type {
285ff5af
JB
6139 LOOP_CACHING_NOWAIT = 0,
6140 LOOP_CACHING_WAIT = 1,
6141 LOOP_ALLOC_CHUNK = 2,
6142 LOOP_NO_EMPTY_SIZE = 3,
817d52f8
JB
6143};
6144
fec577fb
CM
6145/*
6146 * walks the btree of allocated extents and find a hole of a given size.
6147 * The key ins is changed to record the hole:
a4820398 6148 * ins->objectid == start position
62e2749e 6149 * ins->flags = BTRFS_EXTENT_ITEM_KEY
a4820398 6150 * ins->offset == the size of the hole.
fec577fb 6151 * Any available blocks before search_start are skipped.
a4820398
MX
6152 *
6153 * If there is no suitable free space, we will record the max size of
6154 * the free space extent currently.
fec577fb 6155 */
00361589 6156static noinline int find_free_extent(struct btrfs_root *orig_root,
98ed5174 6157 u64 num_bytes, u64 empty_size,
98ed5174 6158 u64 hint_byte, struct btrfs_key *ins,
b6919a58 6159 u64 flags)
fec577fb 6160{
80eb234a 6161 int ret = 0;
d397712b 6162 struct btrfs_root *root = orig_root->fs_info->extent_root;
fa9c0d79 6163 struct btrfs_free_cluster *last_ptr = NULL;
80eb234a 6164 struct btrfs_block_group_cache *block_group = NULL;
274bd4fb 6165 struct btrfs_block_group_cache *used_block_group;
81c9ad23 6166 u64 search_start = 0;
a4820398 6167 u64 max_extent_size = 0;
239b14b3 6168 int empty_cluster = 2 * 1024 * 1024;
80eb234a 6169 struct btrfs_space_info *space_info;
fa9c0d79 6170 int loop = 0;
b6919a58
DS
6171 int index = __get_raid_index(flags);
6172 int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ?
fb25e914 6173 RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC;
817d52f8 6174 bool found_uncached_bg = false;
0a24325e 6175 bool failed_cluster_refill = false;
1cdda9b8 6176 bool failed_alloc = false;
67377734 6177 bool use_cluster = true;
60d2adbb 6178 bool have_caching_bg = false;
fec577fb 6179
db94535d 6180 WARN_ON(num_bytes < root->sectorsize);
b1a4d965 6181 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
80eb234a
JB
6182 ins->objectid = 0;
6183 ins->offset = 0;
b1a4d965 6184
b6919a58 6185 trace_find_free_extent(orig_root, num_bytes, empty_size, flags);
3f7de037 6186
b6919a58 6187 space_info = __find_space_info(root->fs_info, flags);
1b1d1f66 6188 if (!space_info) {
b6919a58 6189 btrfs_err(root->fs_info, "No space info for %llu", flags);
1b1d1f66
JB
6190 return -ENOSPC;
6191 }
2552d17e 6192
67377734
JB
6193 /*
6194 * If the space info is for both data and metadata it means we have a
6195 * small filesystem and we can't use the clustering stuff.
6196 */
6197 if (btrfs_mixed_space_info(space_info))
6198 use_cluster = false;
6199
b6919a58 6200 if (flags & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
fa9c0d79 6201 last_ptr = &root->fs_info->meta_alloc_cluster;
536ac8ae
CM
6202 if (!btrfs_test_opt(root, SSD))
6203 empty_cluster = 64 * 1024;
239b14b3
CM
6204 }
6205
b6919a58 6206 if ((flags & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
67377734 6207 btrfs_test_opt(root, SSD)) {
fa9c0d79
CM
6208 last_ptr = &root->fs_info->data_alloc_cluster;
6209 }
0f9dd46c 6210
239b14b3 6211 if (last_ptr) {
fa9c0d79
CM
6212 spin_lock(&last_ptr->lock);
6213 if (last_ptr->block_group)
6214 hint_byte = last_ptr->window_start;
6215 spin_unlock(&last_ptr->lock);
239b14b3 6216 }
fa9c0d79 6217
a061fc8d 6218 search_start = max(search_start, first_logical_byte(root, 0));
239b14b3 6219 search_start = max(search_start, hint_byte);
0b86a832 6220
817d52f8 6221 if (!last_ptr)
fa9c0d79 6222 empty_cluster = 0;
fa9c0d79 6223
2552d17e 6224 if (search_start == hint_byte) {
2552d17e
JB
6225 block_group = btrfs_lookup_block_group(root->fs_info,
6226 search_start);
274bd4fb 6227 used_block_group = block_group;
817d52f8
JB
6228 /*
6229 * we don't want to use the block group if it doesn't match our
6230 * allocation bits, or if its not cached.
ccf0e725
JB
6231 *
6232 * However if we are re-searching with an ideal block group
6233 * picked out then we don't care that the block group is cached.
817d52f8 6234 */
b6919a58 6235 if (block_group && block_group_bits(block_group, flags) &&
285ff5af 6236 block_group->cached != BTRFS_CACHE_NO) {
2552d17e 6237 down_read(&space_info->groups_sem);
44fb5511
CM
6238 if (list_empty(&block_group->list) ||
6239 block_group->ro) {
6240 /*
6241 * someone is removing this block group,
6242 * we can't jump into the have_block_group
6243 * target because our list pointers are not
6244 * valid
6245 */
6246 btrfs_put_block_group(block_group);
6247 up_read(&space_info->groups_sem);
ccf0e725 6248 } else {
b742bb82 6249 index = get_block_group_index(block_group);
44fb5511 6250 goto have_block_group;
ccf0e725 6251 }
2552d17e 6252 } else if (block_group) {
fa9c0d79 6253 btrfs_put_block_group(block_group);
2552d17e 6254 }
42e70e7a 6255 }
2552d17e 6256search:
60d2adbb 6257 have_caching_bg = false;
80eb234a 6258 down_read(&space_info->groups_sem);
b742bb82
YZ
6259 list_for_each_entry(block_group, &space_info->block_groups[index],
6260 list) {
6226cb0a 6261 u64 offset;
817d52f8 6262 int cached;
8a1413a2 6263
274bd4fb 6264 used_block_group = block_group;
11dfe35a 6265 btrfs_get_block_group(block_group);
2552d17e 6266 search_start = block_group->key.objectid;
42e70e7a 6267
83a50de9
CM
6268 /*
6269 * this can happen if we end up cycling through all the
6270 * raid types, but we want to make sure we only allocate
6271 * for the proper type.
6272 */
b6919a58 6273 if (!block_group_bits(block_group, flags)) {
83a50de9
CM
6274 u64 extra = BTRFS_BLOCK_GROUP_DUP |
6275 BTRFS_BLOCK_GROUP_RAID1 |
53b381b3
DW
6276 BTRFS_BLOCK_GROUP_RAID5 |
6277 BTRFS_BLOCK_GROUP_RAID6 |
83a50de9
CM
6278 BTRFS_BLOCK_GROUP_RAID10;
6279
6280 /*
6281 * if they asked for extra copies and this block group
6282 * doesn't provide them, bail. This does allow us to
6283 * fill raid0 from raid1.
6284 */
b6919a58 6285 if ((flags & extra) && !(block_group->flags & extra))
83a50de9
CM
6286 goto loop;
6287 }
6288
2552d17e 6289have_block_group:
291c7d2f
JB
6290 cached = block_group_cache_done(block_group);
6291 if (unlikely(!cached)) {
291c7d2f 6292 found_uncached_bg = true;
f6373bf3 6293 ret = cache_block_group(block_group, 0);
1d4284bd
CM
6294 BUG_ON(ret < 0);
6295 ret = 0;
817d52f8
JB
6296 }
6297
36cce922
JB
6298 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
6299 goto loop;
ea6a478e 6300 if (unlikely(block_group->ro))
2552d17e 6301 goto loop;
0f9dd46c 6302
0a24325e 6303 /*
062c05c4
AO
6304 * Ok we want to try and use the cluster allocator, so
6305 * lets look there
0a24325e 6306 */
062c05c4 6307 if (last_ptr) {
8de972b4 6308 unsigned long aligned_cluster;
fa9c0d79
CM
6309 /*
6310 * the refill lock keeps out other
6311 * people trying to start a new cluster
6312 */
6313 spin_lock(&last_ptr->refill_lock);
274bd4fb
AO
6314 used_block_group = last_ptr->block_group;
6315 if (used_block_group != block_group &&
6316 (!used_block_group ||
6317 used_block_group->ro ||
b6919a58 6318 !block_group_bits(used_block_group, flags))) {
274bd4fb 6319 used_block_group = block_group;
44fb5511 6320 goto refill_cluster;
274bd4fb
AO
6321 }
6322
6323 if (used_block_group != block_group)
6324 btrfs_get_block_group(used_block_group);
44fb5511 6325
274bd4fb 6326 offset = btrfs_alloc_from_cluster(used_block_group,
a4820398
MX
6327 last_ptr,
6328 num_bytes,
6329 used_block_group->key.objectid,
6330 &max_extent_size);
fa9c0d79
CM
6331 if (offset) {
6332 /* we have a block, we're done */
6333 spin_unlock(&last_ptr->refill_lock);
3f7de037
JB
6334 trace_btrfs_reserve_extent_cluster(root,
6335 block_group, search_start, num_bytes);
fa9c0d79
CM
6336 goto checks;
6337 }
6338
274bd4fb
AO
6339 WARN_ON(last_ptr->block_group != used_block_group);
6340 if (used_block_group != block_group) {
6341 btrfs_put_block_group(used_block_group);
6342 used_block_group = block_group;
fa9c0d79 6343 }
44fb5511 6344refill_cluster:
274bd4fb 6345 BUG_ON(used_block_group != block_group);
062c05c4
AO
6346 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
6347 * set up a new clusters, so lets just skip it
6348 * and let the allocator find whatever block
6349 * it can find. If we reach this point, we
6350 * will have tried the cluster allocator
6351 * plenty of times and not have found
6352 * anything, so we are likely way too
6353 * fragmented for the clustering stuff to find
a5f6f719
AO
6354 * anything.
6355 *
6356 * However, if the cluster is taken from the
6357 * current block group, release the cluster
6358 * first, so that we stand a better chance of
6359 * succeeding in the unclustered
6360 * allocation. */
6361 if (loop >= LOOP_NO_EMPTY_SIZE &&
6362 last_ptr->block_group != block_group) {
062c05c4
AO
6363 spin_unlock(&last_ptr->refill_lock);
6364 goto unclustered_alloc;
6365 }
6366
fa9c0d79
CM
6367 /*
6368 * this cluster didn't work out, free it and
6369 * start over
6370 */
6371 btrfs_return_cluster_to_free_space(NULL, last_ptr);
6372
a5f6f719
AO
6373 if (loop >= LOOP_NO_EMPTY_SIZE) {
6374 spin_unlock(&last_ptr->refill_lock);
6375 goto unclustered_alloc;
6376 }
6377
8de972b4
CM
6378 aligned_cluster = max_t(unsigned long,
6379 empty_cluster + empty_size,
6380 block_group->full_stripe_len);
6381
fa9c0d79 6382 /* allocate a cluster in this block group */
00361589
JB
6383 ret = btrfs_find_space_cluster(root, block_group,
6384 last_ptr, search_start,
6385 num_bytes,
6386 aligned_cluster);
fa9c0d79
CM
6387 if (ret == 0) {
6388 /*
6389 * now pull our allocation out of this
6390 * cluster
6391 */
6392 offset = btrfs_alloc_from_cluster(block_group,
a4820398
MX
6393 last_ptr,
6394 num_bytes,
6395 search_start,
6396 &max_extent_size);
fa9c0d79
CM
6397 if (offset) {
6398 /* we found one, proceed */
6399 spin_unlock(&last_ptr->refill_lock);
3f7de037
JB
6400 trace_btrfs_reserve_extent_cluster(root,
6401 block_group, search_start,
6402 num_bytes);
fa9c0d79
CM
6403 goto checks;
6404 }
0a24325e
JB
6405 } else if (!cached && loop > LOOP_CACHING_NOWAIT
6406 && !failed_cluster_refill) {
817d52f8
JB
6407 spin_unlock(&last_ptr->refill_lock);
6408
0a24325e 6409 failed_cluster_refill = true;
817d52f8
JB
6410 wait_block_group_cache_progress(block_group,
6411 num_bytes + empty_cluster + empty_size);
6412 goto have_block_group;
fa9c0d79 6413 }
817d52f8 6414
fa9c0d79
CM
6415 /*
6416 * at this point we either didn't find a cluster
6417 * or we weren't able to allocate a block from our
6418 * cluster. Free the cluster we've been trying
6419 * to use, and go to the next block group
6420 */
0a24325e 6421 btrfs_return_cluster_to_free_space(NULL, last_ptr);
fa9c0d79 6422 spin_unlock(&last_ptr->refill_lock);
0a24325e 6423 goto loop;
fa9c0d79
CM
6424 }
6425
062c05c4 6426unclustered_alloc:
a5f6f719
AO
6427 spin_lock(&block_group->free_space_ctl->tree_lock);
6428 if (cached &&
6429 block_group->free_space_ctl->free_space <
6430 num_bytes + empty_cluster + empty_size) {
a4820398
MX
6431 if (block_group->free_space_ctl->free_space >
6432 max_extent_size)
6433 max_extent_size =
6434 block_group->free_space_ctl->free_space;
a5f6f719
AO
6435 spin_unlock(&block_group->free_space_ctl->tree_lock);
6436 goto loop;
6437 }
6438 spin_unlock(&block_group->free_space_ctl->tree_lock);
6439
6226cb0a 6440 offset = btrfs_find_space_for_alloc(block_group, search_start,
a4820398
MX
6441 num_bytes, empty_size,
6442 &max_extent_size);
1cdda9b8
JB
6443 /*
6444 * If we didn't find a chunk, and we haven't failed on this
6445 * block group before, and this block group is in the middle of
6446 * caching and we are ok with waiting, then go ahead and wait
6447 * for progress to be made, and set failed_alloc to true.
6448 *
6449 * If failed_alloc is true then we've already waited on this
6450 * block group once and should move on to the next block group.
6451 */
6452 if (!offset && !failed_alloc && !cached &&
6453 loop > LOOP_CACHING_NOWAIT) {
817d52f8 6454 wait_block_group_cache_progress(block_group,
1cdda9b8
JB
6455 num_bytes + empty_size);
6456 failed_alloc = true;
817d52f8 6457 goto have_block_group;
1cdda9b8 6458 } else if (!offset) {
60d2adbb
MX
6459 if (!cached)
6460 have_caching_bg = true;
1cdda9b8 6461 goto loop;
817d52f8 6462 }
fa9c0d79 6463checks:
53b381b3
DW
6464 search_start = stripe_align(root, used_block_group,
6465 offset, num_bytes);
25179201 6466
2552d17e
JB
6467 /* move on to the next group */
6468 if (search_start + num_bytes >
274bd4fb
AO
6469 used_block_group->key.objectid + used_block_group->key.offset) {
6470 btrfs_add_free_space(used_block_group, offset, num_bytes);
2552d17e 6471 goto loop;
6226cb0a 6472 }
f5a31e16 6473
f0486c68 6474 if (offset < search_start)
274bd4fb 6475 btrfs_add_free_space(used_block_group, offset,
f0486c68
YZ
6476 search_start - offset);
6477 BUG_ON(offset > search_start);
2552d17e 6478
274bd4fb 6479 ret = btrfs_update_reserved_bytes(used_block_group, num_bytes,
fb25e914 6480 alloc_type);
f0486c68 6481 if (ret == -EAGAIN) {
274bd4fb 6482 btrfs_add_free_space(used_block_group, offset, num_bytes);
2552d17e 6483 goto loop;
0f9dd46c 6484 }
0b86a832 6485
f0486c68 6486 /* we are all good, lets return */
2552d17e
JB
6487 ins->objectid = search_start;
6488 ins->offset = num_bytes;
d2fb3437 6489
3f7de037
JB
6490 trace_btrfs_reserve_extent(orig_root, block_group,
6491 search_start, num_bytes);
274bd4fb
AO
6492 if (used_block_group != block_group)
6493 btrfs_put_block_group(used_block_group);
d82a6f1d 6494 btrfs_put_block_group(block_group);
2552d17e
JB
6495 break;
6496loop:
0a24325e 6497 failed_cluster_refill = false;
1cdda9b8 6498 failed_alloc = false;
b742bb82 6499 BUG_ON(index != get_block_group_index(block_group));
274bd4fb
AO
6500 if (used_block_group != block_group)
6501 btrfs_put_block_group(used_block_group);
fa9c0d79 6502 btrfs_put_block_group(block_group);
2552d17e
JB
6503 }
6504 up_read(&space_info->groups_sem);
6505
60d2adbb
MX
6506 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
6507 goto search;
6508
b742bb82
YZ
6509 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
6510 goto search;
6511
285ff5af 6512 /*
ccf0e725
JB
6513 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
6514 * caching kthreads as we move along
817d52f8
JB
6515 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
6516 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
6517 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
6518 * again
fa9c0d79 6519 */
723bda20 6520 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
b742bb82 6521 index = 0;
723bda20 6522 loop++;
817d52f8 6523 if (loop == LOOP_ALLOC_CHUNK) {
00361589
JB
6524 struct btrfs_trans_handle *trans;
6525
6526 trans = btrfs_join_transaction(root);
6527 if (IS_ERR(trans)) {
6528 ret = PTR_ERR(trans);
6529 goto out;
6530 }
6531
b6919a58 6532 ret = do_chunk_alloc(trans, root, flags,
ea658bad
JB
6533 CHUNK_ALLOC_FORCE);
6534 /*
6535 * Do not bail out on ENOSPC since we
6536 * can do more things.
6537 */
00361589 6538 if (ret < 0 && ret != -ENOSPC)
ea658bad
JB
6539 btrfs_abort_transaction(trans,
6540 root, ret);
00361589
JB
6541 else
6542 ret = 0;
6543 btrfs_end_transaction(trans, root);
6544 if (ret)
ea658bad 6545 goto out;
2552d17e
JB
6546 }
6547
723bda20
JB
6548 if (loop == LOOP_NO_EMPTY_SIZE) {
6549 empty_size = 0;
6550 empty_cluster = 0;
fa9c0d79 6551 }
723bda20
JB
6552
6553 goto search;
2552d17e
JB
6554 } else if (!ins->objectid) {
6555 ret = -ENOSPC;
d82a6f1d 6556 } else if (ins->objectid) {
80eb234a 6557 ret = 0;
be744175 6558 }
79787eaa 6559out:
a4820398
MX
6560 if (ret == -ENOSPC)
6561 ins->offset = max_extent_size;
0f70abe2 6562 return ret;
fec577fb 6563}
ec44a35c 6564
9ed74f2d
JB
6565static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
6566 int dump_block_groups)
0f9dd46c
JB
6567{
6568 struct btrfs_block_group_cache *cache;
b742bb82 6569 int index = 0;
0f9dd46c 6570
9ed74f2d 6571 spin_lock(&info->lock);
fb25e914 6572 printk(KERN_INFO "space_info %llu has %llu free, is %sfull\n",
c1c9ff7c
GU
6573 info->flags,
6574 info->total_bytes - info->bytes_used - info->bytes_pinned -
6575 info->bytes_reserved - info->bytes_readonly,
d397712b 6576 (info->full) ? "" : "not ");
8929ecfa
YZ
6577 printk(KERN_INFO "space_info total=%llu, used=%llu, pinned=%llu, "
6578 "reserved=%llu, may_use=%llu, readonly=%llu\n",
c1c9ff7c
GU
6579 info->total_bytes, info->bytes_used, info->bytes_pinned,
6580 info->bytes_reserved, info->bytes_may_use,
6581 info->bytes_readonly);
9ed74f2d
JB
6582 spin_unlock(&info->lock);
6583
6584 if (!dump_block_groups)
6585 return;
0f9dd46c 6586
80eb234a 6587 down_read(&info->groups_sem);
b742bb82
YZ
6588again:
6589 list_for_each_entry(cache, &info->block_groups[index], list) {
0f9dd46c 6590 spin_lock(&cache->lock);
799ffc3c 6591 printk(KERN_INFO "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s\n",
c1c9ff7c
GU
6592 cache->key.objectid, cache->key.offset,
6593 btrfs_block_group_used(&cache->item), cache->pinned,
6594 cache->reserved, cache->ro ? "[readonly]" : "");
0f9dd46c
JB
6595 btrfs_dump_free_space(cache, bytes);
6596 spin_unlock(&cache->lock);
6597 }
b742bb82
YZ
6598 if (++index < BTRFS_NR_RAID_TYPES)
6599 goto again;
80eb234a 6600 up_read(&info->groups_sem);
0f9dd46c 6601}
e8569813 6602
00361589 6603int btrfs_reserve_extent(struct btrfs_root *root,
11833d66
YZ
6604 u64 num_bytes, u64 min_alloc_size,
6605 u64 empty_size, u64 hint_byte,
b6919a58 6606 struct btrfs_key *ins, int is_data)
fec577fb 6607{
9e622d6b 6608 bool final_tried = false;
b6919a58 6609 u64 flags;
fec577fb 6610 int ret;
925baedd 6611
b6919a58 6612 flags = btrfs_get_alloc_profile(root, is_data);
98d20f67 6613again:
db94535d 6614 WARN_ON(num_bytes < root->sectorsize);
00361589
JB
6615 ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins,
6616 flags);
3b951516 6617
9e622d6b 6618 if (ret == -ENOSPC) {
a4820398
MX
6619 if (!final_tried && ins->offset) {
6620 num_bytes = min(num_bytes >> 1, ins->offset);
24542bf7 6621 num_bytes = round_down(num_bytes, root->sectorsize);
9e622d6b 6622 num_bytes = max(num_bytes, min_alloc_size);
9e622d6b
MX
6623 if (num_bytes == min_alloc_size)
6624 final_tried = true;
6625 goto again;
6626 } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
6627 struct btrfs_space_info *sinfo;
6628
b6919a58 6629 sinfo = __find_space_info(root->fs_info, flags);
c2cf52eb 6630 btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu",
c1c9ff7c 6631 flags, num_bytes);
53804280
JM
6632 if (sinfo)
6633 dump_space_info(sinfo, num_bytes, 1);
9e622d6b 6634 }
925baedd 6635 }
0f9dd46c
JB
6636
6637 return ret;
e6dcd2dc
CM
6638}
6639
e688b725
CM
6640static int __btrfs_free_reserved_extent(struct btrfs_root *root,
6641 u64 start, u64 len, int pin)
65b51a00 6642{
0f9dd46c 6643 struct btrfs_block_group_cache *cache;
1f3c79a2 6644 int ret = 0;
0f9dd46c 6645
0f9dd46c
JB
6646 cache = btrfs_lookup_block_group(root->fs_info, start);
6647 if (!cache) {
c2cf52eb 6648 btrfs_err(root->fs_info, "Unable to find block group for %llu",
c1c9ff7c 6649 start);
0f9dd46c
JB
6650 return -ENOSPC;
6651 }
1f3c79a2 6652
5378e607
LD
6653 if (btrfs_test_opt(root, DISCARD))
6654 ret = btrfs_discard_extent(root, start, len, NULL);
1f3c79a2 6655
e688b725
CM
6656 if (pin)
6657 pin_down_extent(root, cache, start, len, 1);
6658 else {
6659 btrfs_add_free_space(cache, start, len);
6660 btrfs_update_reserved_bytes(cache, len, RESERVE_FREE);
6661 }
fa9c0d79 6662 btrfs_put_block_group(cache);
817d52f8 6663
1abe9b8a 6664 trace_btrfs_reserved_extent_free(root, start, len);
6665
e6dcd2dc
CM
6666 return ret;
6667}
6668
e688b725
CM
6669int btrfs_free_reserved_extent(struct btrfs_root *root,
6670 u64 start, u64 len)
6671{
6672 return __btrfs_free_reserved_extent(root, start, len, 0);
6673}
6674
6675int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
6676 u64 start, u64 len)
6677{
6678 return __btrfs_free_reserved_extent(root, start, len, 1);
6679}
6680
5d4f98a2
YZ
6681static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
6682 struct btrfs_root *root,
6683 u64 parent, u64 root_objectid,
6684 u64 flags, u64 owner, u64 offset,
6685 struct btrfs_key *ins, int ref_mod)
e6dcd2dc
CM
6686{
6687 int ret;
5d4f98a2 6688 struct btrfs_fs_info *fs_info = root->fs_info;
e6dcd2dc 6689 struct btrfs_extent_item *extent_item;
5d4f98a2 6690 struct btrfs_extent_inline_ref *iref;
e6dcd2dc 6691 struct btrfs_path *path;
5d4f98a2
YZ
6692 struct extent_buffer *leaf;
6693 int type;
6694 u32 size;
26b8003f 6695
5d4f98a2
YZ
6696 if (parent > 0)
6697 type = BTRFS_SHARED_DATA_REF_KEY;
6698 else
6699 type = BTRFS_EXTENT_DATA_REF_KEY;
58176a96 6700
5d4f98a2 6701 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
7bb86316
CM
6702
6703 path = btrfs_alloc_path();
db5b493a
TI
6704 if (!path)
6705 return -ENOMEM;
47e4bb98 6706
b9473439 6707 path->leave_spinning = 1;
5d4f98a2
YZ
6708 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
6709 ins, size);
79787eaa
JM
6710 if (ret) {
6711 btrfs_free_path(path);
6712 return ret;
6713 }
0f9dd46c 6714
5d4f98a2
YZ
6715 leaf = path->nodes[0];
6716 extent_item = btrfs_item_ptr(leaf, path->slots[0],
47e4bb98 6717 struct btrfs_extent_item);
5d4f98a2
YZ
6718 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
6719 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
6720 btrfs_set_extent_flags(leaf, extent_item,
6721 flags | BTRFS_EXTENT_FLAG_DATA);
6722
6723 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
6724 btrfs_set_extent_inline_ref_type(leaf, iref, type);
6725 if (parent > 0) {
6726 struct btrfs_shared_data_ref *ref;
6727 ref = (struct btrfs_shared_data_ref *)(iref + 1);
6728 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
6729 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
6730 } else {
6731 struct btrfs_extent_data_ref *ref;
6732 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
6733 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
6734 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
6735 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
6736 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
6737 }
47e4bb98
CM
6738
6739 btrfs_mark_buffer_dirty(path->nodes[0]);
7bb86316 6740 btrfs_free_path(path);
f510cfec 6741
c53d613e 6742 ret = update_block_group(root, ins->objectid, ins->offset, 1);
79787eaa 6743 if (ret) { /* -ENOENT, logic error */
c2cf52eb 6744 btrfs_err(fs_info, "update block group failed for %llu %llu",
c1c9ff7c 6745 ins->objectid, ins->offset);
f5947066
CM
6746 BUG();
6747 }
0be5dc67 6748 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
e6dcd2dc
CM
6749 return ret;
6750}
6751
5d4f98a2
YZ
6752static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
6753 struct btrfs_root *root,
6754 u64 parent, u64 root_objectid,
6755 u64 flags, struct btrfs_disk_key *key,
6756 int level, struct btrfs_key *ins)
e6dcd2dc
CM
6757{
6758 int ret;
5d4f98a2
YZ
6759 struct btrfs_fs_info *fs_info = root->fs_info;
6760 struct btrfs_extent_item *extent_item;
6761 struct btrfs_tree_block_info *block_info;
6762 struct btrfs_extent_inline_ref *iref;
6763 struct btrfs_path *path;
6764 struct extent_buffer *leaf;
3173a18f
JB
6765 u32 size = sizeof(*extent_item) + sizeof(*iref);
6766 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
6767 SKINNY_METADATA);
6768
6769 if (!skinny_metadata)
6770 size += sizeof(*block_info);
1c2308f8 6771
5d4f98a2 6772 path = btrfs_alloc_path();
857cc2fc
JB
6773 if (!path) {
6774 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
6775 root->leafsize);
d8926bb3 6776 return -ENOMEM;
857cc2fc 6777 }
56bec294 6778
5d4f98a2
YZ
6779 path->leave_spinning = 1;
6780 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
6781 ins, size);
79787eaa 6782 if (ret) {
857cc2fc
JB
6783 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
6784 root->leafsize);
79787eaa
JM
6785 btrfs_free_path(path);
6786 return ret;
6787 }
5d4f98a2
YZ
6788
6789 leaf = path->nodes[0];
6790 extent_item = btrfs_item_ptr(leaf, path->slots[0],
6791 struct btrfs_extent_item);
6792 btrfs_set_extent_refs(leaf, extent_item, 1);
6793 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
6794 btrfs_set_extent_flags(leaf, extent_item,
6795 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
5d4f98a2 6796
3173a18f
JB
6797 if (skinny_metadata) {
6798 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
6799 } else {
6800 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
6801 btrfs_set_tree_block_key(leaf, block_info, key);
6802 btrfs_set_tree_block_level(leaf, block_info, level);
6803 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
6804 }
5d4f98a2 6805
5d4f98a2
YZ
6806 if (parent > 0) {
6807 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
6808 btrfs_set_extent_inline_ref_type(leaf, iref,
6809 BTRFS_SHARED_BLOCK_REF_KEY);
6810 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
6811 } else {
6812 btrfs_set_extent_inline_ref_type(leaf, iref,
6813 BTRFS_TREE_BLOCK_REF_KEY);
6814 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
6815 }
6816
6817 btrfs_mark_buffer_dirty(leaf);
6818 btrfs_free_path(path);
6819
3173a18f 6820 ret = update_block_group(root, ins->objectid, root->leafsize, 1);
79787eaa 6821 if (ret) { /* -ENOENT, logic error */
c2cf52eb 6822 btrfs_err(fs_info, "update block group failed for %llu %llu",
c1c9ff7c 6823 ins->objectid, ins->offset);
5d4f98a2
YZ
6824 BUG();
6825 }
0be5dc67
JB
6826
6827 trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->leafsize);
5d4f98a2
YZ
6828 return ret;
6829}
6830
6831int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
6832 struct btrfs_root *root,
6833 u64 root_objectid, u64 owner,
6834 u64 offset, struct btrfs_key *ins)
6835{
6836 int ret;
6837
6838 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
6839
66d7e7f0
AJ
6840 ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid,
6841 ins->offset, 0,
6842 root_objectid, owner, offset,
6843 BTRFS_ADD_DELAYED_EXTENT, NULL, 0);
e6dcd2dc
CM
6844 return ret;
6845}
e02119d5
CM
6846
6847/*
6848 * this is used by the tree logging recovery code. It records that
6849 * an extent has been allocated and makes sure to clear the free
6850 * space cache bits as well
6851 */
5d4f98a2
YZ
6852int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
6853 struct btrfs_root *root,
6854 u64 root_objectid, u64 owner, u64 offset,
6855 struct btrfs_key *ins)
e02119d5
CM
6856{
6857 int ret;
6858 struct btrfs_block_group_cache *block_group;
11833d66 6859
8c2a1a30
JB
6860 /*
6861 * Mixed block groups will exclude before processing the log so we only
6862 * need to do the exlude dance if this fs isn't mixed.
6863 */
6864 if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) {
6865 ret = __exclude_logged_extent(root, ins->objectid, ins->offset);
b50c6e25 6866 if (ret)
8c2a1a30 6867 return ret;
11833d66
YZ
6868 }
6869
8c2a1a30
JB
6870 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
6871 if (!block_group)
6872 return -EINVAL;
6873
fb25e914
JB
6874 ret = btrfs_update_reserved_bytes(block_group, ins->offset,
6875 RESERVE_ALLOC_NO_ACCOUNT);
79787eaa 6876 BUG_ON(ret); /* logic error */
5d4f98a2
YZ
6877 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
6878 0, owner, offset, ins, 1);
b50c6e25 6879 btrfs_put_block_group(block_group);
e02119d5
CM
6880 return ret;
6881}
6882
48a3b636
ES
6883static struct extent_buffer *
6884btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
6885 u64 bytenr, u32 blocksize, int level)
65b51a00
CM
6886{
6887 struct extent_buffer *buf;
6888
6889 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
6890 if (!buf)
6891 return ERR_PTR(-ENOMEM);
6892 btrfs_set_header_generation(buf, trans->transid);
85d4e461 6893 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
65b51a00
CM
6894 btrfs_tree_lock(buf);
6895 clean_tree_block(trans, root, buf);
3083ee2e 6896 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
b4ce94de
CM
6897
6898 btrfs_set_lock_blocking(buf);
65b51a00 6899 btrfs_set_buffer_uptodate(buf);
b4ce94de 6900
d0c803c4 6901 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
8cef4e16
YZ
6902 /*
6903 * we allow two log transactions at a time, use different
6904 * EXENT bit to differentiate dirty pages.
6905 */
6906 if (root->log_transid % 2 == 0)
6907 set_extent_dirty(&root->dirty_log_pages, buf->start,
6908 buf->start + buf->len - 1, GFP_NOFS);
6909 else
6910 set_extent_new(&root->dirty_log_pages, buf->start,
6911 buf->start + buf->len - 1, GFP_NOFS);
d0c803c4
CM
6912 } else {
6913 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
65b51a00 6914 buf->start + buf->len - 1, GFP_NOFS);
d0c803c4 6915 }
65b51a00 6916 trans->blocks_used++;
b4ce94de 6917 /* this returns a buffer locked for blocking */
65b51a00
CM
6918 return buf;
6919}
6920
f0486c68
YZ
6921static struct btrfs_block_rsv *
6922use_block_rsv(struct btrfs_trans_handle *trans,
6923 struct btrfs_root *root, u32 blocksize)
6924{
6925 struct btrfs_block_rsv *block_rsv;
68a82277 6926 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
f0486c68 6927 int ret;
d88033db 6928 bool global_updated = false;
f0486c68
YZ
6929
6930 block_rsv = get_block_rsv(trans, root);
6931
b586b323
MX
6932 if (unlikely(block_rsv->size == 0))
6933 goto try_reserve;
d88033db 6934again:
f0486c68
YZ
6935 ret = block_rsv_use_bytes(block_rsv, blocksize);
6936 if (!ret)
6937 return block_rsv;
6938
b586b323
MX
6939 if (block_rsv->failfast)
6940 return ERR_PTR(ret);
6941
d88033db
MX
6942 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
6943 global_updated = true;
6944 update_global_block_rsv(root->fs_info);
6945 goto again;
6946 }
6947
b586b323
MX
6948 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
6949 static DEFINE_RATELIMIT_STATE(_rs,
6950 DEFAULT_RATELIMIT_INTERVAL * 10,
6951 /*DEFAULT_RATELIMIT_BURST*/ 1);
6952 if (__ratelimit(&_rs))
6953 WARN(1, KERN_DEBUG
6954 "btrfs: block rsv returned %d\n", ret);
6955 }
6956try_reserve:
6957 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
6958 BTRFS_RESERVE_NO_FLUSH);
6959 if (!ret)
6960 return block_rsv;
6961 /*
6962 * If we couldn't reserve metadata bytes try and use some from
5881cfc9
MX
6963 * the global reserve if its space type is the same as the global
6964 * reservation.
b586b323 6965 */
5881cfc9
MX
6966 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
6967 block_rsv->space_info == global_rsv->space_info) {
b586b323
MX
6968 ret = block_rsv_use_bytes(global_rsv, blocksize);
6969 if (!ret)
6970 return global_rsv;
6971 }
6972 return ERR_PTR(ret);
f0486c68
YZ
6973}
6974
8c2a3ca2
JB
6975static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
6976 struct btrfs_block_rsv *block_rsv, u32 blocksize)
f0486c68
YZ
6977{
6978 block_rsv_add_bytes(block_rsv, blocksize, 0);
8c2a3ca2 6979 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
f0486c68
YZ
6980}
6981
fec577fb 6982/*
f0486c68
YZ
6983 * finds a free extent and does all the dirty work required for allocation
6984 * returns the key for the extent through ins, and a tree buffer for
6985 * the first block of the extent through buf.
6986 *
fec577fb
CM
6987 * returns the tree buffer or NULL.
6988 */
5f39d397 6989struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
5d4f98a2
YZ
6990 struct btrfs_root *root, u32 blocksize,
6991 u64 parent, u64 root_objectid,
6992 struct btrfs_disk_key *key, int level,
5581a51a 6993 u64 hint, u64 empty_size)
fec577fb 6994{
e2fa7227 6995 struct btrfs_key ins;
f0486c68 6996 struct btrfs_block_rsv *block_rsv;
5f39d397 6997 struct extent_buffer *buf;
f0486c68
YZ
6998 u64 flags = 0;
6999 int ret;
3173a18f
JB
7000 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
7001 SKINNY_METADATA);
fec577fb 7002
f0486c68
YZ
7003 block_rsv = use_block_rsv(trans, root, blocksize);
7004 if (IS_ERR(block_rsv))
7005 return ERR_CAST(block_rsv);
7006
00361589 7007 ret = btrfs_reserve_extent(root, blocksize, blocksize,
81c9ad23 7008 empty_size, hint, &ins, 0);
fec577fb 7009 if (ret) {
8c2a3ca2 7010 unuse_block_rsv(root->fs_info, block_rsv, blocksize);
54aa1f4d 7011 return ERR_PTR(ret);
fec577fb 7012 }
55c69072 7013
4008c04a
CM
7014 buf = btrfs_init_new_buffer(trans, root, ins.objectid,
7015 blocksize, level);
79787eaa 7016 BUG_ON(IS_ERR(buf)); /* -ENOMEM */
f0486c68
YZ
7017
7018 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
7019 if (parent == 0)
7020 parent = ins.objectid;
7021 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
7022 } else
7023 BUG_ON(parent > 0);
7024
7025 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
7026 struct btrfs_delayed_extent_op *extent_op;
78a6184a 7027 extent_op = btrfs_alloc_delayed_extent_op();
79787eaa 7028 BUG_ON(!extent_op); /* -ENOMEM */
f0486c68
YZ
7029 if (key)
7030 memcpy(&extent_op->key, key, sizeof(extent_op->key));
7031 else
7032 memset(&extent_op->key, 0, sizeof(extent_op->key));
7033 extent_op->flags_to_set = flags;
3173a18f
JB
7034 if (skinny_metadata)
7035 extent_op->update_key = 0;
7036 else
7037 extent_op->update_key = 1;
f0486c68
YZ
7038 extent_op->update_flags = 1;
7039 extent_op->is_data = 0;
b1c79e09 7040 extent_op->level = level;
f0486c68 7041
66d7e7f0
AJ
7042 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
7043 ins.objectid,
f0486c68
YZ
7044 ins.offset, parent, root_objectid,
7045 level, BTRFS_ADD_DELAYED_EXTENT,
5581a51a 7046 extent_op, 0);
79787eaa 7047 BUG_ON(ret); /* -ENOMEM */
f0486c68 7048 }
fec577fb
CM
7049 return buf;
7050}
a28ec197 7051
2c47e605
YZ
7052struct walk_control {
7053 u64 refs[BTRFS_MAX_LEVEL];
7054 u64 flags[BTRFS_MAX_LEVEL];
7055 struct btrfs_key update_progress;
7056 int stage;
7057 int level;
7058 int shared_level;
7059 int update_ref;
7060 int keep_locks;
1c4850e2
YZ
7061 int reada_slot;
7062 int reada_count;
66d7e7f0 7063 int for_reloc;
2c47e605
YZ
7064};
7065
7066#define DROP_REFERENCE 1
7067#define UPDATE_BACKREF 2
7068
1c4850e2
YZ
7069static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
7070 struct btrfs_root *root,
7071 struct walk_control *wc,
7072 struct btrfs_path *path)
6407bf6d 7073{
1c4850e2
YZ
7074 u64 bytenr;
7075 u64 generation;
7076 u64 refs;
94fcca9f 7077 u64 flags;
5d4f98a2 7078 u32 nritems;
1c4850e2
YZ
7079 u32 blocksize;
7080 struct btrfs_key key;
7081 struct extent_buffer *eb;
6407bf6d 7082 int ret;
1c4850e2
YZ
7083 int slot;
7084 int nread = 0;
6407bf6d 7085
1c4850e2
YZ
7086 if (path->slots[wc->level] < wc->reada_slot) {
7087 wc->reada_count = wc->reada_count * 2 / 3;
7088 wc->reada_count = max(wc->reada_count, 2);
7089 } else {
7090 wc->reada_count = wc->reada_count * 3 / 2;
7091 wc->reada_count = min_t(int, wc->reada_count,
7092 BTRFS_NODEPTRS_PER_BLOCK(root));
7093 }
7bb86316 7094
1c4850e2
YZ
7095 eb = path->nodes[wc->level];
7096 nritems = btrfs_header_nritems(eb);
7097 blocksize = btrfs_level_size(root, wc->level - 1);
bd56b302 7098
1c4850e2
YZ
7099 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
7100 if (nread >= wc->reada_count)
7101 break;
bd56b302 7102
2dd3e67b 7103 cond_resched();
1c4850e2
YZ
7104 bytenr = btrfs_node_blockptr(eb, slot);
7105 generation = btrfs_node_ptr_generation(eb, slot);
2dd3e67b 7106
1c4850e2
YZ
7107 if (slot == path->slots[wc->level])
7108 goto reada;
5d4f98a2 7109
1c4850e2
YZ
7110 if (wc->stage == UPDATE_BACKREF &&
7111 generation <= root->root_key.offset)
bd56b302
CM
7112 continue;
7113
94fcca9f 7114 /* We don't lock the tree block, it's OK to be racy here */
3173a18f
JB
7115 ret = btrfs_lookup_extent_info(trans, root, bytenr,
7116 wc->level - 1, 1, &refs,
7117 &flags);
79787eaa
JM
7118 /* We don't care about errors in readahead. */
7119 if (ret < 0)
7120 continue;
94fcca9f
YZ
7121 BUG_ON(refs == 0);
7122
1c4850e2 7123 if (wc->stage == DROP_REFERENCE) {
1c4850e2
YZ
7124 if (refs == 1)
7125 goto reada;
bd56b302 7126
94fcca9f
YZ
7127 if (wc->level == 1 &&
7128 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7129 continue;
1c4850e2
YZ
7130 if (!wc->update_ref ||
7131 generation <= root->root_key.offset)
7132 continue;
7133 btrfs_node_key_to_cpu(eb, &key, slot);
7134 ret = btrfs_comp_cpu_keys(&key,
7135 &wc->update_progress);
7136 if (ret < 0)
7137 continue;
94fcca9f
YZ
7138 } else {
7139 if (wc->level == 1 &&
7140 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7141 continue;
6407bf6d 7142 }
1c4850e2
YZ
7143reada:
7144 ret = readahead_tree_block(root, bytenr, blocksize,
7145 generation);
7146 if (ret)
bd56b302 7147 break;
1c4850e2 7148 nread++;
20524f02 7149 }
1c4850e2 7150 wc->reada_slot = slot;
20524f02 7151}
2c47e605 7152
f82d02d9 7153/*
2c016dc2 7154 * helper to process tree block while walking down the tree.
2c47e605 7155 *
2c47e605
YZ
7156 * when wc->stage == UPDATE_BACKREF, this function updates
7157 * back refs for pointers in the block.
7158 *
7159 * NOTE: return value 1 means we should stop walking down.
f82d02d9 7160 */
2c47e605 7161static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
5d4f98a2 7162 struct btrfs_root *root,
2c47e605 7163 struct btrfs_path *path,
94fcca9f 7164 struct walk_control *wc, int lookup_info)
f82d02d9 7165{
2c47e605
YZ
7166 int level = wc->level;
7167 struct extent_buffer *eb = path->nodes[level];
2c47e605 7168 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
f82d02d9
YZ
7169 int ret;
7170
2c47e605
YZ
7171 if (wc->stage == UPDATE_BACKREF &&
7172 btrfs_header_owner(eb) != root->root_key.objectid)
7173 return 1;
f82d02d9 7174
2c47e605
YZ
7175 /*
7176 * when reference count of tree block is 1, it won't increase
7177 * again. once full backref flag is set, we never clear it.
7178 */
94fcca9f
YZ
7179 if (lookup_info &&
7180 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
7181 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
2c47e605
YZ
7182 BUG_ON(!path->locks[level]);
7183 ret = btrfs_lookup_extent_info(trans, root,
3173a18f 7184 eb->start, level, 1,
2c47e605
YZ
7185 &wc->refs[level],
7186 &wc->flags[level]);
79787eaa
JM
7187 BUG_ON(ret == -ENOMEM);
7188 if (ret)
7189 return ret;
2c47e605
YZ
7190 BUG_ON(wc->refs[level] == 0);
7191 }
5d4f98a2 7192
2c47e605
YZ
7193 if (wc->stage == DROP_REFERENCE) {
7194 if (wc->refs[level] > 1)
7195 return 1;
f82d02d9 7196
2c47e605 7197 if (path->locks[level] && !wc->keep_locks) {
bd681513 7198 btrfs_tree_unlock_rw(eb, path->locks[level]);
2c47e605
YZ
7199 path->locks[level] = 0;
7200 }
7201 return 0;
7202 }
f82d02d9 7203
2c47e605
YZ
7204 /* wc->stage == UPDATE_BACKREF */
7205 if (!(wc->flags[level] & flag)) {
7206 BUG_ON(!path->locks[level]);
66d7e7f0 7207 ret = btrfs_inc_ref(trans, root, eb, 1, wc->for_reloc);
79787eaa 7208 BUG_ON(ret); /* -ENOMEM */
66d7e7f0 7209 ret = btrfs_dec_ref(trans, root, eb, 0, wc->for_reloc);
79787eaa 7210 BUG_ON(ret); /* -ENOMEM */
2c47e605 7211 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
b1c79e09
JB
7212 eb->len, flag,
7213 btrfs_header_level(eb), 0);
79787eaa 7214 BUG_ON(ret); /* -ENOMEM */
2c47e605
YZ
7215 wc->flags[level] |= flag;
7216 }
7217
7218 /*
7219 * the block is shared by multiple trees, so it's not good to
7220 * keep the tree lock
7221 */
7222 if (path->locks[level] && level > 0) {
bd681513 7223 btrfs_tree_unlock_rw(eb, path->locks[level]);
2c47e605
YZ
7224 path->locks[level] = 0;
7225 }
7226 return 0;
7227}
7228
1c4850e2 7229/*
2c016dc2 7230 * helper to process tree block pointer.
1c4850e2
YZ
7231 *
7232 * when wc->stage == DROP_REFERENCE, this function checks
7233 * reference count of the block pointed to. if the block
7234 * is shared and we need update back refs for the subtree
7235 * rooted at the block, this function changes wc->stage to
7236 * UPDATE_BACKREF. if the block is shared and there is no
7237 * need to update back, this function drops the reference
7238 * to the block.
7239 *
7240 * NOTE: return value 1 means we should stop walking down.
7241 */
7242static noinline int do_walk_down(struct btrfs_trans_handle *trans,
7243 struct btrfs_root *root,
7244 struct btrfs_path *path,
94fcca9f 7245 struct walk_control *wc, int *lookup_info)
1c4850e2
YZ
7246{
7247 u64 bytenr;
7248 u64 generation;
7249 u64 parent;
7250 u32 blocksize;
7251 struct btrfs_key key;
7252 struct extent_buffer *next;
7253 int level = wc->level;
7254 int reada = 0;
7255 int ret = 0;
7256
7257 generation = btrfs_node_ptr_generation(path->nodes[level],
7258 path->slots[level]);
7259 /*
7260 * if the lower level block was created before the snapshot
7261 * was created, we know there is no need to update back refs
7262 * for the subtree
7263 */
7264 if (wc->stage == UPDATE_BACKREF &&
94fcca9f
YZ
7265 generation <= root->root_key.offset) {
7266 *lookup_info = 1;
1c4850e2 7267 return 1;
94fcca9f 7268 }
1c4850e2
YZ
7269
7270 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
7271 blocksize = btrfs_level_size(root, level - 1);
7272
7273 next = btrfs_find_tree_block(root, bytenr, blocksize);
7274 if (!next) {
7275 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
90d2c51d
MX
7276 if (!next)
7277 return -ENOMEM;
b2aaaa3b
JB
7278 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
7279 level - 1);
1c4850e2
YZ
7280 reada = 1;
7281 }
7282 btrfs_tree_lock(next);
7283 btrfs_set_lock_blocking(next);
7284
3173a18f 7285 ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1,
94fcca9f
YZ
7286 &wc->refs[level - 1],
7287 &wc->flags[level - 1]);
79787eaa
JM
7288 if (ret < 0) {
7289 btrfs_tree_unlock(next);
7290 return ret;
7291 }
7292
c2cf52eb
SK
7293 if (unlikely(wc->refs[level - 1] == 0)) {
7294 btrfs_err(root->fs_info, "Missing references.");
7295 BUG();
7296 }
94fcca9f 7297 *lookup_info = 0;
1c4850e2 7298
94fcca9f 7299 if (wc->stage == DROP_REFERENCE) {
1c4850e2 7300 if (wc->refs[level - 1] > 1) {
94fcca9f
YZ
7301 if (level == 1 &&
7302 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7303 goto skip;
7304
1c4850e2
YZ
7305 if (!wc->update_ref ||
7306 generation <= root->root_key.offset)
7307 goto skip;
7308
7309 btrfs_node_key_to_cpu(path->nodes[level], &key,
7310 path->slots[level]);
7311 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
7312 if (ret < 0)
7313 goto skip;
7314
7315 wc->stage = UPDATE_BACKREF;
7316 wc->shared_level = level - 1;
7317 }
94fcca9f
YZ
7318 } else {
7319 if (level == 1 &&
7320 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7321 goto skip;
1c4850e2
YZ
7322 }
7323
b9fab919 7324 if (!btrfs_buffer_uptodate(next, generation, 0)) {
1c4850e2
YZ
7325 btrfs_tree_unlock(next);
7326 free_extent_buffer(next);
7327 next = NULL;
94fcca9f 7328 *lookup_info = 1;
1c4850e2
YZ
7329 }
7330
7331 if (!next) {
7332 if (reada && level == 1)
7333 reada_walk_down(trans, root, wc, path);
7334 next = read_tree_block(root, bytenr, blocksize, generation);
416bc658
JB
7335 if (!next || !extent_buffer_uptodate(next)) {
7336 free_extent_buffer(next);
97d9a8a4 7337 return -EIO;
416bc658 7338 }
1c4850e2
YZ
7339 btrfs_tree_lock(next);
7340 btrfs_set_lock_blocking(next);
7341 }
7342
7343 level--;
7344 BUG_ON(level != btrfs_header_level(next));
7345 path->nodes[level] = next;
7346 path->slots[level] = 0;
bd681513 7347 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
1c4850e2
YZ
7348 wc->level = level;
7349 if (wc->level == 1)
7350 wc->reada_slot = 0;
7351 return 0;
7352skip:
7353 wc->refs[level - 1] = 0;
7354 wc->flags[level - 1] = 0;
94fcca9f
YZ
7355 if (wc->stage == DROP_REFERENCE) {
7356 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
7357 parent = path->nodes[level]->start;
7358 } else {
7359 BUG_ON(root->root_key.objectid !=
7360 btrfs_header_owner(path->nodes[level]));
7361 parent = 0;
7362 }
1c4850e2 7363
94fcca9f 7364 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
66d7e7f0 7365 root->root_key.objectid, level - 1, 0, 0);
79787eaa 7366 BUG_ON(ret); /* -ENOMEM */
1c4850e2 7367 }
1c4850e2
YZ
7368 btrfs_tree_unlock(next);
7369 free_extent_buffer(next);
94fcca9f 7370 *lookup_info = 1;
1c4850e2
YZ
7371 return 1;
7372}
7373
2c47e605 7374/*
2c016dc2 7375 * helper to process tree block while walking up the tree.
2c47e605
YZ
7376 *
7377 * when wc->stage == DROP_REFERENCE, this function drops
7378 * reference count on the block.
7379 *
7380 * when wc->stage == UPDATE_BACKREF, this function changes
7381 * wc->stage back to DROP_REFERENCE if we changed wc->stage
7382 * to UPDATE_BACKREF previously while processing the block.
7383 *
7384 * NOTE: return value 1 means we should stop walking up.
7385 */
7386static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
7387 struct btrfs_root *root,
7388 struct btrfs_path *path,
7389 struct walk_control *wc)
7390{
f0486c68 7391 int ret;
2c47e605
YZ
7392 int level = wc->level;
7393 struct extent_buffer *eb = path->nodes[level];
7394 u64 parent = 0;
7395
7396 if (wc->stage == UPDATE_BACKREF) {
7397 BUG_ON(wc->shared_level < level);
7398 if (level < wc->shared_level)
7399 goto out;
7400
2c47e605
YZ
7401 ret = find_next_key(path, level + 1, &wc->update_progress);
7402 if (ret > 0)
7403 wc->update_ref = 0;
7404
7405 wc->stage = DROP_REFERENCE;
7406 wc->shared_level = -1;
7407 path->slots[level] = 0;
7408
7409 /*
7410 * check reference count again if the block isn't locked.
7411 * we should start walking down the tree again if reference
7412 * count is one.
7413 */
7414 if (!path->locks[level]) {
7415 BUG_ON(level == 0);
7416 btrfs_tree_lock(eb);
7417 btrfs_set_lock_blocking(eb);
bd681513 7418 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
2c47e605
YZ
7419
7420 ret = btrfs_lookup_extent_info(trans, root,
3173a18f 7421 eb->start, level, 1,
2c47e605
YZ
7422 &wc->refs[level],
7423 &wc->flags[level]);
79787eaa
JM
7424 if (ret < 0) {
7425 btrfs_tree_unlock_rw(eb, path->locks[level]);
3268a246 7426 path->locks[level] = 0;
79787eaa
JM
7427 return ret;
7428 }
2c47e605
YZ
7429 BUG_ON(wc->refs[level] == 0);
7430 if (wc->refs[level] == 1) {
bd681513 7431 btrfs_tree_unlock_rw(eb, path->locks[level]);
3268a246 7432 path->locks[level] = 0;
2c47e605
YZ
7433 return 1;
7434 }
f82d02d9 7435 }
2c47e605 7436 }
f82d02d9 7437
2c47e605
YZ
7438 /* wc->stage == DROP_REFERENCE */
7439 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
5d4f98a2 7440
2c47e605
YZ
7441 if (wc->refs[level] == 1) {
7442 if (level == 0) {
7443 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
66d7e7f0
AJ
7444 ret = btrfs_dec_ref(trans, root, eb, 1,
7445 wc->for_reloc);
2c47e605 7446 else
66d7e7f0
AJ
7447 ret = btrfs_dec_ref(trans, root, eb, 0,
7448 wc->for_reloc);
79787eaa 7449 BUG_ON(ret); /* -ENOMEM */
2c47e605
YZ
7450 }
7451 /* make block locked assertion in clean_tree_block happy */
7452 if (!path->locks[level] &&
7453 btrfs_header_generation(eb) == trans->transid) {
7454 btrfs_tree_lock(eb);
7455 btrfs_set_lock_blocking(eb);
bd681513 7456 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
2c47e605
YZ
7457 }
7458 clean_tree_block(trans, root, eb);
7459 }
7460
7461 if (eb == root->node) {
7462 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
7463 parent = eb->start;
7464 else
7465 BUG_ON(root->root_key.objectid !=
7466 btrfs_header_owner(eb));
7467 } else {
7468 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
7469 parent = path->nodes[level + 1]->start;
7470 else
7471 BUG_ON(root->root_key.objectid !=
7472 btrfs_header_owner(path->nodes[level + 1]));
f82d02d9 7473 }
f82d02d9 7474
5581a51a 7475 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
2c47e605
YZ
7476out:
7477 wc->refs[level] = 0;
7478 wc->flags[level] = 0;
f0486c68 7479 return 0;
2c47e605
YZ
7480}
7481
7482static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
7483 struct btrfs_root *root,
7484 struct btrfs_path *path,
7485 struct walk_control *wc)
7486{
2c47e605 7487 int level = wc->level;
94fcca9f 7488 int lookup_info = 1;
2c47e605
YZ
7489 int ret;
7490
7491 while (level >= 0) {
94fcca9f 7492 ret = walk_down_proc(trans, root, path, wc, lookup_info);
2c47e605
YZ
7493 if (ret > 0)
7494 break;
7495
7496 if (level == 0)
7497 break;
7498
7a7965f8
YZ
7499 if (path->slots[level] >=
7500 btrfs_header_nritems(path->nodes[level]))
7501 break;
7502
94fcca9f 7503 ret = do_walk_down(trans, root, path, wc, &lookup_info);
1c4850e2
YZ
7504 if (ret > 0) {
7505 path->slots[level]++;
7506 continue;
90d2c51d
MX
7507 } else if (ret < 0)
7508 return ret;
1c4850e2 7509 level = wc->level;
f82d02d9 7510 }
f82d02d9
YZ
7511 return 0;
7512}
7513
d397712b 7514static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
98ed5174 7515 struct btrfs_root *root,
f82d02d9 7516 struct btrfs_path *path,
2c47e605 7517 struct walk_control *wc, int max_level)
20524f02 7518{
2c47e605 7519 int level = wc->level;
20524f02 7520 int ret;
9f3a7427 7521
2c47e605
YZ
7522 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
7523 while (level < max_level && path->nodes[level]) {
7524 wc->level = level;
7525 if (path->slots[level] + 1 <
7526 btrfs_header_nritems(path->nodes[level])) {
7527 path->slots[level]++;
20524f02
CM
7528 return 0;
7529 } else {
2c47e605
YZ
7530 ret = walk_up_proc(trans, root, path, wc);
7531 if (ret > 0)
7532 return 0;
bd56b302 7533
2c47e605 7534 if (path->locks[level]) {
bd681513
CM
7535 btrfs_tree_unlock_rw(path->nodes[level],
7536 path->locks[level]);
2c47e605 7537 path->locks[level] = 0;
f82d02d9 7538 }
2c47e605
YZ
7539 free_extent_buffer(path->nodes[level]);
7540 path->nodes[level] = NULL;
7541 level++;
20524f02
CM
7542 }
7543 }
7544 return 1;
7545}
7546
9aca1d51 7547/*
2c47e605
YZ
7548 * drop a subvolume tree.
7549 *
7550 * this function traverses the tree freeing any blocks that only
7551 * referenced by the tree.
7552 *
7553 * when a shared tree block is found. this function decreases its
7554 * reference count by one. if update_ref is true, this function
7555 * also make sure backrefs for the shared block and all lower level
7556 * blocks are properly updated.
9d1a2a3a
DS
7557 *
7558 * If called with for_reloc == 0, may exit early with -EAGAIN
9aca1d51 7559 */
2c536799 7560int btrfs_drop_snapshot(struct btrfs_root *root,
66d7e7f0
AJ
7561 struct btrfs_block_rsv *block_rsv, int update_ref,
7562 int for_reloc)
20524f02 7563{
5caf2a00 7564 struct btrfs_path *path;
2c47e605
YZ
7565 struct btrfs_trans_handle *trans;
7566 struct btrfs_root *tree_root = root->fs_info->tree_root;
9f3a7427 7567 struct btrfs_root_item *root_item = &root->root_item;
2c47e605
YZ
7568 struct walk_control *wc;
7569 struct btrfs_key key;
7570 int err = 0;
7571 int ret;
7572 int level;
d29a9f62 7573 bool root_dropped = false;
20524f02 7574
5caf2a00 7575 path = btrfs_alloc_path();
cb1b69f4
TI
7576 if (!path) {
7577 err = -ENOMEM;
7578 goto out;
7579 }
20524f02 7580
2c47e605 7581 wc = kzalloc(sizeof(*wc), GFP_NOFS);
38a1a919
MF
7582 if (!wc) {
7583 btrfs_free_path(path);
cb1b69f4
TI
7584 err = -ENOMEM;
7585 goto out;
38a1a919 7586 }
2c47e605 7587
a22285a6 7588 trans = btrfs_start_transaction(tree_root, 0);
79787eaa
JM
7589 if (IS_ERR(trans)) {
7590 err = PTR_ERR(trans);
7591 goto out_free;
7592 }
98d5dc13 7593
3fd0a558
YZ
7594 if (block_rsv)
7595 trans->block_rsv = block_rsv;
2c47e605 7596
9f3a7427 7597 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2c47e605 7598 level = btrfs_header_level(root->node);
5d4f98a2
YZ
7599 path->nodes[level] = btrfs_lock_root_node(root);
7600 btrfs_set_lock_blocking(path->nodes[level]);
9f3a7427 7601 path->slots[level] = 0;
bd681513 7602 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
2c47e605
YZ
7603 memset(&wc->update_progress, 0,
7604 sizeof(wc->update_progress));
9f3a7427 7605 } else {
9f3a7427 7606 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
2c47e605
YZ
7607 memcpy(&wc->update_progress, &key,
7608 sizeof(wc->update_progress));
7609
6702ed49 7610 level = root_item->drop_level;
2c47e605 7611 BUG_ON(level == 0);
6702ed49 7612 path->lowest_level = level;
2c47e605
YZ
7613 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
7614 path->lowest_level = 0;
7615 if (ret < 0) {
7616 err = ret;
79787eaa 7617 goto out_end_trans;
9f3a7427 7618 }
1c4850e2 7619 WARN_ON(ret > 0);
2c47e605 7620
7d9eb12c
CM
7621 /*
7622 * unlock our path, this is safe because only this
7623 * function is allowed to delete this snapshot
7624 */
5d4f98a2 7625 btrfs_unlock_up_safe(path, 0);
2c47e605
YZ
7626
7627 level = btrfs_header_level(root->node);
7628 while (1) {
7629 btrfs_tree_lock(path->nodes[level]);
7630 btrfs_set_lock_blocking(path->nodes[level]);
fec386ac 7631 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
2c47e605
YZ
7632
7633 ret = btrfs_lookup_extent_info(trans, root,
7634 path->nodes[level]->start,
3173a18f 7635 level, 1, &wc->refs[level],
2c47e605 7636 &wc->flags[level]);
79787eaa
JM
7637 if (ret < 0) {
7638 err = ret;
7639 goto out_end_trans;
7640 }
2c47e605
YZ
7641 BUG_ON(wc->refs[level] == 0);
7642
7643 if (level == root_item->drop_level)
7644 break;
7645
7646 btrfs_tree_unlock(path->nodes[level]);
fec386ac 7647 path->locks[level] = 0;
2c47e605
YZ
7648 WARN_ON(wc->refs[level] != 1);
7649 level--;
7650 }
9f3a7427 7651 }
2c47e605
YZ
7652
7653 wc->level = level;
7654 wc->shared_level = -1;
7655 wc->stage = DROP_REFERENCE;
7656 wc->update_ref = update_ref;
7657 wc->keep_locks = 0;
66d7e7f0 7658 wc->for_reloc = for_reloc;
1c4850e2 7659 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
2c47e605 7660
d397712b 7661 while (1) {
9d1a2a3a 7662
2c47e605
YZ
7663 ret = walk_down_tree(trans, root, path, wc);
7664 if (ret < 0) {
7665 err = ret;
20524f02 7666 break;
2c47e605 7667 }
9aca1d51 7668
2c47e605
YZ
7669 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
7670 if (ret < 0) {
7671 err = ret;
20524f02 7672 break;
2c47e605
YZ
7673 }
7674
7675 if (ret > 0) {
7676 BUG_ON(wc->stage != DROP_REFERENCE);
e7a84565
CM
7677 break;
7678 }
2c47e605
YZ
7679
7680 if (wc->stage == DROP_REFERENCE) {
7681 level = wc->level;
7682 btrfs_node_key(path->nodes[level],
7683 &root_item->drop_progress,
7684 path->slots[level]);
7685 root_item->drop_level = level;
7686 }
7687
7688 BUG_ON(wc->level == 0);
3c8f2422
JB
7689 if (btrfs_should_end_transaction(trans, tree_root) ||
7690 (!for_reloc && btrfs_need_cleaner_sleep(root))) {
2c47e605
YZ
7691 ret = btrfs_update_root(trans, tree_root,
7692 &root->root_key,
7693 root_item);
79787eaa
JM
7694 if (ret) {
7695 btrfs_abort_transaction(trans, tree_root, ret);
7696 err = ret;
7697 goto out_end_trans;
7698 }
2c47e605 7699
3fd0a558 7700 btrfs_end_transaction_throttle(trans, tree_root);
3c8f2422
JB
7701 if (!for_reloc && btrfs_need_cleaner_sleep(root)) {
7702 pr_debug("btrfs: drop snapshot early exit\n");
7703 err = -EAGAIN;
7704 goto out_free;
7705 }
7706
a22285a6 7707 trans = btrfs_start_transaction(tree_root, 0);
79787eaa
JM
7708 if (IS_ERR(trans)) {
7709 err = PTR_ERR(trans);
7710 goto out_free;
7711 }
3fd0a558
YZ
7712 if (block_rsv)
7713 trans->block_rsv = block_rsv;
c3e69d58 7714 }
20524f02 7715 }
b3b4aa74 7716 btrfs_release_path(path);
79787eaa
JM
7717 if (err)
7718 goto out_end_trans;
2c47e605
YZ
7719
7720 ret = btrfs_del_root(trans, tree_root, &root->root_key);
79787eaa
JM
7721 if (ret) {
7722 btrfs_abort_transaction(trans, tree_root, ret);
7723 goto out_end_trans;
7724 }
2c47e605 7725
76dda93c 7726 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
cb517eab
MX
7727 ret = btrfs_find_root(tree_root, &root->root_key, path,
7728 NULL, NULL);
79787eaa
JM
7729 if (ret < 0) {
7730 btrfs_abort_transaction(trans, tree_root, ret);
7731 err = ret;
7732 goto out_end_trans;
7733 } else if (ret > 0) {
84cd948c
JB
7734 /* if we fail to delete the orphan item this time
7735 * around, it'll get picked up the next time.
7736 *
7737 * The most common failure here is just -ENOENT.
7738 */
7739 btrfs_del_orphan_item(trans, tree_root,
7740 root->root_key.objectid);
76dda93c
YZ
7741 }
7742 }
7743
7744 if (root->in_radix) {
cb517eab 7745 btrfs_drop_and_free_fs_root(tree_root->fs_info, root);
76dda93c
YZ
7746 } else {
7747 free_extent_buffer(root->node);
7748 free_extent_buffer(root->commit_root);
b0feb9d9 7749 btrfs_put_fs_root(root);
76dda93c 7750 }
d29a9f62 7751 root_dropped = true;
79787eaa 7752out_end_trans:
3fd0a558 7753 btrfs_end_transaction_throttle(trans, tree_root);
79787eaa 7754out_free:
2c47e605 7755 kfree(wc);
5caf2a00 7756 btrfs_free_path(path);
cb1b69f4 7757out:
d29a9f62
JB
7758 /*
7759 * So if we need to stop dropping the snapshot for whatever reason we
7760 * need to make sure to add it back to the dead root list so that we
7761 * keep trying to do the work later. This also cleans up roots if we
7762 * don't have it in the radix (like when we recover after a power fail
7763 * or unmount) so we don't leak memory.
7764 */
b37b39cd 7765 if (!for_reloc && root_dropped == false)
d29a9f62 7766 btrfs_add_dead_root(root);
cb1b69f4
TI
7767 if (err)
7768 btrfs_std_error(root->fs_info, err);
2c536799 7769 return err;
20524f02 7770}
9078a3e1 7771
2c47e605
YZ
7772/*
7773 * drop subtree rooted at tree block 'node'.
7774 *
7775 * NOTE: this function will unlock and release tree block 'node'
66d7e7f0 7776 * only used by relocation code
2c47e605 7777 */
f82d02d9
YZ
7778int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
7779 struct btrfs_root *root,
7780 struct extent_buffer *node,
7781 struct extent_buffer *parent)
7782{
7783 struct btrfs_path *path;
2c47e605 7784 struct walk_control *wc;
f82d02d9
YZ
7785 int level;
7786 int parent_level;
7787 int ret = 0;
7788 int wret;
7789
2c47e605
YZ
7790 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
7791
f82d02d9 7792 path = btrfs_alloc_path();
db5b493a
TI
7793 if (!path)
7794 return -ENOMEM;
f82d02d9 7795
2c47e605 7796 wc = kzalloc(sizeof(*wc), GFP_NOFS);
db5b493a
TI
7797 if (!wc) {
7798 btrfs_free_path(path);
7799 return -ENOMEM;
7800 }
2c47e605 7801
b9447ef8 7802 btrfs_assert_tree_locked(parent);
f82d02d9
YZ
7803 parent_level = btrfs_header_level(parent);
7804 extent_buffer_get(parent);
7805 path->nodes[parent_level] = parent;
7806 path->slots[parent_level] = btrfs_header_nritems(parent);
7807
b9447ef8 7808 btrfs_assert_tree_locked(node);
f82d02d9 7809 level = btrfs_header_level(node);
f82d02d9
YZ
7810 path->nodes[level] = node;
7811 path->slots[level] = 0;
bd681513 7812 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
2c47e605
YZ
7813
7814 wc->refs[parent_level] = 1;
7815 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
7816 wc->level = level;
7817 wc->shared_level = -1;
7818 wc->stage = DROP_REFERENCE;
7819 wc->update_ref = 0;
7820 wc->keep_locks = 1;
66d7e7f0 7821 wc->for_reloc = 1;
1c4850e2 7822 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
f82d02d9
YZ
7823
7824 while (1) {
2c47e605
YZ
7825 wret = walk_down_tree(trans, root, path, wc);
7826 if (wret < 0) {
f82d02d9 7827 ret = wret;
f82d02d9 7828 break;
2c47e605 7829 }
f82d02d9 7830
2c47e605 7831 wret = walk_up_tree(trans, root, path, wc, parent_level);
f82d02d9
YZ
7832 if (wret < 0)
7833 ret = wret;
7834 if (wret != 0)
7835 break;
7836 }
7837
2c47e605 7838 kfree(wc);
f82d02d9
YZ
7839 btrfs_free_path(path);
7840 return ret;
7841}
7842
ec44a35c
CM
7843static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
7844{
7845 u64 num_devices;
fc67c450 7846 u64 stripped;
e4d8ec0f 7847
fc67c450
ID
7848 /*
7849 * if restripe for this chunk_type is on pick target profile and
7850 * return, otherwise do the usual balance
7851 */
7852 stripped = get_restripe_target(root->fs_info, flags);
7853 if (stripped)
7854 return extended_to_chunk(stripped);
e4d8ec0f 7855
cd02dca5
CM
7856 /*
7857 * we add in the count of missing devices because we want
7858 * to make sure that any RAID levels on a degraded FS
7859 * continue to be honored.
7860 */
7861 num_devices = root->fs_info->fs_devices->rw_devices +
7862 root->fs_info->fs_devices->missing_devices;
7863
fc67c450 7864 stripped = BTRFS_BLOCK_GROUP_RAID0 |
53b381b3 7865 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
fc67c450
ID
7866 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
7867
ec44a35c
CM
7868 if (num_devices == 1) {
7869 stripped |= BTRFS_BLOCK_GROUP_DUP;
7870 stripped = flags & ~stripped;
7871
7872 /* turn raid0 into single device chunks */
7873 if (flags & BTRFS_BLOCK_GROUP_RAID0)
7874 return stripped;
7875
7876 /* turn mirroring into duplication */
7877 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
7878 BTRFS_BLOCK_GROUP_RAID10))
7879 return stripped | BTRFS_BLOCK_GROUP_DUP;
ec44a35c
CM
7880 } else {
7881 /* they already had raid on here, just return */
ec44a35c
CM
7882 if (flags & stripped)
7883 return flags;
7884
7885 stripped |= BTRFS_BLOCK_GROUP_DUP;
7886 stripped = flags & ~stripped;
7887
7888 /* switch duplicated blocks with raid1 */
7889 if (flags & BTRFS_BLOCK_GROUP_DUP)
7890 return stripped | BTRFS_BLOCK_GROUP_RAID1;
7891
e3176ca2 7892 /* this is drive concat, leave it alone */
ec44a35c 7893 }
e3176ca2 7894
ec44a35c
CM
7895 return flags;
7896}
7897
199c36ea 7898static int set_block_group_ro(struct btrfs_block_group_cache *cache, int force)
0ef3e66b 7899{
f0486c68
YZ
7900 struct btrfs_space_info *sinfo = cache->space_info;
7901 u64 num_bytes;
199c36ea 7902 u64 min_allocable_bytes;
f0486c68 7903 int ret = -ENOSPC;
0ef3e66b 7904
c286ac48 7905
199c36ea
MX
7906 /*
7907 * We need some metadata space and system metadata space for
7908 * allocating chunks in some corner cases until we force to set
7909 * it to be readonly.
7910 */
7911 if ((sinfo->flags &
7912 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
7913 !force)
7914 min_allocable_bytes = 1 * 1024 * 1024;
7915 else
7916 min_allocable_bytes = 0;
7917
f0486c68
YZ
7918 spin_lock(&sinfo->lock);
7919 spin_lock(&cache->lock);
61cfea9b
W
7920
7921 if (cache->ro) {
7922 ret = 0;
7923 goto out;
7924 }
7925
f0486c68
YZ
7926 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
7927 cache->bytes_super - btrfs_block_group_used(&cache->item);
7928
7929 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
37be25bc
JB
7930 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
7931 min_allocable_bytes <= sinfo->total_bytes) {
f0486c68 7932 sinfo->bytes_readonly += num_bytes;
f0486c68
YZ
7933 cache->ro = 1;
7934 ret = 0;
7935 }
61cfea9b 7936out:
f0486c68
YZ
7937 spin_unlock(&cache->lock);
7938 spin_unlock(&sinfo->lock);
7939 return ret;
7940}
7d9eb12c 7941
f0486c68
YZ
7942int btrfs_set_block_group_ro(struct btrfs_root *root,
7943 struct btrfs_block_group_cache *cache)
c286ac48 7944
f0486c68
YZ
7945{
7946 struct btrfs_trans_handle *trans;
7947 u64 alloc_flags;
7948 int ret;
7d9eb12c 7949
f0486c68 7950 BUG_ON(cache->ro);
0ef3e66b 7951
ff5714cc 7952 trans = btrfs_join_transaction(root);
79787eaa
JM
7953 if (IS_ERR(trans))
7954 return PTR_ERR(trans);
5d4f98a2 7955
f0486c68 7956 alloc_flags = update_block_group_flags(root, cache->flags);
79787eaa 7957 if (alloc_flags != cache->flags) {
698d0082 7958 ret = do_chunk_alloc(trans, root, alloc_flags,
79787eaa
JM
7959 CHUNK_ALLOC_FORCE);
7960 if (ret < 0)
7961 goto out;
7962 }
5d4f98a2 7963
199c36ea 7964 ret = set_block_group_ro(cache, 0);
f0486c68
YZ
7965 if (!ret)
7966 goto out;
7967 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
698d0082 7968 ret = do_chunk_alloc(trans, root, alloc_flags,
0e4f8f88 7969 CHUNK_ALLOC_FORCE);
f0486c68
YZ
7970 if (ret < 0)
7971 goto out;
199c36ea 7972 ret = set_block_group_ro(cache, 0);
f0486c68
YZ
7973out:
7974 btrfs_end_transaction(trans, root);
7975 return ret;
7976}
5d4f98a2 7977
c87f08ca
CM
7978int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
7979 struct btrfs_root *root, u64 type)
7980{
7981 u64 alloc_flags = get_alloc_profile(root, type);
698d0082 7982 return do_chunk_alloc(trans, root, alloc_flags,
0e4f8f88 7983 CHUNK_ALLOC_FORCE);
c87f08ca
CM
7984}
7985
6d07bcec
MX
7986/*
7987 * helper to account the unused space of all the readonly block group in the
7988 * list. takes mirrors into account.
7989 */
7990static u64 __btrfs_get_ro_block_group_free_space(struct list_head *groups_list)
7991{
7992 struct btrfs_block_group_cache *block_group;
7993 u64 free_bytes = 0;
7994 int factor;
7995
7996 list_for_each_entry(block_group, groups_list, list) {
7997 spin_lock(&block_group->lock);
7998
7999 if (!block_group->ro) {
8000 spin_unlock(&block_group->lock);
8001 continue;
8002 }
8003
8004 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
8005 BTRFS_BLOCK_GROUP_RAID10 |
8006 BTRFS_BLOCK_GROUP_DUP))
8007 factor = 2;
8008 else
8009 factor = 1;
8010
8011 free_bytes += (block_group->key.offset -
8012 btrfs_block_group_used(&block_group->item)) *
8013 factor;
8014
8015 spin_unlock(&block_group->lock);
8016 }
8017
8018 return free_bytes;
8019}
8020
8021/*
8022 * helper to account the unused space of all the readonly block group in the
8023 * space_info. takes mirrors into account.
8024 */
8025u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
8026{
8027 int i;
8028 u64 free_bytes = 0;
8029
8030 spin_lock(&sinfo->lock);
8031
67871254 8032 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
6d07bcec
MX
8033 if (!list_empty(&sinfo->block_groups[i]))
8034 free_bytes += __btrfs_get_ro_block_group_free_space(
8035 &sinfo->block_groups[i]);
8036
8037 spin_unlock(&sinfo->lock);
8038
8039 return free_bytes;
8040}
8041
143bede5 8042void btrfs_set_block_group_rw(struct btrfs_root *root,
f0486c68 8043 struct btrfs_block_group_cache *cache)
5d4f98a2 8044{
f0486c68
YZ
8045 struct btrfs_space_info *sinfo = cache->space_info;
8046 u64 num_bytes;
8047
8048 BUG_ON(!cache->ro);
8049
8050 spin_lock(&sinfo->lock);
8051 spin_lock(&cache->lock);
8052 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8053 cache->bytes_super - btrfs_block_group_used(&cache->item);
8054 sinfo->bytes_readonly -= num_bytes;
8055 cache->ro = 0;
8056 spin_unlock(&cache->lock);
8057 spin_unlock(&sinfo->lock);
5d4f98a2
YZ
8058}
8059
ba1bf481
JB
8060/*
8061 * checks to see if its even possible to relocate this block group.
8062 *
8063 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
8064 * ok to go ahead and try.
8065 */
8066int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
1a40e23b 8067{
ba1bf481
JB
8068 struct btrfs_block_group_cache *block_group;
8069 struct btrfs_space_info *space_info;
8070 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
8071 struct btrfs_device *device;
6df9a95e 8072 struct btrfs_trans_handle *trans;
cdcb725c 8073 u64 min_free;
6719db6a
JB
8074 u64 dev_min = 1;
8075 u64 dev_nr = 0;
4a5e98f5 8076 u64 target;
cdcb725c 8077 int index;
ba1bf481
JB
8078 int full = 0;
8079 int ret = 0;
1a40e23b 8080
ba1bf481 8081 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
1a40e23b 8082
ba1bf481
JB
8083 /* odd, couldn't find the block group, leave it alone */
8084 if (!block_group)
8085 return -1;
1a40e23b 8086
cdcb725c 8087 min_free = btrfs_block_group_used(&block_group->item);
8088
ba1bf481 8089 /* no bytes used, we're good */
cdcb725c 8090 if (!min_free)
1a40e23b
ZY
8091 goto out;
8092
ba1bf481
JB
8093 space_info = block_group->space_info;
8094 spin_lock(&space_info->lock);
17d217fe 8095
ba1bf481 8096 full = space_info->full;
17d217fe 8097
ba1bf481
JB
8098 /*
8099 * if this is the last block group we have in this space, we can't
7ce618db
CM
8100 * relocate it unless we're able to allocate a new chunk below.
8101 *
8102 * Otherwise, we need to make sure we have room in the space to handle
8103 * all of the extents from this block group. If we can, we're good
ba1bf481 8104 */
7ce618db 8105 if ((space_info->total_bytes != block_group->key.offset) &&
cdcb725c 8106 (space_info->bytes_used + space_info->bytes_reserved +
8107 space_info->bytes_pinned + space_info->bytes_readonly +
8108 min_free < space_info->total_bytes)) {
ba1bf481
JB
8109 spin_unlock(&space_info->lock);
8110 goto out;
17d217fe 8111 }
ba1bf481 8112 spin_unlock(&space_info->lock);
ea8c2819 8113
ba1bf481
JB
8114 /*
8115 * ok we don't have enough space, but maybe we have free space on our
8116 * devices to allocate new chunks for relocation, so loop through our
4a5e98f5
ID
8117 * alloc devices and guess if we have enough space. if this block
8118 * group is going to be restriped, run checks against the target
8119 * profile instead of the current one.
ba1bf481
JB
8120 */
8121 ret = -1;
ea8c2819 8122
cdcb725c 8123 /*
8124 * index:
8125 * 0: raid10
8126 * 1: raid1
8127 * 2: dup
8128 * 3: raid0
8129 * 4: single
8130 */
4a5e98f5
ID
8131 target = get_restripe_target(root->fs_info, block_group->flags);
8132 if (target) {
31e50229 8133 index = __get_raid_index(extended_to_chunk(target));
4a5e98f5
ID
8134 } else {
8135 /*
8136 * this is just a balance, so if we were marked as full
8137 * we know there is no space for a new chunk
8138 */
8139 if (full)
8140 goto out;
8141
8142 index = get_block_group_index(block_group);
8143 }
8144
e6ec716f 8145 if (index == BTRFS_RAID_RAID10) {
cdcb725c 8146 dev_min = 4;
6719db6a
JB
8147 /* Divide by 2 */
8148 min_free >>= 1;
e6ec716f 8149 } else if (index == BTRFS_RAID_RAID1) {
cdcb725c 8150 dev_min = 2;
e6ec716f 8151 } else if (index == BTRFS_RAID_DUP) {
6719db6a
JB
8152 /* Multiply by 2 */
8153 min_free <<= 1;
e6ec716f 8154 } else if (index == BTRFS_RAID_RAID0) {
cdcb725c 8155 dev_min = fs_devices->rw_devices;
6719db6a 8156 do_div(min_free, dev_min);
cdcb725c 8157 }
8158
6df9a95e
JB
8159 /* We need to do this so that we can look at pending chunks */
8160 trans = btrfs_join_transaction(root);
8161 if (IS_ERR(trans)) {
8162 ret = PTR_ERR(trans);
8163 goto out;
8164 }
8165
ba1bf481
JB
8166 mutex_lock(&root->fs_info->chunk_mutex);
8167 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
7bfc837d 8168 u64 dev_offset;
56bec294 8169
ba1bf481
JB
8170 /*
8171 * check to make sure we can actually find a chunk with enough
8172 * space to fit our block group in.
8173 */
63a212ab
SB
8174 if (device->total_bytes > device->bytes_used + min_free &&
8175 !device->is_tgtdev_for_dev_replace) {
6df9a95e 8176 ret = find_free_dev_extent(trans, device, min_free,
7bfc837d 8177 &dev_offset, NULL);
ba1bf481 8178 if (!ret)
cdcb725c 8179 dev_nr++;
8180
8181 if (dev_nr >= dev_min)
73e48b27 8182 break;
cdcb725c 8183
ba1bf481 8184 ret = -1;
725c8463 8185 }
edbd8d4e 8186 }
ba1bf481 8187 mutex_unlock(&root->fs_info->chunk_mutex);
6df9a95e 8188 btrfs_end_transaction(trans, root);
edbd8d4e 8189out:
ba1bf481 8190 btrfs_put_block_group(block_group);
edbd8d4e
CM
8191 return ret;
8192}
8193
b2950863
CH
8194static int find_first_block_group(struct btrfs_root *root,
8195 struct btrfs_path *path, struct btrfs_key *key)
0b86a832 8196{
925baedd 8197 int ret = 0;
0b86a832
CM
8198 struct btrfs_key found_key;
8199 struct extent_buffer *leaf;
8200 int slot;
edbd8d4e 8201
0b86a832
CM
8202 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
8203 if (ret < 0)
925baedd
CM
8204 goto out;
8205
d397712b 8206 while (1) {
0b86a832 8207 slot = path->slots[0];
edbd8d4e 8208 leaf = path->nodes[0];
0b86a832
CM
8209 if (slot >= btrfs_header_nritems(leaf)) {
8210 ret = btrfs_next_leaf(root, path);
8211 if (ret == 0)
8212 continue;
8213 if (ret < 0)
925baedd 8214 goto out;
0b86a832 8215 break;
edbd8d4e 8216 }
0b86a832 8217 btrfs_item_key_to_cpu(leaf, &found_key, slot);
edbd8d4e 8218
0b86a832 8219 if (found_key.objectid >= key->objectid &&
925baedd
CM
8220 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
8221 ret = 0;
8222 goto out;
8223 }
0b86a832 8224 path->slots[0]++;
edbd8d4e 8225 }
925baedd 8226out:
0b86a832 8227 return ret;
edbd8d4e
CM
8228}
8229
0af3d00b
JB
8230void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
8231{
8232 struct btrfs_block_group_cache *block_group;
8233 u64 last = 0;
8234
8235 while (1) {
8236 struct inode *inode;
8237
8238 block_group = btrfs_lookup_first_block_group(info, last);
8239 while (block_group) {
8240 spin_lock(&block_group->lock);
8241 if (block_group->iref)
8242 break;
8243 spin_unlock(&block_group->lock);
8244 block_group = next_block_group(info->tree_root,
8245 block_group);
8246 }
8247 if (!block_group) {
8248 if (last == 0)
8249 break;
8250 last = 0;
8251 continue;
8252 }
8253
8254 inode = block_group->inode;
8255 block_group->iref = 0;
8256 block_group->inode = NULL;
8257 spin_unlock(&block_group->lock);
8258 iput(inode);
8259 last = block_group->key.objectid + block_group->key.offset;
8260 btrfs_put_block_group(block_group);
8261 }
8262}
8263
1a40e23b
ZY
8264int btrfs_free_block_groups(struct btrfs_fs_info *info)
8265{
8266 struct btrfs_block_group_cache *block_group;
4184ea7f 8267 struct btrfs_space_info *space_info;
11833d66 8268 struct btrfs_caching_control *caching_ctl;
1a40e23b
ZY
8269 struct rb_node *n;
8270
11833d66
YZ
8271 down_write(&info->extent_commit_sem);
8272 while (!list_empty(&info->caching_block_groups)) {
8273 caching_ctl = list_entry(info->caching_block_groups.next,
8274 struct btrfs_caching_control, list);
8275 list_del(&caching_ctl->list);
8276 put_caching_control(caching_ctl);
8277 }
8278 up_write(&info->extent_commit_sem);
8279
1a40e23b
ZY
8280 spin_lock(&info->block_group_cache_lock);
8281 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
8282 block_group = rb_entry(n, struct btrfs_block_group_cache,
8283 cache_node);
1a40e23b
ZY
8284 rb_erase(&block_group->cache_node,
8285 &info->block_group_cache_tree);
d899e052
YZ
8286 spin_unlock(&info->block_group_cache_lock);
8287
80eb234a 8288 down_write(&block_group->space_info->groups_sem);
1a40e23b 8289 list_del(&block_group->list);
80eb234a 8290 up_write(&block_group->space_info->groups_sem);
d2fb3437 8291
817d52f8 8292 if (block_group->cached == BTRFS_CACHE_STARTED)
11833d66 8293 wait_block_group_cache_done(block_group);
817d52f8 8294
3c14874a
JB
8295 /*
8296 * We haven't cached this block group, which means we could
8297 * possibly have excluded extents on this block group.
8298 */
36cce922
JB
8299 if (block_group->cached == BTRFS_CACHE_NO ||
8300 block_group->cached == BTRFS_CACHE_ERROR)
3c14874a
JB
8301 free_excluded_extents(info->extent_root, block_group);
8302
817d52f8 8303 btrfs_remove_free_space_cache(block_group);
11dfe35a 8304 btrfs_put_block_group(block_group);
d899e052
YZ
8305
8306 spin_lock(&info->block_group_cache_lock);
1a40e23b
ZY
8307 }
8308 spin_unlock(&info->block_group_cache_lock);
4184ea7f
CM
8309
8310 /* now that all the block groups are freed, go through and
8311 * free all the space_info structs. This is only called during
8312 * the final stages of unmount, and so we know nobody is
8313 * using them. We call synchronize_rcu() once before we start,
8314 * just to be on the safe side.
8315 */
8316 synchronize_rcu();
8317
8929ecfa
YZ
8318 release_global_block_rsv(info);
8319
67871254 8320 while (!list_empty(&info->space_info)) {
4184ea7f
CM
8321 space_info = list_entry(info->space_info.next,
8322 struct btrfs_space_info,
8323 list);
b069e0c3 8324 if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) {
fae7f21c 8325 if (WARN_ON(space_info->bytes_pinned > 0 ||
b069e0c3 8326 space_info->bytes_reserved > 0 ||
fae7f21c 8327 space_info->bytes_may_use > 0)) {
b069e0c3
DS
8328 dump_space_info(space_info, 0, 0);
8329 }
f0486c68 8330 }
b150a4f1 8331 percpu_counter_destroy(&space_info->total_bytes_pinned);
4184ea7f
CM
8332 list_del(&space_info->list);
8333 kfree(space_info);
8334 }
1a40e23b
ZY
8335 return 0;
8336}
8337
b742bb82
YZ
8338static void __link_block_group(struct btrfs_space_info *space_info,
8339 struct btrfs_block_group_cache *cache)
8340{
8341 int index = get_block_group_index(cache);
8342
8343 down_write(&space_info->groups_sem);
8344 list_add_tail(&cache->list, &space_info->block_groups[index]);
8345 up_write(&space_info->groups_sem);
8346}
8347
9078a3e1
CM
8348int btrfs_read_block_groups(struct btrfs_root *root)
8349{
8350 struct btrfs_path *path;
8351 int ret;
9078a3e1 8352 struct btrfs_block_group_cache *cache;
be744175 8353 struct btrfs_fs_info *info = root->fs_info;
6324fbf3 8354 struct btrfs_space_info *space_info;
9078a3e1
CM
8355 struct btrfs_key key;
8356 struct btrfs_key found_key;
5f39d397 8357 struct extent_buffer *leaf;
0af3d00b
JB
8358 int need_clear = 0;
8359 u64 cache_gen;
96b5179d 8360
be744175 8361 root = info->extent_root;
9078a3e1 8362 key.objectid = 0;
0b86a832 8363 key.offset = 0;
9078a3e1 8364 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
9078a3e1
CM
8365 path = btrfs_alloc_path();
8366 if (!path)
8367 return -ENOMEM;
026fd317 8368 path->reada = 1;
9078a3e1 8369
6c41761f 8370 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
73bc1876 8371 if (btrfs_test_opt(root, SPACE_CACHE) &&
6c41761f 8372 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
0af3d00b 8373 need_clear = 1;
88c2ba3b
JB
8374 if (btrfs_test_opt(root, CLEAR_CACHE))
8375 need_clear = 1;
0af3d00b 8376
d397712b 8377 while (1) {
0b86a832 8378 ret = find_first_block_group(root, path, &key);
b742bb82
YZ
8379 if (ret > 0)
8380 break;
0b86a832
CM
8381 if (ret != 0)
8382 goto error;
5f39d397
CM
8383 leaf = path->nodes[0];
8384 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
8f18cf13 8385 cache = kzalloc(sizeof(*cache), GFP_NOFS);
9078a3e1 8386 if (!cache) {
0b86a832 8387 ret = -ENOMEM;
f0486c68 8388 goto error;
9078a3e1 8389 }
34d52cb6
LZ
8390 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
8391 GFP_NOFS);
8392 if (!cache->free_space_ctl) {
8393 kfree(cache);
8394 ret = -ENOMEM;
8395 goto error;
8396 }
3e1ad54f 8397
d2fb3437 8398 atomic_set(&cache->count, 1);
c286ac48 8399 spin_lock_init(&cache->lock);
817d52f8 8400 cache->fs_info = info;
0f9dd46c 8401 INIT_LIST_HEAD(&cache->list);
fa9c0d79 8402 INIT_LIST_HEAD(&cache->cluster_list);
96303081 8403
cf7c1ef6
LB
8404 if (need_clear) {
8405 /*
8406 * When we mount with old space cache, we need to
8407 * set BTRFS_DC_CLEAR and set dirty flag.
8408 *
8409 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
8410 * truncate the old free space cache inode and
8411 * setup a new one.
8412 * b) Setting 'dirty flag' makes sure that we flush
8413 * the new space cache info onto disk.
8414 */
0af3d00b 8415 cache->disk_cache_state = BTRFS_DC_CLEAR;
cf7c1ef6
LB
8416 if (btrfs_test_opt(root, SPACE_CACHE))
8417 cache->dirty = 1;
8418 }
0af3d00b 8419
5f39d397
CM
8420 read_extent_buffer(leaf, &cache->item,
8421 btrfs_item_ptr_offset(leaf, path->slots[0]),
8422 sizeof(cache->item));
9078a3e1 8423 memcpy(&cache->key, &found_key, sizeof(found_key));
0b86a832 8424
9078a3e1 8425 key.objectid = found_key.objectid + found_key.offset;
b3b4aa74 8426 btrfs_release_path(path);
0b86a832 8427 cache->flags = btrfs_block_group_flags(&cache->item);
817d52f8 8428 cache->sectorsize = root->sectorsize;
53b381b3
DW
8429 cache->full_stripe_len = btrfs_full_stripe_len(root,
8430 &root->fs_info->mapping_tree,
8431 found_key.objectid);
34d52cb6
LZ
8432 btrfs_init_free_space_ctl(cache);
8433
3c14874a
JB
8434 /*
8435 * We need to exclude the super stripes now so that the space
8436 * info has super bytes accounted for, otherwise we'll think
8437 * we have more space than we actually do.
8438 */
835d974f
JB
8439 ret = exclude_super_stripes(root, cache);
8440 if (ret) {
8441 /*
8442 * We may have excluded something, so call this just in
8443 * case.
8444 */
8445 free_excluded_extents(root, cache);
8446 kfree(cache->free_space_ctl);
8447 kfree(cache);
8448 goto error;
8449 }
3c14874a 8450
817d52f8
JB
8451 /*
8452 * check for two cases, either we are full, and therefore
8453 * don't need to bother with the caching work since we won't
8454 * find any space, or we are empty, and we can just add all
8455 * the space in and be done with it. This saves us _alot_ of
8456 * time, particularly in the full case.
8457 */
8458 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
11833d66 8459 cache->last_byte_to_unpin = (u64)-1;
817d52f8 8460 cache->cached = BTRFS_CACHE_FINISHED;
1b2da372 8461 free_excluded_extents(root, cache);
817d52f8 8462 } else if (btrfs_block_group_used(&cache->item) == 0) {
11833d66 8463 cache->last_byte_to_unpin = (u64)-1;
817d52f8
JB
8464 cache->cached = BTRFS_CACHE_FINISHED;
8465 add_new_free_space(cache, root->fs_info,
8466 found_key.objectid,
8467 found_key.objectid +
8468 found_key.offset);
11833d66 8469 free_excluded_extents(root, cache);
817d52f8 8470 }
96b5179d 8471
8c579fe7
JB
8472 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8473 if (ret) {
8474 btrfs_remove_free_space_cache(cache);
8475 btrfs_put_block_group(cache);
8476 goto error;
8477 }
8478
6324fbf3
CM
8479 ret = update_space_info(info, cache->flags, found_key.offset,
8480 btrfs_block_group_used(&cache->item),
8481 &space_info);
8c579fe7
JB
8482 if (ret) {
8483 btrfs_remove_free_space_cache(cache);
8484 spin_lock(&info->block_group_cache_lock);
8485 rb_erase(&cache->cache_node,
8486 &info->block_group_cache_tree);
8487 spin_unlock(&info->block_group_cache_lock);
8488 btrfs_put_block_group(cache);
8489 goto error;
8490 }
8491
6324fbf3 8492 cache->space_info = space_info;
1b2da372 8493 spin_lock(&cache->space_info->lock);
f0486c68 8494 cache->space_info->bytes_readonly += cache->bytes_super;
1b2da372
JB
8495 spin_unlock(&cache->space_info->lock);
8496
b742bb82 8497 __link_block_group(space_info, cache);
0f9dd46c 8498
75ccf47d 8499 set_avail_alloc_bits(root->fs_info, cache->flags);
2b82032c 8500 if (btrfs_chunk_readonly(root, cache->key.objectid))
199c36ea 8501 set_block_group_ro(cache, 1);
9078a3e1 8502 }
b742bb82
YZ
8503
8504 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
8505 if (!(get_alloc_profile(root, space_info->flags) &
8506 (BTRFS_BLOCK_GROUP_RAID10 |
8507 BTRFS_BLOCK_GROUP_RAID1 |
53b381b3
DW
8508 BTRFS_BLOCK_GROUP_RAID5 |
8509 BTRFS_BLOCK_GROUP_RAID6 |
b742bb82
YZ
8510 BTRFS_BLOCK_GROUP_DUP)))
8511 continue;
8512 /*
8513 * avoid allocating from un-mirrored block group if there are
8514 * mirrored block groups.
8515 */
1095cc0d 8516 list_for_each_entry(cache,
8517 &space_info->block_groups[BTRFS_RAID_RAID0],
8518 list)
199c36ea 8519 set_block_group_ro(cache, 1);
1095cc0d 8520 list_for_each_entry(cache,
8521 &space_info->block_groups[BTRFS_RAID_SINGLE],
8522 list)
199c36ea 8523 set_block_group_ro(cache, 1);
9078a3e1 8524 }
f0486c68
YZ
8525
8526 init_global_block_rsv(info);
0b86a832
CM
8527 ret = 0;
8528error:
9078a3e1 8529 btrfs_free_path(path);
0b86a832 8530 return ret;
9078a3e1 8531}
6324fbf3 8532
ea658bad
JB
8533void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
8534 struct btrfs_root *root)
8535{
8536 struct btrfs_block_group_cache *block_group, *tmp;
8537 struct btrfs_root *extent_root = root->fs_info->extent_root;
8538 struct btrfs_block_group_item item;
8539 struct btrfs_key key;
8540 int ret = 0;
8541
8542 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs,
8543 new_bg_list) {
8544 list_del_init(&block_group->new_bg_list);
8545
8546 if (ret)
8547 continue;
8548
8549 spin_lock(&block_group->lock);
8550 memcpy(&item, &block_group->item, sizeof(item));
8551 memcpy(&key, &block_group->key, sizeof(key));
8552 spin_unlock(&block_group->lock);
8553
8554 ret = btrfs_insert_item(trans, extent_root, &key, &item,
8555 sizeof(item));
8556 if (ret)
8557 btrfs_abort_transaction(trans, extent_root, ret);
6df9a95e
JB
8558 ret = btrfs_finish_chunk_alloc(trans, extent_root,
8559 key.objectid, key.offset);
8560 if (ret)
8561 btrfs_abort_transaction(trans, extent_root, ret);
ea658bad
JB
8562 }
8563}
8564
6324fbf3
CM
8565int btrfs_make_block_group(struct btrfs_trans_handle *trans,
8566 struct btrfs_root *root, u64 bytes_used,
e17cade2 8567 u64 type, u64 chunk_objectid, u64 chunk_offset,
6324fbf3
CM
8568 u64 size)
8569{
8570 int ret;
6324fbf3
CM
8571 struct btrfs_root *extent_root;
8572 struct btrfs_block_group_cache *cache;
6324fbf3
CM
8573
8574 extent_root = root->fs_info->extent_root;
6324fbf3 8575
12fcfd22 8576 root->fs_info->last_trans_log_full_commit = trans->transid;
e02119d5 8577
8f18cf13 8578 cache = kzalloc(sizeof(*cache), GFP_NOFS);
0f9dd46c
JB
8579 if (!cache)
8580 return -ENOMEM;
34d52cb6
LZ
8581 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
8582 GFP_NOFS);
8583 if (!cache->free_space_ctl) {
8584 kfree(cache);
8585 return -ENOMEM;
8586 }
0f9dd46c 8587
e17cade2 8588 cache->key.objectid = chunk_offset;
6324fbf3 8589 cache->key.offset = size;
d2fb3437 8590 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
96303081 8591 cache->sectorsize = root->sectorsize;
0af3d00b 8592 cache->fs_info = root->fs_info;
53b381b3
DW
8593 cache->full_stripe_len = btrfs_full_stripe_len(root,
8594 &root->fs_info->mapping_tree,
8595 chunk_offset);
96303081 8596
d2fb3437 8597 atomic_set(&cache->count, 1);
c286ac48 8598 spin_lock_init(&cache->lock);
0f9dd46c 8599 INIT_LIST_HEAD(&cache->list);
fa9c0d79 8600 INIT_LIST_HEAD(&cache->cluster_list);
ea658bad 8601 INIT_LIST_HEAD(&cache->new_bg_list);
0ef3e66b 8602
34d52cb6
LZ
8603 btrfs_init_free_space_ctl(cache);
8604
6324fbf3 8605 btrfs_set_block_group_used(&cache->item, bytes_used);
6324fbf3
CM
8606 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
8607 cache->flags = type;
8608 btrfs_set_block_group_flags(&cache->item, type);
8609
11833d66 8610 cache->last_byte_to_unpin = (u64)-1;
817d52f8 8611 cache->cached = BTRFS_CACHE_FINISHED;
835d974f
JB
8612 ret = exclude_super_stripes(root, cache);
8613 if (ret) {
8614 /*
8615 * We may have excluded something, so call this just in
8616 * case.
8617 */
8618 free_excluded_extents(root, cache);
8619 kfree(cache->free_space_ctl);
8620 kfree(cache);
8621 return ret;
8622 }
96303081 8623
817d52f8
JB
8624 add_new_free_space(cache, root->fs_info, chunk_offset,
8625 chunk_offset + size);
8626
11833d66
YZ
8627 free_excluded_extents(root, cache);
8628
8c579fe7
JB
8629 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8630 if (ret) {
8631 btrfs_remove_free_space_cache(cache);
8632 btrfs_put_block_group(cache);
8633 return ret;
8634 }
8635
6324fbf3
CM
8636 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
8637 &cache->space_info);
8c579fe7
JB
8638 if (ret) {
8639 btrfs_remove_free_space_cache(cache);
8640 spin_lock(&root->fs_info->block_group_cache_lock);
8641 rb_erase(&cache->cache_node,
8642 &root->fs_info->block_group_cache_tree);
8643 spin_unlock(&root->fs_info->block_group_cache_lock);
8644 btrfs_put_block_group(cache);
8645 return ret;
8646 }
c7c144db 8647 update_global_block_rsv(root->fs_info);
1b2da372
JB
8648
8649 spin_lock(&cache->space_info->lock);
f0486c68 8650 cache->space_info->bytes_readonly += cache->bytes_super;
1b2da372
JB
8651 spin_unlock(&cache->space_info->lock);
8652
b742bb82 8653 __link_block_group(cache->space_info, cache);
6324fbf3 8654
ea658bad 8655 list_add_tail(&cache->new_bg_list, &trans->new_bgs);
6324fbf3 8656
d18a2c44 8657 set_avail_alloc_bits(extent_root->fs_info, type);
925baedd 8658
6324fbf3
CM
8659 return 0;
8660}
1a40e23b 8661
10ea00f5
ID
8662static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
8663{
899c81ea
ID
8664 u64 extra_flags = chunk_to_extended(flags) &
8665 BTRFS_EXTENDED_PROFILE_MASK;
10ea00f5 8666
de98ced9 8667 write_seqlock(&fs_info->profiles_lock);
10ea00f5
ID
8668 if (flags & BTRFS_BLOCK_GROUP_DATA)
8669 fs_info->avail_data_alloc_bits &= ~extra_flags;
8670 if (flags & BTRFS_BLOCK_GROUP_METADATA)
8671 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
8672 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
8673 fs_info->avail_system_alloc_bits &= ~extra_flags;
de98ced9 8674 write_sequnlock(&fs_info->profiles_lock);
10ea00f5
ID
8675}
8676
1a40e23b
ZY
8677int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
8678 struct btrfs_root *root, u64 group_start)
8679{
8680 struct btrfs_path *path;
8681 struct btrfs_block_group_cache *block_group;
44fb5511 8682 struct btrfs_free_cluster *cluster;
0af3d00b 8683 struct btrfs_root *tree_root = root->fs_info->tree_root;
1a40e23b 8684 struct btrfs_key key;
0af3d00b 8685 struct inode *inode;
1a40e23b 8686 int ret;
10ea00f5 8687 int index;
89a55897 8688 int factor;
1a40e23b 8689
1a40e23b
ZY
8690 root = root->fs_info->extent_root;
8691
8692 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
8693 BUG_ON(!block_group);
c146afad 8694 BUG_ON(!block_group->ro);
1a40e23b 8695
9f7c43c9 8696 /*
8697 * Free the reserved super bytes from this block group before
8698 * remove it.
8699 */
8700 free_excluded_extents(root, block_group);
8701
1a40e23b 8702 memcpy(&key, &block_group->key, sizeof(key));
10ea00f5 8703 index = get_block_group_index(block_group);
89a55897
JB
8704 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
8705 BTRFS_BLOCK_GROUP_RAID1 |
8706 BTRFS_BLOCK_GROUP_RAID10))
8707 factor = 2;
8708 else
8709 factor = 1;
1a40e23b 8710
44fb5511
CM
8711 /* make sure this block group isn't part of an allocation cluster */
8712 cluster = &root->fs_info->data_alloc_cluster;
8713 spin_lock(&cluster->refill_lock);
8714 btrfs_return_cluster_to_free_space(block_group, cluster);
8715 spin_unlock(&cluster->refill_lock);
8716
8717 /*
8718 * make sure this block group isn't part of a metadata
8719 * allocation cluster
8720 */
8721 cluster = &root->fs_info->meta_alloc_cluster;
8722 spin_lock(&cluster->refill_lock);
8723 btrfs_return_cluster_to_free_space(block_group, cluster);
8724 spin_unlock(&cluster->refill_lock);
8725
1a40e23b 8726 path = btrfs_alloc_path();
d8926bb3
MF
8727 if (!path) {
8728 ret = -ENOMEM;
8729 goto out;
8730 }
1a40e23b 8731
10b2f34d 8732 inode = lookup_free_space_inode(tree_root, block_group, path);
0af3d00b 8733 if (!IS_ERR(inode)) {
b532402e 8734 ret = btrfs_orphan_add(trans, inode);
79787eaa
JM
8735 if (ret) {
8736 btrfs_add_delayed_iput(inode);
8737 goto out;
8738 }
0af3d00b
JB
8739 clear_nlink(inode);
8740 /* One for the block groups ref */
8741 spin_lock(&block_group->lock);
8742 if (block_group->iref) {
8743 block_group->iref = 0;
8744 block_group->inode = NULL;
8745 spin_unlock(&block_group->lock);
8746 iput(inode);
8747 } else {
8748 spin_unlock(&block_group->lock);
8749 }
8750 /* One for our lookup ref */
455757c3 8751 btrfs_add_delayed_iput(inode);
0af3d00b
JB
8752 }
8753
8754 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
8755 key.offset = block_group->key.objectid;
8756 key.type = 0;
8757
8758 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
8759 if (ret < 0)
8760 goto out;
8761 if (ret > 0)
b3b4aa74 8762 btrfs_release_path(path);
0af3d00b
JB
8763 if (ret == 0) {
8764 ret = btrfs_del_item(trans, tree_root, path);
8765 if (ret)
8766 goto out;
b3b4aa74 8767 btrfs_release_path(path);
0af3d00b
JB
8768 }
8769
3dfdb934 8770 spin_lock(&root->fs_info->block_group_cache_lock);
1a40e23b
ZY
8771 rb_erase(&block_group->cache_node,
8772 &root->fs_info->block_group_cache_tree);
a1897fdd
LB
8773
8774 if (root->fs_info->first_logical_byte == block_group->key.objectid)
8775 root->fs_info->first_logical_byte = (u64)-1;
3dfdb934 8776 spin_unlock(&root->fs_info->block_group_cache_lock);
817d52f8 8777
80eb234a 8778 down_write(&block_group->space_info->groups_sem);
44fb5511
CM
8779 /*
8780 * we must use list_del_init so people can check to see if they
8781 * are still on the list after taking the semaphore
8782 */
8783 list_del_init(&block_group->list);
10ea00f5
ID
8784 if (list_empty(&block_group->space_info->block_groups[index]))
8785 clear_avail_alloc_bits(root->fs_info, block_group->flags);
80eb234a 8786 up_write(&block_group->space_info->groups_sem);
1a40e23b 8787
817d52f8 8788 if (block_group->cached == BTRFS_CACHE_STARTED)
11833d66 8789 wait_block_group_cache_done(block_group);
817d52f8
JB
8790
8791 btrfs_remove_free_space_cache(block_group);
8792
c146afad
YZ
8793 spin_lock(&block_group->space_info->lock);
8794 block_group->space_info->total_bytes -= block_group->key.offset;
8795 block_group->space_info->bytes_readonly -= block_group->key.offset;
89a55897 8796 block_group->space_info->disk_total -= block_group->key.offset * factor;
c146afad 8797 spin_unlock(&block_group->space_info->lock);
283bb197 8798
0af3d00b
JB
8799 memcpy(&key, &block_group->key, sizeof(key));
8800
283bb197 8801 btrfs_clear_space_info_full(root->fs_info);
c146afad 8802
fa9c0d79
CM
8803 btrfs_put_block_group(block_group);
8804 btrfs_put_block_group(block_group);
1a40e23b
ZY
8805
8806 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
8807 if (ret > 0)
8808 ret = -EIO;
8809 if (ret < 0)
8810 goto out;
8811
8812 ret = btrfs_del_item(trans, root, path);
8813out:
8814 btrfs_free_path(path);
8815 return ret;
8816}
acce952b 8817
c59021f8 8818int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
8819{
8820 struct btrfs_space_info *space_info;
1aba86d6 8821 struct btrfs_super_block *disk_super;
8822 u64 features;
8823 u64 flags;
8824 int mixed = 0;
c59021f8 8825 int ret;
8826
6c41761f 8827 disk_super = fs_info->super_copy;
1aba86d6 8828 if (!btrfs_super_root(disk_super))
8829 return 1;
c59021f8 8830
1aba86d6 8831 features = btrfs_super_incompat_flags(disk_super);
8832 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
8833 mixed = 1;
c59021f8 8834
1aba86d6 8835 flags = BTRFS_BLOCK_GROUP_SYSTEM;
8836 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
c59021f8 8837 if (ret)
1aba86d6 8838 goto out;
c59021f8 8839
1aba86d6 8840 if (mixed) {
8841 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
8842 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8843 } else {
8844 flags = BTRFS_BLOCK_GROUP_METADATA;
8845 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8846 if (ret)
8847 goto out;
8848
8849 flags = BTRFS_BLOCK_GROUP_DATA;
8850 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8851 }
8852out:
c59021f8 8853 return ret;
8854}
8855
acce952b 8856int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
8857{
8858 return unpin_extent_range(root, start, end);
8859}
8860
8861int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr,
5378e607 8862 u64 num_bytes, u64 *actual_bytes)
acce952b 8863{
5378e607 8864 return btrfs_discard_extent(root, bytenr, num_bytes, actual_bytes);
acce952b 8865}
f7039b1d
LD
8866
8867int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
8868{
8869 struct btrfs_fs_info *fs_info = root->fs_info;
8870 struct btrfs_block_group_cache *cache = NULL;
8871 u64 group_trimmed;
8872 u64 start;
8873 u64 end;
8874 u64 trimmed = 0;
2cac13e4 8875 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
f7039b1d
LD
8876 int ret = 0;
8877
2cac13e4
LB
8878 /*
8879 * try to trim all FS space, our block group may start from non-zero.
8880 */
8881 if (range->len == total_bytes)
8882 cache = btrfs_lookup_first_block_group(fs_info, range->start);
8883 else
8884 cache = btrfs_lookup_block_group(fs_info, range->start);
f7039b1d
LD
8885
8886 while (cache) {
8887 if (cache->key.objectid >= (range->start + range->len)) {
8888 btrfs_put_block_group(cache);
8889 break;
8890 }
8891
8892 start = max(range->start, cache->key.objectid);
8893 end = min(range->start + range->len,
8894 cache->key.objectid + cache->key.offset);
8895
8896 if (end - start >= range->minlen) {
8897 if (!block_group_cache_done(cache)) {
f6373bf3 8898 ret = cache_block_group(cache, 0);
1be41b78
JB
8899 if (ret) {
8900 btrfs_put_block_group(cache);
8901 break;
8902 }
8903 ret = wait_block_group_cache_done(cache);
8904 if (ret) {
8905 btrfs_put_block_group(cache);
8906 break;
8907 }
f7039b1d
LD
8908 }
8909 ret = btrfs_trim_block_group(cache,
8910 &group_trimmed,
8911 start,
8912 end,
8913 range->minlen);
8914
8915 trimmed += group_trimmed;
8916 if (ret) {
8917 btrfs_put_block_group(cache);
8918 break;
8919 }
8920 }
8921
8922 cache = next_block_group(fs_info->tree_root, cache);
8923 }
8924
8925 range->len = trimmed;
8926 return ret;
8927}