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.
21 #include "kerncompat.h"
22 #include "radix-tree.h"
25 #include "print-tree.h"
26 #include "transaction.h"
30 #define BLOCK_GROUP_DATA EXTENT_WRITEBACK
31 #define BLOCK_GROUP_METADATA EXTENT_UPTODATE
32 #define BLOCK_GROUP_SYSTEM EXTENT_NEW
34 #define BLOCK_GROUP_DIRTY EXTENT_DIRTY
36 #define PENDING_EXTENT_INSERT 0
37 #define PENDING_EXTENT_DELETE 1
38 #define PENDING_BACKREF_UPDATE 2
40 struct pending_extent_op {
45 struct btrfs_disk_key key;
49 static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
50 struct btrfs_root *root,
51 u64 root_objectid, u64 generation,
52 u64 flags, struct btrfs_disk_key *key,
53 int level, struct btrfs_key *ins);
54 static int __free_extent(struct btrfs_trans_handle *trans,
55 struct btrfs_root *root,
56 u64 bytenr, u64 num_bytes, u64 parent,
57 u64 root_objectid, u64 owner_objectid,
58 u64 owner_offset, int refs_to_drop);
59 static int finish_current_insert(struct btrfs_trans_handle *trans, struct
60 btrfs_root *extent_root);
61 static int del_pending_extents(struct btrfs_trans_handle *trans, struct
62 btrfs_root *extent_root);
64 static int remove_sb_from_cache(struct btrfs_root *root,
65 struct btrfs_block_group_cache *cache)
71 struct extent_io_tree *free_space_cache;
73 free_space_cache = &root->fs_info->free_space_cache;
74 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
75 bytenr = btrfs_sb_offset(i);
76 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
77 cache->key.objectid, bytenr, 0,
78 &logical, &nr, &stripe_len);
81 clear_extent_dirty(free_space_cache, logical[nr],
82 logical[nr] + stripe_len - 1, GFP_NOFS);
89 static int cache_block_group(struct btrfs_root *root,
90 struct btrfs_block_group_cache *block_group)
92 struct btrfs_path *path;
95 struct extent_buffer *leaf;
96 struct extent_io_tree *free_space_cache;
104 root = root->fs_info->extent_root;
105 free_space_cache = &root->fs_info->free_space_cache;
107 if (block_group->cached)
110 path = btrfs_alloc_path();
115 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
118 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
119 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
124 leaf = path->nodes[0];
125 slot = path->slots[0];
126 if (slot >= btrfs_header_nritems(leaf)) {
127 ret = btrfs_next_leaf(root, path);
136 btrfs_item_key_to_cpu(leaf, &key, slot);
137 if (key.objectid < block_group->key.objectid) {
140 if (key.objectid >= block_group->key.objectid +
141 block_group->key.offset) {
145 if (btrfs_key_type(&key) == BTRFS_EXTENT_ITEM_KEY) {
146 if (key.objectid > last) {
147 hole_size = key.objectid - last;
148 set_extent_dirty(free_space_cache, last,
149 last + hole_size - 1,
152 last = key.objectid + key.offset;
158 if (block_group->key.objectid +
159 block_group->key.offset > last) {
160 hole_size = block_group->key.objectid +
161 block_group->key.offset - last;
162 set_extent_dirty(free_space_cache, last,
163 last + hole_size - 1, GFP_NOFS);
165 remove_sb_from_cache(root, block_group);
166 block_group->cached = 1;
168 btrfs_free_path(path);
172 struct btrfs_block_group_cache *btrfs_lookup_first_block_group(struct
176 struct extent_io_tree *block_group_cache;
177 struct btrfs_block_group_cache *block_group = NULL;
183 bytenr = max_t(u64, bytenr,
184 BTRFS_SUPER_INFO_OFFSET + BTRFS_SUPER_INFO_SIZE);
185 block_group_cache = &info->block_group_cache;
186 ret = find_first_extent_bit(block_group_cache,
187 bytenr, &start, &end,
188 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA |
193 ret = get_state_private(block_group_cache, start, &ptr);
197 block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
201 struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
205 struct extent_io_tree *block_group_cache;
206 struct btrfs_block_group_cache *block_group = NULL;
212 block_group_cache = &info->block_group_cache;
213 ret = find_first_extent_bit(block_group_cache,
214 bytenr, &start, &end,
215 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA |
220 ret = get_state_private(block_group_cache, start, &ptr);
224 block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
225 if (block_group->key.objectid <= bytenr && bytenr <
226 block_group->key.objectid + block_group->key.offset)
231 static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
233 return (cache->flags & bits) == bits;
236 static int noinline find_search_start(struct btrfs_root *root,
237 struct btrfs_block_group_cache **cache_ret,
238 u64 *start_ret, int num, int data)
241 struct btrfs_block_group_cache *cache = *cache_ret;
245 u64 search_start = *start_ret;
252 ret = cache_block_group(root, cache);
256 last = max(search_start, cache->key.objectid);
257 if (cache->ro || !block_group_bits(cache, data)) {
262 ret = find_first_extent_bit(&root->fs_info->free_space_cache,
263 last, &start, &end, EXTENT_DIRTY);
268 start = max(last, start);
270 if (last - start < num) {
273 if (start + num > cache->key.objectid + cache->key.offset) {
280 cache = btrfs_lookup_block_group(root->fs_info, search_start);
282 printk("Unable to find block group for %llu\n",
283 (unsigned long long)search_start);
289 last = cache->key.objectid + cache->key.offset;
291 cache = btrfs_lookup_first_block_group(root->fs_info, last);
301 cache = btrfs_find_block_group(root, cache, last, data, 0);
302 cache = btrfs_find_block_group(root, cache, last, data, 0);
310 static u64 div_factor(u64 num, int factor)
319 static int block_group_state_bits(u64 flags)
322 if (flags & BTRFS_BLOCK_GROUP_DATA)
323 bits |= BLOCK_GROUP_DATA;
324 if (flags & BTRFS_BLOCK_GROUP_METADATA)
325 bits |= BLOCK_GROUP_METADATA;
326 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
327 bits |= BLOCK_GROUP_SYSTEM;
331 struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
332 struct btrfs_block_group_cache
333 *hint, u64 search_start,
336 struct btrfs_block_group_cache *cache;
337 struct extent_io_tree *block_group_cache;
338 struct btrfs_block_group_cache *found_group = NULL;
339 struct btrfs_fs_info *info = root->fs_info;
352 block_group_cache = &info->block_group_cache;
357 bit = block_group_state_bits(data);
360 struct btrfs_block_group_cache *shint;
361 shint = btrfs_lookup_block_group(info, search_start);
362 if (shint && !shint->ro && block_group_bits(shint, data)) {
363 used = btrfs_block_group_used(&shint->item);
364 if (used + shint->pinned <
365 div_factor(shint->key.offset, factor)) {
370 if (hint && !hint->ro && block_group_bits(hint, data)) {
371 used = btrfs_block_group_used(&hint->item);
372 if (used + hint->pinned <
373 div_factor(hint->key.offset, factor)) {
376 last = hint->key.objectid + hint->key.offset;
380 hint_last = max(hint->key.objectid, search_start);
382 hint_last = search_start;
388 ret = find_first_extent_bit(block_group_cache, last,
393 ret = get_state_private(block_group_cache, start, &ptr);
397 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
398 last = cache->key.objectid + cache->key.offset;
399 used = btrfs_block_group_used(&cache->item);
401 if (!cache->ro && block_group_bits(cache, data)) {
403 free_check = cache->key.offset;
405 free_check = div_factor(cache->key.offset,
408 if (used + cache->pinned < free_check) {
425 * Back reference rules. Back refs have three main goals:
427 * 1) differentiate between all holders of references to an extent so that
428 * when a reference is dropped we can make sure it was a valid reference
429 * before freeing the extent.
431 * 2) Provide enough information to quickly find the holders of an extent
432 * if we notice a given block is corrupted or bad.
434 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
435 * maintenance. This is actually the same as #2, but with a slightly
436 * different use case.
438 * There are two kinds of back refs. The implicit back refs is optimized
439 * for pointers in non-shared tree blocks. For a given pointer in a block,
440 * back refs of this kind provide information about the block's owner tree
441 * and the pointer's key. These information allow us to find the block by
442 * b-tree searching. The full back refs is for pointers in tree blocks not
443 * referenced by their owner trees. The location of tree block is recorded
444 * in the back refs. Actually the full back refs is generic, and can be
445 * used in all cases the implicit back refs is used. The major shortcoming
446 * of the full back refs is its overhead. Every time a tree block gets
447 * COWed, we have to update back refs entry for all pointers in it.
449 * For a newly allocated tree block, we use implicit back refs for
450 * pointers in it. This means most tree related operations only involve
451 * implicit back refs. For a tree block created in old transaction, the
452 * only way to drop a reference to it is COW it. So we can detect the
453 * event that tree block loses its owner tree's reference and do the
454 * back refs conversion.
456 * When a tree block is COW'd through a tree, there are four cases:
458 * The reference count of the block is one and the tree is the block's
459 * owner tree. Nothing to do in this case.
461 * The reference count of the block is one and the tree is not the
462 * block's owner tree. In this case, full back refs is used for pointers
463 * in the block. Remove these full back refs, add implicit back refs for
464 * every pointers in the new block.
466 * The reference count of the block is greater than one and the tree is
467 * the block's owner tree. In this case, implicit back refs is used for
468 * pointers in the block. Add full back refs for every pointers in the
469 * block, increase lower level extents' reference counts. The original
470 * implicit back refs are entailed to the new block.
472 * The reference count of the block is greater than one and the tree is
473 * not the block's owner tree. Add implicit back refs for every pointer in
474 * the new block, increase lower level extents' reference count.
476 * Back Reference Key composing:
478 * The key objectid corresponds to the first byte in the extent,
479 * The key type is used to differentiate between types of back refs.
480 * There are different meanings of the key offset for different types
483 * File extents can be referenced by:
485 * - multiple snapshots, subvolumes, or different generations in one subvol
486 * - different files inside a single subvolume
487 * - different offsets inside a file (bookend extents in file.c)
489 * The extent ref structure for the implicit back refs has fields for:
491 * - Objectid of the subvolume root
492 * - objectid of the file holding the reference
493 * - original offset in the file
494 * - how many bookend extents
496 * The key offset for the implicit back refs is hash of the first
499 * The extent ref structure for the full back refs has field for:
501 * - number of pointers in the tree leaf
503 * The key offset for the implicit back refs is the first byte of
506 * When a file extent is allocated, The implicit back refs is used.
507 * the fields are filled in:
509 * (root_key.objectid, inode objectid, offset in file, 1)
511 * When a file extent is removed file truncation, we find the
512 * corresponding implicit back refs and check the following fields:
514 * (btrfs_header_owner(leaf), inode objectid, offset in file)
516 * Btree extents can be referenced by:
518 * - Different subvolumes
520 * Both the implicit back refs and the full back refs for tree blocks
521 * only consist of key. The key offset for the implicit back refs is
522 * objectid of block's owner tree. The key offset for the full back refs
523 * is the first byte of parent block.
525 * When implicit back refs is used, information about the lowest key and
526 * level of the tree block are required. These information are stored in
527 * tree block info structure.
530 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
531 static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
532 struct btrfs_root *root,
533 struct btrfs_path *path,
534 u64 owner, u32 extra_size)
536 struct btrfs_extent_item *item;
537 struct btrfs_extent_item_v0 *ei0;
538 struct btrfs_extent_ref_v0 *ref0;
539 struct btrfs_tree_block_info *bi;
540 struct extent_buffer *leaf;
541 struct btrfs_key key;
542 struct btrfs_key found_key;
543 u32 new_size = sizeof(*item);
547 leaf = path->nodes[0];
548 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
550 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
551 ei0 = btrfs_item_ptr(leaf, path->slots[0],
552 struct btrfs_extent_item_v0);
553 refs = btrfs_extent_refs_v0(leaf, ei0);
555 if (owner == (u64)-1) {
557 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
558 ret = btrfs_next_leaf(root, path);
562 leaf = path->nodes[0];
564 btrfs_item_key_to_cpu(leaf, &found_key,
566 BUG_ON(key.objectid != found_key.objectid);
567 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
571 ref0 = btrfs_item_ptr(leaf, path->slots[0],
572 struct btrfs_extent_ref_v0);
573 owner = btrfs_ref_objectid_v0(leaf, ref0);
577 btrfs_release_path(root, path);
579 if (owner < BTRFS_FIRST_FREE_OBJECTID)
580 new_size += sizeof(*bi);
582 new_size -= sizeof(*ei0);
583 ret = btrfs_search_slot(trans, root, &key, path, new_size, 1);
588 ret = btrfs_extend_item(trans, root, path, new_size);
591 leaf = path->nodes[0];
592 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
593 btrfs_set_extent_refs(leaf, item, refs);
594 /* FIXME: get real generation */
595 btrfs_set_extent_generation(leaf, item, 0);
596 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
597 btrfs_set_extent_flags(leaf, item,
598 BTRFS_EXTENT_FLAG_TREE_BLOCK |
599 BTRFS_BLOCK_FLAG_FULL_BACKREF);
600 bi = (struct btrfs_tree_block_info *)(item + 1);
601 /* FIXME: get first key of the block */
602 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
603 btrfs_set_tree_block_level(leaf, bi, (int)owner);
605 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
607 btrfs_mark_buffer_dirty(leaf);
612 static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
614 u32 high_crc = ~(u32)0;
615 u32 low_crc = ~(u32)0;
618 lenum = cpu_to_le64(root_objectid);
619 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
620 lenum = cpu_to_le64(owner);
621 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
622 lenum = cpu_to_le64(offset);
623 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
625 return ((u64)high_crc << 31) ^ (u64)low_crc;
628 static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
629 struct btrfs_extent_data_ref *ref)
631 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
632 btrfs_extent_data_ref_objectid(leaf, ref),
633 btrfs_extent_data_ref_offset(leaf, ref));
636 static int match_extent_data_ref(struct extent_buffer *leaf,
637 struct btrfs_extent_data_ref *ref,
638 u64 root_objectid, u64 owner, u64 offset)
640 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
641 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
642 btrfs_extent_data_ref_offset(leaf, ref) != offset)
647 static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
648 struct btrfs_root *root,
649 struct btrfs_path *path,
650 u64 bytenr, u64 parent,
652 u64 owner, u64 offset)
654 struct btrfs_key key;
655 struct btrfs_extent_data_ref *ref;
656 struct extent_buffer *leaf;
662 key.objectid = bytenr;
664 key.type = BTRFS_SHARED_DATA_REF_KEY;
667 key.type = BTRFS_EXTENT_DATA_REF_KEY;
668 key.offset = hash_extent_data_ref(root_objectid,
673 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
682 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
683 key.type = BTRFS_EXTENT_REF_V0_KEY;
684 btrfs_release_path(root, path);
685 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
696 leaf = path->nodes[0];
697 nritems = btrfs_header_nritems(leaf);
699 if (path->slots[0] >= nritems) {
700 ret = btrfs_next_leaf(root, path);
706 leaf = path->nodes[0];
707 nritems = btrfs_header_nritems(leaf);
711 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
712 if (key.objectid != bytenr ||
713 key.type != BTRFS_EXTENT_DATA_REF_KEY)
716 ref = btrfs_item_ptr(leaf, path->slots[0],
717 struct btrfs_extent_data_ref);
719 if (match_extent_data_ref(leaf, ref, root_objectid,
722 btrfs_release_path(root, path);
734 static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
735 struct btrfs_root *root,
736 struct btrfs_path *path,
737 u64 bytenr, u64 parent,
738 u64 root_objectid, u64 owner,
739 u64 offset, int refs_to_add)
741 struct btrfs_key key;
742 struct extent_buffer *leaf;
747 key.objectid = bytenr;
749 key.type = BTRFS_SHARED_DATA_REF_KEY;
751 size = sizeof(struct btrfs_shared_data_ref);
753 key.type = BTRFS_EXTENT_DATA_REF_KEY;
754 key.offset = hash_extent_data_ref(root_objectid,
756 size = sizeof(struct btrfs_extent_data_ref);
759 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
760 if (ret && ret != -EEXIST)
763 leaf = path->nodes[0];
765 struct btrfs_shared_data_ref *ref;
766 ref = btrfs_item_ptr(leaf, path->slots[0],
767 struct btrfs_shared_data_ref);
769 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
771 num_refs = btrfs_shared_data_ref_count(leaf, ref);
772 num_refs += refs_to_add;
773 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
776 struct btrfs_extent_data_ref *ref;
777 while (ret == -EEXIST) {
778 ref = btrfs_item_ptr(leaf, path->slots[0],
779 struct btrfs_extent_data_ref);
780 if (match_extent_data_ref(leaf, ref, root_objectid,
783 btrfs_release_path(root, path);
786 ret = btrfs_insert_empty_item(trans, root, path, &key,
788 if (ret && ret != -EEXIST)
791 leaf = path->nodes[0];
793 ref = btrfs_item_ptr(leaf, path->slots[0],
794 struct btrfs_extent_data_ref);
796 btrfs_set_extent_data_ref_root(leaf, ref,
798 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
799 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
800 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
802 num_refs = btrfs_extent_data_ref_count(leaf, ref);
803 num_refs += refs_to_add;
804 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
807 btrfs_mark_buffer_dirty(leaf);
810 btrfs_release_path(root, path);
814 static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
815 struct btrfs_root *root,
816 struct btrfs_path *path,
819 struct btrfs_key key;
820 struct btrfs_extent_data_ref *ref1 = NULL;
821 struct btrfs_shared_data_ref *ref2 = NULL;
822 struct extent_buffer *leaf;
826 leaf = path->nodes[0];
827 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
829 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
830 ref1 = btrfs_item_ptr(leaf, path->slots[0],
831 struct btrfs_extent_data_ref);
832 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
833 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
834 ref2 = btrfs_item_ptr(leaf, path->slots[0],
835 struct btrfs_shared_data_ref);
836 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
837 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
838 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
839 struct btrfs_extent_ref_v0 *ref0;
840 ref0 = btrfs_item_ptr(leaf, path->slots[0],
841 struct btrfs_extent_ref_v0);
842 num_refs = btrfs_ref_count_v0(leaf, ref0);
848 BUG_ON(num_refs < refs_to_drop);
849 num_refs -= refs_to_drop;
852 ret = btrfs_del_item(trans, root, path);
854 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
855 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
856 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
857 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
858 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
860 struct btrfs_extent_ref_v0 *ref0;
861 ref0 = btrfs_item_ptr(leaf, path->slots[0],
862 struct btrfs_extent_ref_v0);
863 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
866 btrfs_mark_buffer_dirty(leaf);
871 static noinline u32 extent_data_ref_count(struct btrfs_root *root,
872 struct btrfs_path *path,
873 struct btrfs_extent_inline_ref *iref)
875 struct btrfs_key key;
876 struct extent_buffer *leaf;
877 struct btrfs_extent_data_ref *ref1;
878 struct btrfs_shared_data_ref *ref2;
881 leaf = path->nodes[0];
882 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
884 if (btrfs_extent_inline_ref_type(leaf, iref) ==
885 BTRFS_EXTENT_DATA_REF_KEY) {
886 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
887 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
889 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
890 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
892 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
893 ref1 = btrfs_item_ptr(leaf, path->slots[0],
894 struct btrfs_extent_data_ref);
895 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
896 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
897 ref2 = btrfs_item_ptr(leaf, path->slots[0],
898 struct btrfs_shared_data_ref);
899 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
900 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
901 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
902 struct btrfs_extent_ref_v0 *ref0;
903 ref0 = btrfs_item_ptr(leaf, path->slots[0],
904 struct btrfs_extent_ref_v0);
905 num_refs = btrfs_ref_count_v0(leaf, ref0);
913 static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
914 struct btrfs_root *root,
915 struct btrfs_path *path,
916 u64 bytenr, u64 parent,
919 struct btrfs_key key;
922 key.objectid = bytenr;
924 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
927 key.type = BTRFS_TREE_BLOCK_REF_KEY;
928 key.offset = root_objectid;
931 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
934 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
935 if (ret == -ENOENT && parent) {
936 btrfs_release_path(root, path);
937 key.type = BTRFS_EXTENT_REF_V0_KEY;
938 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
946 static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
947 struct btrfs_root *root,
948 struct btrfs_path *path,
949 u64 bytenr, u64 parent,
952 struct btrfs_key key;
955 key.objectid = bytenr;
957 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
960 key.type = BTRFS_TREE_BLOCK_REF_KEY;
961 key.offset = root_objectid;
964 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
966 btrfs_release_path(root, path);
970 static inline int extent_ref_type(u64 parent, u64 owner)
972 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
974 return BTRFS_SHARED_BLOCK_REF_KEY;
976 return BTRFS_TREE_BLOCK_REF_KEY;
979 return BTRFS_SHARED_DATA_REF_KEY;
981 return BTRFS_EXTENT_DATA_REF_KEY;
985 static int find_next_key(struct btrfs_path *path, struct btrfs_key *key)
989 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
990 if (!path->nodes[level])
992 if (path->slots[level] + 1 >=
993 btrfs_header_nritems(path->nodes[level]))
996 btrfs_item_key_to_cpu(path->nodes[level], key,
997 path->slots[level] + 1);
999 btrfs_node_key_to_cpu(path->nodes[level], key,
1000 path->slots[level] + 1);
1006 static int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1007 struct btrfs_root *root,
1008 struct btrfs_path *path,
1009 struct btrfs_extent_inline_ref **ref_ret,
1010 u64 bytenr, u64 num_bytes,
1011 u64 parent, u64 root_objectid,
1012 u64 owner, u64 offset, int insert)
1014 struct btrfs_key key;
1015 struct extent_buffer *leaf;
1016 struct btrfs_extent_item *ei;
1017 struct btrfs_extent_inline_ref *iref;
1028 key.objectid = bytenr;
1029 key.type = BTRFS_EXTENT_ITEM_KEY;
1030 key.offset = num_bytes;
1032 want = extent_ref_type(parent, owner);
1034 extra_size = btrfs_extent_inline_ref_size(want);
1037 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1044 leaf = path->nodes[0];
1045 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1046 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1047 if (item_size < sizeof(*ei)) {
1052 ret = convert_extent_item_v0(trans, root, path, owner,
1058 leaf = path->nodes[0];
1059 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1062 BUG_ON(item_size < sizeof(*ei));
1064 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1065 flags = btrfs_extent_flags(leaf, ei);
1067 ptr = (unsigned long)(ei + 1);
1068 end = (unsigned long)ei + item_size;
1070 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
1071 ptr += sizeof(struct btrfs_tree_block_info);
1074 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_DATA));
1083 iref = (struct btrfs_extent_inline_ref *)ptr;
1084 type = btrfs_extent_inline_ref_type(leaf, iref);
1088 ptr += btrfs_extent_inline_ref_size(type);
1092 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1093 struct btrfs_extent_data_ref *dref;
1094 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1095 if (match_extent_data_ref(leaf, dref, root_objectid,
1100 if (hash_extent_data_ref_item(leaf, dref) <
1101 hash_extent_data_ref(root_objectid, owner, offset))
1105 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1107 if (parent == ref_offset) {
1111 if (ref_offset < parent)
1114 if (root_objectid == ref_offset) {
1118 if (ref_offset < root_objectid)
1122 ptr += btrfs_extent_inline_ref_size(type);
1124 if (err == -ENOENT && insert) {
1125 if (item_size + extra_size >=
1126 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1131 * To add new inline back ref, we have to make sure
1132 * there is no corresponding back ref item.
1133 * For simplicity, we just do not add new inline back
1134 * ref if there is any back ref item.
1136 if (find_next_key(path, &key) == 0 && key.objectid == bytenr &&
1137 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
1142 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1147 static int setup_inline_extent_backref(struct btrfs_trans_handle *trans,
1148 struct btrfs_root *root,
1149 struct btrfs_path *path,
1150 struct btrfs_extent_inline_ref *iref,
1151 u64 parent, u64 root_objectid,
1152 u64 owner, u64 offset, int refs_to_add)
1154 struct extent_buffer *leaf;
1155 struct btrfs_extent_item *ei;
1158 unsigned long item_offset;
1164 leaf = path->nodes[0];
1165 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1166 item_offset = (unsigned long)iref - (unsigned long)ei;
1168 type = extent_ref_type(parent, owner);
1169 size = btrfs_extent_inline_ref_size(type);
1171 ret = btrfs_extend_item(trans, root, path, size);
1174 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1175 refs = btrfs_extent_refs(leaf, ei);
1176 refs += refs_to_add;
1177 btrfs_set_extent_refs(leaf, ei, refs);
1179 ptr = (unsigned long)ei + item_offset;
1180 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1181 if (ptr < end - size)
1182 memmove_extent_buffer(leaf, ptr + size, ptr,
1185 iref = (struct btrfs_extent_inline_ref *)ptr;
1186 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1187 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1188 struct btrfs_extent_data_ref *dref;
1189 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1190 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1191 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1192 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1193 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1194 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1195 struct btrfs_shared_data_ref *sref;
1196 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1197 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1198 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1199 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1200 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1202 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1204 btrfs_mark_buffer_dirty(leaf);
1208 static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1209 struct btrfs_root *root,
1210 struct btrfs_path *path,
1211 struct btrfs_extent_inline_ref **ref_ret,
1212 u64 bytenr, u64 num_bytes, u64 parent,
1213 u64 root_objectid, u64 owner, u64 offset)
1217 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1218 bytenr, num_bytes, parent,
1219 root_objectid, owner, offset, 0);
1223 btrfs_release_path(root, path);
1226 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1227 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1230 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1231 root_objectid, owner, offset);
1236 static int update_inline_extent_backref(struct btrfs_trans_handle *trans,
1237 struct btrfs_root *root,
1238 struct btrfs_path *path,
1239 struct btrfs_extent_inline_ref *iref,
1242 struct extent_buffer *leaf;
1243 struct btrfs_extent_item *ei;
1244 struct btrfs_extent_data_ref *dref = NULL;
1245 struct btrfs_shared_data_ref *sref = NULL;
1254 leaf = path->nodes[0];
1255 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1256 refs = btrfs_extent_refs(leaf, ei);
1257 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1258 refs += refs_to_mod;
1259 btrfs_set_extent_refs(leaf, ei, refs);
1261 type = btrfs_extent_inline_ref_type(leaf, iref);
1263 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1264 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1265 refs = btrfs_extent_data_ref_count(leaf, dref);
1266 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1267 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1268 refs = btrfs_shared_data_ref_count(leaf, sref);
1271 BUG_ON(refs_to_mod != -1);
1274 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1275 refs += refs_to_mod;
1278 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1279 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1281 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1283 size = btrfs_extent_inline_ref_size(type);
1284 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1285 ptr = (unsigned long)iref;
1286 end = (unsigned long)ei + item_size;
1287 if (ptr + size < end)
1288 memmove_extent_buffer(leaf, ptr, ptr + size,
1291 ret = btrfs_truncate_item(trans, root, path, item_size, 1);
1294 btrfs_mark_buffer_dirty(leaf);
1298 static int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1299 struct btrfs_root *root,
1300 struct btrfs_path *path,
1301 u64 bytenr, u64 num_bytes, u64 parent,
1302 u64 root_objectid, u64 owner,
1303 u64 offset, int refs_to_add)
1305 struct btrfs_extent_inline_ref *iref;
1308 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1309 bytenr, num_bytes, parent,
1310 root_objectid, owner, offset, 1);
1312 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
1313 ret = update_inline_extent_backref(trans, root, path, iref,
1315 } else if (ret == -ENOENT) {
1316 ret = setup_inline_extent_backref(trans, root, path, iref,
1317 parent, root_objectid,
1318 owner, offset, refs_to_add);
1323 static int insert_extent_backref(struct btrfs_trans_handle *trans,
1324 struct btrfs_root *root,
1325 struct btrfs_path *path,
1326 u64 bytenr, u64 parent, u64 root_objectid,
1327 u64 owner, u64 offset, int refs_to_add)
1331 if (owner >= BTRFS_FIRST_FREE_OBJECTID) {
1332 ret = insert_extent_data_ref(trans, root, path, bytenr,
1333 parent, root_objectid,
1334 owner, offset, refs_to_add);
1336 BUG_ON(refs_to_add != 1);
1337 ret = insert_tree_block_ref(trans, root, path, bytenr,
1338 parent, root_objectid);
1343 static int remove_extent_backref(struct btrfs_trans_handle *trans,
1344 struct btrfs_root *root,
1345 struct btrfs_path *path,
1346 struct btrfs_extent_inline_ref *iref,
1347 int refs_to_drop, int is_data)
1351 BUG_ON(!is_data && refs_to_drop != 1);
1353 ret = update_inline_extent_backref(trans, root, path, iref,
1355 } else if (is_data) {
1356 ret = remove_extent_data_ref(trans, root, path, refs_to_drop);
1358 ret = btrfs_del_item(trans, root, path);
1363 int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1364 struct btrfs_root *root,
1365 u64 bytenr, u64 num_bytes, u64 parent,
1366 u64 root_objectid, u64 owner, u64 offset)
1368 struct btrfs_path *path;
1369 struct extent_buffer *leaf;
1370 struct btrfs_extent_item *item;
1375 path = btrfs_alloc_path();
1380 path->leave_spinning = 1;
1382 ret = insert_inline_extent_backref(trans, root->fs_info->extent_root,
1383 path, bytenr, num_bytes, parent,
1384 root_objectid, owner, offset, 1);
1388 if (ret != -EAGAIN) {
1393 leaf = path->nodes[0];
1394 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1395 refs = btrfs_extent_refs(leaf, item);
1396 btrfs_set_extent_refs(leaf, item, refs + 1);
1398 btrfs_mark_buffer_dirty(leaf);
1399 btrfs_release_path(root->fs_info->extent_root, path);
1402 path->leave_spinning = 1;
1404 /* now insert the actual backref */
1405 ret = insert_extent_backref(trans, root->fs_info->extent_root,
1406 path, bytenr, parent, root_objectid,
1411 btrfs_free_path(path);
1412 finish_current_insert(trans, root->fs_info->extent_root);
1413 del_pending_extents(trans, root->fs_info->extent_root);
1418 int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
1419 struct btrfs_root *root)
1421 finish_current_insert(trans, root->fs_info->extent_root);
1422 del_pending_extents(trans, root->fs_info->extent_root);
1426 int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
1427 struct btrfs_root *root, u64 bytenr,
1428 u64 num_bytes, u64 *refs, u64 *flags)
1430 struct btrfs_path *path;
1432 struct btrfs_key key;
1433 struct extent_buffer *l;
1434 struct btrfs_extent_item *item;
1439 WARN_ON(num_bytes < root->sectorsize);
1440 path = btrfs_alloc_path();
1442 key.objectid = bytenr;
1443 key.offset = num_bytes;
1444 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
1445 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
1450 btrfs_print_leaf(root, path->nodes[0]);
1451 printk("failed to find block number %Lu\n",
1452 (unsigned long long)bytenr);
1457 item_size = btrfs_item_size_nr(l, path->slots[0]);
1458 if (item_size >= sizeof(*item)) {
1459 item = btrfs_item_ptr(l, path->slots[0],
1460 struct btrfs_extent_item);
1461 num_refs = btrfs_extent_refs(l, item);
1462 extent_flags = btrfs_extent_flags(l, item);
1464 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1465 struct btrfs_extent_item_v0 *ei0;
1466 BUG_ON(item_size != sizeof(*ei0));
1467 ei0 = btrfs_item_ptr(l, path->slots[0],
1468 struct btrfs_extent_item_v0);
1469 num_refs = btrfs_extent_refs_v0(l, ei0);
1470 /* FIXME: this isn't correct for data */
1471 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
1476 BUG_ON(num_refs == 0);
1477 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
1481 *flags = extent_flags;
1483 btrfs_free_path(path);
1487 int btrfs_set_block_flags(struct btrfs_trans_handle *trans,
1488 struct btrfs_root *root,
1489 u64 bytenr, u64 num_bytes, u64 flags)
1491 struct btrfs_path *path;
1493 struct btrfs_key key;
1494 struct extent_buffer *l;
1495 struct btrfs_extent_item *item;
1498 WARN_ON(num_bytes < root->sectorsize);
1499 path = btrfs_alloc_path();
1501 key.objectid = bytenr;
1502 key.offset = num_bytes;
1503 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
1504 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
1509 btrfs_print_leaf(root, path->nodes[0]);
1510 printk("failed to find block number %Lu\n",
1511 (unsigned long long)bytenr);
1515 item_size = btrfs_item_size_nr(l, path->slots[0]);
1516 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1517 if (item_size < sizeof(*item)) {
1518 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
1524 item_size = btrfs_item_size_nr(l, path->slots[0]);
1527 BUG_ON(item_size < sizeof(*item));
1528 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
1529 flags |= btrfs_extent_flags(l, item);
1530 btrfs_set_extent_flags(l, item, flags);
1532 btrfs_free_path(path);
1533 finish_current_insert(trans, root->fs_info->extent_root);
1534 del_pending_extents(trans, root->fs_info->extent_root);
1538 static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
1539 struct btrfs_root *root,
1540 struct extent_buffer *buf,
1541 int record_parent, int inc)
1548 struct btrfs_key key;
1549 struct btrfs_file_extent_item *fi;
1553 int (*process_func)(struct btrfs_trans_handle *trans,
1554 struct btrfs_root *root,
1555 u64, u64, u64, u64, u64, u64);
1557 ref_root = btrfs_header_owner(buf);
1558 nritems = btrfs_header_nritems(buf);
1559 level = btrfs_header_level(buf);
1561 if (!root->ref_cows && level == 0)
1565 process_func = btrfs_inc_extent_ref;
1567 process_func = btrfs_free_extent;
1570 parent = buf->start;
1574 for (i = 0; i < nritems; i++) {
1577 btrfs_item_key_to_cpu(buf, &key, i);
1578 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
1580 fi = btrfs_item_ptr(buf, i,
1581 struct btrfs_file_extent_item);
1582 if (btrfs_file_extent_type(buf, fi) ==
1583 BTRFS_FILE_EXTENT_INLINE)
1585 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
1589 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
1590 key.offset -= btrfs_file_extent_offset(buf, fi);
1591 ret = process_func(trans, root, bytenr, num_bytes,
1592 parent, ref_root, key.objectid,
1599 bytenr = btrfs_node_blockptr(buf, i);
1600 num_bytes = btrfs_level_size(root, level - 1);
1601 ret = process_func(trans, root, bytenr, num_bytes,
1602 parent, ref_root, level - 1, 0);
1615 int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1616 struct extent_buffer *buf, int record_parent)
1618 return __btrfs_mod_ref(trans, root, buf, record_parent, 1);
1621 int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1622 struct extent_buffer *buf, int record_parent)
1624 return __btrfs_mod_ref(trans, root, buf, record_parent, 0);
1627 static int write_one_cache_group(struct btrfs_trans_handle *trans,
1628 struct btrfs_root *root,
1629 struct btrfs_path *path,
1630 struct btrfs_block_group_cache *cache)
1634 struct btrfs_root *extent_root = root->fs_info->extent_root;
1636 struct extent_buffer *leaf;
1638 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
1643 leaf = path->nodes[0];
1644 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
1645 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
1646 btrfs_mark_buffer_dirty(leaf);
1647 btrfs_release_path(extent_root, path);
1649 finish_current_insert(trans, extent_root);
1650 pending_ret = del_pending_extents(trans, extent_root);
1659 int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1660 struct btrfs_root *root)
1662 struct extent_io_tree *block_group_cache;
1663 struct btrfs_block_group_cache *cache;
1665 struct btrfs_path *path;
1671 block_group_cache = &root->fs_info->block_group_cache;
1672 path = btrfs_alloc_path();
1677 ret = find_first_extent_bit(block_group_cache, last,
1678 &start, &end, BLOCK_GROUP_DIRTY);
1687 ret = get_state_private(block_group_cache, start, &ptr);
1690 clear_extent_bits(block_group_cache, start, end,
1691 BLOCK_GROUP_DIRTY, GFP_NOFS);
1693 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
1694 ret = write_one_cache_group(trans, root, path, cache);
1697 btrfs_free_path(path);
1701 static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
1704 struct list_head *head = &info->space_info;
1705 struct list_head *cur;
1706 struct btrfs_space_info *found;
1707 list_for_each(cur, head) {
1708 found = list_entry(cur, struct btrfs_space_info, list);
1709 if (found->flags == flags)
1716 static int update_space_info(struct btrfs_fs_info *info, u64 flags,
1717 u64 total_bytes, u64 bytes_used,
1718 struct btrfs_space_info **space_info)
1720 struct btrfs_space_info *found;
1722 found = __find_space_info(info, flags);
1724 found->total_bytes += total_bytes;
1725 found->bytes_used += bytes_used;
1726 WARN_ON(found->total_bytes < found->bytes_used);
1727 *space_info = found;
1730 found = kmalloc(sizeof(*found), GFP_NOFS);
1734 list_add(&found->list, &info->space_info);
1735 found->flags = flags;
1736 found->total_bytes = total_bytes;
1737 found->bytes_used = bytes_used;
1738 found->bytes_pinned = 0;
1740 *space_info = found;
1745 static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
1747 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
1748 BTRFS_BLOCK_GROUP_RAID1 |
1749 BTRFS_BLOCK_GROUP_RAID10 |
1750 BTRFS_BLOCK_GROUP_DUP);
1752 if (flags & BTRFS_BLOCK_GROUP_DATA)
1753 fs_info->avail_data_alloc_bits |= extra_flags;
1754 if (flags & BTRFS_BLOCK_GROUP_METADATA)
1755 fs_info->avail_metadata_alloc_bits |= extra_flags;
1756 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
1757 fs_info->avail_system_alloc_bits |= extra_flags;
1761 static int do_chunk_alloc(struct btrfs_trans_handle *trans,
1762 struct btrfs_root *extent_root, u64 alloc_bytes,
1765 struct btrfs_space_info *space_info;
1771 space_info = __find_space_info(extent_root->fs_info, flags);
1773 ret = update_space_info(extent_root->fs_info, flags,
1777 BUG_ON(!space_info);
1779 if (space_info->full)
1782 thresh = div_factor(space_info->total_bytes, 7);
1783 if ((space_info->bytes_used + space_info->bytes_pinned + alloc_bytes) <
1787 ret = btrfs_alloc_chunk(trans, extent_root, &start, &num_bytes, flags);
1788 if (ret == -ENOSPC) {
1789 space_info->full = 1;
1795 ret = btrfs_make_block_group(trans, extent_root, 0, flags,
1796 BTRFS_FIRST_CHUNK_TREE_OBJECTID, start, num_bytes);
1801 static int update_block_group(struct btrfs_trans_handle *trans,
1802 struct btrfs_root *root,
1803 u64 bytenr, u64 num_bytes, int alloc,
1806 struct btrfs_block_group_cache *cache;
1807 struct btrfs_fs_info *info = root->fs_info;
1808 u64 total = num_bytes;
1814 /* block accounting for super block */
1815 old_val = btrfs_super_bytes_used(&info->super_copy);
1817 old_val += num_bytes;
1819 old_val -= num_bytes;
1820 btrfs_set_super_bytes_used(&info->super_copy, old_val);
1822 /* block accounting for root item */
1823 old_val = btrfs_root_used(&root->root_item);
1825 old_val += num_bytes;
1827 old_val -= num_bytes;
1828 btrfs_set_root_used(&root->root_item, old_val);
1831 cache = btrfs_lookup_block_group(info, bytenr);
1835 byte_in_group = bytenr - cache->key.objectid;
1836 WARN_ON(byte_in_group > cache->key.offset);
1837 start = cache->key.objectid;
1838 end = start + cache->key.offset - 1;
1839 set_extent_bits(&info->block_group_cache, start, end,
1840 BLOCK_GROUP_DIRTY, GFP_NOFS);
1842 old_val = btrfs_block_group_used(&cache->item);
1843 num_bytes = min(total, cache->key.offset - byte_in_group);
1845 old_val += num_bytes;
1846 cache->space_info->bytes_used += num_bytes;
1848 old_val -= num_bytes;
1849 cache->space_info->bytes_used -= num_bytes;
1851 set_extent_dirty(&info->free_space_cache,
1852 bytenr, bytenr + num_bytes - 1,
1856 btrfs_set_block_group_used(&cache->item, old_val);
1858 bytenr += num_bytes;
1863 static int update_pinned_extents(struct btrfs_root *root,
1864 u64 bytenr, u64 num, int pin)
1867 struct btrfs_block_group_cache *cache;
1868 struct btrfs_fs_info *fs_info = root->fs_info;
1871 set_extent_dirty(&fs_info->pinned_extents,
1872 bytenr, bytenr + num - 1, GFP_NOFS);
1874 clear_extent_dirty(&fs_info->pinned_extents,
1875 bytenr, bytenr + num - 1, GFP_NOFS);
1878 cache = btrfs_lookup_block_group(fs_info, bytenr);
1880 len = min(num, cache->key.offset -
1881 (bytenr - cache->key.objectid));
1883 cache->pinned += len;
1884 cache->space_info->bytes_pinned += len;
1885 fs_info->total_pinned += len;
1887 cache->pinned -= len;
1888 cache->space_info->bytes_pinned -= len;
1889 fs_info->total_pinned -= len;
1897 int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy)
1902 struct extent_io_tree *pinned_extents = &root->fs_info->pinned_extents;
1906 ret = find_first_extent_bit(pinned_extents, last,
1907 &start, &end, EXTENT_DIRTY);
1910 set_extent_dirty(copy, start, end, GFP_NOFS);
1916 int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1917 struct btrfs_root *root,
1918 struct extent_io_tree *unpin)
1923 struct extent_io_tree *free_space_cache;
1924 free_space_cache = &root->fs_info->free_space_cache;
1927 ret = find_first_extent_bit(unpin, 0, &start, &end,
1931 update_pinned_extents(root, start, end + 1 - start, 0);
1932 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1933 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
1938 static int finish_current_insert(struct btrfs_trans_handle *trans,
1939 struct btrfs_root *extent_root)
1944 struct btrfs_fs_info *info = extent_root->fs_info;
1945 struct btrfs_path *path;
1946 struct pending_extent_op *extent_op;
1947 struct btrfs_key key;
1950 path = btrfs_alloc_path();
1953 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1954 &end, EXTENT_LOCKED);
1958 ret = get_state_private(&info->extent_ins, start, &priv);
1960 extent_op = (struct pending_extent_op *)(unsigned long)priv;
1962 if (extent_op->type == PENDING_EXTENT_INSERT) {
1963 key.objectid = start;
1964 key.offset = end + 1 - start;
1965 key.type = BTRFS_EXTENT_ITEM_KEY;
1966 ret = alloc_reserved_tree_block(trans, extent_root,
1967 extent_root->root_key.objectid,
1971 extent_op->level, &key);
1976 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1980 btrfs_free_path(path);
1984 static int pin_down_bytes(struct btrfs_trans_handle *trans,
1985 struct btrfs_root *root,
1986 u64 bytenr, u64 num_bytes, int is_data)
1989 struct extent_buffer *buf;
1994 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
1998 /* we can reuse a block if it hasn't been written
1999 * and it is from this transaction. We can't
2000 * reuse anything from the tree log root because
2001 * it has tiny sub-transactions.
2003 if (btrfs_buffer_uptodate(buf, 0)) {
2004 u64 header_owner = btrfs_header_owner(buf);
2005 u64 header_transid = btrfs_header_generation(buf);
2006 if (header_owner != BTRFS_TREE_LOG_OBJECTID &&
2007 header_transid == trans->transid &&
2008 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
2009 clean_tree_block(NULL, root, buf);
2010 free_extent_buffer(buf);
2014 free_extent_buffer(buf);
2016 update_pinned_extents(root, bytenr, num_bytes, 1);
2023 * remove an extent from the root, returns 0 on success
2025 static int __free_extent(struct btrfs_trans_handle *trans,
2026 struct btrfs_root *root,
2027 u64 bytenr, u64 num_bytes, u64 parent,
2028 u64 root_objectid, u64 owner_objectid,
2029 u64 owner_offset, int refs_to_drop)
2032 struct btrfs_key key;
2033 struct btrfs_path *path;
2034 struct btrfs_extent_ops *ops = root->fs_info->extent_ops;
2035 struct btrfs_root *extent_root = root->fs_info->extent_root;
2036 struct extent_buffer *leaf;
2037 struct btrfs_extent_item *ei;
2038 struct btrfs_extent_inline_ref *iref;
2041 int extent_slot = 0;
2042 int found_extent = 0;
2047 path = btrfs_alloc_path();
2052 path->leave_spinning = 1;
2054 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
2055 BUG_ON(!is_data && refs_to_drop != 1);
2057 ret = lookup_extent_backref(trans, extent_root, path, &iref,
2058 bytenr, num_bytes, parent,
2059 root_objectid, owner_objectid,
2062 extent_slot = path->slots[0];
2063 while (extent_slot >= 0) {
2064 btrfs_item_key_to_cpu(path->nodes[0], &key,
2066 if (key.objectid != bytenr)
2068 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
2069 key.offset == num_bytes) {
2073 if (path->slots[0] - extent_slot > 5)
2077 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2078 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
2079 if (found_extent && item_size < sizeof(*ei))
2082 if (!found_extent) {
2084 ret = remove_extent_backref(trans, extent_root, path,
2088 btrfs_release_path(extent_root, path);
2089 path->leave_spinning = 1;
2091 key.objectid = bytenr;
2092 key.type = BTRFS_EXTENT_ITEM_KEY;
2093 key.offset = num_bytes;
2095 ret = btrfs_search_slot(trans, extent_root,
2098 printk(KERN_ERR "umm, got %d back from search"
2099 ", was looking for %llu\n", ret,
2100 (unsigned long long)bytenr);
2101 btrfs_print_leaf(extent_root, path->nodes[0]);
2104 extent_slot = path->slots[0];
2107 btrfs_print_leaf(extent_root, path->nodes[0]);
2109 printk(KERN_ERR "btrfs unable to find ref byte nr %llu "
2110 "parent %llu root %llu owner %llu offset %llu\n",
2111 (unsigned long long)bytenr,
2112 (unsigned long long)parent,
2113 (unsigned long long)root_objectid,
2114 (unsigned long long)owner_objectid,
2115 (unsigned long long)owner_offset);
2118 leaf = path->nodes[0];
2119 item_size = btrfs_item_size_nr(leaf, extent_slot);
2120 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2121 if (item_size < sizeof(*ei)) {
2122 BUG_ON(found_extent || extent_slot != path->slots[0]);
2123 ret = convert_extent_item_v0(trans, extent_root, path,
2127 btrfs_release_path(extent_root, path);
2128 path->leave_spinning = 1;
2130 key.objectid = bytenr;
2131 key.type = BTRFS_EXTENT_ITEM_KEY;
2132 key.offset = num_bytes;
2134 ret = btrfs_search_slot(trans, extent_root, &key, path,
2137 printk(KERN_ERR "umm, got %d back from search"
2138 ", was looking for %llu\n", ret,
2139 (unsigned long long)bytenr);
2140 btrfs_print_leaf(extent_root, path->nodes[0]);
2143 extent_slot = path->slots[0];
2144 leaf = path->nodes[0];
2145 item_size = btrfs_item_size_nr(leaf, extent_slot);
2148 BUG_ON(item_size < sizeof(*ei));
2149 ei = btrfs_item_ptr(leaf, extent_slot,
2150 struct btrfs_extent_item);
2151 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID) {
2152 struct btrfs_tree_block_info *bi;
2153 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
2154 bi = (struct btrfs_tree_block_info *)(ei + 1);
2155 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
2158 refs = btrfs_extent_refs(leaf, ei);
2159 BUG_ON(refs < refs_to_drop);
2160 refs -= refs_to_drop;
2164 * In the case of inline back ref, reference count will
2165 * be updated by remove_extent_backref
2168 BUG_ON(!found_extent);
2170 btrfs_set_extent_refs(leaf, ei, refs);
2171 btrfs_mark_buffer_dirty(leaf);
2174 ret = remove_extent_backref(trans, extent_root, path,
2184 BUG_ON(is_data && refs_to_drop !=
2185 extent_data_ref_count(root, path, iref));
2187 BUG_ON(path->slots[0] != extent_slot);
2189 BUG_ON(path->slots[0] != extent_slot + 1);
2190 path->slots[0] = extent_slot;
2195 if (ops && ops->free_extent) {
2196 ret = ops->free_extent(root, bytenr, num_bytes);
2204 ret = pin_down_bytes(trans, root, bytenr, num_bytes,
2211 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
2214 btrfs_release_path(extent_root, path);
2217 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
2221 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
2225 btrfs_free_path(path);
2226 finish_current_insert(trans, extent_root);
2231 * find all the blocks marked as pending in the radix tree and remove
2232 * them from the extent map
2234 static int del_pending_extents(struct btrfs_trans_handle *trans, struct
2235 btrfs_root *extent_root)
2242 struct extent_io_tree *pending_del;
2243 struct extent_io_tree *extent_ins;
2244 struct pending_extent_op *extent_op;
2246 extent_ins = &extent_root->fs_info->extent_ins;
2247 pending_del = &extent_root->fs_info->pending_del;
2250 ret = find_first_extent_bit(pending_del, 0, &start, &end,
2255 ret = get_state_private(pending_del, start, &priv);
2257 extent_op = (struct pending_extent_op *)(unsigned long)priv;
2259 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
2262 if (!test_range_bit(extent_ins, start, end,
2263 EXTENT_LOCKED, 0)) {
2264 ret = __free_extent(trans, extent_root,
2265 start, end + 1 - start, 0,
2266 extent_root->root_key.objectid,
2267 extent_op->level, 0, 1);
2271 ret = get_state_private(extent_ins, start, &priv);
2273 extent_op = (struct pending_extent_op *)
2274 (unsigned long)priv;
2276 clear_extent_bits(extent_ins, start, end,
2277 EXTENT_LOCKED, GFP_NOFS);
2279 if (extent_op->type == PENDING_BACKREF_UPDATE)
2291 * remove an extent from the root, returns 0 on success
2294 int btrfs_free_extent(struct btrfs_trans_handle *trans,
2295 struct btrfs_root *root,
2296 u64 bytenr, u64 num_bytes, u64 parent,
2297 u64 root_objectid, u64 owner, u64 offset)
2299 struct btrfs_root *extent_root = root->fs_info->extent_root;
2303 WARN_ON(num_bytes < root->sectorsize);
2304 if (root == extent_root) {
2305 struct pending_extent_op *extent_op;
2307 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
2310 extent_op->type = PENDING_EXTENT_DELETE;
2311 extent_op->bytenr = bytenr;
2312 extent_op->num_bytes = num_bytes;
2313 extent_op->level = (int)owner;
2315 set_extent_bits(&root->fs_info->pending_del,
2316 bytenr, bytenr + num_bytes - 1,
2317 EXTENT_LOCKED, GFP_NOFS);
2318 set_state_private(&root->fs_info->pending_del,
2319 bytenr, (unsigned long)extent_op);
2322 ret = __free_extent(trans, root, bytenr, num_bytes, parent,
2323 root_objectid, owner, offset, 1);
2324 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
2325 return ret ? ret : pending_ret;
2328 static u64 stripe_align(struct btrfs_root *root, u64 val)
2330 u64 mask = ((u64)root->stripesize - 1);
2331 u64 ret = (val + mask) & ~mask;
2336 * walks the btree of allocated extents and find a hole of a given size.
2337 * The key ins is changed to record the hole:
2338 * ins->objectid == block start
2339 * ins->flags = BTRFS_EXTENT_ITEM_KEY
2340 * ins->offset == number of blocks
2341 * Any available blocks before search_start are skipped.
2343 static int noinline find_free_extent(struct btrfs_trans_handle *trans,
2344 struct btrfs_root *orig_root,
2345 u64 num_bytes, u64 empty_size,
2346 u64 search_start, u64 search_end,
2347 u64 hint_byte, struct btrfs_key *ins,
2348 u64 exclude_start, u64 exclude_nr,
2352 u64 orig_search_start = search_start;
2353 struct btrfs_root * root = orig_root->fs_info->extent_root;
2354 struct btrfs_fs_info *info = root->fs_info;
2355 u64 total_needed = num_bytes;
2356 struct btrfs_block_group_cache *block_group;
2360 WARN_ON(num_bytes < root->sectorsize);
2361 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
2364 block_group = btrfs_lookup_first_block_group(info, hint_byte);
2366 hint_byte = search_start;
2367 block_group = btrfs_find_block_group(root, block_group,
2368 hint_byte, data, 1);
2370 block_group = btrfs_find_block_group(root,
2372 search_start, data, 1);
2375 total_needed += empty_size;
2379 block_group = btrfs_lookup_first_block_group(info,
2382 block_group = btrfs_lookup_first_block_group(info,
2385 ret = find_search_start(root, &block_group, &search_start,
2386 total_needed, data);
2390 search_start = stripe_align(root, search_start);
2391 ins->objectid = search_start;
2392 ins->offset = num_bytes;
2394 if (ins->objectid + num_bytes >
2395 block_group->key.objectid + block_group->key.offset) {
2396 search_start = block_group->key.objectid +
2397 block_group->key.offset;
2401 if (test_range_bit(&info->extent_ins, ins->objectid,
2402 ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
2403 search_start = ins->objectid + num_bytes;
2407 if (test_range_bit(&info->pinned_extents, ins->objectid,
2408 ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
2409 search_start = ins->objectid + num_bytes;
2413 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
2414 ins->objectid < exclude_start + exclude_nr)) {
2415 search_start = exclude_start + exclude_nr;
2419 if (!(data & BTRFS_BLOCK_GROUP_DATA)) {
2420 block_group = btrfs_lookup_block_group(info, ins->objectid);
2422 trans->block_group = block_group;
2424 ins->offset = num_bytes;
2428 block_group = btrfs_lookup_first_block_group(info, search_start);
2430 search_start = orig_search_start;
2437 total_needed -= empty_size;
2443 block_group = btrfs_find_block_group(root, block_group,
2444 search_start, data, 0);
2451 static int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
2452 struct btrfs_root *root,
2453 u64 num_bytes, u64 empty_size,
2454 u64 hint_byte, u64 search_end,
2455 struct btrfs_key *ins, int data)
2458 u64 search_start = 0;
2460 struct btrfs_fs_info *info = root->fs_info;
2462 if (info->extent_ops) {
2463 struct btrfs_extent_ops *ops = info->extent_ops;
2464 ret = ops->alloc_extent(root, num_bytes, hint_byte, ins);
2470 alloc_profile = info->avail_data_alloc_bits &
2471 info->data_alloc_profile;
2472 data = BTRFS_BLOCK_GROUP_DATA | alloc_profile;
2473 } else if ((info->system_allocs > 0 || root == info->chunk_root) &&
2474 info->system_allocs >= 0) {
2475 alloc_profile = info->avail_system_alloc_bits &
2476 info->system_alloc_profile;
2477 data = BTRFS_BLOCK_GROUP_SYSTEM | alloc_profile;
2479 alloc_profile = info->avail_metadata_alloc_bits &
2480 info->metadata_alloc_profile;
2481 data = BTRFS_BLOCK_GROUP_METADATA | alloc_profile;
2484 if (root->ref_cows) {
2485 if (!(data & BTRFS_BLOCK_GROUP_METADATA)) {
2486 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
2488 BTRFS_BLOCK_GROUP_METADATA);
2491 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
2492 num_bytes + 2 * 1024 * 1024, data);
2496 WARN_ON(num_bytes < root->sectorsize);
2497 ret = find_free_extent(trans, root, num_bytes, empty_size,
2498 search_start, search_end, hint_byte, ins,
2499 trans->alloc_exclude_start,
2500 trans->alloc_exclude_nr, data);
2503 clear_extent_dirty(&root->fs_info->free_space_cache,
2504 ins->objectid, ins->objectid + ins->offset - 1,
2509 static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
2510 struct btrfs_root *root,
2511 u64 root_objectid, u64 generation,
2512 u64 flags, struct btrfs_disk_key *key,
2513 int level, struct btrfs_key *ins)
2516 struct btrfs_fs_info *fs_info = root->fs_info;
2517 struct btrfs_extent_item *extent_item;
2518 struct btrfs_tree_block_info *block_info;
2519 struct btrfs_extent_inline_ref *iref;
2520 struct btrfs_path *path;
2521 struct extent_buffer *leaf;
2522 u32 size = sizeof(*extent_item) + sizeof(*block_info) + sizeof(*iref);
2524 path = btrfs_alloc_path();
2527 path->leave_spinning = 1;
2528 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
2532 leaf = path->nodes[0];
2533 extent_item = btrfs_item_ptr(leaf, path->slots[0],
2534 struct btrfs_extent_item);
2535 btrfs_set_extent_refs(leaf, extent_item, 1);
2536 btrfs_set_extent_generation(leaf, extent_item, generation);
2537 btrfs_set_extent_flags(leaf, extent_item,
2538 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
2539 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
2541 btrfs_set_tree_block_key(leaf, block_info, key);
2542 btrfs_set_tree_block_level(leaf, block_info, level);
2544 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
2545 btrfs_set_extent_inline_ref_type(leaf, iref, BTRFS_TREE_BLOCK_REF_KEY);
2546 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
2548 btrfs_mark_buffer_dirty(leaf);
2549 btrfs_free_path(path);
2551 ret = update_block_group(trans, root, ins->objectid, ins->offset,
2554 printk(KERN_ERR "btrfs update block group failed for %llu "
2555 "%llu\n", (unsigned long long)ins->objectid,
2556 (unsigned long long)ins->offset);
2562 static int alloc_tree_block(struct btrfs_trans_handle *trans,
2563 struct btrfs_root *root, u64 num_bytes,
2564 u64 root_objectid, u64 generation,
2565 u64 flags, struct btrfs_disk_key *key,
2566 int level, u64 empty_size, u64 hint_byte,
2567 u64 search_end, struct btrfs_key *ins)
2570 ret = btrfs_reserve_extent(trans, root, num_bytes, empty_size,
2571 hint_byte, search_end, ins, 0);
2574 if (root_objectid == BTRFS_EXTENT_TREE_OBJECTID) {
2575 struct pending_extent_op *extent_op;
2577 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
2580 extent_op->type = PENDING_EXTENT_INSERT;
2581 extent_op->bytenr = ins->objectid;
2582 extent_op->num_bytes = ins->offset;
2583 extent_op->level = level;
2584 extent_op->flags = flags;
2585 memcpy(&extent_op->key, key, sizeof(*key));
2587 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
2588 ins->objectid + ins->offset - 1,
2589 EXTENT_LOCKED, GFP_NOFS);
2590 set_state_private(&root->fs_info->extent_ins,
2591 ins->objectid, (unsigned long)extent_op);
2593 ret = alloc_reserved_tree_block(trans, root, root_objectid,
2596 finish_current_insert(trans, root->fs_info->extent_root);
2597 del_pending_extents(trans, root->fs_info->extent_root);
2603 * helper function to allocate a block for a given tree
2604 * returns the tree buffer or NULL.
2606 struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
2607 struct btrfs_root *root,
2608 u32 blocksize, u64 root_objectid,
2609 struct btrfs_disk_key *key, int level,
2610 u64 hint, u64 empty_size)
2612 struct btrfs_key ins;
2614 struct extent_buffer *buf;
2616 ret = alloc_tree_block(trans, root, blocksize, root_objectid,
2617 trans->transid, 0, key, level,
2618 empty_size, hint, (u64)-1, &ins);
2621 return ERR_PTR(ret);
2624 buf = btrfs_find_create_tree_block(root, ins.objectid, blocksize);
2626 btrfs_free_extent(trans, root, ins.objectid, ins.offset,
2627 0, root->root_key.objectid, level, 0);
2629 return ERR_PTR(-ENOMEM);
2631 btrfs_set_buffer_uptodate(buf);
2632 trans->blocks_used++;
2639 static int noinline drop_leaf_ref(struct btrfs_trans_handle *trans,
2640 struct btrfs_root *root,
2641 struct extent_buffer *leaf)
2644 u64 leaf_generation;
2645 struct btrfs_key key;
2646 struct btrfs_file_extent_item *fi;
2651 BUG_ON(!btrfs_is_leaf(leaf));
2652 nritems = btrfs_header_nritems(leaf);
2653 leaf_owner = btrfs_header_owner(leaf);
2654 leaf_generation = btrfs_header_generation(leaf);
2656 for (i = 0; i < nritems; i++) {
2659 btrfs_item_key_to_cpu(leaf, &key, i);
2660 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
2662 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
2663 if (btrfs_file_extent_type(leaf, fi) ==
2664 BTRFS_FILE_EXTENT_INLINE)
2667 * FIXME make sure to insert a trans record that
2668 * repeats the snapshot del on crash
2670 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
2671 if (disk_bytenr == 0)
2673 ret = btrfs_free_extent(trans, root, disk_bytenr,
2674 btrfs_file_extent_disk_num_bytes(leaf, fi),
2675 leaf->start, leaf_owner, leaf_generation,
2682 static void noinline reada_walk_down(struct btrfs_root *root,
2683 struct extent_buffer *node,
2696 nritems = btrfs_header_nritems(node);
2697 level = btrfs_header_level(node);
2701 for (i = slot; i < nritems && skipped < 32; i++) {
2702 bytenr = btrfs_node_blockptr(node, i);
2703 if (last && ((bytenr > last && bytenr - last > 32 * 1024) ||
2704 (last > bytenr && last - bytenr > 32 * 1024))) {
2708 blocksize = btrfs_level_size(root, level - 1);
2710 ret = btrfs_lookup_extent_ref(NULL, root, bytenr,
2718 mutex_unlock(&root->fs_info->fs_mutex);
2719 ret = readahead_tree_block(root, bytenr, blocksize,
2720 btrfs_node_ptr_generation(node, i));
2721 last = bytenr + blocksize;
2723 mutex_lock(&root->fs_info->fs_mutex);
2730 * helper function for drop_snapshot, this walks down the tree dropping ref
2731 * counts as it goes.
2733 static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
2734 struct btrfs_root *root,
2735 struct btrfs_path *path, int *level)
2741 struct extent_buffer *next;
2742 struct extent_buffer *cur;
2743 struct extent_buffer *parent;
2748 WARN_ON(*level < 0);
2749 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2750 ret = btrfs_lookup_extent_ref(trans, root,
2751 path->nodes[*level]->start,
2752 path->nodes[*level]->len, &refs);
2758 * walk down to the last node level and free all the leaves
2760 while(*level >= 0) {
2761 WARN_ON(*level < 0);
2762 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2763 cur = path->nodes[*level];
2765 if (btrfs_header_level(cur) != *level)
2768 if (path->slots[*level] >=
2769 btrfs_header_nritems(cur))
2772 ret = drop_leaf_ref(trans, root, cur);
2776 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
2777 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
2778 blocksize = btrfs_level_size(root, *level - 1);
2779 ret = btrfs_lookup_extent_ref(trans, root, bytenr, blocksize,
2783 parent = path->nodes[*level];
2784 root_owner = btrfs_header_owner(parent);
2785 root_gen = btrfs_header_generation(parent);
2786 path->slots[*level]++;
2787 ret = btrfs_free_extent(trans, root, bytenr, blocksize,
2788 parent->start, root_owner,
2789 root_gen, *level - 1, 1);
2793 next = btrfs_find_tree_block(root, bytenr, blocksize);
2794 if (!next || !btrfs_buffer_uptodate(next, ptr_gen)) {
2795 free_extent_buffer(next);
2796 reada_walk_down(root, cur, path->slots[*level]);
2797 mutex_unlock(&root->fs_info->fs_mutex);
2798 next = read_tree_block(root, bytenr, blocksize,
2800 mutex_lock(&root->fs_info->fs_mutex);
2802 WARN_ON(*level <= 0);
2803 if (path->nodes[*level-1])
2804 free_extent_buffer(path->nodes[*level-1]);
2805 path->nodes[*level-1] = next;
2806 *level = btrfs_header_level(next);
2807 path->slots[*level] = 0;
2810 WARN_ON(*level < 0);
2811 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2813 if (path->nodes[*level] == root->node) {
2814 root_owner = root->root_key.objectid;
2815 parent = path->nodes[*level];
2817 parent = path->nodes[*level + 1];
2818 root_owner = btrfs_header_owner(parent);
2821 root_gen = btrfs_header_generation(parent);
2822 ret = btrfs_free_extent(trans, root, path->nodes[*level]->start,
2823 path->nodes[*level]->len, parent->start,
2824 root_owner, root_gen, *level, 1);
2825 free_extent_buffer(path->nodes[*level]);
2826 path->nodes[*level] = NULL;
2833 * helper for dropping snapshots. This walks back up the tree in the path
2834 * to find the first node higher up where we haven't yet gone through
2837 static int noinline walk_up_tree(struct btrfs_trans_handle *trans,
2838 struct btrfs_root *root,
2839 struct btrfs_path *path, int *level)
2843 struct btrfs_root_item *root_item = &root->root_item;
2848 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
2849 slot = path->slots[i];
2850 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
2851 struct extent_buffer *node;
2852 struct btrfs_disk_key disk_key;
2853 node = path->nodes[i];
2856 WARN_ON(*level == 0);
2857 btrfs_node_key(node, &disk_key, path->slots[i]);
2858 memcpy(&root_item->drop_progress,
2859 &disk_key, sizeof(disk_key));
2860 root_item->drop_level = i;
2863 struct extent_buffer *parent;
2864 if (path->nodes[*level] == root->node)
2865 parent = path->nodes[*level];
2867 parent = path->nodes[*level + 1];
2869 root_owner = btrfs_header_owner(parent);
2870 root_gen = btrfs_header_generation(parent);
2871 ret = btrfs_free_extent(trans, root,
2872 path->nodes[*level]->start,
2873 path->nodes[*level]->len,
2874 parent->start, root_owner,
2875 root_gen, *level, 1);
2877 free_extent_buffer(path->nodes[*level]);
2878 path->nodes[*level] = NULL;
2886 * drop the reference count on the tree rooted at 'snap'. This traverses
2887 * the tree freeing any blocks that have a ref count of zero after being
2890 int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
2896 struct btrfs_path *path;
2899 struct btrfs_root_item *root_item = &root->root_item;
2901 path = btrfs_alloc_path();
2904 level = btrfs_header_level(root->node);
2906 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2907 path->nodes[level] = root->node;
2908 extent_buffer_get(root->node);
2909 path->slots[level] = 0;
2911 struct btrfs_key key;
2912 struct btrfs_disk_key found_key;
2913 struct extent_buffer *node;
2915 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
2916 level = root_item->drop_level;
2917 path->lowest_level = level;
2918 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2923 node = path->nodes[level];
2924 btrfs_node_key(node, &found_key, path->slots[level]);
2925 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2926 sizeof(found_key)));
2929 wret = walk_down_tree(trans, root, path, &level);
2935 wret = walk_up_tree(trans, root, path, &level);
2945 for (i = 0; i <= orig_level; i++) {
2946 if (path->nodes[i]) {
2947 free_extent_buffer(path->nodes[i]);
2948 path->nodes[i] = NULL;
2952 btrfs_free_path(path);
2958 int btrfs_free_block_groups(struct btrfs_fs_info *info)
2965 ret = find_first_extent_bit(&info->block_group_cache, 0,
2966 &start, &end, (unsigned int)-1);
2969 ret = get_state_private(&info->block_group_cache, start, &ptr);
2971 kfree((void *)(unsigned long)ptr);
2972 clear_extent_bits(&info->block_group_cache, start,
2973 end, (unsigned int)-1, GFP_NOFS);
2976 ret = find_first_extent_bit(&info->free_space_cache, 0,
2977 &start, &end, EXTENT_DIRTY);
2980 clear_extent_dirty(&info->free_space_cache, start,
2986 int find_first_block_group(struct btrfs_root *root, struct btrfs_path *path,
2987 struct btrfs_key *key)
2990 struct btrfs_key found_key;
2991 struct extent_buffer *leaf;
2994 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
2998 slot = path->slots[0];
2999 leaf = path->nodes[0];
3000 if (slot >= btrfs_header_nritems(leaf)) {
3001 ret = btrfs_next_leaf(root, path);
3008 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3010 if (found_key.objectid >= key->objectid &&
3011 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY)
3020 int btrfs_read_block_groups(struct btrfs_root *root)
3022 struct btrfs_path *path;
3025 struct btrfs_block_group_cache *cache;
3026 struct btrfs_fs_info *info = root->fs_info;
3027 struct btrfs_space_info *space_info;
3028 struct extent_io_tree *block_group_cache;
3029 struct btrfs_key key;
3030 struct btrfs_key found_key;
3031 struct extent_buffer *leaf;
3033 block_group_cache = &info->block_group_cache;
3035 root = info->extent_root;
3038 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
3039 path = btrfs_alloc_path();
3044 ret = find_first_block_group(root, path, &key);
3052 leaf = path->nodes[0];
3053 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3054 cache = kzalloc(sizeof(*cache), GFP_NOFS);
3060 read_extent_buffer(leaf, &cache->item,
3061 btrfs_item_ptr_offset(leaf, path->slots[0]),
3062 sizeof(cache->item));
3063 memcpy(&cache->key, &found_key, sizeof(found_key));
3066 key.objectid = found_key.objectid + found_key.offset;
3067 btrfs_release_path(root, path);
3068 cache->flags = btrfs_block_group_flags(&cache->item);
3070 if (cache->flags & BTRFS_BLOCK_GROUP_DATA) {
3071 bit = BLOCK_GROUP_DATA;
3072 } else if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
3073 bit = BLOCK_GROUP_SYSTEM;
3074 } else if (cache->flags & BTRFS_BLOCK_GROUP_METADATA) {
3075 bit = BLOCK_GROUP_METADATA;
3077 set_avail_alloc_bits(info, cache->flags);
3078 if (btrfs_chunk_readonly(root, cache->key.objectid))
3081 ret = update_space_info(info, cache->flags, found_key.offset,
3082 btrfs_block_group_used(&cache->item),
3085 cache->space_info = space_info;
3087 /* use EXTENT_LOCKED to prevent merging */
3088 set_extent_bits(block_group_cache, found_key.objectid,
3089 found_key.objectid + found_key.offset - 1,
3090 bit | EXTENT_LOCKED, GFP_NOFS);
3091 set_state_private(block_group_cache, found_key.objectid,
3092 (unsigned long)cache);
3096 btrfs_free_path(path);
3100 int btrfs_make_block_group(struct btrfs_trans_handle *trans,
3101 struct btrfs_root *root, u64 bytes_used,
3102 u64 type, u64 chunk_objectid, u64 chunk_offset,
3107 struct btrfs_root *extent_root;
3108 struct btrfs_block_group_cache *cache;
3109 struct extent_io_tree *block_group_cache;
3111 extent_root = root->fs_info->extent_root;
3112 block_group_cache = &root->fs_info->block_group_cache;
3114 cache = kzalloc(sizeof(*cache), GFP_NOFS);
3116 cache->key.objectid = chunk_offset;
3117 cache->key.offset = size;
3119 btrfs_set_key_type(&cache->key, BTRFS_BLOCK_GROUP_ITEM_KEY);
3120 btrfs_set_block_group_used(&cache->item, bytes_used);
3121 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
3122 cache->flags = type;
3123 btrfs_set_block_group_flags(&cache->item, type);
3125 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
3126 &cache->space_info);
3129 bit = block_group_state_bits(type);
3130 set_extent_bits(block_group_cache, chunk_offset,
3131 chunk_offset + size - 1,
3132 bit | EXTENT_LOCKED, GFP_NOFS);
3134 set_state_private(block_group_cache, chunk_offset,
3135 (unsigned long)cache);
3136 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
3137 sizeof(cache->item));
3140 finish_current_insert(trans, extent_root);
3141 ret = del_pending_extents(trans, extent_root);
3143 set_avail_alloc_bits(extent_root->fs_info, type);
3148 * This is for converter use only.
3150 * In that case, we don't know where are free blocks located.
3151 * Therefore all block group cache entries must be setup properly
3152 * before doing any block allocation.
3154 int btrfs_make_block_groups(struct btrfs_trans_handle *trans,
3155 struct btrfs_root *root)
3163 u64 total_metadata = 0;
3167 struct btrfs_root *extent_root;
3168 struct btrfs_block_group_cache *cache;
3169 struct extent_io_tree *block_group_cache;
3171 extent_root = root->fs_info->extent_root;
3172 block_group_cache = &root->fs_info->block_group_cache;
3173 chunk_objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3174 total_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
3175 group_align = 64 * root->sectorsize;
3178 while (cur_start < total_bytes) {
3179 group_size = total_bytes / 12;
3180 group_size = min_t(u64, group_size, total_bytes - cur_start);
3181 if (cur_start == 0) {
3182 bit = BLOCK_GROUP_SYSTEM;
3183 group_type = BTRFS_BLOCK_GROUP_SYSTEM;
3185 group_size &= ~(group_align - 1);
3186 group_size = max_t(u64, group_size, 8 * 1024 * 1024);
3187 group_size = min_t(u64, group_size, 32 * 1024 * 1024);
3189 group_size &= ~(group_align - 1);
3190 if (total_data >= total_metadata * 2) {
3191 group_type = BTRFS_BLOCK_GROUP_METADATA;
3192 group_size = min_t(u64, group_size,
3193 1ULL * 1024 * 1024 * 1024);
3194 total_metadata += group_size;
3196 group_type = BTRFS_BLOCK_GROUP_DATA;
3197 group_size = min_t(u64, group_size,
3198 5ULL * 1024 * 1024 * 1024);
3199 total_data += group_size;
3201 if ((total_bytes - cur_start) * 4 < group_size * 5)
3202 group_size = total_bytes - cur_start;
3205 cache = kzalloc(sizeof(*cache), GFP_NOFS);
3208 cache->key.objectid = cur_start;
3209 cache->key.offset = group_size;
3210 btrfs_set_key_type(&cache->key, BTRFS_BLOCK_GROUP_ITEM_KEY);
3212 btrfs_set_block_group_used(&cache->item, 0);
3213 btrfs_set_block_group_chunk_objectid(&cache->item,
3215 btrfs_set_block_group_flags(&cache->item, group_type);
3217 cache->flags = group_type;
3219 ret = update_space_info(root->fs_info, group_type, group_size,
3220 0, &cache->space_info);
3222 set_avail_alloc_bits(extent_root->fs_info, group_type);
3224 set_extent_bits(block_group_cache, cur_start,
3225 cur_start + group_size - 1,
3226 bit | EXTENT_LOCKED, GFP_NOFS);
3227 set_state_private(block_group_cache, cur_start,
3228 (unsigned long)cache);
3229 cur_start += group_size;
3231 /* then insert all the items */
3233 while(cur_start < total_bytes) {
3234 cache = btrfs_lookup_block_group(root->fs_info, cur_start);
3237 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
3238 sizeof(cache->item));
3241 finish_current_insert(trans, extent_root);
3242 ret = del_pending_extents(trans, extent_root);
3245 cur_start = cache->key.objectid + cache->key.offset;
3250 int btrfs_update_block_group(struct btrfs_trans_handle *trans,
3251 struct btrfs_root *root,
3252 u64 bytenr, u64 num_bytes, int alloc,
3255 return update_block_group(trans, root, bytenr, num_bytes,