Fix unused-but-set errors in gcc-4.6
[platform/upstream/btrfs-progs.git] / extent-tree.c
1 /*
2  * Copyright (C) 2007 Oracle.  All rights reserved.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public
6  * License v2 as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public
14  * License along with this program; if not, write to the
15  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16  * Boston, MA 021110-1307, USA.
17  */
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include "kerncompat.h"
22 #include "radix-tree.h"
23 #include "ctree.h"
24 #include "disk-io.h"
25 #include "print-tree.h"
26 #include "transaction.h"
27 #include "crc32c.h"
28 #include "volumes.h"
29
30 #define BLOCK_GROUP_DATA     EXTENT_WRITEBACK
31 #define BLOCK_GROUP_METADATA EXTENT_UPTODATE
32 #define BLOCK_GROUP_SYSTEM   EXTENT_NEW
33
34 #define BLOCK_GROUP_DIRTY EXTENT_DIRTY
35
36 #define PENDING_EXTENT_INSERT 0
37 #define PENDING_EXTENT_DELETE 1
38 #define PENDING_BACKREF_UPDATE 2
39
40 struct pending_extent_op {
41         int type;
42         u64 bytenr;
43         u64 num_bytes;
44         u64 flags;
45         struct btrfs_disk_key key;
46         int level;
47 };
48
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);
63
64 static int remove_sb_from_cache(struct btrfs_root *root,
65                                 struct btrfs_block_group_cache *cache)
66 {
67         u64 bytenr;
68         u64 *logical;
69         int stripe_len;
70         int i, nr, ret;
71         struct extent_io_tree *free_space_cache;
72
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);
79                 BUG_ON(ret);
80                 while (nr--) {
81                         clear_extent_dirty(free_space_cache, logical[nr],
82                                 logical[nr] + stripe_len - 1, GFP_NOFS);
83                 }
84                 kfree(logical);
85         }
86         return 0;
87 }
88
89 static int cache_block_group(struct btrfs_root *root,
90                              struct btrfs_block_group_cache *block_group)
91 {
92         struct btrfs_path *path;
93         int ret;
94         struct btrfs_key key;
95         struct extent_buffer *leaf;
96         struct extent_io_tree *free_space_cache;
97         int slot;
98         u64 last;
99         u64 hole_size;
100
101         if (!block_group)
102                 return 0;
103
104         root = root->fs_info->extent_root;
105         free_space_cache = &root->fs_info->free_space_cache;
106
107         if (block_group->cached)
108                 return 0;
109
110         path = btrfs_alloc_path();
111         if (!path)
112                 return -ENOMEM;
113
114         path->reada = 2;
115         last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
116         key.objectid = last;
117         key.offset = 0;
118         btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
119         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
120         if (ret < 0)
121                 goto err;
122
123         while(1) {
124                 leaf = path->nodes[0];
125                 slot = path->slots[0];
126                 if (slot >= btrfs_header_nritems(leaf)) {
127                         ret = btrfs_next_leaf(root, path);
128                         if (ret < 0)
129                                 goto err;
130                         if (ret == 0) {
131                                 continue;
132                         } else {
133                                 break;
134                         }
135                 }
136                 btrfs_item_key_to_cpu(leaf, &key, slot);
137                 if (key.objectid < block_group->key.objectid) {
138                         goto next;
139                 }
140                 if (key.objectid >= block_group->key.objectid +
141                     block_group->key.offset) {
142                         break;
143                 }
144
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,
150                                                  GFP_NOFS);
151                         }
152                         last = key.objectid + key.offset;
153                 }
154 next:
155                 path->slots[0]++;
156         }
157
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);
164         }
165         remove_sb_from_cache(root, block_group);
166         block_group->cached = 1;
167 err:
168         btrfs_free_path(path);
169         return 0;
170 }
171
172 struct btrfs_block_group_cache *btrfs_lookup_first_block_group(struct
173                                                        btrfs_fs_info *info,
174                                                        u64 bytenr)
175 {
176         struct extent_io_tree *block_group_cache;
177         struct btrfs_block_group_cache *block_group = NULL;
178         u64 ptr;
179         u64 start;
180         u64 end;
181         int ret;
182
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 |
189                                     BLOCK_GROUP_SYSTEM);
190         if (ret) {
191                 return NULL;
192         }
193         ret = get_state_private(block_group_cache, start, &ptr);
194         if (ret)
195                 return NULL;
196
197         block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
198         return block_group;
199 }
200
201 struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
202                                                          btrfs_fs_info *info,
203                                                          u64 bytenr)
204 {
205         struct extent_io_tree *block_group_cache;
206         struct btrfs_block_group_cache *block_group = NULL;
207         u64 ptr;
208         u64 start;
209         u64 end;
210         int ret;
211
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 |
216                                     BLOCK_GROUP_SYSTEM);
217         if (ret) {
218                 return NULL;
219         }
220         ret = get_state_private(block_group_cache, start, &ptr);
221         if (ret)
222                 return NULL;
223
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)
227                 return block_group;
228         return NULL;
229 }
230
231 static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
232 {
233         return (cache->flags & bits) == bits;
234 }
235
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)
239 {
240         int ret;
241         struct btrfs_block_group_cache *cache = *cache_ret;
242         u64 last;
243         u64 start = 0;
244         u64 end = 0;
245         u64 search_start = *start_ret;
246         int wrapped = 0;
247
248         if (!cache) {
249                 goto out;
250         }
251 again:
252         ret = cache_block_group(root, cache);
253         if (ret)
254                 goto out;
255
256         last = max(search_start, cache->key.objectid);
257         if (cache->ro || !block_group_bits(cache, data)) {
258                 goto new_group;
259         }
260
261         while(1) {
262                 ret = find_first_extent_bit(&root->fs_info->free_space_cache,
263                                             last, &start, &end, EXTENT_DIRTY);
264                 if (ret) {
265                         goto new_group;
266                 }
267
268                 start = max(last, start);
269                 last = end + 1;
270                 if (last - start < num) {
271                         continue;
272                 }
273                 if (start + num > cache->key.objectid + cache->key.offset) {
274                         goto new_group;
275                 }
276                 *start_ret = start;
277                 return 0;
278         }
279 out:
280         cache = btrfs_lookup_block_group(root->fs_info, search_start);
281         if (!cache) {
282                 printk("Unable to find block group for %llu\n",
283                         (unsigned long long)search_start);
284                 WARN_ON(1);
285         }
286         return -ENOSPC;
287
288 new_group:
289         last = cache->key.objectid + cache->key.offset;
290 wrapped:
291         cache = btrfs_lookup_first_block_group(root->fs_info, last);
292         if (!cache) {
293 no_cache:
294                 if (!wrapped) {
295                         wrapped = 1;
296                         last = search_start;
297                         goto wrapped;
298                 }
299                 goto out;
300         }
301         cache = btrfs_find_block_group(root, cache, last, data, 0);
302         cache = btrfs_find_block_group(root, cache, last, data, 0);
303         if (!cache)
304                 goto no_cache;
305
306         *cache_ret = cache;
307         goto again;
308 }
309
310 static u64 div_factor(u64 num, int factor)
311 {
312         if (factor == 10)
313                 return num;
314         num *= factor;
315         num /= 10;
316         return num;
317 }
318
319 static int block_group_state_bits(u64 flags)
320 {
321         int bits = 0;
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;
328         return bits;
329 }
330
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,
334                                                  int data, int owner)
335 {
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;
340         u64 used;
341         u64 last = 0;
342         u64 hint_last;
343         u64 start;
344         u64 end;
345         u64 free_check;
346         u64 ptr;
347         int bit;
348         int ret;
349         int full_search = 0;
350         int factor = 10;
351
352         block_group_cache = &info->block_group_cache;
353
354         if (!owner)
355                 factor = 10;
356
357         bit = block_group_state_bits(data);
358
359         if (search_start) {
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)) {
366                                 return shint;
367                         }
368                 }
369         }
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)) {
374                         return hint;
375                 }
376                 last = hint->key.objectid + hint->key.offset;
377                 hint_last = last;
378         } else {
379                 if (hint)
380                         hint_last = max(hint->key.objectid, search_start);
381                 else
382                         hint_last = search_start;
383
384                 last = hint_last;
385         }
386 again:
387         while(1) {
388                 ret = find_first_extent_bit(block_group_cache, last,
389                                             &start, &end, bit);
390                 if (ret)
391                         break;
392
393                 ret = get_state_private(block_group_cache, start, &ptr);
394                 if (ret)
395                         break;
396
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);
400
401                 if (!cache->ro && block_group_bits(cache, data)) {
402                         if (full_search)
403                                 free_check = cache->key.offset;
404                         else
405                                 free_check = div_factor(cache->key.offset,
406                                                         factor);
407
408                         if (used + cache->pinned < free_check) {
409                                 found_group = cache;
410                                 goto found;
411                         }
412                 }
413                 cond_resched();
414         }
415         if (!full_search) {
416                 last = search_start;
417                 full_search = 1;
418                 goto again;
419         }
420 found:
421         return found_group;
422 }
423
424 /*
425  * Back reference rules.  Back refs have three main goals:
426  *
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.
430  *
431  * 2) Provide enough information to quickly find the holders of an extent
432  *    if we notice a given block is corrupted or bad.
433  *
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.
437  *
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.
448  *
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.
455  *
456  * When a tree block is COW'd through a tree, there are four cases:
457  *
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.
460  *
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.
465  *
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.
471  *
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.
475  *
476  * Back Reference Key composing:
477  *
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
481  * of back refs.
482  *
483  * File extents can be referenced by:
484  *
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)
488  *
489  * The extent ref structure for the implicit back refs has fields for:
490  *
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
495  *
496  * The key offset for the implicit back refs is hash of the first
497  * three fields.
498  *
499  * The extent ref structure for the full back refs has field for:
500  *
501  * - number of pointers in the tree leaf
502  *
503  * The key offset for the implicit back refs is the first byte of
504  * the tree leaf
505  *
506  * When a file extent is allocated, The implicit back refs is used.
507  * the fields are filled in:
508  *
509  *     (root_key.objectid, inode objectid, offset in file, 1)
510  *
511  * When a file extent is removed file truncation, we find the
512  * corresponding implicit back refs and check the following fields:
513  *
514  *     (btrfs_header_owner(leaf), inode objectid, offset in file)
515  *
516  * Btree extents can be referenced by:
517  *
518  * - Different subvolumes
519  *
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.
524  *
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.
528  */
529
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)
535 {
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);
544         u64 refs;
545         int ret;
546
547         leaf = path->nodes[0];
548         BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
549
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);
554
555         if (owner == (u64)-1) {
556                 while (1) {
557                         if (path->slots[0] >= btrfs_header_nritems(leaf)) {
558                                 ret = btrfs_next_leaf(root, path);
559                                 if (ret < 0)
560                                         return ret;
561                                 BUG_ON(ret > 0);
562                                 leaf = path->nodes[0];
563                         }
564                         btrfs_item_key_to_cpu(leaf, &found_key,
565                                               path->slots[0]);
566                         BUG_ON(key.objectid != found_key.objectid);
567                         if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
568                                 path->slots[0]++;
569                                 continue;
570                         }
571                         ref0 = btrfs_item_ptr(leaf, path->slots[0],
572                                               struct btrfs_extent_ref_v0);
573                         owner = btrfs_ref_objectid_v0(leaf, ref0);
574                         break;
575                 }
576         }
577         btrfs_release_path(root, path);
578
579         if (owner < BTRFS_FIRST_FREE_OBJECTID)
580                 new_size += sizeof(*bi);
581
582         new_size -= sizeof(*ei0);
583         ret = btrfs_search_slot(trans, root, &key, path, new_size, 1);
584         if (ret < 0)
585                 return ret;
586         BUG_ON(ret);
587
588         ret = btrfs_extend_item(trans, root, path, new_size);
589         BUG_ON(ret);
590
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);
604         } else {
605                 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
606         }
607         btrfs_mark_buffer_dirty(leaf);
608         return 0;
609 }
610 #endif
611
612 static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
613 {
614         u32 high_crc = ~(u32)0;
615         u32 low_crc = ~(u32)0;
616         __le64 lenum;
617
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));
624
625         return ((u64)high_crc << 31) ^ (u64)low_crc;
626 }
627
628 static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
629                                      struct btrfs_extent_data_ref *ref)
630 {
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));
634 }
635
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)
639 {
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)
643                 return 0;
644         return 1;
645 }
646
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,
651                                            u64 root_objectid,
652                                            u64 owner, u64 offset)
653 {
654         struct btrfs_key key;
655         struct btrfs_extent_data_ref *ref;
656         struct extent_buffer *leaf;
657         u32 nritems;
658         int ret;
659         int recow;
660         int err = -ENOENT;
661
662         key.objectid = bytenr;
663         if (parent) {
664                 key.type = BTRFS_SHARED_DATA_REF_KEY;
665                 key.offset = parent;
666         } else {
667                 key.type = BTRFS_EXTENT_DATA_REF_KEY;
668                 key.offset = hash_extent_data_ref(root_objectid,
669                                                   owner, offset);
670         }
671 again:
672         recow = 0;
673         ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
674         if (ret < 0) {
675                 err = ret;
676                 goto fail;
677         }
678
679         if (parent) {
680                 if (!ret)
681                         return 0;
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);
686                 if (ret < 0) {
687                         err = ret;
688                         goto fail;
689                 }
690                 if (!ret)
691                         return 0;
692 #endif
693                 goto fail;
694         }
695
696         leaf = path->nodes[0];
697         nritems = btrfs_header_nritems(leaf);
698         while (1) {
699                 if (path->slots[0] >= nritems) {
700                         ret = btrfs_next_leaf(root, path);
701                         if (ret < 0)
702                                 err = ret;
703                         if (ret)
704                                 goto fail;
705
706                         leaf = path->nodes[0];
707                         nritems = btrfs_header_nritems(leaf);
708                         recow = 1;
709                 }
710
711                 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
712                 if (key.objectid != bytenr ||
713                     key.type != BTRFS_EXTENT_DATA_REF_KEY)
714                         goto fail;
715                 
716                 ref = btrfs_item_ptr(leaf, path->slots[0],
717                                      struct btrfs_extent_data_ref);
718
719                 if (match_extent_data_ref(leaf, ref, root_objectid,
720                                           owner, offset)) {
721                         if (recow) {
722                                 btrfs_release_path(root, path);
723                                 goto again;
724                         }
725                         err = 0;
726                         break;
727                 }
728                 path->slots[0]++;
729         }
730 fail:
731         return err;
732 }
733
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)
740 {
741         struct btrfs_key key;
742         struct extent_buffer *leaf;
743         u32 size;
744         u32 num_refs;
745         int ret;
746
747         key.objectid = bytenr;
748         if (parent) {
749                 key.type = BTRFS_SHARED_DATA_REF_KEY;
750                 key.offset = parent;
751                 size = sizeof(struct btrfs_shared_data_ref);
752         } else {
753                 key.type = BTRFS_EXTENT_DATA_REF_KEY;
754                 key.offset = hash_extent_data_ref(root_objectid,
755                                                   owner, offset);
756                 size = sizeof(struct btrfs_extent_data_ref);
757         }
758
759         ret = btrfs_insert_empty_item(trans, root, path, &key, size);
760         if (ret && ret != -EEXIST)
761                 goto fail;
762
763         leaf = path->nodes[0];
764         if (parent) {
765                 struct btrfs_shared_data_ref *ref;
766                 ref = btrfs_item_ptr(leaf, path->slots[0],
767                                      struct btrfs_shared_data_ref);
768                 if (ret == 0) {
769                         btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
770                 } else {
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);
774                 }
775         } else {
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,
781                                                   owner, offset))
782                                 break;
783                         btrfs_release_path(root, path);
784
785                         key.offset++;
786                         ret = btrfs_insert_empty_item(trans, root, path, &key,
787                                                       size);
788                         if (ret && ret != -EEXIST)
789                                 goto fail;
790
791                         leaf = path->nodes[0];
792                 }
793                 ref = btrfs_item_ptr(leaf, path->slots[0],
794                                      struct btrfs_extent_data_ref);
795                 if (ret == 0) {
796                         btrfs_set_extent_data_ref_root(leaf, ref,
797                                                        root_objectid);
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);
801                 } else {
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);
805                 }
806         }
807         btrfs_mark_buffer_dirty(leaf);
808         ret = 0;
809 fail:
810         btrfs_release_path(root, path);
811         return ret;
812 }
813
814 static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
815                                            struct btrfs_root *root,
816                                            struct btrfs_path *path,
817                                            int refs_to_drop)
818 {
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;
823         u32 num_refs = 0;
824         int ret = 0;
825
826         leaf = path->nodes[0];
827         btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
828
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);
843 #endif
844         } else {
845                 BUG();
846         }
847
848         BUG_ON(num_refs < refs_to_drop);
849         num_refs -= refs_to_drop;
850
851         if (num_refs == 0) {
852                 ret = btrfs_del_item(trans, root, path);
853         } else {
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
859                 else {
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);
864                 }
865 #endif
866                 btrfs_mark_buffer_dirty(leaf);
867         }
868         return ret;
869 }
870
871 static noinline u32 extent_data_ref_count(struct btrfs_root *root,
872                                           struct btrfs_path *path,
873                                           struct btrfs_extent_inline_ref *iref)
874 {
875         struct btrfs_key key;
876         struct extent_buffer *leaf;
877         struct btrfs_extent_data_ref *ref1;
878         struct btrfs_shared_data_ref *ref2;
879         u32 num_refs = 0;
880
881         leaf = path->nodes[0];
882         btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
883         if (iref) {
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);
888                 } else {
889                         ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
890                         num_refs = btrfs_shared_data_ref_count(leaf, ref2);
891                 }
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);
906 #endif
907         } else {
908                 BUG();
909         }
910         return num_refs;
911 }
912
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,
917                                           u64 root_objectid)
918 {
919         struct btrfs_key key;
920         int ret;
921
922         key.objectid = bytenr;
923         if (parent) {
924                 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
925                 key.offset = parent;
926         } else {
927                 key.type = BTRFS_TREE_BLOCK_REF_KEY;
928                 key.offset = root_objectid;
929         }
930
931         ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
932         if (ret > 0)
933                 ret = -ENOENT;
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);
939                 if (ret > 0)
940                         ret = -ENOENT;
941         }
942 #endif
943         return ret;
944 }
945
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,
950                                           u64 root_objectid)
951 {
952         struct btrfs_key key;
953         int ret;
954
955         key.objectid = bytenr;
956         if (parent) {
957                 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
958                 key.offset = parent;
959         } else {
960                 key.type = BTRFS_TREE_BLOCK_REF_KEY;
961                 key.offset = root_objectid;
962         }
963
964         ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
965
966         btrfs_release_path(root, path);
967         return ret;
968 }
969
970 static inline int extent_ref_type(u64 parent, u64 owner)
971 {
972         if (owner < BTRFS_FIRST_FREE_OBJECTID) {
973                 if (parent > 0)
974                         return BTRFS_SHARED_BLOCK_REF_KEY;
975                 else
976                         return BTRFS_TREE_BLOCK_REF_KEY;
977         } else {
978                 if (parent > 0)
979                         return BTRFS_SHARED_DATA_REF_KEY;
980                 else
981                         return BTRFS_EXTENT_DATA_REF_KEY;
982         }
983 }
984
985 static int find_next_key(struct btrfs_path *path, struct btrfs_key *key)
986
987 {
988         int level;
989         for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
990                 if (!path->nodes[level])
991                         break;
992                 if (path->slots[level] + 1 >=
993                     btrfs_header_nritems(path->nodes[level]))
994                         continue;
995                 if (level == 0)
996                         btrfs_item_key_to_cpu(path->nodes[level], key,
997                                               path->slots[level] + 1);
998                 else
999                         btrfs_node_key_to_cpu(path->nodes[level], key,
1000                                               path->slots[level] + 1);
1001                 return 0;
1002         }
1003         return 1;
1004 }
1005
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)
1013 {
1014         struct btrfs_key key;
1015         struct extent_buffer *leaf;
1016         struct btrfs_extent_item *ei;
1017         struct btrfs_extent_inline_ref *iref;
1018         u64 flags;
1019         u32 item_size;
1020         unsigned long ptr;
1021         unsigned long end;
1022         int extra_size;
1023         int type;
1024         int want;
1025         int ret;
1026         int err = 0;
1027
1028         key.objectid = bytenr;
1029         key.type = BTRFS_EXTENT_ITEM_KEY;
1030         key.offset = num_bytes;
1031
1032         want = extent_ref_type(parent, owner);
1033         if (insert)
1034                 extra_size = btrfs_extent_inline_ref_size(want);
1035         else
1036                 extra_size = -1;
1037         ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1038         if (ret < 0) {
1039                 err = ret;
1040                 goto out;
1041         }
1042         BUG_ON(ret);
1043
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)) {
1048                 if (!insert) {
1049                         err = -ENOENT;
1050                         goto out;
1051                 }
1052                 ret = convert_extent_item_v0(trans, root, path, owner,
1053                                              extra_size);
1054                 if (ret < 0) {
1055                         err = ret;
1056                         goto out;
1057                 }
1058                 leaf = path->nodes[0];
1059                 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1060         }
1061 #endif
1062         BUG_ON(item_size < sizeof(*ei));
1063
1064         ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1065         flags = btrfs_extent_flags(leaf, ei);
1066
1067         ptr = (unsigned long)(ei + 1);
1068         end = (unsigned long)ei + item_size;
1069
1070         if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
1071                 ptr += sizeof(struct btrfs_tree_block_info);
1072                 BUG_ON(ptr > end);
1073         } else {
1074                 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_DATA));
1075         }
1076
1077         err = -ENOENT;
1078         while (1) {
1079                 if (ptr >= end) {
1080                         WARN_ON(ptr > end);
1081                         break;
1082                 }
1083                 iref = (struct btrfs_extent_inline_ref *)ptr;
1084                 type = btrfs_extent_inline_ref_type(leaf, iref);
1085                 if (want < type)
1086                         break;
1087                 if (want > type) {
1088                         ptr += btrfs_extent_inline_ref_size(type);
1089                         continue;
1090                 }
1091
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,
1096                                                   owner, offset)) {
1097                                 err = 0;
1098                                 break;
1099                         }
1100                         if (hash_extent_data_ref_item(leaf, dref) <
1101                             hash_extent_data_ref(root_objectid, owner, offset))
1102                                 break;
1103                 } else {
1104                         u64 ref_offset;
1105                         ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1106                         if (parent > 0) {
1107                                 if (parent == ref_offset) {
1108                                         err = 0;
1109                                         break;
1110                                 }
1111                                 if (ref_offset < parent)
1112                                         break;
1113                         } else {
1114                                 if (root_objectid == ref_offset) {
1115                                         err = 0;
1116                                         break;
1117                                 }
1118                                 if (ref_offset < root_objectid)
1119                                         break;
1120                         }
1121                 }
1122                 ptr += btrfs_extent_inline_ref_size(type);
1123         }
1124         if (err == -ENOENT && insert) {
1125                 if (item_size + extra_size >=
1126                     BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1127                         err = -EAGAIN;
1128                         goto out;
1129                 }
1130                 /*
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.
1135                  */
1136                 if (find_next_key(path, &key) == 0 && key.objectid == bytenr &&
1137                     key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
1138                         err = -EAGAIN;
1139                         goto out;
1140                 }
1141         }
1142         *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1143 out:
1144         return err;
1145 }
1146
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)
1153 {
1154         struct extent_buffer *leaf;
1155         struct btrfs_extent_item *ei;
1156         unsigned long ptr;
1157         unsigned long end;
1158         unsigned long item_offset;
1159         u64 refs;
1160         int size;
1161         int type;
1162         int ret;
1163
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;
1167
1168         type = extent_ref_type(parent, owner);
1169         size = btrfs_extent_inline_ref_size(type);
1170
1171         ret = btrfs_extend_item(trans, root, path, size);
1172         BUG_ON(ret);
1173
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);
1178
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,
1183                                       end - size - ptr);
1184
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);
1201         } else {
1202                 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1203         }
1204         btrfs_mark_buffer_dirty(leaf);
1205         return 0;
1206 }
1207
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)
1214 {
1215         int ret;
1216
1217         ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1218                                            bytenr, num_bytes, parent,
1219                                            root_objectid, owner, offset, 0);
1220         if (ret != -ENOENT)
1221                 return ret;
1222
1223         btrfs_release_path(root, path);
1224         *ref_ret = NULL;
1225
1226         if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1227                 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1228                                             root_objectid);
1229         } else {
1230                 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1231                                              root_objectid, owner, offset);
1232         }
1233         return ret;
1234 }
1235
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,
1240                                  int refs_to_mod)
1241 {
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;
1246         unsigned long ptr;
1247         unsigned long end;
1248         u32 item_size;
1249         int size;
1250         int type;
1251         int ret;
1252         u64 refs;
1253
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);
1260
1261         type = btrfs_extent_inline_ref_type(leaf, iref);
1262
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);
1269         } else {
1270                 refs = 1;
1271                 BUG_ON(refs_to_mod != -1);
1272         }
1273
1274         BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1275         refs += refs_to_mod;
1276
1277         if (refs > 0) {
1278                 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1279                         btrfs_set_extent_data_ref_count(leaf, dref, refs);
1280                 else
1281                         btrfs_set_shared_data_ref_count(leaf, sref, refs);
1282         } else {
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,
1289                                               end - ptr - size);
1290                 item_size -= size;
1291                 ret = btrfs_truncate_item(trans, root, path, item_size, 1);
1292                 BUG_ON(ret);
1293         }
1294         btrfs_mark_buffer_dirty(leaf);
1295         return 0;
1296 }
1297
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)
1304 {
1305         struct btrfs_extent_inline_ref *iref;
1306         int ret;
1307
1308         ret = lookup_inline_extent_backref(trans, root, path, &iref,
1309                                            bytenr, num_bytes, parent,
1310                                            root_objectid, owner, offset, 1);
1311         if (ret == 0) {
1312                 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
1313                 ret = update_inline_extent_backref(trans, root, path, iref,
1314                                                    refs_to_add);
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);
1319         }
1320         return ret;
1321 }
1322
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)
1328 {
1329         int ret;
1330
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);
1335         } else {
1336                 BUG_ON(refs_to_add != 1);
1337                 ret = insert_tree_block_ref(trans, root, path, bytenr,
1338                                             parent, root_objectid);
1339         }
1340         return ret;
1341 }
1342
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)
1348 {
1349         int ret;
1350
1351         BUG_ON(!is_data && refs_to_drop != 1);
1352         if (iref) {
1353                 ret = update_inline_extent_backref(trans, root, path, iref,
1354                                                    -refs_to_drop);
1355         } else if (is_data) {
1356                 ret = remove_extent_data_ref(trans, root, path, refs_to_drop);
1357         } else {
1358                 ret = btrfs_del_item(trans, root, path);
1359         }
1360         return ret;
1361 }
1362
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)
1367 {
1368         struct btrfs_path *path;
1369         struct extent_buffer *leaf;
1370         struct btrfs_extent_item *item;
1371         u64 refs;
1372         int ret;
1373         int err = 0;
1374
1375         path = btrfs_alloc_path();
1376         if (!path)
1377                 return -ENOMEM;
1378
1379         path->reada = 1;
1380         path->leave_spinning = 1;
1381
1382         ret = insert_inline_extent_backref(trans, root->fs_info->extent_root,
1383                                            path, bytenr, num_bytes, parent,
1384                                            root_objectid, owner, offset, 1);
1385         if (ret == 0)
1386                 goto out;
1387
1388         if (ret != -EAGAIN) {
1389                 err = ret;
1390                 goto out;
1391         }
1392         
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);
1397
1398         btrfs_mark_buffer_dirty(leaf);
1399         btrfs_release_path(root->fs_info->extent_root, path);
1400
1401         path->reada = 1;
1402         path->leave_spinning = 1;
1403
1404         /* now insert the actual backref */
1405         ret = insert_extent_backref(trans, root->fs_info->extent_root,
1406                                     path, bytenr, parent, root_objectid,
1407                                     owner, offset, 1);
1408         if (ret)
1409                 err = ret;
1410 out:
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);
1414         BUG_ON(err);
1415         return err;
1416 }
1417
1418 int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
1419                          struct btrfs_root *root)
1420 {
1421         finish_current_insert(trans, root->fs_info->extent_root);
1422         del_pending_extents(trans, root->fs_info->extent_root);
1423         return 0;
1424 }
1425
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)
1429 {
1430         struct btrfs_path *path;
1431         int ret;
1432         struct btrfs_key key;
1433         struct extent_buffer *l;
1434         struct btrfs_extent_item *item;
1435         u32 item_size;
1436         u64 num_refs;
1437         u64 extent_flags;
1438
1439         WARN_ON(num_bytes < root->sectorsize);
1440         path = btrfs_alloc_path();
1441         path->reada = 1;
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,
1446                                 0, 0);
1447         if (ret < 0)
1448                 goto out;
1449         if (ret != 0) {
1450                 btrfs_print_leaf(root, path->nodes[0]);
1451                 printk("failed to find block number %Lu\n", bytenr);
1452                 BUG();
1453         }
1454
1455         l = path->nodes[0];
1456         item_size = btrfs_item_size_nr(l, path->slots[0]);
1457         if (item_size >= sizeof(*item)) {
1458                 item = btrfs_item_ptr(l, path->slots[0],
1459                                       struct btrfs_extent_item);
1460                 num_refs = btrfs_extent_refs(l, item);
1461                 extent_flags = btrfs_extent_flags(l, item);
1462         } else {
1463 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1464                         struct btrfs_extent_item_v0 *ei0;
1465                         BUG_ON(item_size != sizeof(*ei0));
1466                         ei0 = btrfs_item_ptr(l, path->slots[0],
1467                                              struct btrfs_extent_item_v0);
1468                         num_refs = btrfs_extent_refs_v0(l, ei0);
1469                         /* FIXME: this isn't correct for data */
1470                         extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
1471 #else
1472                         BUG();
1473 #endif          
1474                 }
1475                 BUG_ON(num_refs == 0);
1476         item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
1477         if (refs)
1478                 *refs = num_refs;
1479         if (flags)
1480                 *flags = extent_flags;
1481 out:
1482         btrfs_free_path(path);
1483         return 0;
1484 }
1485
1486 int btrfs_set_block_flags(struct btrfs_trans_handle *trans,
1487                           struct btrfs_root *root,
1488                           u64 bytenr, u64 num_bytes, u64 flags)
1489 {
1490         struct btrfs_path *path;
1491         int ret;
1492         struct btrfs_key key;
1493         struct extent_buffer *l;
1494         struct btrfs_extent_item *item;
1495         u32 item_size;
1496
1497         WARN_ON(num_bytes < root->sectorsize);
1498         path = btrfs_alloc_path();
1499         path->reada = 1;
1500         key.objectid = bytenr;
1501         key.offset = num_bytes;
1502         btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
1503         ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
1504                                 0, 0);
1505         if (ret < 0)
1506                 goto out;
1507         if (ret != 0) {
1508                 btrfs_print_leaf(root, path->nodes[0]);
1509                 printk("failed to find block number %Lu\n",
1510                         (unsigned long long)bytenr);
1511                 BUG();
1512         }
1513         l = path->nodes[0];
1514         item_size = btrfs_item_size_nr(l, path->slots[0]);
1515 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1516         if (item_size < sizeof(*item)) {
1517                 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
1518                                              path, (u64)-1, 0);
1519                 if (ret < 0)
1520                         goto out;
1521
1522                 l = path->nodes[0];
1523                 item_size = btrfs_item_size_nr(l, path->slots[0]);
1524         }
1525 #endif
1526         BUG_ON(item_size < sizeof(*item));
1527         item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
1528         flags |= btrfs_extent_flags(l, item);
1529         btrfs_set_extent_flags(l, item, flags);
1530 out:
1531         btrfs_free_path(path);
1532         finish_current_insert(trans, root->fs_info->extent_root);
1533         del_pending_extents(trans, root->fs_info->extent_root);
1534         return ret;
1535 }
1536
1537 static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
1538                            struct btrfs_root *root,
1539                            struct extent_buffer *buf,
1540                            int record_parent, int inc)
1541 {
1542         u64 bytenr;
1543         u64 num_bytes;
1544         u64 parent;
1545         u64 ref_root;
1546         u32 nritems;
1547         struct btrfs_key key;
1548         struct btrfs_file_extent_item *fi;
1549         int i;
1550         int level;
1551         int ret = 0;
1552         int (*process_func)(struct btrfs_trans_handle *trans,
1553                             struct btrfs_root *root,
1554                             u64, u64, u64, u64, u64, u64);
1555
1556         ref_root = btrfs_header_owner(buf);
1557         nritems = btrfs_header_nritems(buf);
1558         level = btrfs_header_level(buf);
1559
1560         if (!root->ref_cows && level == 0)
1561                 return 0;
1562
1563         if (inc)
1564                 process_func = btrfs_inc_extent_ref;
1565         else
1566                 process_func = btrfs_free_extent;
1567
1568         if (record_parent)
1569                 parent = buf->start;
1570         else
1571                 parent = 0;
1572
1573         for (i = 0; i < nritems; i++) {
1574                 cond_resched();
1575                 if (level == 0) {
1576                         btrfs_item_key_to_cpu(buf, &key, i);
1577                         if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
1578                                 continue;
1579                         fi = btrfs_item_ptr(buf, i,
1580                                             struct btrfs_file_extent_item);
1581                         if (btrfs_file_extent_type(buf, fi) ==
1582                             BTRFS_FILE_EXTENT_INLINE)
1583                                 continue;
1584                         bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
1585                         if (bytenr == 0)
1586                                 continue;
1587                         
1588                         num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
1589                         key.offset -= btrfs_file_extent_offset(buf, fi);
1590                         ret = process_func(trans, root, bytenr, num_bytes,
1591                                            parent, ref_root, key.objectid,
1592                                            key.offset);
1593                         if (ret) {
1594                                 WARN_ON(1);
1595                                 goto fail;
1596                         }
1597                 } else {
1598                         bytenr = btrfs_node_blockptr(buf, i);
1599                         num_bytes = btrfs_level_size(root, level - 1);
1600                         ret = process_func(trans, root, bytenr, num_bytes,
1601                                            parent, ref_root, level - 1, 0);
1602                         if (ret) {
1603                                 WARN_ON(1);
1604                                 goto fail;
1605                         }
1606                 }
1607         }
1608         return 0;
1609 fail:
1610         WARN_ON(1);
1611         return ret;
1612 }
1613
1614 int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1615                   struct extent_buffer *buf, int record_parent)
1616 {
1617         return __btrfs_mod_ref(trans, root, buf, record_parent, 1);
1618 }
1619
1620 int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1621                   struct extent_buffer *buf, int record_parent)
1622 {
1623         return __btrfs_mod_ref(trans, root, buf, record_parent, 0);
1624 }
1625
1626 static int write_one_cache_group(struct btrfs_trans_handle *trans,
1627                                  struct btrfs_root *root,
1628                                  struct btrfs_path *path,
1629                                  struct btrfs_block_group_cache *cache)
1630 {
1631         int ret;
1632         int pending_ret;
1633         struct btrfs_root *extent_root = root->fs_info->extent_root;
1634         unsigned long bi;
1635         struct extent_buffer *leaf;
1636
1637         ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
1638         if (ret < 0)
1639                 goto fail;
1640         BUG_ON(ret);
1641
1642         leaf = path->nodes[0];
1643         bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
1644         write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
1645         btrfs_mark_buffer_dirty(leaf);
1646         btrfs_release_path(extent_root, path);
1647 fail:
1648         finish_current_insert(trans, extent_root);
1649         pending_ret = del_pending_extents(trans, extent_root);
1650         if (ret)
1651                 return ret;
1652         if (pending_ret)
1653                 return pending_ret;
1654         return 0;
1655
1656 }
1657
1658 int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1659                                    struct btrfs_root *root)
1660 {
1661         struct extent_io_tree *block_group_cache;
1662         struct btrfs_block_group_cache *cache;
1663         int ret;
1664         struct btrfs_path *path;
1665         u64 last = 0;
1666         u64 start;
1667         u64 end;
1668         u64 ptr;
1669
1670         block_group_cache = &root->fs_info->block_group_cache;
1671         path = btrfs_alloc_path();
1672         if (!path)
1673                 return -ENOMEM;
1674
1675         while(1) {
1676                 ret = find_first_extent_bit(block_group_cache, last,
1677                                             &start, &end, BLOCK_GROUP_DIRTY);
1678                 if (ret) {
1679                         if (last == 0)
1680                                 break;
1681                         last = 0;
1682                         continue;
1683                 }
1684
1685                 last = end + 1;
1686                 ret = get_state_private(block_group_cache, start, &ptr);
1687                 BUG_ON(ret);
1688
1689                 clear_extent_bits(block_group_cache, start, end,
1690                                   BLOCK_GROUP_DIRTY, GFP_NOFS);
1691
1692                 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
1693                 ret = write_one_cache_group(trans, root, path, cache);
1694                 BUG_ON(ret);
1695         }
1696         btrfs_free_path(path);
1697         return 0;
1698 }
1699
1700 static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
1701                                                   u64 flags)
1702 {
1703         struct list_head *head = &info->space_info;
1704         struct list_head *cur;
1705         struct btrfs_space_info *found;
1706         list_for_each(cur, head) {
1707                 found = list_entry(cur, struct btrfs_space_info, list);
1708                 if (found->flags == flags)
1709                         return found;
1710         }
1711         return NULL;
1712
1713 }
1714
1715 static int update_space_info(struct btrfs_fs_info *info, u64 flags,
1716                              u64 total_bytes, u64 bytes_used,
1717                              struct btrfs_space_info **space_info)
1718 {
1719         struct btrfs_space_info *found;
1720
1721         found = __find_space_info(info, flags);
1722         if (found) {
1723                 found->total_bytes += total_bytes;
1724                 found->bytes_used += bytes_used;
1725                 WARN_ON(found->total_bytes < found->bytes_used);
1726                 *space_info = found;
1727                 return 0;
1728         }
1729         found = kmalloc(sizeof(*found), GFP_NOFS);
1730         if (!found)
1731                 return -ENOMEM;
1732
1733         list_add(&found->list, &info->space_info);
1734         found->flags = flags;
1735         found->total_bytes = total_bytes;
1736         found->bytes_used = bytes_used;
1737         found->bytes_pinned = 0;
1738         found->full = 0;
1739         *space_info = found;
1740         return 0;
1741 }
1742
1743
1744 static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
1745 {
1746         u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
1747                                    BTRFS_BLOCK_GROUP_RAID1 |
1748                                    BTRFS_BLOCK_GROUP_RAID10 |
1749                                    BTRFS_BLOCK_GROUP_DUP);
1750         if (extra_flags) {
1751                 if (flags & BTRFS_BLOCK_GROUP_DATA)
1752                         fs_info->avail_data_alloc_bits |= extra_flags;
1753                 if (flags & BTRFS_BLOCK_GROUP_METADATA)
1754                         fs_info->avail_metadata_alloc_bits |= extra_flags;
1755                 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
1756                         fs_info->avail_system_alloc_bits |= extra_flags;
1757         }
1758 }
1759
1760 static int do_chunk_alloc(struct btrfs_trans_handle *trans,
1761                           struct btrfs_root *extent_root, u64 alloc_bytes,
1762                           u64 flags)
1763 {
1764         struct btrfs_space_info *space_info;
1765         u64 thresh;
1766         u64 start;
1767         u64 num_bytes;
1768         int ret;
1769
1770         space_info = __find_space_info(extent_root->fs_info, flags);
1771         if (!space_info) {
1772                 ret = update_space_info(extent_root->fs_info, flags,
1773                                         0, 0, &space_info);
1774                 BUG_ON(ret);
1775         }
1776         BUG_ON(!space_info);
1777
1778         if (space_info->full)
1779                 return 0;
1780
1781         thresh = div_factor(space_info->total_bytes, 7);
1782         if ((space_info->bytes_used + space_info->bytes_pinned + alloc_bytes) <
1783             thresh)
1784                 return 0;
1785
1786         ret = btrfs_alloc_chunk(trans, extent_root, &start, &num_bytes, flags);
1787         if (ret == -ENOSPC) {
1788                 space_info->full = 1;
1789                 return 0;
1790         }
1791
1792         BUG_ON(ret);
1793
1794         ret = btrfs_make_block_group(trans, extent_root, 0, flags,
1795                      BTRFS_FIRST_CHUNK_TREE_OBJECTID, start, num_bytes);
1796         BUG_ON(ret);
1797         return 0;
1798 }
1799
1800 static int update_block_group(struct btrfs_trans_handle *trans,
1801                               struct btrfs_root *root,
1802                               u64 bytenr, u64 num_bytes, int alloc,
1803                               int mark_free)
1804 {
1805         struct btrfs_block_group_cache *cache;
1806         struct btrfs_fs_info *info = root->fs_info;
1807         u64 total = num_bytes;
1808         u64 old_val;
1809         u64 byte_in_group;
1810         u64 start;
1811         u64 end;
1812
1813         /* block accounting for super block */
1814         old_val = btrfs_super_bytes_used(&info->super_copy);
1815         if (alloc)
1816                 old_val += num_bytes;
1817         else
1818                 old_val -= num_bytes;
1819         btrfs_set_super_bytes_used(&info->super_copy, old_val);
1820
1821         /* block accounting for root item */
1822         old_val = btrfs_root_used(&root->root_item);
1823         if (alloc)
1824                 old_val += num_bytes;
1825         else
1826                 old_val -= num_bytes;
1827         btrfs_set_root_used(&root->root_item, old_val);
1828
1829         while(total) {
1830                 cache = btrfs_lookup_block_group(info, bytenr);
1831                 if (!cache) {
1832                         return -1;
1833                 }
1834                 byte_in_group = bytenr - cache->key.objectid;
1835                 WARN_ON(byte_in_group > cache->key.offset);
1836                 start = cache->key.objectid;
1837                 end = start + cache->key.offset - 1;
1838                 set_extent_bits(&info->block_group_cache, start, end,
1839                                 BLOCK_GROUP_DIRTY, GFP_NOFS);
1840
1841                 old_val = btrfs_block_group_used(&cache->item);
1842                 num_bytes = min(total, cache->key.offset - byte_in_group);
1843                 if (alloc) {
1844                         old_val += num_bytes;
1845                         cache->space_info->bytes_used += num_bytes;
1846                 } else {
1847                         old_val -= num_bytes;
1848                         cache->space_info->bytes_used -= num_bytes;
1849                         if (mark_free) {
1850                                 set_extent_dirty(&info->free_space_cache,
1851                                                  bytenr, bytenr + num_bytes - 1,
1852                                                  GFP_NOFS);
1853                         }
1854                 }
1855                 btrfs_set_block_group_used(&cache->item, old_val);
1856                 total -= num_bytes;
1857                 bytenr += num_bytes;
1858         }
1859         return 0;
1860 }
1861
1862 static int update_pinned_extents(struct btrfs_root *root,
1863                                 u64 bytenr, u64 num, int pin)
1864 {
1865         u64 len;
1866         struct btrfs_block_group_cache *cache;
1867         struct btrfs_fs_info *fs_info = root->fs_info;
1868
1869         if (pin) {
1870                 set_extent_dirty(&fs_info->pinned_extents,
1871                                 bytenr, bytenr + num - 1, GFP_NOFS);
1872         } else {
1873                 clear_extent_dirty(&fs_info->pinned_extents,
1874                                 bytenr, bytenr + num - 1, GFP_NOFS);
1875         }
1876         while (num > 0) {
1877                 cache = btrfs_lookup_block_group(fs_info, bytenr);
1878                 WARN_ON(!cache);
1879                 len = min(num, cache->key.offset -
1880                           (bytenr - cache->key.objectid));
1881                 if (pin) {
1882                         cache->pinned += len;
1883                         cache->space_info->bytes_pinned += len;
1884                         fs_info->total_pinned += len;
1885                 } else {
1886                         cache->pinned -= len;
1887                         cache->space_info->bytes_pinned -= len;
1888                         fs_info->total_pinned -= len;
1889                 }
1890                 bytenr += len;
1891                 num -= len;
1892         }
1893         return 0;
1894 }
1895
1896 int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy)
1897 {
1898         u64 last = 0;
1899         u64 start;
1900         u64 end;
1901         struct extent_io_tree *pinned_extents = &root->fs_info->pinned_extents;
1902         int ret;
1903
1904         while(1) {
1905                 ret = find_first_extent_bit(pinned_extents, last,
1906                                             &start, &end, EXTENT_DIRTY);
1907                 if (ret)
1908                         break;
1909                 set_extent_dirty(copy, start, end, GFP_NOFS);
1910                 last = end + 1;
1911         }
1912         return 0;
1913 }
1914
1915 int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1916                                struct btrfs_root *root,
1917                                struct extent_io_tree *unpin)
1918 {
1919         u64 start;
1920         u64 end;
1921         int ret;
1922         struct extent_io_tree *free_space_cache;
1923         free_space_cache = &root->fs_info->free_space_cache;
1924
1925         while(1) {
1926                 ret = find_first_extent_bit(unpin, 0, &start, &end,
1927                                             EXTENT_DIRTY);
1928                 if (ret)
1929                         break;
1930                 update_pinned_extents(root, start, end + 1 - start, 0);
1931                 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1932                 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
1933         }
1934         return 0;
1935 }
1936
1937 static int finish_current_insert(struct btrfs_trans_handle *trans,
1938                                  struct btrfs_root *extent_root)
1939 {
1940         u64 start;
1941         u64 end;
1942         u64 priv;
1943         struct btrfs_fs_info *info = extent_root->fs_info;
1944         struct btrfs_path *path;
1945         struct pending_extent_op *extent_op;
1946         struct btrfs_key key;
1947         int ret;
1948
1949         path = btrfs_alloc_path();
1950
1951         while(1) {
1952                 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1953                                             &end, EXTENT_LOCKED);
1954                 if (ret)
1955                         break;
1956
1957                 ret = get_state_private(&info->extent_ins, start, &priv);
1958                 BUG_ON(ret);
1959                 extent_op = (struct pending_extent_op *)(unsigned long)priv;
1960
1961                 if (extent_op->type == PENDING_EXTENT_INSERT) {
1962                         key.objectid = start;
1963                         key.offset = end + 1 - start;
1964                         key.type = BTRFS_EXTENT_ITEM_KEY;
1965                         ret = alloc_reserved_tree_block(trans, extent_root,
1966                                                 extent_root->root_key.objectid,
1967                                                 trans->transid,
1968                                                 extent_op->flags,
1969                                                 &extent_op->key,
1970                                                 extent_op->level, &key);
1971                 } else {
1972                         BUG_ON(1);
1973                 }
1974
1975                 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1976                                   GFP_NOFS);
1977                 kfree(extent_op);
1978         }
1979         btrfs_free_path(path);
1980         return 0;
1981 }
1982
1983 static int pin_down_bytes(struct btrfs_trans_handle *trans,
1984                           struct btrfs_root *root,
1985                           u64 bytenr, u64 num_bytes, int is_data)
1986 {
1987         int err = 0;
1988         struct extent_buffer *buf;
1989
1990         if (is_data)
1991                 goto pinit;
1992
1993         buf = btrfs_find_tree_block(root, bytenr, num_bytes);
1994         if (!buf)
1995                 goto pinit;
1996
1997         /* we can reuse a block if it hasn't been written
1998          * and it is from this transaction.  We can't
1999          * reuse anything from the tree log root because
2000          * it has tiny sub-transactions.
2001          */
2002         if (btrfs_buffer_uptodate(buf, 0)) {
2003                 u64 header_owner = btrfs_header_owner(buf);
2004                 u64 header_transid = btrfs_header_generation(buf);
2005                 if (header_owner != BTRFS_TREE_LOG_OBJECTID &&
2006                     header_transid == trans->transid &&
2007                     !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
2008                         clean_tree_block(NULL, root, buf);
2009                         free_extent_buffer(buf);
2010                         return 1;
2011                 }
2012         }
2013         free_extent_buffer(buf);
2014 pinit:
2015         update_pinned_extents(root, bytenr, num_bytes, 1);
2016
2017         BUG_ON(err < 0);
2018         return 0;
2019 }
2020
2021 /*
2022  * remove an extent from the root, returns 0 on success
2023  */
2024 static int __free_extent(struct btrfs_trans_handle *trans,
2025                          struct btrfs_root *root,
2026                          u64 bytenr, u64 num_bytes, u64 parent,
2027                          u64 root_objectid, u64 owner_objectid,
2028                          u64 owner_offset, int refs_to_drop)
2029 {
2030
2031         struct btrfs_key key;
2032         struct btrfs_path *path;
2033         struct btrfs_extent_ops *ops = root->fs_info->extent_ops;
2034         struct btrfs_root *extent_root = root->fs_info->extent_root;
2035         struct extent_buffer *leaf;
2036         struct btrfs_extent_item *ei;
2037         struct btrfs_extent_inline_ref *iref;
2038         int ret;
2039         int is_data;
2040         int extent_slot = 0;
2041         int found_extent = 0;
2042         int num_to_del = 1;
2043         u32 item_size;
2044         u64 refs;
2045
2046         path = btrfs_alloc_path();
2047         if (!path)
2048                 return -ENOMEM;
2049
2050         path->reada = 1;
2051         path->leave_spinning = 1;
2052
2053         is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
2054         BUG_ON(!is_data && refs_to_drop != 1);
2055
2056         ret = lookup_extent_backref(trans, extent_root, path, &iref,
2057                                     bytenr, num_bytes, parent,
2058                                     root_objectid, owner_objectid,
2059                                     owner_offset);
2060         if (ret == 0) {
2061                 extent_slot = path->slots[0];
2062                 while (extent_slot >= 0) {
2063                         btrfs_item_key_to_cpu(path->nodes[0], &key,
2064                                               extent_slot);
2065                         if (key.objectid != bytenr)
2066                                 break;
2067                         if (key.type == BTRFS_EXTENT_ITEM_KEY &&
2068                             key.offset == num_bytes) {
2069                                 found_extent = 1;
2070                                 break;
2071                         }
2072                         if (path->slots[0] - extent_slot > 5)
2073                                 break;
2074                         extent_slot--;
2075                 }
2076 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2077                 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
2078                 if (found_extent && item_size < sizeof(*ei))
2079                         found_extent = 0;
2080 #endif
2081                 if (!found_extent) {
2082                         BUG_ON(iref);
2083                         ret = remove_extent_backref(trans, extent_root, path,
2084                                                     NULL, refs_to_drop,
2085                                                     is_data);
2086                         BUG_ON(ret);
2087                         btrfs_release_path(extent_root, path);
2088                         path->leave_spinning = 1;
2089
2090                         key.objectid = bytenr;
2091                         key.type = BTRFS_EXTENT_ITEM_KEY;
2092                         key.offset = num_bytes;
2093
2094                         ret = btrfs_search_slot(trans, extent_root,
2095                                                 &key, path, -1, 1);
2096                         if (ret) {
2097                                 printk(KERN_ERR "umm, got %d back from search"
2098                                        ", was looking for %llu\n", ret,
2099                                        (unsigned long long)bytenr);
2100                                 btrfs_print_leaf(extent_root, path->nodes[0]);
2101                         }
2102                         BUG_ON(ret);
2103                         extent_slot = path->slots[0];
2104                 }
2105         } else {
2106                 btrfs_print_leaf(extent_root, path->nodes[0]);
2107                 WARN_ON(1);
2108                 printk(KERN_ERR "btrfs unable to find ref byte nr %llu "
2109                        "parent %llu root %llu  owner %llu offset %llu\n",
2110                        (unsigned long long)bytenr,
2111                        (unsigned long long)parent,
2112                        (unsigned long long)root_objectid,
2113                        (unsigned long long)owner_objectid,
2114                        (unsigned long long)owner_offset);
2115         }
2116
2117         leaf = path->nodes[0];
2118         item_size = btrfs_item_size_nr(leaf, extent_slot);
2119 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2120         if (item_size < sizeof(*ei)) {
2121                 BUG_ON(found_extent || extent_slot != path->slots[0]);
2122                 ret = convert_extent_item_v0(trans, extent_root, path,
2123                                              owner_objectid, 0);
2124                 BUG_ON(ret < 0);
2125
2126                 btrfs_release_path(extent_root, path);
2127                 path->leave_spinning = 1;
2128
2129                 key.objectid = bytenr;
2130                 key.type = BTRFS_EXTENT_ITEM_KEY;
2131                 key.offset = num_bytes;
2132
2133                 ret = btrfs_search_slot(trans, extent_root, &key, path,
2134                                         -1, 1);
2135                 if (ret) {
2136                         printk(KERN_ERR "umm, got %d back from search"
2137                                ", was looking for %llu\n", ret,
2138                                (unsigned long long)bytenr);
2139                         btrfs_print_leaf(extent_root, path->nodes[0]);
2140                 }
2141                 BUG_ON(ret);
2142                 extent_slot = path->slots[0];
2143                 leaf = path->nodes[0];
2144                 item_size = btrfs_item_size_nr(leaf, extent_slot);
2145         }
2146 #endif
2147         BUG_ON(item_size < sizeof(*ei));
2148         ei = btrfs_item_ptr(leaf, extent_slot,
2149                             struct btrfs_extent_item);
2150         if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID) {
2151                 struct btrfs_tree_block_info *bi;
2152                 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
2153                 bi = (struct btrfs_tree_block_info *)(ei + 1);
2154                 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
2155         }
2156
2157         refs = btrfs_extent_refs(leaf, ei);
2158         BUG_ON(refs < refs_to_drop);
2159         refs -= refs_to_drop;
2160
2161         if (refs > 0) {
2162                 /*
2163                  * In the case of inline back ref, reference count will
2164                  * be updated by remove_extent_backref
2165                  */
2166                 if (iref) {
2167                         BUG_ON(!found_extent);
2168                 } else {
2169                         btrfs_set_extent_refs(leaf, ei, refs);
2170                         btrfs_mark_buffer_dirty(leaf);
2171                 }
2172                 if (found_extent) {
2173                         ret = remove_extent_backref(trans, extent_root, path,
2174                                                     iref, refs_to_drop,
2175                                                     is_data);
2176                         BUG_ON(ret);
2177                 }
2178         } else {
2179                 int mark_free = 0;
2180                 int pin = 1;
2181
2182                 if (found_extent) {
2183                         BUG_ON(is_data && refs_to_drop !=
2184                                extent_data_ref_count(root, path, iref));
2185                         if (iref) {
2186                                 BUG_ON(path->slots[0] != extent_slot);
2187                         } else {
2188                                 BUG_ON(path->slots[0] != extent_slot + 1);
2189                                 path->slots[0] = extent_slot;
2190                                 num_to_del = 2;
2191                         }
2192                 }
2193
2194                 if (ops && ops->free_extent) {
2195                         ret = ops->free_extent(root, bytenr, num_bytes);
2196                         if (ret > 0) {
2197                                 pin = 0;
2198                                 mark_free = 0;
2199                         }
2200                 }
2201
2202                 if (pin) {
2203                         ret = pin_down_bytes(trans, root, bytenr, num_bytes,
2204                                              is_data);
2205                         if (ret > 0)
2206                                 mark_free = 1;
2207                         BUG_ON(ret < 0);
2208                 }
2209
2210                 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
2211                                       num_to_del);
2212                 BUG_ON(ret);
2213                 btrfs_release_path(extent_root, path);
2214
2215                 if (is_data) {
2216                         ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
2217                         BUG_ON(ret);
2218                 }
2219
2220                 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
2221                                          mark_free);
2222                 BUG_ON(ret);
2223         }
2224         btrfs_free_path(path);
2225         finish_current_insert(trans, extent_root);
2226         return ret;
2227 }
2228
2229 /*
2230  * find all the blocks marked as pending in the radix tree and remove
2231  * them from the extent map
2232  */
2233 static int del_pending_extents(struct btrfs_trans_handle *trans, struct
2234                                btrfs_root *extent_root)
2235 {
2236         int ret;
2237         int err = 0;
2238         u64 start;
2239         u64 end;
2240         u64 priv;
2241         struct extent_io_tree *pending_del;
2242         struct extent_io_tree *extent_ins;
2243         struct pending_extent_op *extent_op;
2244
2245         extent_ins = &extent_root->fs_info->extent_ins;
2246         pending_del = &extent_root->fs_info->pending_del;
2247
2248         while(1) {
2249                 ret = find_first_extent_bit(pending_del, 0, &start, &end,
2250                                             EXTENT_LOCKED);
2251                 if (ret)
2252                         break;
2253
2254                 ret = get_state_private(pending_del, start, &priv);
2255                 BUG_ON(ret);
2256                 extent_op = (struct pending_extent_op *)(unsigned long)priv;
2257
2258                 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
2259                                   GFP_NOFS);
2260
2261                 if (!test_range_bit(extent_ins, start, end,
2262                                     EXTENT_LOCKED, 0)) {
2263                         ret = __free_extent(trans, extent_root,
2264                                             start, end + 1 - start, 0,
2265                                             extent_root->root_key.objectid,
2266                                             extent_op->level, 0, 1);
2267                         kfree(extent_op);
2268                 } else {
2269                         kfree(extent_op);
2270                         ret = get_state_private(extent_ins, start, &priv);
2271                         BUG_ON(ret);
2272                         extent_op = (struct pending_extent_op *)
2273                                                         (unsigned long)priv;
2274
2275                         clear_extent_bits(extent_ins, start, end,
2276                                           EXTENT_LOCKED, GFP_NOFS);
2277
2278                         if (extent_op->type == PENDING_BACKREF_UPDATE)
2279                                 BUG_ON(1);
2280
2281                         kfree(extent_op);
2282                 }
2283                 if (ret)
2284                         err = ret;
2285         }
2286         return err;
2287 }
2288
2289 /*
2290  * remove an extent from the root, returns 0 on success
2291  */
2292
2293 int btrfs_free_extent(struct btrfs_trans_handle *trans,
2294                       struct btrfs_root *root,
2295                       u64 bytenr, u64 num_bytes, u64 parent,
2296                       u64 root_objectid, u64 owner, u64 offset)
2297 {
2298         struct btrfs_root *extent_root = root->fs_info->extent_root;
2299         int pending_ret;
2300         int ret;
2301
2302         WARN_ON(num_bytes < root->sectorsize);
2303         if (root == extent_root) {
2304                 struct pending_extent_op *extent_op;
2305
2306                 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
2307                 BUG_ON(!extent_op);
2308
2309                 extent_op->type = PENDING_EXTENT_DELETE;
2310                 extent_op->bytenr = bytenr;
2311                 extent_op->num_bytes = num_bytes;
2312                 extent_op->level = (int)owner;
2313
2314                 set_extent_bits(&root->fs_info->pending_del,
2315                                 bytenr, bytenr + num_bytes - 1,
2316                                 EXTENT_LOCKED, GFP_NOFS);
2317                 set_state_private(&root->fs_info->pending_del,
2318                                   bytenr, (unsigned long)extent_op);
2319                 return 0;
2320         }
2321         ret = __free_extent(trans, root, bytenr, num_bytes, parent,
2322                             root_objectid, owner, offset, 1);
2323         pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
2324         return ret ? ret : pending_ret;
2325 }
2326
2327 static u64 stripe_align(struct btrfs_root *root, u64 val)
2328 {
2329         u64 mask = ((u64)root->stripesize - 1);
2330         u64 ret = (val + mask) & ~mask;
2331         return ret;
2332 }
2333
2334 /*
2335  * walks the btree of allocated extents and find a hole of a given size.
2336  * The key ins is changed to record the hole:
2337  * ins->objectid == block start
2338  * ins->flags = BTRFS_EXTENT_ITEM_KEY
2339  * ins->offset == number of blocks
2340  * Any available blocks before search_start are skipped.
2341  */
2342 static int noinline find_free_extent(struct btrfs_trans_handle *trans,
2343                                      struct btrfs_root *orig_root,
2344                                      u64 num_bytes, u64 empty_size,
2345                                      u64 search_start, u64 search_end,
2346                                      u64 hint_byte, struct btrfs_key *ins,
2347                                      u64 exclude_start, u64 exclude_nr,
2348                                      int data)
2349 {
2350         int ret;
2351         u64 orig_search_start = search_start;
2352         struct btrfs_root * root = orig_root->fs_info->extent_root;
2353         struct btrfs_fs_info *info = root->fs_info;
2354         u64 total_needed = num_bytes;
2355         struct btrfs_block_group_cache *block_group;
2356         int full_scan = 0;
2357         int wrapped = 0;
2358
2359         WARN_ON(num_bytes < root->sectorsize);
2360         btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
2361
2362         if (hint_byte) {
2363                 block_group = btrfs_lookup_first_block_group(info, hint_byte);
2364                 if (!block_group)
2365                         hint_byte = search_start;
2366                 block_group = btrfs_find_block_group(root, block_group,
2367                                                      hint_byte, data, 1);
2368         } else {
2369                 block_group = btrfs_find_block_group(root,
2370                                                      trans->block_group,
2371                                                      search_start, data, 1);
2372         }
2373
2374         total_needed += empty_size;
2375
2376 check_failed:
2377         if (!block_group) {
2378                 block_group = btrfs_lookup_first_block_group(info,
2379                                                              search_start);
2380                 if (!block_group)
2381                         block_group = btrfs_lookup_first_block_group(info,
2382                                                        orig_search_start);
2383         }
2384         ret = find_search_start(root, &block_group, &search_start,
2385                                 total_needed, data);
2386         if (ret)
2387                 goto error;
2388
2389         search_start = stripe_align(root, search_start);
2390         ins->objectid = search_start;
2391         ins->offset = num_bytes;
2392
2393         if (ins->objectid + num_bytes >
2394             block_group->key.objectid + block_group->key.offset) {
2395                 search_start = block_group->key.objectid +
2396                         block_group->key.offset;
2397                 goto new_group;
2398         }
2399
2400         if (test_range_bit(&info->extent_ins, ins->objectid,
2401                            ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
2402                 search_start = ins->objectid + num_bytes;
2403                 goto new_group;
2404         }
2405
2406         if (test_range_bit(&info->pinned_extents, ins->objectid,
2407                            ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
2408                 search_start = ins->objectid + num_bytes;
2409                 goto new_group;
2410         }
2411
2412         if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
2413             ins->objectid < exclude_start + exclude_nr)) {
2414                 search_start = exclude_start + exclude_nr;
2415                 goto new_group;
2416         }
2417
2418         if (!(data & BTRFS_BLOCK_GROUP_DATA)) {
2419                 block_group = btrfs_lookup_block_group(info, ins->objectid);
2420                 if (block_group)
2421                         trans->block_group = block_group;
2422         }
2423         ins->offset = num_bytes;
2424         return 0;
2425
2426 new_group:
2427         block_group = btrfs_lookup_first_block_group(info, search_start);
2428         if (!block_group) {
2429                 search_start = orig_search_start;
2430                 if (full_scan) {
2431                         ret = -ENOSPC;
2432                         goto error;
2433                 }
2434                 if (wrapped) {
2435                         if (!full_scan)
2436                                 total_needed -= empty_size;
2437                         full_scan = 1;
2438                 } else
2439                         wrapped = 1;
2440         }
2441         cond_resched();
2442         block_group = btrfs_find_block_group(root, block_group,
2443                                              search_start, data, 0);
2444         goto check_failed;
2445
2446 error:
2447         return ret;
2448 }
2449
2450 static int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
2451                                 struct btrfs_root *root,
2452                                 u64 num_bytes, u64 empty_size,
2453                                 u64 hint_byte, u64 search_end,
2454                                 struct btrfs_key *ins, int data)
2455 {
2456         int ret;
2457         u64 search_start = 0;
2458         u64 alloc_profile;
2459         struct btrfs_fs_info *info = root->fs_info;
2460
2461         if (info->extent_ops) {
2462                 struct btrfs_extent_ops *ops = info->extent_ops;
2463                 ret = ops->alloc_extent(root, num_bytes, hint_byte, ins);
2464                 BUG_ON(ret);
2465                 goto found;
2466         }
2467
2468         if (data) {
2469                 alloc_profile = info->avail_data_alloc_bits &
2470                                 info->data_alloc_profile;
2471                 data = BTRFS_BLOCK_GROUP_DATA | alloc_profile;
2472         } else if ((info->system_allocs > 0 || root == info->chunk_root) &&
2473                    info->system_allocs >= 0) {
2474                 alloc_profile = info->avail_system_alloc_bits &
2475                                 info->system_alloc_profile;
2476                 data = BTRFS_BLOCK_GROUP_SYSTEM | alloc_profile;
2477         } else {
2478                 alloc_profile = info->avail_metadata_alloc_bits &
2479                                 info->metadata_alloc_profile;
2480                 data = BTRFS_BLOCK_GROUP_METADATA | alloc_profile;
2481         }
2482
2483         if (root->ref_cows) {
2484                 if (!(data & BTRFS_BLOCK_GROUP_METADATA)) {
2485                         ret = do_chunk_alloc(trans, root->fs_info->extent_root,
2486                                              num_bytes,
2487                                              BTRFS_BLOCK_GROUP_METADATA);
2488                         BUG_ON(ret);
2489                 }
2490                 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
2491                                      num_bytes + 2 * 1024 * 1024, data);
2492                 BUG_ON(ret);
2493         }
2494
2495         WARN_ON(num_bytes < root->sectorsize);
2496         ret = find_free_extent(trans, root, num_bytes, empty_size,
2497                                search_start, search_end, hint_byte, ins,
2498                                trans->alloc_exclude_start,
2499                                trans->alloc_exclude_nr, data);
2500         BUG_ON(ret);
2501 found:
2502         clear_extent_dirty(&root->fs_info->free_space_cache,
2503                            ins->objectid, ins->objectid + ins->offset - 1,
2504                            GFP_NOFS);
2505         return ret;
2506 }
2507
2508 static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
2509                                      struct btrfs_root *root,
2510                                      u64 root_objectid, u64 generation,
2511                                      u64 flags, struct btrfs_disk_key *key,
2512                                      int level, struct btrfs_key *ins)
2513 {
2514         int ret;
2515         struct btrfs_fs_info *fs_info = root->fs_info;
2516         struct btrfs_extent_item *extent_item;
2517         struct btrfs_tree_block_info *block_info;
2518         struct btrfs_extent_inline_ref *iref;
2519         struct btrfs_path *path;
2520         struct extent_buffer *leaf;
2521         u32 size = sizeof(*extent_item) + sizeof(*block_info) + sizeof(*iref);
2522
2523         path = btrfs_alloc_path();
2524         BUG_ON(!path);
2525
2526         path->leave_spinning = 1;
2527         ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
2528                                       ins, size);
2529         BUG_ON(ret);
2530
2531         leaf = path->nodes[0];
2532         extent_item = btrfs_item_ptr(leaf, path->slots[0],
2533                                      struct btrfs_extent_item);
2534         btrfs_set_extent_refs(leaf, extent_item, 1);
2535         btrfs_set_extent_generation(leaf, extent_item, generation);
2536         btrfs_set_extent_flags(leaf, extent_item,
2537                                flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
2538         block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
2539
2540         btrfs_set_tree_block_key(leaf, block_info, key);
2541         btrfs_set_tree_block_level(leaf, block_info, level);
2542
2543         iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
2544         btrfs_set_extent_inline_ref_type(leaf, iref, BTRFS_TREE_BLOCK_REF_KEY);
2545         btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
2546
2547         btrfs_mark_buffer_dirty(leaf);
2548         btrfs_free_path(path);
2549
2550         ret = update_block_group(trans, root, ins->objectid, ins->offset,
2551                                  1, 0);
2552         if (ret) {
2553                 printk(KERN_ERR "btrfs update block group failed for %llu "
2554                        "%llu\n", (unsigned long long)ins->objectid,
2555                        (unsigned long long)ins->offset);
2556                 BUG();
2557         }
2558         return ret;
2559 }
2560
2561 static int alloc_tree_block(struct btrfs_trans_handle *trans,
2562                             struct btrfs_root *root, u64 num_bytes,
2563                             u64 root_objectid, u64 generation,
2564                             u64 flags, struct btrfs_disk_key *key,
2565                             int level, u64 empty_size, u64 hint_byte,
2566                             u64 search_end, struct btrfs_key *ins)
2567 {
2568         int ret;
2569         ret = btrfs_reserve_extent(trans, root, num_bytes, empty_size,
2570                                    hint_byte, search_end, ins, 0);
2571         BUG_ON(ret);
2572
2573         if (root_objectid == BTRFS_EXTENT_TREE_OBJECTID) {
2574                 struct pending_extent_op *extent_op;
2575
2576                 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
2577                 BUG_ON(!extent_op);
2578
2579                 extent_op->type = PENDING_EXTENT_INSERT;
2580                 extent_op->bytenr = ins->objectid;
2581                 extent_op->num_bytes = ins->offset;
2582                 extent_op->level = level;
2583                 extent_op->flags = flags;
2584                 memcpy(&extent_op->key, key, sizeof(*key));
2585
2586                 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
2587                                 ins->objectid + ins->offset - 1,
2588                                 EXTENT_LOCKED, GFP_NOFS);
2589                 set_state_private(&root->fs_info->extent_ins,
2590                                   ins->objectid, (unsigned long)extent_op);
2591         } else {
2592                 ret = alloc_reserved_tree_block(trans, root, root_objectid,
2593                                                 generation, flags,
2594                                                 key, level, ins);
2595                 finish_current_insert(trans, root->fs_info->extent_root);
2596                 del_pending_extents(trans, root->fs_info->extent_root);
2597         }
2598         return ret;
2599 }
2600
2601 /*
2602  * helper function to allocate a block for a given tree
2603  * returns the tree buffer or NULL.
2604  */
2605 struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
2606                                         struct btrfs_root *root,
2607                                         u32 blocksize, u64 root_objectid,
2608                                         struct btrfs_disk_key *key, int level,
2609                                         u64 hint, u64 empty_size)
2610 {
2611         struct btrfs_key ins;
2612         int ret;
2613         struct extent_buffer *buf;
2614
2615         ret = alloc_tree_block(trans, root, blocksize, root_objectid,
2616                                trans->transid, 0, key, level,
2617                                empty_size, hint, (u64)-1, &ins);
2618         if (ret) {
2619                 BUG_ON(ret > 0);
2620                 return ERR_PTR(ret);
2621         }
2622
2623         buf = btrfs_find_create_tree_block(root, ins.objectid, blocksize);
2624         if (!buf) {
2625                 btrfs_free_extent(trans, root, ins.objectid, ins.offset,
2626                                   0, root->root_key.objectid, level, 0);
2627                 BUG_ON(1);
2628                 return ERR_PTR(-ENOMEM);
2629         }
2630         btrfs_set_buffer_uptodate(buf);
2631         trans->blocks_used++;
2632
2633         return buf;
2634 }
2635
2636 #if 0
2637
2638 static int noinline drop_leaf_ref(struct btrfs_trans_handle *trans,
2639                                   struct btrfs_root *root,
2640                                   struct extent_buffer *leaf)
2641 {
2642         u64 leaf_owner;
2643         u64 leaf_generation;
2644         struct btrfs_key key;
2645         struct btrfs_file_extent_item *fi;
2646         int i;
2647         int nritems;
2648         int ret;
2649
2650         BUG_ON(!btrfs_is_leaf(leaf));
2651         nritems = btrfs_header_nritems(leaf);
2652         leaf_owner = btrfs_header_owner(leaf);
2653         leaf_generation = btrfs_header_generation(leaf);
2654
2655         for (i = 0; i < nritems; i++) {
2656                 u64 disk_bytenr;
2657
2658                 btrfs_item_key_to_cpu(leaf, &key, i);
2659                 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
2660                         continue;
2661                 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
2662                 if (btrfs_file_extent_type(leaf, fi) ==
2663                     BTRFS_FILE_EXTENT_INLINE)
2664                         continue;
2665                 /*
2666                  * FIXME make sure to insert a trans record that
2667                  * repeats the snapshot del on crash
2668                  */
2669                 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
2670                 if (disk_bytenr == 0)
2671                         continue;
2672                 ret = btrfs_free_extent(trans, root, disk_bytenr,
2673                                 btrfs_file_extent_disk_num_bytes(leaf, fi),
2674                                 leaf->start, leaf_owner, leaf_generation,
2675                                 key.objectid, 0);
2676                 BUG_ON(ret);
2677         }
2678         return 0;
2679 }
2680
2681 static void noinline reada_walk_down(struct btrfs_root *root,
2682                                      struct extent_buffer *node,
2683                                      int slot)
2684 {
2685         u64 bytenr;
2686         u64 last = 0;
2687         u32 nritems;
2688         u32 refs;
2689         u32 blocksize;
2690         int ret;
2691         int i;
2692         int level;
2693         int skipped = 0;
2694
2695         nritems = btrfs_header_nritems(node);
2696         level = btrfs_header_level(node);
2697         if (level)
2698                 return;
2699
2700         for (i = slot; i < nritems && skipped < 32; i++) {
2701                 bytenr = btrfs_node_blockptr(node, i);
2702                 if (last && ((bytenr > last && bytenr - last > 32 * 1024) ||
2703                              (last > bytenr && last - bytenr > 32 * 1024))) {
2704                         skipped++;
2705                         continue;
2706                 }
2707                 blocksize = btrfs_level_size(root, level - 1);
2708                 if (i != slot) {
2709                         ret = btrfs_lookup_extent_ref(NULL, root, bytenr,
2710                                                       blocksize, &refs);
2711                         BUG_ON(ret);
2712                         if (refs != 1) {
2713                                 skipped++;
2714                                 continue;
2715                         }
2716                 }
2717                 mutex_unlock(&root->fs_info->fs_mutex);
2718                 ret = readahead_tree_block(root, bytenr, blocksize,
2719                                            btrfs_node_ptr_generation(node, i));
2720                 last = bytenr + blocksize;
2721                 cond_resched();
2722                 mutex_lock(&root->fs_info->fs_mutex);
2723                 if (ret)
2724                         break;
2725         }
2726 }
2727
2728 /*
2729  * helper function for drop_snapshot, this walks down the tree dropping ref
2730  * counts as it goes.
2731  */
2732 static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
2733                                    struct btrfs_root *root,
2734                                    struct btrfs_path *path, int *level)
2735 {
2736         u64 root_owner;
2737         u64 root_gen;
2738         u64 bytenr;
2739         u64 ptr_gen;
2740         struct extent_buffer *next;
2741         struct extent_buffer *cur;
2742         struct extent_buffer *parent;
2743         u32 blocksize;
2744         int ret;
2745         u32 refs;
2746
2747         WARN_ON(*level < 0);
2748         WARN_ON(*level >= BTRFS_MAX_LEVEL);
2749         ret = btrfs_lookup_extent_ref(trans, root,
2750                                       path->nodes[*level]->start,
2751                                       path->nodes[*level]->len, &refs);
2752         BUG_ON(ret);
2753         if (refs > 1)
2754                 goto out;
2755
2756         /*
2757          * walk down to the last node level and free all the leaves
2758          */
2759         while(*level >= 0) {
2760                 WARN_ON(*level < 0);
2761                 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2762                 cur = path->nodes[*level];
2763
2764                 if (btrfs_header_level(cur) != *level)
2765                         WARN_ON(1);
2766
2767                 if (path->slots[*level] >=
2768                     btrfs_header_nritems(cur))
2769                         break;
2770                 if (*level == 0) {
2771                         ret = drop_leaf_ref(trans, root, cur);
2772                         BUG_ON(ret);
2773                         break;
2774                 }
2775                 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
2776                 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
2777                 blocksize = btrfs_level_size(root, *level - 1);
2778                 ret = btrfs_lookup_extent_ref(trans, root, bytenr, blocksize,
2779                                               &refs);
2780                 BUG_ON(ret);
2781                 if (refs != 1) {
2782                         parent = path->nodes[*level];
2783                         root_owner = btrfs_header_owner(parent);
2784                         root_gen = btrfs_header_generation(parent);
2785                         path->slots[*level]++;
2786                         ret = btrfs_free_extent(trans, root, bytenr, blocksize,
2787                                                 parent->start, root_owner,
2788                                                 root_gen, *level - 1, 1);
2789                         BUG_ON(ret);
2790                         continue;
2791                 }
2792                 next = btrfs_find_tree_block(root, bytenr, blocksize);
2793                 if (!next || !btrfs_buffer_uptodate(next, ptr_gen)) {
2794                         free_extent_buffer(next);
2795                         reada_walk_down(root, cur, path->slots[*level]);
2796                         mutex_unlock(&root->fs_info->fs_mutex);
2797                         next = read_tree_block(root, bytenr, blocksize,
2798                                                ptr_gen);
2799                         mutex_lock(&root->fs_info->fs_mutex);
2800                 }
2801                 WARN_ON(*level <= 0);
2802                 if (path->nodes[*level-1])
2803                         free_extent_buffer(path->nodes[*level-1]);
2804                 path->nodes[*level-1] = next;
2805                 *level = btrfs_header_level(next);
2806                 path->slots[*level] = 0;
2807         }
2808 out:
2809         WARN_ON(*level < 0);
2810         WARN_ON(*level >= BTRFS_MAX_LEVEL);
2811
2812         if (path->nodes[*level] == root->node) {
2813                 root_owner = root->root_key.objectid;
2814                 parent = path->nodes[*level];
2815         } else {
2816                 parent = path->nodes[*level + 1];
2817                 root_owner = btrfs_header_owner(parent);
2818         }
2819
2820         root_gen = btrfs_header_generation(parent);
2821         ret = btrfs_free_extent(trans, root, path->nodes[*level]->start,
2822                                 path->nodes[*level]->len, parent->start,
2823                                 root_owner, root_gen, *level, 1);
2824         free_extent_buffer(path->nodes[*level]);
2825         path->nodes[*level] = NULL;
2826         *level += 1;
2827         BUG_ON(ret);
2828         return 0;
2829 }
2830
2831 /*
2832  * helper for dropping snapshots.  This walks back up the tree in the path
2833  * to find the first node higher up where we haven't yet gone through
2834  * all the slots
2835  */
2836 static int noinline walk_up_tree(struct btrfs_trans_handle *trans,
2837                                  struct btrfs_root *root,
2838                                  struct btrfs_path *path, int *level)
2839 {
2840         u64 root_owner;
2841         u64 root_gen;
2842         struct btrfs_root_item *root_item = &root->root_item;
2843         int i;
2844         int slot;
2845         int ret;
2846
2847         for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
2848                 slot = path->slots[i];
2849                 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
2850                         struct extent_buffer *node;
2851                         struct btrfs_disk_key disk_key;
2852                         node = path->nodes[i];
2853                         path->slots[i]++;
2854                         *level = i;
2855                         WARN_ON(*level == 0);
2856                         btrfs_node_key(node, &disk_key, path->slots[i]);
2857                         memcpy(&root_item->drop_progress,
2858                                &disk_key, sizeof(disk_key));
2859                         root_item->drop_level = i;
2860                         return 0;
2861                 } else {
2862                         struct extent_buffer *parent;
2863                         if (path->nodes[*level] == root->node)
2864                                 parent = path->nodes[*level];
2865                         else
2866                                 parent = path->nodes[*level + 1];
2867
2868                         root_owner = btrfs_header_owner(parent);
2869                         root_gen = btrfs_header_generation(parent);
2870                         ret = btrfs_free_extent(trans, root,
2871                                                 path->nodes[*level]->start,
2872                                                 path->nodes[*level]->len,
2873                                                 parent->start, root_owner,
2874                                                 root_gen, *level, 1);
2875                         BUG_ON(ret);
2876                         free_extent_buffer(path->nodes[*level]);
2877                         path->nodes[*level] = NULL;
2878                         *level = i + 1;
2879                 }
2880         }
2881         return 1;
2882 }
2883
2884 /*
2885  * drop the reference count on the tree rooted at 'snap'.  This traverses
2886  * the tree freeing any blocks that have a ref count of zero after being
2887  * decremented.
2888  */
2889 int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
2890                         *root)
2891 {
2892         int ret = 0;
2893         int wret;
2894         int level;
2895         struct btrfs_path *path;
2896         int i;
2897         int orig_level;
2898         struct btrfs_root_item *root_item = &root->root_item;
2899
2900         path = btrfs_alloc_path();
2901         BUG_ON(!path);
2902
2903         level = btrfs_header_level(root->node);
2904         orig_level = level;
2905         if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2906                 path->nodes[level] = root->node;
2907                 extent_buffer_get(root->node);
2908                 path->slots[level] = 0;
2909         } else {
2910                 struct btrfs_key key;
2911                 struct btrfs_disk_key found_key;
2912                 struct extent_buffer *node;
2913
2914                 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
2915                 level = root_item->drop_level;
2916                 path->lowest_level = level;
2917                 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2918                 if (wret < 0) {
2919                         ret = wret;
2920                         goto out;
2921                 }
2922                 node = path->nodes[level];
2923                 btrfs_node_key(node, &found_key, path->slots[level]);
2924                 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2925                                sizeof(found_key)));
2926         }
2927         while(1) {
2928                 wret = walk_down_tree(trans, root, path, &level);
2929                 if (wret < 0)
2930                         ret = wret;
2931                 if (wret != 0)
2932                         break;
2933
2934                 wret = walk_up_tree(trans, root, path, &level);
2935                 if (wret < 0)
2936                         ret = wret;
2937                 if (wret != 0)
2938                         break;
2939                 /*
2940                 ret = -EAGAIN;
2941                 break;
2942                 */
2943         }
2944         for (i = 0; i <= orig_level; i++) {
2945                 if (path->nodes[i]) {
2946                         free_extent_buffer(path->nodes[i]);
2947                         path->nodes[i] = NULL;
2948                 }
2949         }
2950 out:
2951         btrfs_free_path(path);
2952         return ret;
2953 }
2954
2955 #endif
2956
2957 int btrfs_free_block_groups(struct btrfs_fs_info *info)
2958 {
2959         u64 start;
2960         u64 end;
2961         u64 ptr;
2962         int ret;
2963         while(1) {
2964                 ret = find_first_extent_bit(&info->block_group_cache, 0,
2965                                             &start, &end, (unsigned int)-1);
2966                 if (ret)
2967                         break;
2968                 ret = get_state_private(&info->block_group_cache, start, &ptr);
2969                 if (!ret)
2970                         kfree((void *)(unsigned long)ptr);
2971                 clear_extent_bits(&info->block_group_cache, start,
2972                                   end, (unsigned int)-1, GFP_NOFS);
2973         }
2974         while(1) {
2975                 ret = find_first_extent_bit(&info->free_space_cache, 0,
2976                                             &start, &end, EXTENT_DIRTY);
2977                 if (ret)
2978                         break;
2979                 clear_extent_dirty(&info->free_space_cache, start,
2980                                    end, GFP_NOFS);
2981         }
2982         return 0;
2983 }
2984
2985 int find_first_block_group(struct btrfs_root *root, struct btrfs_path *path,
2986                            struct btrfs_key *key)
2987 {
2988         int ret;
2989         struct btrfs_key found_key;
2990         struct extent_buffer *leaf;
2991         int slot;
2992
2993         ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
2994         if (ret < 0)
2995                 return ret;
2996         while(1) {
2997                 slot = path->slots[0];
2998                 leaf = path->nodes[0];
2999                 if (slot >= btrfs_header_nritems(leaf)) {
3000                         ret = btrfs_next_leaf(root, path);
3001                         if (ret == 0)
3002                                 continue;
3003                         if (ret < 0)
3004                                 goto error;
3005                         break;
3006                 }
3007                 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3008
3009                 if (found_key.objectid >= key->objectid &&
3010                     found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY)
3011                         return 0;
3012                 path->slots[0]++;
3013         }
3014         ret = -ENOENT;
3015 error:
3016         return ret;
3017 }
3018
3019 int btrfs_read_block_groups(struct btrfs_root *root)
3020 {
3021         struct btrfs_path *path;
3022         int ret;
3023         int bit;
3024         struct btrfs_block_group_cache *cache;
3025         struct btrfs_fs_info *info = root->fs_info;
3026         struct btrfs_space_info *space_info;
3027         struct extent_io_tree *block_group_cache;
3028         struct btrfs_key key;
3029         struct btrfs_key found_key;
3030         struct extent_buffer *leaf;
3031
3032         block_group_cache = &info->block_group_cache;
3033
3034         root = info->extent_root;
3035         key.objectid = 0;
3036         key.offset = 0;
3037         btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
3038         path = btrfs_alloc_path();
3039         if (!path)
3040                 return -ENOMEM;
3041
3042         while(1) {
3043                 ret = find_first_block_group(root, path, &key);
3044                 if (ret > 0) {
3045                         ret = 0;
3046                         goto error;
3047                 }
3048                 if (ret != 0) {
3049                         goto error;
3050                 }
3051                 leaf = path->nodes[0];
3052                 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3053                 cache = kzalloc(sizeof(*cache), GFP_NOFS);
3054                 if (!cache) {
3055                         ret = -ENOMEM;
3056                         break;
3057                 }
3058
3059                 read_extent_buffer(leaf, &cache->item,
3060                                    btrfs_item_ptr_offset(leaf, path->slots[0]),
3061                                    sizeof(cache->item));
3062                 memcpy(&cache->key, &found_key, sizeof(found_key));
3063                 cache->cached = 0;
3064                 cache->pinned = 0;
3065                 key.objectid = found_key.objectid + found_key.offset;
3066                 btrfs_release_path(root, path);
3067                 cache->flags = btrfs_block_group_flags(&cache->item);
3068                 bit = 0;
3069                 if (cache->flags & BTRFS_BLOCK_GROUP_DATA) {
3070                         bit = BLOCK_GROUP_DATA;
3071                 } else if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
3072                         bit = BLOCK_GROUP_SYSTEM;
3073                 } else if (cache->flags & BTRFS_BLOCK_GROUP_METADATA) {
3074                         bit = BLOCK_GROUP_METADATA;
3075                 }
3076                 set_avail_alloc_bits(info, cache->flags);
3077                 if (btrfs_chunk_readonly(root, cache->key.objectid))
3078                         cache->ro = 1;
3079
3080                 ret = update_space_info(info, cache->flags, found_key.offset,
3081                                         btrfs_block_group_used(&cache->item),
3082                                         &space_info);
3083                 BUG_ON(ret);
3084                 cache->space_info = space_info;
3085
3086                 /* use EXTENT_LOCKED to prevent merging */
3087                 set_extent_bits(block_group_cache, found_key.objectid,
3088                                 found_key.objectid + found_key.offset - 1,
3089                                 bit | EXTENT_LOCKED, GFP_NOFS);
3090                 set_state_private(block_group_cache, found_key.objectid,
3091                                   (unsigned long)cache);
3092         }
3093         ret = 0;
3094 error:
3095         btrfs_free_path(path);
3096         return ret;
3097 }
3098
3099 int btrfs_make_block_group(struct btrfs_trans_handle *trans,
3100                            struct btrfs_root *root, u64 bytes_used,
3101                            u64 type, u64 chunk_objectid, u64 chunk_offset,
3102                            u64 size)
3103 {
3104         int ret;
3105         int bit = 0;
3106         struct btrfs_root *extent_root;
3107         struct btrfs_block_group_cache *cache;
3108         struct extent_io_tree *block_group_cache;
3109
3110         extent_root = root->fs_info->extent_root;
3111         block_group_cache = &root->fs_info->block_group_cache;
3112
3113         cache = kzalloc(sizeof(*cache), GFP_NOFS);
3114         BUG_ON(!cache);
3115         cache->key.objectid = chunk_offset;
3116         cache->key.offset = size;
3117
3118         btrfs_set_key_type(&cache->key, BTRFS_BLOCK_GROUP_ITEM_KEY);
3119         btrfs_set_block_group_used(&cache->item, bytes_used);
3120         btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
3121         cache->flags = type;
3122         btrfs_set_block_group_flags(&cache->item, type);
3123
3124         ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
3125                                 &cache->space_info);
3126         BUG_ON(ret);
3127
3128         bit = block_group_state_bits(type);
3129         set_extent_bits(block_group_cache, chunk_offset,
3130                         chunk_offset + size - 1,
3131                         bit | EXTENT_LOCKED, GFP_NOFS);
3132
3133         set_state_private(block_group_cache, chunk_offset,
3134                           (unsigned long)cache);
3135         ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
3136                                 sizeof(cache->item));
3137         BUG_ON(ret);
3138
3139         finish_current_insert(trans, extent_root);
3140         ret = del_pending_extents(trans, extent_root);
3141         BUG_ON(ret);
3142         set_avail_alloc_bits(extent_root->fs_info, type);
3143         return 0;
3144 }
3145
3146 /*
3147  * This is for converter use only.
3148  *
3149  * In that case, we don't know where are free blocks located.
3150  * Therefore all block group cache entries must be setup properly
3151  * before doing any block allocation.
3152  */
3153 int btrfs_make_block_groups(struct btrfs_trans_handle *trans,
3154                             struct btrfs_root *root)
3155 {
3156         u64 total_bytes;
3157         u64 cur_start;
3158         u64 group_type;
3159         u64 group_size;
3160         u64 group_align;
3161         u64 total_data = 0;
3162         u64 total_metadata = 0;
3163         u64 chunk_objectid;
3164         int ret;
3165         int bit;
3166         struct btrfs_root *extent_root;
3167         struct btrfs_block_group_cache *cache;
3168         struct extent_io_tree *block_group_cache;
3169
3170         extent_root = root->fs_info->extent_root;
3171         block_group_cache = &root->fs_info->block_group_cache;
3172         chunk_objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
3173         total_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
3174         group_align = 64 * root->sectorsize;
3175
3176         cur_start = 0;
3177         while (cur_start < total_bytes) {
3178                 group_size = total_bytes / 12;
3179                 group_size = min_t(u64, group_size, total_bytes - cur_start);
3180                 if (cur_start == 0) {
3181                         bit = BLOCK_GROUP_SYSTEM;
3182                         group_type = BTRFS_BLOCK_GROUP_SYSTEM;
3183                         group_size /= 4;
3184                         group_size &= ~(group_align - 1);
3185                         group_size = max_t(u64, group_size, 8 * 1024 * 1024);
3186                         group_size = min_t(u64, group_size, 32 * 1024 * 1024);
3187                 } else {
3188                         group_size &= ~(group_align - 1);
3189                         if (total_data >= total_metadata * 2) {
3190                                 group_type = BTRFS_BLOCK_GROUP_METADATA;
3191                                 group_size = min_t(u64, group_size,
3192                                                    1ULL * 1024 * 1024 * 1024);
3193                                 total_metadata += group_size;
3194                         } else {
3195                                 group_type = BTRFS_BLOCK_GROUP_DATA;
3196                                 group_size = min_t(u64, group_size,
3197                                                    5ULL * 1024 * 1024 * 1024);
3198                                 total_data += group_size;
3199                         }
3200                         if ((total_bytes - cur_start) * 4 < group_size * 5)
3201                                 group_size = total_bytes - cur_start;
3202                 }
3203
3204                 cache = kzalloc(sizeof(*cache), GFP_NOFS);
3205                 BUG_ON(!cache);
3206
3207                 cache->key.objectid = cur_start;
3208                 cache->key.offset = group_size;
3209                 btrfs_set_key_type(&cache->key, BTRFS_BLOCK_GROUP_ITEM_KEY);
3210
3211                 btrfs_set_block_group_used(&cache->item, 0);
3212                 btrfs_set_block_group_chunk_objectid(&cache->item,
3213                                                      chunk_objectid);
3214                 btrfs_set_block_group_flags(&cache->item, group_type);
3215
3216                 cache->flags = group_type;
3217
3218                 ret = update_space_info(root->fs_info, group_type, group_size,
3219                                         0, &cache->space_info);
3220                 BUG_ON(ret);
3221                 set_avail_alloc_bits(extent_root->fs_info, group_type);
3222
3223                 set_extent_bits(block_group_cache, cur_start,
3224                                 cur_start + group_size - 1,
3225                                 bit | EXTENT_LOCKED, GFP_NOFS);
3226                 set_state_private(block_group_cache, cur_start,
3227                                   (unsigned long)cache);
3228                 cur_start += group_size;
3229         }
3230         /* then insert all the items */
3231         cur_start = 0;
3232         while(cur_start < total_bytes) {
3233                 cache = btrfs_lookup_block_group(root->fs_info, cur_start);
3234                 BUG_ON(!cache);
3235
3236                 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
3237                                         sizeof(cache->item));
3238                 BUG_ON(ret);
3239
3240                 finish_current_insert(trans, extent_root);
3241                 ret = del_pending_extents(trans, extent_root);
3242                 BUG_ON(ret);
3243
3244                 cur_start = cache->key.objectid + cache->key.offset;
3245         }
3246         return 0;
3247 }
3248
3249 int btrfs_update_block_group(struct btrfs_trans_handle *trans,
3250                              struct btrfs_root *root,
3251                              u64 bytenr, u64 num_bytes, int alloc,
3252                              int mark_free)
3253 {
3254         return update_block_group(trans, root, bytenr, num_bytes,
3255                                   alloc, mark_free);
3256 }