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