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