Btrfs: kill BTRFS_I(inode)->block_group
[linux-2.6/x86.git] / fs / btrfs / extent-tree.c
blob9f0a4e3bd8a9220d3253333c6ce2440fb3bb1ed3
1 /*
2 * Copyright (C) 2007 Oracle. All rights reserved.
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.
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.
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.
18 #include <linux/sched.h>
19 #include <linux/pagemap.h>
20 #include <linux/writeback.h>
21 #include <linux/blkdev.h>
22 #include <linux/sort.h>
23 #include <linux/rcupdate.h>
24 #include <linux/kthread.h>
25 #include <linux/slab.h>
26 #include "compat.h"
27 #include "hash.h"
28 #include "ctree.h"
29 #include "disk-io.h"
30 #include "print-tree.h"
31 #include "transaction.h"
32 #include "volumes.h"
33 #include "locking.h"
34 #include "free-space-cache.h"
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.
40 * CHUNK_ALLOC_FORCE means it must try to allocate one
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
49 enum {
50 CHUNK_ALLOC_NO_FORCE = 0,
51 CHUNK_ALLOC_FORCE = 1,
52 CHUNK_ALLOC_LIMITED = 2,
55 static int update_block_group(struct btrfs_trans_handle *trans,
56 struct btrfs_root *root,
57 u64 bytenr, u64 num_bytes, int alloc);
58 static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
59 struct btrfs_root *root,
60 u64 bytenr, u64 num_bytes, u64 parent,
61 u64 root_objectid, u64 owner_objectid,
62 u64 owner_offset, int refs_to_drop,
63 struct btrfs_delayed_extent_op *extra_op);
64 static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
65 struct extent_buffer *leaf,
66 struct btrfs_extent_item *ei);
67 static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
68 struct btrfs_root *root,
69 u64 parent, u64 root_objectid,
70 u64 flags, u64 owner, u64 offset,
71 struct btrfs_key *ins, int ref_mod);
72 static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
73 struct btrfs_root *root,
74 u64 parent, u64 root_objectid,
75 u64 flags, struct btrfs_disk_key *key,
76 int level, struct btrfs_key *ins);
77 static int do_chunk_alloc(struct btrfs_trans_handle *trans,
78 struct btrfs_root *extent_root, u64 alloc_bytes,
79 u64 flags, int force);
80 static int find_next_key(struct btrfs_path *path, int level,
81 struct btrfs_key *key);
82 static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
83 int dump_block_groups);
85 static noinline int
86 block_group_cache_done(struct btrfs_block_group_cache *cache)
88 smp_mb();
89 return cache->cached == BTRFS_CACHE_FINISHED;
92 static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
94 return (cache->flags & bits) == bits;
97 void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
99 atomic_inc(&cache->count);
102 void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
104 if (atomic_dec_and_test(&cache->count)) {
105 WARN_ON(cache->pinned > 0);
106 WARN_ON(cache->reserved > 0);
107 WARN_ON(cache->reserved_pinned > 0);
108 kfree(cache);
113 * this adds the block group to the fs_info rb tree for the block group
114 * cache
116 static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
117 struct btrfs_block_group_cache *block_group)
119 struct rb_node **p;
120 struct rb_node *parent = NULL;
121 struct btrfs_block_group_cache *cache;
123 spin_lock(&info->block_group_cache_lock);
124 p = &info->block_group_cache_tree.rb_node;
126 while (*p) {
127 parent = *p;
128 cache = rb_entry(parent, struct btrfs_block_group_cache,
129 cache_node);
130 if (block_group->key.objectid < cache->key.objectid) {
131 p = &(*p)->rb_left;
132 } else if (block_group->key.objectid > cache->key.objectid) {
133 p = &(*p)->rb_right;
134 } else {
135 spin_unlock(&info->block_group_cache_lock);
136 return -EEXIST;
140 rb_link_node(&block_group->cache_node, parent, p);
141 rb_insert_color(&block_group->cache_node,
142 &info->block_group_cache_tree);
143 spin_unlock(&info->block_group_cache_lock);
145 return 0;
149 * This will return the block group at or after bytenr if contains is 0, else
150 * it will return the block group that contains the bytenr
152 static struct btrfs_block_group_cache *
153 block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
154 int contains)
156 struct btrfs_block_group_cache *cache, *ret = NULL;
157 struct rb_node *n;
158 u64 end, start;
160 spin_lock(&info->block_group_cache_lock);
161 n = info->block_group_cache_tree.rb_node;
163 while (n) {
164 cache = rb_entry(n, struct btrfs_block_group_cache,
165 cache_node);
166 end = cache->key.objectid + cache->key.offset - 1;
167 start = cache->key.objectid;
169 if (bytenr < start) {
170 if (!contains && (!ret || start < ret->key.objectid))
171 ret = cache;
172 n = n->rb_left;
173 } else if (bytenr > start) {
174 if (contains && bytenr <= end) {
175 ret = cache;
176 break;
178 n = n->rb_right;
179 } else {
180 ret = cache;
181 break;
184 if (ret)
185 btrfs_get_block_group(ret);
186 spin_unlock(&info->block_group_cache_lock);
188 return ret;
191 static int add_excluded_extent(struct btrfs_root *root,
192 u64 start, u64 num_bytes)
194 u64 end = start + num_bytes - 1;
195 set_extent_bits(&root->fs_info->freed_extents[0],
196 start, end, EXTENT_UPTODATE, GFP_NOFS);
197 set_extent_bits(&root->fs_info->freed_extents[1],
198 start, end, EXTENT_UPTODATE, GFP_NOFS);
199 return 0;
202 static void free_excluded_extents(struct btrfs_root *root,
203 struct btrfs_block_group_cache *cache)
205 u64 start, end;
207 start = cache->key.objectid;
208 end = start + cache->key.offset - 1;
210 clear_extent_bits(&root->fs_info->freed_extents[0],
211 start, end, EXTENT_UPTODATE, GFP_NOFS);
212 clear_extent_bits(&root->fs_info->freed_extents[1],
213 start, end, EXTENT_UPTODATE, GFP_NOFS);
216 static int exclude_super_stripes(struct btrfs_root *root,
217 struct btrfs_block_group_cache *cache)
219 u64 bytenr;
220 u64 *logical;
221 int stripe_len;
222 int i, nr, ret;
224 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
225 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
226 cache->bytes_super += stripe_len;
227 ret = add_excluded_extent(root, cache->key.objectid,
228 stripe_len);
229 BUG_ON(ret);
232 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
233 bytenr = btrfs_sb_offset(i);
234 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
235 cache->key.objectid, bytenr,
236 0, &logical, &nr, &stripe_len);
237 BUG_ON(ret);
239 while (nr--) {
240 cache->bytes_super += stripe_len;
241 ret = add_excluded_extent(root, logical[nr],
242 stripe_len);
243 BUG_ON(ret);
246 kfree(logical);
248 return 0;
251 static struct btrfs_caching_control *
252 get_caching_control(struct btrfs_block_group_cache *cache)
254 struct btrfs_caching_control *ctl;
256 spin_lock(&cache->lock);
257 if (cache->cached != BTRFS_CACHE_STARTED) {
258 spin_unlock(&cache->lock);
259 return NULL;
262 /* We're loading it the fast way, so we don't have a caching_ctl. */
263 if (!cache->caching_ctl) {
264 spin_unlock(&cache->lock);
265 return NULL;
268 ctl = cache->caching_ctl;
269 atomic_inc(&ctl->count);
270 spin_unlock(&cache->lock);
271 return ctl;
274 static void put_caching_control(struct btrfs_caching_control *ctl)
276 if (atomic_dec_and_test(&ctl->count))
277 kfree(ctl);
281 * this is only called by cache_block_group, since we could have freed extents
282 * we need to check the pinned_extents for any extents that can't be used yet
283 * since their free space will be released as soon as the transaction commits.
285 static u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
286 struct btrfs_fs_info *info, u64 start, u64 end)
288 u64 extent_start, extent_end, size, total_added = 0;
289 int ret;
291 while (start < end) {
292 ret = find_first_extent_bit(info->pinned_extents, start,
293 &extent_start, &extent_end,
294 EXTENT_DIRTY | EXTENT_UPTODATE);
295 if (ret)
296 break;
298 if (extent_start <= start) {
299 start = extent_end + 1;
300 } else if (extent_start > start && extent_start < end) {
301 size = extent_start - start;
302 total_added += size;
303 ret = btrfs_add_free_space(block_group, start,
304 size);
305 BUG_ON(ret);
306 start = extent_end + 1;
307 } else {
308 break;
312 if (start < end) {
313 size = end - start;
314 total_added += size;
315 ret = btrfs_add_free_space(block_group, start, size);
316 BUG_ON(ret);
319 return total_added;
322 static int caching_kthread(void *data)
324 struct btrfs_block_group_cache *block_group = data;
325 struct btrfs_fs_info *fs_info = block_group->fs_info;
326 struct btrfs_caching_control *caching_ctl = block_group->caching_ctl;
327 struct btrfs_root *extent_root = fs_info->extent_root;
328 struct btrfs_path *path;
329 struct extent_buffer *leaf;
330 struct btrfs_key key;
331 u64 total_found = 0;
332 u64 last = 0;
333 u32 nritems;
334 int ret = 0;
336 path = btrfs_alloc_path();
337 if (!path)
338 return -ENOMEM;
340 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
343 * We don't want to deadlock with somebody trying to allocate a new
344 * extent for the extent root while also trying to search the extent
345 * root to add free space. So we skip locking and search the commit
346 * root, since its read-only
348 path->skip_locking = 1;
349 path->search_commit_root = 1;
350 path->reada = 2;
352 key.objectid = last;
353 key.offset = 0;
354 key.type = BTRFS_EXTENT_ITEM_KEY;
355 again:
356 mutex_lock(&caching_ctl->mutex);
357 /* need to make sure the commit_root doesn't disappear */
358 down_read(&fs_info->extent_commit_sem);
360 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
361 if (ret < 0)
362 goto err;
364 leaf = path->nodes[0];
365 nritems = btrfs_header_nritems(leaf);
367 while (1) {
368 smp_mb();
369 if (fs_info->closing > 1) {
370 last = (u64)-1;
371 break;
374 if (path->slots[0] < nritems) {
375 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
376 } else {
377 ret = find_next_key(path, 0, &key);
378 if (ret)
379 break;
381 caching_ctl->progress = last;
382 btrfs_release_path(extent_root, path);
383 up_read(&fs_info->extent_commit_sem);
384 mutex_unlock(&caching_ctl->mutex);
385 if (btrfs_transaction_in_commit(fs_info))
386 schedule_timeout(1);
387 else
388 cond_resched();
389 goto again;
392 if (key.objectid < block_group->key.objectid) {
393 path->slots[0]++;
394 continue;
397 if (key.objectid >= block_group->key.objectid +
398 block_group->key.offset)
399 break;
401 if (key.type == BTRFS_EXTENT_ITEM_KEY) {
402 total_found += add_new_free_space(block_group,
403 fs_info, last,
404 key.objectid);
405 last = key.objectid + key.offset;
407 if (total_found > (1024 * 1024 * 2)) {
408 total_found = 0;
409 wake_up(&caching_ctl->wait);
412 path->slots[0]++;
414 ret = 0;
416 total_found += add_new_free_space(block_group, fs_info, last,
417 block_group->key.objectid +
418 block_group->key.offset);
419 caching_ctl->progress = (u64)-1;
421 spin_lock(&block_group->lock);
422 block_group->caching_ctl = NULL;
423 block_group->cached = BTRFS_CACHE_FINISHED;
424 spin_unlock(&block_group->lock);
426 err:
427 btrfs_free_path(path);
428 up_read(&fs_info->extent_commit_sem);
430 free_excluded_extents(extent_root, block_group);
432 mutex_unlock(&caching_ctl->mutex);
433 wake_up(&caching_ctl->wait);
435 put_caching_control(caching_ctl);
436 atomic_dec(&block_group->space_info->caching_threads);
437 btrfs_put_block_group(block_group);
439 return 0;
442 static int cache_block_group(struct btrfs_block_group_cache *cache,
443 struct btrfs_trans_handle *trans,
444 struct btrfs_root *root,
445 int load_cache_only)
447 struct btrfs_fs_info *fs_info = cache->fs_info;
448 struct btrfs_caching_control *caching_ctl;
449 struct task_struct *tsk;
450 int ret = 0;
452 smp_mb();
453 if (cache->cached != BTRFS_CACHE_NO)
454 return 0;
457 * We can't do the read from on-disk cache during a commit since we need
458 * to have the normal tree locking. Also if we are currently trying to
459 * allocate blocks for the tree root we can't do the fast caching since
460 * we likely hold important locks.
462 if (trans && (!trans->transaction->in_commit) &&
463 (root && root != root->fs_info->tree_root)) {
464 spin_lock(&cache->lock);
465 if (cache->cached != BTRFS_CACHE_NO) {
466 spin_unlock(&cache->lock);
467 return 0;
469 cache->cached = BTRFS_CACHE_STARTED;
470 spin_unlock(&cache->lock);
472 ret = load_free_space_cache(fs_info, cache);
474 spin_lock(&cache->lock);
475 if (ret == 1) {
476 cache->cached = BTRFS_CACHE_FINISHED;
477 cache->last_byte_to_unpin = (u64)-1;
478 } else {
479 cache->cached = BTRFS_CACHE_NO;
481 spin_unlock(&cache->lock);
482 if (ret == 1) {
483 free_excluded_extents(fs_info->extent_root, cache);
484 return 0;
488 if (load_cache_only)
489 return 0;
491 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
492 BUG_ON(!caching_ctl);
494 INIT_LIST_HEAD(&caching_ctl->list);
495 mutex_init(&caching_ctl->mutex);
496 init_waitqueue_head(&caching_ctl->wait);
497 caching_ctl->block_group = cache;
498 caching_ctl->progress = cache->key.objectid;
499 /* one for caching kthread, one for caching block group list */
500 atomic_set(&caching_ctl->count, 2);
502 spin_lock(&cache->lock);
503 if (cache->cached != BTRFS_CACHE_NO) {
504 spin_unlock(&cache->lock);
505 kfree(caching_ctl);
506 return 0;
508 cache->caching_ctl = caching_ctl;
509 cache->cached = BTRFS_CACHE_STARTED;
510 spin_unlock(&cache->lock);
512 down_write(&fs_info->extent_commit_sem);
513 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
514 up_write(&fs_info->extent_commit_sem);
516 atomic_inc(&cache->space_info->caching_threads);
517 btrfs_get_block_group(cache);
519 tsk = kthread_run(caching_kthread, cache, "btrfs-cache-%llu\n",
520 cache->key.objectid);
521 if (IS_ERR(tsk)) {
522 ret = PTR_ERR(tsk);
523 printk(KERN_ERR "error running thread %d\n", ret);
524 BUG();
527 return ret;
531 * return the block group that starts at or after bytenr
533 static struct btrfs_block_group_cache *
534 btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
536 struct btrfs_block_group_cache *cache;
538 cache = block_group_cache_tree_search(info, bytenr, 0);
540 return cache;
544 * return the block group that contains the given bytenr
546 struct btrfs_block_group_cache *btrfs_lookup_block_group(
547 struct btrfs_fs_info *info,
548 u64 bytenr)
550 struct btrfs_block_group_cache *cache;
552 cache = block_group_cache_tree_search(info, bytenr, 1);
554 return cache;
557 static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
558 u64 flags)
560 struct list_head *head = &info->space_info;
561 struct btrfs_space_info *found;
563 flags &= BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_SYSTEM |
564 BTRFS_BLOCK_GROUP_METADATA;
566 rcu_read_lock();
567 list_for_each_entry_rcu(found, head, list) {
568 if (found->flags & flags) {
569 rcu_read_unlock();
570 return found;
573 rcu_read_unlock();
574 return NULL;
578 * after adding space to the filesystem, we need to clear the full flags
579 * on all the space infos.
581 void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
583 struct list_head *head = &info->space_info;
584 struct btrfs_space_info *found;
586 rcu_read_lock();
587 list_for_each_entry_rcu(found, head, list)
588 found->full = 0;
589 rcu_read_unlock();
592 static u64 div_factor(u64 num, int factor)
594 if (factor == 10)
595 return num;
596 num *= factor;
597 do_div(num, 10);
598 return num;
601 static u64 div_factor_fine(u64 num, int factor)
603 if (factor == 100)
604 return num;
605 num *= factor;
606 do_div(num, 100);
607 return num;
610 u64 btrfs_find_block_group(struct btrfs_root *root,
611 u64 search_start, u64 search_hint, int owner)
613 struct btrfs_block_group_cache *cache;
614 u64 used;
615 u64 last = max(search_hint, search_start);
616 u64 group_start = 0;
617 int full_search = 0;
618 int factor = 9;
619 int wrapped = 0;
620 again:
621 while (1) {
622 cache = btrfs_lookup_first_block_group(root->fs_info, last);
623 if (!cache)
624 break;
626 spin_lock(&cache->lock);
627 last = cache->key.objectid + cache->key.offset;
628 used = btrfs_block_group_used(&cache->item);
630 if ((full_search || !cache->ro) &&
631 block_group_bits(cache, BTRFS_BLOCK_GROUP_METADATA)) {
632 if (used + cache->pinned + cache->reserved <
633 div_factor(cache->key.offset, factor)) {
634 group_start = cache->key.objectid;
635 spin_unlock(&cache->lock);
636 btrfs_put_block_group(cache);
637 goto found;
640 spin_unlock(&cache->lock);
641 btrfs_put_block_group(cache);
642 cond_resched();
644 if (!wrapped) {
645 last = search_start;
646 wrapped = 1;
647 goto again;
649 if (!full_search && factor < 10) {
650 last = search_start;
651 full_search = 1;
652 factor = 10;
653 goto again;
655 found:
656 return group_start;
659 /* simple helper to search for an existing extent at a given offset */
660 int btrfs_lookup_extent(struct btrfs_root *root, u64 start, u64 len)
662 int ret;
663 struct btrfs_key key;
664 struct btrfs_path *path;
666 path = btrfs_alloc_path();
667 BUG_ON(!path);
668 key.objectid = start;
669 key.offset = len;
670 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
671 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
672 0, 0);
673 btrfs_free_path(path);
674 return ret;
678 * helper function to lookup reference count and flags of extent.
680 * the head node for delayed ref is used to store the sum of all the
681 * reference count modifications queued up in the rbtree. the head
682 * node may also store the extent flags to set. This way you can check
683 * to see what the reference count and extent flags would be if all of
684 * the delayed refs are not processed.
686 int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
687 struct btrfs_root *root, u64 bytenr,
688 u64 num_bytes, u64 *refs, u64 *flags)
690 struct btrfs_delayed_ref_head *head;
691 struct btrfs_delayed_ref_root *delayed_refs;
692 struct btrfs_path *path;
693 struct btrfs_extent_item *ei;
694 struct extent_buffer *leaf;
695 struct btrfs_key key;
696 u32 item_size;
697 u64 num_refs;
698 u64 extent_flags;
699 int ret;
701 path = btrfs_alloc_path();
702 if (!path)
703 return -ENOMEM;
705 key.objectid = bytenr;
706 key.type = BTRFS_EXTENT_ITEM_KEY;
707 key.offset = num_bytes;
708 if (!trans) {
709 path->skip_locking = 1;
710 path->search_commit_root = 1;
712 again:
713 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
714 &key, path, 0, 0);
715 if (ret < 0)
716 goto out_free;
718 if (ret == 0) {
719 leaf = path->nodes[0];
720 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
721 if (item_size >= sizeof(*ei)) {
722 ei = btrfs_item_ptr(leaf, path->slots[0],
723 struct btrfs_extent_item);
724 num_refs = btrfs_extent_refs(leaf, ei);
725 extent_flags = btrfs_extent_flags(leaf, ei);
726 } else {
727 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
728 struct btrfs_extent_item_v0 *ei0;
729 BUG_ON(item_size != sizeof(*ei0));
730 ei0 = btrfs_item_ptr(leaf, path->slots[0],
731 struct btrfs_extent_item_v0);
732 num_refs = btrfs_extent_refs_v0(leaf, ei0);
733 /* FIXME: this isn't correct for data */
734 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
735 #else
736 BUG();
737 #endif
739 BUG_ON(num_refs == 0);
740 } else {
741 num_refs = 0;
742 extent_flags = 0;
743 ret = 0;
746 if (!trans)
747 goto out;
749 delayed_refs = &trans->transaction->delayed_refs;
750 spin_lock(&delayed_refs->lock);
751 head = btrfs_find_delayed_ref_head(trans, bytenr);
752 if (head) {
753 if (!mutex_trylock(&head->mutex)) {
754 atomic_inc(&head->node.refs);
755 spin_unlock(&delayed_refs->lock);
757 btrfs_release_path(root->fs_info->extent_root, path);
759 mutex_lock(&head->mutex);
760 mutex_unlock(&head->mutex);
761 btrfs_put_delayed_ref(&head->node);
762 goto again;
764 if (head->extent_op && head->extent_op->update_flags)
765 extent_flags |= head->extent_op->flags_to_set;
766 else
767 BUG_ON(num_refs == 0);
769 num_refs += head->node.ref_mod;
770 mutex_unlock(&head->mutex);
772 spin_unlock(&delayed_refs->lock);
773 out:
774 WARN_ON(num_refs == 0);
775 if (refs)
776 *refs = num_refs;
777 if (flags)
778 *flags = extent_flags;
779 out_free:
780 btrfs_free_path(path);
781 return ret;
785 * Back reference rules. Back refs have three main goals:
787 * 1) differentiate between all holders of references to an extent so that
788 * when a reference is dropped we can make sure it was a valid reference
789 * before freeing the extent.
791 * 2) Provide enough information to quickly find the holders of an extent
792 * if we notice a given block is corrupted or bad.
794 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
795 * maintenance. This is actually the same as #2, but with a slightly
796 * different use case.
798 * There are two kinds of back refs. The implicit back refs is optimized
799 * for pointers in non-shared tree blocks. For a given pointer in a block,
800 * back refs of this kind provide information about the block's owner tree
801 * and the pointer's key. These information allow us to find the block by
802 * b-tree searching. The full back refs is for pointers in tree blocks not
803 * referenced by their owner trees. The location of tree block is recorded
804 * in the back refs. Actually the full back refs is generic, and can be
805 * used in all cases the implicit back refs is used. The major shortcoming
806 * of the full back refs is its overhead. Every time a tree block gets
807 * COWed, we have to update back refs entry for all pointers in it.
809 * For a newly allocated tree block, we use implicit back refs for
810 * pointers in it. This means most tree related operations only involve
811 * implicit back refs. For a tree block created in old transaction, the
812 * only way to drop a reference to it is COW it. So we can detect the
813 * event that tree block loses its owner tree's reference and do the
814 * back refs conversion.
816 * When a tree block is COW'd through a tree, there are four cases:
818 * The reference count of the block is one and the tree is the block's
819 * owner tree. Nothing to do in this case.
821 * The reference count of the block is one and the tree is not the
822 * block's owner tree. In this case, full back refs is used for pointers
823 * in the block. Remove these full back refs, add implicit back refs for
824 * every pointers in the new block.
826 * The reference count of the block is greater than one and the tree is
827 * the block's owner tree. In this case, implicit back refs is used for
828 * pointers in the block. Add full back refs for every pointers in the
829 * block, increase lower level extents' reference counts. The original
830 * implicit back refs are entailed to the new block.
832 * The reference count of the block is greater than one and the tree is
833 * not the block's owner tree. Add implicit back refs for every pointer in
834 * the new block, increase lower level extents' reference count.
836 * Back Reference Key composing:
838 * The key objectid corresponds to the first byte in the extent,
839 * The key type is used to differentiate between types of back refs.
840 * There are different meanings of the key offset for different types
841 * of back refs.
843 * File extents can be referenced by:
845 * - multiple snapshots, subvolumes, or different generations in one subvol
846 * - different files inside a single subvolume
847 * - different offsets inside a file (bookend extents in file.c)
849 * The extent ref structure for the implicit back refs has fields for:
851 * - Objectid of the subvolume root
852 * - objectid of the file holding the reference
853 * - original offset in the file
854 * - how many bookend extents
856 * The key offset for the implicit back refs is hash of the first
857 * three fields.
859 * The extent ref structure for the full back refs has field for:
861 * - number of pointers in the tree leaf
863 * The key offset for the implicit back refs is the first byte of
864 * the tree leaf
866 * When a file extent is allocated, The implicit back refs is used.
867 * the fields are filled in:
869 * (root_key.objectid, inode objectid, offset in file, 1)
871 * When a file extent is removed file truncation, we find the
872 * corresponding implicit back refs and check the following fields:
874 * (btrfs_header_owner(leaf), inode objectid, offset in file)
876 * Btree extents can be referenced by:
878 * - Different subvolumes
880 * Both the implicit back refs and the full back refs for tree blocks
881 * only consist of key. The key offset for the implicit back refs is
882 * objectid of block's owner tree. The key offset for the full back refs
883 * is the first byte of parent block.
885 * When implicit back refs is used, information about the lowest key and
886 * level of the tree block are required. These information are stored in
887 * tree block info structure.
890 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
891 static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
892 struct btrfs_root *root,
893 struct btrfs_path *path,
894 u64 owner, u32 extra_size)
896 struct btrfs_extent_item *item;
897 struct btrfs_extent_item_v0 *ei0;
898 struct btrfs_extent_ref_v0 *ref0;
899 struct btrfs_tree_block_info *bi;
900 struct extent_buffer *leaf;
901 struct btrfs_key key;
902 struct btrfs_key found_key;
903 u32 new_size = sizeof(*item);
904 u64 refs;
905 int ret;
907 leaf = path->nodes[0];
908 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
910 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
911 ei0 = btrfs_item_ptr(leaf, path->slots[0],
912 struct btrfs_extent_item_v0);
913 refs = btrfs_extent_refs_v0(leaf, ei0);
915 if (owner == (u64)-1) {
916 while (1) {
917 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
918 ret = btrfs_next_leaf(root, path);
919 if (ret < 0)
920 return ret;
921 BUG_ON(ret > 0);
922 leaf = path->nodes[0];
924 btrfs_item_key_to_cpu(leaf, &found_key,
925 path->slots[0]);
926 BUG_ON(key.objectid != found_key.objectid);
927 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
928 path->slots[0]++;
929 continue;
931 ref0 = btrfs_item_ptr(leaf, path->slots[0],
932 struct btrfs_extent_ref_v0);
933 owner = btrfs_ref_objectid_v0(leaf, ref0);
934 break;
937 btrfs_release_path(root, path);
939 if (owner < BTRFS_FIRST_FREE_OBJECTID)
940 new_size += sizeof(*bi);
942 new_size -= sizeof(*ei0);
943 ret = btrfs_search_slot(trans, root, &key, path,
944 new_size + extra_size, 1);
945 if (ret < 0)
946 return ret;
947 BUG_ON(ret);
949 ret = btrfs_extend_item(trans, root, path, new_size);
950 BUG_ON(ret);
952 leaf = path->nodes[0];
953 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
954 btrfs_set_extent_refs(leaf, item, refs);
955 /* FIXME: get real generation */
956 btrfs_set_extent_generation(leaf, item, 0);
957 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
958 btrfs_set_extent_flags(leaf, item,
959 BTRFS_EXTENT_FLAG_TREE_BLOCK |
960 BTRFS_BLOCK_FLAG_FULL_BACKREF);
961 bi = (struct btrfs_tree_block_info *)(item + 1);
962 /* FIXME: get first key of the block */
963 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
964 btrfs_set_tree_block_level(leaf, bi, (int)owner);
965 } else {
966 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
968 btrfs_mark_buffer_dirty(leaf);
969 return 0;
971 #endif
973 static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
975 u32 high_crc = ~(u32)0;
976 u32 low_crc = ~(u32)0;
977 __le64 lenum;
979 lenum = cpu_to_le64(root_objectid);
980 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
981 lenum = cpu_to_le64(owner);
982 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
983 lenum = cpu_to_le64(offset);
984 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
986 return ((u64)high_crc << 31) ^ (u64)low_crc;
989 static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
990 struct btrfs_extent_data_ref *ref)
992 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
993 btrfs_extent_data_ref_objectid(leaf, ref),
994 btrfs_extent_data_ref_offset(leaf, ref));
997 static int match_extent_data_ref(struct extent_buffer *leaf,
998 struct btrfs_extent_data_ref *ref,
999 u64 root_objectid, u64 owner, u64 offset)
1001 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1002 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1003 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1004 return 0;
1005 return 1;
1008 static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
1009 struct btrfs_root *root,
1010 struct btrfs_path *path,
1011 u64 bytenr, u64 parent,
1012 u64 root_objectid,
1013 u64 owner, u64 offset)
1015 struct btrfs_key key;
1016 struct btrfs_extent_data_ref *ref;
1017 struct extent_buffer *leaf;
1018 u32 nritems;
1019 int ret;
1020 int recow;
1021 int err = -ENOENT;
1023 key.objectid = bytenr;
1024 if (parent) {
1025 key.type = BTRFS_SHARED_DATA_REF_KEY;
1026 key.offset = parent;
1027 } else {
1028 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1029 key.offset = hash_extent_data_ref(root_objectid,
1030 owner, offset);
1032 again:
1033 recow = 0;
1034 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1035 if (ret < 0) {
1036 err = ret;
1037 goto fail;
1040 if (parent) {
1041 if (!ret)
1042 return 0;
1043 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1044 key.type = BTRFS_EXTENT_REF_V0_KEY;
1045 btrfs_release_path(root, path);
1046 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1047 if (ret < 0) {
1048 err = ret;
1049 goto fail;
1051 if (!ret)
1052 return 0;
1053 #endif
1054 goto fail;
1057 leaf = path->nodes[0];
1058 nritems = btrfs_header_nritems(leaf);
1059 while (1) {
1060 if (path->slots[0] >= nritems) {
1061 ret = btrfs_next_leaf(root, path);
1062 if (ret < 0)
1063 err = ret;
1064 if (ret)
1065 goto fail;
1067 leaf = path->nodes[0];
1068 nritems = btrfs_header_nritems(leaf);
1069 recow = 1;
1072 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1073 if (key.objectid != bytenr ||
1074 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1075 goto fail;
1077 ref = btrfs_item_ptr(leaf, path->slots[0],
1078 struct btrfs_extent_data_ref);
1080 if (match_extent_data_ref(leaf, ref, root_objectid,
1081 owner, offset)) {
1082 if (recow) {
1083 btrfs_release_path(root, path);
1084 goto again;
1086 err = 0;
1087 break;
1089 path->slots[0]++;
1091 fail:
1092 return err;
1095 static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1096 struct btrfs_root *root,
1097 struct btrfs_path *path,
1098 u64 bytenr, u64 parent,
1099 u64 root_objectid, u64 owner,
1100 u64 offset, int refs_to_add)
1102 struct btrfs_key key;
1103 struct extent_buffer *leaf;
1104 u32 size;
1105 u32 num_refs;
1106 int ret;
1108 key.objectid = bytenr;
1109 if (parent) {
1110 key.type = BTRFS_SHARED_DATA_REF_KEY;
1111 key.offset = parent;
1112 size = sizeof(struct btrfs_shared_data_ref);
1113 } else {
1114 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1115 key.offset = hash_extent_data_ref(root_objectid,
1116 owner, offset);
1117 size = sizeof(struct btrfs_extent_data_ref);
1120 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1121 if (ret && ret != -EEXIST)
1122 goto fail;
1124 leaf = path->nodes[0];
1125 if (parent) {
1126 struct btrfs_shared_data_ref *ref;
1127 ref = btrfs_item_ptr(leaf, path->slots[0],
1128 struct btrfs_shared_data_ref);
1129 if (ret == 0) {
1130 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1131 } else {
1132 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1133 num_refs += refs_to_add;
1134 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1136 } else {
1137 struct btrfs_extent_data_ref *ref;
1138 while (ret == -EEXIST) {
1139 ref = btrfs_item_ptr(leaf, path->slots[0],
1140 struct btrfs_extent_data_ref);
1141 if (match_extent_data_ref(leaf, ref, root_objectid,
1142 owner, offset))
1143 break;
1144 btrfs_release_path(root, path);
1145 key.offset++;
1146 ret = btrfs_insert_empty_item(trans, root, path, &key,
1147 size);
1148 if (ret && ret != -EEXIST)
1149 goto fail;
1151 leaf = path->nodes[0];
1153 ref = btrfs_item_ptr(leaf, path->slots[0],
1154 struct btrfs_extent_data_ref);
1155 if (ret == 0) {
1156 btrfs_set_extent_data_ref_root(leaf, ref,
1157 root_objectid);
1158 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1159 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1160 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1161 } else {
1162 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1163 num_refs += refs_to_add;
1164 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1167 btrfs_mark_buffer_dirty(leaf);
1168 ret = 0;
1169 fail:
1170 btrfs_release_path(root, path);
1171 return ret;
1174 static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1175 struct btrfs_root *root,
1176 struct btrfs_path *path,
1177 int refs_to_drop)
1179 struct btrfs_key key;
1180 struct btrfs_extent_data_ref *ref1 = NULL;
1181 struct btrfs_shared_data_ref *ref2 = NULL;
1182 struct extent_buffer *leaf;
1183 u32 num_refs = 0;
1184 int ret = 0;
1186 leaf = path->nodes[0];
1187 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1189 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1190 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1191 struct btrfs_extent_data_ref);
1192 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1193 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1194 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1195 struct btrfs_shared_data_ref);
1196 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1197 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1198 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1199 struct btrfs_extent_ref_v0 *ref0;
1200 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1201 struct btrfs_extent_ref_v0);
1202 num_refs = btrfs_ref_count_v0(leaf, ref0);
1203 #endif
1204 } else {
1205 BUG();
1208 BUG_ON(num_refs < refs_to_drop);
1209 num_refs -= refs_to_drop;
1211 if (num_refs == 0) {
1212 ret = btrfs_del_item(trans, root, path);
1213 } else {
1214 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1215 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1216 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1217 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1218 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1219 else {
1220 struct btrfs_extent_ref_v0 *ref0;
1221 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1222 struct btrfs_extent_ref_v0);
1223 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1225 #endif
1226 btrfs_mark_buffer_dirty(leaf);
1228 return ret;
1231 static noinline u32 extent_data_ref_count(struct btrfs_root *root,
1232 struct btrfs_path *path,
1233 struct btrfs_extent_inline_ref *iref)
1235 struct btrfs_key key;
1236 struct extent_buffer *leaf;
1237 struct btrfs_extent_data_ref *ref1;
1238 struct btrfs_shared_data_ref *ref2;
1239 u32 num_refs = 0;
1241 leaf = path->nodes[0];
1242 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1243 if (iref) {
1244 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1245 BTRFS_EXTENT_DATA_REF_KEY) {
1246 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1247 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1248 } else {
1249 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1250 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1252 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1253 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1254 struct btrfs_extent_data_ref);
1255 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1256 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1257 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1258 struct btrfs_shared_data_ref);
1259 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1260 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1261 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1262 struct btrfs_extent_ref_v0 *ref0;
1263 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1264 struct btrfs_extent_ref_v0);
1265 num_refs = btrfs_ref_count_v0(leaf, ref0);
1266 #endif
1267 } else {
1268 WARN_ON(1);
1270 return num_refs;
1273 static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1274 struct btrfs_root *root,
1275 struct btrfs_path *path,
1276 u64 bytenr, u64 parent,
1277 u64 root_objectid)
1279 struct btrfs_key key;
1280 int ret;
1282 key.objectid = bytenr;
1283 if (parent) {
1284 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1285 key.offset = parent;
1286 } else {
1287 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1288 key.offset = root_objectid;
1291 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1292 if (ret > 0)
1293 ret = -ENOENT;
1294 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1295 if (ret == -ENOENT && parent) {
1296 btrfs_release_path(root, path);
1297 key.type = BTRFS_EXTENT_REF_V0_KEY;
1298 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1299 if (ret > 0)
1300 ret = -ENOENT;
1302 #endif
1303 return ret;
1306 static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1307 struct btrfs_root *root,
1308 struct btrfs_path *path,
1309 u64 bytenr, u64 parent,
1310 u64 root_objectid)
1312 struct btrfs_key key;
1313 int ret;
1315 key.objectid = bytenr;
1316 if (parent) {
1317 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1318 key.offset = parent;
1319 } else {
1320 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1321 key.offset = root_objectid;
1324 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
1325 btrfs_release_path(root, path);
1326 return ret;
1329 static inline int extent_ref_type(u64 parent, u64 owner)
1331 int type;
1332 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1333 if (parent > 0)
1334 type = BTRFS_SHARED_BLOCK_REF_KEY;
1335 else
1336 type = BTRFS_TREE_BLOCK_REF_KEY;
1337 } else {
1338 if (parent > 0)
1339 type = BTRFS_SHARED_DATA_REF_KEY;
1340 else
1341 type = BTRFS_EXTENT_DATA_REF_KEY;
1343 return type;
1346 static int find_next_key(struct btrfs_path *path, int level,
1347 struct btrfs_key *key)
1350 for (; level < BTRFS_MAX_LEVEL; level++) {
1351 if (!path->nodes[level])
1352 break;
1353 if (path->slots[level] + 1 >=
1354 btrfs_header_nritems(path->nodes[level]))
1355 continue;
1356 if (level == 0)
1357 btrfs_item_key_to_cpu(path->nodes[level], key,
1358 path->slots[level] + 1);
1359 else
1360 btrfs_node_key_to_cpu(path->nodes[level], key,
1361 path->slots[level] + 1);
1362 return 0;
1364 return 1;
1368 * look for inline back ref. if back ref is found, *ref_ret is set
1369 * to the address of inline back ref, and 0 is returned.
1371 * if back ref isn't found, *ref_ret is set to the address where it
1372 * should be inserted, and -ENOENT is returned.
1374 * if insert is true and there are too many inline back refs, the path
1375 * points to the extent item, and -EAGAIN is returned.
1377 * NOTE: inline back refs are ordered in the same way that back ref
1378 * items in the tree are ordered.
1380 static noinline_for_stack
1381 int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1382 struct btrfs_root *root,
1383 struct btrfs_path *path,
1384 struct btrfs_extent_inline_ref **ref_ret,
1385 u64 bytenr, u64 num_bytes,
1386 u64 parent, u64 root_objectid,
1387 u64 owner, u64 offset, int insert)
1389 struct btrfs_key key;
1390 struct extent_buffer *leaf;
1391 struct btrfs_extent_item *ei;
1392 struct btrfs_extent_inline_ref *iref;
1393 u64 flags;
1394 u64 item_size;
1395 unsigned long ptr;
1396 unsigned long end;
1397 int extra_size;
1398 int type;
1399 int want;
1400 int ret;
1401 int err = 0;
1403 key.objectid = bytenr;
1404 key.type = BTRFS_EXTENT_ITEM_KEY;
1405 key.offset = num_bytes;
1407 want = extent_ref_type(parent, owner);
1408 if (insert) {
1409 extra_size = btrfs_extent_inline_ref_size(want);
1410 path->keep_locks = 1;
1411 } else
1412 extra_size = -1;
1413 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1414 if (ret < 0) {
1415 err = ret;
1416 goto out;
1418 BUG_ON(ret);
1420 leaf = path->nodes[0];
1421 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1422 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1423 if (item_size < sizeof(*ei)) {
1424 if (!insert) {
1425 err = -ENOENT;
1426 goto out;
1428 ret = convert_extent_item_v0(trans, root, path, owner,
1429 extra_size);
1430 if (ret < 0) {
1431 err = ret;
1432 goto out;
1434 leaf = path->nodes[0];
1435 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1437 #endif
1438 BUG_ON(item_size < sizeof(*ei));
1440 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1441 flags = btrfs_extent_flags(leaf, ei);
1443 ptr = (unsigned long)(ei + 1);
1444 end = (unsigned long)ei + item_size;
1446 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
1447 ptr += sizeof(struct btrfs_tree_block_info);
1448 BUG_ON(ptr > end);
1449 } else {
1450 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_DATA));
1453 err = -ENOENT;
1454 while (1) {
1455 if (ptr >= end) {
1456 WARN_ON(ptr > end);
1457 break;
1459 iref = (struct btrfs_extent_inline_ref *)ptr;
1460 type = btrfs_extent_inline_ref_type(leaf, iref);
1461 if (want < type)
1462 break;
1463 if (want > type) {
1464 ptr += btrfs_extent_inline_ref_size(type);
1465 continue;
1468 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1469 struct btrfs_extent_data_ref *dref;
1470 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1471 if (match_extent_data_ref(leaf, dref, root_objectid,
1472 owner, offset)) {
1473 err = 0;
1474 break;
1476 if (hash_extent_data_ref_item(leaf, dref) <
1477 hash_extent_data_ref(root_objectid, owner, offset))
1478 break;
1479 } else {
1480 u64 ref_offset;
1481 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1482 if (parent > 0) {
1483 if (parent == ref_offset) {
1484 err = 0;
1485 break;
1487 if (ref_offset < parent)
1488 break;
1489 } else {
1490 if (root_objectid == ref_offset) {
1491 err = 0;
1492 break;
1494 if (ref_offset < root_objectid)
1495 break;
1498 ptr += btrfs_extent_inline_ref_size(type);
1500 if (err == -ENOENT && insert) {
1501 if (item_size + extra_size >=
1502 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1503 err = -EAGAIN;
1504 goto out;
1507 * To add new inline back ref, we have to make sure
1508 * there is no corresponding back ref item.
1509 * For simplicity, we just do not add new inline back
1510 * ref if there is any kind of item for this block
1512 if (find_next_key(path, 0, &key) == 0 &&
1513 key.objectid == bytenr &&
1514 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
1515 err = -EAGAIN;
1516 goto out;
1519 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1520 out:
1521 if (insert) {
1522 path->keep_locks = 0;
1523 btrfs_unlock_up_safe(path, 1);
1525 return err;
1529 * helper to add new inline back ref
1531 static noinline_for_stack
1532 int setup_inline_extent_backref(struct btrfs_trans_handle *trans,
1533 struct btrfs_root *root,
1534 struct btrfs_path *path,
1535 struct btrfs_extent_inline_ref *iref,
1536 u64 parent, u64 root_objectid,
1537 u64 owner, u64 offset, int refs_to_add,
1538 struct btrfs_delayed_extent_op *extent_op)
1540 struct extent_buffer *leaf;
1541 struct btrfs_extent_item *ei;
1542 unsigned long ptr;
1543 unsigned long end;
1544 unsigned long item_offset;
1545 u64 refs;
1546 int size;
1547 int type;
1548 int ret;
1550 leaf = path->nodes[0];
1551 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1552 item_offset = (unsigned long)iref - (unsigned long)ei;
1554 type = extent_ref_type(parent, owner);
1555 size = btrfs_extent_inline_ref_size(type);
1557 ret = btrfs_extend_item(trans, root, path, size);
1558 BUG_ON(ret);
1560 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1561 refs = btrfs_extent_refs(leaf, ei);
1562 refs += refs_to_add;
1563 btrfs_set_extent_refs(leaf, ei, refs);
1564 if (extent_op)
1565 __run_delayed_extent_op(extent_op, leaf, ei);
1567 ptr = (unsigned long)ei + item_offset;
1568 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1569 if (ptr < end - size)
1570 memmove_extent_buffer(leaf, ptr + size, ptr,
1571 end - size - ptr);
1573 iref = (struct btrfs_extent_inline_ref *)ptr;
1574 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1575 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1576 struct btrfs_extent_data_ref *dref;
1577 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1578 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1579 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1580 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1581 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1582 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1583 struct btrfs_shared_data_ref *sref;
1584 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1585 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1586 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1587 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1588 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1589 } else {
1590 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1592 btrfs_mark_buffer_dirty(leaf);
1593 return 0;
1596 static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1597 struct btrfs_root *root,
1598 struct btrfs_path *path,
1599 struct btrfs_extent_inline_ref **ref_ret,
1600 u64 bytenr, u64 num_bytes, u64 parent,
1601 u64 root_objectid, u64 owner, u64 offset)
1603 int ret;
1605 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1606 bytenr, num_bytes, parent,
1607 root_objectid, owner, offset, 0);
1608 if (ret != -ENOENT)
1609 return ret;
1611 btrfs_release_path(root, path);
1612 *ref_ret = NULL;
1614 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1615 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1616 root_objectid);
1617 } else {
1618 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1619 root_objectid, owner, offset);
1621 return ret;
1625 * helper to update/remove inline back ref
1627 static noinline_for_stack
1628 int update_inline_extent_backref(struct btrfs_trans_handle *trans,
1629 struct btrfs_root *root,
1630 struct btrfs_path *path,
1631 struct btrfs_extent_inline_ref *iref,
1632 int refs_to_mod,
1633 struct btrfs_delayed_extent_op *extent_op)
1635 struct extent_buffer *leaf;
1636 struct btrfs_extent_item *ei;
1637 struct btrfs_extent_data_ref *dref = NULL;
1638 struct btrfs_shared_data_ref *sref = NULL;
1639 unsigned long ptr;
1640 unsigned long end;
1641 u32 item_size;
1642 int size;
1643 int type;
1644 int ret;
1645 u64 refs;
1647 leaf = path->nodes[0];
1648 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1649 refs = btrfs_extent_refs(leaf, ei);
1650 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1651 refs += refs_to_mod;
1652 btrfs_set_extent_refs(leaf, ei, refs);
1653 if (extent_op)
1654 __run_delayed_extent_op(extent_op, leaf, ei);
1656 type = btrfs_extent_inline_ref_type(leaf, iref);
1658 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1659 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1660 refs = btrfs_extent_data_ref_count(leaf, dref);
1661 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1662 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1663 refs = btrfs_shared_data_ref_count(leaf, sref);
1664 } else {
1665 refs = 1;
1666 BUG_ON(refs_to_mod != -1);
1669 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1670 refs += refs_to_mod;
1672 if (refs > 0) {
1673 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1674 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1675 else
1676 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1677 } else {
1678 size = btrfs_extent_inline_ref_size(type);
1679 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1680 ptr = (unsigned long)iref;
1681 end = (unsigned long)ei + item_size;
1682 if (ptr + size < end)
1683 memmove_extent_buffer(leaf, ptr, ptr + size,
1684 end - ptr - size);
1685 item_size -= size;
1686 ret = btrfs_truncate_item(trans, root, path, item_size, 1);
1687 BUG_ON(ret);
1689 btrfs_mark_buffer_dirty(leaf);
1690 return 0;
1693 static noinline_for_stack
1694 int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1695 struct btrfs_root *root,
1696 struct btrfs_path *path,
1697 u64 bytenr, u64 num_bytes, u64 parent,
1698 u64 root_objectid, u64 owner,
1699 u64 offset, int refs_to_add,
1700 struct btrfs_delayed_extent_op *extent_op)
1702 struct btrfs_extent_inline_ref *iref;
1703 int ret;
1705 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1706 bytenr, num_bytes, parent,
1707 root_objectid, owner, offset, 1);
1708 if (ret == 0) {
1709 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
1710 ret = update_inline_extent_backref(trans, root, path, iref,
1711 refs_to_add, extent_op);
1712 } else if (ret == -ENOENT) {
1713 ret = setup_inline_extent_backref(trans, root, path, iref,
1714 parent, root_objectid,
1715 owner, offset, refs_to_add,
1716 extent_op);
1718 return ret;
1721 static int insert_extent_backref(struct btrfs_trans_handle *trans,
1722 struct btrfs_root *root,
1723 struct btrfs_path *path,
1724 u64 bytenr, u64 parent, u64 root_objectid,
1725 u64 owner, u64 offset, int refs_to_add)
1727 int ret;
1728 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1729 BUG_ON(refs_to_add != 1);
1730 ret = insert_tree_block_ref(trans, root, path, bytenr,
1731 parent, root_objectid);
1732 } else {
1733 ret = insert_extent_data_ref(trans, root, path, bytenr,
1734 parent, root_objectid,
1735 owner, offset, refs_to_add);
1737 return ret;
1740 static int remove_extent_backref(struct btrfs_trans_handle *trans,
1741 struct btrfs_root *root,
1742 struct btrfs_path *path,
1743 struct btrfs_extent_inline_ref *iref,
1744 int refs_to_drop, int is_data)
1746 int ret;
1748 BUG_ON(!is_data && refs_to_drop != 1);
1749 if (iref) {
1750 ret = update_inline_extent_backref(trans, root, path, iref,
1751 -refs_to_drop, NULL);
1752 } else if (is_data) {
1753 ret = remove_extent_data_ref(trans, root, path, refs_to_drop);
1754 } else {
1755 ret = btrfs_del_item(trans, root, path);
1757 return ret;
1760 static int btrfs_issue_discard(struct block_device *bdev,
1761 u64 start, u64 len)
1763 return blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_NOFS, 0);
1766 static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
1767 u64 num_bytes, u64 *actual_bytes)
1769 int ret;
1770 u64 discarded_bytes = 0;
1771 struct btrfs_multi_bio *multi = NULL;
1774 /* Tell the block device(s) that the sectors can be discarded */
1775 ret = btrfs_map_block(&root->fs_info->mapping_tree, REQ_DISCARD,
1776 bytenr, &num_bytes, &multi, 0);
1777 if (!ret) {
1778 struct btrfs_bio_stripe *stripe = multi->stripes;
1779 int i;
1782 for (i = 0; i < multi->num_stripes; i++, stripe++) {
1783 ret = btrfs_issue_discard(stripe->dev->bdev,
1784 stripe->physical,
1785 stripe->length);
1786 if (!ret)
1787 discarded_bytes += stripe->length;
1788 else if (ret != -EOPNOTSUPP)
1789 break;
1791 kfree(multi);
1793 if (discarded_bytes && ret == -EOPNOTSUPP)
1794 ret = 0;
1796 if (actual_bytes)
1797 *actual_bytes = discarded_bytes;
1800 return ret;
1803 int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1804 struct btrfs_root *root,
1805 u64 bytenr, u64 num_bytes, u64 parent,
1806 u64 root_objectid, u64 owner, u64 offset)
1808 int ret;
1809 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
1810 root_objectid == BTRFS_TREE_LOG_OBJECTID);
1812 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1813 ret = btrfs_add_delayed_tree_ref(trans, bytenr, num_bytes,
1814 parent, root_objectid, (int)owner,
1815 BTRFS_ADD_DELAYED_REF, NULL);
1816 } else {
1817 ret = btrfs_add_delayed_data_ref(trans, bytenr, num_bytes,
1818 parent, root_objectid, owner, offset,
1819 BTRFS_ADD_DELAYED_REF, NULL);
1821 return ret;
1824 static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1825 struct btrfs_root *root,
1826 u64 bytenr, u64 num_bytes,
1827 u64 parent, u64 root_objectid,
1828 u64 owner, u64 offset, int refs_to_add,
1829 struct btrfs_delayed_extent_op *extent_op)
1831 struct btrfs_path *path;
1832 struct extent_buffer *leaf;
1833 struct btrfs_extent_item *item;
1834 u64 refs;
1835 int ret;
1836 int err = 0;
1838 path = btrfs_alloc_path();
1839 if (!path)
1840 return -ENOMEM;
1842 path->reada = 1;
1843 path->leave_spinning = 1;
1844 /* this will setup the path even if it fails to insert the back ref */
1845 ret = insert_inline_extent_backref(trans, root->fs_info->extent_root,
1846 path, bytenr, num_bytes, parent,
1847 root_objectid, owner, offset,
1848 refs_to_add, extent_op);
1849 if (ret == 0)
1850 goto out;
1852 if (ret != -EAGAIN) {
1853 err = ret;
1854 goto out;
1857 leaf = path->nodes[0];
1858 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1859 refs = btrfs_extent_refs(leaf, item);
1860 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
1861 if (extent_op)
1862 __run_delayed_extent_op(extent_op, leaf, item);
1864 btrfs_mark_buffer_dirty(leaf);
1865 btrfs_release_path(root->fs_info->extent_root, path);
1867 path->reada = 1;
1868 path->leave_spinning = 1;
1870 /* now insert the actual backref */
1871 ret = insert_extent_backref(trans, root->fs_info->extent_root,
1872 path, bytenr, parent, root_objectid,
1873 owner, offset, refs_to_add);
1874 BUG_ON(ret);
1875 out:
1876 btrfs_free_path(path);
1877 return err;
1880 static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
1881 struct btrfs_root *root,
1882 struct btrfs_delayed_ref_node *node,
1883 struct btrfs_delayed_extent_op *extent_op,
1884 int insert_reserved)
1886 int ret = 0;
1887 struct btrfs_delayed_data_ref *ref;
1888 struct btrfs_key ins;
1889 u64 parent = 0;
1890 u64 ref_root = 0;
1891 u64 flags = 0;
1893 ins.objectid = node->bytenr;
1894 ins.offset = node->num_bytes;
1895 ins.type = BTRFS_EXTENT_ITEM_KEY;
1897 ref = btrfs_delayed_node_to_data_ref(node);
1898 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
1899 parent = ref->parent;
1900 else
1901 ref_root = ref->root;
1903 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
1904 if (extent_op) {
1905 BUG_ON(extent_op->update_key);
1906 flags |= extent_op->flags_to_set;
1908 ret = alloc_reserved_file_extent(trans, root,
1909 parent, ref_root, flags,
1910 ref->objectid, ref->offset,
1911 &ins, node->ref_mod);
1912 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
1913 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
1914 node->num_bytes, parent,
1915 ref_root, ref->objectid,
1916 ref->offset, node->ref_mod,
1917 extent_op);
1918 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
1919 ret = __btrfs_free_extent(trans, root, node->bytenr,
1920 node->num_bytes, parent,
1921 ref_root, ref->objectid,
1922 ref->offset, node->ref_mod,
1923 extent_op);
1924 } else {
1925 BUG();
1927 return ret;
1930 static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
1931 struct extent_buffer *leaf,
1932 struct btrfs_extent_item *ei)
1934 u64 flags = btrfs_extent_flags(leaf, ei);
1935 if (extent_op->update_flags) {
1936 flags |= extent_op->flags_to_set;
1937 btrfs_set_extent_flags(leaf, ei, flags);
1940 if (extent_op->update_key) {
1941 struct btrfs_tree_block_info *bi;
1942 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
1943 bi = (struct btrfs_tree_block_info *)(ei + 1);
1944 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
1948 static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
1949 struct btrfs_root *root,
1950 struct btrfs_delayed_ref_node *node,
1951 struct btrfs_delayed_extent_op *extent_op)
1953 struct btrfs_key key;
1954 struct btrfs_path *path;
1955 struct btrfs_extent_item *ei;
1956 struct extent_buffer *leaf;
1957 u32 item_size;
1958 int ret;
1959 int err = 0;
1961 path = btrfs_alloc_path();
1962 if (!path)
1963 return -ENOMEM;
1965 key.objectid = node->bytenr;
1966 key.type = BTRFS_EXTENT_ITEM_KEY;
1967 key.offset = node->num_bytes;
1969 path->reada = 1;
1970 path->leave_spinning = 1;
1971 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
1972 path, 0, 1);
1973 if (ret < 0) {
1974 err = ret;
1975 goto out;
1977 if (ret > 0) {
1978 err = -EIO;
1979 goto out;
1982 leaf = path->nodes[0];
1983 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1984 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1985 if (item_size < sizeof(*ei)) {
1986 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
1987 path, (u64)-1, 0);
1988 if (ret < 0) {
1989 err = ret;
1990 goto out;
1992 leaf = path->nodes[0];
1993 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1995 #endif
1996 BUG_ON(item_size < sizeof(*ei));
1997 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1998 __run_delayed_extent_op(extent_op, leaf, ei);
2000 btrfs_mark_buffer_dirty(leaf);
2001 out:
2002 btrfs_free_path(path);
2003 return err;
2006 static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2007 struct btrfs_root *root,
2008 struct btrfs_delayed_ref_node *node,
2009 struct btrfs_delayed_extent_op *extent_op,
2010 int insert_reserved)
2012 int ret = 0;
2013 struct btrfs_delayed_tree_ref *ref;
2014 struct btrfs_key ins;
2015 u64 parent = 0;
2016 u64 ref_root = 0;
2018 ins.objectid = node->bytenr;
2019 ins.offset = node->num_bytes;
2020 ins.type = BTRFS_EXTENT_ITEM_KEY;
2022 ref = btrfs_delayed_node_to_tree_ref(node);
2023 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2024 parent = ref->parent;
2025 else
2026 ref_root = ref->root;
2028 BUG_ON(node->ref_mod != 1);
2029 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
2030 BUG_ON(!extent_op || !extent_op->update_flags ||
2031 !extent_op->update_key);
2032 ret = alloc_reserved_tree_block(trans, root,
2033 parent, ref_root,
2034 extent_op->flags_to_set,
2035 &extent_op->key,
2036 ref->level, &ins);
2037 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2038 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2039 node->num_bytes, parent, ref_root,
2040 ref->level, 0, 1, extent_op);
2041 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2042 ret = __btrfs_free_extent(trans, root, node->bytenr,
2043 node->num_bytes, parent, ref_root,
2044 ref->level, 0, 1, extent_op);
2045 } else {
2046 BUG();
2048 return ret;
2051 /* helper function to actually process a single delayed ref entry */
2052 static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2053 struct btrfs_root *root,
2054 struct btrfs_delayed_ref_node *node,
2055 struct btrfs_delayed_extent_op *extent_op,
2056 int insert_reserved)
2058 int ret;
2059 if (btrfs_delayed_ref_is_head(node)) {
2060 struct btrfs_delayed_ref_head *head;
2062 * we've hit the end of the chain and we were supposed
2063 * to insert this extent into the tree. But, it got
2064 * deleted before we ever needed to insert it, so all
2065 * we have to do is clean up the accounting
2067 BUG_ON(extent_op);
2068 head = btrfs_delayed_node_to_head(node);
2069 if (insert_reserved) {
2070 btrfs_pin_extent(root, node->bytenr,
2071 node->num_bytes, 1);
2072 if (head->is_data) {
2073 ret = btrfs_del_csums(trans, root,
2074 node->bytenr,
2075 node->num_bytes);
2076 BUG_ON(ret);
2079 mutex_unlock(&head->mutex);
2080 return 0;
2083 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2084 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2085 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2086 insert_reserved);
2087 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2088 node->type == BTRFS_SHARED_DATA_REF_KEY)
2089 ret = run_delayed_data_ref(trans, root, node, extent_op,
2090 insert_reserved);
2091 else
2092 BUG();
2093 return ret;
2096 static noinline struct btrfs_delayed_ref_node *
2097 select_delayed_ref(struct btrfs_delayed_ref_head *head)
2099 struct rb_node *node;
2100 struct btrfs_delayed_ref_node *ref;
2101 int action = BTRFS_ADD_DELAYED_REF;
2102 again:
2104 * select delayed ref of type BTRFS_ADD_DELAYED_REF first.
2105 * this prevents ref count from going down to zero when
2106 * there still are pending delayed ref.
2108 node = rb_prev(&head->node.rb_node);
2109 while (1) {
2110 if (!node)
2111 break;
2112 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2113 rb_node);
2114 if (ref->bytenr != head->node.bytenr)
2115 break;
2116 if (ref->action == action)
2117 return ref;
2118 node = rb_prev(node);
2120 if (action == BTRFS_ADD_DELAYED_REF) {
2121 action = BTRFS_DROP_DELAYED_REF;
2122 goto again;
2124 return NULL;
2127 static noinline int run_clustered_refs(struct btrfs_trans_handle *trans,
2128 struct btrfs_root *root,
2129 struct list_head *cluster)
2131 struct btrfs_delayed_ref_root *delayed_refs;
2132 struct btrfs_delayed_ref_node *ref;
2133 struct btrfs_delayed_ref_head *locked_ref = NULL;
2134 struct btrfs_delayed_extent_op *extent_op;
2135 int ret;
2136 int count = 0;
2137 int must_insert_reserved = 0;
2139 delayed_refs = &trans->transaction->delayed_refs;
2140 while (1) {
2141 if (!locked_ref) {
2142 /* pick a new head ref from the cluster list */
2143 if (list_empty(cluster))
2144 break;
2146 locked_ref = list_entry(cluster->next,
2147 struct btrfs_delayed_ref_head, cluster);
2149 /* grab the lock that says we are going to process
2150 * all the refs for this head */
2151 ret = btrfs_delayed_ref_lock(trans, locked_ref);
2154 * we may have dropped the spin lock to get the head
2155 * mutex lock, and that might have given someone else
2156 * time to free the head. If that's true, it has been
2157 * removed from our list and we can move on.
2159 if (ret == -EAGAIN) {
2160 locked_ref = NULL;
2161 count++;
2162 continue;
2167 * record the must insert reserved flag before we
2168 * drop the spin lock.
2170 must_insert_reserved = locked_ref->must_insert_reserved;
2171 locked_ref->must_insert_reserved = 0;
2173 extent_op = locked_ref->extent_op;
2174 locked_ref->extent_op = NULL;
2177 * locked_ref is the head node, so we have to go one
2178 * node back for any delayed ref updates
2180 ref = select_delayed_ref(locked_ref);
2181 if (!ref) {
2182 /* All delayed refs have been processed, Go ahead
2183 * and send the head node to run_one_delayed_ref,
2184 * so that any accounting fixes can happen
2186 ref = &locked_ref->node;
2188 if (extent_op && must_insert_reserved) {
2189 kfree(extent_op);
2190 extent_op = NULL;
2193 if (extent_op) {
2194 spin_unlock(&delayed_refs->lock);
2196 ret = run_delayed_extent_op(trans, root,
2197 ref, extent_op);
2198 BUG_ON(ret);
2199 kfree(extent_op);
2201 cond_resched();
2202 spin_lock(&delayed_refs->lock);
2203 continue;
2206 list_del_init(&locked_ref->cluster);
2207 locked_ref = NULL;
2210 ref->in_tree = 0;
2211 rb_erase(&ref->rb_node, &delayed_refs->root);
2212 delayed_refs->num_entries--;
2214 spin_unlock(&delayed_refs->lock);
2216 ret = run_one_delayed_ref(trans, root, ref, extent_op,
2217 must_insert_reserved);
2218 BUG_ON(ret);
2220 btrfs_put_delayed_ref(ref);
2221 kfree(extent_op);
2222 count++;
2224 cond_resched();
2225 spin_lock(&delayed_refs->lock);
2227 return count;
2231 * this starts processing the delayed reference count updates and
2232 * extent insertions we have queued up so far. count can be
2233 * 0, which means to process everything in the tree at the start
2234 * of the run (but not newly added entries), or it can be some target
2235 * number you'd like to process.
2237 int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2238 struct btrfs_root *root, unsigned long count)
2240 struct rb_node *node;
2241 struct btrfs_delayed_ref_root *delayed_refs;
2242 struct btrfs_delayed_ref_node *ref;
2243 struct list_head cluster;
2244 int ret;
2245 int run_all = count == (unsigned long)-1;
2246 int run_most = 0;
2248 if (root == root->fs_info->extent_root)
2249 root = root->fs_info->tree_root;
2251 delayed_refs = &trans->transaction->delayed_refs;
2252 INIT_LIST_HEAD(&cluster);
2253 again:
2254 spin_lock(&delayed_refs->lock);
2255 if (count == 0) {
2256 count = delayed_refs->num_entries * 2;
2257 run_most = 1;
2259 while (1) {
2260 if (!(run_all || run_most) &&
2261 delayed_refs->num_heads_ready < 64)
2262 break;
2265 * go find something we can process in the rbtree. We start at
2266 * the beginning of the tree, and then build a cluster
2267 * of refs to process starting at the first one we are able to
2268 * lock
2270 ret = btrfs_find_ref_cluster(trans, &cluster,
2271 delayed_refs->run_delayed_start);
2272 if (ret)
2273 break;
2275 ret = run_clustered_refs(trans, root, &cluster);
2276 BUG_ON(ret < 0);
2278 count -= min_t(unsigned long, ret, count);
2280 if (count == 0)
2281 break;
2284 if (run_all) {
2285 node = rb_first(&delayed_refs->root);
2286 if (!node)
2287 goto out;
2288 count = (unsigned long)-1;
2290 while (node) {
2291 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2292 rb_node);
2293 if (btrfs_delayed_ref_is_head(ref)) {
2294 struct btrfs_delayed_ref_head *head;
2296 head = btrfs_delayed_node_to_head(ref);
2297 atomic_inc(&ref->refs);
2299 spin_unlock(&delayed_refs->lock);
2300 mutex_lock(&head->mutex);
2301 mutex_unlock(&head->mutex);
2303 btrfs_put_delayed_ref(ref);
2304 cond_resched();
2305 goto again;
2307 node = rb_next(node);
2309 spin_unlock(&delayed_refs->lock);
2310 schedule_timeout(1);
2311 goto again;
2313 out:
2314 spin_unlock(&delayed_refs->lock);
2315 return 0;
2318 int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2319 struct btrfs_root *root,
2320 u64 bytenr, u64 num_bytes, u64 flags,
2321 int is_data)
2323 struct btrfs_delayed_extent_op *extent_op;
2324 int ret;
2326 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
2327 if (!extent_op)
2328 return -ENOMEM;
2330 extent_op->flags_to_set = flags;
2331 extent_op->update_flags = 1;
2332 extent_op->update_key = 0;
2333 extent_op->is_data = is_data ? 1 : 0;
2335 ret = btrfs_add_delayed_extent_op(trans, bytenr, num_bytes, extent_op);
2336 if (ret)
2337 kfree(extent_op);
2338 return ret;
2341 static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2342 struct btrfs_root *root,
2343 struct btrfs_path *path,
2344 u64 objectid, u64 offset, u64 bytenr)
2346 struct btrfs_delayed_ref_head *head;
2347 struct btrfs_delayed_ref_node *ref;
2348 struct btrfs_delayed_data_ref *data_ref;
2349 struct btrfs_delayed_ref_root *delayed_refs;
2350 struct rb_node *node;
2351 int ret = 0;
2353 ret = -ENOENT;
2354 delayed_refs = &trans->transaction->delayed_refs;
2355 spin_lock(&delayed_refs->lock);
2356 head = btrfs_find_delayed_ref_head(trans, bytenr);
2357 if (!head)
2358 goto out;
2360 if (!mutex_trylock(&head->mutex)) {
2361 atomic_inc(&head->node.refs);
2362 spin_unlock(&delayed_refs->lock);
2364 btrfs_release_path(root->fs_info->extent_root, path);
2366 mutex_lock(&head->mutex);
2367 mutex_unlock(&head->mutex);
2368 btrfs_put_delayed_ref(&head->node);
2369 return -EAGAIN;
2372 node = rb_prev(&head->node.rb_node);
2373 if (!node)
2374 goto out_unlock;
2376 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2378 if (ref->bytenr != bytenr)
2379 goto out_unlock;
2381 ret = 1;
2382 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY)
2383 goto out_unlock;
2385 data_ref = btrfs_delayed_node_to_data_ref(ref);
2387 node = rb_prev(node);
2388 if (node) {
2389 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2390 if (ref->bytenr == bytenr)
2391 goto out_unlock;
2394 if (data_ref->root != root->root_key.objectid ||
2395 data_ref->objectid != objectid || data_ref->offset != offset)
2396 goto out_unlock;
2398 ret = 0;
2399 out_unlock:
2400 mutex_unlock(&head->mutex);
2401 out:
2402 spin_unlock(&delayed_refs->lock);
2403 return ret;
2406 static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2407 struct btrfs_root *root,
2408 struct btrfs_path *path,
2409 u64 objectid, u64 offset, u64 bytenr)
2411 struct btrfs_root *extent_root = root->fs_info->extent_root;
2412 struct extent_buffer *leaf;
2413 struct btrfs_extent_data_ref *ref;
2414 struct btrfs_extent_inline_ref *iref;
2415 struct btrfs_extent_item *ei;
2416 struct btrfs_key key;
2417 u32 item_size;
2418 int ret;
2420 key.objectid = bytenr;
2421 key.offset = (u64)-1;
2422 key.type = BTRFS_EXTENT_ITEM_KEY;
2424 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2425 if (ret < 0)
2426 goto out;
2427 BUG_ON(ret == 0);
2429 ret = -ENOENT;
2430 if (path->slots[0] == 0)
2431 goto out;
2433 path->slots[0]--;
2434 leaf = path->nodes[0];
2435 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2437 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
2438 goto out;
2440 ret = 1;
2441 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2442 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2443 if (item_size < sizeof(*ei)) {
2444 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2445 goto out;
2447 #endif
2448 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2450 if (item_size != sizeof(*ei) +
2451 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2452 goto out;
2454 if (btrfs_extent_generation(leaf, ei) <=
2455 btrfs_root_last_snapshot(&root->root_item))
2456 goto out;
2458 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2459 if (btrfs_extent_inline_ref_type(leaf, iref) !=
2460 BTRFS_EXTENT_DATA_REF_KEY)
2461 goto out;
2463 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2464 if (btrfs_extent_refs(leaf, ei) !=
2465 btrfs_extent_data_ref_count(leaf, ref) ||
2466 btrfs_extent_data_ref_root(leaf, ref) !=
2467 root->root_key.objectid ||
2468 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
2469 btrfs_extent_data_ref_offset(leaf, ref) != offset)
2470 goto out;
2472 ret = 0;
2473 out:
2474 return ret;
2477 int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
2478 struct btrfs_root *root,
2479 u64 objectid, u64 offset, u64 bytenr)
2481 struct btrfs_path *path;
2482 int ret;
2483 int ret2;
2485 path = btrfs_alloc_path();
2486 if (!path)
2487 return -ENOENT;
2489 do {
2490 ret = check_committed_ref(trans, root, path, objectid,
2491 offset, bytenr);
2492 if (ret && ret != -ENOENT)
2493 goto out;
2495 ret2 = check_delayed_ref(trans, root, path, objectid,
2496 offset, bytenr);
2497 } while (ret2 == -EAGAIN);
2499 if (ret2 && ret2 != -ENOENT) {
2500 ret = ret2;
2501 goto out;
2504 if (ret != -ENOENT || ret2 != -ENOENT)
2505 ret = 0;
2506 out:
2507 btrfs_free_path(path);
2508 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
2509 WARN_ON(ret > 0);
2510 return ret;
2513 #if 0
2514 int btrfs_cache_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2515 struct extent_buffer *buf, u32 nr_extents)
2517 struct btrfs_key key;
2518 struct btrfs_file_extent_item *fi;
2519 u64 root_gen;
2520 u32 nritems;
2521 int i;
2522 int level;
2523 int ret = 0;
2524 int shared = 0;
2526 if (!root->ref_cows)
2527 return 0;
2529 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
2530 shared = 0;
2531 root_gen = root->root_key.offset;
2532 } else {
2533 shared = 1;
2534 root_gen = trans->transid - 1;
2537 level = btrfs_header_level(buf);
2538 nritems = btrfs_header_nritems(buf);
2540 if (level == 0) {
2541 struct btrfs_leaf_ref *ref;
2542 struct btrfs_extent_info *info;
2544 ref = btrfs_alloc_leaf_ref(root, nr_extents);
2545 if (!ref) {
2546 ret = -ENOMEM;
2547 goto out;
2550 ref->root_gen = root_gen;
2551 ref->bytenr = buf->start;
2552 ref->owner = btrfs_header_owner(buf);
2553 ref->generation = btrfs_header_generation(buf);
2554 ref->nritems = nr_extents;
2555 info = ref->extents;
2557 for (i = 0; nr_extents > 0 && i < nritems; i++) {
2558 u64 disk_bytenr;
2559 btrfs_item_key_to_cpu(buf, &key, i);
2560 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
2561 continue;
2562 fi = btrfs_item_ptr(buf, i,
2563 struct btrfs_file_extent_item);
2564 if (btrfs_file_extent_type(buf, fi) ==
2565 BTRFS_FILE_EXTENT_INLINE)
2566 continue;
2567 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
2568 if (disk_bytenr == 0)
2569 continue;
2571 info->bytenr = disk_bytenr;
2572 info->num_bytes =
2573 btrfs_file_extent_disk_num_bytes(buf, fi);
2574 info->objectid = key.objectid;
2575 info->offset = key.offset;
2576 info++;
2579 ret = btrfs_add_leaf_ref(root, ref, shared);
2580 if (ret == -EEXIST && shared) {
2581 struct btrfs_leaf_ref *old;
2582 old = btrfs_lookup_leaf_ref(root, ref->bytenr);
2583 BUG_ON(!old);
2584 btrfs_remove_leaf_ref(root, old);
2585 btrfs_free_leaf_ref(root, old);
2586 ret = btrfs_add_leaf_ref(root, ref, shared);
2588 WARN_ON(ret);
2589 btrfs_free_leaf_ref(root, ref);
2591 out:
2592 return ret;
2595 /* when a block goes through cow, we update the reference counts of
2596 * everything that block points to. The internal pointers of the block
2597 * can be in just about any order, and it is likely to have clusters of
2598 * things that are close together and clusters of things that are not.
2600 * To help reduce the seeks that come with updating all of these reference
2601 * counts, sort them by byte number before actual updates are done.
2603 * struct refsort is used to match byte number to slot in the btree block.
2604 * we sort based on the byte number and then use the slot to actually
2605 * find the item.
2607 * struct refsort is smaller than strcut btrfs_item and smaller than
2608 * struct btrfs_key_ptr. Since we're currently limited to the page size
2609 * for a btree block, there's no way for a kmalloc of refsorts for a
2610 * single node to be bigger than a page.
2612 struct refsort {
2613 u64 bytenr;
2614 u32 slot;
2618 * for passing into sort()
2620 static int refsort_cmp(const void *a_void, const void *b_void)
2622 const struct refsort *a = a_void;
2623 const struct refsort *b = b_void;
2625 if (a->bytenr < b->bytenr)
2626 return -1;
2627 if (a->bytenr > b->bytenr)
2628 return 1;
2629 return 0;
2631 #endif
2633 static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
2634 struct btrfs_root *root,
2635 struct extent_buffer *buf,
2636 int full_backref, int inc)
2638 u64 bytenr;
2639 u64 num_bytes;
2640 u64 parent;
2641 u64 ref_root;
2642 u32 nritems;
2643 struct btrfs_key key;
2644 struct btrfs_file_extent_item *fi;
2645 int i;
2646 int level;
2647 int ret = 0;
2648 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
2649 u64, u64, u64, u64, u64, u64);
2651 ref_root = btrfs_header_owner(buf);
2652 nritems = btrfs_header_nritems(buf);
2653 level = btrfs_header_level(buf);
2655 if (!root->ref_cows && level == 0)
2656 return 0;
2658 if (inc)
2659 process_func = btrfs_inc_extent_ref;
2660 else
2661 process_func = btrfs_free_extent;
2663 if (full_backref)
2664 parent = buf->start;
2665 else
2666 parent = 0;
2668 for (i = 0; i < nritems; i++) {
2669 if (level == 0) {
2670 btrfs_item_key_to_cpu(buf, &key, i);
2671 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
2672 continue;
2673 fi = btrfs_item_ptr(buf, i,
2674 struct btrfs_file_extent_item);
2675 if (btrfs_file_extent_type(buf, fi) ==
2676 BTRFS_FILE_EXTENT_INLINE)
2677 continue;
2678 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
2679 if (bytenr == 0)
2680 continue;
2682 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
2683 key.offset -= btrfs_file_extent_offset(buf, fi);
2684 ret = process_func(trans, root, bytenr, num_bytes,
2685 parent, ref_root, key.objectid,
2686 key.offset);
2687 if (ret)
2688 goto fail;
2689 } else {
2690 bytenr = btrfs_node_blockptr(buf, i);
2691 num_bytes = btrfs_level_size(root, level - 1);
2692 ret = process_func(trans, root, bytenr, num_bytes,
2693 parent, ref_root, level - 1, 0);
2694 if (ret)
2695 goto fail;
2698 return 0;
2699 fail:
2700 BUG();
2701 return ret;
2704 int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2705 struct extent_buffer *buf, int full_backref)
2707 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
2710 int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2711 struct extent_buffer *buf, int full_backref)
2713 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
2716 static int write_one_cache_group(struct btrfs_trans_handle *trans,
2717 struct btrfs_root *root,
2718 struct btrfs_path *path,
2719 struct btrfs_block_group_cache *cache)
2721 int ret;
2722 struct btrfs_root *extent_root = root->fs_info->extent_root;
2723 unsigned long bi;
2724 struct extent_buffer *leaf;
2726 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
2727 if (ret < 0)
2728 goto fail;
2729 BUG_ON(ret);
2731 leaf = path->nodes[0];
2732 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
2733 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
2734 btrfs_mark_buffer_dirty(leaf);
2735 btrfs_release_path(extent_root, path);
2736 fail:
2737 if (ret)
2738 return ret;
2739 return 0;
2743 static struct btrfs_block_group_cache *
2744 next_block_group(struct btrfs_root *root,
2745 struct btrfs_block_group_cache *cache)
2747 struct rb_node *node;
2748 spin_lock(&root->fs_info->block_group_cache_lock);
2749 node = rb_next(&cache->cache_node);
2750 btrfs_put_block_group(cache);
2751 if (node) {
2752 cache = rb_entry(node, struct btrfs_block_group_cache,
2753 cache_node);
2754 btrfs_get_block_group(cache);
2755 } else
2756 cache = NULL;
2757 spin_unlock(&root->fs_info->block_group_cache_lock);
2758 return cache;
2761 static int cache_save_setup(struct btrfs_block_group_cache *block_group,
2762 struct btrfs_trans_handle *trans,
2763 struct btrfs_path *path)
2765 struct btrfs_root *root = block_group->fs_info->tree_root;
2766 struct inode *inode = NULL;
2767 u64 alloc_hint = 0;
2768 int dcs = BTRFS_DC_ERROR;
2769 int num_pages = 0;
2770 int retries = 0;
2771 int ret = 0;
2774 * If this block group is smaller than 100 megs don't bother caching the
2775 * block group.
2777 if (block_group->key.offset < (100 * 1024 * 1024)) {
2778 spin_lock(&block_group->lock);
2779 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
2780 spin_unlock(&block_group->lock);
2781 return 0;
2784 again:
2785 inode = lookup_free_space_inode(root, block_group, path);
2786 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
2787 ret = PTR_ERR(inode);
2788 btrfs_release_path(root, path);
2789 goto out;
2792 if (IS_ERR(inode)) {
2793 BUG_ON(retries);
2794 retries++;
2796 if (block_group->ro)
2797 goto out_free;
2799 ret = create_free_space_inode(root, trans, block_group, path);
2800 if (ret)
2801 goto out_free;
2802 goto again;
2806 * We want to set the generation to 0, that way if anything goes wrong
2807 * from here on out we know not to trust this cache when we load up next
2808 * time.
2810 BTRFS_I(inode)->generation = 0;
2811 ret = btrfs_update_inode(trans, root, inode);
2812 WARN_ON(ret);
2814 if (i_size_read(inode) > 0) {
2815 ret = btrfs_truncate_free_space_cache(root, trans, path,
2816 inode);
2817 if (ret)
2818 goto out_put;
2821 spin_lock(&block_group->lock);
2822 if (block_group->cached != BTRFS_CACHE_FINISHED) {
2823 /* We're not cached, don't bother trying to write stuff out */
2824 dcs = BTRFS_DC_WRITTEN;
2825 spin_unlock(&block_group->lock);
2826 goto out_put;
2828 spin_unlock(&block_group->lock);
2830 num_pages = (int)div64_u64(block_group->key.offset, 1024 * 1024 * 1024);
2831 if (!num_pages)
2832 num_pages = 1;
2835 * Just to make absolutely sure we have enough space, we're going to
2836 * preallocate 12 pages worth of space for each block group. In
2837 * practice we ought to use at most 8, but we need extra space so we can
2838 * add our header and have a terminator between the extents and the
2839 * bitmaps.
2841 num_pages *= 16;
2842 num_pages *= PAGE_CACHE_SIZE;
2844 ret = btrfs_check_data_free_space(inode, num_pages);
2845 if (ret)
2846 goto out_put;
2848 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
2849 num_pages, num_pages,
2850 &alloc_hint);
2851 if (!ret)
2852 dcs = BTRFS_DC_SETUP;
2853 btrfs_free_reserved_data_space(inode, num_pages);
2854 out_put:
2855 iput(inode);
2856 out_free:
2857 btrfs_release_path(root, path);
2858 out:
2859 spin_lock(&block_group->lock);
2860 block_group->disk_cache_state = dcs;
2861 spin_unlock(&block_group->lock);
2863 return ret;
2866 int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
2867 struct btrfs_root *root)
2869 struct btrfs_block_group_cache *cache;
2870 int err = 0;
2871 struct btrfs_path *path;
2872 u64 last = 0;
2874 path = btrfs_alloc_path();
2875 if (!path)
2876 return -ENOMEM;
2878 again:
2879 while (1) {
2880 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2881 while (cache) {
2882 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
2883 break;
2884 cache = next_block_group(root, cache);
2886 if (!cache) {
2887 if (last == 0)
2888 break;
2889 last = 0;
2890 continue;
2892 err = cache_save_setup(cache, trans, path);
2893 last = cache->key.objectid + cache->key.offset;
2894 btrfs_put_block_group(cache);
2897 while (1) {
2898 if (last == 0) {
2899 err = btrfs_run_delayed_refs(trans, root,
2900 (unsigned long)-1);
2901 BUG_ON(err);
2904 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2905 while (cache) {
2906 if (cache->disk_cache_state == BTRFS_DC_CLEAR) {
2907 btrfs_put_block_group(cache);
2908 goto again;
2911 if (cache->dirty)
2912 break;
2913 cache = next_block_group(root, cache);
2915 if (!cache) {
2916 if (last == 0)
2917 break;
2918 last = 0;
2919 continue;
2922 if (cache->disk_cache_state == BTRFS_DC_SETUP)
2923 cache->disk_cache_state = BTRFS_DC_NEED_WRITE;
2924 cache->dirty = 0;
2925 last = cache->key.objectid + cache->key.offset;
2927 err = write_one_cache_group(trans, root, path, cache);
2928 BUG_ON(err);
2929 btrfs_put_block_group(cache);
2932 while (1) {
2934 * I don't think this is needed since we're just marking our
2935 * preallocated extent as written, but just in case it can't
2936 * hurt.
2938 if (last == 0) {
2939 err = btrfs_run_delayed_refs(trans, root,
2940 (unsigned long)-1);
2941 BUG_ON(err);
2944 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2945 while (cache) {
2947 * Really this shouldn't happen, but it could if we
2948 * couldn't write the entire preallocated extent and
2949 * splitting the extent resulted in a new block.
2951 if (cache->dirty) {
2952 btrfs_put_block_group(cache);
2953 goto again;
2955 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
2956 break;
2957 cache = next_block_group(root, cache);
2959 if (!cache) {
2960 if (last == 0)
2961 break;
2962 last = 0;
2963 continue;
2966 btrfs_write_out_cache(root, trans, cache, path);
2969 * If we didn't have an error then the cache state is still
2970 * NEED_WRITE, so we can set it to WRITTEN.
2972 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
2973 cache->disk_cache_state = BTRFS_DC_WRITTEN;
2974 last = cache->key.objectid + cache->key.offset;
2975 btrfs_put_block_group(cache);
2978 btrfs_free_path(path);
2979 return 0;
2982 int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
2984 struct btrfs_block_group_cache *block_group;
2985 int readonly = 0;
2987 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
2988 if (!block_group || block_group->ro)
2989 readonly = 1;
2990 if (block_group)
2991 btrfs_put_block_group(block_group);
2992 return readonly;
2995 static int update_space_info(struct btrfs_fs_info *info, u64 flags,
2996 u64 total_bytes, u64 bytes_used,
2997 struct btrfs_space_info **space_info)
2999 struct btrfs_space_info *found;
3000 int i;
3001 int factor;
3003 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3004 BTRFS_BLOCK_GROUP_RAID10))
3005 factor = 2;
3006 else
3007 factor = 1;
3009 found = __find_space_info(info, flags);
3010 if (found) {
3011 spin_lock(&found->lock);
3012 found->total_bytes += total_bytes;
3013 found->disk_total += total_bytes * factor;
3014 found->bytes_used += bytes_used;
3015 found->disk_used += bytes_used * factor;
3016 found->full = 0;
3017 spin_unlock(&found->lock);
3018 *space_info = found;
3019 return 0;
3021 found = kzalloc(sizeof(*found), GFP_NOFS);
3022 if (!found)
3023 return -ENOMEM;
3025 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
3026 INIT_LIST_HEAD(&found->block_groups[i]);
3027 init_rwsem(&found->groups_sem);
3028 spin_lock_init(&found->lock);
3029 found->flags = flags & (BTRFS_BLOCK_GROUP_DATA |
3030 BTRFS_BLOCK_GROUP_SYSTEM |
3031 BTRFS_BLOCK_GROUP_METADATA);
3032 found->total_bytes = total_bytes;
3033 found->disk_total = total_bytes * factor;
3034 found->bytes_used = bytes_used;
3035 found->disk_used = bytes_used * factor;
3036 found->bytes_pinned = 0;
3037 found->bytes_reserved = 0;
3038 found->bytes_readonly = 0;
3039 found->bytes_may_use = 0;
3040 found->full = 0;
3041 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
3042 found->chunk_alloc = 0;
3043 *space_info = found;
3044 list_add_rcu(&found->list, &info->space_info);
3045 atomic_set(&found->caching_threads, 0);
3046 return 0;
3049 static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3051 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
3052 BTRFS_BLOCK_GROUP_RAID1 |
3053 BTRFS_BLOCK_GROUP_RAID10 |
3054 BTRFS_BLOCK_GROUP_DUP);
3055 if (extra_flags) {
3056 if (flags & BTRFS_BLOCK_GROUP_DATA)
3057 fs_info->avail_data_alloc_bits |= extra_flags;
3058 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3059 fs_info->avail_metadata_alloc_bits |= extra_flags;
3060 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3061 fs_info->avail_system_alloc_bits |= extra_flags;
3065 u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
3068 * we add in the count of missing devices because we want
3069 * to make sure that any RAID levels on a degraded FS
3070 * continue to be honored.
3072 u64 num_devices = root->fs_info->fs_devices->rw_devices +
3073 root->fs_info->fs_devices->missing_devices;
3075 if (num_devices == 1)
3076 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0);
3077 if (num_devices < 4)
3078 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
3080 if ((flags & BTRFS_BLOCK_GROUP_DUP) &&
3081 (flags & (BTRFS_BLOCK_GROUP_RAID1 |
3082 BTRFS_BLOCK_GROUP_RAID10))) {
3083 flags &= ~BTRFS_BLOCK_GROUP_DUP;
3086 if ((flags & BTRFS_BLOCK_GROUP_RAID1) &&
3087 (flags & BTRFS_BLOCK_GROUP_RAID10)) {
3088 flags &= ~BTRFS_BLOCK_GROUP_RAID1;
3091 if ((flags & BTRFS_BLOCK_GROUP_RAID0) &&
3092 ((flags & BTRFS_BLOCK_GROUP_RAID1) |
3093 (flags & BTRFS_BLOCK_GROUP_RAID10) |
3094 (flags & BTRFS_BLOCK_GROUP_DUP)))
3095 flags &= ~BTRFS_BLOCK_GROUP_RAID0;
3096 return flags;
3099 static u64 get_alloc_profile(struct btrfs_root *root, u64 flags)
3101 if (flags & BTRFS_BLOCK_GROUP_DATA)
3102 flags |= root->fs_info->avail_data_alloc_bits &
3103 root->fs_info->data_alloc_profile;
3104 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3105 flags |= root->fs_info->avail_system_alloc_bits &
3106 root->fs_info->system_alloc_profile;
3107 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3108 flags |= root->fs_info->avail_metadata_alloc_bits &
3109 root->fs_info->metadata_alloc_profile;
3110 return btrfs_reduce_alloc_profile(root, flags);
3113 u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
3115 u64 flags;
3117 if (data)
3118 flags = BTRFS_BLOCK_GROUP_DATA;
3119 else if (root == root->fs_info->chunk_root)
3120 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3121 else
3122 flags = BTRFS_BLOCK_GROUP_METADATA;
3124 return get_alloc_profile(root, flags);
3127 void btrfs_set_inode_space_info(struct btrfs_root *root, struct inode *inode)
3129 BTRFS_I(inode)->space_info = __find_space_info(root->fs_info,
3130 BTRFS_BLOCK_GROUP_DATA);
3134 * This will check the space that the inode allocates from to make sure we have
3135 * enough space for bytes.
3137 int btrfs_check_data_free_space(struct inode *inode, u64 bytes)
3139 struct btrfs_space_info *data_sinfo;
3140 struct btrfs_root *root = BTRFS_I(inode)->root;
3141 u64 used;
3142 int ret = 0, committed = 0, alloc_chunk = 1;
3144 /* make sure bytes are sectorsize aligned */
3145 bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
3147 if (root == root->fs_info->tree_root) {
3148 alloc_chunk = 0;
3149 committed = 1;
3152 data_sinfo = BTRFS_I(inode)->space_info;
3153 if (!data_sinfo)
3154 goto alloc;
3156 again:
3157 /* make sure we have enough space to handle the data first */
3158 spin_lock(&data_sinfo->lock);
3159 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3160 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3161 data_sinfo->bytes_may_use;
3163 if (used + bytes > data_sinfo->total_bytes) {
3164 struct btrfs_trans_handle *trans;
3167 * if we don't have enough free bytes in this space then we need
3168 * to alloc a new chunk.
3170 if (!data_sinfo->full && alloc_chunk) {
3171 u64 alloc_target;
3173 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
3174 spin_unlock(&data_sinfo->lock);
3175 alloc:
3176 alloc_target = btrfs_get_alloc_profile(root, 1);
3177 trans = btrfs_join_transaction(root);
3178 if (IS_ERR(trans))
3179 return PTR_ERR(trans);
3181 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
3182 bytes + 2 * 1024 * 1024,
3183 alloc_target,
3184 CHUNK_ALLOC_NO_FORCE);
3185 btrfs_end_transaction(trans, root);
3186 if (ret < 0) {
3187 if (ret != -ENOSPC)
3188 return ret;
3189 else
3190 goto commit_trans;
3193 if (!data_sinfo) {
3194 btrfs_set_inode_space_info(root, inode);
3195 data_sinfo = BTRFS_I(inode)->space_info;
3197 goto again;
3199 spin_unlock(&data_sinfo->lock);
3201 /* commit the current transaction and try again */
3202 commit_trans:
3203 if (!committed &&
3204 !atomic_read(&root->fs_info->open_ioctl_trans)) {
3205 committed = 1;
3206 trans = btrfs_join_transaction(root);
3207 if (IS_ERR(trans))
3208 return PTR_ERR(trans);
3209 ret = btrfs_commit_transaction(trans, root);
3210 if (ret)
3211 return ret;
3212 goto again;
3215 #if 0 /* I hope we never need this code again, just in case */
3216 printk(KERN_ERR "no space left, need %llu, %llu bytes_used, "
3217 "%llu bytes_reserved, " "%llu bytes_pinned, "
3218 "%llu bytes_readonly, %llu may use %llu total\n",
3219 (unsigned long long)bytes,
3220 (unsigned long long)data_sinfo->bytes_used,
3221 (unsigned long long)data_sinfo->bytes_reserved,
3222 (unsigned long long)data_sinfo->bytes_pinned,
3223 (unsigned long long)data_sinfo->bytes_readonly,
3224 (unsigned long long)data_sinfo->bytes_may_use,
3225 (unsigned long long)data_sinfo->total_bytes);
3226 #endif
3227 return -ENOSPC;
3229 data_sinfo->bytes_may_use += bytes;
3230 BTRFS_I(inode)->reserved_bytes += bytes;
3231 spin_unlock(&data_sinfo->lock);
3233 return 0;
3237 * called when we are clearing an delalloc extent from the
3238 * inode's io_tree or there was an error for whatever reason
3239 * after calling btrfs_check_data_free_space
3241 void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
3243 struct btrfs_root *root = BTRFS_I(inode)->root;
3244 struct btrfs_space_info *data_sinfo;
3246 /* make sure bytes are sectorsize aligned */
3247 bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
3249 data_sinfo = BTRFS_I(inode)->space_info;
3250 spin_lock(&data_sinfo->lock);
3251 data_sinfo->bytes_may_use -= bytes;
3252 BTRFS_I(inode)->reserved_bytes -= bytes;
3253 spin_unlock(&data_sinfo->lock);
3256 static void force_metadata_allocation(struct btrfs_fs_info *info)
3258 struct list_head *head = &info->space_info;
3259 struct btrfs_space_info *found;
3261 rcu_read_lock();
3262 list_for_each_entry_rcu(found, head, list) {
3263 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
3264 found->force_alloc = CHUNK_ALLOC_FORCE;
3266 rcu_read_unlock();
3269 static int should_alloc_chunk(struct btrfs_root *root,
3270 struct btrfs_space_info *sinfo, u64 alloc_bytes,
3271 int force)
3273 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
3274 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
3275 u64 thresh;
3277 if (force == CHUNK_ALLOC_FORCE)
3278 return 1;
3281 * in limited mode, we want to have some free space up to
3282 * about 1% of the FS size.
3284 if (force == CHUNK_ALLOC_LIMITED) {
3285 thresh = btrfs_super_total_bytes(&root->fs_info->super_copy);
3286 thresh = max_t(u64, 64 * 1024 * 1024,
3287 div_factor_fine(thresh, 1));
3289 if (num_bytes - num_allocated < thresh)
3290 return 1;
3294 * we have two similar checks here, one based on percentage
3295 * and once based on a hard number of 256MB. The idea
3296 * is that if we have a good amount of free
3297 * room, don't allocate a chunk. A good mount is
3298 * less than 80% utilized of the chunks we have allocated,
3299 * or more than 256MB free
3301 if (num_allocated + alloc_bytes + 256 * 1024 * 1024 < num_bytes)
3302 return 0;
3304 if (num_allocated + alloc_bytes < div_factor(num_bytes, 8))
3305 return 0;
3307 thresh = btrfs_super_total_bytes(&root->fs_info->super_copy);
3309 /* 256MB or 5% of the FS */
3310 thresh = max_t(u64, 256 * 1024 * 1024, div_factor_fine(thresh, 5));
3312 if (num_bytes > thresh && sinfo->bytes_used < div_factor(num_bytes, 3))
3313 return 0;
3314 return 1;
3317 static int do_chunk_alloc(struct btrfs_trans_handle *trans,
3318 struct btrfs_root *extent_root, u64 alloc_bytes,
3319 u64 flags, int force)
3321 struct btrfs_space_info *space_info;
3322 struct btrfs_fs_info *fs_info = extent_root->fs_info;
3323 int wait_for_alloc = 0;
3324 int ret = 0;
3326 flags = btrfs_reduce_alloc_profile(extent_root, flags);
3328 space_info = __find_space_info(extent_root->fs_info, flags);
3329 if (!space_info) {
3330 ret = update_space_info(extent_root->fs_info, flags,
3331 0, 0, &space_info);
3332 BUG_ON(ret);
3334 BUG_ON(!space_info);
3336 again:
3337 spin_lock(&space_info->lock);
3338 if (space_info->force_alloc)
3339 force = space_info->force_alloc;
3340 if (space_info->full) {
3341 spin_unlock(&space_info->lock);
3342 return 0;
3345 if (!should_alloc_chunk(extent_root, space_info, alloc_bytes, force)) {
3346 spin_unlock(&space_info->lock);
3347 return 0;
3348 } else if (space_info->chunk_alloc) {
3349 wait_for_alloc = 1;
3350 } else {
3351 space_info->chunk_alloc = 1;
3354 spin_unlock(&space_info->lock);
3356 mutex_lock(&fs_info->chunk_mutex);
3359 * The chunk_mutex is held throughout the entirety of a chunk
3360 * allocation, so once we've acquired the chunk_mutex we know that the
3361 * other guy is done and we need to recheck and see if we should
3362 * allocate.
3364 if (wait_for_alloc) {
3365 mutex_unlock(&fs_info->chunk_mutex);
3366 wait_for_alloc = 0;
3367 goto again;
3371 * If we have mixed data/metadata chunks we want to make sure we keep
3372 * allocating mixed chunks instead of individual chunks.
3374 if (btrfs_mixed_space_info(space_info))
3375 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
3378 * if we're doing a data chunk, go ahead and make sure that
3379 * we keep a reasonable number of metadata chunks allocated in the
3380 * FS as well.
3382 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
3383 fs_info->data_chunk_allocations++;
3384 if (!(fs_info->data_chunk_allocations %
3385 fs_info->metadata_ratio))
3386 force_metadata_allocation(fs_info);
3389 ret = btrfs_alloc_chunk(trans, extent_root, flags);
3390 spin_lock(&space_info->lock);
3391 if (ret)
3392 space_info->full = 1;
3393 else
3394 ret = 1;
3396 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
3397 space_info->chunk_alloc = 0;
3398 spin_unlock(&space_info->lock);
3399 mutex_unlock(&extent_root->fs_info->chunk_mutex);
3400 return ret;
3404 * shrink metadata reservation for delalloc
3406 static int shrink_delalloc(struct btrfs_trans_handle *trans,
3407 struct btrfs_root *root, u64 to_reclaim, int sync)
3409 struct btrfs_block_rsv *block_rsv;
3410 struct btrfs_space_info *space_info;
3411 u64 reserved;
3412 u64 max_reclaim;
3413 u64 reclaimed = 0;
3414 long time_left;
3415 int nr_pages = (2 * 1024 * 1024) >> PAGE_CACHE_SHIFT;
3416 int loops = 0;
3417 unsigned long progress;
3419 block_rsv = &root->fs_info->delalloc_block_rsv;
3420 space_info = block_rsv->space_info;
3422 smp_mb();
3423 reserved = space_info->bytes_reserved;
3424 progress = space_info->reservation_progress;
3426 if (reserved == 0)
3427 return 0;
3429 max_reclaim = min(reserved, to_reclaim);
3431 while (loops < 1024) {
3432 /* have the flusher threads jump in and do some IO */
3433 smp_mb();
3434 nr_pages = min_t(unsigned long, nr_pages,
3435 root->fs_info->delalloc_bytes >> PAGE_CACHE_SHIFT);
3436 writeback_inodes_sb_nr_if_idle(root->fs_info->sb, nr_pages);
3438 spin_lock(&space_info->lock);
3439 if (reserved > space_info->bytes_reserved)
3440 reclaimed += reserved - space_info->bytes_reserved;
3441 reserved = space_info->bytes_reserved;
3442 spin_unlock(&space_info->lock);
3444 loops++;
3446 if (reserved == 0 || reclaimed >= max_reclaim)
3447 break;
3449 if (trans && trans->transaction->blocked)
3450 return -EAGAIN;
3452 time_left = schedule_timeout_interruptible(1);
3454 /* We were interrupted, exit */
3455 if (time_left)
3456 break;
3458 /* we've kicked the IO a few times, if anything has been freed,
3459 * exit. There is no sense in looping here for a long time
3460 * when we really need to commit the transaction, or there are
3461 * just too many writers without enough free space
3464 if (loops > 3) {
3465 smp_mb();
3466 if (progress != space_info->reservation_progress)
3467 break;
3471 return reclaimed >= to_reclaim;
3475 * Retries tells us how many times we've called reserve_metadata_bytes. The
3476 * idea is if this is the first call (retries == 0) then we will add to our
3477 * reserved count if we can't make the allocation in order to hold our place
3478 * while we go and try and free up space. That way for retries > 1 we don't try
3479 * and add space, we just check to see if the amount of unused space is >= the
3480 * total space, meaning that our reservation is valid.
3482 * However if we don't intend to retry this reservation, pass -1 as retries so
3483 * that it short circuits this logic.
3485 static int reserve_metadata_bytes(struct btrfs_trans_handle *trans,
3486 struct btrfs_root *root,
3487 struct btrfs_block_rsv *block_rsv,
3488 u64 orig_bytes, int flush)
3490 struct btrfs_space_info *space_info = block_rsv->space_info;
3491 u64 unused;
3492 u64 num_bytes = orig_bytes;
3493 int retries = 0;
3494 int ret = 0;
3495 bool reserved = false;
3496 bool committed = false;
3498 again:
3499 ret = -ENOSPC;
3500 if (reserved)
3501 num_bytes = 0;
3503 spin_lock(&space_info->lock);
3504 unused = space_info->bytes_used + space_info->bytes_reserved +
3505 space_info->bytes_pinned + space_info->bytes_readonly +
3506 space_info->bytes_may_use;
3509 * The idea here is that we've not already over-reserved the block group
3510 * then we can go ahead and save our reservation first and then start
3511 * flushing if we need to. Otherwise if we've already overcommitted
3512 * lets start flushing stuff first and then come back and try to make
3513 * our reservation.
3515 if (unused <= space_info->total_bytes) {
3516 unused = space_info->total_bytes - unused;
3517 if (unused >= num_bytes) {
3518 if (!reserved)
3519 space_info->bytes_reserved += orig_bytes;
3520 ret = 0;
3521 } else {
3523 * Ok set num_bytes to orig_bytes since we aren't
3524 * overocmmitted, this way we only try and reclaim what
3525 * we need.
3527 num_bytes = orig_bytes;
3529 } else {
3531 * Ok we're over committed, set num_bytes to the overcommitted
3532 * amount plus the amount of bytes that we need for this
3533 * reservation.
3535 num_bytes = unused - space_info->total_bytes +
3536 (orig_bytes * (retries + 1));
3540 * Couldn't make our reservation, save our place so while we're trying
3541 * to reclaim space we can actually use it instead of somebody else
3542 * stealing it from us.
3544 if (ret && !reserved) {
3545 space_info->bytes_reserved += orig_bytes;
3546 reserved = true;
3549 spin_unlock(&space_info->lock);
3551 if (!ret)
3552 return 0;
3554 if (!flush)
3555 goto out;
3558 * We do synchronous shrinking since we don't actually unreserve
3559 * metadata until after the IO is completed.
3561 ret = shrink_delalloc(trans, root, num_bytes, 1);
3562 if (ret > 0)
3563 return 0;
3564 else if (ret < 0)
3565 goto out;
3568 * So if we were overcommitted it's possible that somebody else flushed
3569 * out enough space and we simply didn't have enough space to reclaim,
3570 * so go back around and try again.
3572 if (retries < 2) {
3573 retries++;
3574 goto again;
3577 spin_lock(&space_info->lock);
3579 * Not enough space to be reclaimed, don't bother committing the
3580 * transaction.
3582 if (space_info->bytes_pinned < orig_bytes)
3583 ret = -ENOSPC;
3584 spin_unlock(&space_info->lock);
3585 if (ret)
3586 goto out;
3588 ret = -EAGAIN;
3589 if (trans || committed)
3590 goto out;
3592 ret = -ENOSPC;
3593 trans = btrfs_join_transaction(root);
3594 if (IS_ERR(trans))
3595 goto out;
3596 ret = btrfs_commit_transaction(trans, root);
3597 if (!ret) {
3598 trans = NULL;
3599 committed = true;
3600 goto again;
3603 out:
3604 if (reserved) {
3605 spin_lock(&space_info->lock);
3606 space_info->bytes_reserved -= orig_bytes;
3607 spin_unlock(&space_info->lock);
3610 return ret;
3613 static struct btrfs_block_rsv *get_block_rsv(struct btrfs_trans_handle *trans,
3614 struct btrfs_root *root)
3616 struct btrfs_block_rsv *block_rsv;
3617 if (root->ref_cows)
3618 block_rsv = trans->block_rsv;
3619 else
3620 block_rsv = root->block_rsv;
3622 if (!block_rsv)
3623 block_rsv = &root->fs_info->empty_block_rsv;
3625 return block_rsv;
3628 static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
3629 u64 num_bytes)
3631 int ret = -ENOSPC;
3632 spin_lock(&block_rsv->lock);
3633 if (block_rsv->reserved >= num_bytes) {
3634 block_rsv->reserved -= num_bytes;
3635 if (block_rsv->reserved < block_rsv->size)
3636 block_rsv->full = 0;
3637 ret = 0;
3639 spin_unlock(&block_rsv->lock);
3640 return ret;
3643 static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
3644 u64 num_bytes, int update_size)
3646 spin_lock(&block_rsv->lock);
3647 block_rsv->reserved += num_bytes;
3648 if (update_size)
3649 block_rsv->size += num_bytes;
3650 else if (block_rsv->reserved >= block_rsv->size)
3651 block_rsv->full = 1;
3652 spin_unlock(&block_rsv->lock);
3655 void block_rsv_release_bytes(struct btrfs_block_rsv *block_rsv,
3656 struct btrfs_block_rsv *dest, u64 num_bytes)
3658 struct btrfs_space_info *space_info = block_rsv->space_info;
3660 spin_lock(&block_rsv->lock);
3661 if (num_bytes == (u64)-1)
3662 num_bytes = block_rsv->size;
3663 block_rsv->size -= num_bytes;
3664 if (block_rsv->reserved >= block_rsv->size) {
3665 num_bytes = block_rsv->reserved - block_rsv->size;
3666 block_rsv->reserved = block_rsv->size;
3667 block_rsv->full = 1;
3668 } else {
3669 num_bytes = 0;
3671 spin_unlock(&block_rsv->lock);
3673 if (num_bytes > 0) {
3674 if (dest) {
3675 spin_lock(&dest->lock);
3676 if (!dest->full) {
3677 u64 bytes_to_add;
3679 bytes_to_add = dest->size - dest->reserved;
3680 bytes_to_add = min(num_bytes, bytes_to_add);
3681 dest->reserved += bytes_to_add;
3682 if (dest->reserved >= dest->size)
3683 dest->full = 1;
3684 num_bytes -= bytes_to_add;
3686 spin_unlock(&dest->lock);
3688 if (num_bytes) {
3689 spin_lock(&space_info->lock);
3690 space_info->bytes_reserved -= num_bytes;
3691 space_info->reservation_progress++;
3692 spin_unlock(&space_info->lock);
3697 static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
3698 struct btrfs_block_rsv *dst, u64 num_bytes)
3700 int ret;
3702 ret = block_rsv_use_bytes(src, num_bytes);
3703 if (ret)
3704 return ret;
3706 block_rsv_add_bytes(dst, num_bytes, 1);
3707 return 0;
3710 void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv)
3712 memset(rsv, 0, sizeof(*rsv));
3713 spin_lock_init(&rsv->lock);
3714 atomic_set(&rsv->usage, 1);
3715 rsv->priority = 6;
3716 INIT_LIST_HEAD(&rsv->list);
3719 struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root)
3721 struct btrfs_block_rsv *block_rsv;
3722 struct btrfs_fs_info *fs_info = root->fs_info;
3724 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
3725 if (!block_rsv)
3726 return NULL;
3728 btrfs_init_block_rsv(block_rsv);
3729 block_rsv->space_info = __find_space_info(fs_info,
3730 BTRFS_BLOCK_GROUP_METADATA);
3731 return block_rsv;
3734 void btrfs_free_block_rsv(struct btrfs_root *root,
3735 struct btrfs_block_rsv *rsv)
3737 if (rsv && atomic_dec_and_test(&rsv->usage)) {
3738 btrfs_block_rsv_release(root, rsv, (u64)-1);
3739 if (!rsv->durable)
3740 kfree(rsv);
3745 * make the block_rsv struct be able to capture freed space.
3746 * the captured space will re-add to the the block_rsv struct
3747 * after transaction commit
3749 void btrfs_add_durable_block_rsv(struct btrfs_fs_info *fs_info,
3750 struct btrfs_block_rsv *block_rsv)
3752 block_rsv->durable = 1;
3753 mutex_lock(&fs_info->durable_block_rsv_mutex);
3754 list_add_tail(&block_rsv->list, &fs_info->durable_block_rsv_list);
3755 mutex_unlock(&fs_info->durable_block_rsv_mutex);
3758 int btrfs_block_rsv_add(struct btrfs_trans_handle *trans,
3759 struct btrfs_root *root,
3760 struct btrfs_block_rsv *block_rsv,
3761 u64 num_bytes)
3763 int ret;
3765 if (num_bytes == 0)
3766 return 0;
3768 ret = reserve_metadata_bytes(trans, root, block_rsv, num_bytes, 1);
3769 if (!ret) {
3770 block_rsv_add_bytes(block_rsv, num_bytes, 1);
3771 return 0;
3774 return ret;
3777 int btrfs_block_rsv_check(struct btrfs_trans_handle *trans,
3778 struct btrfs_root *root,
3779 struct btrfs_block_rsv *block_rsv,
3780 u64 min_reserved, int min_factor)
3782 u64 num_bytes = 0;
3783 int commit_trans = 0;
3784 int ret = -ENOSPC;
3786 if (!block_rsv)
3787 return 0;
3789 spin_lock(&block_rsv->lock);
3790 if (min_factor > 0)
3791 num_bytes = div_factor(block_rsv->size, min_factor);
3792 if (min_reserved > num_bytes)
3793 num_bytes = min_reserved;
3795 if (block_rsv->reserved >= num_bytes) {
3796 ret = 0;
3797 } else {
3798 num_bytes -= block_rsv->reserved;
3799 if (block_rsv->durable &&
3800 block_rsv->freed[0] + block_rsv->freed[1] >= num_bytes)
3801 commit_trans = 1;
3803 spin_unlock(&block_rsv->lock);
3804 if (!ret)
3805 return 0;
3807 if (block_rsv->refill_used) {
3808 ret = reserve_metadata_bytes(trans, root, block_rsv,
3809 num_bytes, 0);
3810 if (!ret) {
3811 block_rsv_add_bytes(block_rsv, num_bytes, 0);
3812 return 0;
3816 if (commit_trans) {
3817 if (trans)
3818 return -EAGAIN;
3820 trans = btrfs_join_transaction(root);
3821 BUG_ON(IS_ERR(trans));
3822 ret = btrfs_commit_transaction(trans, root);
3823 return 0;
3826 return -ENOSPC;
3829 int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
3830 struct btrfs_block_rsv *dst_rsv,
3831 u64 num_bytes)
3833 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3836 void btrfs_block_rsv_release(struct btrfs_root *root,
3837 struct btrfs_block_rsv *block_rsv,
3838 u64 num_bytes)
3840 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
3841 if (global_rsv->full || global_rsv == block_rsv ||
3842 block_rsv->space_info != global_rsv->space_info)
3843 global_rsv = NULL;
3844 block_rsv_release_bytes(block_rsv, global_rsv, num_bytes);
3848 * helper to calculate size of global block reservation.
3849 * the desired value is sum of space used by extent tree,
3850 * checksum tree and root tree
3852 static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
3854 struct btrfs_space_info *sinfo;
3855 u64 num_bytes;
3856 u64 meta_used;
3857 u64 data_used;
3858 int csum_size = btrfs_super_csum_size(&fs_info->super_copy);
3859 #if 0
3861 * per tree used space accounting can be inaccuracy, so we
3862 * can't rely on it.
3864 spin_lock(&fs_info->extent_root->accounting_lock);
3865 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item);
3866 spin_unlock(&fs_info->extent_root->accounting_lock);
3868 spin_lock(&fs_info->csum_root->accounting_lock);
3869 num_bytes += btrfs_root_used(&fs_info->csum_root->root_item);
3870 spin_unlock(&fs_info->csum_root->accounting_lock);
3872 spin_lock(&fs_info->tree_root->accounting_lock);
3873 num_bytes += btrfs_root_used(&fs_info->tree_root->root_item);
3874 spin_unlock(&fs_info->tree_root->accounting_lock);
3875 #endif
3876 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
3877 spin_lock(&sinfo->lock);
3878 data_used = sinfo->bytes_used;
3879 spin_unlock(&sinfo->lock);
3881 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
3882 spin_lock(&sinfo->lock);
3883 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
3884 data_used = 0;
3885 meta_used = sinfo->bytes_used;
3886 spin_unlock(&sinfo->lock);
3888 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
3889 csum_size * 2;
3890 num_bytes += div64_u64(data_used + meta_used, 50);
3892 if (num_bytes * 3 > meta_used)
3893 num_bytes = div64_u64(meta_used, 3);
3895 return ALIGN(num_bytes, fs_info->extent_root->leafsize << 10);
3898 static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
3900 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
3901 struct btrfs_space_info *sinfo = block_rsv->space_info;
3902 u64 num_bytes;
3904 num_bytes = calc_global_metadata_size(fs_info);
3906 spin_lock(&block_rsv->lock);
3907 spin_lock(&sinfo->lock);
3909 block_rsv->size = num_bytes;
3911 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
3912 sinfo->bytes_reserved + sinfo->bytes_readonly +
3913 sinfo->bytes_may_use;
3915 if (sinfo->total_bytes > num_bytes) {
3916 num_bytes = sinfo->total_bytes - num_bytes;
3917 block_rsv->reserved += num_bytes;
3918 sinfo->bytes_reserved += num_bytes;
3921 if (block_rsv->reserved >= block_rsv->size) {
3922 num_bytes = block_rsv->reserved - block_rsv->size;
3923 sinfo->bytes_reserved -= num_bytes;
3924 sinfo->reservation_progress++;
3925 block_rsv->reserved = block_rsv->size;
3926 block_rsv->full = 1;
3928 #if 0
3929 printk(KERN_INFO"global block rsv size %llu reserved %llu\n",
3930 block_rsv->size, block_rsv->reserved);
3931 #endif
3932 spin_unlock(&sinfo->lock);
3933 spin_unlock(&block_rsv->lock);
3936 static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
3938 struct btrfs_space_info *space_info;
3940 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
3941 fs_info->chunk_block_rsv.space_info = space_info;
3942 fs_info->chunk_block_rsv.priority = 10;
3944 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
3945 fs_info->global_block_rsv.space_info = space_info;
3946 fs_info->global_block_rsv.priority = 10;
3947 fs_info->global_block_rsv.refill_used = 1;
3948 fs_info->delalloc_block_rsv.space_info = space_info;
3949 fs_info->trans_block_rsv.space_info = space_info;
3950 fs_info->empty_block_rsv.space_info = space_info;
3951 fs_info->empty_block_rsv.priority = 10;
3953 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
3954 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
3955 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
3956 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
3957 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
3959 btrfs_add_durable_block_rsv(fs_info, &fs_info->global_block_rsv);
3961 btrfs_add_durable_block_rsv(fs_info, &fs_info->delalloc_block_rsv);
3963 update_global_block_rsv(fs_info);
3966 static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
3968 block_rsv_release_bytes(&fs_info->global_block_rsv, NULL, (u64)-1);
3969 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
3970 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
3971 WARN_ON(fs_info->trans_block_rsv.size > 0);
3972 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
3973 WARN_ON(fs_info->chunk_block_rsv.size > 0);
3974 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
3977 static u64 calc_trans_metadata_size(struct btrfs_root *root, int num_items)
3979 return (root->leafsize + root->nodesize * (BTRFS_MAX_LEVEL - 1)) *
3980 3 * num_items;
3983 int btrfs_truncate_reserve_metadata(struct btrfs_trans_handle *trans,
3984 struct btrfs_root *root,
3985 struct btrfs_block_rsv *rsv)
3987 struct btrfs_block_rsv *trans_rsv = &root->fs_info->trans_block_rsv;
3988 u64 num_bytes;
3989 int ret;
3992 * Truncate should be freeing data, but give us 2 items just in case it
3993 * needs to use some space. We may want to be smarter about this in the
3994 * future.
3996 num_bytes = calc_trans_metadata_size(root, 2);
3998 /* We already have enough bytes, just return */
3999 if (rsv->reserved >= num_bytes)
4000 return 0;
4002 num_bytes -= rsv->reserved;
4005 * You should have reserved enough space before hand to do this, so this
4006 * should not fail.
4008 ret = block_rsv_migrate_bytes(trans_rsv, rsv, num_bytes);
4009 BUG_ON(ret);
4011 return 0;
4014 int btrfs_trans_reserve_metadata(struct btrfs_trans_handle *trans,
4015 struct btrfs_root *root,
4016 int num_items)
4018 u64 num_bytes;
4019 int ret;
4021 if (num_items == 0 || root->fs_info->chunk_root == root)
4022 return 0;
4024 num_bytes = calc_trans_metadata_size(root, num_items);
4025 ret = btrfs_block_rsv_add(trans, root, &root->fs_info->trans_block_rsv,
4026 num_bytes);
4027 if (!ret) {
4028 trans->bytes_reserved += num_bytes;
4029 trans->block_rsv = &root->fs_info->trans_block_rsv;
4031 return ret;
4034 void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
4035 struct btrfs_root *root)
4037 if (!trans->bytes_reserved)
4038 return;
4040 BUG_ON(trans->block_rsv != &root->fs_info->trans_block_rsv);
4041 btrfs_block_rsv_release(root, trans->block_rsv,
4042 trans->bytes_reserved);
4043 trans->bytes_reserved = 0;
4046 int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
4047 struct inode *inode)
4049 struct btrfs_root *root = BTRFS_I(inode)->root;
4050 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
4051 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
4054 * We need to hold space in order to delete our orphan item once we've
4055 * added it, so this takes the reservation so we can release it later
4056 * when we are truly done with the orphan item.
4058 u64 num_bytes = calc_trans_metadata_size(root, 1);
4059 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4062 void btrfs_orphan_release_metadata(struct inode *inode)
4064 struct btrfs_root *root = BTRFS_I(inode)->root;
4065 u64 num_bytes = calc_trans_metadata_size(root, 1);
4066 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
4069 int btrfs_snap_reserve_metadata(struct btrfs_trans_handle *trans,
4070 struct btrfs_pending_snapshot *pending)
4072 struct btrfs_root *root = pending->root;
4073 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
4074 struct btrfs_block_rsv *dst_rsv = &pending->block_rsv;
4076 * two for root back/forward refs, two for directory entries
4077 * and one for root of the snapshot.
4079 u64 num_bytes = calc_trans_metadata_size(root, 5);
4080 dst_rsv->space_info = src_rsv->space_info;
4081 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4084 static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes)
4086 return num_bytes >>= 3;
4089 int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
4091 struct btrfs_root *root = BTRFS_I(inode)->root;
4092 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
4093 u64 to_reserve;
4094 int nr_extents;
4095 int reserved_extents;
4096 int ret;
4098 if (btrfs_transaction_in_commit(root->fs_info))
4099 schedule_timeout(1);
4101 num_bytes = ALIGN(num_bytes, root->sectorsize);
4103 nr_extents = atomic_read(&BTRFS_I(inode)->outstanding_extents) + 1;
4104 reserved_extents = atomic_read(&BTRFS_I(inode)->reserved_extents);
4106 if (nr_extents > reserved_extents) {
4107 nr_extents -= reserved_extents;
4108 to_reserve = calc_trans_metadata_size(root, nr_extents);
4109 } else {
4110 nr_extents = 0;
4111 to_reserve = 0;
4114 to_reserve += calc_csum_metadata_size(inode, num_bytes);
4115 ret = reserve_metadata_bytes(NULL, root, block_rsv, to_reserve, 1);
4116 if (ret)
4117 return ret;
4119 atomic_add(nr_extents, &BTRFS_I(inode)->reserved_extents);
4120 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
4122 block_rsv_add_bytes(block_rsv, to_reserve, 1);
4124 if (block_rsv->size > 512 * 1024 * 1024)
4125 shrink_delalloc(NULL, root, to_reserve, 0);
4127 return 0;
4130 void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
4132 struct btrfs_root *root = BTRFS_I(inode)->root;
4133 u64 to_free;
4134 int nr_extents;
4135 int reserved_extents;
4137 num_bytes = ALIGN(num_bytes, root->sectorsize);
4138 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
4139 WARN_ON(atomic_read(&BTRFS_I(inode)->outstanding_extents) < 0);
4141 reserved_extents = atomic_read(&BTRFS_I(inode)->reserved_extents);
4142 do {
4143 int old, new;
4145 nr_extents = atomic_read(&BTRFS_I(inode)->outstanding_extents);
4146 if (nr_extents >= reserved_extents) {
4147 nr_extents = 0;
4148 break;
4150 old = reserved_extents;
4151 nr_extents = reserved_extents - nr_extents;
4152 new = reserved_extents - nr_extents;
4153 old = atomic_cmpxchg(&BTRFS_I(inode)->reserved_extents,
4154 reserved_extents, new);
4155 if (likely(old == reserved_extents))
4156 break;
4157 reserved_extents = old;
4158 } while (1);
4160 to_free = calc_csum_metadata_size(inode, num_bytes);
4161 if (nr_extents > 0)
4162 to_free += calc_trans_metadata_size(root, nr_extents);
4164 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
4165 to_free);
4168 int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
4170 int ret;
4172 ret = btrfs_check_data_free_space(inode, num_bytes);
4173 if (ret)
4174 return ret;
4176 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
4177 if (ret) {
4178 btrfs_free_reserved_data_space(inode, num_bytes);
4179 return ret;
4182 return 0;
4185 void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
4187 btrfs_delalloc_release_metadata(inode, num_bytes);
4188 btrfs_free_reserved_data_space(inode, num_bytes);
4191 static int update_block_group(struct btrfs_trans_handle *trans,
4192 struct btrfs_root *root,
4193 u64 bytenr, u64 num_bytes, int alloc)
4195 struct btrfs_block_group_cache *cache = NULL;
4196 struct btrfs_fs_info *info = root->fs_info;
4197 u64 total = num_bytes;
4198 u64 old_val;
4199 u64 byte_in_group;
4200 int factor;
4202 /* block accounting for super block */
4203 spin_lock(&info->delalloc_lock);
4204 old_val = btrfs_super_bytes_used(&info->super_copy);
4205 if (alloc)
4206 old_val += num_bytes;
4207 else
4208 old_val -= num_bytes;
4209 btrfs_set_super_bytes_used(&info->super_copy, old_val);
4210 spin_unlock(&info->delalloc_lock);
4212 while (total) {
4213 cache = btrfs_lookup_block_group(info, bytenr);
4214 if (!cache)
4215 return -1;
4216 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
4217 BTRFS_BLOCK_GROUP_RAID1 |
4218 BTRFS_BLOCK_GROUP_RAID10))
4219 factor = 2;
4220 else
4221 factor = 1;
4223 * If this block group has free space cache written out, we
4224 * need to make sure to load it if we are removing space. This
4225 * is because we need the unpinning stage to actually add the
4226 * space back to the block group, otherwise we will leak space.
4228 if (!alloc && cache->cached == BTRFS_CACHE_NO)
4229 cache_block_group(cache, trans, NULL, 1);
4231 byte_in_group = bytenr - cache->key.objectid;
4232 WARN_ON(byte_in_group > cache->key.offset);
4234 spin_lock(&cache->space_info->lock);
4235 spin_lock(&cache->lock);
4237 if (btrfs_super_cache_generation(&info->super_copy) != 0 &&
4238 cache->disk_cache_state < BTRFS_DC_CLEAR)
4239 cache->disk_cache_state = BTRFS_DC_CLEAR;
4241 cache->dirty = 1;
4242 old_val = btrfs_block_group_used(&cache->item);
4243 num_bytes = min(total, cache->key.offset - byte_in_group);
4244 if (alloc) {
4245 old_val += num_bytes;
4246 btrfs_set_block_group_used(&cache->item, old_val);
4247 cache->reserved -= num_bytes;
4248 cache->space_info->bytes_reserved -= num_bytes;
4249 cache->space_info->reservation_progress++;
4250 cache->space_info->bytes_used += num_bytes;
4251 cache->space_info->disk_used += num_bytes * factor;
4252 spin_unlock(&cache->lock);
4253 spin_unlock(&cache->space_info->lock);
4254 } else {
4255 old_val -= num_bytes;
4256 btrfs_set_block_group_used(&cache->item, old_val);
4257 cache->pinned += num_bytes;
4258 cache->space_info->bytes_pinned += num_bytes;
4259 cache->space_info->bytes_used -= num_bytes;
4260 cache->space_info->disk_used -= num_bytes * factor;
4261 spin_unlock(&cache->lock);
4262 spin_unlock(&cache->space_info->lock);
4264 set_extent_dirty(info->pinned_extents,
4265 bytenr, bytenr + num_bytes - 1,
4266 GFP_NOFS | __GFP_NOFAIL);
4268 btrfs_put_block_group(cache);
4269 total -= num_bytes;
4270 bytenr += num_bytes;
4272 return 0;
4275 static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
4277 struct btrfs_block_group_cache *cache;
4278 u64 bytenr;
4280 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
4281 if (!cache)
4282 return 0;
4284 bytenr = cache->key.objectid;
4285 btrfs_put_block_group(cache);
4287 return bytenr;
4290 static int pin_down_extent(struct btrfs_root *root,
4291 struct btrfs_block_group_cache *cache,
4292 u64 bytenr, u64 num_bytes, int reserved)
4294 spin_lock(&cache->space_info->lock);
4295 spin_lock(&cache->lock);
4296 cache->pinned += num_bytes;
4297 cache->space_info->bytes_pinned += num_bytes;
4298 if (reserved) {
4299 cache->reserved -= num_bytes;
4300 cache->space_info->bytes_reserved -= num_bytes;
4301 cache->space_info->reservation_progress++;
4303 spin_unlock(&cache->lock);
4304 spin_unlock(&cache->space_info->lock);
4306 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
4307 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
4308 return 0;
4312 * this function must be called within transaction
4314 int btrfs_pin_extent(struct btrfs_root *root,
4315 u64 bytenr, u64 num_bytes, int reserved)
4317 struct btrfs_block_group_cache *cache;
4319 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
4320 BUG_ON(!cache);
4322 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
4324 btrfs_put_block_group(cache);
4325 return 0;
4329 * update size of reserved extents. this function may return -EAGAIN
4330 * if 'reserve' is true or 'sinfo' is false.
4332 int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
4333 u64 num_bytes, int reserve, int sinfo)
4335 int ret = 0;
4336 if (sinfo) {
4337 struct btrfs_space_info *space_info = cache->space_info;
4338 spin_lock(&space_info->lock);
4339 spin_lock(&cache->lock);
4340 if (reserve) {
4341 if (cache->ro) {
4342 ret = -EAGAIN;
4343 } else {
4344 cache->reserved += num_bytes;
4345 space_info->bytes_reserved += num_bytes;
4347 } else {
4348 if (cache->ro)
4349 space_info->bytes_readonly += num_bytes;
4350 cache->reserved -= num_bytes;
4351 space_info->bytes_reserved -= num_bytes;
4352 space_info->reservation_progress++;
4354 spin_unlock(&cache->lock);
4355 spin_unlock(&space_info->lock);
4356 } else {
4357 spin_lock(&cache->lock);
4358 if (cache->ro) {
4359 ret = -EAGAIN;
4360 } else {
4361 if (reserve)
4362 cache->reserved += num_bytes;
4363 else
4364 cache->reserved -= num_bytes;
4366 spin_unlock(&cache->lock);
4368 return ret;
4371 int btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
4372 struct btrfs_root *root)
4374 struct btrfs_fs_info *fs_info = root->fs_info;
4375 struct btrfs_caching_control *next;
4376 struct btrfs_caching_control *caching_ctl;
4377 struct btrfs_block_group_cache *cache;
4379 down_write(&fs_info->extent_commit_sem);
4381 list_for_each_entry_safe(caching_ctl, next,
4382 &fs_info->caching_block_groups, list) {
4383 cache = caching_ctl->block_group;
4384 if (block_group_cache_done(cache)) {
4385 cache->last_byte_to_unpin = (u64)-1;
4386 list_del_init(&caching_ctl->list);
4387 put_caching_control(caching_ctl);
4388 } else {
4389 cache->last_byte_to_unpin = caching_ctl->progress;
4393 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
4394 fs_info->pinned_extents = &fs_info->freed_extents[1];
4395 else
4396 fs_info->pinned_extents = &fs_info->freed_extents[0];
4398 up_write(&fs_info->extent_commit_sem);
4400 update_global_block_rsv(fs_info);
4401 return 0;
4404 static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
4406 struct btrfs_fs_info *fs_info = root->fs_info;
4407 struct btrfs_block_group_cache *cache = NULL;
4408 u64 len;
4410 while (start <= end) {
4411 if (!cache ||
4412 start >= cache->key.objectid + cache->key.offset) {
4413 if (cache)
4414 btrfs_put_block_group(cache);
4415 cache = btrfs_lookup_block_group(fs_info, start);
4416 BUG_ON(!cache);
4419 len = cache->key.objectid + cache->key.offset - start;
4420 len = min(len, end + 1 - start);
4422 if (start < cache->last_byte_to_unpin) {
4423 len = min(len, cache->last_byte_to_unpin - start);
4424 btrfs_add_free_space(cache, start, len);
4427 start += len;
4429 spin_lock(&cache->space_info->lock);
4430 spin_lock(&cache->lock);
4431 cache->pinned -= len;
4432 cache->space_info->bytes_pinned -= len;
4433 if (cache->ro) {
4434 cache->space_info->bytes_readonly += len;
4435 } else if (cache->reserved_pinned > 0) {
4436 len = min(len, cache->reserved_pinned);
4437 cache->reserved_pinned -= len;
4438 cache->space_info->bytes_reserved += len;
4440 spin_unlock(&cache->lock);
4441 spin_unlock(&cache->space_info->lock);
4444 if (cache)
4445 btrfs_put_block_group(cache);
4446 return 0;
4449 int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
4450 struct btrfs_root *root)
4452 struct btrfs_fs_info *fs_info = root->fs_info;
4453 struct extent_io_tree *unpin;
4454 struct btrfs_block_rsv *block_rsv;
4455 struct btrfs_block_rsv *next_rsv;
4456 u64 start;
4457 u64 end;
4458 int idx;
4459 int ret;
4461 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
4462 unpin = &fs_info->freed_extents[1];
4463 else
4464 unpin = &fs_info->freed_extents[0];
4466 while (1) {
4467 ret = find_first_extent_bit(unpin, 0, &start, &end,
4468 EXTENT_DIRTY);
4469 if (ret)
4470 break;
4472 if (btrfs_test_opt(root, DISCARD))
4473 ret = btrfs_discard_extent(root, start,
4474 end + 1 - start, NULL);
4476 clear_extent_dirty(unpin, start, end, GFP_NOFS);
4477 unpin_extent_range(root, start, end);
4478 cond_resched();
4481 mutex_lock(&fs_info->durable_block_rsv_mutex);
4482 list_for_each_entry_safe(block_rsv, next_rsv,
4483 &fs_info->durable_block_rsv_list, list) {
4485 idx = trans->transid & 0x1;
4486 if (block_rsv->freed[idx] > 0) {
4487 block_rsv_add_bytes(block_rsv,
4488 block_rsv->freed[idx], 0);
4489 block_rsv->freed[idx] = 0;
4491 if (atomic_read(&block_rsv->usage) == 0) {
4492 btrfs_block_rsv_release(root, block_rsv, (u64)-1);
4494 if (block_rsv->freed[0] == 0 &&
4495 block_rsv->freed[1] == 0) {
4496 list_del_init(&block_rsv->list);
4497 kfree(block_rsv);
4499 } else {
4500 btrfs_block_rsv_release(root, block_rsv, 0);
4503 mutex_unlock(&fs_info->durable_block_rsv_mutex);
4505 return 0;
4508 static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
4509 struct btrfs_root *root,
4510 u64 bytenr, u64 num_bytes, u64 parent,
4511 u64 root_objectid, u64 owner_objectid,
4512 u64 owner_offset, int refs_to_drop,
4513 struct btrfs_delayed_extent_op *extent_op)
4515 struct btrfs_key key;
4516 struct btrfs_path *path;
4517 struct btrfs_fs_info *info = root->fs_info;
4518 struct btrfs_root *extent_root = info->extent_root;
4519 struct extent_buffer *leaf;
4520 struct btrfs_extent_item *ei;
4521 struct btrfs_extent_inline_ref *iref;
4522 int ret;
4523 int is_data;
4524 int extent_slot = 0;
4525 int found_extent = 0;
4526 int num_to_del = 1;
4527 u32 item_size;
4528 u64 refs;
4530 path = btrfs_alloc_path();
4531 if (!path)
4532 return -ENOMEM;
4534 path->reada = 1;
4535 path->leave_spinning = 1;
4537 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
4538 BUG_ON(!is_data && refs_to_drop != 1);
4540 ret = lookup_extent_backref(trans, extent_root, path, &iref,
4541 bytenr, num_bytes, parent,
4542 root_objectid, owner_objectid,
4543 owner_offset);
4544 if (ret == 0) {
4545 extent_slot = path->slots[0];
4546 while (extent_slot >= 0) {
4547 btrfs_item_key_to_cpu(path->nodes[0], &key,
4548 extent_slot);
4549 if (key.objectid != bytenr)
4550 break;
4551 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
4552 key.offset == num_bytes) {
4553 found_extent = 1;
4554 break;
4556 if (path->slots[0] - extent_slot > 5)
4557 break;
4558 extent_slot--;
4560 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4561 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
4562 if (found_extent && item_size < sizeof(*ei))
4563 found_extent = 0;
4564 #endif
4565 if (!found_extent) {
4566 BUG_ON(iref);
4567 ret = remove_extent_backref(trans, extent_root, path,
4568 NULL, refs_to_drop,
4569 is_data);
4570 BUG_ON(ret);
4571 btrfs_release_path(extent_root, path);
4572 path->leave_spinning = 1;
4574 key.objectid = bytenr;
4575 key.type = BTRFS_EXTENT_ITEM_KEY;
4576 key.offset = num_bytes;
4578 ret = btrfs_search_slot(trans, extent_root,
4579 &key, path, -1, 1);
4580 if (ret) {
4581 printk(KERN_ERR "umm, got %d back from search"
4582 ", was looking for %llu\n", ret,
4583 (unsigned long long)bytenr);
4584 btrfs_print_leaf(extent_root, path->nodes[0]);
4586 BUG_ON(ret);
4587 extent_slot = path->slots[0];
4589 } else {
4590 btrfs_print_leaf(extent_root, path->nodes[0]);
4591 WARN_ON(1);
4592 printk(KERN_ERR "btrfs unable to find ref byte nr %llu "
4593 "parent %llu root %llu owner %llu offset %llu\n",
4594 (unsigned long long)bytenr,
4595 (unsigned long long)parent,
4596 (unsigned long long)root_objectid,
4597 (unsigned long long)owner_objectid,
4598 (unsigned long long)owner_offset);
4601 leaf = path->nodes[0];
4602 item_size = btrfs_item_size_nr(leaf, extent_slot);
4603 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4604 if (item_size < sizeof(*ei)) {
4605 BUG_ON(found_extent || extent_slot != path->slots[0]);
4606 ret = convert_extent_item_v0(trans, extent_root, path,
4607 owner_objectid, 0);
4608 BUG_ON(ret < 0);
4610 btrfs_release_path(extent_root, path);
4611 path->leave_spinning = 1;
4613 key.objectid = bytenr;
4614 key.type = BTRFS_EXTENT_ITEM_KEY;
4615 key.offset = num_bytes;
4617 ret = btrfs_search_slot(trans, extent_root, &key, path,
4618 -1, 1);
4619 if (ret) {
4620 printk(KERN_ERR "umm, got %d back from search"
4621 ", was looking for %llu\n", ret,
4622 (unsigned long long)bytenr);
4623 btrfs_print_leaf(extent_root, path->nodes[0]);
4625 BUG_ON(ret);
4626 extent_slot = path->slots[0];
4627 leaf = path->nodes[0];
4628 item_size = btrfs_item_size_nr(leaf, extent_slot);
4630 #endif
4631 BUG_ON(item_size < sizeof(*ei));
4632 ei = btrfs_item_ptr(leaf, extent_slot,
4633 struct btrfs_extent_item);
4634 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID) {
4635 struct btrfs_tree_block_info *bi;
4636 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
4637 bi = (struct btrfs_tree_block_info *)(ei + 1);
4638 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
4641 refs = btrfs_extent_refs(leaf, ei);
4642 BUG_ON(refs < refs_to_drop);
4643 refs -= refs_to_drop;
4645 if (refs > 0) {
4646 if (extent_op)
4647 __run_delayed_extent_op(extent_op, leaf, ei);
4649 * In the case of inline back ref, reference count will
4650 * be updated by remove_extent_backref
4652 if (iref) {
4653 BUG_ON(!found_extent);
4654 } else {
4655 btrfs_set_extent_refs(leaf, ei, refs);
4656 btrfs_mark_buffer_dirty(leaf);
4658 if (found_extent) {
4659 ret = remove_extent_backref(trans, extent_root, path,
4660 iref, refs_to_drop,
4661 is_data);
4662 BUG_ON(ret);
4664 } else {
4665 if (found_extent) {
4666 BUG_ON(is_data && refs_to_drop !=
4667 extent_data_ref_count(root, path, iref));
4668 if (iref) {
4669 BUG_ON(path->slots[0] != extent_slot);
4670 } else {
4671 BUG_ON(path->slots[0] != extent_slot + 1);
4672 path->slots[0] = extent_slot;
4673 num_to_del = 2;
4677 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
4678 num_to_del);
4679 BUG_ON(ret);
4680 btrfs_release_path(extent_root, path);
4682 if (is_data) {
4683 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
4684 BUG_ON(ret);
4685 } else {
4686 invalidate_mapping_pages(info->btree_inode->i_mapping,
4687 bytenr >> PAGE_CACHE_SHIFT,
4688 (bytenr + num_bytes - 1) >> PAGE_CACHE_SHIFT);
4691 ret = update_block_group(trans, root, bytenr, num_bytes, 0);
4692 BUG_ON(ret);
4694 btrfs_free_path(path);
4695 return ret;
4699 * when we free an block, it is possible (and likely) that we free the last
4700 * delayed ref for that extent as well. This searches the delayed ref tree for
4701 * a given extent, and if there are no other delayed refs to be processed, it
4702 * removes it from the tree.
4704 static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
4705 struct btrfs_root *root, u64 bytenr)
4707 struct btrfs_delayed_ref_head *head;
4708 struct btrfs_delayed_ref_root *delayed_refs;
4709 struct btrfs_delayed_ref_node *ref;
4710 struct rb_node *node;
4711 int ret = 0;
4713 delayed_refs = &trans->transaction->delayed_refs;
4714 spin_lock(&delayed_refs->lock);
4715 head = btrfs_find_delayed_ref_head(trans, bytenr);
4716 if (!head)
4717 goto out;
4719 node = rb_prev(&head->node.rb_node);
4720 if (!node)
4721 goto out;
4723 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
4725 /* there are still entries for this ref, we can't drop it */
4726 if (ref->bytenr == bytenr)
4727 goto out;
4729 if (head->extent_op) {
4730 if (!head->must_insert_reserved)
4731 goto out;
4732 kfree(head->extent_op);
4733 head->extent_op = NULL;
4737 * waiting for the lock here would deadlock. If someone else has it
4738 * locked they are already in the process of dropping it anyway
4740 if (!mutex_trylock(&head->mutex))
4741 goto out;
4744 * at this point we have a head with no other entries. Go
4745 * ahead and process it.
4747 head->node.in_tree = 0;
4748 rb_erase(&head->node.rb_node, &delayed_refs->root);
4750 delayed_refs->num_entries--;
4753 * we don't take a ref on the node because we're removing it from the
4754 * tree, so we just steal the ref the tree was holding.
4756 delayed_refs->num_heads--;
4757 if (list_empty(&head->cluster))
4758 delayed_refs->num_heads_ready--;
4760 list_del_init(&head->cluster);
4761 spin_unlock(&delayed_refs->lock);
4763 BUG_ON(head->extent_op);
4764 if (head->must_insert_reserved)
4765 ret = 1;
4767 mutex_unlock(&head->mutex);
4768 btrfs_put_delayed_ref(&head->node);
4769 return ret;
4770 out:
4771 spin_unlock(&delayed_refs->lock);
4772 return 0;
4775 void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
4776 struct btrfs_root *root,
4777 struct extent_buffer *buf,
4778 u64 parent, int last_ref)
4780 struct btrfs_block_rsv *block_rsv;
4781 struct btrfs_block_group_cache *cache = NULL;
4782 int ret;
4784 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4785 ret = btrfs_add_delayed_tree_ref(trans, buf->start, buf->len,
4786 parent, root->root_key.objectid,
4787 btrfs_header_level(buf),
4788 BTRFS_DROP_DELAYED_REF, NULL);
4789 BUG_ON(ret);
4792 if (!last_ref)
4793 return;
4795 block_rsv = get_block_rsv(trans, root);
4796 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
4797 if (block_rsv->space_info != cache->space_info)
4798 goto out;
4800 if (btrfs_header_generation(buf) == trans->transid) {
4801 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4802 ret = check_ref_cleanup(trans, root, buf->start);
4803 if (!ret)
4804 goto pin;
4807 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
4808 pin_down_extent(root, cache, buf->start, buf->len, 1);
4809 goto pin;
4812 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
4814 btrfs_add_free_space(cache, buf->start, buf->len);
4815 ret = btrfs_update_reserved_bytes(cache, buf->len, 0, 0);
4816 if (ret == -EAGAIN) {
4817 /* block group became read-only */
4818 btrfs_update_reserved_bytes(cache, buf->len, 0, 1);
4819 goto out;
4822 ret = 1;
4823 spin_lock(&block_rsv->lock);
4824 if (block_rsv->reserved < block_rsv->size) {
4825 block_rsv->reserved += buf->len;
4826 ret = 0;
4828 spin_unlock(&block_rsv->lock);
4830 if (ret) {
4831 spin_lock(&cache->space_info->lock);
4832 cache->space_info->bytes_reserved -= buf->len;
4833 cache->space_info->reservation_progress++;
4834 spin_unlock(&cache->space_info->lock);
4836 goto out;
4838 pin:
4839 if (block_rsv->durable && !cache->ro) {
4840 ret = 0;
4841 spin_lock(&cache->lock);
4842 if (!cache->ro) {
4843 cache->reserved_pinned += buf->len;
4844 ret = 1;
4846 spin_unlock(&cache->lock);
4848 if (ret) {
4849 spin_lock(&block_rsv->lock);
4850 block_rsv->freed[trans->transid & 0x1] += buf->len;
4851 spin_unlock(&block_rsv->lock);
4854 out:
4856 * Deleting the buffer, clear the corrupt flag since it doesn't matter
4857 * anymore.
4859 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
4860 btrfs_put_block_group(cache);
4863 int btrfs_free_extent(struct btrfs_trans_handle *trans,
4864 struct btrfs_root *root,
4865 u64 bytenr, u64 num_bytes, u64 parent,
4866 u64 root_objectid, u64 owner, u64 offset)
4868 int ret;
4871 * tree log blocks never actually go into the extent allocation
4872 * tree, just update pinning info and exit early.
4874 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
4875 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
4876 /* unlocks the pinned mutex */
4877 btrfs_pin_extent(root, bytenr, num_bytes, 1);
4878 ret = 0;
4879 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
4880 ret = btrfs_add_delayed_tree_ref(trans, bytenr, num_bytes,
4881 parent, root_objectid, (int)owner,
4882 BTRFS_DROP_DELAYED_REF, NULL);
4883 BUG_ON(ret);
4884 } else {
4885 ret = btrfs_add_delayed_data_ref(trans, bytenr, num_bytes,
4886 parent, root_objectid, owner,
4887 offset, BTRFS_DROP_DELAYED_REF, NULL);
4888 BUG_ON(ret);
4890 return ret;
4893 static u64 stripe_align(struct btrfs_root *root, u64 val)
4895 u64 mask = ((u64)root->stripesize - 1);
4896 u64 ret = (val + mask) & ~mask;
4897 return ret;
4901 * when we wait for progress in the block group caching, its because
4902 * our allocation attempt failed at least once. So, we must sleep
4903 * and let some progress happen before we try again.
4905 * This function will sleep at least once waiting for new free space to
4906 * show up, and then it will check the block group free space numbers
4907 * for our min num_bytes. Another option is to have it go ahead
4908 * and look in the rbtree for a free extent of a given size, but this
4909 * is a good start.
4911 static noinline int
4912 wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
4913 u64 num_bytes)
4915 struct btrfs_caching_control *caching_ctl;
4916 DEFINE_WAIT(wait);
4918 caching_ctl = get_caching_control(cache);
4919 if (!caching_ctl)
4920 return 0;
4922 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
4923 (cache->free_space >= num_bytes));
4925 put_caching_control(caching_ctl);
4926 return 0;
4929 static noinline int
4930 wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
4932 struct btrfs_caching_control *caching_ctl;
4933 DEFINE_WAIT(wait);
4935 caching_ctl = get_caching_control(cache);
4936 if (!caching_ctl)
4937 return 0;
4939 wait_event(caching_ctl->wait, block_group_cache_done(cache));
4941 put_caching_control(caching_ctl);
4942 return 0;
4945 static int get_block_group_index(struct btrfs_block_group_cache *cache)
4947 int index;
4948 if (cache->flags & BTRFS_BLOCK_GROUP_RAID10)
4949 index = 0;
4950 else if (cache->flags & BTRFS_BLOCK_GROUP_RAID1)
4951 index = 1;
4952 else if (cache->flags & BTRFS_BLOCK_GROUP_DUP)
4953 index = 2;
4954 else if (cache->flags & BTRFS_BLOCK_GROUP_RAID0)
4955 index = 3;
4956 else
4957 index = 4;
4958 return index;
4961 enum btrfs_loop_type {
4962 LOOP_FIND_IDEAL = 0,
4963 LOOP_CACHING_NOWAIT = 1,
4964 LOOP_CACHING_WAIT = 2,
4965 LOOP_ALLOC_CHUNK = 3,
4966 LOOP_NO_EMPTY_SIZE = 4,
4970 * walks the btree of allocated extents and find a hole of a given size.
4971 * The key ins is changed to record the hole:
4972 * ins->objectid == block start
4973 * ins->flags = BTRFS_EXTENT_ITEM_KEY
4974 * ins->offset == number of blocks
4975 * Any available blocks before search_start are skipped.
4977 static noinline int find_free_extent(struct btrfs_trans_handle *trans,
4978 struct btrfs_root *orig_root,
4979 u64 num_bytes, u64 empty_size,
4980 u64 search_start, u64 search_end,
4981 u64 hint_byte, struct btrfs_key *ins,
4982 int data)
4984 int ret = 0;
4985 struct btrfs_root *root = orig_root->fs_info->extent_root;
4986 struct btrfs_free_cluster *last_ptr = NULL;
4987 struct btrfs_block_group_cache *block_group = NULL;
4988 int empty_cluster = 2 * 1024 * 1024;
4989 int allowed_chunk_alloc = 0;
4990 int done_chunk_alloc = 0;
4991 struct btrfs_space_info *space_info;
4992 int last_ptr_loop = 0;
4993 int loop = 0;
4994 int index = 0;
4995 bool found_uncached_bg = false;
4996 bool failed_cluster_refill = false;
4997 bool failed_alloc = false;
4998 bool use_cluster = true;
4999 u64 ideal_cache_percent = 0;
5000 u64 ideal_cache_offset = 0;
5002 WARN_ON(num_bytes < root->sectorsize);
5003 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
5004 ins->objectid = 0;
5005 ins->offset = 0;
5007 space_info = __find_space_info(root->fs_info, data);
5008 if (!space_info) {
5009 printk(KERN_ERR "No space info for %d\n", data);
5010 return -ENOSPC;
5014 * If the space info is for both data and metadata it means we have a
5015 * small filesystem and we can't use the clustering stuff.
5017 if (btrfs_mixed_space_info(space_info))
5018 use_cluster = false;
5020 if (orig_root->ref_cows || empty_size)
5021 allowed_chunk_alloc = 1;
5023 if (data & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
5024 last_ptr = &root->fs_info->meta_alloc_cluster;
5025 if (!btrfs_test_opt(root, SSD))
5026 empty_cluster = 64 * 1024;
5029 if ((data & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
5030 btrfs_test_opt(root, SSD)) {
5031 last_ptr = &root->fs_info->data_alloc_cluster;
5034 if (last_ptr) {
5035 spin_lock(&last_ptr->lock);
5036 if (last_ptr->block_group)
5037 hint_byte = last_ptr->window_start;
5038 spin_unlock(&last_ptr->lock);
5041 search_start = max(search_start, first_logical_byte(root, 0));
5042 search_start = max(search_start, hint_byte);
5044 if (!last_ptr)
5045 empty_cluster = 0;
5047 if (search_start == hint_byte) {
5048 ideal_cache:
5049 block_group = btrfs_lookup_block_group(root->fs_info,
5050 search_start);
5052 * we don't want to use the block group if it doesn't match our
5053 * allocation bits, or if its not cached.
5055 * However if we are re-searching with an ideal block group
5056 * picked out then we don't care that the block group is cached.
5058 if (block_group && block_group_bits(block_group, data) &&
5059 (block_group->cached != BTRFS_CACHE_NO ||
5060 search_start == ideal_cache_offset)) {
5061 down_read(&space_info->groups_sem);
5062 if (list_empty(&block_group->list) ||
5063 block_group->ro) {
5065 * someone is removing this block group,
5066 * we can't jump into the have_block_group
5067 * target because our list pointers are not
5068 * valid
5070 btrfs_put_block_group(block_group);
5071 up_read(&space_info->groups_sem);
5072 } else {
5073 index = get_block_group_index(block_group);
5074 goto have_block_group;
5076 } else if (block_group) {
5077 btrfs_put_block_group(block_group);
5080 search:
5081 down_read(&space_info->groups_sem);
5082 list_for_each_entry(block_group, &space_info->block_groups[index],
5083 list) {
5084 u64 offset;
5085 int cached;
5087 btrfs_get_block_group(block_group);
5088 search_start = block_group->key.objectid;
5091 * this can happen if we end up cycling through all the
5092 * raid types, but we want to make sure we only allocate
5093 * for the proper type.
5095 if (!block_group_bits(block_group, data)) {
5096 u64 extra = BTRFS_BLOCK_GROUP_DUP |
5097 BTRFS_BLOCK_GROUP_RAID1 |
5098 BTRFS_BLOCK_GROUP_RAID10;
5101 * if they asked for extra copies and this block group
5102 * doesn't provide them, bail. This does allow us to
5103 * fill raid0 from raid1.
5105 if ((data & extra) && !(block_group->flags & extra))
5106 goto loop;
5109 have_block_group:
5110 if (unlikely(block_group->cached == BTRFS_CACHE_NO)) {
5111 u64 free_percent;
5113 ret = cache_block_group(block_group, trans,
5114 orig_root, 1);
5115 if (block_group->cached == BTRFS_CACHE_FINISHED)
5116 goto have_block_group;
5118 free_percent = btrfs_block_group_used(&block_group->item);
5119 free_percent *= 100;
5120 free_percent = div64_u64(free_percent,
5121 block_group->key.offset);
5122 free_percent = 100 - free_percent;
5123 if (free_percent > ideal_cache_percent &&
5124 likely(!block_group->ro)) {
5125 ideal_cache_offset = block_group->key.objectid;
5126 ideal_cache_percent = free_percent;
5130 * We only want to start kthread caching if we are at
5131 * the point where we will wait for caching to make
5132 * progress, or if our ideal search is over and we've
5133 * found somebody to start caching.
5135 if (loop > LOOP_CACHING_NOWAIT ||
5136 (loop > LOOP_FIND_IDEAL &&
5137 atomic_read(&space_info->caching_threads) < 2)) {
5138 ret = cache_block_group(block_group, trans,
5139 orig_root, 0);
5140 BUG_ON(ret);
5142 found_uncached_bg = true;
5145 * If loop is set for cached only, try the next block
5146 * group.
5148 if (loop == LOOP_FIND_IDEAL)
5149 goto loop;
5152 cached = block_group_cache_done(block_group);
5153 if (unlikely(!cached))
5154 found_uncached_bg = true;
5156 if (unlikely(block_group->ro))
5157 goto loop;
5160 * Ok we want to try and use the cluster allocator, so lets look
5161 * there, unless we are on LOOP_NO_EMPTY_SIZE, since we will
5162 * have tried the cluster allocator plenty of times at this
5163 * point and not have found anything, so we are likely way too
5164 * fragmented for the clustering stuff to find anything, so lets
5165 * just skip it and let the allocator find whatever block it can
5166 * find
5168 if (last_ptr && loop < LOOP_NO_EMPTY_SIZE) {
5170 * the refill lock keeps out other
5171 * people trying to start a new cluster
5173 spin_lock(&last_ptr->refill_lock);
5174 if (last_ptr->block_group &&
5175 (last_ptr->block_group->ro ||
5176 !block_group_bits(last_ptr->block_group, data))) {
5177 offset = 0;
5178 goto refill_cluster;
5181 offset = btrfs_alloc_from_cluster(block_group, last_ptr,
5182 num_bytes, search_start);
5183 if (offset) {
5184 /* we have a block, we're done */
5185 spin_unlock(&last_ptr->refill_lock);
5186 goto checks;
5189 spin_lock(&last_ptr->lock);
5191 * whoops, this cluster doesn't actually point to
5192 * this block group. Get a ref on the block
5193 * group is does point to and try again
5195 if (!last_ptr_loop && last_ptr->block_group &&
5196 last_ptr->block_group != block_group) {
5198 btrfs_put_block_group(block_group);
5199 block_group = last_ptr->block_group;
5200 btrfs_get_block_group(block_group);
5201 spin_unlock(&last_ptr->lock);
5202 spin_unlock(&last_ptr->refill_lock);
5204 last_ptr_loop = 1;
5205 search_start = block_group->key.objectid;
5207 * we know this block group is properly
5208 * in the list because
5209 * btrfs_remove_block_group, drops the
5210 * cluster before it removes the block
5211 * group from the list
5213 goto have_block_group;
5215 spin_unlock(&last_ptr->lock);
5216 refill_cluster:
5218 * this cluster didn't work out, free it and
5219 * start over
5221 btrfs_return_cluster_to_free_space(NULL, last_ptr);
5223 last_ptr_loop = 0;
5225 /* allocate a cluster in this block group */
5226 ret = btrfs_find_space_cluster(trans, root,
5227 block_group, last_ptr,
5228 offset, num_bytes,
5229 empty_cluster + empty_size);
5230 if (ret == 0) {
5232 * now pull our allocation out of this
5233 * cluster
5235 offset = btrfs_alloc_from_cluster(block_group,
5236 last_ptr, num_bytes,
5237 search_start);
5238 if (offset) {
5239 /* we found one, proceed */
5240 spin_unlock(&last_ptr->refill_lock);
5241 goto checks;
5243 } else if (!cached && loop > LOOP_CACHING_NOWAIT
5244 && !failed_cluster_refill) {
5245 spin_unlock(&last_ptr->refill_lock);
5247 failed_cluster_refill = true;
5248 wait_block_group_cache_progress(block_group,
5249 num_bytes + empty_cluster + empty_size);
5250 goto have_block_group;
5254 * at this point we either didn't find a cluster
5255 * or we weren't able to allocate a block from our
5256 * cluster. Free the cluster we've been trying
5257 * to use, and go to the next block group
5259 btrfs_return_cluster_to_free_space(NULL, last_ptr);
5260 spin_unlock(&last_ptr->refill_lock);
5261 goto loop;
5264 offset = btrfs_find_space_for_alloc(block_group, search_start,
5265 num_bytes, empty_size);
5267 * If we didn't find a chunk, and we haven't failed on this
5268 * block group before, and this block group is in the middle of
5269 * caching and we are ok with waiting, then go ahead and wait
5270 * for progress to be made, and set failed_alloc to true.
5272 * If failed_alloc is true then we've already waited on this
5273 * block group once and should move on to the next block group.
5275 if (!offset && !failed_alloc && !cached &&
5276 loop > LOOP_CACHING_NOWAIT) {
5277 wait_block_group_cache_progress(block_group,
5278 num_bytes + empty_size);
5279 failed_alloc = true;
5280 goto have_block_group;
5281 } else if (!offset) {
5282 goto loop;
5284 checks:
5285 search_start = stripe_align(root, offset);
5286 /* move on to the next group */
5287 if (search_start + num_bytes >= search_end) {
5288 btrfs_add_free_space(block_group, offset, num_bytes);
5289 goto loop;
5292 /* move on to the next group */
5293 if (search_start + num_bytes >
5294 block_group->key.objectid + block_group->key.offset) {
5295 btrfs_add_free_space(block_group, offset, num_bytes);
5296 goto loop;
5299 ins->objectid = search_start;
5300 ins->offset = num_bytes;
5302 if (offset < search_start)
5303 btrfs_add_free_space(block_group, offset,
5304 search_start - offset);
5305 BUG_ON(offset > search_start);
5307 ret = btrfs_update_reserved_bytes(block_group, num_bytes, 1,
5308 (data & BTRFS_BLOCK_GROUP_DATA));
5309 if (ret == -EAGAIN) {
5310 btrfs_add_free_space(block_group, offset, num_bytes);
5311 goto loop;
5314 /* we are all good, lets return */
5315 ins->objectid = search_start;
5316 ins->offset = num_bytes;
5318 if (offset < search_start)
5319 btrfs_add_free_space(block_group, offset,
5320 search_start - offset);
5321 BUG_ON(offset > search_start);
5322 btrfs_put_block_group(block_group);
5323 break;
5324 loop:
5325 failed_cluster_refill = false;
5326 failed_alloc = false;
5327 BUG_ON(index != get_block_group_index(block_group));
5328 btrfs_put_block_group(block_group);
5330 up_read(&space_info->groups_sem);
5332 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
5333 goto search;
5335 /* LOOP_FIND_IDEAL, only search caching/cached bg's, and don't wait for
5336 * for them to make caching progress. Also
5337 * determine the best possible bg to cache
5338 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
5339 * caching kthreads as we move along
5340 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
5341 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
5342 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
5343 * again
5345 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE &&
5346 (found_uncached_bg || empty_size || empty_cluster ||
5347 allowed_chunk_alloc)) {
5348 index = 0;
5349 if (loop == LOOP_FIND_IDEAL && found_uncached_bg) {
5350 found_uncached_bg = false;
5351 loop++;
5352 if (!ideal_cache_percent &&
5353 atomic_read(&space_info->caching_threads))
5354 goto search;
5357 * 1 of the following 2 things have happened so far
5359 * 1) We found an ideal block group for caching that
5360 * is mostly full and will cache quickly, so we might
5361 * as well wait for it.
5363 * 2) We searched for cached only and we didn't find
5364 * anything, and we didn't start any caching kthreads
5365 * either, so chances are we will loop through and
5366 * start a couple caching kthreads, and then come back
5367 * around and just wait for them. This will be slower
5368 * because we will have 2 caching kthreads reading at
5369 * the same time when we could have just started one
5370 * and waited for it to get far enough to give us an
5371 * allocation, so go ahead and go to the wait caching
5372 * loop.
5374 loop = LOOP_CACHING_WAIT;
5375 search_start = ideal_cache_offset;
5376 ideal_cache_percent = 0;
5377 goto ideal_cache;
5378 } else if (loop == LOOP_FIND_IDEAL) {
5380 * Didn't find a uncached bg, wait on anything we find
5381 * next.
5383 loop = LOOP_CACHING_WAIT;
5384 goto search;
5387 if (loop < LOOP_CACHING_WAIT) {
5388 loop++;
5389 goto search;
5392 if (loop == LOOP_ALLOC_CHUNK) {
5393 empty_size = 0;
5394 empty_cluster = 0;
5397 if (allowed_chunk_alloc) {
5398 ret = do_chunk_alloc(trans, root, num_bytes +
5399 2 * 1024 * 1024, data,
5400 CHUNK_ALLOC_LIMITED);
5401 allowed_chunk_alloc = 0;
5402 done_chunk_alloc = 1;
5403 } else if (!done_chunk_alloc &&
5404 space_info->force_alloc == CHUNK_ALLOC_NO_FORCE) {
5405 space_info->force_alloc = CHUNK_ALLOC_LIMITED;
5408 if (loop < LOOP_NO_EMPTY_SIZE) {
5409 loop++;
5410 goto search;
5412 ret = -ENOSPC;
5413 } else if (!ins->objectid) {
5414 ret = -ENOSPC;
5415 } else if (ins->objectid) {
5416 ret = 0;
5419 return ret;
5422 static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
5423 int dump_block_groups)
5425 struct btrfs_block_group_cache *cache;
5426 int index = 0;
5428 spin_lock(&info->lock);
5429 printk(KERN_INFO "space_info has %llu free, is %sfull\n",
5430 (unsigned long long)(info->total_bytes - info->bytes_used -
5431 info->bytes_pinned - info->bytes_reserved -
5432 info->bytes_readonly),
5433 (info->full) ? "" : "not ");
5434 printk(KERN_INFO "space_info total=%llu, used=%llu, pinned=%llu, "
5435 "reserved=%llu, may_use=%llu, readonly=%llu\n",
5436 (unsigned long long)info->total_bytes,
5437 (unsigned long long)info->bytes_used,
5438 (unsigned long long)info->bytes_pinned,
5439 (unsigned long long)info->bytes_reserved,
5440 (unsigned long long)info->bytes_may_use,
5441 (unsigned long long)info->bytes_readonly);
5442 spin_unlock(&info->lock);
5444 if (!dump_block_groups)
5445 return;
5447 down_read(&info->groups_sem);
5448 again:
5449 list_for_each_entry(cache, &info->block_groups[index], list) {
5450 spin_lock(&cache->lock);
5451 printk(KERN_INFO "block group %llu has %llu bytes, %llu used "
5452 "%llu pinned %llu reserved\n",
5453 (unsigned long long)cache->key.objectid,
5454 (unsigned long long)cache->key.offset,
5455 (unsigned long long)btrfs_block_group_used(&cache->item),
5456 (unsigned long long)cache->pinned,
5457 (unsigned long long)cache->reserved);
5458 btrfs_dump_free_space(cache, bytes);
5459 spin_unlock(&cache->lock);
5461 if (++index < BTRFS_NR_RAID_TYPES)
5462 goto again;
5463 up_read(&info->groups_sem);
5466 int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
5467 struct btrfs_root *root,
5468 u64 num_bytes, u64 min_alloc_size,
5469 u64 empty_size, u64 hint_byte,
5470 u64 search_end, struct btrfs_key *ins,
5471 u64 data)
5473 int ret;
5474 u64 search_start = 0;
5476 data = btrfs_get_alloc_profile(root, data);
5477 again:
5479 * the only place that sets empty_size is btrfs_realloc_node, which
5480 * is not called recursively on allocations
5482 if (empty_size || root->ref_cows)
5483 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
5484 num_bytes + 2 * 1024 * 1024, data,
5485 CHUNK_ALLOC_NO_FORCE);
5487 WARN_ON(num_bytes < root->sectorsize);
5488 ret = find_free_extent(trans, root, num_bytes, empty_size,
5489 search_start, search_end, hint_byte,
5490 ins, data);
5492 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
5493 num_bytes = num_bytes >> 1;
5494 num_bytes = num_bytes & ~(root->sectorsize - 1);
5495 num_bytes = max(num_bytes, min_alloc_size);
5496 do_chunk_alloc(trans, root->fs_info->extent_root,
5497 num_bytes, data, CHUNK_ALLOC_FORCE);
5498 goto again;
5500 if (ret == -ENOSPC && btrfs_test_opt(root, ENOSPC_DEBUG)) {
5501 struct btrfs_space_info *sinfo;
5503 sinfo = __find_space_info(root->fs_info, data);
5504 printk(KERN_ERR "btrfs allocation failed flags %llu, "
5505 "wanted %llu\n", (unsigned long long)data,
5506 (unsigned long long)num_bytes);
5507 dump_space_info(sinfo, num_bytes, 1);
5510 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
5512 return ret;
5515 int btrfs_free_reserved_extent(struct btrfs_root *root, u64 start, u64 len)
5517 struct btrfs_block_group_cache *cache;
5518 int ret = 0;
5520 cache = btrfs_lookup_block_group(root->fs_info, start);
5521 if (!cache) {
5522 printk(KERN_ERR "Unable to find block group for %llu\n",
5523 (unsigned long long)start);
5524 return -ENOSPC;
5527 if (btrfs_test_opt(root, DISCARD))
5528 ret = btrfs_discard_extent(root, start, len, NULL);
5530 btrfs_add_free_space(cache, start, len);
5531 btrfs_update_reserved_bytes(cache, len, 0, 1);
5532 btrfs_put_block_group(cache);
5534 trace_btrfs_reserved_extent_free(root, start, len);
5536 return ret;
5539 static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5540 struct btrfs_root *root,
5541 u64 parent, u64 root_objectid,
5542 u64 flags, u64 owner, u64 offset,
5543 struct btrfs_key *ins, int ref_mod)
5545 int ret;
5546 struct btrfs_fs_info *fs_info = root->fs_info;
5547 struct btrfs_extent_item *extent_item;
5548 struct btrfs_extent_inline_ref *iref;
5549 struct btrfs_path *path;
5550 struct extent_buffer *leaf;
5551 int type;
5552 u32 size;
5554 if (parent > 0)
5555 type = BTRFS_SHARED_DATA_REF_KEY;
5556 else
5557 type = BTRFS_EXTENT_DATA_REF_KEY;
5559 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
5561 path = btrfs_alloc_path();
5562 if (!path)
5563 return -ENOMEM;
5565 path->leave_spinning = 1;
5566 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
5567 ins, size);
5568 BUG_ON(ret);
5570 leaf = path->nodes[0];
5571 extent_item = btrfs_item_ptr(leaf, path->slots[0],
5572 struct btrfs_extent_item);
5573 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
5574 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
5575 btrfs_set_extent_flags(leaf, extent_item,
5576 flags | BTRFS_EXTENT_FLAG_DATA);
5578 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
5579 btrfs_set_extent_inline_ref_type(leaf, iref, type);
5580 if (parent > 0) {
5581 struct btrfs_shared_data_ref *ref;
5582 ref = (struct btrfs_shared_data_ref *)(iref + 1);
5583 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
5584 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
5585 } else {
5586 struct btrfs_extent_data_ref *ref;
5587 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
5588 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
5589 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
5590 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
5591 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
5594 btrfs_mark_buffer_dirty(path->nodes[0]);
5595 btrfs_free_path(path);
5597 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
5598 if (ret) {
5599 printk(KERN_ERR "btrfs update block group failed for %llu "
5600 "%llu\n", (unsigned long long)ins->objectid,
5601 (unsigned long long)ins->offset);
5602 BUG();
5604 return ret;
5607 static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
5608 struct btrfs_root *root,
5609 u64 parent, u64 root_objectid,
5610 u64 flags, struct btrfs_disk_key *key,
5611 int level, struct btrfs_key *ins)
5613 int ret;
5614 struct btrfs_fs_info *fs_info = root->fs_info;
5615 struct btrfs_extent_item *extent_item;
5616 struct btrfs_tree_block_info *block_info;
5617 struct btrfs_extent_inline_ref *iref;
5618 struct btrfs_path *path;
5619 struct extent_buffer *leaf;
5620 u32 size = sizeof(*extent_item) + sizeof(*block_info) + sizeof(*iref);
5622 path = btrfs_alloc_path();
5623 BUG_ON(!path);
5625 path->leave_spinning = 1;
5626 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
5627 ins, size);
5628 BUG_ON(ret);
5630 leaf = path->nodes[0];
5631 extent_item = btrfs_item_ptr(leaf, path->slots[0],
5632 struct btrfs_extent_item);
5633 btrfs_set_extent_refs(leaf, extent_item, 1);
5634 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
5635 btrfs_set_extent_flags(leaf, extent_item,
5636 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
5637 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
5639 btrfs_set_tree_block_key(leaf, block_info, key);
5640 btrfs_set_tree_block_level(leaf, block_info, level);
5642 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
5643 if (parent > 0) {
5644 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
5645 btrfs_set_extent_inline_ref_type(leaf, iref,
5646 BTRFS_SHARED_BLOCK_REF_KEY);
5647 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
5648 } else {
5649 btrfs_set_extent_inline_ref_type(leaf, iref,
5650 BTRFS_TREE_BLOCK_REF_KEY);
5651 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
5654 btrfs_mark_buffer_dirty(leaf);
5655 btrfs_free_path(path);
5657 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
5658 if (ret) {
5659 printk(KERN_ERR "btrfs update block group failed for %llu "
5660 "%llu\n", (unsigned long long)ins->objectid,
5661 (unsigned long long)ins->offset);
5662 BUG();
5664 return ret;
5667 int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5668 struct btrfs_root *root,
5669 u64 root_objectid, u64 owner,
5670 u64 offset, struct btrfs_key *ins)
5672 int ret;
5674 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
5676 ret = btrfs_add_delayed_data_ref(trans, ins->objectid, ins->offset,
5677 0, root_objectid, owner, offset,
5678 BTRFS_ADD_DELAYED_EXTENT, NULL);
5679 return ret;
5683 * this is used by the tree logging recovery code. It records that
5684 * an extent has been allocated and makes sure to clear the free
5685 * space cache bits as well
5687 int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
5688 struct btrfs_root *root,
5689 u64 root_objectid, u64 owner, u64 offset,
5690 struct btrfs_key *ins)
5692 int ret;
5693 struct btrfs_block_group_cache *block_group;
5694 struct btrfs_caching_control *caching_ctl;
5695 u64 start = ins->objectid;
5696 u64 num_bytes = ins->offset;
5698 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
5699 cache_block_group(block_group, trans, NULL, 0);
5700 caching_ctl = get_caching_control(block_group);
5702 if (!caching_ctl) {
5703 BUG_ON(!block_group_cache_done(block_group));
5704 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5705 BUG_ON(ret);
5706 } else {
5707 mutex_lock(&caching_ctl->mutex);
5709 if (start >= caching_ctl->progress) {
5710 ret = add_excluded_extent(root, start, num_bytes);
5711 BUG_ON(ret);
5712 } else if (start + num_bytes <= caching_ctl->progress) {
5713 ret = btrfs_remove_free_space(block_group,
5714 start, num_bytes);
5715 BUG_ON(ret);
5716 } else {
5717 num_bytes = caching_ctl->progress - start;
5718 ret = btrfs_remove_free_space(block_group,
5719 start, num_bytes);
5720 BUG_ON(ret);
5722 start = caching_ctl->progress;
5723 num_bytes = ins->objectid + ins->offset -
5724 caching_ctl->progress;
5725 ret = add_excluded_extent(root, start, num_bytes);
5726 BUG_ON(ret);
5729 mutex_unlock(&caching_ctl->mutex);
5730 put_caching_control(caching_ctl);
5733 ret = btrfs_update_reserved_bytes(block_group, ins->offset, 1, 1);
5734 BUG_ON(ret);
5735 btrfs_put_block_group(block_group);
5736 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
5737 0, owner, offset, ins, 1);
5738 return ret;
5741 struct extent_buffer *btrfs_init_new_buffer(struct btrfs_trans_handle *trans,
5742 struct btrfs_root *root,
5743 u64 bytenr, u32 blocksize,
5744 int level)
5746 struct extent_buffer *buf;
5748 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
5749 if (!buf)
5750 return ERR_PTR(-ENOMEM);
5751 btrfs_set_header_generation(buf, trans->transid);
5752 btrfs_set_buffer_lockdep_class(buf, level);
5753 btrfs_tree_lock(buf);
5754 clean_tree_block(trans, root, buf);
5756 btrfs_set_lock_blocking(buf);
5757 btrfs_set_buffer_uptodate(buf);
5759 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
5761 * we allow two log transactions at a time, use different
5762 * EXENT bit to differentiate dirty pages.
5764 if (root->log_transid % 2 == 0)
5765 set_extent_dirty(&root->dirty_log_pages, buf->start,
5766 buf->start + buf->len - 1, GFP_NOFS);
5767 else
5768 set_extent_new(&root->dirty_log_pages, buf->start,
5769 buf->start + buf->len - 1, GFP_NOFS);
5770 } else {
5771 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
5772 buf->start + buf->len - 1, GFP_NOFS);
5774 trans->blocks_used++;
5775 /* this returns a buffer locked for blocking */
5776 return buf;
5779 static struct btrfs_block_rsv *
5780 use_block_rsv(struct btrfs_trans_handle *trans,
5781 struct btrfs_root *root, u32 blocksize)
5783 struct btrfs_block_rsv *block_rsv;
5784 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
5785 int ret;
5787 block_rsv = get_block_rsv(trans, root);
5789 if (block_rsv->size == 0) {
5790 ret = reserve_metadata_bytes(trans, root, block_rsv,
5791 blocksize, 0);
5793 * If we couldn't reserve metadata bytes try and use some from
5794 * the global reserve.
5796 if (ret && block_rsv != global_rsv) {
5797 ret = block_rsv_use_bytes(global_rsv, blocksize);
5798 if (!ret)
5799 return global_rsv;
5800 return ERR_PTR(ret);
5801 } else if (ret) {
5802 return ERR_PTR(ret);
5804 return block_rsv;
5807 ret = block_rsv_use_bytes(block_rsv, blocksize);
5808 if (!ret)
5809 return block_rsv;
5810 if (ret) {
5811 WARN_ON(1);
5812 ret = reserve_metadata_bytes(trans, root, block_rsv, blocksize,
5814 if (!ret) {
5815 spin_lock(&block_rsv->lock);
5816 block_rsv->size += blocksize;
5817 spin_unlock(&block_rsv->lock);
5818 return block_rsv;
5819 } else if (ret && block_rsv != global_rsv) {
5820 ret = block_rsv_use_bytes(global_rsv, blocksize);
5821 if (!ret)
5822 return global_rsv;
5826 return ERR_PTR(-ENOSPC);
5829 static void unuse_block_rsv(struct btrfs_block_rsv *block_rsv, u32 blocksize)
5831 block_rsv_add_bytes(block_rsv, blocksize, 0);
5832 block_rsv_release_bytes(block_rsv, NULL, 0);
5836 * finds a free extent and does all the dirty work required for allocation
5837 * returns the key for the extent through ins, and a tree buffer for
5838 * the first block of the extent through buf.
5840 * returns the tree buffer or NULL.
5842 struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
5843 struct btrfs_root *root, u32 blocksize,
5844 u64 parent, u64 root_objectid,
5845 struct btrfs_disk_key *key, int level,
5846 u64 hint, u64 empty_size)
5848 struct btrfs_key ins;
5849 struct btrfs_block_rsv *block_rsv;
5850 struct extent_buffer *buf;
5851 u64 flags = 0;
5852 int ret;
5855 block_rsv = use_block_rsv(trans, root, blocksize);
5856 if (IS_ERR(block_rsv))
5857 return ERR_CAST(block_rsv);
5859 ret = btrfs_reserve_extent(trans, root, blocksize, blocksize,
5860 empty_size, hint, (u64)-1, &ins, 0);
5861 if (ret) {
5862 unuse_block_rsv(block_rsv, blocksize);
5863 return ERR_PTR(ret);
5866 buf = btrfs_init_new_buffer(trans, root, ins.objectid,
5867 blocksize, level);
5868 BUG_ON(IS_ERR(buf));
5870 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
5871 if (parent == 0)
5872 parent = ins.objectid;
5873 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
5874 } else
5875 BUG_ON(parent > 0);
5877 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
5878 struct btrfs_delayed_extent_op *extent_op;
5879 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
5880 BUG_ON(!extent_op);
5881 if (key)
5882 memcpy(&extent_op->key, key, sizeof(extent_op->key));
5883 else
5884 memset(&extent_op->key, 0, sizeof(extent_op->key));
5885 extent_op->flags_to_set = flags;
5886 extent_op->update_key = 1;
5887 extent_op->update_flags = 1;
5888 extent_op->is_data = 0;
5890 ret = btrfs_add_delayed_tree_ref(trans, ins.objectid,
5891 ins.offset, parent, root_objectid,
5892 level, BTRFS_ADD_DELAYED_EXTENT,
5893 extent_op);
5894 BUG_ON(ret);
5896 return buf;
5899 struct walk_control {
5900 u64 refs[BTRFS_MAX_LEVEL];
5901 u64 flags[BTRFS_MAX_LEVEL];
5902 struct btrfs_key update_progress;
5903 int stage;
5904 int level;
5905 int shared_level;
5906 int update_ref;
5907 int keep_locks;
5908 int reada_slot;
5909 int reada_count;
5912 #define DROP_REFERENCE 1
5913 #define UPDATE_BACKREF 2
5915 static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
5916 struct btrfs_root *root,
5917 struct walk_control *wc,
5918 struct btrfs_path *path)
5920 u64 bytenr;
5921 u64 generation;
5922 u64 refs;
5923 u64 flags;
5924 u32 nritems;
5925 u32 blocksize;
5926 struct btrfs_key key;
5927 struct extent_buffer *eb;
5928 int ret;
5929 int slot;
5930 int nread = 0;
5932 if (path->slots[wc->level] < wc->reada_slot) {
5933 wc->reada_count = wc->reada_count * 2 / 3;
5934 wc->reada_count = max(wc->reada_count, 2);
5935 } else {
5936 wc->reada_count = wc->reada_count * 3 / 2;
5937 wc->reada_count = min_t(int, wc->reada_count,
5938 BTRFS_NODEPTRS_PER_BLOCK(root));
5941 eb = path->nodes[wc->level];
5942 nritems = btrfs_header_nritems(eb);
5943 blocksize = btrfs_level_size(root, wc->level - 1);
5945 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
5946 if (nread >= wc->reada_count)
5947 break;
5949 cond_resched();
5950 bytenr = btrfs_node_blockptr(eb, slot);
5951 generation = btrfs_node_ptr_generation(eb, slot);
5953 if (slot == path->slots[wc->level])
5954 goto reada;
5956 if (wc->stage == UPDATE_BACKREF &&
5957 generation <= root->root_key.offset)
5958 continue;
5960 /* We don't lock the tree block, it's OK to be racy here */
5961 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
5962 &refs, &flags);
5963 BUG_ON(ret);
5964 BUG_ON(refs == 0);
5966 if (wc->stage == DROP_REFERENCE) {
5967 if (refs == 1)
5968 goto reada;
5970 if (wc->level == 1 &&
5971 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5972 continue;
5973 if (!wc->update_ref ||
5974 generation <= root->root_key.offset)
5975 continue;
5976 btrfs_node_key_to_cpu(eb, &key, slot);
5977 ret = btrfs_comp_cpu_keys(&key,
5978 &wc->update_progress);
5979 if (ret < 0)
5980 continue;
5981 } else {
5982 if (wc->level == 1 &&
5983 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5984 continue;
5986 reada:
5987 ret = readahead_tree_block(root, bytenr, blocksize,
5988 generation);
5989 if (ret)
5990 break;
5991 nread++;
5993 wc->reada_slot = slot;
5997 * hepler to process tree block while walking down the tree.
5999 * when wc->stage == UPDATE_BACKREF, this function updates
6000 * back refs for pointers in the block.
6002 * NOTE: return value 1 means we should stop walking down.
6004 static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
6005 struct btrfs_root *root,
6006 struct btrfs_path *path,
6007 struct walk_control *wc, int lookup_info)
6009 int level = wc->level;
6010 struct extent_buffer *eb = path->nodes[level];
6011 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
6012 int ret;
6014 if (wc->stage == UPDATE_BACKREF &&
6015 btrfs_header_owner(eb) != root->root_key.objectid)
6016 return 1;
6019 * when reference count of tree block is 1, it won't increase
6020 * again. once full backref flag is set, we never clear it.
6022 if (lookup_info &&
6023 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
6024 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
6025 BUG_ON(!path->locks[level]);
6026 ret = btrfs_lookup_extent_info(trans, root,
6027 eb->start, eb->len,
6028 &wc->refs[level],
6029 &wc->flags[level]);
6030 BUG_ON(ret);
6031 BUG_ON(wc->refs[level] == 0);
6034 if (wc->stage == DROP_REFERENCE) {
6035 if (wc->refs[level] > 1)
6036 return 1;
6038 if (path->locks[level] && !wc->keep_locks) {
6039 btrfs_tree_unlock(eb);
6040 path->locks[level] = 0;
6042 return 0;
6045 /* wc->stage == UPDATE_BACKREF */
6046 if (!(wc->flags[level] & flag)) {
6047 BUG_ON(!path->locks[level]);
6048 ret = btrfs_inc_ref(trans, root, eb, 1);
6049 BUG_ON(ret);
6050 ret = btrfs_dec_ref(trans, root, eb, 0);
6051 BUG_ON(ret);
6052 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
6053 eb->len, flag, 0);
6054 BUG_ON(ret);
6055 wc->flags[level] |= flag;
6059 * the block is shared by multiple trees, so it's not good to
6060 * keep the tree lock
6062 if (path->locks[level] && level > 0) {
6063 btrfs_tree_unlock(eb);
6064 path->locks[level] = 0;
6066 return 0;
6070 * hepler to process tree block pointer.
6072 * when wc->stage == DROP_REFERENCE, this function checks
6073 * reference count of the block pointed to. if the block
6074 * is shared and we need update back refs for the subtree
6075 * rooted at the block, this function changes wc->stage to
6076 * UPDATE_BACKREF. if the block is shared and there is no
6077 * need to update back, this function drops the reference
6078 * to the block.
6080 * NOTE: return value 1 means we should stop walking down.
6082 static noinline int do_walk_down(struct btrfs_trans_handle *trans,
6083 struct btrfs_root *root,
6084 struct btrfs_path *path,
6085 struct walk_control *wc, int *lookup_info)
6087 u64 bytenr;
6088 u64 generation;
6089 u64 parent;
6090 u32 blocksize;
6091 struct btrfs_key key;
6092 struct extent_buffer *next;
6093 int level = wc->level;
6094 int reada = 0;
6095 int ret = 0;
6097 generation = btrfs_node_ptr_generation(path->nodes[level],
6098 path->slots[level]);
6100 * if the lower level block was created before the snapshot
6101 * was created, we know there is no need to update back refs
6102 * for the subtree
6104 if (wc->stage == UPDATE_BACKREF &&
6105 generation <= root->root_key.offset) {
6106 *lookup_info = 1;
6107 return 1;
6110 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
6111 blocksize = btrfs_level_size(root, level - 1);
6113 next = btrfs_find_tree_block(root, bytenr, blocksize);
6114 if (!next) {
6115 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
6116 if (!next)
6117 return -ENOMEM;
6118 reada = 1;
6120 btrfs_tree_lock(next);
6121 btrfs_set_lock_blocking(next);
6123 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
6124 &wc->refs[level - 1],
6125 &wc->flags[level - 1]);
6126 BUG_ON(ret);
6127 BUG_ON(wc->refs[level - 1] == 0);
6128 *lookup_info = 0;
6130 if (wc->stage == DROP_REFERENCE) {
6131 if (wc->refs[level - 1] > 1) {
6132 if (level == 1 &&
6133 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
6134 goto skip;
6136 if (!wc->update_ref ||
6137 generation <= root->root_key.offset)
6138 goto skip;
6140 btrfs_node_key_to_cpu(path->nodes[level], &key,
6141 path->slots[level]);
6142 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
6143 if (ret < 0)
6144 goto skip;
6146 wc->stage = UPDATE_BACKREF;
6147 wc->shared_level = level - 1;
6149 } else {
6150 if (level == 1 &&
6151 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
6152 goto skip;
6155 if (!btrfs_buffer_uptodate(next, generation)) {
6156 btrfs_tree_unlock(next);
6157 free_extent_buffer(next);
6158 next = NULL;
6159 *lookup_info = 1;
6162 if (!next) {
6163 if (reada && level == 1)
6164 reada_walk_down(trans, root, wc, path);
6165 next = read_tree_block(root, bytenr, blocksize, generation);
6166 if (!next)
6167 return -EIO;
6168 btrfs_tree_lock(next);
6169 btrfs_set_lock_blocking(next);
6172 level--;
6173 BUG_ON(level != btrfs_header_level(next));
6174 path->nodes[level] = next;
6175 path->slots[level] = 0;
6176 path->locks[level] = 1;
6177 wc->level = level;
6178 if (wc->level == 1)
6179 wc->reada_slot = 0;
6180 return 0;
6181 skip:
6182 wc->refs[level - 1] = 0;
6183 wc->flags[level - 1] = 0;
6184 if (wc->stage == DROP_REFERENCE) {
6185 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
6186 parent = path->nodes[level]->start;
6187 } else {
6188 BUG_ON(root->root_key.objectid !=
6189 btrfs_header_owner(path->nodes[level]));
6190 parent = 0;
6193 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
6194 root->root_key.objectid, level - 1, 0);
6195 BUG_ON(ret);
6197 btrfs_tree_unlock(next);
6198 free_extent_buffer(next);
6199 *lookup_info = 1;
6200 return 1;
6204 * hepler to process tree block while walking up the tree.
6206 * when wc->stage == DROP_REFERENCE, this function drops
6207 * reference count on the block.
6209 * when wc->stage == UPDATE_BACKREF, this function changes
6210 * wc->stage back to DROP_REFERENCE if we changed wc->stage
6211 * to UPDATE_BACKREF previously while processing the block.
6213 * NOTE: return value 1 means we should stop walking up.
6215 static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
6216 struct btrfs_root *root,
6217 struct btrfs_path *path,
6218 struct walk_control *wc)
6220 int ret;
6221 int level = wc->level;
6222 struct extent_buffer *eb = path->nodes[level];
6223 u64 parent = 0;
6225 if (wc->stage == UPDATE_BACKREF) {
6226 BUG_ON(wc->shared_level < level);
6227 if (level < wc->shared_level)
6228 goto out;
6230 ret = find_next_key(path, level + 1, &wc->update_progress);
6231 if (ret > 0)
6232 wc->update_ref = 0;
6234 wc->stage = DROP_REFERENCE;
6235 wc->shared_level = -1;
6236 path->slots[level] = 0;
6239 * check reference count again if the block isn't locked.
6240 * we should start walking down the tree again if reference
6241 * count is one.
6243 if (!path->locks[level]) {
6244 BUG_ON(level == 0);
6245 btrfs_tree_lock(eb);
6246 btrfs_set_lock_blocking(eb);
6247 path->locks[level] = 1;
6249 ret = btrfs_lookup_extent_info(trans, root,
6250 eb->start, eb->len,
6251 &wc->refs[level],
6252 &wc->flags[level]);
6253 BUG_ON(ret);
6254 BUG_ON(wc->refs[level] == 0);
6255 if (wc->refs[level] == 1) {
6256 btrfs_tree_unlock(eb);
6257 path->locks[level] = 0;
6258 return 1;
6263 /* wc->stage == DROP_REFERENCE */
6264 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
6266 if (wc->refs[level] == 1) {
6267 if (level == 0) {
6268 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6269 ret = btrfs_dec_ref(trans, root, eb, 1);
6270 else
6271 ret = btrfs_dec_ref(trans, root, eb, 0);
6272 BUG_ON(ret);
6274 /* make block locked assertion in clean_tree_block happy */
6275 if (!path->locks[level] &&
6276 btrfs_header_generation(eb) == trans->transid) {
6277 btrfs_tree_lock(eb);
6278 btrfs_set_lock_blocking(eb);
6279 path->locks[level] = 1;
6281 clean_tree_block(trans, root, eb);
6284 if (eb == root->node) {
6285 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6286 parent = eb->start;
6287 else
6288 BUG_ON(root->root_key.objectid !=
6289 btrfs_header_owner(eb));
6290 } else {
6291 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6292 parent = path->nodes[level + 1]->start;
6293 else
6294 BUG_ON(root->root_key.objectid !=
6295 btrfs_header_owner(path->nodes[level + 1]));
6298 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
6299 out:
6300 wc->refs[level] = 0;
6301 wc->flags[level] = 0;
6302 return 0;
6305 static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
6306 struct btrfs_root *root,
6307 struct btrfs_path *path,
6308 struct walk_control *wc)
6310 int level = wc->level;
6311 int lookup_info = 1;
6312 int ret;
6314 while (level >= 0) {
6315 ret = walk_down_proc(trans, root, path, wc, lookup_info);
6316 if (ret > 0)
6317 break;
6319 if (level == 0)
6320 break;
6322 if (path->slots[level] >=
6323 btrfs_header_nritems(path->nodes[level]))
6324 break;
6326 ret = do_walk_down(trans, root, path, wc, &lookup_info);
6327 if (ret > 0) {
6328 path->slots[level]++;
6329 continue;
6330 } else if (ret < 0)
6331 return ret;
6332 level = wc->level;
6334 return 0;
6337 static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
6338 struct btrfs_root *root,
6339 struct btrfs_path *path,
6340 struct walk_control *wc, int max_level)
6342 int level = wc->level;
6343 int ret;
6345 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
6346 while (level < max_level && path->nodes[level]) {
6347 wc->level = level;
6348 if (path->slots[level] + 1 <
6349 btrfs_header_nritems(path->nodes[level])) {
6350 path->slots[level]++;
6351 return 0;
6352 } else {
6353 ret = walk_up_proc(trans, root, path, wc);
6354 if (ret > 0)
6355 return 0;
6357 if (path->locks[level]) {
6358 btrfs_tree_unlock(path->nodes[level]);
6359 path->locks[level] = 0;
6361 free_extent_buffer(path->nodes[level]);
6362 path->nodes[level] = NULL;
6363 level++;
6366 return 1;
6370 * drop a subvolume tree.
6372 * this function traverses the tree freeing any blocks that only
6373 * referenced by the tree.
6375 * when a shared tree block is found. this function decreases its
6376 * reference count by one. if update_ref is true, this function
6377 * also make sure backrefs for the shared block and all lower level
6378 * blocks are properly updated.
6380 int btrfs_drop_snapshot(struct btrfs_root *root,
6381 struct btrfs_block_rsv *block_rsv, int update_ref)
6383 struct btrfs_path *path;
6384 struct btrfs_trans_handle *trans;
6385 struct btrfs_root *tree_root = root->fs_info->tree_root;
6386 struct btrfs_root_item *root_item = &root->root_item;
6387 struct walk_control *wc;
6388 struct btrfs_key key;
6389 int err = 0;
6390 int ret;
6391 int level;
6393 path = btrfs_alloc_path();
6394 BUG_ON(!path);
6396 wc = kzalloc(sizeof(*wc), GFP_NOFS);
6397 BUG_ON(!wc);
6399 trans = btrfs_start_transaction(tree_root, 0);
6400 BUG_ON(IS_ERR(trans));
6402 if (block_rsv)
6403 trans->block_rsv = block_rsv;
6405 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
6406 level = btrfs_header_level(root->node);
6407 path->nodes[level] = btrfs_lock_root_node(root);
6408 btrfs_set_lock_blocking(path->nodes[level]);
6409 path->slots[level] = 0;
6410 path->locks[level] = 1;
6411 memset(&wc->update_progress, 0,
6412 sizeof(wc->update_progress));
6413 } else {
6414 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
6415 memcpy(&wc->update_progress, &key,
6416 sizeof(wc->update_progress));
6418 level = root_item->drop_level;
6419 BUG_ON(level == 0);
6420 path->lowest_level = level;
6421 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6422 path->lowest_level = 0;
6423 if (ret < 0) {
6424 err = ret;
6425 goto out;
6427 WARN_ON(ret > 0);
6430 * unlock our path, this is safe because only this
6431 * function is allowed to delete this snapshot
6433 btrfs_unlock_up_safe(path, 0);
6435 level = btrfs_header_level(root->node);
6436 while (1) {
6437 btrfs_tree_lock(path->nodes[level]);
6438 btrfs_set_lock_blocking(path->nodes[level]);
6440 ret = btrfs_lookup_extent_info(trans, root,
6441 path->nodes[level]->start,
6442 path->nodes[level]->len,
6443 &wc->refs[level],
6444 &wc->flags[level]);
6445 BUG_ON(ret);
6446 BUG_ON(wc->refs[level] == 0);
6448 if (level == root_item->drop_level)
6449 break;
6451 btrfs_tree_unlock(path->nodes[level]);
6452 WARN_ON(wc->refs[level] != 1);
6453 level--;
6457 wc->level = level;
6458 wc->shared_level = -1;
6459 wc->stage = DROP_REFERENCE;
6460 wc->update_ref = update_ref;
6461 wc->keep_locks = 0;
6462 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
6464 while (1) {
6465 ret = walk_down_tree(trans, root, path, wc);
6466 if (ret < 0) {
6467 err = ret;
6468 break;
6471 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
6472 if (ret < 0) {
6473 err = ret;
6474 break;
6477 if (ret > 0) {
6478 BUG_ON(wc->stage != DROP_REFERENCE);
6479 break;
6482 if (wc->stage == DROP_REFERENCE) {
6483 level = wc->level;
6484 btrfs_node_key(path->nodes[level],
6485 &root_item->drop_progress,
6486 path->slots[level]);
6487 root_item->drop_level = level;
6490 BUG_ON(wc->level == 0);
6491 if (btrfs_should_end_transaction(trans, tree_root)) {
6492 ret = btrfs_update_root(trans, tree_root,
6493 &root->root_key,
6494 root_item);
6495 BUG_ON(ret);
6497 btrfs_end_transaction_throttle(trans, tree_root);
6498 trans = btrfs_start_transaction(tree_root, 0);
6499 BUG_ON(IS_ERR(trans));
6500 if (block_rsv)
6501 trans->block_rsv = block_rsv;
6504 btrfs_release_path(root, path);
6505 BUG_ON(err);
6507 ret = btrfs_del_root(trans, tree_root, &root->root_key);
6508 BUG_ON(ret);
6510 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
6511 ret = btrfs_find_last_root(tree_root, root->root_key.objectid,
6512 NULL, NULL);
6513 BUG_ON(ret < 0);
6514 if (ret > 0) {
6515 /* if we fail to delete the orphan item this time
6516 * around, it'll get picked up the next time.
6518 * The most common failure here is just -ENOENT.
6520 btrfs_del_orphan_item(trans, tree_root,
6521 root->root_key.objectid);
6525 if (root->in_radix) {
6526 btrfs_free_fs_root(tree_root->fs_info, root);
6527 } else {
6528 free_extent_buffer(root->node);
6529 free_extent_buffer(root->commit_root);
6530 kfree(root);
6532 out:
6533 btrfs_end_transaction_throttle(trans, tree_root);
6534 kfree(wc);
6535 btrfs_free_path(path);
6536 return err;
6540 * drop subtree rooted at tree block 'node'.
6542 * NOTE: this function will unlock and release tree block 'node'
6544 int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
6545 struct btrfs_root *root,
6546 struct extent_buffer *node,
6547 struct extent_buffer *parent)
6549 struct btrfs_path *path;
6550 struct walk_control *wc;
6551 int level;
6552 int parent_level;
6553 int ret = 0;
6554 int wret;
6556 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
6558 path = btrfs_alloc_path();
6559 if (!path)
6560 return -ENOMEM;
6562 wc = kzalloc(sizeof(*wc), GFP_NOFS);
6563 if (!wc) {
6564 btrfs_free_path(path);
6565 return -ENOMEM;
6568 btrfs_assert_tree_locked(parent);
6569 parent_level = btrfs_header_level(parent);
6570 extent_buffer_get(parent);
6571 path->nodes[parent_level] = parent;
6572 path->slots[parent_level] = btrfs_header_nritems(parent);
6574 btrfs_assert_tree_locked(node);
6575 level = btrfs_header_level(node);
6576 path->nodes[level] = node;
6577 path->slots[level] = 0;
6578 path->locks[level] = 1;
6580 wc->refs[parent_level] = 1;
6581 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
6582 wc->level = level;
6583 wc->shared_level = -1;
6584 wc->stage = DROP_REFERENCE;
6585 wc->update_ref = 0;
6586 wc->keep_locks = 1;
6587 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
6589 while (1) {
6590 wret = walk_down_tree(trans, root, path, wc);
6591 if (wret < 0) {
6592 ret = wret;
6593 break;
6596 wret = walk_up_tree(trans, root, path, wc, parent_level);
6597 if (wret < 0)
6598 ret = wret;
6599 if (wret != 0)
6600 break;
6603 kfree(wc);
6604 btrfs_free_path(path);
6605 return ret;
6608 #if 0
6609 static unsigned long calc_ra(unsigned long start, unsigned long last,
6610 unsigned long nr)
6612 return min(last, start + nr - 1);
6615 static noinline int relocate_inode_pages(struct inode *inode, u64 start,
6616 u64 len)
6618 u64 page_start;
6619 u64 page_end;
6620 unsigned long first_index;
6621 unsigned long last_index;
6622 unsigned long i;
6623 struct page *page;
6624 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6625 struct file_ra_state *ra;
6626 struct btrfs_ordered_extent *ordered;
6627 unsigned int total_read = 0;
6628 unsigned int total_dirty = 0;
6629 int ret = 0;
6631 ra = kzalloc(sizeof(*ra), GFP_NOFS);
6632 if (!ra)
6633 return -ENOMEM;
6635 mutex_lock(&inode->i_mutex);
6636 first_index = start >> PAGE_CACHE_SHIFT;
6637 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
6639 /* make sure the dirty trick played by the caller work */
6640 ret = invalidate_inode_pages2_range(inode->i_mapping,
6641 first_index, last_index);
6642 if (ret)
6643 goto out_unlock;
6645 file_ra_state_init(ra, inode->i_mapping);
6647 for (i = first_index ; i <= last_index; i++) {
6648 if (total_read % ra->ra_pages == 0) {
6649 btrfs_force_ra(inode->i_mapping, ra, NULL, i,
6650 calc_ra(i, last_index, ra->ra_pages));
6652 total_read++;
6653 again:
6654 if (((u64)i << PAGE_CACHE_SHIFT) > i_size_read(inode))
6655 BUG_ON(1);
6656 page = grab_cache_page(inode->i_mapping, i);
6657 if (!page) {
6658 ret = -ENOMEM;
6659 goto out_unlock;
6661 if (!PageUptodate(page)) {
6662 btrfs_readpage(NULL, page);
6663 lock_page(page);
6664 if (!PageUptodate(page)) {
6665 unlock_page(page);
6666 page_cache_release(page);
6667 ret = -EIO;
6668 goto out_unlock;
6671 wait_on_page_writeback(page);
6673 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
6674 page_end = page_start + PAGE_CACHE_SIZE - 1;
6675 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
6677 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6678 if (ordered) {
6679 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
6680 unlock_page(page);
6681 page_cache_release(page);
6682 btrfs_start_ordered_extent(inode, ordered, 1);
6683 btrfs_put_ordered_extent(ordered);
6684 goto again;
6686 set_page_extent_mapped(page);
6688 if (i == first_index)
6689 set_extent_bits(io_tree, page_start, page_end,
6690 EXTENT_BOUNDARY, GFP_NOFS);
6691 btrfs_set_extent_delalloc(inode, page_start, page_end);
6693 set_page_dirty(page);
6694 total_dirty++;
6696 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
6697 unlock_page(page);
6698 page_cache_release(page);
6701 out_unlock:
6702 kfree(ra);
6703 mutex_unlock(&inode->i_mutex);
6704 balance_dirty_pages_ratelimited_nr(inode->i_mapping, total_dirty);
6705 return ret;
6708 static noinline int relocate_data_extent(struct inode *reloc_inode,
6709 struct btrfs_key *extent_key,
6710 u64 offset)
6712 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
6713 struct extent_map_tree *em_tree = &BTRFS_I(reloc_inode)->extent_tree;
6714 struct extent_map *em;
6715 u64 start = extent_key->objectid - offset;
6716 u64 end = start + extent_key->offset - 1;
6718 em = alloc_extent_map(GFP_NOFS);
6719 BUG_ON(!em);
6721 em->start = start;
6722 em->len = extent_key->offset;
6723 em->block_len = extent_key->offset;
6724 em->block_start = extent_key->objectid;
6725 em->bdev = root->fs_info->fs_devices->latest_bdev;
6726 set_bit(EXTENT_FLAG_PINNED, &em->flags);
6728 /* setup extent map to cheat btrfs_readpage */
6729 lock_extent(&BTRFS_I(reloc_inode)->io_tree, start, end, GFP_NOFS);
6730 while (1) {
6731 int ret;
6732 write_lock(&em_tree->lock);
6733 ret = add_extent_mapping(em_tree, em);
6734 write_unlock(&em_tree->lock);
6735 if (ret != -EEXIST) {
6736 free_extent_map(em);
6737 break;
6739 btrfs_drop_extent_cache(reloc_inode, start, end, 0);
6741 unlock_extent(&BTRFS_I(reloc_inode)->io_tree, start, end, GFP_NOFS);
6743 return relocate_inode_pages(reloc_inode, start, extent_key->offset);
6746 struct btrfs_ref_path {
6747 u64 extent_start;
6748 u64 nodes[BTRFS_MAX_LEVEL];
6749 u64 root_objectid;
6750 u64 root_generation;
6751 u64 owner_objectid;
6752 u32 num_refs;
6753 int lowest_level;
6754 int current_level;
6755 int shared_level;
6757 struct btrfs_key node_keys[BTRFS_MAX_LEVEL];
6758 u64 new_nodes[BTRFS_MAX_LEVEL];
6761 struct disk_extent {
6762 u64 ram_bytes;
6763 u64 disk_bytenr;
6764 u64 disk_num_bytes;
6765 u64 offset;
6766 u64 num_bytes;
6767 u8 compression;
6768 u8 encryption;
6769 u16 other_encoding;
6772 static int is_cowonly_root(u64 root_objectid)
6774 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID ||
6775 root_objectid == BTRFS_EXTENT_TREE_OBJECTID ||
6776 root_objectid == BTRFS_CHUNK_TREE_OBJECTID ||
6777 root_objectid == BTRFS_DEV_TREE_OBJECTID ||
6778 root_objectid == BTRFS_TREE_LOG_OBJECTID ||
6779 root_objectid == BTRFS_CSUM_TREE_OBJECTID)
6780 return 1;
6781 return 0;
6784 static noinline int __next_ref_path(struct btrfs_trans_handle *trans,
6785 struct btrfs_root *extent_root,
6786 struct btrfs_ref_path *ref_path,
6787 int first_time)
6789 struct extent_buffer *leaf;
6790 struct btrfs_path *path;
6791 struct btrfs_extent_ref *ref;
6792 struct btrfs_key key;
6793 struct btrfs_key found_key;
6794 u64 bytenr;
6795 u32 nritems;
6796 int level;
6797 int ret = 1;
6799 path = btrfs_alloc_path();
6800 if (!path)
6801 return -ENOMEM;
6803 if (first_time) {
6804 ref_path->lowest_level = -1;
6805 ref_path->current_level = -1;
6806 ref_path->shared_level = -1;
6807 goto walk_up;
6809 walk_down:
6810 level = ref_path->current_level - 1;
6811 while (level >= -1) {
6812 u64 parent;
6813 if (level < ref_path->lowest_level)
6814 break;
6816 if (level >= 0)
6817 bytenr = ref_path->nodes[level];
6818 else
6819 bytenr = ref_path->extent_start;
6820 BUG_ON(bytenr == 0);
6822 parent = ref_path->nodes[level + 1];
6823 ref_path->nodes[level + 1] = 0;
6824 ref_path->current_level = level;
6825 BUG_ON(parent == 0);
6827 key.objectid = bytenr;
6828 key.offset = parent + 1;
6829 key.type = BTRFS_EXTENT_REF_KEY;
6831 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 0);
6832 if (ret < 0)
6833 goto out;
6834 BUG_ON(ret == 0);
6836 leaf = path->nodes[0];
6837 nritems = btrfs_header_nritems(leaf);
6838 if (path->slots[0] >= nritems) {
6839 ret = btrfs_next_leaf(extent_root, path);
6840 if (ret < 0)
6841 goto out;
6842 if (ret > 0)
6843 goto next;
6844 leaf = path->nodes[0];
6847 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6848 if (found_key.objectid == bytenr &&
6849 found_key.type == BTRFS_EXTENT_REF_KEY) {
6850 if (level < ref_path->shared_level)
6851 ref_path->shared_level = level;
6852 goto found;
6854 next:
6855 level--;
6856 btrfs_release_path(extent_root, path);
6857 cond_resched();
6859 /* reached lowest level */
6860 ret = 1;
6861 goto out;
6862 walk_up:
6863 level = ref_path->current_level;
6864 while (level < BTRFS_MAX_LEVEL - 1) {
6865 u64 ref_objectid;
6867 if (level >= 0)
6868 bytenr = ref_path->nodes[level];
6869 else
6870 bytenr = ref_path->extent_start;
6872 BUG_ON(bytenr == 0);
6874 key.objectid = bytenr;
6875 key.offset = 0;
6876 key.type = BTRFS_EXTENT_REF_KEY;
6878 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 0);
6879 if (ret < 0)
6880 goto out;
6882 leaf = path->nodes[0];
6883 nritems = btrfs_header_nritems(leaf);
6884 if (path->slots[0] >= nritems) {
6885 ret = btrfs_next_leaf(extent_root, path);
6886 if (ret < 0)
6887 goto out;
6888 if (ret > 0) {
6889 /* the extent was freed by someone */
6890 if (ref_path->lowest_level == level)
6891 goto out;
6892 btrfs_release_path(extent_root, path);
6893 goto walk_down;
6895 leaf = path->nodes[0];
6898 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6899 if (found_key.objectid != bytenr ||
6900 found_key.type != BTRFS_EXTENT_REF_KEY) {
6901 /* the extent was freed by someone */
6902 if (ref_path->lowest_level == level) {
6903 ret = 1;
6904 goto out;
6906 btrfs_release_path(extent_root, path);
6907 goto walk_down;
6909 found:
6910 ref = btrfs_item_ptr(leaf, path->slots[0],
6911 struct btrfs_extent_ref);
6912 ref_objectid = btrfs_ref_objectid(leaf, ref);
6913 if (ref_objectid < BTRFS_FIRST_FREE_OBJECTID) {
6914 if (first_time) {
6915 level = (int)ref_objectid;
6916 BUG_ON(level >= BTRFS_MAX_LEVEL);
6917 ref_path->lowest_level = level;
6918 ref_path->current_level = level;
6919 ref_path->nodes[level] = bytenr;
6920 } else {
6921 WARN_ON(ref_objectid != level);
6923 } else {
6924 WARN_ON(level != -1);
6926 first_time = 0;
6928 if (ref_path->lowest_level == level) {
6929 ref_path->owner_objectid = ref_objectid;
6930 ref_path->num_refs = btrfs_ref_num_refs(leaf, ref);
6934 * the block is tree root or the block isn't in reference
6935 * counted tree.
6937 if (found_key.objectid == found_key.offset ||
6938 is_cowonly_root(btrfs_ref_root(leaf, ref))) {
6939 ref_path->root_objectid = btrfs_ref_root(leaf, ref);
6940 ref_path->root_generation =
6941 btrfs_ref_generation(leaf, ref);
6942 if (level < 0) {
6943 /* special reference from the tree log */
6944 ref_path->nodes[0] = found_key.offset;
6945 ref_path->current_level = 0;
6947 ret = 0;
6948 goto out;
6951 level++;
6952 BUG_ON(ref_path->nodes[level] != 0);
6953 ref_path->nodes[level] = found_key.offset;
6954 ref_path->current_level = level;
6957 * the reference was created in the running transaction,
6958 * no need to continue walking up.
6960 if (btrfs_ref_generation(leaf, ref) == trans->transid) {
6961 ref_path->root_objectid = btrfs_ref_root(leaf, ref);
6962 ref_path->root_generation =
6963 btrfs_ref_generation(leaf, ref);
6964 ret = 0;
6965 goto out;
6968 btrfs_release_path(extent_root, path);
6969 cond_resched();
6971 /* reached max tree level, but no tree root found. */
6972 BUG();
6973 out:
6974 btrfs_free_path(path);
6975 return ret;
6978 static int btrfs_first_ref_path(struct btrfs_trans_handle *trans,
6979 struct btrfs_root *extent_root,
6980 struct btrfs_ref_path *ref_path,
6981 u64 extent_start)
6983 memset(ref_path, 0, sizeof(*ref_path));
6984 ref_path->extent_start = extent_start;
6986 return __next_ref_path(trans, extent_root, ref_path, 1);
6989 static int btrfs_next_ref_path(struct btrfs_trans_handle *trans,
6990 struct btrfs_root *extent_root,
6991 struct btrfs_ref_path *ref_path)
6993 return __next_ref_path(trans, extent_root, ref_path, 0);
6996 static noinline int get_new_locations(struct inode *reloc_inode,
6997 struct btrfs_key *extent_key,
6998 u64 offset, int no_fragment,
6999 struct disk_extent **extents,
7000 int *nr_extents)
7002 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
7003 struct btrfs_path *path;
7004 struct btrfs_file_extent_item *fi;
7005 struct extent_buffer *leaf;
7006 struct disk_extent *exts = *extents;
7007 struct btrfs_key found_key;
7008 u64 cur_pos;
7009 u64 last_byte;
7010 u32 nritems;
7011 int nr = 0;
7012 int max = *nr_extents;
7013 int ret;
7015 WARN_ON(!no_fragment && *extents);
7016 if (!exts) {
7017 max = 1;
7018 exts = kmalloc(sizeof(*exts) * max, GFP_NOFS);
7019 if (!exts)
7020 return -ENOMEM;
7023 path = btrfs_alloc_path();
7024 if (!path) {
7025 if (exts != *extents)
7026 kfree(exts);
7027 return -ENOMEM;
7030 cur_pos = extent_key->objectid - offset;
7031 last_byte = extent_key->objectid + extent_key->offset;
7032 ret = btrfs_lookup_file_extent(NULL, root, path, reloc_inode->i_ino,
7033 cur_pos, 0);
7034 if (ret < 0)
7035 goto out;
7036 if (ret > 0) {
7037 ret = -ENOENT;
7038 goto out;
7041 while (1) {
7042 leaf = path->nodes[0];
7043 nritems = btrfs_header_nritems(leaf);
7044 if (path->slots[0] >= nritems) {
7045 ret = btrfs_next_leaf(root, path);
7046 if (ret < 0)
7047 goto out;
7048 if (ret > 0)
7049 break;
7050 leaf = path->nodes[0];
7053 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
7054 if (found_key.offset != cur_pos ||
7055 found_key.type != BTRFS_EXTENT_DATA_KEY ||
7056 found_key.objectid != reloc_inode->i_ino)
7057 break;
7059 fi = btrfs_item_ptr(leaf, path->slots[0],
7060 struct btrfs_file_extent_item);
7061 if (btrfs_file_extent_type(leaf, fi) !=
7062 BTRFS_FILE_EXTENT_REG ||
7063 btrfs_file_extent_disk_bytenr(leaf, fi) == 0)
7064 break;
7066 if (nr == max) {
7067 struct disk_extent *old = exts;
7068 max *= 2;
7069 exts = kzalloc(sizeof(*exts) * max, GFP_NOFS);
7070 if (!exts) {
7071 ret = -ENOMEM;
7072 goto out;
7074 memcpy(exts, old, sizeof(*exts) * nr);
7075 if (old != *extents)
7076 kfree(old);
7079 exts[nr].disk_bytenr =
7080 btrfs_file_extent_disk_bytenr(leaf, fi);
7081 exts[nr].disk_num_bytes =
7082 btrfs_file_extent_disk_num_bytes(leaf, fi);
7083 exts[nr].offset = btrfs_file_extent_offset(leaf, fi);
7084 exts[nr].num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
7085 exts[nr].ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
7086 exts[nr].compression = btrfs_file_extent_compression(leaf, fi);
7087 exts[nr].encryption = btrfs_file_extent_encryption(leaf, fi);
7088 exts[nr].other_encoding = btrfs_file_extent_other_encoding(leaf,
7089 fi);
7090 BUG_ON(exts[nr].offset > 0);
7091 BUG_ON(exts[nr].compression || exts[nr].encryption);
7092 BUG_ON(exts[nr].num_bytes != exts[nr].disk_num_bytes);
7094 cur_pos += exts[nr].num_bytes;
7095 nr++;
7097 if (cur_pos + offset >= last_byte)
7098 break;
7100 if (no_fragment) {
7101 ret = 1;
7102 goto out;
7104 path->slots[0]++;
7107 BUG_ON(cur_pos + offset > last_byte);
7108 if (cur_pos + offset < last_byte) {
7109 ret = -ENOENT;
7110 goto out;
7112 ret = 0;
7113 out:
7114 btrfs_free_path(path);
7115 if (ret) {
7116 if (exts != *extents)
7117 kfree(exts);
7118 } else {
7119 *extents = exts;
7120 *nr_extents = nr;
7122 return ret;
7125 static noinline int replace_one_extent(struct btrfs_trans_handle *trans,
7126 struct btrfs_root *root,
7127 struct btrfs_path *path,
7128 struct btrfs_key *extent_key,
7129 struct btrfs_key *leaf_key,
7130 struct btrfs_ref_path *ref_path,
7131 struct disk_extent *new_extents,
7132 int nr_extents)
7134 struct extent_buffer *leaf;
7135 struct btrfs_file_extent_item *fi;
7136 struct inode *inode = NULL;
7137 struct btrfs_key key;
7138 u64 lock_start = 0;
7139 u64 lock_end = 0;
7140 u64 num_bytes;
7141 u64 ext_offset;
7142 u64 search_end = (u64)-1;
7143 u32 nritems;
7144 int nr_scaned = 0;
7145 int extent_locked = 0;
7146 int extent_type;
7147 int ret;
7149 memcpy(&key, leaf_key, sizeof(key));
7150 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS) {
7151 if (key.objectid < ref_path->owner_objectid ||
7152 (key.objectid == ref_path->owner_objectid &&
7153 key.type < BTRFS_EXTENT_DATA_KEY)) {
7154 key.objectid = ref_path->owner_objectid;
7155 key.type = BTRFS_EXTENT_DATA_KEY;
7156 key.offset = 0;
7160 while (1) {
7161 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
7162 if (ret < 0)
7163 goto out;
7165 leaf = path->nodes[0];
7166 nritems = btrfs_header_nritems(leaf);
7167 next:
7168 if (extent_locked && ret > 0) {
7170 * the file extent item was modified by someone
7171 * before the extent got locked.
7173 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7174 lock_end, GFP_NOFS);
7175 extent_locked = 0;
7178 if (path->slots[0] >= nritems) {
7179 if (++nr_scaned > 2)
7180 break;
7182 BUG_ON(extent_locked);
7183 ret = btrfs_next_leaf(root, path);
7184 if (ret < 0)
7185 goto out;
7186 if (ret > 0)
7187 break;
7188 leaf = path->nodes[0];
7189 nritems = btrfs_header_nritems(leaf);
7192 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
7194 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS) {
7195 if ((key.objectid > ref_path->owner_objectid) ||
7196 (key.objectid == ref_path->owner_objectid &&
7197 key.type > BTRFS_EXTENT_DATA_KEY) ||
7198 key.offset >= search_end)
7199 break;
7202 if (inode && key.objectid != inode->i_ino) {
7203 BUG_ON(extent_locked);
7204 btrfs_release_path(root, path);
7205 mutex_unlock(&inode->i_mutex);
7206 iput(inode);
7207 inode = NULL;
7208 continue;
7211 if (key.type != BTRFS_EXTENT_DATA_KEY) {
7212 path->slots[0]++;
7213 ret = 1;
7214 goto next;
7216 fi = btrfs_item_ptr(leaf, path->slots[0],
7217 struct btrfs_file_extent_item);
7218 extent_type = btrfs_file_extent_type(leaf, fi);
7219 if ((extent_type != BTRFS_FILE_EXTENT_REG &&
7220 extent_type != BTRFS_FILE_EXTENT_PREALLOC) ||
7221 (btrfs_file_extent_disk_bytenr(leaf, fi) !=
7222 extent_key->objectid)) {
7223 path->slots[0]++;
7224 ret = 1;
7225 goto next;
7228 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
7229 ext_offset = btrfs_file_extent_offset(leaf, fi);
7231 if (search_end == (u64)-1) {
7232 search_end = key.offset - ext_offset +
7233 btrfs_file_extent_ram_bytes(leaf, fi);
7236 if (!extent_locked) {
7237 lock_start = key.offset;
7238 lock_end = lock_start + num_bytes - 1;
7239 } else {
7240 if (lock_start > key.offset ||
7241 lock_end + 1 < key.offset + num_bytes) {
7242 unlock_extent(&BTRFS_I(inode)->io_tree,
7243 lock_start, lock_end, GFP_NOFS);
7244 extent_locked = 0;
7248 if (!inode) {
7249 btrfs_release_path(root, path);
7251 inode = btrfs_iget_locked(root->fs_info->sb,
7252 key.objectid, root);
7253 if (inode->i_state & I_NEW) {
7254 BTRFS_I(inode)->root = root;
7255 BTRFS_I(inode)->location.objectid =
7256 key.objectid;
7257 BTRFS_I(inode)->location.type =
7258 BTRFS_INODE_ITEM_KEY;
7259 BTRFS_I(inode)->location.offset = 0;
7260 btrfs_read_locked_inode(inode);
7261 unlock_new_inode(inode);
7264 * some code call btrfs_commit_transaction while
7265 * holding the i_mutex, so we can't use mutex_lock
7266 * here.
7268 if (is_bad_inode(inode) ||
7269 !mutex_trylock(&inode->i_mutex)) {
7270 iput(inode);
7271 inode = NULL;
7272 key.offset = (u64)-1;
7273 goto skip;
7277 if (!extent_locked) {
7278 struct btrfs_ordered_extent *ordered;
7280 btrfs_release_path(root, path);
7282 lock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7283 lock_end, GFP_NOFS);
7284 ordered = btrfs_lookup_first_ordered_extent(inode,
7285 lock_end);
7286 if (ordered &&
7287 ordered->file_offset <= lock_end &&
7288 ordered->file_offset + ordered->len > lock_start) {
7289 unlock_extent(&BTRFS_I(inode)->io_tree,
7290 lock_start, lock_end, GFP_NOFS);
7291 btrfs_start_ordered_extent(inode, ordered, 1);
7292 btrfs_put_ordered_extent(ordered);
7293 key.offset += num_bytes;
7294 goto skip;
7296 if (ordered)
7297 btrfs_put_ordered_extent(ordered);
7299 extent_locked = 1;
7300 continue;
7303 if (nr_extents == 1) {
7304 /* update extent pointer in place */
7305 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7306 new_extents[0].disk_bytenr);
7307 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7308 new_extents[0].disk_num_bytes);
7309 btrfs_mark_buffer_dirty(leaf);
7311 btrfs_drop_extent_cache(inode, key.offset,
7312 key.offset + num_bytes - 1, 0);
7314 ret = btrfs_inc_extent_ref(trans, root,
7315 new_extents[0].disk_bytenr,
7316 new_extents[0].disk_num_bytes,
7317 leaf->start,
7318 root->root_key.objectid,
7319 trans->transid,
7320 key.objectid);
7321 BUG_ON(ret);
7323 ret = btrfs_free_extent(trans, root,
7324 extent_key->objectid,
7325 extent_key->offset,
7326 leaf->start,
7327 btrfs_header_owner(leaf),
7328 btrfs_header_generation(leaf),
7329 key.objectid, 0);
7330 BUG_ON(ret);
7332 btrfs_release_path(root, path);
7333 key.offset += num_bytes;
7334 } else {
7335 BUG_ON(1);
7336 #if 0
7337 u64 alloc_hint;
7338 u64 extent_len;
7339 int i;
7341 * drop old extent pointer at first, then insert the
7342 * new pointers one bye one
7344 btrfs_release_path(root, path);
7345 ret = btrfs_drop_extents(trans, root, inode, key.offset,
7346 key.offset + num_bytes,
7347 key.offset, &alloc_hint);
7348 BUG_ON(ret);
7350 for (i = 0; i < nr_extents; i++) {
7351 if (ext_offset >= new_extents[i].num_bytes) {
7352 ext_offset -= new_extents[i].num_bytes;
7353 continue;
7355 extent_len = min(new_extents[i].num_bytes -
7356 ext_offset, num_bytes);
7358 ret = btrfs_insert_empty_item(trans, root,
7359 path, &key,
7360 sizeof(*fi));
7361 BUG_ON(ret);
7363 leaf = path->nodes[0];
7364 fi = btrfs_item_ptr(leaf, path->slots[0],
7365 struct btrfs_file_extent_item);
7366 btrfs_set_file_extent_generation(leaf, fi,
7367 trans->transid);
7368 btrfs_set_file_extent_type(leaf, fi,
7369 BTRFS_FILE_EXTENT_REG);
7370 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7371 new_extents[i].disk_bytenr);
7372 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7373 new_extents[i].disk_num_bytes);
7374 btrfs_set_file_extent_ram_bytes(leaf, fi,
7375 new_extents[i].ram_bytes);
7377 btrfs_set_file_extent_compression(leaf, fi,
7378 new_extents[i].compression);
7379 btrfs_set_file_extent_encryption(leaf, fi,
7380 new_extents[i].encryption);
7381 btrfs_set_file_extent_other_encoding(leaf, fi,
7382 new_extents[i].other_encoding);
7384 btrfs_set_file_extent_num_bytes(leaf, fi,
7385 extent_len);
7386 ext_offset += new_extents[i].offset;
7387 btrfs_set_file_extent_offset(leaf, fi,
7388 ext_offset);
7389 btrfs_mark_buffer_dirty(leaf);
7391 btrfs_drop_extent_cache(inode, key.offset,
7392 key.offset + extent_len - 1, 0);
7394 ret = btrfs_inc_extent_ref(trans, root,
7395 new_extents[i].disk_bytenr,
7396 new_extents[i].disk_num_bytes,
7397 leaf->start,
7398 root->root_key.objectid,
7399 trans->transid, key.objectid);
7400 BUG_ON(ret);
7401 btrfs_release_path(root, path);
7403 inode_add_bytes(inode, extent_len);
7405 ext_offset = 0;
7406 num_bytes -= extent_len;
7407 key.offset += extent_len;
7409 if (num_bytes == 0)
7410 break;
7412 BUG_ON(i >= nr_extents);
7413 #endif
7416 if (extent_locked) {
7417 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7418 lock_end, GFP_NOFS);
7419 extent_locked = 0;
7421 skip:
7422 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS &&
7423 key.offset >= search_end)
7424 break;
7426 cond_resched();
7428 ret = 0;
7429 out:
7430 btrfs_release_path(root, path);
7431 if (inode) {
7432 mutex_unlock(&inode->i_mutex);
7433 if (extent_locked) {
7434 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7435 lock_end, GFP_NOFS);
7437 iput(inode);
7439 return ret;
7442 int btrfs_reloc_tree_cache_ref(struct btrfs_trans_handle *trans,
7443 struct btrfs_root *root,
7444 struct extent_buffer *buf, u64 orig_start)
7446 int level;
7447 int ret;
7449 BUG_ON(btrfs_header_generation(buf) != trans->transid);
7450 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
7452 level = btrfs_header_level(buf);
7453 if (level == 0) {
7454 struct btrfs_leaf_ref *ref;
7455 struct btrfs_leaf_ref *orig_ref;
7457 orig_ref = btrfs_lookup_leaf_ref(root, orig_start);
7458 if (!orig_ref)
7459 return -ENOENT;
7461 ref = btrfs_alloc_leaf_ref(root, orig_ref->nritems);
7462 if (!ref) {
7463 btrfs_free_leaf_ref(root, orig_ref);
7464 return -ENOMEM;
7467 ref->nritems = orig_ref->nritems;
7468 memcpy(ref->extents, orig_ref->extents,
7469 sizeof(ref->extents[0]) * ref->nritems);
7471 btrfs_free_leaf_ref(root, orig_ref);
7473 ref->root_gen = trans->transid;
7474 ref->bytenr = buf->start;
7475 ref->owner = btrfs_header_owner(buf);
7476 ref->generation = btrfs_header_generation(buf);
7478 ret = btrfs_add_leaf_ref(root, ref, 0);
7479 WARN_ON(ret);
7480 btrfs_free_leaf_ref(root, ref);
7482 return 0;
7485 static noinline int invalidate_extent_cache(struct btrfs_root *root,
7486 struct extent_buffer *leaf,
7487 struct btrfs_block_group_cache *group,
7488 struct btrfs_root *target_root)
7490 struct btrfs_key key;
7491 struct inode *inode = NULL;
7492 struct btrfs_file_extent_item *fi;
7493 struct extent_state *cached_state = NULL;
7494 u64 num_bytes;
7495 u64 skip_objectid = 0;
7496 u32 nritems;
7497 u32 i;
7499 nritems = btrfs_header_nritems(leaf);
7500 for (i = 0; i < nritems; i++) {
7501 btrfs_item_key_to_cpu(leaf, &key, i);
7502 if (key.objectid == skip_objectid ||
7503 key.type != BTRFS_EXTENT_DATA_KEY)
7504 continue;
7505 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
7506 if (btrfs_file_extent_type(leaf, fi) ==
7507 BTRFS_FILE_EXTENT_INLINE)
7508 continue;
7509 if (btrfs_file_extent_disk_bytenr(leaf, fi) == 0)
7510 continue;
7511 if (!inode || inode->i_ino != key.objectid) {
7512 iput(inode);
7513 inode = btrfs_ilookup(target_root->fs_info->sb,
7514 key.objectid, target_root, 1);
7516 if (!inode) {
7517 skip_objectid = key.objectid;
7518 continue;
7520 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
7522 lock_extent_bits(&BTRFS_I(inode)->io_tree, key.offset,
7523 key.offset + num_bytes - 1, 0, &cached_state,
7524 GFP_NOFS);
7525 btrfs_drop_extent_cache(inode, key.offset,
7526 key.offset + num_bytes - 1, 1);
7527 unlock_extent_cached(&BTRFS_I(inode)->io_tree, key.offset,
7528 key.offset + num_bytes - 1, &cached_state,
7529 GFP_NOFS);
7530 cond_resched();
7532 iput(inode);
7533 return 0;
7536 static noinline int replace_extents_in_leaf(struct btrfs_trans_handle *trans,
7537 struct btrfs_root *root,
7538 struct extent_buffer *leaf,
7539 struct btrfs_block_group_cache *group,
7540 struct inode *reloc_inode)
7542 struct btrfs_key key;
7543 struct btrfs_key extent_key;
7544 struct btrfs_file_extent_item *fi;
7545 struct btrfs_leaf_ref *ref;
7546 struct disk_extent *new_extent;
7547 u64 bytenr;
7548 u64 num_bytes;
7549 u32 nritems;
7550 u32 i;
7551 int ext_index;
7552 int nr_extent;
7553 int ret;
7555 new_extent = kmalloc(sizeof(*new_extent), GFP_NOFS);
7556 if (!new_extent)
7557 return -ENOMEM;
7559 ref = btrfs_lookup_leaf_ref(root, leaf->start);
7560 BUG_ON(!ref);
7562 ext_index = -1;
7563 nritems = btrfs_header_nritems(leaf);
7564 for (i = 0; i < nritems; i++) {
7565 btrfs_item_key_to_cpu(leaf, &key, i);
7566 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
7567 continue;
7568 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
7569 if (btrfs_file_extent_type(leaf, fi) ==
7570 BTRFS_FILE_EXTENT_INLINE)
7571 continue;
7572 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
7573 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
7574 if (bytenr == 0)
7575 continue;
7577 ext_index++;
7578 if (bytenr >= group->key.objectid + group->key.offset ||
7579 bytenr + num_bytes <= group->key.objectid)
7580 continue;
7582 extent_key.objectid = bytenr;
7583 extent_key.offset = num_bytes;
7584 extent_key.type = BTRFS_EXTENT_ITEM_KEY;
7585 nr_extent = 1;
7586 ret = get_new_locations(reloc_inode, &extent_key,
7587 group->key.objectid, 1,
7588 &new_extent, &nr_extent);
7589 if (ret > 0)
7590 continue;
7591 BUG_ON(ret < 0);
7593 BUG_ON(ref->extents[ext_index].bytenr != bytenr);
7594 BUG_ON(ref->extents[ext_index].num_bytes != num_bytes);
7595 ref->extents[ext_index].bytenr = new_extent->disk_bytenr;
7596 ref->extents[ext_index].num_bytes = new_extent->disk_num_bytes;
7598 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7599 new_extent->disk_bytenr);
7600 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7601 new_extent->disk_num_bytes);
7602 btrfs_mark_buffer_dirty(leaf);
7604 ret = btrfs_inc_extent_ref(trans, root,
7605 new_extent->disk_bytenr,
7606 new_extent->disk_num_bytes,
7607 leaf->start,
7608 root->root_key.objectid,
7609 trans->transid, key.objectid);
7610 BUG_ON(ret);
7612 ret = btrfs_free_extent(trans, root,
7613 bytenr, num_bytes, leaf->start,
7614 btrfs_header_owner(leaf),
7615 btrfs_header_generation(leaf),
7616 key.objectid, 0);
7617 BUG_ON(ret);
7618 cond_resched();
7620 kfree(new_extent);
7621 BUG_ON(ext_index + 1 != ref->nritems);
7622 btrfs_free_leaf_ref(root, ref);
7623 return 0;
7626 int btrfs_free_reloc_root(struct btrfs_trans_handle *trans,
7627 struct btrfs_root *root)
7629 struct btrfs_root *reloc_root;
7630 int ret;
7632 if (root->reloc_root) {
7633 reloc_root = root->reloc_root;
7634 root->reloc_root = NULL;
7635 list_add(&reloc_root->dead_list,
7636 &root->fs_info->dead_reloc_roots);
7638 btrfs_set_root_bytenr(&reloc_root->root_item,
7639 reloc_root->node->start);
7640 btrfs_set_root_level(&root->root_item,
7641 btrfs_header_level(reloc_root->node));
7642 memset(&reloc_root->root_item.drop_progress, 0,
7643 sizeof(struct btrfs_disk_key));
7644 reloc_root->root_item.drop_level = 0;
7646 ret = btrfs_update_root(trans, root->fs_info->tree_root,
7647 &reloc_root->root_key,
7648 &reloc_root->root_item);
7649 BUG_ON(ret);
7651 return 0;
7654 int btrfs_drop_dead_reloc_roots(struct btrfs_root *root)
7656 struct btrfs_trans_handle *trans;
7657 struct btrfs_root *reloc_root;
7658 struct btrfs_root *prev_root = NULL;
7659 struct list_head dead_roots;
7660 int ret;
7661 unsigned long nr;
7663 INIT_LIST_HEAD(&dead_roots);
7664 list_splice_init(&root->fs_info->dead_reloc_roots, &dead_roots);
7666 while (!list_empty(&dead_roots)) {
7667 reloc_root = list_entry(dead_roots.prev,
7668 struct btrfs_root, dead_list);
7669 list_del_init(&reloc_root->dead_list);
7671 BUG_ON(reloc_root->commit_root != NULL);
7672 while (1) {
7673 trans = btrfs_join_transaction(root);
7674 BUG_ON(IS_ERR(trans));
7676 mutex_lock(&root->fs_info->drop_mutex);
7677 ret = btrfs_drop_snapshot(trans, reloc_root);
7678 if (ret != -EAGAIN)
7679 break;
7680 mutex_unlock(&root->fs_info->drop_mutex);
7682 nr = trans->blocks_used;
7683 ret = btrfs_end_transaction(trans, root);
7684 BUG_ON(ret);
7685 btrfs_btree_balance_dirty(root, nr);
7688 free_extent_buffer(reloc_root->node);
7690 ret = btrfs_del_root(trans, root->fs_info->tree_root,
7691 &reloc_root->root_key);
7692 BUG_ON(ret);
7693 mutex_unlock(&root->fs_info->drop_mutex);
7695 nr = trans->blocks_used;
7696 ret = btrfs_end_transaction(trans, root);
7697 BUG_ON(ret);
7698 btrfs_btree_balance_dirty(root, nr);
7700 kfree(prev_root);
7701 prev_root = reloc_root;
7703 if (prev_root) {
7704 btrfs_remove_leaf_refs(prev_root, (u64)-1, 0);
7705 kfree(prev_root);
7707 return 0;
7710 int btrfs_add_dead_reloc_root(struct btrfs_root *root)
7712 list_add(&root->dead_list, &root->fs_info->dead_reloc_roots);
7713 return 0;
7716 int btrfs_cleanup_reloc_trees(struct btrfs_root *root)
7718 struct btrfs_root *reloc_root;
7719 struct btrfs_trans_handle *trans;
7720 struct btrfs_key location;
7721 int found;
7722 int ret;
7724 mutex_lock(&root->fs_info->tree_reloc_mutex);
7725 ret = btrfs_find_dead_roots(root, BTRFS_TREE_RELOC_OBJECTID, NULL);
7726 BUG_ON(ret);
7727 found = !list_empty(&root->fs_info->dead_reloc_roots);
7728 mutex_unlock(&root->fs_info->tree_reloc_mutex);
7730 if (found) {
7731 trans = btrfs_start_transaction(root, 1);
7732 BUG_ON(IS_ERR(trans));
7733 ret = btrfs_commit_transaction(trans, root);
7734 BUG_ON(ret);
7737 location.objectid = BTRFS_DATA_RELOC_TREE_OBJECTID;
7738 location.offset = (u64)-1;
7739 location.type = BTRFS_ROOT_ITEM_KEY;
7741 reloc_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
7742 BUG_ON(!reloc_root);
7743 ret = btrfs_orphan_cleanup(reloc_root);
7744 BUG_ON(ret);
7745 return 0;
7748 static noinline int init_reloc_tree(struct btrfs_trans_handle *trans,
7749 struct btrfs_root *root)
7751 struct btrfs_root *reloc_root;
7752 struct extent_buffer *eb;
7753 struct btrfs_root_item *root_item;
7754 struct btrfs_key root_key;
7755 int ret;
7757 BUG_ON(!root->ref_cows);
7758 if (root->reloc_root)
7759 return 0;
7761 root_item = kmalloc(sizeof(*root_item), GFP_NOFS);
7762 if (!root_item)
7763 return -ENOMEM;
7765 ret = btrfs_copy_root(trans, root, root->commit_root,
7766 &eb, BTRFS_TREE_RELOC_OBJECTID);
7767 BUG_ON(ret);
7769 root_key.objectid = BTRFS_TREE_RELOC_OBJECTID;
7770 root_key.offset = root->root_key.objectid;
7771 root_key.type = BTRFS_ROOT_ITEM_KEY;
7773 memcpy(root_item, &root->root_item, sizeof(root_item));
7774 btrfs_set_root_refs(root_item, 0);
7775 btrfs_set_root_bytenr(root_item, eb->start);
7776 btrfs_set_root_level(root_item, btrfs_header_level(eb));
7777 btrfs_set_root_generation(root_item, trans->transid);
7779 btrfs_tree_unlock(eb);
7780 free_extent_buffer(eb);
7782 ret = btrfs_insert_root(trans, root->fs_info->tree_root,
7783 &root_key, root_item);
7784 BUG_ON(ret);
7785 kfree(root_item);
7787 reloc_root = btrfs_read_fs_root_no_radix(root->fs_info->tree_root,
7788 &root_key);
7789 BUG_ON(IS_ERR(reloc_root));
7790 reloc_root->last_trans = trans->transid;
7791 reloc_root->commit_root = NULL;
7792 reloc_root->ref_tree = &root->fs_info->reloc_ref_tree;
7794 root->reloc_root = reloc_root;
7795 return 0;
7799 * Core function of space balance.
7801 * The idea is using reloc trees to relocate tree blocks in reference
7802 * counted roots. There is one reloc tree for each subvol, and all
7803 * reloc trees share same root key objectid. Reloc trees are snapshots
7804 * of the latest committed roots of subvols (root->commit_root).
7806 * To relocate a tree block referenced by a subvol, there are two steps.
7807 * COW the block through subvol's reloc tree, then update block pointer
7808 * in the subvol to point to the new block. Since all reloc trees share
7809 * same root key objectid, doing special handing for tree blocks owned
7810 * by them is easy. Once a tree block has been COWed in one reloc tree,
7811 * we can use the resulting new block directly when the same block is
7812 * required to COW again through other reloc trees. By this way, relocated
7813 * tree blocks are shared between reloc trees, so they are also shared
7814 * between subvols.
7816 static noinline int relocate_one_path(struct btrfs_trans_handle *trans,
7817 struct btrfs_root *root,
7818 struct btrfs_path *path,
7819 struct btrfs_key *first_key,
7820 struct btrfs_ref_path *ref_path,
7821 struct btrfs_block_group_cache *group,
7822 struct inode *reloc_inode)
7824 struct btrfs_root *reloc_root;
7825 struct extent_buffer *eb = NULL;
7826 struct btrfs_key *keys;
7827 u64 *nodes;
7828 int level;
7829 int shared_level;
7830 int lowest_level = 0;
7831 int ret;
7833 if (ref_path->owner_objectid < BTRFS_FIRST_FREE_OBJECTID)
7834 lowest_level = ref_path->owner_objectid;
7836 if (!root->ref_cows) {
7837 path->lowest_level = lowest_level;
7838 ret = btrfs_search_slot(trans, root, first_key, path, 0, 1);
7839 BUG_ON(ret < 0);
7840 path->lowest_level = 0;
7841 btrfs_release_path(root, path);
7842 return 0;
7845 mutex_lock(&root->fs_info->tree_reloc_mutex);
7846 ret = init_reloc_tree(trans, root);
7847 BUG_ON(ret);
7848 reloc_root = root->reloc_root;
7850 shared_level = ref_path->shared_level;
7851 ref_path->shared_level = BTRFS_MAX_LEVEL - 1;
7853 keys = ref_path->node_keys;
7854 nodes = ref_path->new_nodes;
7855 memset(&keys[shared_level + 1], 0,
7856 sizeof(*keys) * (BTRFS_MAX_LEVEL - shared_level - 1));
7857 memset(&nodes[shared_level + 1], 0,
7858 sizeof(*nodes) * (BTRFS_MAX_LEVEL - shared_level - 1));
7860 if (nodes[lowest_level] == 0) {
7861 path->lowest_level = lowest_level;
7862 ret = btrfs_search_slot(trans, reloc_root, first_key, path,
7863 0, 1);
7864 BUG_ON(ret);
7865 for (level = lowest_level; level < BTRFS_MAX_LEVEL; level++) {
7866 eb = path->nodes[level];
7867 if (!eb || eb == reloc_root->node)
7868 break;
7869 nodes[level] = eb->start;
7870 if (level == 0)
7871 btrfs_item_key_to_cpu(eb, &keys[level], 0);
7872 else
7873 btrfs_node_key_to_cpu(eb, &keys[level], 0);
7875 if (nodes[0] &&
7876 ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
7877 eb = path->nodes[0];
7878 ret = replace_extents_in_leaf(trans, reloc_root, eb,
7879 group, reloc_inode);
7880 BUG_ON(ret);
7882 btrfs_release_path(reloc_root, path);
7883 } else {
7884 ret = btrfs_merge_path(trans, reloc_root, keys, nodes,
7885 lowest_level);
7886 BUG_ON(ret);
7890 * replace tree blocks in the fs tree with tree blocks in
7891 * the reloc tree.
7893 ret = btrfs_merge_path(trans, root, keys, nodes, lowest_level);
7894 BUG_ON(ret < 0);
7896 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
7897 ret = btrfs_search_slot(trans, reloc_root, first_key, path,
7898 0, 0);
7899 BUG_ON(ret);
7900 extent_buffer_get(path->nodes[0]);
7901 eb = path->nodes[0];
7902 btrfs_release_path(reloc_root, path);
7903 ret = invalidate_extent_cache(reloc_root, eb, group, root);
7904 BUG_ON(ret);
7905 free_extent_buffer(eb);
7908 mutex_unlock(&root->fs_info->tree_reloc_mutex);
7909 path->lowest_level = 0;
7910 return 0;
7913 static noinline int relocate_tree_block(struct btrfs_trans_handle *trans,
7914 struct btrfs_root *root,
7915 struct btrfs_path *path,
7916 struct btrfs_key *first_key,
7917 struct btrfs_ref_path *ref_path)
7919 int ret;
7921 ret = relocate_one_path(trans, root, path, first_key,
7922 ref_path, NULL, NULL);
7923 BUG_ON(ret);
7925 return 0;
7928 static noinline int del_extent_zero(struct btrfs_trans_handle *trans,
7929 struct btrfs_root *extent_root,
7930 struct btrfs_path *path,
7931 struct btrfs_key *extent_key)
7933 int ret;
7935 ret = btrfs_search_slot(trans, extent_root, extent_key, path, -1, 1);
7936 if (ret)
7937 goto out;
7938 ret = btrfs_del_item(trans, extent_root, path);
7939 out:
7940 btrfs_release_path(extent_root, path);
7941 return ret;
7944 static noinline struct btrfs_root *read_ref_root(struct btrfs_fs_info *fs_info,
7945 struct btrfs_ref_path *ref_path)
7947 struct btrfs_key root_key;
7949 root_key.objectid = ref_path->root_objectid;
7950 root_key.type = BTRFS_ROOT_ITEM_KEY;
7951 if (is_cowonly_root(ref_path->root_objectid))
7952 root_key.offset = 0;
7953 else
7954 root_key.offset = (u64)-1;
7956 return btrfs_read_fs_root_no_name(fs_info, &root_key);
7959 static noinline int relocate_one_extent(struct btrfs_root *extent_root,
7960 struct btrfs_path *path,
7961 struct btrfs_key *extent_key,
7962 struct btrfs_block_group_cache *group,
7963 struct inode *reloc_inode, int pass)
7965 struct btrfs_trans_handle *trans;
7966 struct btrfs_root *found_root;
7967 struct btrfs_ref_path *ref_path = NULL;
7968 struct disk_extent *new_extents = NULL;
7969 int nr_extents = 0;
7970 int loops;
7971 int ret;
7972 int level;
7973 struct btrfs_key first_key;
7974 u64 prev_block = 0;
7977 trans = btrfs_start_transaction(extent_root, 1);
7978 BUG_ON(IS_ERR(trans));
7980 if (extent_key->objectid == 0) {
7981 ret = del_extent_zero(trans, extent_root, path, extent_key);
7982 goto out;
7985 ref_path = kmalloc(sizeof(*ref_path), GFP_NOFS);
7986 if (!ref_path) {
7987 ret = -ENOMEM;
7988 goto out;
7991 for (loops = 0; ; loops++) {
7992 if (loops == 0) {
7993 ret = btrfs_first_ref_path(trans, extent_root, ref_path,
7994 extent_key->objectid);
7995 } else {
7996 ret = btrfs_next_ref_path(trans, extent_root, ref_path);
7998 if (ret < 0)
7999 goto out;
8000 if (ret > 0)
8001 break;
8003 if (ref_path->root_objectid == BTRFS_TREE_LOG_OBJECTID ||
8004 ref_path->root_objectid == BTRFS_TREE_RELOC_OBJECTID)
8005 continue;
8007 found_root = read_ref_root(extent_root->fs_info, ref_path);
8008 BUG_ON(!found_root);
8010 * for reference counted tree, only process reference paths
8011 * rooted at the latest committed root.
8013 if (found_root->ref_cows &&
8014 ref_path->root_generation != found_root->root_key.offset)
8015 continue;
8017 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
8018 if (pass == 0) {
8020 * copy data extents to new locations
8022 u64 group_start = group->key.objectid;
8023 ret = relocate_data_extent(reloc_inode,
8024 extent_key,
8025 group_start);
8026 if (ret < 0)
8027 goto out;
8028 break;
8030 level = 0;
8031 } else {
8032 level = ref_path->owner_objectid;
8035 if (prev_block != ref_path->nodes[level]) {
8036 struct extent_buffer *eb;
8037 u64 block_start = ref_path->nodes[level];
8038 u64 block_size = btrfs_level_size(found_root, level);
8040 eb = read_tree_block(found_root, block_start,
8041 block_size, 0);
8042 if (!eb) {
8043 ret = -EIO;
8044 goto out;
8046 btrfs_tree_lock(eb);
8047 BUG_ON(level != btrfs_header_level(eb));
8049 if (level == 0)
8050 btrfs_item_key_to_cpu(eb, &first_key, 0);
8051 else
8052 btrfs_node_key_to_cpu(eb, &first_key, 0);
8054 btrfs_tree_unlock(eb);
8055 free_extent_buffer(eb);
8056 prev_block = block_start;
8059 mutex_lock(&extent_root->fs_info->trans_mutex);
8060 btrfs_record_root_in_trans(found_root);
8061 mutex_unlock(&extent_root->fs_info->trans_mutex);
8062 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
8064 * try to update data extent references while
8065 * keeping metadata shared between snapshots.
8067 if (pass == 1) {
8068 ret = relocate_one_path(trans, found_root,
8069 path, &first_key, ref_path,
8070 group, reloc_inode);
8071 if (ret < 0)
8072 goto out;
8073 continue;
8076 * use fallback method to process the remaining
8077 * references.
8079 if (!new_extents) {
8080 u64 group_start = group->key.objectid;
8081 new_extents = kmalloc(sizeof(*new_extents),
8082 GFP_NOFS);
8083 if (!new_extents) {
8084 ret = -ENOMEM;
8085 goto out;
8087 nr_extents = 1;
8088 ret = get_new_locations(reloc_inode,
8089 extent_key,
8090 group_start, 1,
8091 &new_extents,
8092 &nr_extents);
8093 if (ret)
8094 goto out;
8096 ret = replace_one_extent(trans, found_root,
8097 path, extent_key,
8098 &first_key, ref_path,
8099 new_extents, nr_extents);
8100 } else {
8101 ret = relocate_tree_block(trans, found_root, path,
8102 &first_key, ref_path);
8104 if (ret < 0)
8105 goto out;
8107 ret = 0;
8108 out:
8109 btrfs_end_transaction(trans, extent_root);
8110 kfree(new_extents);
8111 kfree(ref_path);
8112 return ret;
8114 #endif
8116 static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
8118 u64 num_devices;
8119 u64 stripped = BTRFS_BLOCK_GROUP_RAID0 |
8120 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
8123 * we add in the count of missing devices because we want
8124 * to make sure that any RAID levels on a degraded FS
8125 * continue to be honored.
8127 num_devices = root->fs_info->fs_devices->rw_devices +
8128 root->fs_info->fs_devices->missing_devices;
8130 if (num_devices == 1) {
8131 stripped |= BTRFS_BLOCK_GROUP_DUP;
8132 stripped = flags & ~stripped;
8134 /* turn raid0 into single device chunks */
8135 if (flags & BTRFS_BLOCK_GROUP_RAID0)
8136 return stripped;
8138 /* turn mirroring into duplication */
8139 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
8140 BTRFS_BLOCK_GROUP_RAID10))
8141 return stripped | BTRFS_BLOCK_GROUP_DUP;
8142 return flags;
8143 } else {
8144 /* they already had raid on here, just return */
8145 if (flags & stripped)
8146 return flags;
8148 stripped |= BTRFS_BLOCK_GROUP_DUP;
8149 stripped = flags & ~stripped;
8151 /* switch duplicated blocks with raid1 */
8152 if (flags & BTRFS_BLOCK_GROUP_DUP)
8153 return stripped | BTRFS_BLOCK_GROUP_RAID1;
8155 /* turn single device chunks into raid0 */
8156 return stripped | BTRFS_BLOCK_GROUP_RAID0;
8158 return flags;
8161 static int set_block_group_ro(struct btrfs_block_group_cache *cache)
8163 struct btrfs_space_info *sinfo = cache->space_info;
8164 u64 num_bytes;
8165 int ret = -ENOSPC;
8167 if (cache->ro)
8168 return 0;
8170 spin_lock(&sinfo->lock);
8171 spin_lock(&cache->lock);
8172 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8173 cache->bytes_super - btrfs_block_group_used(&cache->item);
8175 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
8176 sinfo->bytes_may_use + sinfo->bytes_readonly +
8177 cache->reserved_pinned + num_bytes <= sinfo->total_bytes) {
8178 sinfo->bytes_readonly += num_bytes;
8179 sinfo->bytes_reserved += cache->reserved_pinned;
8180 cache->reserved_pinned = 0;
8181 cache->ro = 1;
8182 ret = 0;
8185 spin_unlock(&cache->lock);
8186 spin_unlock(&sinfo->lock);
8187 return ret;
8190 int btrfs_set_block_group_ro(struct btrfs_root *root,
8191 struct btrfs_block_group_cache *cache)
8194 struct btrfs_trans_handle *trans;
8195 u64 alloc_flags;
8196 int ret;
8198 BUG_ON(cache->ro);
8200 trans = btrfs_join_transaction(root);
8201 BUG_ON(IS_ERR(trans));
8203 alloc_flags = update_block_group_flags(root, cache->flags);
8204 if (alloc_flags != cache->flags)
8205 do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags,
8206 CHUNK_ALLOC_FORCE);
8208 ret = set_block_group_ro(cache);
8209 if (!ret)
8210 goto out;
8211 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
8212 ret = do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags,
8213 CHUNK_ALLOC_FORCE);
8214 if (ret < 0)
8215 goto out;
8216 ret = set_block_group_ro(cache);
8217 out:
8218 btrfs_end_transaction(trans, root);
8219 return ret;
8222 int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
8223 struct btrfs_root *root, u64 type)
8225 u64 alloc_flags = get_alloc_profile(root, type);
8226 return do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags,
8227 CHUNK_ALLOC_FORCE);
8231 * helper to account the unused space of all the readonly block group in the
8232 * list. takes mirrors into account.
8234 static u64 __btrfs_get_ro_block_group_free_space(struct list_head *groups_list)
8236 struct btrfs_block_group_cache *block_group;
8237 u64 free_bytes = 0;
8238 int factor;
8240 list_for_each_entry(block_group, groups_list, list) {
8241 spin_lock(&block_group->lock);
8243 if (!block_group->ro) {
8244 spin_unlock(&block_group->lock);
8245 continue;
8248 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
8249 BTRFS_BLOCK_GROUP_RAID10 |
8250 BTRFS_BLOCK_GROUP_DUP))
8251 factor = 2;
8252 else
8253 factor = 1;
8255 free_bytes += (block_group->key.offset -
8256 btrfs_block_group_used(&block_group->item)) *
8257 factor;
8259 spin_unlock(&block_group->lock);
8262 return free_bytes;
8266 * helper to account the unused space of all the readonly block group in the
8267 * space_info. takes mirrors into account.
8269 u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
8271 int i;
8272 u64 free_bytes = 0;
8274 spin_lock(&sinfo->lock);
8276 for(i = 0; i < BTRFS_NR_RAID_TYPES; i++)
8277 if (!list_empty(&sinfo->block_groups[i]))
8278 free_bytes += __btrfs_get_ro_block_group_free_space(
8279 &sinfo->block_groups[i]);
8281 spin_unlock(&sinfo->lock);
8283 return free_bytes;
8286 int btrfs_set_block_group_rw(struct btrfs_root *root,
8287 struct btrfs_block_group_cache *cache)
8289 struct btrfs_space_info *sinfo = cache->space_info;
8290 u64 num_bytes;
8292 BUG_ON(!cache->ro);
8294 spin_lock(&sinfo->lock);
8295 spin_lock(&cache->lock);
8296 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8297 cache->bytes_super - btrfs_block_group_used(&cache->item);
8298 sinfo->bytes_readonly -= num_bytes;
8299 cache->ro = 0;
8300 spin_unlock(&cache->lock);
8301 spin_unlock(&sinfo->lock);
8302 return 0;
8306 * checks to see if its even possible to relocate this block group.
8308 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
8309 * ok to go ahead and try.
8311 int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
8313 struct btrfs_block_group_cache *block_group;
8314 struct btrfs_space_info *space_info;
8315 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
8316 struct btrfs_device *device;
8317 int full = 0;
8318 int ret = 0;
8320 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
8322 /* odd, couldn't find the block group, leave it alone */
8323 if (!block_group)
8324 return -1;
8326 /* no bytes used, we're good */
8327 if (!btrfs_block_group_used(&block_group->item))
8328 goto out;
8330 space_info = block_group->space_info;
8331 spin_lock(&space_info->lock);
8333 full = space_info->full;
8336 * if this is the last block group we have in this space, we can't
8337 * relocate it unless we're able to allocate a new chunk below.
8339 * Otherwise, we need to make sure we have room in the space to handle
8340 * all of the extents from this block group. If we can, we're good
8342 if ((space_info->total_bytes != block_group->key.offset) &&
8343 (space_info->bytes_used + space_info->bytes_reserved +
8344 space_info->bytes_pinned + space_info->bytes_readonly +
8345 btrfs_block_group_used(&block_group->item) <
8346 space_info->total_bytes)) {
8347 spin_unlock(&space_info->lock);
8348 goto out;
8350 spin_unlock(&space_info->lock);
8353 * ok we don't have enough space, but maybe we have free space on our
8354 * devices to allocate new chunks for relocation, so loop through our
8355 * alloc devices and guess if we have enough space. However, if we
8356 * were marked as full, then we know there aren't enough chunks, and we
8357 * can just return.
8359 ret = -1;
8360 if (full)
8361 goto out;
8363 mutex_lock(&root->fs_info->chunk_mutex);
8364 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
8365 u64 min_free = btrfs_block_group_used(&block_group->item);
8366 u64 dev_offset;
8369 * check to make sure we can actually find a chunk with enough
8370 * space to fit our block group in.
8372 if (device->total_bytes > device->bytes_used + min_free) {
8373 ret = find_free_dev_extent(NULL, device, min_free,
8374 &dev_offset, NULL);
8375 if (!ret)
8376 break;
8377 ret = -1;
8380 mutex_unlock(&root->fs_info->chunk_mutex);
8381 out:
8382 btrfs_put_block_group(block_group);
8383 return ret;
8386 static int find_first_block_group(struct btrfs_root *root,
8387 struct btrfs_path *path, struct btrfs_key *key)
8389 int ret = 0;
8390 struct btrfs_key found_key;
8391 struct extent_buffer *leaf;
8392 int slot;
8394 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
8395 if (ret < 0)
8396 goto out;
8398 while (1) {
8399 slot = path->slots[0];
8400 leaf = path->nodes[0];
8401 if (slot >= btrfs_header_nritems(leaf)) {
8402 ret = btrfs_next_leaf(root, path);
8403 if (ret == 0)
8404 continue;
8405 if (ret < 0)
8406 goto out;
8407 break;
8409 btrfs_item_key_to_cpu(leaf, &found_key, slot);
8411 if (found_key.objectid >= key->objectid &&
8412 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
8413 ret = 0;
8414 goto out;
8416 path->slots[0]++;
8418 out:
8419 return ret;
8422 void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
8424 struct btrfs_block_group_cache *block_group;
8425 u64 last = 0;
8427 while (1) {
8428 struct inode *inode;
8430 block_group = btrfs_lookup_first_block_group(info, last);
8431 while (block_group) {
8432 spin_lock(&block_group->lock);
8433 if (block_group->iref)
8434 break;
8435 spin_unlock(&block_group->lock);
8436 block_group = next_block_group(info->tree_root,
8437 block_group);
8439 if (!block_group) {
8440 if (last == 0)
8441 break;
8442 last = 0;
8443 continue;
8446 inode = block_group->inode;
8447 block_group->iref = 0;
8448 block_group->inode = NULL;
8449 spin_unlock(&block_group->lock);
8450 iput(inode);
8451 last = block_group->key.objectid + block_group->key.offset;
8452 btrfs_put_block_group(block_group);
8456 int btrfs_free_block_groups(struct btrfs_fs_info *info)
8458 struct btrfs_block_group_cache *block_group;
8459 struct btrfs_space_info *space_info;
8460 struct btrfs_caching_control *caching_ctl;
8461 struct rb_node *n;
8463 down_write(&info->extent_commit_sem);
8464 while (!list_empty(&info->caching_block_groups)) {
8465 caching_ctl = list_entry(info->caching_block_groups.next,
8466 struct btrfs_caching_control, list);
8467 list_del(&caching_ctl->list);
8468 put_caching_control(caching_ctl);
8470 up_write(&info->extent_commit_sem);
8472 spin_lock(&info->block_group_cache_lock);
8473 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
8474 block_group = rb_entry(n, struct btrfs_block_group_cache,
8475 cache_node);
8476 rb_erase(&block_group->cache_node,
8477 &info->block_group_cache_tree);
8478 spin_unlock(&info->block_group_cache_lock);
8480 down_write(&block_group->space_info->groups_sem);
8481 list_del(&block_group->list);
8482 up_write(&block_group->space_info->groups_sem);
8484 if (block_group->cached == BTRFS_CACHE_STARTED)
8485 wait_block_group_cache_done(block_group);
8488 * We haven't cached this block group, which means we could
8489 * possibly have excluded extents on this block group.
8491 if (block_group->cached == BTRFS_CACHE_NO)
8492 free_excluded_extents(info->extent_root, block_group);
8494 btrfs_remove_free_space_cache(block_group);
8495 btrfs_put_block_group(block_group);
8497 spin_lock(&info->block_group_cache_lock);
8499 spin_unlock(&info->block_group_cache_lock);
8501 /* now that all the block groups are freed, go through and
8502 * free all the space_info structs. This is only called during
8503 * the final stages of unmount, and so we know nobody is
8504 * using them. We call synchronize_rcu() once before we start,
8505 * just to be on the safe side.
8507 synchronize_rcu();
8509 release_global_block_rsv(info);
8511 while(!list_empty(&info->space_info)) {
8512 space_info = list_entry(info->space_info.next,
8513 struct btrfs_space_info,
8514 list);
8515 if (space_info->bytes_pinned > 0 ||
8516 space_info->bytes_reserved > 0) {
8517 WARN_ON(1);
8518 dump_space_info(space_info, 0, 0);
8520 list_del(&space_info->list);
8521 kfree(space_info);
8523 return 0;
8526 static void __link_block_group(struct btrfs_space_info *space_info,
8527 struct btrfs_block_group_cache *cache)
8529 int index = get_block_group_index(cache);
8531 down_write(&space_info->groups_sem);
8532 list_add_tail(&cache->list, &space_info->block_groups[index]);
8533 up_write(&space_info->groups_sem);
8536 int btrfs_read_block_groups(struct btrfs_root *root)
8538 struct btrfs_path *path;
8539 int ret;
8540 struct btrfs_block_group_cache *cache;
8541 struct btrfs_fs_info *info = root->fs_info;
8542 struct btrfs_space_info *space_info;
8543 struct btrfs_key key;
8544 struct btrfs_key found_key;
8545 struct extent_buffer *leaf;
8546 int need_clear = 0;
8547 u64 cache_gen;
8549 root = info->extent_root;
8550 key.objectid = 0;
8551 key.offset = 0;
8552 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
8553 path = btrfs_alloc_path();
8554 if (!path)
8555 return -ENOMEM;
8557 cache_gen = btrfs_super_cache_generation(&root->fs_info->super_copy);
8558 if (cache_gen != 0 &&
8559 btrfs_super_generation(&root->fs_info->super_copy) != cache_gen)
8560 need_clear = 1;
8561 if (btrfs_test_opt(root, CLEAR_CACHE))
8562 need_clear = 1;
8563 if (!btrfs_test_opt(root, SPACE_CACHE) && cache_gen)
8564 printk(KERN_INFO "btrfs: disk space caching is enabled\n");
8566 while (1) {
8567 ret = find_first_block_group(root, path, &key);
8568 if (ret > 0)
8569 break;
8570 if (ret != 0)
8571 goto error;
8572 leaf = path->nodes[0];
8573 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
8574 cache = kzalloc(sizeof(*cache), GFP_NOFS);
8575 if (!cache) {
8576 ret = -ENOMEM;
8577 goto error;
8580 atomic_set(&cache->count, 1);
8581 spin_lock_init(&cache->lock);
8582 spin_lock_init(&cache->tree_lock);
8583 cache->fs_info = info;
8584 INIT_LIST_HEAD(&cache->list);
8585 INIT_LIST_HEAD(&cache->cluster_list);
8587 if (need_clear)
8588 cache->disk_cache_state = BTRFS_DC_CLEAR;
8591 * we only want to have 32k of ram per block group for keeping
8592 * track of free space, and if we pass 1/2 of that we want to
8593 * start converting things over to using bitmaps
8595 cache->extents_thresh = ((1024 * 32) / 2) /
8596 sizeof(struct btrfs_free_space);
8598 read_extent_buffer(leaf, &cache->item,
8599 btrfs_item_ptr_offset(leaf, path->slots[0]),
8600 sizeof(cache->item));
8601 memcpy(&cache->key, &found_key, sizeof(found_key));
8603 key.objectid = found_key.objectid + found_key.offset;
8604 btrfs_release_path(root, path);
8605 cache->flags = btrfs_block_group_flags(&cache->item);
8606 cache->sectorsize = root->sectorsize;
8609 * We need to exclude the super stripes now so that the space
8610 * info has super bytes accounted for, otherwise we'll think
8611 * we have more space than we actually do.
8613 exclude_super_stripes(root, cache);
8616 * check for two cases, either we are full, and therefore
8617 * don't need to bother with the caching work since we won't
8618 * find any space, or we are empty, and we can just add all
8619 * the space in and be done with it. This saves us _alot_ of
8620 * time, particularly in the full case.
8622 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
8623 cache->last_byte_to_unpin = (u64)-1;
8624 cache->cached = BTRFS_CACHE_FINISHED;
8625 free_excluded_extents(root, cache);
8626 } else if (btrfs_block_group_used(&cache->item) == 0) {
8627 cache->last_byte_to_unpin = (u64)-1;
8628 cache->cached = BTRFS_CACHE_FINISHED;
8629 add_new_free_space(cache, root->fs_info,
8630 found_key.objectid,
8631 found_key.objectid +
8632 found_key.offset);
8633 free_excluded_extents(root, cache);
8636 ret = update_space_info(info, cache->flags, found_key.offset,
8637 btrfs_block_group_used(&cache->item),
8638 &space_info);
8639 BUG_ON(ret);
8640 cache->space_info = space_info;
8641 spin_lock(&cache->space_info->lock);
8642 cache->space_info->bytes_readonly += cache->bytes_super;
8643 spin_unlock(&cache->space_info->lock);
8645 __link_block_group(space_info, cache);
8647 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8648 BUG_ON(ret);
8650 set_avail_alloc_bits(root->fs_info, cache->flags);
8651 if (btrfs_chunk_readonly(root, cache->key.objectid))
8652 set_block_group_ro(cache);
8655 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
8656 if (!(get_alloc_profile(root, space_info->flags) &
8657 (BTRFS_BLOCK_GROUP_RAID10 |
8658 BTRFS_BLOCK_GROUP_RAID1 |
8659 BTRFS_BLOCK_GROUP_DUP)))
8660 continue;
8662 * avoid allocating from un-mirrored block group if there are
8663 * mirrored block groups.
8665 list_for_each_entry(cache, &space_info->block_groups[3], list)
8666 set_block_group_ro(cache);
8667 list_for_each_entry(cache, &space_info->block_groups[4], list)
8668 set_block_group_ro(cache);
8671 init_global_block_rsv(info);
8672 ret = 0;
8673 error:
8674 btrfs_free_path(path);
8675 return ret;
8678 int btrfs_make_block_group(struct btrfs_trans_handle *trans,
8679 struct btrfs_root *root, u64 bytes_used,
8680 u64 type, u64 chunk_objectid, u64 chunk_offset,
8681 u64 size)
8683 int ret;
8684 struct btrfs_root *extent_root;
8685 struct btrfs_block_group_cache *cache;
8687 extent_root = root->fs_info->extent_root;
8689 root->fs_info->last_trans_log_full_commit = trans->transid;
8691 cache = kzalloc(sizeof(*cache), GFP_NOFS);
8692 if (!cache)
8693 return -ENOMEM;
8695 cache->key.objectid = chunk_offset;
8696 cache->key.offset = size;
8697 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
8698 cache->sectorsize = root->sectorsize;
8699 cache->fs_info = root->fs_info;
8702 * we only want to have 32k of ram per block group for keeping track
8703 * of free space, and if we pass 1/2 of that we want to start
8704 * converting things over to using bitmaps
8706 cache->extents_thresh = ((1024 * 32) / 2) /
8707 sizeof(struct btrfs_free_space);
8708 atomic_set(&cache->count, 1);
8709 spin_lock_init(&cache->lock);
8710 spin_lock_init(&cache->tree_lock);
8711 INIT_LIST_HEAD(&cache->list);
8712 INIT_LIST_HEAD(&cache->cluster_list);
8714 btrfs_set_block_group_used(&cache->item, bytes_used);
8715 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
8716 cache->flags = type;
8717 btrfs_set_block_group_flags(&cache->item, type);
8719 cache->last_byte_to_unpin = (u64)-1;
8720 cache->cached = BTRFS_CACHE_FINISHED;
8721 exclude_super_stripes(root, cache);
8723 add_new_free_space(cache, root->fs_info, chunk_offset,
8724 chunk_offset + size);
8726 free_excluded_extents(root, cache);
8728 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
8729 &cache->space_info);
8730 BUG_ON(ret);
8732 spin_lock(&cache->space_info->lock);
8733 cache->space_info->bytes_readonly += cache->bytes_super;
8734 spin_unlock(&cache->space_info->lock);
8736 __link_block_group(cache->space_info, cache);
8738 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8739 BUG_ON(ret);
8741 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
8742 sizeof(cache->item));
8743 BUG_ON(ret);
8745 set_avail_alloc_bits(extent_root->fs_info, type);
8747 return 0;
8750 int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
8751 struct btrfs_root *root, u64 group_start)
8753 struct btrfs_path *path;
8754 struct btrfs_block_group_cache *block_group;
8755 struct btrfs_free_cluster *cluster;
8756 struct btrfs_root *tree_root = root->fs_info->tree_root;
8757 struct btrfs_key key;
8758 struct inode *inode;
8759 int ret;
8760 int factor;
8762 root = root->fs_info->extent_root;
8764 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
8765 BUG_ON(!block_group);
8766 BUG_ON(!block_group->ro);
8769 * Free the reserved super bytes from this block group before
8770 * remove it.
8772 free_excluded_extents(root, block_group);
8774 memcpy(&key, &block_group->key, sizeof(key));
8775 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
8776 BTRFS_BLOCK_GROUP_RAID1 |
8777 BTRFS_BLOCK_GROUP_RAID10))
8778 factor = 2;
8779 else
8780 factor = 1;
8782 /* make sure this block group isn't part of an allocation cluster */
8783 cluster = &root->fs_info->data_alloc_cluster;
8784 spin_lock(&cluster->refill_lock);
8785 btrfs_return_cluster_to_free_space(block_group, cluster);
8786 spin_unlock(&cluster->refill_lock);
8789 * make sure this block group isn't part of a metadata
8790 * allocation cluster
8792 cluster = &root->fs_info->meta_alloc_cluster;
8793 spin_lock(&cluster->refill_lock);
8794 btrfs_return_cluster_to_free_space(block_group, cluster);
8795 spin_unlock(&cluster->refill_lock);
8797 path = btrfs_alloc_path();
8798 BUG_ON(!path);
8800 inode = lookup_free_space_inode(root, block_group, path);
8801 if (!IS_ERR(inode)) {
8802 btrfs_orphan_add(trans, inode);
8803 clear_nlink(inode);
8804 /* One for the block groups ref */
8805 spin_lock(&block_group->lock);
8806 if (block_group->iref) {
8807 block_group->iref = 0;
8808 block_group->inode = NULL;
8809 spin_unlock(&block_group->lock);
8810 iput(inode);
8811 } else {
8812 spin_unlock(&block_group->lock);
8814 /* One for our lookup ref */
8815 iput(inode);
8818 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
8819 key.offset = block_group->key.objectid;
8820 key.type = 0;
8822 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
8823 if (ret < 0)
8824 goto out;
8825 if (ret > 0)
8826 btrfs_release_path(tree_root, path);
8827 if (ret == 0) {
8828 ret = btrfs_del_item(trans, tree_root, path);
8829 if (ret)
8830 goto out;
8831 btrfs_release_path(tree_root, path);
8834 spin_lock(&root->fs_info->block_group_cache_lock);
8835 rb_erase(&block_group->cache_node,
8836 &root->fs_info->block_group_cache_tree);
8837 spin_unlock(&root->fs_info->block_group_cache_lock);
8839 down_write(&block_group->space_info->groups_sem);
8841 * we must use list_del_init so people can check to see if they
8842 * are still on the list after taking the semaphore
8844 list_del_init(&block_group->list);
8845 up_write(&block_group->space_info->groups_sem);
8847 if (block_group->cached == BTRFS_CACHE_STARTED)
8848 wait_block_group_cache_done(block_group);
8850 btrfs_remove_free_space_cache(block_group);
8852 spin_lock(&block_group->space_info->lock);
8853 block_group->space_info->total_bytes -= block_group->key.offset;
8854 block_group->space_info->bytes_readonly -= block_group->key.offset;
8855 block_group->space_info->disk_total -= block_group->key.offset * factor;
8856 spin_unlock(&block_group->space_info->lock);
8858 memcpy(&key, &block_group->key, sizeof(key));
8860 btrfs_clear_space_info_full(root->fs_info);
8862 btrfs_put_block_group(block_group);
8863 btrfs_put_block_group(block_group);
8865 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
8866 if (ret > 0)
8867 ret = -EIO;
8868 if (ret < 0)
8869 goto out;
8871 ret = btrfs_del_item(trans, root, path);
8872 out:
8873 btrfs_free_path(path);
8874 return ret;
8877 int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
8879 struct btrfs_space_info *space_info;
8880 struct btrfs_super_block *disk_super;
8881 u64 features;
8882 u64 flags;
8883 int mixed = 0;
8884 int ret;
8886 disk_super = &fs_info->super_copy;
8887 if (!btrfs_super_root(disk_super))
8888 return 1;
8890 features = btrfs_super_incompat_flags(disk_super);
8891 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
8892 mixed = 1;
8894 flags = BTRFS_BLOCK_GROUP_SYSTEM;
8895 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8896 if (ret)
8897 goto out;
8899 if (mixed) {
8900 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
8901 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8902 } else {
8903 flags = BTRFS_BLOCK_GROUP_METADATA;
8904 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8905 if (ret)
8906 goto out;
8908 flags = BTRFS_BLOCK_GROUP_DATA;
8909 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8911 out:
8912 return ret;
8915 int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
8917 return unpin_extent_range(root, start, end);
8920 int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr,
8921 u64 num_bytes, u64 *actual_bytes)
8923 return btrfs_discard_extent(root, bytenr, num_bytes, actual_bytes);
8926 int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
8928 struct btrfs_fs_info *fs_info = root->fs_info;
8929 struct btrfs_block_group_cache *cache = NULL;
8930 u64 group_trimmed;
8931 u64 start;
8932 u64 end;
8933 u64 trimmed = 0;
8934 int ret = 0;
8936 cache = btrfs_lookup_block_group(fs_info, range->start);
8938 while (cache) {
8939 if (cache->key.objectid >= (range->start + range->len)) {
8940 btrfs_put_block_group(cache);
8941 break;
8944 start = max(range->start, cache->key.objectid);
8945 end = min(range->start + range->len,
8946 cache->key.objectid + cache->key.offset);
8948 if (end - start >= range->minlen) {
8949 if (!block_group_cache_done(cache)) {
8950 ret = cache_block_group(cache, NULL, root, 0);
8951 if (!ret)
8952 wait_block_group_cache_done(cache);
8954 ret = btrfs_trim_block_group(cache,
8955 &group_trimmed,
8956 start,
8957 end,
8958 range->minlen);
8960 trimmed += group_trimmed;
8961 if (ret) {
8962 btrfs_put_block_group(cache);
8963 break;
8967 cache = next_block_group(fs_info->tree_root, cache);
8970 range->len = trimmed;
8971 return ret;