Btrfs: async threads should try harder to find work
[linux-2.6-block.git] / fs / btrfs / extent-tree.c
CommitLineData
6cbd5570
CM
1/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
ec6b910f 18#include <linux/sched.h>
edbd8d4e 19#include <linux/pagemap.h>
ec44a35c 20#include <linux/writeback.h>
21af804c 21#include <linux/blkdev.h>
4b4e25f2 22#include "compat.h"
74493f7a 23#include "hash.h"
a5eb62e3 24#include "crc32c.h"
fec577fb
CM
25#include "ctree.h"
26#include "disk-io.h"
27#include "print-tree.h"
e089f05c 28#include "transaction.h"
0b86a832 29#include "volumes.h"
925baedd 30#include "locking.h"
31153d81 31#include "ref-cache.h"
fec577fb 32
31840ae1
ZY
33#define PENDING_EXTENT_INSERT 0
34#define PENDING_EXTENT_DELETE 1
35#define PENDING_BACKREF_UPDATE 2
36
37struct pending_extent_op {
38 int type;
39 u64 bytenr;
40 u64 num_bytes;
41 u64 parent;
42 u64 orig_parent;
43 u64 generation;
44 u64 orig_generation;
45 int level;
f3465ca4
JB
46 struct list_head list;
47 int del;
31840ae1
ZY
48};
49
d397712b
CM
50static int finish_current_insert(struct btrfs_trans_handle *trans,
51 struct btrfs_root *extent_root, int all);
52static int del_pending_extents(struct btrfs_trans_handle *trans,
53 struct btrfs_root *extent_root, int all);
f3465ca4
JB
54static int pin_down_bytes(struct btrfs_trans_handle *trans,
55 struct btrfs_root *root,
56 u64 bytenr, u64 num_bytes, int is_data);
57static int update_block_group(struct btrfs_trans_handle *trans,
58 struct btrfs_root *root,
59 u64 bytenr, u64 num_bytes, int alloc,
60 int mark_free);
d548ee51 61
0f9dd46c
JB
62static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
63{
64 return (cache->flags & bits) == bits;
65}
66
67/*
68 * this adds the block group to the fs_info rb tree for the block group
69 * cache
70 */
b2950863 71static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
0f9dd46c
JB
72 struct btrfs_block_group_cache *block_group)
73{
74 struct rb_node **p;
75 struct rb_node *parent = NULL;
76 struct btrfs_block_group_cache *cache;
77
78 spin_lock(&info->block_group_cache_lock);
79 p = &info->block_group_cache_tree.rb_node;
80
81 while (*p) {
82 parent = *p;
83 cache = rb_entry(parent, struct btrfs_block_group_cache,
84 cache_node);
85 if (block_group->key.objectid < cache->key.objectid) {
86 p = &(*p)->rb_left;
87 } else if (block_group->key.objectid > cache->key.objectid) {
88 p = &(*p)->rb_right;
89 } else {
90 spin_unlock(&info->block_group_cache_lock);
91 return -EEXIST;
92 }
93 }
94
95 rb_link_node(&block_group->cache_node, parent, p);
96 rb_insert_color(&block_group->cache_node,
97 &info->block_group_cache_tree);
98 spin_unlock(&info->block_group_cache_lock);
99
100 return 0;
101}
102
103/*
104 * This will return the block group at or after bytenr if contains is 0, else
105 * it will return the block group that contains the bytenr
106 */
107static struct btrfs_block_group_cache *
108block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
109 int contains)
110{
111 struct btrfs_block_group_cache *cache, *ret = NULL;
112 struct rb_node *n;
113 u64 end, start;
114
115 spin_lock(&info->block_group_cache_lock);
116 n = info->block_group_cache_tree.rb_node;
117
118 while (n) {
119 cache = rb_entry(n, struct btrfs_block_group_cache,
120 cache_node);
121 end = cache->key.objectid + cache->key.offset - 1;
122 start = cache->key.objectid;
123
124 if (bytenr < start) {
125 if (!contains && (!ret || start < ret->key.objectid))
126 ret = cache;
127 n = n->rb_left;
128 } else if (bytenr > start) {
129 if (contains && bytenr <= end) {
130 ret = cache;
131 break;
132 }
133 n = n->rb_right;
134 } else {
135 ret = cache;
136 break;
137 }
138 }
d2fb3437
YZ
139 if (ret)
140 atomic_inc(&ret->count);
0f9dd46c
JB
141 spin_unlock(&info->block_group_cache_lock);
142
143 return ret;
144}
145
146/*
147 * this is only called by cache_block_group, since we could have freed extents
148 * we need to check the pinned_extents for any extents that can't be used yet
149 * since their free space will be released as soon as the transaction commits.
150 */
151static int add_new_free_space(struct btrfs_block_group_cache *block_group,
152 struct btrfs_fs_info *info, u64 start, u64 end)
153{
154 u64 extent_start, extent_end, size;
155 int ret;
156
25179201 157 mutex_lock(&info->pinned_mutex);
0f9dd46c
JB
158 while (start < end) {
159 ret = find_first_extent_bit(&info->pinned_extents, start,
160 &extent_start, &extent_end,
161 EXTENT_DIRTY);
162 if (ret)
163 break;
164
165 if (extent_start == start) {
166 start = extent_end + 1;
167 } else if (extent_start > start && extent_start < end) {
168 size = extent_start - start;
ea6a478e
JB
169 ret = btrfs_add_free_space(block_group, start,
170 size);
0f9dd46c
JB
171 BUG_ON(ret);
172 start = extent_end + 1;
173 } else {
174 break;
175 }
176 }
177
178 if (start < end) {
179 size = end - start;
ea6a478e 180 ret = btrfs_add_free_space(block_group, start, size);
0f9dd46c
JB
181 BUG_ON(ret);
182 }
25179201 183 mutex_unlock(&info->pinned_mutex);
0f9dd46c
JB
184
185 return 0;
186}
187
a512bbf8
YZ
188static int remove_sb_from_cache(struct btrfs_root *root,
189 struct btrfs_block_group_cache *cache)
190{
191 u64 bytenr;
192 u64 *logical;
193 int stripe_len;
194 int i, nr, ret;
195
196 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
197 bytenr = btrfs_sb_offset(i);
198 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
199 cache->key.objectid, bytenr, 0,
200 &logical, &nr, &stripe_len);
201 BUG_ON(ret);
202 while (nr--) {
203 btrfs_remove_free_space(cache, logical[nr],
204 stripe_len);
205 }
206 kfree(logical);
207 }
208 return 0;
209}
210
e37c9e69
CM
211static int cache_block_group(struct btrfs_root *root,
212 struct btrfs_block_group_cache *block_group)
213{
214 struct btrfs_path *path;
ef8bbdfe 215 int ret = 0;
e37c9e69 216 struct btrfs_key key;
5f39d397 217 struct extent_buffer *leaf;
e37c9e69 218 int slot;
e4404d6e 219 u64 last;
e37c9e69 220
00f5c795
CM
221 if (!block_group)
222 return 0;
223
e37c9e69 224 root = root->fs_info->extent_root;
e37c9e69
CM
225
226 if (block_group->cached)
227 return 0;
f510cfec 228
e37c9e69
CM
229 path = btrfs_alloc_path();
230 if (!path)
231 return -ENOMEM;
7d7d6068 232
2cc58cf2 233 path->reada = 2;
5cd57b2c
CM
234 /*
235 * we get into deadlocks with paths held by callers of this function.
236 * since the alloc_mutex is protecting things right now, just
237 * skip the locking here
238 */
239 path->skip_locking = 1;
e4404d6e
YZ
240 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
241 key.objectid = last;
e37c9e69
CM
242 key.offset = 0;
243 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
244 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
245 if (ret < 0)
ef8bbdfe 246 goto err;
a512bbf8 247
d397712b 248 while (1) {
5f39d397 249 leaf = path->nodes[0];
e37c9e69 250 slot = path->slots[0];
5f39d397 251 if (slot >= btrfs_header_nritems(leaf)) {
e37c9e69 252 ret = btrfs_next_leaf(root, path);
54aa1f4d
CM
253 if (ret < 0)
254 goto err;
0f9dd46c 255 if (ret == 0)
e37c9e69 256 continue;
0f9dd46c 257 else
e37c9e69 258 break;
e37c9e69 259 }
5f39d397 260 btrfs_item_key_to_cpu(leaf, &key, slot);
0f9dd46c 261 if (key.objectid < block_group->key.objectid)
7d7d6068 262 goto next;
0f9dd46c 263
e37c9e69 264 if (key.objectid >= block_group->key.objectid +
0f9dd46c 265 block_group->key.offset)
e37c9e69 266 break;
7d7d6068 267
e37c9e69 268 if (btrfs_key_type(&key) == BTRFS_EXTENT_ITEM_KEY) {
0f9dd46c
JB
269 add_new_free_space(block_group, root->fs_info, last,
270 key.objectid);
271
7d7d6068 272 last = key.objectid + key.offset;
e37c9e69 273 }
7d7d6068 274next:
e37c9e69
CM
275 path->slots[0]++;
276 }
277
0f9dd46c
JB
278 add_new_free_space(block_group, root->fs_info, last,
279 block_group->key.objectid +
280 block_group->key.offset);
281
a512bbf8 282 remove_sb_from_cache(root, block_group);
e37c9e69 283 block_group->cached = 1;
ef8bbdfe 284 ret = 0;
54aa1f4d 285err:
e37c9e69 286 btrfs_free_path(path);
ef8bbdfe 287 return ret;
e37c9e69
CM
288}
289
0f9dd46c
JB
290/*
291 * return the block group that starts at or after bytenr
292 */
d397712b
CM
293static struct btrfs_block_group_cache *
294btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
0ef3e66b 295{
0f9dd46c 296 struct btrfs_block_group_cache *cache;
0ef3e66b 297
0f9dd46c 298 cache = block_group_cache_tree_search(info, bytenr, 0);
0ef3e66b 299
0f9dd46c 300 return cache;
0ef3e66b
CM
301}
302
0f9dd46c
JB
303/*
304 * return the block group that contains teh given bytenr
305 */
d397712b
CM
306struct btrfs_block_group_cache *btrfs_lookup_block_group(
307 struct btrfs_fs_info *info,
308 u64 bytenr)
be744175 309{
0f9dd46c 310 struct btrfs_block_group_cache *cache;
be744175 311
0f9dd46c 312 cache = block_group_cache_tree_search(info, bytenr, 1);
96b5179d 313
0f9dd46c 314 return cache;
be744175 315}
0b86a832 316
d2fb3437
YZ
317static inline void put_block_group(struct btrfs_block_group_cache *cache)
318{
319 if (atomic_dec_and_test(&cache->count))
320 kfree(cache);
321}
322
0f9dd46c
JB
323static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
324 u64 flags)
6324fbf3 325{
0f9dd46c 326 struct list_head *head = &info->space_info;
0f9dd46c 327 struct btrfs_space_info *found;
c6e30871 328 list_for_each_entry(found, head, list) {
0f9dd46c
JB
329 if (found->flags == flags)
330 return found;
331 }
332 return NULL;
6324fbf3
CM
333}
334
80eb234a
JB
335static u64 div_factor(u64 num, int factor)
336{
337 if (factor == 10)
338 return num;
339 num *= factor;
340 do_div(num, 10);
341 return num;
342}
343
d2fb3437
YZ
344u64 btrfs_find_block_group(struct btrfs_root *root,
345 u64 search_start, u64 search_hint, int owner)
cd1bc465 346{
96b5179d 347 struct btrfs_block_group_cache *cache;
cd1bc465 348 u64 used;
d2fb3437
YZ
349 u64 last = max(search_hint, search_start);
350 u64 group_start = 0;
31f3c99b 351 int full_search = 0;
d2fb3437 352 int factor = 9;
0ef3e66b 353 int wrapped = 0;
31f3c99b 354again:
e8569813
ZY
355 while (1) {
356 cache = btrfs_lookup_first_block_group(root->fs_info, last);
0f9dd46c
JB
357 if (!cache)
358 break;
96b5179d 359
c286ac48 360 spin_lock(&cache->lock);
96b5179d
CM
361 last = cache->key.objectid + cache->key.offset;
362 used = btrfs_block_group_used(&cache->item);
363
d2fb3437
YZ
364 if ((full_search || !cache->ro) &&
365 block_group_bits(cache, BTRFS_BLOCK_GROUP_METADATA)) {
e8569813 366 if (used + cache->pinned + cache->reserved <
d2fb3437
YZ
367 div_factor(cache->key.offset, factor)) {
368 group_start = cache->key.objectid;
c286ac48 369 spin_unlock(&cache->lock);
d2fb3437 370 put_block_group(cache);
8790d502
CM
371 goto found;
372 }
6324fbf3 373 }
c286ac48 374 spin_unlock(&cache->lock);
d2fb3437 375 put_block_group(cache);
de428b63 376 cond_resched();
cd1bc465 377 }
0ef3e66b
CM
378 if (!wrapped) {
379 last = search_start;
380 wrapped = 1;
381 goto again;
382 }
383 if (!full_search && factor < 10) {
be744175 384 last = search_start;
31f3c99b 385 full_search = 1;
0ef3e66b 386 factor = 10;
31f3c99b
CM
387 goto again;
388 }
be744175 389found:
d2fb3437 390 return group_start;
925baedd 391}
0f9dd46c 392
e02119d5 393/* simple helper to search for an existing extent at a given offset */
31840ae1 394int btrfs_lookup_extent(struct btrfs_root *root, u64 start, u64 len)
e02119d5
CM
395{
396 int ret;
397 struct btrfs_key key;
31840ae1 398 struct btrfs_path *path;
e02119d5 399
31840ae1
ZY
400 path = btrfs_alloc_path();
401 BUG_ON(!path);
e02119d5
CM
402 key.objectid = start;
403 key.offset = len;
404 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
405 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
406 0, 0);
31840ae1 407 btrfs_free_path(path);
7bb86316
CM
408 return ret;
409}
410
d8d5f3e1
CM
411/*
412 * Back reference rules. Back refs have three main goals:
413 *
414 * 1) differentiate between all holders of references to an extent so that
415 * when a reference is dropped we can make sure it was a valid reference
416 * before freeing the extent.
417 *
418 * 2) Provide enough information to quickly find the holders of an extent
419 * if we notice a given block is corrupted or bad.
420 *
421 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
422 * maintenance. This is actually the same as #2, but with a slightly
423 * different use case.
424 *
425 * File extents can be referenced by:
426 *
427 * - multiple snapshots, subvolumes, or different generations in one subvol
31840ae1 428 * - different files inside a single subvolume
d8d5f3e1
CM
429 * - different offsets inside a file (bookend extents in file.c)
430 *
431 * The extent ref structure has fields for:
432 *
433 * - Objectid of the subvolume root
434 * - Generation number of the tree holding the reference
435 * - objectid of the file holding the reference
31840ae1
ZY
436 * - number of references holding by parent node (alway 1 for tree blocks)
437 *
438 * Btree leaf may hold multiple references to a file extent. In most cases,
439 * these references are from same file and the corresponding offsets inside
3bb1a1bc 440 * the file are close together.
d8d5f3e1
CM
441 *
442 * When a file extent is allocated the fields are filled in:
3bb1a1bc 443 * (root_key.objectid, trans->transid, inode objectid, 1)
d8d5f3e1
CM
444 *
445 * When a leaf is cow'd new references are added for every file extent found
31840ae1
ZY
446 * in the leaf. It looks similar to the create case, but trans->transid will
447 * be different when the block is cow'd.
d8d5f3e1 448 *
3bb1a1bc 449 * (root_key.objectid, trans->transid, inode objectid,
31840ae1 450 * number of references in the leaf)
d8d5f3e1 451 *
3bb1a1bc
YZ
452 * When a file extent is removed either during snapshot deletion or
453 * file truncation, we find the corresponding back reference and check
454 * the following fields:
d8d5f3e1 455 *
3bb1a1bc
YZ
456 * (btrfs_header_owner(leaf), btrfs_header_generation(leaf),
457 * inode objectid)
d8d5f3e1
CM
458 *
459 * Btree extents can be referenced by:
460 *
461 * - Different subvolumes
462 * - Different generations of the same subvolume
463 *
d8d5f3e1
CM
464 * When a tree block is created, back references are inserted:
465 *
3bb1a1bc 466 * (root->root_key.objectid, trans->transid, level, 1)
d8d5f3e1 467 *
31840ae1
ZY
468 * When a tree block is cow'd, new back references are added for all the
469 * blocks it points to. If the tree block isn't in reference counted root,
470 * the old back references are removed. These new back references are of
471 * the form (trans->transid will have increased since creation):
d8d5f3e1 472 *
3bb1a1bc 473 * (root->root_key.objectid, trans->transid, level, 1)
d8d5f3e1 474 *
31840ae1 475 * When a backref is in deleting, the following fields are checked:
d8d5f3e1
CM
476 *
477 * if backref was for a tree root:
3bb1a1bc 478 * (btrfs_header_owner(itself), btrfs_header_generation(itself), level)
d8d5f3e1 479 * else
3bb1a1bc 480 * (btrfs_header_owner(parent), btrfs_header_generation(parent), level)
d8d5f3e1 481 *
31840ae1 482 * Back Reference Key composing:
d8d5f3e1 483 *
31840ae1
ZY
484 * The key objectid corresponds to the first byte in the extent, the key
485 * type is set to BTRFS_EXTENT_REF_KEY, and the key offset is the first
486 * byte of parent extent. If a extent is tree root, the key offset is set
487 * to the key objectid.
d8d5f3e1 488 */
31840ae1 489
d397712b 490static noinline int lookup_extent_backref(struct btrfs_trans_handle *trans,
31840ae1 491 struct btrfs_root *root,
3bb1a1bc
YZ
492 struct btrfs_path *path,
493 u64 bytenr, u64 parent,
494 u64 ref_root, u64 ref_generation,
495 u64 owner_objectid, int del)
7bb86316 496{
7bb86316 497 struct btrfs_key key;
31840ae1
ZY
498 struct btrfs_extent_ref *ref;
499 struct extent_buffer *leaf;
3bb1a1bc 500 u64 ref_objectid;
74493f7a
CM
501 int ret;
502
31840ae1
ZY
503 key.objectid = bytenr;
504 key.type = BTRFS_EXTENT_REF_KEY;
505 key.offset = parent;
506
507 ret = btrfs_search_slot(trans, root, &key, path, del ? -1 : 0, 1);
508 if (ret < 0)
509 goto out;
510 if (ret > 0) {
511 ret = -ENOENT;
512 goto out;
513 }
514
515 leaf = path->nodes[0];
516 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_ref);
3bb1a1bc 517 ref_objectid = btrfs_ref_objectid(leaf, ref);
31840ae1 518 if (btrfs_ref_root(leaf, ref) != ref_root ||
3bb1a1bc
YZ
519 btrfs_ref_generation(leaf, ref) != ref_generation ||
520 (ref_objectid != owner_objectid &&
521 ref_objectid != BTRFS_MULTIPLE_OBJECTIDS)) {
31840ae1
ZY
522 ret = -EIO;
523 WARN_ON(1);
524 goto out;
525 }
526 ret = 0;
527out:
528 return ret;
529}
530
f3465ca4
JB
531/*
532 * updates all the backrefs that are pending on update_list for the
533 * extent_root
534 */
d397712b 535static noinline int update_backrefs(struct btrfs_trans_handle *trans,
f3465ca4
JB
536 struct btrfs_root *extent_root,
537 struct btrfs_path *path,
538 struct list_head *update_list)
539{
540 struct btrfs_key key;
541 struct btrfs_extent_ref *ref;
542 struct btrfs_fs_info *info = extent_root->fs_info;
543 struct pending_extent_op *op;
544 struct extent_buffer *leaf;
545 int ret = 0;
546 struct list_head *cur = update_list->next;
547 u64 ref_objectid;
548 u64 ref_root = extent_root->root_key.objectid;
549
550 op = list_entry(cur, struct pending_extent_op, list);
551
552search:
553 key.objectid = op->bytenr;
554 key.type = BTRFS_EXTENT_REF_KEY;
555 key.offset = op->orig_parent;
556
557 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 1);
558 BUG_ON(ret);
559
560 leaf = path->nodes[0];
561
562loop:
563 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_ref);
564
565 ref_objectid = btrfs_ref_objectid(leaf, ref);
566
567 if (btrfs_ref_root(leaf, ref) != ref_root ||
568 btrfs_ref_generation(leaf, ref) != op->orig_generation ||
569 (ref_objectid != op->level &&
570 ref_objectid != BTRFS_MULTIPLE_OBJECTIDS)) {
d397712b
CM
571 printk(KERN_ERR "btrfs couldn't find %llu, parent %llu, "
572 "root %llu, owner %u\n",
573 (unsigned long long)op->bytenr,
574 (unsigned long long)op->orig_parent,
575 (unsigned long long)ref_root, op->level);
f3465ca4
JB
576 btrfs_print_leaf(extent_root, leaf);
577 BUG();
578 }
579
580 key.objectid = op->bytenr;
581 key.offset = op->parent;
582 key.type = BTRFS_EXTENT_REF_KEY;
583 ret = btrfs_set_item_key_safe(trans, extent_root, path, &key);
584 BUG_ON(ret);
585 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_ref);
586 btrfs_set_ref_generation(leaf, ref, op->generation);
587
588 cur = cur->next;
589
590 list_del_init(&op->list);
591 unlock_extent(&info->extent_ins, op->bytenr,
592 op->bytenr + op->num_bytes - 1, GFP_NOFS);
593 kfree(op);
594
595 if (cur == update_list) {
596 btrfs_mark_buffer_dirty(path->nodes[0]);
597 btrfs_release_path(extent_root, path);
598 goto out;
599 }
600
601 op = list_entry(cur, struct pending_extent_op, list);
602
603 path->slots[0]++;
604 while (path->slots[0] < btrfs_header_nritems(leaf)) {
605 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
606 if (key.objectid == op->bytenr &&
607 key.type == BTRFS_EXTENT_REF_KEY)
608 goto loop;
609 path->slots[0]++;
610 }
611
612 btrfs_mark_buffer_dirty(path->nodes[0]);
613 btrfs_release_path(extent_root, path);
614 goto search;
615
616out:
617 return 0;
618}
619
d397712b 620static noinline int insert_extents(struct btrfs_trans_handle *trans,
f3465ca4
JB
621 struct btrfs_root *extent_root,
622 struct btrfs_path *path,
623 struct list_head *insert_list, int nr)
624{
625 struct btrfs_key *keys;
626 u32 *data_size;
627 struct pending_extent_op *op;
628 struct extent_buffer *leaf;
629 struct list_head *cur = insert_list->next;
630 struct btrfs_fs_info *info = extent_root->fs_info;
631 u64 ref_root = extent_root->root_key.objectid;
632 int i = 0, last = 0, ret;
633 int total = nr * 2;
634
635 if (!nr)
636 return 0;
637
638 keys = kzalloc(total * sizeof(struct btrfs_key), GFP_NOFS);
639 if (!keys)
640 return -ENOMEM;
641
642 data_size = kzalloc(total * sizeof(u32), GFP_NOFS);
643 if (!data_size) {
644 kfree(keys);
645 return -ENOMEM;
646 }
647
648 list_for_each_entry(op, insert_list, list) {
649 keys[i].objectid = op->bytenr;
650 keys[i].offset = op->num_bytes;
651 keys[i].type = BTRFS_EXTENT_ITEM_KEY;
652 data_size[i] = sizeof(struct btrfs_extent_item);
653 i++;
654
655 keys[i].objectid = op->bytenr;
656 keys[i].offset = op->parent;
657 keys[i].type = BTRFS_EXTENT_REF_KEY;
658 data_size[i] = sizeof(struct btrfs_extent_ref);
659 i++;
660 }
661
662 op = list_entry(cur, struct pending_extent_op, list);
663 i = 0;
664 while (i < total) {
665 int c;
666 ret = btrfs_insert_some_items(trans, extent_root, path,
667 keys+i, data_size+i, total-i);
668 BUG_ON(ret < 0);
669
670 if (last && ret > 1)
671 BUG();
672
673 leaf = path->nodes[0];
674 for (c = 0; c < ret; c++) {
675 int ref_first = keys[i].type == BTRFS_EXTENT_REF_KEY;
676
677 /*
678 * if the first item we inserted was a backref, then
679 * the EXTENT_ITEM will be the odd c's, else it will
680 * be the even c's
681 */
682 if ((ref_first && (c % 2)) ||
683 (!ref_first && !(c % 2))) {
684 struct btrfs_extent_item *itm;
685
686 itm = btrfs_item_ptr(leaf, path->slots[0] + c,
687 struct btrfs_extent_item);
688 btrfs_set_extent_refs(path->nodes[0], itm, 1);
689 op->del++;
690 } else {
691 struct btrfs_extent_ref *ref;
692
693 ref = btrfs_item_ptr(leaf, path->slots[0] + c,
694 struct btrfs_extent_ref);
695 btrfs_set_ref_root(leaf, ref, ref_root);
696 btrfs_set_ref_generation(leaf, ref,
697 op->generation);
698 btrfs_set_ref_objectid(leaf, ref, op->level);
699 btrfs_set_ref_num_refs(leaf, ref, 1);
700 op->del++;
701 }
702
703 /*
704 * using del to see when its ok to free up the
705 * pending_extent_op. In the case where we insert the
706 * last item on the list in order to help do batching
707 * we need to not free the extent op until we actually
708 * insert the extent_item
709 */
710 if (op->del == 2) {
711 unlock_extent(&info->extent_ins, op->bytenr,
712 op->bytenr + op->num_bytes - 1,
713 GFP_NOFS);
714 cur = cur->next;
715 list_del_init(&op->list);
716 kfree(op);
717 if (cur != insert_list)
718 op = list_entry(cur,
719 struct pending_extent_op,
720 list);
721 }
722 }
723 btrfs_mark_buffer_dirty(leaf);
724 btrfs_release_path(extent_root, path);
725
726 /*
727 * Ok backref's and items usually go right next to eachother,
728 * but if we could only insert 1 item that means that we
729 * inserted on the end of a leaf, and we have no idea what may
730 * be on the next leaf so we just play it safe. In order to
731 * try and help this case we insert the last thing on our
732 * insert list so hopefully it will end up being the last
733 * thing on the leaf and everything else will be before it,
734 * which will let us insert a whole bunch of items at the same
735 * time.
736 */
737 if (ret == 1 && !last && (i + ret < total)) {
738 /*
739 * last: where we will pick up the next time around
740 * i: our current key to insert, will be total - 1
741 * cur: the current op we are screwing with
742 * op: duh
743 */
744 last = i + ret;
745 i = total - 1;
746 cur = insert_list->prev;
747 op = list_entry(cur, struct pending_extent_op, list);
748 } else if (last) {
749 /*
750 * ok we successfully inserted the last item on the
751 * list, lets reset everything
752 *
753 * i: our current key to insert, so where we left off
754 * last time
755 * last: done with this
756 * cur: the op we are messing with
757 * op: duh
758 * total: since we inserted the last key, we need to
759 * decrement total so we dont overflow
760 */
761 i = last;
762 last = 0;
f3465ca4 763 total--;
b4eec2ca
LH
764 if (i < total) {
765 cur = insert_list->next;
766 op = list_entry(cur, struct pending_extent_op,
767 list);
768 }
f3465ca4
JB
769 } else {
770 i += ret;
771 }
772
773 cond_resched();
774 }
775 ret = 0;
776 kfree(keys);
777 kfree(data_size);
778 return ret;
779}
780
d397712b 781static noinline int insert_extent_backref(struct btrfs_trans_handle *trans,
31840ae1
ZY
782 struct btrfs_root *root,
783 struct btrfs_path *path,
784 u64 bytenr, u64 parent,
785 u64 ref_root, u64 ref_generation,
3bb1a1bc 786 u64 owner_objectid)
31840ae1
ZY
787{
788 struct btrfs_key key;
789 struct extent_buffer *leaf;
790 struct btrfs_extent_ref *ref;
791 u32 num_refs;
792 int ret;
74493f7a 793
74493f7a
CM
794 key.objectid = bytenr;
795 key.type = BTRFS_EXTENT_REF_KEY;
31840ae1 796 key.offset = parent;
74493f7a 797
31840ae1
ZY
798 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(*ref));
799 if (ret == 0) {
800 leaf = path->nodes[0];
801 ref = btrfs_item_ptr(leaf, path->slots[0],
802 struct btrfs_extent_ref);
803 btrfs_set_ref_root(leaf, ref, ref_root);
804 btrfs_set_ref_generation(leaf, ref, ref_generation);
805 btrfs_set_ref_objectid(leaf, ref, owner_objectid);
31840ae1
ZY
806 btrfs_set_ref_num_refs(leaf, ref, 1);
807 } else if (ret == -EEXIST) {
808 u64 existing_owner;
809 BUG_ON(owner_objectid < BTRFS_FIRST_FREE_OBJECTID);
810 leaf = path->nodes[0];
811 ref = btrfs_item_ptr(leaf, path->slots[0],
812 struct btrfs_extent_ref);
813 if (btrfs_ref_root(leaf, ref) != ref_root ||
814 btrfs_ref_generation(leaf, ref) != ref_generation) {
815 ret = -EIO;
816 WARN_ON(1);
7bb86316 817 goto out;
31840ae1
ZY
818 }
819
820 num_refs = btrfs_ref_num_refs(leaf, ref);
821 BUG_ON(num_refs == 0);
822 btrfs_set_ref_num_refs(leaf, ref, num_refs + 1);
823
824 existing_owner = btrfs_ref_objectid(leaf, ref);
3bb1a1bc
YZ
825 if (existing_owner != owner_objectid &&
826 existing_owner != BTRFS_MULTIPLE_OBJECTIDS) {
31840ae1
ZY
827 btrfs_set_ref_objectid(leaf, ref,
828 BTRFS_MULTIPLE_OBJECTIDS);
31840ae1
ZY
829 }
830 ret = 0;
831 } else {
7bb86316 832 goto out;
31840ae1 833 }
7bb86316
CM
834 btrfs_mark_buffer_dirty(path->nodes[0]);
835out:
836 btrfs_release_path(root, path);
837 return ret;
74493f7a
CM
838}
839
d397712b 840static noinline int remove_extent_backref(struct btrfs_trans_handle *trans,
31840ae1
ZY
841 struct btrfs_root *root,
842 struct btrfs_path *path)
843{
844 struct extent_buffer *leaf;
845 struct btrfs_extent_ref *ref;
846 u32 num_refs;
847 int ret = 0;
848
849 leaf = path->nodes[0];
850 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_ref);
851 num_refs = btrfs_ref_num_refs(leaf, ref);
852 BUG_ON(num_refs == 0);
853 num_refs -= 1;
854 if (num_refs == 0) {
855 ret = btrfs_del_item(trans, root, path);
856 } else {
857 btrfs_set_ref_num_refs(leaf, ref, num_refs);
858 btrfs_mark_buffer_dirty(leaf);
859 }
860 btrfs_release_path(root, path);
861 return ret;
862}
863
4b4e25f2 864#ifdef BIO_RW_DISCARD
15916de8
CM
865static void btrfs_issue_discard(struct block_device *bdev,
866 u64 start, u64 len)
867{
15916de8 868 blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_KERNEL);
15916de8 869}
4b4e25f2 870#endif
15916de8 871
1f3c79a2
LH
872static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
873 u64 num_bytes)
874{
875#ifdef BIO_RW_DISCARD
876 int ret;
877 u64 map_length = num_bytes;
878 struct btrfs_multi_bio *multi = NULL;
879
880 /* Tell the block device(s) that the sectors can be discarded */
881 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
882 bytenr, &map_length, &multi, 0);
883 if (!ret) {
884 struct btrfs_bio_stripe *stripe = multi->stripes;
885 int i;
886
887 if (map_length > num_bytes)
888 map_length = num_bytes;
889
890 for (i = 0; i < multi->num_stripes; i++, stripe++) {
891 btrfs_issue_discard(stripe->dev->bdev,
892 stripe->physical,
893 map_length);
894 }
895 kfree(multi);
896 }
897
898 return ret;
899#else
900 return 0;
901#endif
902}
903
d397712b 904static noinline int free_extents(struct btrfs_trans_handle *trans,
f3465ca4
JB
905 struct btrfs_root *extent_root,
906 struct list_head *del_list)
907{
908 struct btrfs_fs_info *info = extent_root->fs_info;
909 struct btrfs_path *path;
910 struct btrfs_key key, found_key;
911 struct extent_buffer *leaf;
912 struct list_head *cur;
913 struct pending_extent_op *op;
914 struct btrfs_extent_item *ei;
915 int ret, num_to_del, extent_slot = 0, found_extent = 0;
916 u32 refs;
917 u64 bytes_freed = 0;
918
919 path = btrfs_alloc_path();
920 if (!path)
921 return -ENOMEM;
922 path->reada = 1;
923
924search:
925 /* search for the backref for the current ref we want to delete */
926 cur = del_list->next;
927 op = list_entry(cur, struct pending_extent_op, list);
928 ret = lookup_extent_backref(trans, extent_root, path, op->bytenr,
929 op->orig_parent,
930 extent_root->root_key.objectid,
931 op->orig_generation, op->level, 1);
932 if (ret) {
d397712b
CM
933 printk(KERN_ERR "btrfs unable to find backref byte nr %llu "
934 "root %llu gen %llu owner %u\n",
935 (unsigned long long)op->bytenr,
936 (unsigned long long)extent_root->root_key.objectid,
937 (unsigned long long)op->orig_generation, op->level);
f3465ca4
JB
938 btrfs_print_leaf(extent_root, path->nodes[0]);
939 WARN_ON(1);
940 goto out;
941 }
942
943 extent_slot = path->slots[0];
944 num_to_del = 1;
945 found_extent = 0;
946
947 /*
948 * if we aren't the first item on the leaf we can move back one and see
949 * if our ref is right next to our extent item
950 */
951 if (likely(extent_slot)) {
952 extent_slot--;
953 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
954 extent_slot);
955 if (found_key.objectid == op->bytenr &&
956 found_key.type == BTRFS_EXTENT_ITEM_KEY &&
957 found_key.offset == op->num_bytes) {
958 num_to_del++;
959 found_extent = 1;
960 }
961 }
962
963 /*
964 * if we didn't find the extent we need to delete the backref and then
965 * search for the extent item key so we can update its ref count
966 */
967 if (!found_extent) {
968 key.objectid = op->bytenr;
969 key.type = BTRFS_EXTENT_ITEM_KEY;
970 key.offset = op->num_bytes;
971
972 ret = remove_extent_backref(trans, extent_root, path);
973 BUG_ON(ret);
974 btrfs_release_path(extent_root, path);
975 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
976 BUG_ON(ret);
977 extent_slot = path->slots[0];
978 }
979
980 /* this is where we update the ref count for the extent */
981 leaf = path->nodes[0];
982 ei = btrfs_item_ptr(leaf, extent_slot, struct btrfs_extent_item);
983 refs = btrfs_extent_refs(leaf, ei);
984 BUG_ON(refs == 0);
985 refs--;
986 btrfs_set_extent_refs(leaf, ei, refs);
987
988 btrfs_mark_buffer_dirty(leaf);
989
990 /*
991 * This extent needs deleting. The reason cur_slot is extent_slot +
992 * num_to_del is because extent_slot points to the slot where the extent
993 * is, and if the backref was not right next to the extent we will be
994 * deleting at least 1 item, and will want to start searching at the
995 * slot directly next to extent_slot. However if we did find the
996 * backref next to the extent item them we will be deleting at least 2
997 * items and will want to start searching directly after the ref slot
998 */
999 if (!refs) {
1000 struct list_head *pos, *n, *end;
1001 int cur_slot = extent_slot+num_to_del;
1002 u64 super_used;
1003 u64 root_used;
1004
1005 path->slots[0] = extent_slot;
1006 bytes_freed = op->num_bytes;
1007
e3e469f8
JB
1008 mutex_lock(&info->pinned_mutex);
1009 ret = pin_down_bytes(trans, extent_root, op->bytenr,
1010 op->num_bytes, op->level >=
1011 BTRFS_FIRST_FREE_OBJECTID);
1012 mutex_unlock(&info->pinned_mutex);
1013 BUG_ON(ret < 0);
1014 op->del = ret;
1015
f3465ca4
JB
1016 /*
1017 * we need to see if we can delete multiple things at once, so
1018 * start looping through the list of extents we are wanting to
1019 * delete and see if their extent/backref's are right next to
1020 * eachother and the extents only have 1 ref
1021 */
1022 for (pos = cur->next; pos != del_list; pos = pos->next) {
1023 struct pending_extent_op *tmp;
1024
1025 tmp = list_entry(pos, struct pending_extent_op, list);
1026
1027 /* we only want to delete extent+ref at this stage */
1028 if (cur_slot >= btrfs_header_nritems(leaf) - 1)
1029 break;
1030
1031 btrfs_item_key_to_cpu(leaf, &found_key, cur_slot);
1032 if (found_key.objectid != tmp->bytenr ||
1033 found_key.type != BTRFS_EXTENT_ITEM_KEY ||
1034 found_key.offset != tmp->num_bytes)
1035 break;
1036
1037 /* check to make sure this extent only has one ref */
1038 ei = btrfs_item_ptr(leaf, cur_slot,
1039 struct btrfs_extent_item);
1040 if (btrfs_extent_refs(leaf, ei) != 1)
1041 break;
1042
1043 btrfs_item_key_to_cpu(leaf, &found_key, cur_slot+1);
1044 if (found_key.objectid != tmp->bytenr ||
1045 found_key.type != BTRFS_EXTENT_REF_KEY ||
1046 found_key.offset != tmp->orig_parent)
1047 break;
1048
1049 /*
1050 * the ref is right next to the extent, we can set the
1051 * ref count to 0 since we will delete them both now
1052 */
1053 btrfs_set_extent_refs(leaf, ei, 0);
1054
1055 /* pin down the bytes for this extent */
1056 mutex_lock(&info->pinned_mutex);
1057 ret = pin_down_bytes(trans, extent_root, tmp->bytenr,
1058 tmp->num_bytes, tmp->level >=
1059 BTRFS_FIRST_FREE_OBJECTID);
1060 mutex_unlock(&info->pinned_mutex);
1061 BUG_ON(ret < 0);
1062
1063 /*
1064 * use the del field to tell if we need to go ahead and
1065 * free up the extent when we delete the item or not.
1066 */
1067 tmp->del = ret;
1068 bytes_freed += tmp->num_bytes;
1069
1070 num_to_del += 2;
1071 cur_slot += 2;
1072 }
1073 end = pos;
1074
1075 /* update the free space counters */
75eff68e 1076 spin_lock(&info->delalloc_lock);
f3465ca4
JB
1077 super_used = btrfs_super_bytes_used(&info->super_copy);
1078 btrfs_set_super_bytes_used(&info->super_copy,
1079 super_used - bytes_freed);
f3465ca4
JB
1080
1081 root_used = btrfs_root_used(&extent_root->root_item);
1082 btrfs_set_root_used(&extent_root->root_item,
1083 root_used - bytes_freed);
34bf63c4 1084 spin_unlock(&info->delalloc_lock);
f3465ca4
JB
1085
1086 /* delete the items */
1087 ret = btrfs_del_items(trans, extent_root, path,
1088 path->slots[0], num_to_del);
1089 BUG_ON(ret);
1090
1091 /*
1092 * loop through the extents we deleted and do the cleanup work
1093 * on them
1094 */
1095 for (pos = cur, n = pos->next; pos != end;
1096 pos = n, n = pos->next) {
1097 struct pending_extent_op *tmp;
f3465ca4
JB
1098 tmp = list_entry(pos, struct pending_extent_op, list);
1099
1100 /*
1101 * remember tmp->del tells us wether or not we pinned
1102 * down the extent
1103 */
1104 ret = update_block_group(trans, extent_root,
1105 tmp->bytenr, tmp->num_bytes, 0,
1106 tmp->del);
1107 BUG_ON(ret);
1108
f3465ca4
JB
1109 list_del_init(&tmp->list);
1110 unlock_extent(&info->extent_ins, tmp->bytenr,
1111 tmp->bytenr + tmp->num_bytes - 1,
1112 GFP_NOFS);
1113 kfree(tmp);
1114 }
1115 } else if (refs && found_extent) {
1116 /*
1117 * the ref and extent were right next to eachother, but the
1118 * extent still has a ref, so just free the backref and keep
1119 * going
1120 */
1121 ret = remove_extent_backref(trans, extent_root, path);
1122 BUG_ON(ret);
1123
1124 list_del_init(&op->list);
1125 unlock_extent(&info->extent_ins, op->bytenr,
1126 op->bytenr + op->num_bytes - 1, GFP_NOFS);
1127 kfree(op);
1128 } else {
1129 /*
1130 * the extent has multiple refs and the backref we were looking
1131 * for was not right next to it, so just unlock and go next,
1132 * we're good to go
1133 */
1134 list_del_init(&op->list);
1135 unlock_extent(&info->extent_ins, op->bytenr,
1136 op->bytenr + op->num_bytes - 1, GFP_NOFS);
1137 kfree(op);
1138 }
1139
1140 btrfs_release_path(extent_root, path);
1141 if (!list_empty(del_list))
1142 goto search;
1143
1144out:
1145 btrfs_free_path(path);
1146 return ret;
1147}
1148
31840ae1
ZY
1149static int __btrfs_update_extent_ref(struct btrfs_trans_handle *trans,
1150 struct btrfs_root *root, u64 bytenr,
1151 u64 orig_parent, u64 parent,
1152 u64 orig_root, u64 ref_root,
1153 u64 orig_generation, u64 ref_generation,
3bb1a1bc 1154 u64 owner_objectid)
31840ae1
ZY
1155{
1156 int ret;
1157 struct btrfs_root *extent_root = root->fs_info->extent_root;
1158 struct btrfs_path *path;
1159
1160 if (root == root->fs_info->extent_root) {
1161 struct pending_extent_op *extent_op;
1162 u64 num_bytes;
1163
1164 BUG_ON(owner_objectid >= BTRFS_MAX_LEVEL);
1165 num_bytes = btrfs_level_size(root, (int)owner_objectid);
25179201 1166 mutex_lock(&root->fs_info->extent_ins_mutex);
31840ae1 1167 if (test_range_bit(&root->fs_info->extent_ins, bytenr,
25179201 1168 bytenr + num_bytes - 1, EXTENT_WRITEBACK, 0)) {
31840ae1
ZY
1169 u64 priv;
1170 ret = get_state_private(&root->fs_info->extent_ins,
1171 bytenr, &priv);
1172 BUG_ON(ret);
1173 extent_op = (struct pending_extent_op *)
1174 (unsigned long)priv;
1175 BUG_ON(extent_op->parent != orig_parent);
1176 BUG_ON(extent_op->generation != orig_generation);
25179201 1177
31840ae1
ZY
1178 extent_op->parent = parent;
1179 extent_op->generation = ref_generation;
1180 } else {
1181 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
1182 BUG_ON(!extent_op);
1183
1184 extent_op->type = PENDING_BACKREF_UPDATE;
1185 extent_op->bytenr = bytenr;
1186 extent_op->num_bytes = num_bytes;
1187 extent_op->parent = parent;
1188 extent_op->orig_parent = orig_parent;
1189 extent_op->generation = ref_generation;
1190 extent_op->orig_generation = orig_generation;
1191 extent_op->level = (int)owner_objectid;
f3465ca4
JB
1192 INIT_LIST_HEAD(&extent_op->list);
1193 extent_op->del = 0;
31840ae1
ZY
1194
1195 set_extent_bits(&root->fs_info->extent_ins,
1196 bytenr, bytenr + num_bytes - 1,
25179201 1197 EXTENT_WRITEBACK, GFP_NOFS);
31840ae1
ZY
1198 set_state_private(&root->fs_info->extent_ins,
1199 bytenr, (unsigned long)extent_op);
1200 }
25179201 1201 mutex_unlock(&root->fs_info->extent_ins_mutex);
31840ae1
ZY
1202 return 0;
1203 }
1204
1205 path = btrfs_alloc_path();
1206 if (!path)
1207 return -ENOMEM;
1208 ret = lookup_extent_backref(trans, extent_root, path,
1209 bytenr, orig_parent, orig_root,
3bb1a1bc 1210 orig_generation, owner_objectid, 1);
31840ae1
ZY
1211 if (ret)
1212 goto out;
1213 ret = remove_extent_backref(trans, extent_root, path);
1214 if (ret)
1215 goto out;
1216 ret = insert_extent_backref(trans, extent_root, path, bytenr,
1217 parent, ref_root, ref_generation,
3bb1a1bc 1218 owner_objectid);
31840ae1 1219 BUG_ON(ret);
87ef2bb4
CM
1220 finish_current_insert(trans, extent_root, 0);
1221 del_pending_extents(trans, extent_root, 0);
31840ae1
ZY
1222out:
1223 btrfs_free_path(path);
1224 return ret;
1225}
1226
1227int btrfs_update_extent_ref(struct btrfs_trans_handle *trans,
1228 struct btrfs_root *root, u64 bytenr,
1229 u64 orig_parent, u64 parent,
1230 u64 ref_root, u64 ref_generation,
3bb1a1bc 1231 u64 owner_objectid)
31840ae1
ZY
1232{
1233 int ret;
1234 if (ref_root == BTRFS_TREE_LOG_OBJECTID &&
1235 owner_objectid < BTRFS_FIRST_FREE_OBJECTID)
1236 return 0;
31840ae1
ZY
1237 ret = __btrfs_update_extent_ref(trans, root, bytenr, orig_parent,
1238 parent, ref_root, ref_root,
1239 ref_generation, ref_generation,
3bb1a1bc 1240 owner_objectid);
31840ae1
ZY
1241 return ret;
1242}
1243
925baedd 1244static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
31840ae1
ZY
1245 struct btrfs_root *root, u64 bytenr,
1246 u64 orig_parent, u64 parent,
1247 u64 orig_root, u64 ref_root,
1248 u64 orig_generation, u64 ref_generation,
3bb1a1bc 1249 u64 owner_objectid)
02217ed2 1250{
5caf2a00 1251 struct btrfs_path *path;
02217ed2 1252 int ret;
e2fa7227 1253 struct btrfs_key key;
5f39d397 1254 struct extent_buffer *l;
234b63a0 1255 struct btrfs_extent_item *item;
cf27e1ee 1256 u32 refs;
037e6390 1257
5caf2a00 1258 path = btrfs_alloc_path();
54aa1f4d
CM
1259 if (!path)
1260 return -ENOMEM;
26b8003f 1261
3c12ac72 1262 path->reada = 1;
db94535d 1263 key.objectid = bytenr;
31840ae1
ZY
1264 key.type = BTRFS_EXTENT_ITEM_KEY;
1265 key.offset = (u64)-1;
1266
5caf2a00 1267 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
9f5fae2f 1268 0, 1);
54aa1f4d
CM
1269 if (ret < 0)
1270 return ret;
31840ae1
ZY
1271 BUG_ON(ret == 0 || path->slots[0] == 0);
1272
1273 path->slots[0]--;
5f39d397 1274 l = path->nodes[0];
31840ae1
ZY
1275
1276 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
771ed689
CM
1277 if (key.objectid != bytenr) {
1278 btrfs_print_leaf(root->fs_info->extent_root, path->nodes[0]);
d397712b
CM
1279 printk(KERN_ERR "btrfs wanted %llu found %llu\n",
1280 (unsigned long long)bytenr,
1281 (unsigned long long)key.objectid);
771ed689
CM
1282 BUG();
1283 }
31840ae1
ZY
1284 BUG_ON(key.type != BTRFS_EXTENT_ITEM_KEY);
1285
5caf2a00 1286 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
5f39d397
CM
1287 refs = btrfs_extent_refs(l, item);
1288 btrfs_set_extent_refs(l, item, refs + 1);
5caf2a00 1289 btrfs_mark_buffer_dirty(path->nodes[0]);
a28ec197 1290
5caf2a00 1291 btrfs_release_path(root->fs_info->extent_root, path);
7bb86316 1292
3c12ac72 1293 path->reada = 1;
31840ae1
ZY
1294 ret = insert_extent_backref(trans, root->fs_info->extent_root,
1295 path, bytenr, parent,
1296 ref_root, ref_generation,
3bb1a1bc 1297 owner_objectid);
7bb86316 1298 BUG_ON(ret);
87ef2bb4
CM
1299 finish_current_insert(trans, root->fs_info->extent_root, 0);
1300 del_pending_extents(trans, root->fs_info->extent_root, 0);
74493f7a
CM
1301
1302 btrfs_free_path(path);
02217ed2
CM
1303 return 0;
1304}
1305
925baedd 1306int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
31840ae1
ZY
1307 struct btrfs_root *root,
1308 u64 bytenr, u64 num_bytes, u64 parent,
1309 u64 ref_root, u64 ref_generation,
3bb1a1bc 1310 u64 owner_objectid)
925baedd
CM
1311{
1312 int ret;
31840ae1
ZY
1313 if (ref_root == BTRFS_TREE_LOG_OBJECTID &&
1314 owner_objectid < BTRFS_FIRST_FREE_OBJECTID)
1315 return 0;
31840ae1
ZY
1316 ret = __btrfs_inc_extent_ref(trans, root, bytenr, 0, parent,
1317 0, ref_root, 0, ref_generation,
3bb1a1bc 1318 owner_objectid);
925baedd
CM
1319 return ret;
1320}
1321
e9d0b13b
CM
1322int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
1323 struct btrfs_root *root)
1324{
87ef2bb4
CM
1325 finish_current_insert(trans, root->fs_info->extent_root, 1);
1326 del_pending_extents(trans, root->fs_info->extent_root, 1);
e9d0b13b
CM
1327 return 0;
1328}
1329
31840ae1
ZY
1330int btrfs_lookup_extent_ref(struct btrfs_trans_handle *trans,
1331 struct btrfs_root *root, u64 bytenr,
1332 u64 num_bytes, u32 *refs)
a28ec197 1333{
5caf2a00 1334 struct btrfs_path *path;
a28ec197 1335 int ret;
e2fa7227 1336 struct btrfs_key key;
5f39d397 1337 struct extent_buffer *l;
234b63a0 1338 struct btrfs_extent_item *item;
5caf2a00 1339
db94535d 1340 WARN_ON(num_bytes < root->sectorsize);
5caf2a00 1341 path = btrfs_alloc_path();
3c12ac72 1342 path->reada = 1;
db94535d
CM
1343 key.objectid = bytenr;
1344 key.offset = num_bytes;
62e2749e 1345 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
5caf2a00 1346 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
9f5fae2f 1347 0, 0);
54aa1f4d
CM
1348 if (ret < 0)
1349 goto out;
5f39d397
CM
1350 if (ret != 0) {
1351 btrfs_print_leaf(root, path->nodes[0]);
d397712b
CM
1352 printk(KERN_INFO "btrfs failed to find block number %llu\n",
1353 (unsigned long long)bytenr);
a28ec197 1354 BUG();
5f39d397
CM
1355 }
1356 l = path->nodes[0];
5caf2a00 1357 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
5f39d397 1358 *refs = btrfs_extent_refs(l, item);
54aa1f4d 1359out:
5caf2a00 1360 btrfs_free_path(path);
a28ec197
CM
1361 return 0;
1362}
1363
80ff3856 1364int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
17d217fe 1365 struct btrfs_root *root, u64 objectid, u64 bytenr)
be20aa9d
CM
1366{
1367 struct btrfs_root *extent_root = root->fs_info->extent_root;
1368 struct btrfs_path *path;
f321e491
YZ
1369 struct extent_buffer *leaf;
1370 struct btrfs_extent_ref *ref_item;
1371 struct btrfs_key key;
1372 struct btrfs_key found_key;
80ff3856
YZ
1373 u64 ref_root;
1374 u64 last_snapshot;
be20aa9d
CM
1375 u32 nritems;
1376 int ret;
925baedd 1377
be20aa9d 1378 key.objectid = bytenr;
31840ae1 1379 key.offset = (u64)-1;
f321e491 1380 key.type = BTRFS_EXTENT_ITEM_KEY;
be20aa9d 1381
f321e491 1382 path = btrfs_alloc_path();
be20aa9d
CM
1383 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
1384 if (ret < 0)
1385 goto out;
1386 BUG_ON(ret == 0);
80ff3856
YZ
1387
1388 ret = -ENOENT;
1389 if (path->slots[0] == 0)
31840ae1 1390 goto out;
be20aa9d 1391
31840ae1 1392 path->slots[0]--;
f321e491
YZ
1393 leaf = path->nodes[0];
1394 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
be20aa9d
CM
1395
1396 if (found_key.objectid != bytenr ||
80ff3856 1397 found_key.type != BTRFS_EXTENT_ITEM_KEY)
be20aa9d 1398 goto out;
f321e491 1399
80ff3856 1400 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
be20aa9d 1401 while (1) {
f321e491
YZ
1402 leaf = path->nodes[0];
1403 nritems = btrfs_header_nritems(leaf);
be20aa9d
CM
1404 if (path->slots[0] >= nritems) {
1405 ret = btrfs_next_leaf(extent_root, path);
f321e491
YZ
1406 if (ret < 0)
1407 goto out;
be20aa9d
CM
1408 if (ret == 0)
1409 continue;
1410 break;
1411 }
f321e491 1412 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
be20aa9d
CM
1413 if (found_key.objectid != bytenr)
1414 break;
bd09835d 1415
be20aa9d
CM
1416 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
1417 path->slots[0]++;
1418 continue;
1419 }
1420
f321e491 1421 ref_item = btrfs_item_ptr(leaf, path->slots[0],
be20aa9d 1422 struct btrfs_extent_ref);
80ff3856 1423 ref_root = btrfs_ref_root(leaf, ref_item);
17d217fe
YZ
1424 if ((ref_root != root->root_key.objectid &&
1425 ref_root != BTRFS_TREE_LOG_OBJECTID) ||
1426 objectid != btrfs_ref_objectid(leaf, ref_item)) {
80ff3856 1427 ret = 1;
f321e491 1428 goto out;
80ff3856
YZ
1429 }
1430 if (btrfs_ref_generation(leaf, ref_item) <= last_snapshot) {
f321e491
YZ
1431 ret = 1;
1432 goto out;
1433 }
80ff3856
YZ
1434
1435 path->slots[0]++;
f321e491
YZ
1436 }
1437 ret = 0;
be20aa9d 1438out:
80ff3856 1439 btrfs_free_path(path);
f321e491 1440 return ret;
be20aa9d 1441}
c5739bba 1442
31840ae1
ZY
1443int btrfs_cache_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1444 struct extent_buffer *buf, u32 nr_extents)
02217ed2 1445{
5f39d397 1446 struct btrfs_key key;
6407bf6d 1447 struct btrfs_file_extent_item *fi;
e4657689
ZY
1448 u64 root_gen;
1449 u32 nritems;
02217ed2 1450 int i;
db94535d 1451 int level;
31840ae1 1452 int ret = 0;
e4657689 1453 int shared = 0;
a28ec197 1454
3768f368 1455 if (!root->ref_cows)
a28ec197 1456 return 0;
5f39d397 1457
e4657689
ZY
1458 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
1459 shared = 0;
1460 root_gen = root->root_key.offset;
1461 } else {
1462 shared = 1;
1463 root_gen = trans->transid - 1;
1464 }
1465
db94535d 1466 level = btrfs_header_level(buf);
5f39d397 1467 nritems = btrfs_header_nritems(buf);
4a096752 1468
31840ae1 1469 if (level == 0) {
31153d81
YZ
1470 struct btrfs_leaf_ref *ref;
1471 struct btrfs_extent_info *info;
1472
31840ae1 1473 ref = btrfs_alloc_leaf_ref(root, nr_extents);
31153d81 1474 if (!ref) {
31840ae1 1475 ret = -ENOMEM;
31153d81
YZ
1476 goto out;
1477 }
1478
e4657689 1479 ref->root_gen = root_gen;
31153d81
YZ
1480 ref->bytenr = buf->start;
1481 ref->owner = btrfs_header_owner(buf);
1482 ref->generation = btrfs_header_generation(buf);
31840ae1 1483 ref->nritems = nr_extents;
31153d81 1484 info = ref->extents;
bcc63abb 1485
31840ae1 1486 for (i = 0; nr_extents > 0 && i < nritems; i++) {
31153d81
YZ
1487 u64 disk_bytenr;
1488 btrfs_item_key_to_cpu(buf, &key, i);
1489 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
1490 continue;
1491 fi = btrfs_item_ptr(buf, i,
1492 struct btrfs_file_extent_item);
1493 if (btrfs_file_extent_type(buf, fi) ==
1494 BTRFS_FILE_EXTENT_INLINE)
1495 continue;
1496 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
1497 if (disk_bytenr == 0)
1498 continue;
1499
1500 info->bytenr = disk_bytenr;
1501 info->num_bytes =
1502 btrfs_file_extent_disk_num_bytes(buf, fi);
1503 info->objectid = key.objectid;
1504 info->offset = key.offset;
1505 info++;
1506 }
1507
e4657689 1508 ret = btrfs_add_leaf_ref(root, ref, shared);
5b84e8d6
YZ
1509 if (ret == -EEXIST && shared) {
1510 struct btrfs_leaf_ref *old;
1511 old = btrfs_lookup_leaf_ref(root, ref->bytenr);
1512 BUG_ON(!old);
1513 btrfs_remove_leaf_ref(root, old);
1514 btrfs_free_leaf_ref(root, old);
1515 ret = btrfs_add_leaf_ref(root, ref, shared);
1516 }
31153d81 1517 WARN_ON(ret);
bcc63abb 1518 btrfs_free_leaf_ref(root, ref);
31153d81
YZ
1519 }
1520out:
31840ae1
ZY
1521 return ret;
1522}
1523
1524int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1525 struct extent_buffer *orig_buf, struct extent_buffer *buf,
1526 u32 *nr_extents)
1527{
1528 u64 bytenr;
1529 u64 ref_root;
1530 u64 orig_root;
1531 u64 ref_generation;
1532 u64 orig_generation;
1533 u32 nritems;
1534 u32 nr_file_extents = 0;
1535 struct btrfs_key key;
1536 struct btrfs_file_extent_item *fi;
1537 int i;
1538 int level;
1539 int ret = 0;
1540 int faili = 0;
1541 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
3bb1a1bc 1542 u64, u64, u64, u64, u64, u64, u64, u64);
31840ae1
ZY
1543
1544 ref_root = btrfs_header_owner(buf);
1545 ref_generation = btrfs_header_generation(buf);
1546 orig_root = btrfs_header_owner(orig_buf);
1547 orig_generation = btrfs_header_generation(orig_buf);
1548
1549 nritems = btrfs_header_nritems(buf);
1550 level = btrfs_header_level(buf);
1551
1552 if (root->ref_cows) {
1553 process_func = __btrfs_inc_extent_ref;
1554 } else {
1555 if (level == 0 &&
1556 root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID)
1557 goto out;
1558 if (level != 0 &&
1559 root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID)
1560 goto out;
1561 process_func = __btrfs_update_extent_ref;
1562 }
1563
1564 for (i = 0; i < nritems; i++) {
1565 cond_resched();
db94535d 1566 if (level == 0) {
5f39d397
CM
1567 btrfs_item_key_to_cpu(buf, &key, i);
1568 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
54aa1f4d 1569 continue;
5f39d397 1570 fi = btrfs_item_ptr(buf, i,
54aa1f4d 1571 struct btrfs_file_extent_item);
5f39d397 1572 if (btrfs_file_extent_type(buf, fi) ==
54aa1f4d
CM
1573 BTRFS_FILE_EXTENT_INLINE)
1574 continue;
31840ae1
ZY
1575 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
1576 if (bytenr == 0)
54aa1f4d 1577 continue;
31840ae1
ZY
1578
1579 nr_file_extents++;
1580
31840ae1
ZY
1581 ret = process_func(trans, root, bytenr,
1582 orig_buf->start, buf->start,
1583 orig_root, ref_root,
1584 orig_generation, ref_generation,
3bb1a1bc 1585 key.objectid);
31840ae1
ZY
1586
1587 if (ret) {
1588 faili = i;
1589 WARN_ON(1);
1590 goto fail;
1591 }
54aa1f4d 1592 } else {
db94535d 1593 bytenr = btrfs_node_blockptr(buf, i);
31840ae1
ZY
1594 ret = process_func(trans, root, bytenr,
1595 orig_buf->start, buf->start,
1596 orig_root, ref_root,
1597 orig_generation, ref_generation,
3bb1a1bc 1598 level - 1);
31840ae1
ZY
1599 if (ret) {
1600 faili = i;
1601 WARN_ON(1);
1602 goto fail;
1603 }
54aa1f4d
CM
1604 }
1605 }
31840ae1
ZY
1606out:
1607 if (nr_extents) {
1608 if (level == 0)
1609 *nr_extents = nr_file_extents;
1610 else
1611 *nr_extents = nritems;
1612 }
1613 return 0;
1614fail:
1615 WARN_ON(1);
54aa1f4d 1616 return ret;
02217ed2
CM
1617}
1618
31840ae1
ZY
1619int btrfs_update_ref(struct btrfs_trans_handle *trans,
1620 struct btrfs_root *root, struct extent_buffer *orig_buf,
1621 struct extent_buffer *buf, int start_slot, int nr)
1622
1623{
1624 u64 bytenr;
1625 u64 ref_root;
1626 u64 orig_root;
1627 u64 ref_generation;
1628 u64 orig_generation;
1629 struct btrfs_key key;
1630 struct btrfs_file_extent_item *fi;
1631 int i;
1632 int ret;
1633 int slot;
1634 int level;
1635
1636 BUG_ON(start_slot < 0);
1637 BUG_ON(start_slot + nr > btrfs_header_nritems(buf));
1638
1639 ref_root = btrfs_header_owner(buf);
1640 ref_generation = btrfs_header_generation(buf);
1641 orig_root = btrfs_header_owner(orig_buf);
1642 orig_generation = btrfs_header_generation(orig_buf);
1643 level = btrfs_header_level(buf);
1644
1645 if (!root->ref_cows) {
1646 if (level == 0 &&
1647 root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID)
1648 return 0;
1649 if (level != 0 &&
1650 root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID)
1651 return 0;
1652 }
1653
1654 for (i = 0, slot = start_slot; i < nr; i++, slot++) {
1655 cond_resched();
1656 if (level == 0) {
1657 btrfs_item_key_to_cpu(buf, &key, slot);
1658 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
1659 continue;
1660 fi = btrfs_item_ptr(buf, slot,
1661 struct btrfs_file_extent_item);
1662 if (btrfs_file_extent_type(buf, fi) ==
1663 BTRFS_FILE_EXTENT_INLINE)
1664 continue;
1665 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
1666 if (bytenr == 0)
1667 continue;
31840ae1
ZY
1668 ret = __btrfs_update_extent_ref(trans, root, bytenr,
1669 orig_buf->start, buf->start,
1670 orig_root, ref_root,
1671 orig_generation, ref_generation,
3bb1a1bc 1672 key.objectid);
31840ae1
ZY
1673 if (ret)
1674 goto fail;
1675 } else {
1676 bytenr = btrfs_node_blockptr(buf, slot);
31840ae1
ZY
1677 ret = __btrfs_update_extent_ref(trans, root, bytenr,
1678 orig_buf->start, buf->start,
1679 orig_root, ref_root,
1680 orig_generation, ref_generation,
3bb1a1bc 1681 level - 1);
31840ae1
ZY
1682 if (ret)
1683 goto fail;
1684 }
1685 }
1686 return 0;
1687fail:
1688 WARN_ON(1);
1689 return -1;
1690}
1691
9078a3e1
CM
1692static int write_one_cache_group(struct btrfs_trans_handle *trans,
1693 struct btrfs_root *root,
1694 struct btrfs_path *path,
1695 struct btrfs_block_group_cache *cache)
1696{
1697 int ret;
1698 int pending_ret;
1699 struct btrfs_root *extent_root = root->fs_info->extent_root;
5f39d397
CM
1700 unsigned long bi;
1701 struct extent_buffer *leaf;
9078a3e1 1702
9078a3e1 1703 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
54aa1f4d
CM
1704 if (ret < 0)
1705 goto fail;
9078a3e1 1706 BUG_ON(ret);
5f39d397
CM
1707
1708 leaf = path->nodes[0];
1709 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
1710 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
1711 btrfs_mark_buffer_dirty(leaf);
9078a3e1 1712 btrfs_release_path(extent_root, path);
54aa1f4d 1713fail:
87ef2bb4
CM
1714 finish_current_insert(trans, extent_root, 0);
1715 pending_ret = del_pending_extents(trans, extent_root, 0);
9078a3e1
CM
1716 if (ret)
1717 return ret;
1718 if (pending_ret)
1719 return pending_ret;
1720 return 0;
1721
1722}
1723
96b5179d
CM
1724int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1725 struct btrfs_root *root)
9078a3e1 1726{
0f9dd46c
JB
1727 struct btrfs_block_group_cache *cache, *entry;
1728 struct rb_node *n;
9078a3e1
CM
1729 int err = 0;
1730 int werr = 0;
9078a3e1 1731 struct btrfs_path *path;
96b5179d 1732 u64 last = 0;
9078a3e1
CM
1733
1734 path = btrfs_alloc_path();
1735 if (!path)
1736 return -ENOMEM;
1737
d397712b 1738 while (1) {
0f9dd46c
JB
1739 cache = NULL;
1740 spin_lock(&root->fs_info->block_group_cache_lock);
1741 for (n = rb_first(&root->fs_info->block_group_cache_tree);
1742 n; n = rb_next(n)) {
1743 entry = rb_entry(n, struct btrfs_block_group_cache,
1744 cache_node);
1745 if (entry->dirty) {
1746 cache = entry;
1747 break;
1748 }
1749 }
1750 spin_unlock(&root->fs_info->block_group_cache_lock);
54aa1f4d 1751
0f9dd46c 1752 if (!cache)
96b5179d 1753 break;
0f9dd46c 1754
e8569813 1755 cache->dirty = 0;
0f9dd46c
JB
1756 last += cache->key.offset;
1757
96b5179d
CM
1758 err = write_one_cache_group(trans, root,
1759 path, cache);
1760 /*
1761 * if we fail to write the cache group, we want
1762 * to keep it marked dirty in hopes that a later
1763 * write will work
1764 */
1765 if (err) {
1766 werr = err;
1767 continue;
9078a3e1
CM
1768 }
1769 }
1770 btrfs_free_path(path);
1771 return werr;
1772}
1773
d2fb3437
YZ
1774int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
1775{
1776 struct btrfs_block_group_cache *block_group;
1777 int readonly = 0;
1778
1779 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
1780 if (!block_group || block_group->ro)
1781 readonly = 1;
1782 if (block_group)
1783 put_block_group(block_group);
1784 return readonly;
1785}
1786
593060d7
CM
1787static int update_space_info(struct btrfs_fs_info *info, u64 flags,
1788 u64 total_bytes, u64 bytes_used,
1789 struct btrfs_space_info **space_info)
1790{
1791 struct btrfs_space_info *found;
1792
1793 found = __find_space_info(info, flags);
1794 if (found) {
25179201 1795 spin_lock(&found->lock);
593060d7
CM
1796 found->total_bytes += total_bytes;
1797 found->bytes_used += bytes_used;
8f18cf13 1798 found->full = 0;
25179201 1799 spin_unlock(&found->lock);
593060d7
CM
1800 *space_info = found;
1801 return 0;
1802 }
c146afad 1803 found = kzalloc(sizeof(*found), GFP_NOFS);
593060d7
CM
1804 if (!found)
1805 return -ENOMEM;
1806
1807 list_add(&found->list, &info->space_info);
0f9dd46c 1808 INIT_LIST_HEAD(&found->block_groups);
80eb234a 1809 init_rwsem(&found->groups_sem);
0f9dd46c 1810 spin_lock_init(&found->lock);
593060d7
CM
1811 found->flags = flags;
1812 found->total_bytes = total_bytes;
1813 found->bytes_used = bytes_used;
1814 found->bytes_pinned = 0;
e8569813 1815 found->bytes_reserved = 0;
c146afad 1816 found->bytes_readonly = 0;
593060d7 1817 found->full = 0;
0ef3e66b 1818 found->force_alloc = 0;
593060d7
CM
1819 *space_info = found;
1820 return 0;
1821}
1822
8790d502
CM
1823static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
1824{
1825 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
611f0e00 1826 BTRFS_BLOCK_GROUP_RAID1 |
321aecc6 1827 BTRFS_BLOCK_GROUP_RAID10 |
611f0e00 1828 BTRFS_BLOCK_GROUP_DUP);
8790d502
CM
1829 if (extra_flags) {
1830 if (flags & BTRFS_BLOCK_GROUP_DATA)
1831 fs_info->avail_data_alloc_bits |= extra_flags;
1832 if (flags & BTRFS_BLOCK_GROUP_METADATA)
1833 fs_info->avail_metadata_alloc_bits |= extra_flags;
1834 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
1835 fs_info->avail_system_alloc_bits |= extra_flags;
1836 }
1837}
593060d7 1838
c146afad
YZ
1839static void set_block_group_readonly(struct btrfs_block_group_cache *cache)
1840{
1841 spin_lock(&cache->space_info->lock);
1842 spin_lock(&cache->lock);
1843 if (!cache->ro) {
1844 cache->space_info->bytes_readonly += cache->key.offset -
1845 btrfs_block_group_used(&cache->item);
1846 cache->ro = 1;
1847 }
1848 spin_unlock(&cache->lock);
1849 spin_unlock(&cache->space_info->lock);
1850}
1851
2b82032c 1852u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
ec44a35c 1853{
2b82032c 1854 u64 num_devices = root->fs_info->fs_devices->rw_devices;
a061fc8d
CM
1855
1856 if (num_devices == 1)
1857 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0);
1858 if (num_devices < 4)
1859 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
1860
ec44a35c
CM
1861 if ((flags & BTRFS_BLOCK_GROUP_DUP) &&
1862 (flags & (BTRFS_BLOCK_GROUP_RAID1 |
a061fc8d 1863 BTRFS_BLOCK_GROUP_RAID10))) {
ec44a35c 1864 flags &= ~BTRFS_BLOCK_GROUP_DUP;
a061fc8d 1865 }
ec44a35c
CM
1866
1867 if ((flags & BTRFS_BLOCK_GROUP_RAID1) &&
a061fc8d 1868 (flags & BTRFS_BLOCK_GROUP_RAID10)) {
ec44a35c 1869 flags &= ~BTRFS_BLOCK_GROUP_RAID1;
a061fc8d 1870 }
ec44a35c
CM
1871
1872 if ((flags & BTRFS_BLOCK_GROUP_RAID0) &&
1873 ((flags & BTRFS_BLOCK_GROUP_RAID1) |
1874 (flags & BTRFS_BLOCK_GROUP_RAID10) |
1875 (flags & BTRFS_BLOCK_GROUP_DUP)))
1876 flags &= ~BTRFS_BLOCK_GROUP_RAID0;
1877 return flags;
1878}
1879
6324fbf3
CM
1880static int do_chunk_alloc(struct btrfs_trans_handle *trans,
1881 struct btrfs_root *extent_root, u64 alloc_bytes,
0ef3e66b 1882 u64 flags, int force)
6324fbf3
CM
1883{
1884 struct btrfs_space_info *space_info;
1885 u64 thresh;
c146afad
YZ
1886 int ret = 0;
1887
1888 mutex_lock(&extent_root->fs_info->chunk_mutex);
6324fbf3 1889
2b82032c 1890 flags = btrfs_reduce_alloc_profile(extent_root, flags);
ec44a35c 1891
6324fbf3 1892 space_info = __find_space_info(extent_root->fs_info, flags);
593060d7
CM
1893 if (!space_info) {
1894 ret = update_space_info(extent_root->fs_info, flags,
1895 0, 0, &space_info);
1896 BUG_ON(ret);
1897 }
6324fbf3
CM
1898 BUG_ON(!space_info);
1899
25179201 1900 spin_lock(&space_info->lock);
0ef3e66b
CM
1901 if (space_info->force_alloc) {
1902 force = 1;
1903 space_info->force_alloc = 0;
1904 }
25179201
JB
1905 if (space_info->full) {
1906 spin_unlock(&space_info->lock);
925baedd 1907 goto out;
25179201 1908 }
6324fbf3 1909
c146afad
YZ
1910 thresh = space_info->total_bytes - space_info->bytes_readonly;
1911 thresh = div_factor(thresh, 6);
0ef3e66b 1912 if (!force &&
e8569813 1913 (space_info->bytes_used + space_info->bytes_pinned +
25179201
JB
1914 space_info->bytes_reserved + alloc_bytes) < thresh) {
1915 spin_unlock(&space_info->lock);
925baedd 1916 goto out;
25179201 1917 }
25179201
JB
1918 spin_unlock(&space_info->lock);
1919
2b82032c 1920 ret = btrfs_alloc_chunk(trans, extent_root, flags);
d397712b 1921 if (ret)
6324fbf3 1922 space_info->full = 1;
a74a4b97 1923out:
c146afad 1924 mutex_unlock(&extent_root->fs_info->chunk_mutex);
0f9dd46c 1925 return ret;
6324fbf3
CM
1926}
1927
9078a3e1
CM
1928static int update_block_group(struct btrfs_trans_handle *trans,
1929 struct btrfs_root *root,
db94535d 1930 u64 bytenr, u64 num_bytes, int alloc,
0b86a832 1931 int mark_free)
9078a3e1
CM
1932{
1933 struct btrfs_block_group_cache *cache;
1934 struct btrfs_fs_info *info = root->fs_info;
db94535d 1935 u64 total = num_bytes;
9078a3e1 1936 u64 old_val;
db94535d 1937 u64 byte_in_group;
3e1ad54f 1938
d397712b 1939 while (total) {
db94535d 1940 cache = btrfs_lookup_block_group(info, bytenr);
f3465ca4 1941 if (!cache)
9078a3e1 1942 return -1;
db94535d
CM
1943 byte_in_group = bytenr - cache->key.objectid;
1944 WARN_ON(byte_in_group > cache->key.offset);
9078a3e1 1945
25179201 1946 spin_lock(&cache->space_info->lock);
c286ac48 1947 spin_lock(&cache->lock);
0f9dd46c 1948 cache->dirty = 1;
9078a3e1 1949 old_val = btrfs_block_group_used(&cache->item);
db94535d 1950 num_bytes = min(total, cache->key.offset - byte_in_group);
cd1bc465 1951 if (alloc) {
db94535d 1952 old_val += num_bytes;
6324fbf3 1953 cache->space_info->bytes_used += num_bytes;
a512bbf8 1954 if (cache->ro)
c146afad 1955 cache->space_info->bytes_readonly -= num_bytes;
c286ac48
CM
1956 btrfs_set_block_group_used(&cache->item, old_val);
1957 spin_unlock(&cache->lock);
25179201 1958 spin_unlock(&cache->space_info->lock);
cd1bc465 1959 } else {
db94535d 1960 old_val -= num_bytes;
6324fbf3 1961 cache->space_info->bytes_used -= num_bytes;
c146afad
YZ
1962 if (cache->ro)
1963 cache->space_info->bytes_readonly += num_bytes;
c286ac48
CM
1964 btrfs_set_block_group_used(&cache->item, old_val);
1965 spin_unlock(&cache->lock);
25179201 1966 spin_unlock(&cache->space_info->lock);
f510cfec 1967 if (mark_free) {
0f9dd46c 1968 int ret;
1f3c79a2
LH
1969
1970 ret = btrfs_discard_extent(root, bytenr,
1971 num_bytes);
1972 WARN_ON(ret);
1973
0f9dd46c
JB
1974 ret = btrfs_add_free_space(cache, bytenr,
1975 num_bytes);
d2fb3437 1976 WARN_ON(ret);
e37c9e69 1977 }
cd1bc465 1978 }
d2fb3437 1979 put_block_group(cache);
db94535d
CM
1980 total -= num_bytes;
1981 bytenr += num_bytes;
9078a3e1
CM
1982 }
1983 return 0;
1984}
6324fbf3 1985
a061fc8d
CM
1986static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
1987{
0f9dd46c 1988 struct btrfs_block_group_cache *cache;
d2fb3437 1989 u64 bytenr;
0f9dd46c
JB
1990
1991 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
1992 if (!cache)
a061fc8d 1993 return 0;
0f9dd46c 1994
d2fb3437
YZ
1995 bytenr = cache->key.objectid;
1996 put_block_group(cache);
1997
1998 return bytenr;
a061fc8d
CM
1999}
2000
e02119d5 2001int btrfs_update_pinned_extents(struct btrfs_root *root,
324ae4df
Y
2002 u64 bytenr, u64 num, int pin)
2003{
2004 u64 len;
2005 struct btrfs_block_group_cache *cache;
2006 struct btrfs_fs_info *fs_info = root->fs_info;
2007
25179201 2008 WARN_ON(!mutex_is_locked(&root->fs_info->pinned_mutex));
324ae4df
Y
2009 if (pin) {
2010 set_extent_dirty(&fs_info->pinned_extents,
2011 bytenr, bytenr + num - 1, GFP_NOFS);
2012 } else {
2013 clear_extent_dirty(&fs_info->pinned_extents,
2014 bytenr, bytenr + num - 1, GFP_NOFS);
2015 }
2016 while (num > 0) {
2017 cache = btrfs_lookup_block_group(fs_info, bytenr);
e8569813
ZY
2018 BUG_ON(!cache);
2019 len = min(num, cache->key.offset -
2020 (bytenr - cache->key.objectid));
324ae4df 2021 if (pin) {
25179201 2022 spin_lock(&cache->space_info->lock);
e8569813
ZY
2023 spin_lock(&cache->lock);
2024 cache->pinned += len;
2025 cache->space_info->bytes_pinned += len;
2026 spin_unlock(&cache->lock);
25179201 2027 spin_unlock(&cache->space_info->lock);
324ae4df
Y
2028 fs_info->total_pinned += len;
2029 } else {
25179201 2030 spin_lock(&cache->space_info->lock);
e8569813
ZY
2031 spin_lock(&cache->lock);
2032 cache->pinned -= len;
2033 cache->space_info->bytes_pinned -= len;
2034 spin_unlock(&cache->lock);
25179201 2035 spin_unlock(&cache->space_info->lock);
324ae4df 2036 fs_info->total_pinned -= len;
07103a3c
JB
2037 if (cache->cached)
2038 btrfs_add_free_space(cache, bytenr, len);
324ae4df 2039 }
d2fb3437 2040 put_block_group(cache);
324ae4df
Y
2041 bytenr += len;
2042 num -= len;
2043 }
2044 return 0;
2045}
9078a3e1 2046
e8569813
ZY
2047static int update_reserved_extents(struct btrfs_root *root,
2048 u64 bytenr, u64 num, int reserve)
2049{
2050 u64 len;
2051 struct btrfs_block_group_cache *cache;
2052 struct btrfs_fs_info *fs_info = root->fs_info;
2053
e8569813
ZY
2054 while (num > 0) {
2055 cache = btrfs_lookup_block_group(fs_info, bytenr);
2056 BUG_ON(!cache);
2057 len = min(num, cache->key.offset -
2058 (bytenr - cache->key.objectid));
25179201
JB
2059
2060 spin_lock(&cache->space_info->lock);
2061 spin_lock(&cache->lock);
e8569813 2062 if (reserve) {
e8569813
ZY
2063 cache->reserved += len;
2064 cache->space_info->bytes_reserved += len;
e8569813 2065 } else {
e8569813
ZY
2066 cache->reserved -= len;
2067 cache->space_info->bytes_reserved -= len;
e8569813 2068 }
25179201
JB
2069 spin_unlock(&cache->lock);
2070 spin_unlock(&cache->space_info->lock);
d2fb3437 2071 put_block_group(cache);
e8569813
ZY
2072 bytenr += len;
2073 num -= len;
2074 }
2075 return 0;
2076}
2077
d1310b2e 2078int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy)
ccd467d6 2079{
ccd467d6 2080 u64 last = 0;
1a5bc167
CM
2081 u64 start;
2082 u64 end;
d1310b2e 2083 struct extent_io_tree *pinned_extents = &root->fs_info->pinned_extents;
ccd467d6 2084 int ret;
ccd467d6 2085
25179201 2086 mutex_lock(&root->fs_info->pinned_mutex);
d397712b 2087 while (1) {
1a5bc167
CM
2088 ret = find_first_extent_bit(pinned_extents, last,
2089 &start, &end, EXTENT_DIRTY);
2090 if (ret)
ccd467d6 2091 break;
1a5bc167
CM
2092 set_extent_dirty(copy, start, end, GFP_NOFS);
2093 last = end + 1;
ccd467d6 2094 }
25179201 2095 mutex_unlock(&root->fs_info->pinned_mutex);
ccd467d6
CM
2096 return 0;
2097}
2098
2099int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
2100 struct btrfs_root *root,
d1310b2e 2101 struct extent_io_tree *unpin)
a28ec197 2102{
1a5bc167
CM
2103 u64 start;
2104 u64 end;
a28ec197 2105 int ret;
a28ec197 2106
25179201 2107 mutex_lock(&root->fs_info->pinned_mutex);
d397712b 2108 while (1) {
1a5bc167
CM
2109 ret = find_first_extent_bit(unpin, 0, &start, &end,
2110 EXTENT_DIRTY);
2111 if (ret)
a28ec197 2112 break;
1f3c79a2
LH
2113
2114 ret = btrfs_discard_extent(root, start, end + 1 - start);
2115
e02119d5 2116 btrfs_update_pinned_extents(root, start, end + 1 - start, 0);
1a5bc167 2117 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1f3c79a2 2118
c286ac48 2119 if (need_resched()) {
25179201 2120 mutex_unlock(&root->fs_info->pinned_mutex);
c286ac48 2121 cond_resched();
25179201 2122 mutex_lock(&root->fs_info->pinned_mutex);
c286ac48 2123 }
a28ec197 2124 }
25179201 2125 mutex_unlock(&root->fs_info->pinned_mutex);
1f3c79a2 2126 return ret;
a28ec197
CM
2127}
2128
98ed5174 2129static int finish_current_insert(struct btrfs_trans_handle *trans,
87ef2bb4 2130 struct btrfs_root *extent_root, int all)
037e6390 2131{
7bb86316
CM
2132 u64 start;
2133 u64 end;
31840ae1 2134 u64 priv;
25179201 2135 u64 search = 0;
f3465ca4 2136 u64 skipped = 0;
7bb86316
CM
2137 struct btrfs_fs_info *info = extent_root->fs_info;
2138 struct btrfs_path *path;
f3465ca4
JB
2139 struct pending_extent_op *extent_op, *tmp;
2140 struct list_head insert_list, update_list;
037e6390 2141 int ret;
f3465ca4 2142 int num_inserts = 0, max_inserts;
037e6390 2143
7bb86316 2144 path = btrfs_alloc_path();
f3465ca4
JB
2145 INIT_LIST_HEAD(&insert_list);
2146 INIT_LIST_HEAD(&update_list);
037e6390 2147
f3465ca4
JB
2148 max_inserts = extent_root->leafsize /
2149 (2 * sizeof(struct btrfs_key) + 2 * sizeof(struct btrfs_item) +
2150 sizeof(struct btrfs_extent_ref) +
2151 sizeof(struct btrfs_extent_item));
2152again:
2153 mutex_lock(&info->extent_ins_mutex);
2154 while (1) {
25179201
JB
2155 ret = find_first_extent_bit(&info->extent_ins, search, &start,
2156 &end, EXTENT_WRITEBACK);
2157 if (ret) {
5a7be515
YZ
2158 if (skipped && all && !num_inserts &&
2159 list_empty(&update_list)) {
f3465ca4 2160 skipped = 0;
b4eec2ca 2161 search = 0;
25179201
JB
2162 continue;
2163 }
f3465ca4 2164 mutex_unlock(&info->extent_ins_mutex);
26b8003f 2165 break;
25179201
JB
2166 }
2167
2168 ret = try_lock_extent(&info->extent_ins, start, end, GFP_NOFS);
2169 if (!ret) {
f3465ca4 2170 skipped = 1;
87ef2bb4 2171 search = end + 1;
f3465ca4
JB
2172 if (need_resched()) {
2173 mutex_unlock(&info->extent_ins_mutex);
2174 cond_resched();
2175 mutex_lock(&info->extent_ins_mutex);
2176 }
25179201
JB
2177 continue;
2178 }
26b8003f 2179
31840ae1
ZY
2180 ret = get_state_private(&info->extent_ins, start, &priv);
2181 BUG_ON(ret);
f3465ca4 2182 extent_op = (struct pending_extent_op *)(unsigned long) priv;
25179201 2183
31840ae1 2184 if (extent_op->type == PENDING_EXTENT_INSERT) {
f3465ca4
JB
2185 num_inserts++;
2186 list_add_tail(&extent_op->list, &insert_list);
2187 search = end + 1;
2188 if (num_inserts == max_inserts) {
2189 mutex_unlock(&info->extent_ins_mutex);
2190 break;
2191 }
2192 } else if (extent_op->type == PENDING_BACKREF_UPDATE) {
2193 list_add_tail(&extent_op->list, &update_list);
2194 search = end + 1;
2195 } else {
2196 BUG();
2197 }
2198 }
c286ac48 2199
f3465ca4 2200 /*
b4eec2ca 2201 * process the update list, clear the writeback bit for it, and if
f3465ca4
JB
2202 * somebody marked this thing for deletion then just unlock it and be
2203 * done, the free_extents will handle it
2204 */
2205 mutex_lock(&info->extent_ins_mutex);
2206 list_for_each_entry_safe(extent_op, tmp, &update_list, list) {
2207 clear_extent_bits(&info->extent_ins, extent_op->bytenr,
2208 extent_op->bytenr + extent_op->num_bytes - 1,
2209 EXTENT_WRITEBACK, GFP_NOFS);
2210 if (extent_op->del) {
2211 list_del_init(&extent_op->list);
2212 unlock_extent(&info->extent_ins, extent_op->bytenr,
2213 extent_op->bytenr + extent_op->num_bytes
2214 - 1, GFP_NOFS);
2215 kfree(extent_op);
2216 }
2217 }
2218 mutex_unlock(&info->extent_ins_mutex);
c286ac48 2219
f3465ca4
JB
2220 /*
2221 * still have things left on the update list, go ahead an update
2222 * everything
2223 */
2224 if (!list_empty(&update_list)) {
2225 ret = update_backrefs(trans, extent_root, path, &update_list);
2226 BUG_ON(ret);
2227 }
c286ac48 2228
f3465ca4
JB
2229 /*
2230 * if no inserts need to be done, but we skipped some extents and we
2231 * need to make sure everything is cleaned then reset everything and
2232 * go back to the beginning
2233 */
2234 if (!num_inserts && all && skipped) {
2235 search = 0;
2236 skipped = 0;
2237 INIT_LIST_HEAD(&update_list);
2238 INIT_LIST_HEAD(&insert_list);
2239 goto again;
2240 } else if (!num_inserts) {
2241 goto out;
2242 }
31840ae1 2243
f3465ca4
JB
2244 /*
2245 * process the insert extents list. Again if we are deleting this
2246 * extent, then just unlock it, pin down the bytes if need be, and be
2247 * done with it. Saves us from having to actually insert the extent
2248 * into the tree and then subsequently come along and delete it
2249 */
2250 mutex_lock(&info->extent_ins_mutex);
2251 list_for_each_entry_safe(extent_op, tmp, &insert_list, list) {
2252 clear_extent_bits(&info->extent_ins, extent_op->bytenr,
2253 extent_op->bytenr + extent_op->num_bytes - 1,
2254 EXTENT_WRITEBACK, GFP_NOFS);
2255 if (extent_op->del) {
34bf63c4 2256 u64 used;
f3465ca4
JB
2257 list_del_init(&extent_op->list);
2258 unlock_extent(&info->extent_ins, extent_op->bytenr,
2259 extent_op->bytenr + extent_op->num_bytes
2260 - 1, GFP_NOFS);
2261
2262 mutex_lock(&extent_root->fs_info->pinned_mutex);
2263 ret = pin_down_bytes(trans, extent_root,
2264 extent_op->bytenr,
2265 extent_op->num_bytes, 0);
2266 mutex_unlock(&extent_root->fs_info->pinned_mutex);
2267
34bf63c4
YZ
2268 spin_lock(&info->delalloc_lock);
2269 used = btrfs_super_bytes_used(&info->super_copy);
2270 btrfs_set_super_bytes_used(&info->super_copy,
2271 used - extent_op->num_bytes);
2272 used = btrfs_root_used(&extent_root->root_item);
2273 btrfs_set_root_used(&extent_root->root_item,
2274 used - extent_op->num_bytes);
2275 spin_unlock(&info->delalloc_lock);
2276
f3465ca4
JB
2277 ret = update_block_group(trans, extent_root,
2278 extent_op->bytenr,
2279 extent_op->num_bytes,
2280 0, ret > 0);
2281 BUG_ON(ret);
2282 kfree(extent_op);
2283 num_inserts--;
d8d5f3e1 2284 }
f3465ca4
JB
2285 }
2286 mutex_unlock(&info->extent_ins_mutex);
31840ae1 2287
f3465ca4
JB
2288 ret = insert_extents(trans, extent_root, path, &insert_list,
2289 num_inserts);
2290 BUG_ON(ret);
2291
2292 /*
2293 * if we broke out of the loop in order to insert stuff because we hit
2294 * the maximum number of inserts at a time we can handle, then loop
2295 * back and pick up where we left off
2296 */
2297 if (num_inserts == max_inserts) {
2298 INIT_LIST_HEAD(&insert_list);
2299 INIT_LIST_HEAD(&update_list);
2300 num_inserts = 0;
2301 goto again;
2302 }
2303
2304 /*
2305 * again, if we need to make absolutely sure there are no more pending
2306 * extent operations left and we know that we skipped some, go back to
2307 * the beginning and do it all again
2308 */
2309 if (all && skipped) {
2310 INIT_LIST_HEAD(&insert_list);
2311 INIT_LIST_HEAD(&update_list);
2312 search = 0;
2313 skipped = 0;
2314 num_inserts = 0;
2315 goto again;
037e6390 2316 }
f3465ca4 2317out:
7bb86316 2318 btrfs_free_path(path);
037e6390
CM
2319 return 0;
2320}
2321
31840ae1
ZY
2322static int pin_down_bytes(struct btrfs_trans_handle *trans,
2323 struct btrfs_root *root,
2324 u64 bytenr, u64 num_bytes, int is_data)
e20d96d6 2325{
1a5bc167 2326 int err = 0;
31840ae1 2327 struct extent_buffer *buf;
8ef97622 2328
31840ae1
ZY
2329 if (is_data)
2330 goto pinit;
2331
2332 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
2333 if (!buf)
2334 goto pinit;
2335
2336 /* we can reuse a block if it hasn't been written
2337 * and it is from this transaction. We can't
2338 * reuse anything from the tree log root because
2339 * it has tiny sub-transactions.
2340 */
2341 if (btrfs_buffer_uptodate(buf, 0) &&
2342 btrfs_try_tree_lock(buf)) {
2343 u64 header_owner = btrfs_header_owner(buf);
2344 u64 header_transid = btrfs_header_generation(buf);
2345 if (header_owner != BTRFS_TREE_LOG_OBJECTID &&
1a40e23b 2346 header_owner != BTRFS_TREE_RELOC_OBJECTID &&
31840ae1
ZY
2347 header_transid == trans->transid &&
2348 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
2349 clean_tree_block(NULL, root, buf);
2350 btrfs_tree_unlock(buf);
5f39d397 2351 free_extent_buffer(buf);
31840ae1 2352 return 1;
8ef97622 2353 }
31840ae1 2354 btrfs_tree_unlock(buf);
f4b9aa8d 2355 }
31840ae1
ZY
2356 free_extent_buffer(buf);
2357pinit:
2358 btrfs_update_pinned_extents(root, bytenr, num_bytes, 1);
2359
be744175 2360 BUG_ON(err < 0);
e20d96d6
CM
2361 return 0;
2362}
2363
fec577fb 2364/*
a28ec197 2365 * remove an extent from the root, returns 0 on success
fec577fb 2366 */
31840ae1
ZY
2367static int __free_extent(struct btrfs_trans_handle *trans,
2368 struct btrfs_root *root,
2369 u64 bytenr, u64 num_bytes, u64 parent,
7bb86316 2370 u64 root_objectid, u64 ref_generation,
3bb1a1bc 2371 u64 owner_objectid, int pin, int mark_free)
a28ec197 2372{
5caf2a00 2373 struct btrfs_path *path;
e2fa7227 2374 struct btrfs_key key;
1261ec42
CM
2375 struct btrfs_fs_info *info = root->fs_info;
2376 struct btrfs_root *extent_root = info->extent_root;
5f39d397 2377 struct extent_buffer *leaf;
a28ec197 2378 int ret;
952fccac
CM
2379 int extent_slot = 0;
2380 int found_extent = 0;
2381 int num_to_del = 1;
234b63a0 2382 struct btrfs_extent_item *ei;
cf27e1ee 2383 u32 refs;
037e6390 2384
db94535d 2385 key.objectid = bytenr;
62e2749e 2386 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
db94535d 2387 key.offset = num_bytes;
5caf2a00 2388 path = btrfs_alloc_path();
54aa1f4d
CM
2389 if (!path)
2390 return -ENOMEM;
5f26f772 2391
3c12ac72 2392 path->reada = 1;
3bb1a1bc
YZ
2393 ret = lookup_extent_backref(trans, extent_root, path,
2394 bytenr, parent, root_objectid,
2395 ref_generation, owner_objectid, 1);
7bb86316 2396 if (ret == 0) {
952fccac
CM
2397 struct btrfs_key found_key;
2398 extent_slot = path->slots[0];
d397712b 2399 while (extent_slot > 0) {
952fccac
CM
2400 extent_slot--;
2401 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
2402 extent_slot);
2403 if (found_key.objectid != bytenr)
2404 break;
2405 if (found_key.type == BTRFS_EXTENT_ITEM_KEY &&
2406 found_key.offset == num_bytes) {
2407 found_extent = 1;
2408 break;
2409 }
2410 if (path->slots[0] - extent_slot > 5)
2411 break;
2412 }
31840ae1
ZY
2413 if (!found_extent) {
2414 ret = remove_extent_backref(trans, extent_root, path);
2415 BUG_ON(ret);
2416 btrfs_release_path(extent_root, path);
2417 ret = btrfs_search_slot(trans, extent_root,
2418 &key, path, -1, 1);
f3465ca4
JB
2419 if (ret) {
2420 printk(KERN_ERR "umm, got %d back from search"
d397712b
CM
2421 ", was looking for %llu\n", ret,
2422 (unsigned long long)bytenr);
f3465ca4
JB
2423 btrfs_print_leaf(extent_root, path->nodes[0]);
2424 }
31840ae1
ZY
2425 BUG_ON(ret);
2426 extent_slot = path->slots[0];
2427 }
7bb86316
CM
2428 } else {
2429 btrfs_print_leaf(extent_root, path->nodes[0]);
2430 WARN_ON(1);
d397712b
CM
2431 printk(KERN_ERR "btrfs unable to find ref byte nr %llu "
2432 "root %llu gen %llu owner %llu\n",
2433 (unsigned long long)bytenr,
2434 (unsigned long long)root_objectid,
2435 (unsigned long long)ref_generation,
2436 (unsigned long long)owner_objectid);
7bb86316 2437 }
5f39d397
CM
2438
2439 leaf = path->nodes[0];
952fccac 2440 ei = btrfs_item_ptr(leaf, extent_slot,
123abc88 2441 struct btrfs_extent_item);
5f39d397
CM
2442 refs = btrfs_extent_refs(leaf, ei);
2443 BUG_ON(refs == 0);
2444 refs -= 1;
2445 btrfs_set_extent_refs(leaf, ei, refs);
952fccac 2446
5f39d397
CM
2447 btrfs_mark_buffer_dirty(leaf);
2448
952fccac 2449 if (refs == 0 && found_extent && path->slots[0] == extent_slot + 1) {
31840ae1
ZY
2450 struct btrfs_extent_ref *ref;
2451 ref = btrfs_item_ptr(leaf, path->slots[0],
2452 struct btrfs_extent_ref);
2453 BUG_ON(btrfs_ref_num_refs(leaf, ref) != 1);
952fccac
CM
2454 /* if the back ref and the extent are next to each other
2455 * they get deleted below in one shot
2456 */
2457 path->slots[0] = extent_slot;
2458 num_to_del = 2;
2459 } else if (found_extent) {
2460 /* otherwise delete the extent back ref */
31840ae1 2461 ret = remove_extent_backref(trans, extent_root, path);
952fccac
CM
2462 BUG_ON(ret);
2463 /* if refs are 0, we need to setup the path for deletion */
2464 if (refs == 0) {
2465 btrfs_release_path(extent_root, path);
2466 ret = btrfs_search_slot(trans, extent_root, &key, path,
2467 -1, 1);
952fccac
CM
2468 BUG_ON(ret);
2469 }
2470 }
2471
cf27e1ee 2472 if (refs == 0) {
db94535d
CM
2473 u64 super_used;
2474 u64 root_used;
78fae27e
CM
2475
2476 if (pin) {
25179201 2477 mutex_lock(&root->fs_info->pinned_mutex);
31840ae1
ZY
2478 ret = pin_down_bytes(trans, root, bytenr, num_bytes,
2479 owner_objectid >= BTRFS_FIRST_FREE_OBJECTID);
25179201 2480 mutex_unlock(&root->fs_info->pinned_mutex);
c549228f
Y
2481 if (ret > 0)
2482 mark_free = 1;
2483 BUG_ON(ret < 0);
78fae27e 2484 }
58176a96 2485 /* block accounting for super block */
75eff68e 2486 spin_lock(&info->delalloc_lock);
db94535d
CM
2487 super_used = btrfs_super_bytes_used(&info->super_copy);
2488 btrfs_set_super_bytes_used(&info->super_copy,
2489 super_used - num_bytes);
58176a96
JB
2490
2491 /* block accounting for root item */
db94535d 2492 root_used = btrfs_root_used(&root->root_item);
5f39d397 2493 btrfs_set_root_used(&root->root_item,
db94535d 2494 root_used - num_bytes);
34bf63c4 2495 spin_unlock(&info->delalloc_lock);
952fccac
CM
2496 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
2497 num_to_del);
31840ae1 2498 BUG_ON(ret);
25179201 2499 btrfs_release_path(extent_root, path);
21af804c 2500
459931ec
CM
2501 if (owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
2502 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
2503 BUG_ON(ret);
2504 }
2505
dcbdd4dc
CM
2506 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
2507 mark_free);
2508 BUG_ON(ret);
a28ec197 2509 }
5caf2a00 2510 btrfs_free_path(path);
87ef2bb4 2511 finish_current_insert(trans, extent_root, 0);
a28ec197
CM
2512 return ret;
2513}
2514
a28ec197
CM
2515/*
2516 * find all the blocks marked as pending in the radix tree and remove
2517 * them from the extent map
2518 */
d397712b
CM
2519static int del_pending_extents(struct btrfs_trans_handle *trans,
2520 struct btrfs_root *extent_root, int all)
a28ec197
CM
2521{
2522 int ret;
e20d96d6 2523 int err = 0;
1a5bc167
CM
2524 u64 start;
2525 u64 end;
31840ae1 2526 u64 priv;
25179201 2527 u64 search = 0;
f3465ca4 2528 int nr = 0, skipped = 0;
d1310b2e 2529 struct extent_io_tree *pending_del;
31840ae1
ZY
2530 struct extent_io_tree *extent_ins;
2531 struct pending_extent_op *extent_op;
25179201 2532 struct btrfs_fs_info *info = extent_root->fs_info;
f3465ca4 2533 struct list_head delete_list;
8ef97622 2534
f3465ca4 2535 INIT_LIST_HEAD(&delete_list);
31840ae1 2536 extent_ins = &extent_root->fs_info->extent_ins;
1a5bc167 2537 pending_del = &extent_root->fs_info->pending_del;
a28ec197 2538
f3465ca4
JB
2539again:
2540 mutex_lock(&info->extent_ins_mutex);
d397712b 2541 while (1) {
25179201
JB
2542 ret = find_first_extent_bit(pending_del, search, &start, &end,
2543 EXTENT_WRITEBACK);
2544 if (ret) {
f3465ca4 2545 if (all && skipped && !nr) {
25179201 2546 search = 0;
5a7be515 2547 skipped = 0;
25179201
JB
2548 continue;
2549 }
f3465ca4 2550 mutex_unlock(&info->extent_ins_mutex);
a28ec197 2551 break;
25179201
JB
2552 }
2553
2554 ret = try_lock_extent(extent_ins, start, end, GFP_NOFS);
2555 if (!ret) {
2556 search = end+1;
f3465ca4
JB
2557 skipped = 1;
2558
2559 if (need_resched()) {
2560 mutex_unlock(&info->extent_ins_mutex);
2561 cond_resched();
2562 mutex_lock(&info->extent_ins_mutex);
2563 }
2564
25179201
JB
2565 continue;
2566 }
2567 BUG_ON(ret < 0);
31840ae1
ZY
2568
2569 ret = get_state_private(pending_del, start, &priv);
2570 BUG_ON(ret);
2571 extent_op = (struct pending_extent_op *)(unsigned long)priv;
2572
25179201 2573 clear_extent_bits(pending_del, start, end, EXTENT_WRITEBACK,
1a5bc167 2574 GFP_NOFS);
31840ae1 2575 if (!test_range_bit(extent_ins, start, end,
25179201 2576 EXTENT_WRITEBACK, 0)) {
f3465ca4
JB
2577 list_add_tail(&extent_op->list, &delete_list);
2578 nr++;
c286ac48 2579 } else {
31840ae1 2580 kfree(extent_op);
25179201
JB
2581
2582 ret = get_state_private(&info->extent_ins, start,
2583 &priv);
31840ae1
ZY
2584 BUG_ON(ret);
2585 extent_op = (struct pending_extent_op *)
25179201
JB
2586 (unsigned long)priv;
2587
2588 clear_extent_bits(&info->extent_ins, start, end,
2589 EXTENT_WRITEBACK, GFP_NOFS);
31840ae1 2590
f3465ca4
JB
2591 if (extent_op->type == PENDING_BACKREF_UPDATE) {
2592 list_add_tail(&extent_op->list, &delete_list);
2593 search = end + 1;
2594 nr++;
2595 continue;
2596 }
31840ae1 2597
25179201
JB
2598 mutex_lock(&extent_root->fs_info->pinned_mutex);
2599 ret = pin_down_bytes(trans, extent_root, start,
2600 end + 1 - start, 0);
2601 mutex_unlock(&extent_root->fs_info->pinned_mutex);
2602
31840ae1 2603 ret = update_block_group(trans, extent_root, start,
25179201
JB
2604 end + 1 - start, 0, ret > 0);
2605
f3465ca4 2606 unlock_extent(extent_ins, start, end, GFP_NOFS);
31840ae1
ZY
2607 BUG_ON(ret);
2608 kfree(extent_op);
c286ac48 2609 }
1a5bc167
CM
2610 if (ret)
2611 err = ret;
c286ac48 2612
f3465ca4
JB
2613 search = end + 1;
2614
2615 if (need_resched()) {
2616 mutex_unlock(&info->extent_ins_mutex);
2617 cond_resched();
2618 mutex_lock(&info->extent_ins_mutex);
2619 }
2620 }
2621
2622 if (nr) {
2623 ret = free_extents(trans, extent_root, &delete_list);
2624 BUG_ON(ret);
2625 }
2626
2627 if (all && skipped) {
2628 INIT_LIST_HEAD(&delete_list);
2629 search = 0;
2630 nr = 0;
2631 goto again;
fec577fb 2632 }
f3465ca4 2633
e20d96d6 2634 return err;
fec577fb
CM
2635}
2636
2637/*
2638 * remove an extent from the root, returns 0 on success
2639 */
925baedd 2640static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
31840ae1
ZY
2641 struct btrfs_root *root,
2642 u64 bytenr, u64 num_bytes, u64 parent,
2643 u64 root_objectid, u64 ref_generation,
3bb1a1bc 2644 u64 owner_objectid, int pin)
fec577fb 2645{
9f5fae2f 2646 struct btrfs_root *extent_root = root->fs_info->extent_root;
fec577fb
CM
2647 int pending_ret;
2648 int ret;
a28ec197 2649
db94535d 2650 WARN_ON(num_bytes < root->sectorsize);
fec577fb 2651 if (root == extent_root) {
f3465ca4
JB
2652 struct pending_extent_op *extent_op = NULL;
2653
2654 mutex_lock(&root->fs_info->extent_ins_mutex);
2655 if (test_range_bit(&root->fs_info->extent_ins, bytenr,
2656 bytenr + num_bytes - 1, EXTENT_WRITEBACK, 0)) {
2657 u64 priv;
2658 ret = get_state_private(&root->fs_info->extent_ins,
2659 bytenr, &priv);
2660 BUG_ON(ret);
2661 extent_op = (struct pending_extent_op *)
2662 (unsigned long)priv;
2663
2664 extent_op->del = 1;
2665 if (extent_op->type == PENDING_EXTENT_INSERT) {
2666 mutex_unlock(&root->fs_info->extent_ins_mutex);
2667 return 0;
2668 }
2669 }
2670
2671 if (extent_op) {
2672 ref_generation = extent_op->orig_generation;
2673 parent = extent_op->orig_parent;
2674 }
31840ae1
ZY
2675
2676 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
2677 BUG_ON(!extent_op);
2678
2679 extent_op->type = PENDING_EXTENT_DELETE;
2680 extent_op->bytenr = bytenr;
2681 extent_op->num_bytes = num_bytes;
2682 extent_op->parent = parent;
2683 extent_op->orig_parent = parent;
2684 extent_op->generation = ref_generation;
2685 extent_op->orig_generation = ref_generation;
2686 extent_op->level = (int)owner_objectid;
f3465ca4
JB
2687 INIT_LIST_HEAD(&extent_op->list);
2688 extent_op->del = 0;
31840ae1
ZY
2689
2690 set_extent_bits(&root->fs_info->pending_del,
2691 bytenr, bytenr + num_bytes - 1,
25179201 2692 EXTENT_WRITEBACK, GFP_NOFS);
31840ae1
ZY
2693 set_state_private(&root->fs_info->pending_del,
2694 bytenr, (unsigned long)extent_op);
25179201 2695 mutex_unlock(&root->fs_info->extent_ins_mutex);
fec577fb
CM
2696 return 0;
2697 }
4bef0848 2698 /* if metadata always pin */
d00aff00
CM
2699 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID) {
2700 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
7237f183
YZ
2701 mutex_lock(&root->fs_info->pinned_mutex);
2702 btrfs_update_pinned_extents(root, bytenr, num_bytes, 1);
2703 mutex_unlock(&root->fs_info->pinned_mutex);
e8569813 2704 update_reserved_extents(root, bytenr, num_bytes, 0);
d00aff00
CM
2705 return 0;
2706 }
4bef0848 2707 pin = 1;
d00aff00 2708 }
4bef0848
CM
2709
2710 /* if data pin when any transaction has committed this */
2711 if (ref_generation != trans->transid)
2712 pin = 1;
2713
31840ae1 2714 ret = __free_extent(trans, root, bytenr, num_bytes, parent,
3bb1a1bc
YZ
2715 root_objectid, ref_generation,
2716 owner_objectid, pin, pin == 0);
ee6e6504 2717
87ef2bb4
CM
2718 finish_current_insert(trans, root->fs_info->extent_root, 0);
2719 pending_ret = del_pending_extents(trans, root->fs_info->extent_root, 0);
fec577fb
CM
2720 return ret ? ret : pending_ret;
2721}
2722
925baedd 2723int btrfs_free_extent(struct btrfs_trans_handle *trans,
31840ae1
ZY
2724 struct btrfs_root *root,
2725 u64 bytenr, u64 num_bytes, u64 parent,
2726 u64 root_objectid, u64 ref_generation,
3bb1a1bc 2727 u64 owner_objectid, int pin)
925baedd
CM
2728{
2729 int ret;
2730
31840ae1 2731 ret = __btrfs_free_extent(trans, root, bytenr, num_bytes, parent,
925baedd 2732 root_objectid, ref_generation,
3bb1a1bc 2733 owner_objectid, pin);
925baedd
CM
2734 return ret;
2735}
2736
87ee04eb
CM
2737static u64 stripe_align(struct btrfs_root *root, u64 val)
2738{
2739 u64 mask = ((u64)root->stripesize - 1);
2740 u64 ret = (val + mask) & ~mask;
2741 return ret;
2742}
2743
fec577fb
CM
2744/*
2745 * walks the btree of allocated extents and find a hole of a given size.
2746 * The key ins is changed to record the hole:
2747 * ins->objectid == block start
62e2749e 2748 * ins->flags = BTRFS_EXTENT_ITEM_KEY
fec577fb
CM
2749 * ins->offset == number of blocks
2750 * Any available blocks before search_start are skipped.
2751 */
d397712b 2752static noinline int find_free_extent(struct btrfs_trans_handle *trans,
98ed5174
CM
2753 struct btrfs_root *orig_root,
2754 u64 num_bytes, u64 empty_size,
2755 u64 search_start, u64 search_end,
2756 u64 hint_byte, struct btrfs_key *ins,
2757 u64 exclude_start, u64 exclude_nr,
2758 int data)
fec577fb 2759{
80eb234a 2760 int ret = 0;
d397712b 2761 struct btrfs_root *root = orig_root->fs_info->extent_root;
db94535d 2762 u64 total_needed = num_bytes;
239b14b3 2763 u64 *last_ptr = NULL;
4366211c 2764 u64 last_wanted = 0;
80eb234a 2765 struct btrfs_block_group_cache *block_group = NULL;
0ef3e66b 2766 int chunk_alloc_done = 0;
239b14b3 2767 int empty_cluster = 2 * 1024 * 1024;
0ef3e66b 2768 int allowed_chunk_alloc = 0;
80eb234a
JB
2769 struct list_head *head = NULL, *cur = NULL;
2770 int loop = 0;
f5a31e16 2771 int extra_loop = 0;
80eb234a 2772 struct btrfs_space_info *space_info;
fec577fb 2773
db94535d 2774 WARN_ON(num_bytes < root->sectorsize);
b1a4d965 2775 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
80eb234a
JB
2776 ins->objectid = 0;
2777 ins->offset = 0;
b1a4d965 2778
0ef3e66b
CM
2779 if (orig_root->ref_cows || empty_size)
2780 allowed_chunk_alloc = 1;
2781
239b14b3
CM
2782 if (data & BTRFS_BLOCK_GROUP_METADATA) {
2783 last_ptr = &root->fs_info->last_alloc;
4366211c 2784 empty_cluster = 64 * 1024;
239b14b3
CM
2785 }
2786
0f9dd46c 2787 if ((data & BTRFS_BLOCK_GROUP_DATA) && btrfs_test_opt(root, SSD))
239b14b3 2788 last_ptr = &root->fs_info->last_data_alloc;
0f9dd46c 2789
239b14b3 2790 if (last_ptr) {
4366211c 2791 if (*last_ptr) {
239b14b3 2792 hint_byte = *last_ptr;
4366211c
CM
2793 last_wanted = *last_ptr;
2794 } else
239b14b3 2795 empty_size += empty_cluster;
4366211c
CM
2796 } else {
2797 empty_cluster = 0;
239b14b3 2798 }
a061fc8d 2799 search_start = max(search_start, first_logical_byte(root, 0));
239b14b3 2800 search_start = max(search_start, hint_byte);
0b86a832 2801
42e70e7a 2802 if (last_wanted && search_start != last_wanted) {
4366211c 2803 last_wanted = 0;
42e70e7a
CM
2804 empty_size += empty_cluster;
2805 }
4366211c 2806
42e70e7a 2807 total_needed += empty_size;
80eb234a 2808 block_group = btrfs_lookup_block_group(root->fs_info, search_start);
d899e052
YZ
2809 if (!block_group)
2810 block_group = btrfs_lookup_first_block_group(root->fs_info,
2811 search_start);
80eb234a 2812 space_info = __find_space_info(root->fs_info, data);
0f9dd46c 2813
80eb234a
JB
2814 down_read(&space_info->groups_sem);
2815 while (1) {
2816 struct btrfs_free_space *free_space;
0f9dd46c 2817 /*
80eb234a
JB
2818 * the only way this happens if our hint points to a block
2819 * group thats not of the proper type, while looping this
2820 * should never happen
0f9dd46c 2821 */
8a1413a2
CM
2822 if (empty_size)
2823 extra_loop = 1;
2824
42e70e7a
CM
2825 if (!block_group)
2826 goto new_group_no_lock;
2827
ea6a478e
JB
2828 if (unlikely(!block_group->cached)) {
2829 mutex_lock(&block_group->cache_mutex);
2830 ret = cache_block_group(root, block_group);
2831 mutex_unlock(&block_group->cache_mutex);
2832 if (ret)
2833 break;
2834 }
2835
25179201 2836 mutex_lock(&block_group->alloc_mutex);
80eb234a 2837 if (unlikely(!block_group_bits(block_group, data)))
0f9dd46c 2838 goto new_group;
0f9dd46c 2839
ea6a478e 2840 if (unlikely(block_group->ro))
80eb234a 2841 goto new_group;
0f9dd46c 2842
80eb234a
JB
2843 free_space = btrfs_find_free_space(block_group, search_start,
2844 total_needed);
2845 if (free_space) {
2846 u64 start = block_group->key.objectid;
2847 u64 end = block_group->key.objectid +
0f9dd46c 2848 block_group->key.offset;
239b14b3 2849
80eb234a 2850 search_start = stripe_align(root, free_space->offset);
0f9dd46c 2851
80eb234a
JB
2852 /* move on to the next group */
2853 if (search_start + num_bytes >= search_end)
2854 goto new_group;
e37c9e69 2855
80eb234a
JB
2856 /* move on to the next group */
2857 if (search_start + num_bytes > end)
2858 goto new_group;
2859
4366211c 2860 if (last_wanted && search_start != last_wanted) {
3b7885bf 2861 total_needed += empty_cluster;
8a1413a2 2862 empty_size += empty_cluster;
4366211c 2863 last_wanted = 0;
3b7885bf
CM
2864 /*
2865 * if search_start is still in this block group
2866 * then we just re-search this block group
2867 */
2868 if (search_start >= start &&
2869 search_start < end) {
2870 mutex_unlock(&block_group->alloc_mutex);
2871 continue;
2872 }
2873
2874 /* else we go to the next block group */
2875 goto new_group;
2876 }
2877
80eb234a
JB
2878 if (exclude_nr > 0 &&
2879 (search_start + num_bytes > exclude_start &&
2880 search_start < exclude_start + exclude_nr)) {
2881 search_start = exclude_start + exclude_nr;
2882 /*
2883 * if search_start is still in this block group
2884 * then we just re-search this block group
2885 */
2886 if (search_start >= start &&
25179201
JB
2887 search_start < end) {
2888 mutex_unlock(&block_group->alloc_mutex);
4366211c 2889 last_wanted = 0;
80eb234a 2890 continue;
25179201 2891 }
80eb234a
JB
2892
2893 /* else we go to the next block group */
2894 goto new_group;
2895 }
2896
2897 ins->objectid = search_start;
2898 ins->offset = num_bytes;
25179201
JB
2899
2900 btrfs_remove_free_space_lock(block_group, search_start,
2901 num_bytes);
80eb234a 2902 /* we are all good, lets return */
25179201 2903 mutex_unlock(&block_group->alloc_mutex);
80eb234a 2904 break;
0f9dd46c 2905 }
80eb234a 2906new_group:
42e70e7a 2907 mutex_unlock(&block_group->alloc_mutex);
d2fb3437
YZ
2908 put_block_group(block_group);
2909 block_group = NULL;
42e70e7a 2910new_group_no_lock:
f5a31e16
CM
2911 /* don't try to compare new allocations against the
2912 * last allocation any more
2913 */
4366211c 2914 last_wanted = 0;
f5a31e16 2915
80eb234a
JB
2916 /*
2917 * Here's how this works.
2918 * loop == 0: we were searching a block group via a hint
2919 * and didn't find anything, so we start at
2920 * the head of the block groups and keep searching
2921 * loop == 1: we're searching through all of the block groups
2922 * if we hit the head again we have searched
2923 * all of the block groups for this space and we
2924 * need to try and allocate, if we cant error out.
2925 * loop == 2: we allocated more space and are looping through
2926 * all of the block groups again.
2927 */
2928 if (loop == 0) {
2929 head = &space_info->block_groups;
2930 cur = head->next;
80eb234a
JB
2931 loop++;
2932 } else if (loop == 1 && cur == head) {
f5a31e16
CM
2933 int keep_going;
2934
2935 /* at this point we give up on the empty_size
2936 * allocations and just try to allocate the min
2937 * space.
2938 *
2939 * The extra_loop field was set if an empty_size
2940 * allocation was attempted above, and if this
2941 * is try we need to try the loop again without
2942 * the additional empty_size.
2943 */
5b7c3fcc
CM
2944 total_needed -= empty_size;
2945 empty_size = 0;
f5a31e16
CM
2946 keep_going = extra_loop;
2947 loop++;
42e70e7a 2948
80eb234a
JB
2949 if (allowed_chunk_alloc && !chunk_alloc_done) {
2950 up_read(&space_info->groups_sem);
2951 ret = do_chunk_alloc(trans, root, num_bytes +
2952 2 * 1024 * 1024, data, 1);
80eb234a 2953 down_read(&space_info->groups_sem);
2ed6d664
CM
2954 if (ret < 0)
2955 goto loop_check;
80eb234a 2956 head = &space_info->block_groups;
f5a31e16
CM
2957 /*
2958 * we've allocated a new chunk, keep
2959 * trying
2960 */
2961 keep_going = 1;
80eb234a
JB
2962 chunk_alloc_done = 1;
2963 } else if (!allowed_chunk_alloc) {
2964 space_info->force_alloc = 1;
f5a31e16 2965 }
2ed6d664 2966loop_check:
f5a31e16
CM
2967 if (keep_going) {
2968 cur = head->next;
2969 extra_loop = 0;
80eb234a
JB
2970 } else {
2971 break;
2972 }
2973 } else if (cur == head) {
2974 break;
0f9dd46c 2975 }
0b86a832 2976
80eb234a
JB
2977 block_group = list_entry(cur, struct btrfs_block_group_cache,
2978 list);
d2fb3437
YZ
2979 atomic_inc(&block_group->count);
2980
80eb234a
JB
2981 search_start = block_group->key.objectid;
2982 cur = cur->next;
f2654de4 2983 }
0b86a832 2984
80eb234a
JB
2985 /* we found what we needed */
2986 if (ins->objectid) {
2987 if (!(data & BTRFS_BLOCK_GROUP_DATA))
d2fb3437 2988 trans->block_group = block_group->key.objectid;
0f9dd46c 2989
80eb234a
JB
2990 if (last_ptr)
2991 *last_ptr = ins->objectid + ins->offset;
2992 ret = 0;
2993 } else if (!ret) {
d397712b
CM
2994 printk(KERN_ERR "btrfs searching for %llu bytes, "
2995 "num_bytes %llu, loop %d, allowed_alloc %d\n",
2996 (unsigned long long)total_needed,
2997 (unsigned long long)num_bytes,
4ce4cb52 2998 loop, allowed_chunk_alloc);
80eb234a 2999 ret = -ENOSPC;
be744175 3000 }
d2fb3437
YZ
3001 if (block_group)
3002 put_block_group(block_group);
be744175 3003
80eb234a 3004 up_read(&space_info->groups_sem);
0f70abe2 3005 return ret;
fec577fb 3006}
ec44a35c 3007
0f9dd46c
JB
3008static void dump_space_info(struct btrfs_space_info *info, u64 bytes)
3009{
3010 struct btrfs_block_group_cache *cache;
0f9dd46c 3011
d397712b
CM
3012 printk(KERN_INFO "space_info has %llu free, is %sfull\n",
3013 (unsigned long long)(info->total_bytes - info->bytes_used -
3014 info->bytes_pinned - info->bytes_reserved),
3015 (info->full) ? "" : "not ");
0f9dd46c 3016
80eb234a 3017 down_read(&info->groups_sem);
c6e30871 3018 list_for_each_entry(cache, &info->block_groups, list) {
0f9dd46c 3019 spin_lock(&cache->lock);
d397712b
CM
3020 printk(KERN_INFO "block group %llu has %llu bytes, %llu used "
3021 "%llu pinned %llu reserved\n",
3022 (unsigned long long)cache->key.objectid,
3023 (unsigned long long)cache->key.offset,
3024 (unsigned long long)btrfs_block_group_used(&cache->item),
3025 (unsigned long long)cache->pinned,
3026 (unsigned long long)cache->reserved);
0f9dd46c
JB
3027 btrfs_dump_free_space(cache, bytes);
3028 spin_unlock(&cache->lock);
3029 }
80eb234a 3030 up_read(&info->groups_sem);
0f9dd46c 3031}
e8569813 3032
e6dcd2dc
CM
3033static int __btrfs_reserve_extent(struct btrfs_trans_handle *trans,
3034 struct btrfs_root *root,
3035 u64 num_bytes, u64 min_alloc_size,
3036 u64 empty_size, u64 hint_byte,
3037 u64 search_end, struct btrfs_key *ins,
3038 u64 data)
fec577fb
CM
3039{
3040 int ret;
fbdc762b 3041 u64 search_start = 0;
8790d502 3042 u64 alloc_profile;
1261ec42 3043 struct btrfs_fs_info *info = root->fs_info;
925baedd 3044
6324fbf3 3045 if (data) {
8790d502 3046 alloc_profile = info->avail_data_alloc_bits &
d397712b 3047 info->data_alloc_profile;
8790d502 3048 data = BTRFS_BLOCK_GROUP_DATA | alloc_profile;
6324fbf3 3049 } else if (root == root->fs_info->chunk_root) {
8790d502 3050 alloc_profile = info->avail_system_alloc_bits &
d397712b 3051 info->system_alloc_profile;
8790d502 3052 data = BTRFS_BLOCK_GROUP_SYSTEM | alloc_profile;
6324fbf3 3053 } else {
8790d502 3054 alloc_profile = info->avail_metadata_alloc_bits &
d397712b 3055 info->metadata_alloc_profile;
8790d502 3056 data = BTRFS_BLOCK_GROUP_METADATA | alloc_profile;
6324fbf3 3057 }
98d20f67 3058again:
2b82032c 3059 data = btrfs_reduce_alloc_profile(root, data);
0ef3e66b
CM
3060 /*
3061 * the only place that sets empty_size is btrfs_realloc_node, which
3062 * is not called recursively on allocations
3063 */
3064 if (empty_size || root->ref_cows) {
593060d7 3065 if (!(data & BTRFS_BLOCK_GROUP_METADATA)) {
6324fbf3 3066 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
0ef3e66b
CM
3067 2 * 1024 * 1024,
3068 BTRFS_BLOCK_GROUP_METADATA |
3069 (info->metadata_alloc_profile &
3070 info->avail_metadata_alloc_bits), 0);
6324fbf3
CM
3071 }
3072 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
0ef3e66b 3073 num_bytes + 2 * 1024 * 1024, data, 0);
6324fbf3 3074 }
0b86a832 3075
db94535d
CM
3076 WARN_ON(num_bytes < root->sectorsize);
3077 ret = find_free_extent(trans, root, num_bytes, empty_size,
3078 search_start, search_end, hint_byte, ins,
26b8003f
CM
3079 trans->alloc_exclude_start,
3080 trans->alloc_exclude_nr, data);
3b951516 3081
98d20f67
CM
3082 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
3083 num_bytes = num_bytes >> 1;
0f9dd46c 3084 num_bytes = num_bytes & ~(root->sectorsize - 1);
98d20f67 3085 num_bytes = max(num_bytes, min_alloc_size);
0ef3e66b
CM
3086 do_chunk_alloc(trans, root->fs_info->extent_root,
3087 num_bytes, data, 1);
98d20f67
CM
3088 goto again;
3089 }
ec44a35c 3090 if (ret) {
0f9dd46c
JB
3091 struct btrfs_space_info *sinfo;
3092
3093 sinfo = __find_space_info(root->fs_info, data);
d397712b
CM
3094 printk(KERN_ERR "btrfs allocation failed flags %llu, "
3095 "wanted %llu\n", (unsigned long long)data,
3096 (unsigned long long)num_bytes);
0f9dd46c 3097 dump_space_info(sinfo, num_bytes);
925baedd 3098 BUG();
925baedd 3099 }
0f9dd46c
JB
3100
3101 return ret;
e6dcd2dc
CM
3102}
3103
65b51a00
CM
3104int btrfs_free_reserved_extent(struct btrfs_root *root, u64 start, u64 len)
3105{
0f9dd46c 3106 struct btrfs_block_group_cache *cache;
1f3c79a2 3107 int ret = 0;
0f9dd46c 3108
0f9dd46c
JB
3109 cache = btrfs_lookup_block_group(root->fs_info, start);
3110 if (!cache) {
d397712b
CM
3111 printk(KERN_ERR "Unable to find block group for %llu\n",
3112 (unsigned long long)start);
0f9dd46c
JB
3113 return -ENOSPC;
3114 }
1f3c79a2
LH
3115
3116 ret = btrfs_discard_extent(root, start, len);
3117
0f9dd46c 3118 btrfs_add_free_space(cache, start, len);
d2fb3437 3119 put_block_group(cache);
1a40e23b 3120 update_reserved_extents(root, start, len, 0);
1f3c79a2
LH
3121
3122 return ret;
65b51a00
CM
3123}
3124
e6dcd2dc
CM
3125int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
3126 struct btrfs_root *root,
3127 u64 num_bytes, u64 min_alloc_size,
3128 u64 empty_size, u64 hint_byte,
3129 u64 search_end, struct btrfs_key *ins,
3130 u64 data)
3131{
3132 int ret;
e6dcd2dc
CM
3133 ret = __btrfs_reserve_extent(trans, root, num_bytes, min_alloc_size,
3134 empty_size, hint_byte, search_end, ins,
3135 data);
e8569813 3136 update_reserved_extents(root, ins->objectid, ins->offset, 1);
e6dcd2dc
CM
3137 return ret;
3138}
3139
3140static int __btrfs_alloc_reserved_extent(struct btrfs_trans_handle *trans,
31840ae1 3141 struct btrfs_root *root, u64 parent,
e6dcd2dc 3142 u64 root_objectid, u64 ref_generation,
3bb1a1bc 3143 u64 owner, struct btrfs_key *ins)
e6dcd2dc
CM
3144{
3145 int ret;
3146 int pending_ret;
3147 u64 super_used;
3148 u64 root_used;
3149 u64 num_bytes = ins->offset;
3150 u32 sizes[2];
3151 struct btrfs_fs_info *info = root->fs_info;
3152 struct btrfs_root *extent_root = info->extent_root;
3153 struct btrfs_extent_item *extent_item;
3154 struct btrfs_extent_ref *ref;
3155 struct btrfs_path *path;
3156 struct btrfs_key keys[2];
fec577fb 3157
31840ae1
ZY
3158 if (parent == 0)
3159 parent = ins->objectid;
3160
58176a96 3161 /* block accounting for super block */
75eff68e 3162 spin_lock(&info->delalloc_lock);
db94535d
CM
3163 super_used = btrfs_super_bytes_used(&info->super_copy);
3164 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
26b8003f 3165
58176a96 3166 /* block accounting for root item */
db94535d
CM
3167 root_used = btrfs_root_used(&root->root_item);
3168 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
34bf63c4 3169 spin_unlock(&info->delalloc_lock);
58176a96 3170
26b8003f 3171 if (root == extent_root) {
31840ae1
ZY
3172 struct pending_extent_op *extent_op;
3173
3174 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
3175 BUG_ON(!extent_op);
3176
3177 extent_op->type = PENDING_EXTENT_INSERT;
3178 extent_op->bytenr = ins->objectid;
3179 extent_op->num_bytes = ins->offset;
3180 extent_op->parent = parent;
3181 extent_op->orig_parent = 0;
3182 extent_op->generation = ref_generation;
3183 extent_op->orig_generation = 0;
3184 extent_op->level = (int)owner;
f3465ca4
JB
3185 INIT_LIST_HEAD(&extent_op->list);
3186 extent_op->del = 0;
31840ae1 3187
25179201 3188 mutex_lock(&root->fs_info->extent_ins_mutex);
1a5bc167
CM
3189 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
3190 ins->objectid + ins->offset - 1,
25179201 3191 EXTENT_WRITEBACK, GFP_NOFS);
31840ae1
ZY
3192 set_state_private(&root->fs_info->extent_ins,
3193 ins->objectid, (unsigned long)extent_op);
25179201 3194 mutex_unlock(&root->fs_info->extent_ins_mutex);
26b8003f
CM
3195 goto update_block;
3196 }
3197
47e4bb98 3198 memcpy(&keys[0], ins, sizeof(*ins));
47e4bb98
CM
3199 keys[1].objectid = ins->objectid;
3200 keys[1].type = BTRFS_EXTENT_REF_KEY;
31840ae1 3201 keys[1].offset = parent;
47e4bb98
CM
3202 sizes[0] = sizeof(*extent_item);
3203 sizes[1] = sizeof(*ref);
7bb86316
CM
3204
3205 path = btrfs_alloc_path();
3206 BUG_ON(!path);
47e4bb98
CM
3207
3208 ret = btrfs_insert_empty_items(trans, extent_root, path, keys,
3209 sizes, 2);
ccd467d6 3210 BUG_ON(ret);
0f9dd46c 3211
47e4bb98
CM
3212 extent_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3213 struct btrfs_extent_item);
3214 btrfs_set_extent_refs(path->nodes[0], extent_item, 1);
3215 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
3216 struct btrfs_extent_ref);
3217
3218 btrfs_set_ref_root(path->nodes[0], ref, root_objectid);
3219 btrfs_set_ref_generation(path->nodes[0], ref, ref_generation);
3220 btrfs_set_ref_objectid(path->nodes[0], ref, owner);
31840ae1 3221 btrfs_set_ref_num_refs(path->nodes[0], ref, 1);
47e4bb98
CM
3222
3223 btrfs_mark_buffer_dirty(path->nodes[0]);
3224
3225 trans->alloc_exclude_start = 0;
3226 trans->alloc_exclude_nr = 0;
7bb86316 3227 btrfs_free_path(path);
87ef2bb4
CM
3228 finish_current_insert(trans, extent_root, 0);
3229 pending_ret = del_pending_extents(trans, extent_root, 0);
f510cfec 3230
925baedd
CM
3231 if (ret)
3232 goto out;
e37c9e69 3233 if (pending_ret) {
925baedd
CM
3234 ret = pending_ret;
3235 goto out;
e37c9e69 3236 }
26b8003f
CM
3237
3238update_block:
d397712b
CM
3239 ret = update_block_group(trans, root, ins->objectid,
3240 ins->offset, 1, 0);
f5947066 3241 if (ret) {
d397712b
CM
3242 printk(KERN_ERR "btrfs update block group failed for %llu "
3243 "%llu\n", (unsigned long long)ins->objectid,
3244 (unsigned long long)ins->offset);
f5947066
CM
3245 BUG();
3246 }
925baedd 3247out:
e6dcd2dc
CM
3248 return ret;
3249}
3250
3251int btrfs_alloc_reserved_extent(struct btrfs_trans_handle *trans,
31840ae1 3252 struct btrfs_root *root, u64 parent,
e6dcd2dc 3253 u64 root_objectid, u64 ref_generation,
3bb1a1bc 3254 u64 owner, struct btrfs_key *ins)
e6dcd2dc
CM
3255{
3256 int ret;
1c2308f8
CM
3257
3258 if (root_objectid == BTRFS_TREE_LOG_OBJECTID)
3259 return 0;
3bb1a1bc
YZ
3260 ret = __btrfs_alloc_reserved_extent(trans, root, parent, root_objectid,
3261 ref_generation, owner, ins);
e8569813 3262 update_reserved_extents(root, ins->objectid, ins->offset, 0);
e6dcd2dc
CM
3263 return ret;
3264}
e02119d5
CM
3265
3266/*
3267 * this is used by the tree logging recovery code. It records that
3268 * an extent has been allocated and makes sure to clear the free
3269 * space cache bits as well
3270 */
3271int btrfs_alloc_logged_extent(struct btrfs_trans_handle *trans,
31840ae1 3272 struct btrfs_root *root, u64 parent,
e02119d5 3273 u64 root_objectid, u64 ref_generation,
3bb1a1bc 3274 u64 owner, struct btrfs_key *ins)
e02119d5
CM
3275{
3276 int ret;
3277 struct btrfs_block_group_cache *block_group;
3278
e02119d5 3279 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
ea6a478e 3280 mutex_lock(&block_group->cache_mutex);
e02119d5 3281 cache_block_group(root, block_group);
ea6a478e 3282 mutex_unlock(&block_group->cache_mutex);
e02119d5 3283
ea6a478e
JB
3284 ret = btrfs_remove_free_space(block_group, ins->objectid,
3285 ins->offset);
0f9dd46c 3286 BUG_ON(ret);
d2fb3437 3287 put_block_group(block_group);
3bb1a1bc
YZ
3288 ret = __btrfs_alloc_reserved_extent(trans, root, parent, root_objectid,
3289 ref_generation, owner, ins);
e02119d5
CM
3290 return ret;
3291}
3292
e6dcd2dc
CM
3293/*
3294 * finds a free extent and does all the dirty work required for allocation
3295 * returns the key for the extent through ins, and a tree buffer for
3296 * the first block of the extent through buf.
3297 *
3298 * returns 0 if everything worked, non-zero otherwise.
3299 */
3300int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
3301 struct btrfs_root *root,
31840ae1 3302 u64 num_bytes, u64 parent, u64 min_alloc_size,
e6dcd2dc 3303 u64 root_objectid, u64 ref_generation,
3bb1a1bc 3304 u64 owner_objectid, u64 empty_size, u64 hint_byte,
e6dcd2dc
CM
3305 u64 search_end, struct btrfs_key *ins, u64 data)
3306{
3307 int ret;
3308
e6dcd2dc
CM
3309 ret = __btrfs_reserve_extent(trans, root, num_bytes,
3310 min_alloc_size, empty_size, hint_byte,
3311 search_end, ins, data);
3312 BUG_ON(ret);
d00aff00 3313 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
31840ae1
ZY
3314 ret = __btrfs_alloc_reserved_extent(trans, root, parent,
3315 root_objectid, ref_generation,
3bb1a1bc 3316 owner_objectid, ins);
d00aff00 3317 BUG_ON(ret);
e6dcd2dc 3318
e8569813
ZY
3319 } else {
3320 update_reserved_extents(root, ins->objectid, ins->offset, 1);
d00aff00 3321 }
925baedd 3322 return ret;
fec577fb 3323}
65b51a00
CM
3324
3325struct extent_buffer *btrfs_init_new_buffer(struct btrfs_trans_handle *trans,
3326 struct btrfs_root *root,
3327 u64 bytenr, u32 blocksize)
3328{
3329 struct extent_buffer *buf;
3330
3331 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
3332 if (!buf)
3333 return ERR_PTR(-ENOMEM);
3334 btrfs_set_header_generation(buf, trans->transid);
3335 btrfs_tree_lock(buf);
3336 clean_tree_block(trans, root, buf);
3337 btrfs_set_buffer_uptodate(buf);
d0c803c4
CM
3338 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
3339 set_extent_dirty(&root->dirty_log_pages, buf->start,
3340 buf->start + buf->len - 1, GFP_NOFS);
3341 } else {
3342 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
65b51a00 3343 buf->start + buf->len - 1, GFP_NOFS);
d0c803c4 3344 }
65b51a00
CM
3345 trans->blocks_used++;
3346 return buf;
3347}
3348
fec577fb
CM
3349/*
3350 * helper function to allocate a block for a given tree
3351 * returns the tree buffer or NULL.
3352 */
5f39d397 3353struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
7bb86316 3354 struct btrfs_root *root,
31840ae1 3355 u32 blocksize, u64 parent,
7bb86316
CM
3356 u64 root_objectid,
3357 u64 ref_generation,
7bb86316
CM
3358 int level,
3359 u64 hint,
5f39d397 3360 u64 empty_size)
fec577fb 3361{
e2fa7227 3362 struct btrfs_key ins;
fec577fb 3363 int ret;
5f39d397 3364 struct extent_buffer *buf;
fec577fb 3365
31840ae1 3366 ret = btrfs_alloc_extent(trans, root, blocksize, parent, blocksize,
3bb1a1bc 3367 root_objectid, ref_generation, level,
31840ae1 3368 empty_size, hint, (u64)-1, &ins, 0);
fec577fb 3369 if (ret) {
54aa1f4d
CM
3370 BUG_ON(ret > 0);
3371 return ERR_PTR(ret);
fec577fb 3372 }
55c69072 3373
65b51a00 3374 buf = btrfs_init_new_buffer(trans, root, ins.objectid, blocksize);
fec577fb
CM
3375 return buf;
3376}
a28ec197 3377
e02119d5
CM
3378int btrfs_drop_leaf_ref(struct btrfs_trans_handle *trans,
3379 struct btrfs_root *root, struct extent_buffer *leaf)
6407bf6d 3380{
7bb86316
CM
3381 u64 leaf_owner;
3382 u64 leaf_generation;
5f39d397 3383 struct btrfs_key key;
6407bf6d
CM
3384 struct btrfs_file_extent_item *fi;
3385 int i;
3386 int nritems;
3387 int ret;
3388
5f39d397
CM
3389 BUG_ON(!btrfs_is_leaf(leaf));
3390 nritems = btrfs_header_nritems(leaf);
7bb86316
CM
3391 leaf_owner = btrfs_header_owner(leaf);
3392 leaf_generation = btrfs_header_generation(leaf);
3393
6407bf6d 3394 for (i = 0; i < nritems; i++) {
db94535d 3395 u64 disk_bytenr;
e34a5b4f 3396 cond_resched();
5f39d397
CM
3397
3398 btrfs_item_key_to_cpu(leaf, &key, i);
3399 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
6407bf6d
CM
3400 continue;
3401 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
5f39d397
CM
3402 if (btrfs_file_extent_type(leaf, fi) ==
3403 BTRFS_FILE_EXTENT_INLINE)
236454df 3404 continue;
6407bf6d
CM
3405 /*
3406 * FIXME make sure to insert a trans record that
3407 * repeats the snapshot del on crash
3408 */
db94535d
CM
3409 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
3410 if (disk_bytenr == 0)
3a686375 3411 continue;
4a096752 3412
925baedd 3413 ret = __btrfs_free_extent(trans, root, disk_bytenr,
7bb86316 3414 btrfs_file_extent_disk_num_bytes(leaf, fi),
31840ae1 3415 leaf->start, leaf_owner, leaf_generation,
3bb1a1bc 3416 key.objectid, 0);
31840ae1 3417 BUG_ON(ret);
2dd3e67b
CM
3418
3419 atomic_inc(&root->fs_info->throttle_gen);
3420 wake_up(&root->fs_info->transaction_throttle);
3421 cond_resched();
6407bf6d
CM
3422 }
3423 return 0;
3424}
3425
d397712b 3426static noinline int cache_drop_leaf_ref(struct btrfs_trans_handle *trans,
e02119d5
CM
3427 struct btrfs_root *root,
3428 struct btrfs_leaf_ref *ref)
31153d81
YZ
3429{
3430 int i;
3431 int ret;
3432 struct btrfs_extent_info *info = ref->extents;
3433
31153d81 3434 for (i = 0; i < ref->nritems; i++) {
31840ae1
ZY
3435 ret = __btrfs_free_extent(trans, root, info->bytenr,
3436 info->num_bytes, ref->bytenr,
3437 ref->owner, ref->generation,
3bb1a1bc 3438 info->objectid, 0);
2dd3e67b
CM
3439
3440 atomic_inc(&root->fs_info->throttle_gen);
3441 wake_up(&root->fs_info->transaction_throttle);
3442 cond_resched();
3443
31153d81
YZ
3444 BUG_ON(ret);
3445 info++;
3446 }
31153d81
YZ
3447
3448 return 0;
3449}
3450
d397712b
CM
3451static int drop_snap_lookup_refcount(struct btrfs_root *root, u64 start,
3452 u64 len, u32 *refs)
333db94c 3453{
017e5369 3454 int ret;
f87f057b 3455
31840ae1 3456 ret = btrfs_lookup_extent_ref(NULL, root, start, len, refs);
f87f057b
CM
3457 BUG_ON(ret);
3458
d397712b 3459#if 0 /* some debugging code in case we see problems here */
f87f057b
CM
3460 /* if the refs count is one, it won't get increased again. But
3461 * if the ref count is > 1, someone may be decreasing it at
3462 * the same time we are.
3463 */
3464 if (*refs != 1) {
3465 struct extent_buffer *eb = NULL;
3466 eb = btrfs_find_create_tree_block(root, start, len);
3467 if (eb)
3468 btrfs_tree_lock(eb);
3469
3470 mutex_lock(&root->fs_info->alloc_mutex);
3471 ret = lookup_extent_ref(NULL, root, start, len, refs);
3472 BUG_ON(ret);
3473 mutex_unlock(&root->fs_info->alloc_mutex);
3474
3475 if (eb) {
3476 btrfs_tree_unlock(eb);
3477 free_extent_buffer(eb);
3478 }
3479 if (*refs == 1) {
d397712b
CM
3480 printk(KERN_ERR "btrfs block %llu went down to one "
3481 "during drop_snap\n", (unsigned long long)start);
f87f057b
CM
3482 }
3483
3484 }
3485#endif
3486
e7a84565 3487 cond_resched();
017e5369 3488 return ret;
333db94c
CM
3489}
3490
9aca1d51
CM
3491/*
3492 * helper function for drop_snapshot, this walks down the tree dropping ref
3493 * counts as it goes.
3494 */
d397712b 3495static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
98ed5174
CM
3496 struct btrfs_root *root,
3497 struct btrfs_path *path, int *level)
20524f02 3498{
7bb86316
CM
3499 u64 root_owner;
3500 u64 root_gen;
3501 u64 bytenr;
ca7a79ad 3502 u64 ptr_gen;
5f39d397
CM
3503 struct extent_buffer *next;
3504 struct extent_buffer *cur;
7bb86316 3505 struct extent_buffer *parent;
31153d81 3506 struct btrfs_leaf_ref *ref;
db94535d 3507 u32 blocksize;
20524f02
CM
3508 int ret;
3509 u32 refs;
3510
5caf2a00
CM
3511 WARN_ON(*level < 0);
3512 WARN_ON(*level >= BTRFS_MAX_LEVEL);
333db94c 3513 ret = drop_snap_lookup_refcount(root, path->nodes[*level]->start,
db94535d 3514 path->nodes[*level]->len, &refs);
20524f02
CM
3515 BUG_ON(ret);
3516 if (refs > 1)
3517 goto out;
e011599b 3518
9aca1d51
CM
3519 /*
3520 * walk down to the last node level and free all the leaves
3521 */
d397712b 3522 while (*level >= 0) {
5caf2a00
CM
3523 WARN_ON(*level < 0);
3524 WARN_ON(*level >= BTRFS_MAX_LEVEL);
20524f02 3525 cur = path->nodes[*level];
e011599b 3526
5f39d397 3527 if (btrfs_header_level(cur) != *level)
2c90e5d6 3528 WARN_ON(1);
e011599b 3529
7518a238 3530 if (path->slots[*level] >=
5f39d397 3531 btrfs_header_nritems(cur))
20524f02 3532 break;
6407bf6d 3533 if (*level == 0) {
e02119d5 3534 ret = btrfs_drop_leaf_ref(trans, root, cur);
6407bf6d
CM
3535 BUG_ON(ret);
3536 break;
3537 }
db94535d 3538 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
ca7a79ad 3539 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
db94535d 3540 blocksize = btrfs_level_size(root, *level - 1);
925baedd 3541
333db94c 3542 ret = drop_snap_lookup_refcount(root, bytenr, blocksize, &refs);
6407bf6d
CM
3543 BUG_ON(ret);
3544 if (refs != 1) {
7bb86316
CM
3545 parent = path->nodes[*level];
3546 root_owner = btrfs_header_owner(parent);
3547 root_gen = btrfs_header_generation(parent);
20524f02 3548 path->slots[*level]++;
f87f057b 3549
925baedd 3550 ret = __btrfs_free_extent(trans, root, bytenr,
31840ae1 3551 blocksize, parent->start,
3bb1a1bc
YZ
3552 root_owner, root_gen,
3553 *level - 1, 1);
20524f02 3554 BUG_ON(ret);
18e35e0a
CM
3555
3556 atomic_inc(&root->fs_info->throttle_gen);
3557 wake_up(&root->fs_info->transaction_throttle);
2dd3e67b 3558 cond_resched();
18e35e0a 3559
20524f02
CM
3560 continue;
3561 }
f87f057b
CM
3562 /*
3563 * at this point, we have a single ref, and since the
3564 * only place referencing this extent is a dead root
3565 * the reference count should never go higher.
3566 * So, we don't need to check it again
3567 */
31153d81 3568 if (*level == 1) {
017e5369 3569 ref = btrfs_lookup_leaf_ref(root, bytenr);
1a40e23b
ZY
3570 if (ref && ref->generation != ptr_gen) {
3571 btrfs_free_leaf_ref(root, ref);
3572 ref = NULL;
3573 }
31153d81 3574 if (ref) {
e02119d5 3575 ret = cache_drop_leaf_ref(trans, root, ref);
31153d81
YZ
3576 BUG_ON(ret);
3577 btrfs_remove_leaf_ref(root, ref);
bcc63abb 3578 btrfs_free_leaf_ref(root, ref);
31153d81
YZ
3579 *level = 0;
3580 break;
3581 }
3582 }
db94535d 3583 next = btrfs_find_tree_block(root, bytenr, blocksize);
1259ab75 3584 if (!next || !btrfs_buffer_uptodate(next, ptr_gen)) {
5f39d397 3585 free_extent_buffer(next);
333db94c 3586
ca7a79ad
CM
3587 next = read_tree_block(root, bytenr, blocksize,
3588 ptr_gen);
e7a84565 3589 cond_resched();
f87f057b
CM
3590#if 0
3591 /*
3592 * this is a debugging check and can go away
3593 * the ref should never go all the way down to 1
3594 * at this point
3595 */
e6dcd2dc
CM
3596 ret = lookup_extent_ref(NULL, root, bytenr, blocksize,
3597 &refs);
e9d0b13b 3598 BUG_ON(ret);
f87f057b
CM
3599 WARN_ON(refs != 1);
3600#endif
e9d0b13b 3601 }
5caf2a00 3602 WARN_ON(*level <= 0);
83e15a28 3603 if (path->nodes[*level-1])
5f39d397 3604 free_extent_buffer(path->nodes[*level-1]);
20524f02 3605 path->nodes[*level-1] = next;
5f39d397 3606 *level = btrfs_header_level(next);
20524f02 3607 path->slots[*level] = 0;
2dd3e67b 3608 cond_resched();
20524f02
CM
3609 }
3610out:
5caf2a00
CM
3611 WARN_ON(*level < 0);
3612 WARN_ON(*level >= BTRFS_MAX_LEVEL);
7bb86316
CM
3613
3614 if (path->nodes[*level] == root->node) {
7bb86316 3615 parent = path->nodes[*level];
31153d81 3616 bytenr = path->nodes[*level]->start;
7bb86316
CM
3617 } else {
3618 parent = path->nodes[*level + 1];
31153d81 3619 bytenr = btrfs_node_blockptr(parent, path->slots[*level + 1]);
7bb86316
CM
3620 }
3621
31153d81
YZ
3622 blocksize = btrfs_level_size(root, *level);
3623 root_owner = btrfs_header_owner(parent);
7bb86316 3624 root_gen = btrfs_header_generation(parent);
31153d81
YZ
3625
3626 ret = __btrfs_free_extent(trans, root, bytenr, blocksize,
31840ae1 3627 parent->start, root_owner, root_gen,
3bb1a1bc 3628 *level, 1);
5f39d397 3629 free_extent_buffer(path->nodes[*level]);
20524f02
CM
3630 path->nodes[*level] = NULL;
3631 *level += 1;
3632 BUG_ON(ret);
f87f057b 3633
e7a84565 3634 cond_resched();
20524f02
CM
3635 return 0;
3636}
3637
f82d02d9
YZ
3638/*
3639 * helper function for drop_subtree, this function is similar to
3640 * walk_down_tree. The main difference is that it checks reference
3641 * counts while tree blocks are locked.
3642 */
d397712b 3643static noinline int walk_down_subtree(struct btrfs_trans_handle *trans,
f82d02d9
YZ
3644 struct btrfs_root *root,
3645 struct btrfs_path *path, int *level)
3646{
3647 struct extent_buffer *next;
3648 struct extent_buffer *cur;
3649 struct extent_buffer *parent;
3650 u64 bytenr;
3651 u64 ptr_gen;
3652 u32 blocksize;
3653 u32 refs;
3654 int ret;
3655
3656 cur = path->nodes[*level];
3657 ret = btrfs_lookup_extent_ref(trans, root, cur->start, cur->len,
3658 &refs);
3659 BUG_ON(ret);
3660 if (refs > 1)
3661 goto out;
3662
3663 while (*level >= 0) {
3664 cur = path->nodes[*level];
3665 if (*level == 0) {
3666 ret = btrfs_drop_leaf_ref(trans, root, cur);
3667 BUG_ON(ret);
3668 clean_tree_block(trans, root, cur);
3669 break;
3670 }
3671 if (path->slots[*level] >= btrfs_header_nritems(cur)) {
3672 clean_tree_block(trans, root, cur);
3673 break;
3674 }
3675
3676 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
3677 blocksize = btrfs_level_size(root, *level - 1);
3678 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
3679
3680 next = read_tree_block(root, bytenr, blocksize, ptr_gen);
3681 btrfs_tree_lock(next);
3682
3683 ret = btrfs_lookup_extent_ref(trans, root, bytenr, blocksize,
3684 &refs);
3685 BUG_ON(ret);
3686 if (refs > 1) {
3687 parent = path->nodes[*level];
3688 ret = btrfs_free_extent(trans, root, bytenr,
3689 blocksize, parent->start,
3690 btrfs_header_owner(parent),
3691 btrfs_header_generation(parent),
3692 *level - 1, 1);
3693 BUG_ON(ret);
3694 path->slots[*level]++;
3695 btrfs_tree_unlock(next);
3696 free_extent_buffer(next);
3697 continue;
3698 }
3699
3700 *level = btrfs_header_level(next);
3701 path->nodes[*level] = next;
3702 path->slots[*level] = 0;
3703 path->locks[*level] = 1;
3704 cond_resched();
3705 }
3706out:
3707 parent = path->nodes[*level + 1];
3708 bytenr = path->nodes[*level]->start;
3709 blocksize = path->nodes[*level]->len;
3710
3711 ret = btrfs_free_extent(trans, root, bytenr, blocksize,
3712 parent->start, btrfs_header_owner(parent),
3713 btrfs_header_generation(parent), *level, 1);
3714 BUG_ON(ret);
3715
3716 if (path->locks[*level]) {
3717 btrfs_tree_unlock(path->nodes[*level]);
3718 path->locks[*level] = 0;
3719 }
3720 free_extent_buffer(path->nodes[*level]);
3721 path->nodes[*level] = NULL;
3722 *level += 1;
3723 cond_resched();
3724 return 0;
3725}
3726
9aca1d51
CM
3727/*
3728 * helper for dropping snapshots. This walks back up the tree in the path
3729 * to find the first node higher up where we haven't yet gone through
3730 * all the slots
3731 */
d397712b 3732static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
98ed5174 3733 struct btrfs_root *root,
f82d02d9
YZ
3734 struct btrfs_path *path,
3735 int *level, int max_level)
20524f02 3736{
7bb86316
CM
3737 u64 root_owner;
3738 u64 root_gen;
3739 struct btrfs_root_item *root_item = &root->root_item;
20524f02
CM
3740 int i;
3741 int slot;
3742 int ret;
9f3a7427 3743
f82d02d9 3744 for (i = *level; i < max_level && path->nodes[i]; i++) {
20524f02 3745 slot = path->slots[i];
5f39d397
CM
3746 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
3747 struct extent_buffer *node;
3748 struct btrfs_disk_key disk_key;
3749 node = path->nodes[i];
20524f02
CM
3750 path->slots[i]++;
3751 *level = i;
9f3a7427 3752 WARN_ON(*level == 0);
5f39d397 3753 btrfs_node_key(node, &disk_key, path->slots[i]);
9f3a7427 3754 memcpy(&root_item->drop_progress,
5f39d397 3755 &disk_key, sizeof(disk_key));
9f3a7427 3756 root_item->drop_level = i;
20524f02
CM
3757 return 0;
3758 } else {
31840ae1
ZY
3759 struct extent_buffer *parent;
3760 if (path->nodes[*level] == root->node)
3761 parent = path->nodes[*level];
3762 else
3763 parent = path->nodes[*level + 1];
3764
3765 root_owner = btrfs_header_owner(parent);
3766 root_gen = btrfs_header_generation(parent);
f82d02d9
YZ
3767
3768 clean_tree_block(trans, root, path->nodes[*level]);
e089f05c 3769 ret = btrfs_free_extent(trans, root,
db94535d 3770 path->nodes[*level]->start,
7bb86316 3771 path->nodes[*level]->len,
3bb1a1bc
YZ
3772 parent->start, root_owner,
3773 root_gen, *level, 1);
6407bf6d 3774 BUG_ON(ret);
f82d02d9
YZ
3775 if (path->locks[*level]) {
3776 btrfs_tree_unlock(path->nodes[*level]);
3777 path->locks[*level] = 0;
3778 }
5f39d397 3779 free_extent_buffer(path->nodes[*level]);
83e15a28 3780 path->nodes[*level] = NULL;
20524f02 3781 *level = i + 1;
20524f02
CM
3782 }
3783 }
3784 return 1;
3785}
3786
9aca1d51
CM
3787/*
3788 * drop the reference count on the tree rooted at 'snap'. This traverses
3789 * the tree freeing any blocks that have a ref count of zero after being
3790 * decremented.
3791 */
e089f05c 3792int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
9f3a7427 3793 *root)
20524f02 3794{
3768f368 3795 int ret = 0;
9aca1d51 3796 int wret;
20524f02 3797 int level;
5caf2a00 3798 struct btrfs_path *path;
20524f02
CM
3799 int i;
3800 int orig_level;
9f3a7427 3801 struct btrfs_root_item *root_item = &root->root_item;
20524f02 3802
a2135011 3803 WARN_ON(!mutex_is_locked(&root->fs_info->drop_mutex));
5caf2a00
CM
3804 path = btrfs_alloc_path();
3805 BUG_ON(!path);
20524f02 3806
5f39d397 3807 level = btrfs_header_level(root->node);
20524f02 3808 orig_level = level;
9f3a7427
CM
3809 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
3810 path->nodes[level] = root->node;
f510cfec 3811 extent_buffer_get(root->node);
9f3a7427
CM
3812 path->slots[level] = 0;
3813 } else {
3814 struct btrfs_key key;
5f39d397
CM
3815 struct btrfs_disk_key found_key;
3816 struct extent_buffer *node;
6702ed49 3817
9f3a7427 3818 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
6702ed49
CM
3819 level = root_item->drop_level;
3820 path->lowest_level = level;
9f3a7427 3821 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6702ed49 3822 if (wret < 0) {
9f3a7427
CM
3823 ret = wret;
3824 goto out;
3825 }
5f39d397
CM
3826 node = path->nodes[level];
3827 btrfs_node_key(node, &found_key, path->slots[level]);
3828 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
3829 sizeof(found_key)));
7d9eb12c
CM
3830 /*
3831 * unlock our path, this is safe because only this
3832 * function is allowed to delete this snapshot
3833 */
925baedd
CM
3834 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
3835 if (path->nodes[i] && path->locks[i]) {
3836 path->locks[i] = 0;
3837 btrfs_tree_unlock(path->nodes[i]);
3838 }
3839 }
9f3a7427 3840 }
d397712b 3841 while (1) {
5caf2a00 3842 wret = walk_down_tree(trans, root, path, &level);
9aca1d51 3843 if (wret > 0)
20524f02 3844 break;
9aca1d51
CM
3845 if (wret < 0)
3846 ret = wret;
3847
f82d02d9
YZ
3848 wret = walk_up_tree(trans, root, path, &level,
3849 BTRFS_MAX_LEVEL);
9aca1d51 3850 if (wret > 0)
20524f02 3851 break;
9aca1d51
CM
3852 if (wret < 0)
3853 ret = wret;
e7a84565
CM
3854 if (trans->transaction->in_commit) {
3855 ret = -EAGAIN;
3856 break;
3857 }
18e35e0a 3858 atomic_inc(&root->fs_info->throttle_gen);
017e5369 3859 wake_up(&root->fs_info->transaction_throttle);
20524f02 3860 }
83e15a28 3861 for (i = 0; i <= orig_level; i++) {
5caf2a00 3862 if (path->nodes[i]) {
5f39d397 3863 free_extent_buffer(path->nodes[i]);
0f82731f 3864 path->nodes[i] = NULL;
83e15a28 3865 }
20524f02 3866 }
9f3a7427 3867out:
5caf2a00 3868 btrfs_free_path(path);
9aca1d51 3869 return ret;
20524f02 3870}
9078a3e1 3871
f82d02d9
YZ
3872int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
3873 struct btrfs_root *root,
3874 struct extent_buffer *node,
3875 struct extent_buffer *parent)
3876{
3877 struct btrfs_path *path;
3878 int level;
3879 int parent_level;
3880 int ret = 0;
3881 int wret;
3882
3883 path = btrfs_alloc_path();
3884 BUG_ON(!path);
3885
3886 BUG_ON(!btrfs_tree_locked(parent));
3887 parent_level = btrfs_header_level(parent);
3888 extent_buffer_get(parent);
3889 path->nodes[parent_level] = parent;
3890 path->slots[parent_level] = btrfs_header_nritems(parent);
3891
3892 BUG_ON(!btrfs_tree_locked(node));
3893 level = btrfs_header_level(node);
3894 extent_buffer_get(node);
3895 path->nodes[level] = node;
3896 path->slots[level] = 0;
3897
3898 while (1) {
3899 wret = walk_down_subtree(trans, root, path, &level);
3900 if (wret < 0)
3901 ret = wret;
3902 if (wret != 0)
3903 break;
3904
3905 wret = walk_up_tree(trans, root, path, &level, parent_level);
3906 if (wret < 0)
3907 ret = wret;
3908 if (wret != 0)
3909 break;
3910 }
3911
3912 btrfs_free_path(path);
3913 return ret;
3914}
3915
8e7bf94f
CM
3916static unsigned long calc_ra(unsigned long start, unsigned long last,
3917 unsigned long nr)
3918{
3919 return min(last, start + nr - 1);
3920}
3921
d397712b 3922static noinline int relocate_inode_pages(struct inode *inode, u64 start,
98ed5174 3923 u64 len)
edbd8d4e
CM
3924{
3925 u64 page_start;
3926 u64 page_end;
1a40e23b 3927 unsigned long first_index;
edbd8d4e 3928 unsigned long last_index;
edbd8d4e
CM
3929 unsigned long i;
3930 struct page *page;
d1310b2e 3931 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4313b399 3932 struct file_ra_state *ra;
3eaa2885 3933 struct btrfs_ordered_extent *ordered;
1a40e23b
ZY
3934 unsigned int total_read = 0;
3935 unsigned int total_dirty = 0;
3936 int ret = 0;
4313b399
CM
3937
3938 ra = kzalloc(sizeof(*ra), GFP_NOFS);
edbd8d4e
CM
3939
3940 mutex_lock(&inode->i_mutex);
1a40e23b 3941 first_index = start >> PAGE_CACHE_SHIFT;
edbd8d4e
CM
3942 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
3943
1a40e23b
ZY
3944 /* make sure the dirty trick played by the caller work */
3945 ret = invalidate_inode_pages2_range(inode->i_mapping,
3946 first_index, last_index);
3947 if (ret)
3948 goto out_unlock;
8e7bf94f 3949
4313b399 3950 file_ra_state_init(ra, inode->i_mapping);
edbd8d4e 3951
1a40e23b
ZY
3952 for (i = first_index ; i <= last_index; i++) {
3953 if (total_read % ra->ra_pages == 0) {
8e7bf94f 3954 btrfs_force_ra(inode->i_mapping, ra, NULL, i,
1a40e23b 3955 calc_ra(i, last_index, ra->ra_pages));
8e7bf94f
CM
3956 }
3957 total_read++;
3eaa2885
CM
3958again:
3959 if (((u64)i << PAGE_CACHE_SHIFT) > i_size_read(inode))
1a40e23b 3960 BUG_ON(1);
edbd8d4e 3961 page = grab_cache_page(inode->i_mapping, i);
a061fc8d 3962 if (!page) {
1a40e23b 3963 ret = -ENOMEM;
edbd8d4e 3964 goto out_unlock;
a061fc8d 3965 }
edbd8d4e
CM
3966 if (!PageUptodate(page)) {
3967 btrfs_readpage(NULL, page);
3968 lock_page(page);
3969 if (!PageUptodate(page)) {
3970 unlock_page(page);
3971 page_cache_release(page);
1a40e23b 3972 ret = -EIO;
edbd8d4e
CM
3973 goto out_unlock;
3974 }
3975 }
ec44a35c 3976 wait_on_page_writeback(page);
3eaa2885 3977
edbd8d4e
CM
3978 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
3979 page_end = page_start + PAGE_CACHE_SIZE - 1;
d1310b2e 3980 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
edbd8d4e 3981
3eaa2885
CM
3982 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3983 if (ordered) {
3984 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
3985 unlock_page(page);
3986 page_cache_release(page);
3987 btrfs_start_ordered_extent(inode, ordered, 1);
3988 btrfs_put_ordered_extent(ordered);
3989 goto again;
3990 }
3991 set_page_extent_mapped(page);
3992
1a40e23b
ZY
3993 if (i == first_index)
3994 set_extent_bits(io_tree, page_start, page_end,
3995 EXTENT_BOUNDARY, GFP_NOFS);
1f80e4db 3996 btrfs_set_extent_delalloc(inode, page_start, page_end);
1a40e23b 3997
a061fc8d 3998 set_page_dirty(page);
1a40e23b 3999 total_dirty++;
edbd8d4e 4000
d1310b2e 4001 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
edbd8d4e
CM
4002 unlock_page(page);
4003 page_cache_release(page);
4004 }
4005
4006out_unlock:
ec44a35c 4007 kfree(ra);
edbd8d4e 4008 mutex_unlock(&inode->i_mutex);
1a40e23b
ZY
4009 balance_dirty_pages_ratelimited_nr(inode->i_mapping, total_dirty);
4010 return ret;
edbd8d4e
CM
4011}
4012
d397712b 4013static noinline int relocate_data_extent(struct inode *reloc_inode,
1a40e23b
ZY
4014 struct btrfs_key *extent_key,
4015 u64 offset)
4016{
4017 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
4018 struct extent_map_tree *em_tree = &BTRFS_I(reloc_inode)->extent_tree;
4019 struct extent_map *em;
6643558d
YZ
4020 u64 start = extent_key->objectid - offset;
4021 u64 end = start + extent_key->offset - 1;
bf4ef679 4022
1a40e23b
ZY
4023 em = alloc_extent_map(GFP_NOFS);
4024 BUG_ON(!em || IS_ERR(em));
bf4ef679 4025
6643558d 4026 em->start = start;
1a40e23b 4027 em->len = extent_key->offset;
c8b97818 4028 em->block_len = extent_key->offset;
1a40e23b
ZY
4029 em->block_start = extent_key->objectid;
4030 em->bdev = root->fs_info->fs_devices->latest_bdev;
4031 set_bit(EXTENT_FLAG_PINNED, &em->flags);
4032
4033 /* setup extent map to cheat btrfs_readpage */
6643558d 4034 lock_extent(&BTRFS_I(reloc_inode)->io_tree, start, end, GFP_NOFS);
1a40e23b
ZY
4035 while (1) {
4036 int ret;
4037 spin_lock(&em_tree->lock);
4038 ret = add_extent_mapping(em_tree, em);
4039 spin_unlock(&em_tree->lock);
4040 if (ret != -EEXIST) {
4041 free_extent_map(em);
bf4ef679
CM
4042 break;
4043 }
6643558d 4044 btrfs_drop_extent_cache(reloc_inode, start, end, 0);
bf4ef679 4045 }
6643558d 4046 unlock_extent(&BTRFS_I(reloc_inode)->io_tree, start, end, GFP_NOFS);
bf4ef679 4047
6643558d 4048 return relocate_inode_pages(reloc_inode, start, extent_key->offset);
1a40e23b 4049}
edbd8d4e 4050
1a40e23b
ZY
4051struct btrfs_ref_path {
4052 u64 extent_start;
4053 u64 nodes[BTRFS_MAX_LEVEL];
4054 u64 root_objectid;
4055 u64 root_generation;
4056 u64 owner_objectid;
1a40e23b
ZY
4057 u32 num_refs;
4058 int lowest_level;
4059 int current_level;
f82d02d9
YZ
4060 int shared_level;
4061
4062 struct btrfs_key node_keys[BTRFS_MAX_LEVEL];
4063 u64 new_nodes[BTRFS_MAX_LEVEL];
1a40e23b 4064};
7d9eb12c 4065
1a40e23b 4066struct disk_extent {
c8b97818 4067 u64 ram_bytes;
1a40e23b
ZY
4068 u64 disk_bytenr;
4069 u64 disk_num_bytes;
4070 u64 offset;
4071 u64 num_bytes;
c8b97818
CM
4072 u8 compression;
4073 u8 encryption;
4074 u16 other_encoding;
1a40e23b 4075};
4313b399 4076
1a40e23b
ZY
4077static int is_cowonly_root(u64 root_objectid)
4078{
4079 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID ||
4080 root_objectid == BTRFS_EXTENT_TREE_OBJECTID ||
4081 root_objectid == BTRFS_CHUNK_TREE_OBJECTID ||
4082 root_objectid == BTRFS_DEV_TREE_OBJECTID ||
0403e47e
YZ
4083 root_objectid == BTRFS_TREE_LOG_OBJECTID ||
4084 root_objectid == BTRFS_CSUM_TREE_OBJECTID)
1a40e23b
ZY
4085 return 1;
4086 return 0;
4087}
edbd8d4e 4088
d397712b 4089static noinline int __next_ref_path(struct btrfs_trans_handle *trans,
1a40e23b
ZY
4090 struct btrfs_root *extent_root,
4091 struct btrfs_ref_path *ref_path,
4092 int first_time)
4093{
4094 struct extent_buffer *leaf;
4095 struct btrfs_path *path;
4096 struct btrfs_extent_ref *ref;
4097 struct btrfs_key key;
4098 struct btrfs_key found_key;
4099 u64 bytenr;
4100 u32 nritems;
4101 int level;
4102 int ret = 1;
edbd8d4e 4103
1a40e23b
ZY
4104 path = btrfs_alloc_path();
4105 if (!path)
4106 return -ENOMEM;
bf4ef679 4107
1a40e23b
ZY
4108 if (first_time) {
4109 ref_path->lowest_level = -1;
4110 ref_path->current_level = -1;
f82d02d9 4111 ref_path->shared_level = -1;
1a40e23b
ZY
4112 goto walk_up;
4113 }
4114walk_down:
4115 level = ref_path->current_level - 1;
4116 while (level >= -1) {
4117 u64 parent;
4118 if (level < ref_path->lowest_level)
4119 break;
bf4ef679 4120
d397712b 4121 if (level >= 0)
1a40e23b 4122 bytenr = ref_path->nodes[level];
d397712b 4123 else
1a40e23b 4124 bytenr = ref_path->extent_start;
1a40e23b 4125 BUG_ON(bytenr == 0);
bf4ef679 4126
1a40e23b
ZY
4127 parent = ref_path->nodes[level + 1];
4128 ref_path->nodes[level + 1] = 0;
4129 ref_path->current_level = level;
4130 BUG_ON(parent == 0);
0ef3e66b 4131
1a40e23b
ZY
4132 key.objectid = bytenr;
4133 key.offset = parent + 1;
4134 key.type = BTRFS_EXTENT_REF_KEY;
edbd8d4e 4135
1a40e23b
ZY
4136 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 0);
4137 if (ret < 0)
edbd8d4e 4138 goto out;
1a40e23b 4139 BUG_ON(ret == 0);
7d9eb12c 4140
1a40e23b
ZY
4141 leaf = path->nodes[0];
4142 nritems = btrfs_header_nritems(leaf);
4143 if (path->slots[0] >= nritems) {
4144 ret = btrfs_next_leaf(extent_root, path);
4145 if (ret < 0)
4146 goto out;
4147 if (ret > 0)
4148 goto next;
4149 leaf = path->nodes[0];
4150 }
0ef3e66b 4151
1a40e23b
ZY
4152 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4153 if (found_key.objectid == bytenr &&
f82d02d9
YZ
4154 found_key.type == BTRFS_EXTENT_REF_KEY) {
4155 if (level < ref_path->shared_level)
4156 ref_path->shared_level = level;
1a40e23b 4157 goto found;
f82d02d9 4158 }
1a40e23b
ZY
4159next:
4160 level--;
4161 btrfs_release_path(extent_root, path);
d899e052 4162 cond_resched();
1a40e23b
ZY
4163 }
4164 /* reached lowest level */
4165 ret = 1;
4166 goto out;
4167walk_up:
4168 level = ref_path->current_level;
4169 while (level < BTRFS_MAX_LEVEL - 1) {
4170 u64 ref_objectid;
d397712b
CM
4171
4172 if (level >= 0)
1a40e23b 4173 bytenr = ref_path->nodes[level];
d397712b 4174 else
1a40e23b 4175 bytenr = ref_path->extent_start;
d397712b 4176
1a40e23b 4177 BUG_ON(bytenr == 0);
edbd8d4e 4178
1a40e23b
ZY
4179 key.objectid = bytenr;
4180 key.offset = 0;
4181 key.type = BTRFS_EXTENT_REF_KEY;
edbd8d4e 4182
1a40e23b
ZY
4183 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 0);
4184 if (ret < 0)
4185 goto out;
edbd8d4e 4186
1a40e23b
ZY
4187 leaf = path->nodes[0];
4188 nritems = btrfs_header_nritems(leaf);
4189 if (path->slots[0] >= nritems) {
4190 ret = btrfs_next_leaf(extent_root, path);
4191 if (ret < 0)
4192 goto out;
4193 if (ret > 0) {
4194 /* the extent was freed by someone */
4195 if (ref_path->lowest_level == level)
4196 goto out;
4197 btrfs_release_path(extent_root, path);
4198 goto walk_down;
4199 }
4200 leaf = path->nodes[0];
4201 }
edbd8d4e 4202
1a40e23b
ZY
4203 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4204 if (found_key.objectid != bytenr ||
4205 found_key.type != BTRFS_EXTENT_REF_KEY) {
4206 /* the extent was freed by someone */
4207 if (ref_path->lowest_level == level) {
4208 ret = 1;
4209 goto out;
4210 }
4211 btrfs_release_path(extent_root, path);
4212 goto walk_down;
4213 }
4214found:
4215 ref = btrfs_item_ptr(leaf, path->slots[0],
4216 struct btrfs_extent_ref);
4217 ref_objectid = btrfs_ref_objectid(leaf, ref);
4218 if (ref_objectid < BTRFS_FIRST_FREE_OBJECTID) {
4219 if (first_time) {
4220 level = (int)ref_objectid;
4221 BUG_ON(level >= BTRFS_MAX_LEVEL);
4222 ref_path->lowest_level = level;
4223 ref_path->current_level = level;
4224 ref_path->nodes[level] = bytenr;
4225 } else {
4226 WARN_ON(ref_objectid != level);
4227 }
4228 } else {
4229 WARN_ON(level != -1);
4230 }
4231 first_time = 0;
bf4ef679 4232
1a40e23b
ZY
4233 if (ref_path->lowest_level == level) {
4234 ref_path->owner_objectid = ref_objectid;
1a40e23b
ZY
4235 ref_path->num_refs = btrfs_ref_num_refs(leaf, ref);
4236 }
bf4ef679 4237
7d9eb12c 4238 /*
1a40e23b
ZY
4239 * the block is tree root or the block isn't in reference
4240 * counted tree.
7d9eb12c 4241 */
1a40e23b
ZY
4242 if (found_key.objectid == found_key.offset ||
4243 is_cowonly_root(btrfs_ref_root(leaf, ref))) {
4244 ref_path->root_objectid = btrfs_ref_root(leaf, ref);
4245 ref_path->root_generation =
4246 btrfs_ref_generation(leaf, ref);
4247 if (level < 0) {
4248 /* special reference from the tree log */
4249 ref_path->nodes[0] = found_key.offset;
4250 ref_path->current_level = 0;
4251 }
4252 ret = 0;
4253 goto out;
4254 }
7d9eb12c 4255
1a40e23b
ZY
4256 level++;
4257 BUG_ON(ref_path->nodes[level] != 0);
4258 ref_path->nodes[level] = found_key.offset;
4259 ref_path->current_level = level;
bf4ef679 4260
1a40e23b
ZY
4261 /*
4262 * the reference was created in the running transaction,
4263 * no need to continue walking up.
4264 */
4265 if (btrfs_ref_generation(leaf, ref) == trans->transid) {
4266 ref_path->root_objectid = btrfs_ref_root(leaf, ref);
4267 ref_path->root_generation =
4268 btrfs_ref_generation(leaf, ref);
4269 ret = 0;
4270 goto out;
7d9eb12c
CM
4271 }
4272
1a40e23b 4273 btrfs_release_path(extent_root, path);
d899e052 4274 cond_resched();
7d9eb12c 4275 }
1a40e23b
ZY
4276 /* reached max tree level, but no tree root found. */
4277 BUG();
edbd8d4e 4278out:
1a40e23b
ZY
4279 btrfs_free_path(path);
4280 return ret;
edbd8d4e
CM
4281}
4282
1a40e23b
ZY
4283static int btrfs_first_ref_path(struct btrfs_trans_handle *trans,
4284 struct btrfs_root *extent_root,
4285 struct btrfs_ref_path *ref_path,
4286 u64 extent_start)
a061fc8d 4287{
1a40e23b
ZY
4288 memset(ref_path, 0, sizeof(*ref_path));
4289 ref_path->extent_start = extent_start;
a061fc8d 4290
1a40e23b 4291 return __next_ref_path(trans, extent_root, ref_path, 1);
a061fc8d
CM
4292}
4293
1a40e23b
ZY
4294static int btrfs_next_ref_path(struct btrfs_trans_handle *trans,
4295 struct btrfs_root *extent_root,
4296 struct btrfs_ref_path *ref_path)
edbd8d4e 4297{
1a40e23b
ZY
4298 return __next_ref_path(trans, extent_root, ref_path, 0);
4299}
4300
d397712b 4301static noinline int get_new_locations(struct inode *reloc_inode,
1a40e23b
ZY
4302 struct btrfs_key *extent_key,
4303 u64 offset, int no_fragment,
4304 struct disk_extent **extents,
4305 int *nr_extents)
4306{
4307 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
4308 struct btrfs_path *path;
4309 struct btrfs_file_extent_item *fi;
edbd8d4e 4310 struct extent_buffer *leaf;
1a40e23b
ZY
4311 struct disk_extent *exts = *extents;
4312 struct btrfs_key found_key;
4313 u64 cur_pos;
4314 u64 last_byte;
edbd8d4e 4315 u32 nritems;
1a40e23b
ZY
4316 int nr = 0;
4317 int max = *nr_extents;
4318 int ret;
edbd8d4e 4319
1a40e23b
ZY
4320 WARN_ON(!no_fragment && *extents);
4321 if (!exts) {
4322 max = 1;
4323 exts = kmalloc(sizeof(*exts) * max, GFP_NOFS);
4324 if (!exts)
4325 return -ENOMEM;
a061fc8d 4326 }
edbd8d4e 4327
1a40e23b
ZY
4328 path = btrfs_alloc_path();
4329 BUG_ON(!path);
edbd8d4e 4330
1a40e23b
ZY
4331 cur_pos = extent_key->objectid - offset;
4332 last_byte = extent_key->objectid + extent_key->offset;
4333 ret = btrfs_lookup_file_extent(NULL, root, path, reloc_inode->i_ino,
4334 cur_pos, 0);
4335 if (ret < 0)
4336 goto out;
4337 if (ret > 0) {
4338 ret = -ENOENT;
4339 goto out;
4340 }
edbd8d4e 4341
1a40e23b 4342 while (1) {
edbd8d4e
CM
4343 leaf = path->nodes[0];
4344 nritems = btrfs_header_nritems(leaf);
1a40e23b
ZY
4345 if (path->slots[0] >= nritems) {
4346 ret = btrfs_next_leaf(root, path);
a061fc8d
CM
4347 if (ret < 0)
4348 goto out;
1a40e23b
ZY
4349 if (ret > 0)
4350 break;
bf4ef679 4351 leaf = path->nodes[0];
a061fc8d 4352 }
edbd8d4e
CM
4353
4354 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1a40e23b
ZY
4355 if (found_key.offset != cur_pos ||
4356 found_key.type != BTRFS_EXTENT_DATA_KEY ||
4357 found_key.objectid != reloc_inode->i_ino)
edbd8d4e
CM
4358 break;
4359
1a40e23b
ZY
4360 fi = btrfs_item_ptr(leaf, path->slots[0],
4361 struct btrfs_file_extent_item);
4362 if (btrfs_file_extent_type(leaf, fi) !=
4363 BTRFS_FILE_EXTENT_REG ||
4364 btrfs_file_extent_disk_bytenr(leaf, fi) == 0)
edbd8d4e 4365 break;
1a40e23b
ZY
4366
4367 if (nr == max) {
4368 struct disk_extent *old = exts;
4369 max *= 2;
4370 exts = kzalloc(sizeof(*exts) * max, GFP_NOFS);
4371 memcpy(exts, old, sizeof(*exts) * nr);
4372 if (old != *extents)
4373 kfree(old);
a061fc8d 4374 }
edbd8d4e 4375
1a40e23b
ZY
4376 exts[nr].disk_bytenr =
4377 btrfs_file_extent_disk_bytenr(leaf, fi);
4378 exts[nr].disk_num_bytes =
4379 btrfs_file_extent_disk_num_bytes(leaf, fi);
4380 exts[nr].offset = btrfs_file_extent_offset(leaf, fi);
4381 exts[nr].num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
c8b97818
CM
4382 exts[nr].ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
4383 exts[nr].compression = btrfs_file_extent_compression(leaf, fi);
4384 exts[nr].encryption = btrfs_file_extent_encryption(leaf, fi);
4385 exts[nr].other_encoding = btrfs_file_extent_other_encoding(leaf,
4386 fi);
d899e052
YZ
4387 BUG_ON(exts[nr].offset > 0);
4388 BUG_ON(exts[nr].compression || exts[nr].encryption);
4389 BUG_ON(exts[nr].num_bytes != exts[nr].disk_num_bytes);
edbd8d4e 4390
1a40e23b
ZY
4391 cur_pos += exts[nr].num_bytes;
4392 nr++;
4393
4394 if (cur_pos + offset >= last_byte)
4395 break;
4396
4397 if (no_fragment) {
4398 ret = 1;
edbd8d4e 4399 goto out;
1a40e23b
ZY
4400 }
4401 path->slots[0]++;
4402 }
4403
1f80e4db 4404 BUG_ON(cur_pos + offset > last_byte);
1a40e23b
ZY
4405 if (cur_pos + offset < last_byte) {
4406 ret = -ENOENT;
4407 goto out;
edbd8d4e
CM
4408 }
4409 ret = 0;
4410out:
1a40e23b
ZY
4411 btrfs_free_path(path);
4412 if (ret) {
4413 if (exts != *extents)
4414 kfree(exts);
4415 } else {
4416 *extents = exts;
4417 *nr_extents = nr;
4418 }
4419 return ret;
4420}
4421
d397712b 4422static noinline int replace_one_extent(struct btrfs_trans_handle *trans,
1a40e23b
ZY
4423 struct btrfs_root *root,
4424 struct btrfs_path *path,
4425 struct btrfs_key *extent_key,
4426 struct btrfs_key *leaf_key,
4427 struct btrfs_ref_path *ref_path,
4428 struct disk_extent *new_extents,
4429 int nr_extents)
4430{
4431 struct extent_buffer *leaf;
4432 struct btrfs_file_extent_item *fi;
4433 struct inode *inode = NULL;
4434 struct btrfs_key key;
4435 u64 lock_start = 0;
4436 u64 lock_end = 0;
4437 u64 num_bytes;
4438 u64 ext_offset;
86288a19 4439 u64 search_end = (u64)-1;
1a40e23b 4440 u32 nritems;
3bb1a1bc 4441 int nr_scaned = 0;
1a40e23b 4442 int extent_locked = 0;
d899e052 4443 int extent_type;
1a40e23b
ZY
4444 int ret;
4445
3bb1a1bc 4446 memcpy(&key, leaf_key, sizeof(key));
1a40e23b 4447 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS) {
3bb1a1bc
YZ
4448 if (key.objectid < ref_path->owner_objectid ||
4449 (key.objectid == ref_path->owner_objectid &&
4450 key.type < BTRFS_EXTENT_DATA_KEY)) {
4451 key.objectid = ref_path->owner_objectid;
4452 key.type = BTRFS_EXTENT_DATA_KEY;
4453 key.offset = 0;
4454 }
1a40e23b
ZY
4455 }
4456
4457 while (1) {
4458 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
4459 if (ret < 0)
4460 goto out;
4461
4462 leaf = path->nodes[0];
4463 nritems = btrfs_header_nritems(leaf);
4464next:
4465 if (extent_locked && ret > 0) {
4466 /*
4467 * the file extent item was modified by someone
4468 * before the extent got locked.
4469 */
1a40e23b
ZY
4470 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
4471 lock_end, GFP_NOFS);
4472 extent_locked = 0;
4473 }
4474
4475 if (path->slots[0] >= nritems) {
3bb1a1bc 4476 if (++nr_scaned > 2)
1a40e23b
ZY
4477 break;
4478
4479 BUG_ON(extent_locked);
4480 ret = btrfs_next_leaf(root, path);
4481 if (ret < 0)
4482 goto out;
4483 if (ret > 0)
4484 break;
4485 leaf = path->nodes[0];
4486 nritems = btrfs_header_nritems(leaf);
4487 }
4488
4489 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4490
4491 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS) {
4492 if ((key.objectid > ref_path->owner_objectid) ||
4493 (key.objectid == ref_path->owner_objectid &&
4494 key.type > BTRFS_EXTENT_DATA_KEY) ||
86288a19 4495 key.offset >= search_end)
1a40e23b
ZY
4496 break;
4497 }
4498
4499 if (inode && key.objectid != inode->i_ino) {
4500 BUG_ON(extent_locked);
4501 btrfs_release_path(root, path);
4502 mutex_unlock(&inode->i_mutex);
4503 iput(inode);
4504 inode = NULL;
4505 continue;
4506 }
4507
4508 if (key.type != BTRFS_EXTENT_DATA_KEY) {
4509 path->slots[0]++;
4510 ret = 1;
4511 goto next;
4512 }
4513 fi = btrfs_item_ptr(leaf, path->slots[0],
4514 struct btrfs_file_extent_item);
d899e052
YZ
4515 extent_type = btrfs_file_extent_type(leaf, fi);
4516 if ((extent_type != BTRFS_FILE_EXTENT_REG &&
4517 extent_type != BTRFS_FILE_EXTENT_PREALLOC) ||
1a40e23b
ZY
4518 (btrfs_file_extent_disk_bytenr(leaf, fi) !=
4519 extent_key->objectid)) {
4520 path->slots[0]++;
4521 ret = 1;
4522 goto next;
4523 }
4524
4525 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
4526 ext_offset = btrfs_file_extent_offset(leaf, fi);
4527
86288a19
YZ
4528 if (search_end == (u64)-1) {
4529 search_end = key.offset - ext_offset +
4530 btrfs_file_extent_ram_bytes(leaf, fi);
4531 }
1a40e23b
ZY
4532
4533 if (!extent_locked) {
4534 lock_start = key.offset;
4535 lock_end = lock_start + num_bytes - 1;
4536 } else {
6643558d
YZ
4537 if (lock_start > key.offset ||
4538 lock_end + 1 < key.offset + num_bytes) {
4539 unlock_extent(&BTRFS_I(inode)->io_tree,
4540 lock_start, lock_end, GFP_NOFS);
4541 extent_locked = 0;
4542 }
1a40e23b
ZY
4543 }
4544
4545 if (!inode) {
4546 btrfs_release_path(root, path);
4547
4548 inode = btrfs_iget_locked(root->fs_info->sb,
4549 key.objectid, root);
4550 if (inode->i_state & I_NEW) {
4551 BTRFS_I(inode)->root = root;
4552 BTRFS_I(inode)->location.objectid =
4553 key.objectid;
4554 BTRFS_I(inode)->location.type =
4555 BTRFS_INODE_ITEM_KEY;
4556 BTRFS_I(inode)->location.offset = 0;
4557 btrfs_read_locked_inode(inode);
4558 unlock_new_inode(inode);
4559 }
4560 /*
4561 * some code call btrfs_commit_transaction while
4562 * holding the i_mutex, so we can't use mutex_lock
4563 * here.
4564 */
4565 if (is_bad_inode(inode) ||
4566 !mutex_trylock(&inode->i_mutex)) {
4567 iput(inode);
4568 inode = NULL;
4569 key.offset = (u64)-1;
4570 goto skip;
4571 }
4572 }
4573
4574 if (!extent_locked) {
4575 struct btrfs_ordered_extent *ordered;
4576
4577 btrfs_release_path(root, path);
4578
4579 lock_extent(&BTRFS_I(inode)->io_tree, lock_start,
4580 lock_end, GFP_NOFS);
4581 ordered = btrfs_lookup_first_ordered_extent(inode,
4582 lock_end);
4583 if (ordered &&
4584 ordered->file_offset <= lock_end &&
4585 ordered->file_offset + ordered->len > lock_start) {
4586 unlock_extent(&BTRFS_I(inode)->io_tree,
4587 lock_start, lock_end, GFP_NOFS);
4588 btrfs_start_ordered_extent(inode, ordered, 1);
4589 btrfs_put_ordered_extent(ordered);
4590 key.offset += num_bytes;
4591 goto skip;
4592 }
4593 if (ordered)
4594 btrfs_put_ordered_extent(ordered);
4595
1a40e23b
ZY
4596 extent_locked = 1;
4597 continue;
4598 }
4599
4600 if (nr_extents == 1) {
4601 /* update extent pointer in place */
1a40e23b
ZY
4602 btrfs_set_file_extent_disk_bytenr(leaf, fi,
4603 new_extents[0].disk_bytenr);
4604 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
4605 new_extents[0].disk_num_bytes);
1a40e23b
ZY
4606 btrfs_mark_buffer_dirty(leaf);
4607
4608 btrfs_drop_extent_cache(inode, key.offset,
4609 key.offset + num_bytes - 1, 0);
4610
4611 ret = btrfs_inc_extent_ref(trans, root,
4612 new_extents[0].disk_bytenr,
4613 new_extents[0].disk_num_bytes,
4614 leaf->start,
4615 root->root_key.objectid,
4616 trans->transid,
3bb1a1bc 4617 key.objectid);
1a40e23b
ZY
4618 BUG_ON(ret);
4619
4620 ret = btrfs_free_extent(trans, root,
4621 extent_key->objectid,
4622 extent_key->offset,
4623 leaf->start,
4624 btrfs_header_owner(leaf),
4625 btrfs_header_generation(leaf),
3bb1a1bc 4626 key.objectid, 0);
1a40e23b
ZY
4627 BUG_ON(ret);
4628
4629 btrfs_release_path(root, path);
4630 key.offset += num_bytes;
4631 } else {
d899e052
YZ
4632 BUG_ON(1);
4633#if 0
1a40e23b
ZY
4634 u64 alloc_hint;
4635 u64 extent_len;
4636 int i;
4637 /*
4638 * drop old extent pointer at first, then insert the
4639 * new pointers one bye one
4640 */
4641 btrfs_release_path(root, path);
4642 ret = btrfs_drop_extents(trans, root, inode, key.offset,
4643 key.offset + num_bytes,
4644 key.offset, &alloc_hint);
4645 BUG_ON(ret);
4646
4647 for (i = 0; i < nr_extents; i++) {
4648 if (ext_offset >= new_extents[i].num_bytes) {
4649 ext_offset -= new_extents[i].num_bytes;
4650 continue;
4651 }
4652 extent_len = min(new_extents[i].num_bytes -
4653 ext_offset, num_bytes);
4654
4655 ret = btrfs_insert_empty_item(trans, root,
4656 path, &key,
4657 sizeof(*fi));
4658 BUG_ON(ret);
4659
4660 leaf = path->nodes[0];
4661 fi = btrfs_item_ptr(leaf, path->slots[0],
4662 struct btrfs_file_extent_item);
4663 btrfs_set_file_extent_generation(leaf, fi,
4664 trans->transid);
4665 btrfs_set_file_extent_type(leaf, fi,
4666 BTRFS_FILE_EXTENT_REG);
4667 btrfs_set_file_extent_disk_bytenr(leaf, fi,
4668 new_extents[i].disk_bytenr);
4669 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
4670 new_extents[i].disk_num_bytes);
c8b97818
CM
4671 btrfs_set_file_extent_ram_bytes(leaf, fi,
4672 new_extents[i].ram_bytes);
4673
4674 btrfs_set_file_extent_compression(leaf, fi,
4675 new_extents[i].compression);
4676 btrfs_set_file_extent_encryption(leaf, fi,
4677 new_extents[i].encryption);
4678 btrfs_set_file_extent_other_encoding(leaf, fi,
4679 new_extents[i].other_encoding);
4680
1a40e23b
ZY
4681 btrfs_set_file_extent_num_bytes(leaf, fi,
4682 extent_len);
4683 ext_offset += new_extents[i].offset;
4684 btrfs_set_file_extent_offset(leaf, fi,
4685 ext_offset);
4686 btrfs_mark_buffer_dirty(leaf);
4687
4688 btrfs_drop_extent_cache(inode, key.offset,
4689 key.offset + extent_len - 1, 0);
4690
4691 ret = btrfs_inc_extent_ref(trans, root,
4692 new_extents[i].disk_bytenr,
4693 new_extents[i].disk_num_bytes,
4694 leaf->start,
4695 root->root_key.objectid,
3bb1a1bc 4696 trans->transid, key.objectid);
1a40e23b
ZY
4697 BUG_ON(ret);
4698 btrfs_release_path(root, path);
4699
a76a3cd4 4700 inode_add_bytes(inode, extent_len);
1a40e23b
ZY
4701
4702 ext_offset = 0;
4703 num_bytes -= extent_len;
4704 key.offset += extent_len;
4705
4706 if (num_bytes == 0)
4707 break;
4708 }
4709 BUG_ON(i >= nr_extents);
d899e052 4710#endif
1a40e23b
ZY
4711 }
4712
4713 if (extent_locked) {
1a40e23b
ZY
4714 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
4715 lock_end, GFP_NOFS);
4716 extent_locked = 0;
4717 }
4718skip:
4719 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS &&
86288a19 4720 key.offset >= search_end)
1a40e23b
ZY
4721 break;
4722
4723 cond_resched();
4724 }
4725 ret = 0;
4726out:
4727 btrfs_release_path(root, path);
4728 if (inode) {
4729 mutex_unlock(&inode->i_mutex);
4730 if (extent_locked) {
1a40e23b
ZY
4731 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
4732 lock_end, GFP_NOFS);
4733 }
4734 iput(inode);
4735 }
4736 return ret;
4737}
4738
1a40e23b
ZY
4739int btrfs_reloc_tree_cache_ref(struct btrfs_trans_handle *trans,
4740 struct btrfs_root *root,
4741 struct extent_buffer *buf, u64 orig_start)
4742{
4743 int level;
4744 int ret;
4745
4746 BUG_ON(btrfs_header_generation(buf) != trans->transid);
4747 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
4748
4749 level = btrfs_header_level(buf);
4750 if (level == 0) {
4751 struct btrfs_leaf_ref *ref;
4752 struct btrfs_leaf_ref *orig_ref;
4753
4754 orig_ref = btrfs_lookup_leaf_ref(root, orig_start);
4755 if (!orig_ref)
4756 return -ENOENT;
4757
4758 ref = btrfs_alloc_leaf_ref(root, orig_ref->nritems);
4759 if (!ref) {
4760 btrfs_free_leaf_ref(root, orig_ref);
4761 return -ENOMEM;
4762 }
4763
4764 ref->nritems = orig_ref->nritems;
4765 memcpy(ref->extents, orig_ref->extents,
4766 sizeof(ref->extents[0]) * ref->nritems);
4767
4768 btrfs_free_leaf_ref(root, orig_ref);
4769
4770 ref->root_gen = trans->transid;
4771 ref->bytenr = buf->start;
4772 ref->owner = btrfs_header_owner(buf);
4773 ref->generation = btrfs_header_generation(buf);
4774 ret = btrfs_add_leaf_ref(root, ref, 0);
4775 WARN_ON(ret);
4776 btrfs_free_leaf_ref(root, ref);
4777 }
4778 return 0;
4779}
4780
d397712b 4781static noinline int invalidate_extent_cache(struct btrfs_root *root,
1a40e23b
ZY
4782 struct extent_buffer *leaf,
4783 struct btrfs_block_group_cache *group,
4784 struct btrfs_root *target_root)
4785{
4786 struct btrfs_key key;
4787 struct inode *inode = NULL;
4788 struct btrfs_file_extent_item *fi;
4789 u64 num_bytes;
4790 u64 skip_objectid = 0;
4791 u32 nritems;
4792 u32 i;
4793
4794 nritems = btrfs_header_nritems(leaf);
4795 for (i = 0; i < nritems; i++) {
4796 btrfs_item_key_to_cpu(leaf, &key, i);
4797 if (key.objectid == skip_objectid ||
4798 key.type != BTRFS_EXTENT_DATA_KEY)
4799 continue;
4800 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
4801 if (btrfs_file_extent_type(leaf, fi) ==
4802 BTRFS_FILE_EXTENT_INLINE)
4803 continue;
4804 if (btrfs_file_extent_disk_bytenr(leaf, fi) == 0)
4805 continue;
4806 if (!inode || inode->i_ino != key.objectid) {
4807 iput(inode);
4808 inode = btrfs_ilookup(target_root->fs_info->sb,
4809 key.objectid, target_root, 1);
4810 }
4811 if (!inode) {
4812 skip_objectid = key.objectid;
4813 continue;
4814 }
4815 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
4816
4817 lock_extent(&BTRFS_I(inode)->io_tree, key.offset,
4818 key.offset + num_bytes - 1, GFP_NOFS);
1a40e23b
ZY
4819 btrfs_drop_extent_cache(inode, key.offset,
4820 key.offset + num_bytes - 1, 1);
1a40e23b
ZY
4821 unlock_extent(&BTRFS_I(inode)->io_tree, key.offset,
4822 key.offset + num_bytes - 1, GFP_NOFS);
4823 cond_resched();
4824 }
4825 iput(inode);
4826 return 0;
4827}
4828
d397712b 4829static noinline int replace_extents_in_leaf(struct btrfs_trans_handle *trans,
1a40e23b
ZY
4830 struct btrfs_root *root,
4831 struct extent_buffer *leaf,
4832 struct btrfs_block_group_cache *group,
4833 struct inode *reloc_inode)
4834{
4835 struct btrfs_key key;
4836 struct btrfs_key extent_key;
4837 struct btrfs_file_extent_item *fi;
4838 struct btrfs_leaf_ref *ref;
4839 struct disk_extent *new_extent;
4840 u64 bytenr;
4841 u64 num_bytes;
4842 u32 nritems;
4843 u32 i;
4844 int ext_index;
4845 int nr_extent;
4846 int ret;
4847
4848 new_extent = kmalloc(sizeof(*new_extent), GFP_NOFS);
4849 BUG_ON(!new_extent);
4850
4851 ref = btrfs_lookup_leaf_ref(root, leaf->start);
4852 BUG_ON(!ref);
4853
4854 ext_index = -1;
4855 nritems = btrfs_header_nritems(leaf);
4856 for (i = 0; i < nritems; i++) {
4857 btrfs_item_key_to_cpu(leaf, &key, i);
4858 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
4859 continue;
4860 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
4861 if (btrfs_file_extent_type(leaf, fi) ==
4862 BTRFS_FILE_EXTENT_INLINE)
4863 continue;
4864 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
4865 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
4866 if (bytenr == 0)
4867 continue;
4868
4869 ext_index++;
4870 if (bytenr >= group->key.objectid + group->key.offset ||
4871 bytenr + num_bytes <= group->key.objectid)
4872 continue;
4873
4874 extent_key.objectid = bytenr;
4875 extent_key.offset = num_bytes;
4876 extent_key.type = BTRFS_EXTENT_ITEM_KEY;
4877 nr_extent = 1;
4878 ret = get_new_locations(reloc_inode, &extent_key,
4879 group->key.objectid, 1,
4880 &new_extent, &nr_extent);
4881 if (ret > 0)
4882 continue;
4883 BUG_ON(ret < 0);
4884
4885 BUG_ON(ref->extents[ext_index].bytenr != bytenr);
4886 BUG_ON(ref->extents[ext_index].num_bytes != num_bytes);
4887 ref->extents[ext_index].bytenr = new_extent->disk_bytenr;
4888 ref->extents[ext_index].num_bytes = new_extent->disk_num_bytes;
4889
1a40e23b
ZY
4890 btrfs_set_file_extent_disk_bytenr(leaf, fi,
4891 new_extent->disk_bytenr);
4892 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
4893 new_extent->disk_num_bytes);
1a40e23b
ZY
4894 btrfs_mark_buffer_dirty(leaf);
4895
4896 ret = btrfs_inc_extent_ref(trans, root,
4897 new_extent->disk_bytenr,
4898 new_extent->disk_num_bytes,
4899 leaf->start,
4900 root->root_key.objectid,
3bb1a1bc 4901 trans->transid, key.objectid);
1a40e23b
ZY
4902 BUG_ON(ret);
4903 ret = btrfs_free_extent(trans, root,
4904 bytenr, num_bytes, leaf->start,
4905 btrfs_header_owner(leaf),
4906 btrfs_header_generation(leaf),
3bb1a1bc 4907 key.objectid, 0);
1a40e23b
ZY
4908 BUG_ON(ret);
4909 cond_resched();
4910 }
4911 kfree(new_extent);
4912 BUG_ON(ext_index + 1 != ref->nritems);
4913 btrfs_free_leaf_ref(root, ref);
4914 return 0;
4915}
4916
f82d02d9
YZ
4917int btrfs_free_reloc_root(struct btrfs_trans_handle *trans,
4918 struct btrfs_root *root)
1a40e23b
ZY
4919{
4920 struct btrfs_root *reloc_root;
f82d02d9 4921 int ret;
1a40e23b
ZY
4922
4923 if (root->reloc_root) {
4924 reloc_root = root->reloc_root;
4925 root->reloc_root = NULL;
4926 list_add(&reloc_root->dead_list,
4927 &root->fs_info->dead_reloc_roots);
f82d02d9
YZ
4928
4929 btrfs_set_root_bytenr(&reloc_root->root_item,
4930 reloc_root->node->start);
4931 btrfs_set_root_level(&root->root_item,
4932 btrfs_header_level(reloc_root->node));
4933 memset(&reloc_root->root_item.drop_progress, 0,
4934 sizeof(struct btrfs_disk_key));
4935 reloc_root->root_item.drop_level = 0;
4936
4937 ret = btrfs_update_root(trans, root->fs_info->tree_root,
4938 &reloc_root->root_key,
4939 &reloc_root->root_item);
4940 BUG_ON(ret);
1a40e23b
ZY
4941 }
4942 return 0;
4943}
4944
4945int btrfs_drop_dead_reloc_roots(struct btrfs_root *root)
4946{
4947 struct btrfs_trans_handle *trans;
4948 struct btrfs_root *reloc_root;
4949 struct btrfs_root *prev_root = NULL;
4950 struct list_head dead_roots;
4951 int ret;
4952 unsigned long nr;
4953
4954 INIT_LIST_HEAD(&dead_roots);
4955 list_splice_init(&root->fs_info->dead_reloc_roots, &dead_roots);
4956
4957 while (!list_empty(&dead_roots)) {
4958 reloc_root = list_entry(dead_roots.prev,
4959 struct btrfs_root, dead_list);
4960 list_del_init(&reloc_root->dead_list);
4961
4962 BUG_ON(reloc_root->commit_root != NULL);
4963 while (1) {
4964 trans = btrfs_join_transaction(root, 1);
4965 BUG_ON(!trans);
4966
4967 mutex_lock(&root->fs_info->drop_mutex);
4968 ret = btrfs_drop_snapshot(trans, reloc_root);
4969 if (ret != -EAGAIN)
4970 break;
4971 mutex_unlock(&root->fs_info->drop_mutex);
4972
4973 nr = trans->blocks_used;
4974 ret = btrfs_end_transaction(trans, root);
4975 BUG_ON(ret);
4976 btrfs_btree_balance_dirty(root, nr);
4977 }
4978
4979 free_extent_buffer(reloc_root->node);
4980
4981 ret = btrfs_del_root(trans, root->fs_info->tree_root,
4982 &reloc_root->root_key);
4983 BUG_ON(ret);
4984 mutex_unlock(&root->fs_info->drop_mutex);
4985
4986 nr = trans->blocks_used;
4987 ret = btrfs_end_transaction(trans, root);
4988 BUG_ON(ret);
4989 btrfs_btree_balance_dirty(root, nr);
4990
4991 kfree(prev_root);
4992 prev_root = reloc_root;
4993 }
4994 if (prev_root) {
4995 btrfs_remove_leaf_refs(prev_root, (u64)-1, 0);
4996 kfree(prev_root);
4997 }
4998 return 0;
4999}
5000
5001int btrfs_add_dead_reloc_root(struct btrfs_root *root)
5002{
5003 list_add(&root->dead_list, &root->fs_info->dead_reloc_roots);
5004 return 0;
5005}
5006
5007int btrfs_cleanup_reloc_trees(struct btrfs_root *root)
5008{
5009 struct btrfs_root *reloc_root;
5010 struct btrfs_trans_handle *trans;
5011 struct btrfs_key location;
5012 int found;
5013 int ret;
5014
5015 mutex_lock(&root->fs_info->tree_reloc_mutex);
5016 ret = btrfs_find_dead_roots(root, BTRFS_TREE_RELOC_OBJECTID, NULL);
5017 BUG_ON(ret);
5018 found = !list_empty(&root->fs_info->dead_reloc_roots);
5019 mutex_unlock(&root->fs_info->tree_reloc_mutex);
5020
5021 if (found) {
5022 trans = btrfs_start_transaction(root, 1);
5023 BUG_ON(!trans);
5024 ret = btrfs_commit_transaction(trans, root);
5025 BUG_ON(ret);
5026 }
5027
5028 location.objectid = BTRFS_DATA_RELOC_TREE_OBJECTID;
5029 location.offset = (u64)-1;
5030 location.type = BTRFS_ROOT_ITEM_KEY;
5031
5032 reloc_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
5033 BUG_ON(!reloc_root);
5034 btrfs_orphan_cleanup(reloc_root);
5035 return 0;
5036}
5037
d397712b 5038static noinline int init_reloc_tree(struct btrfs_trans_handle *trans,
1a40e23b
ZY
5039 struct btrfs_root *root)
5040{
5041 struct btrfs_root *reloc_root;
5042 struct extent_buffer *eb;
5043 struct btrfs_root_item *root_item;
5044 struct btrfs_key root_key;
5045 int ret;
5046
5047 BUG_ON(!root->ref_cows);
5048 if (root->reloc_root)
5049 return 0;
5050
5051 root_item = kmalloc(sizeof(*root_item), GFP_NOFS);
5052 BUG_ON(!root_item);
5053
5054 ret = btrfs_copy_root(trans, root, root->commit_root,
5055 &eb, BTRFS_TREE_RELOC_OBJECTID);
5056 BUG_ON(ret);
5057
5058 root_key.objectid = BTRFS_TREE_RELOC_OBJECTID;
5059 root_key.offset = root->root_key.objectid;
5060 root_key.type = BTRFS_ROOT_ITEM_KEY;
5061
5062 memcpy(root_item, &root->root_item, sizeof(root_item));
5063 btrfs_set_root_refs(root_item, 0);
5064 btrfs_set_root_bytenr(root_item, eb->start);
5065 btrfs_set_root_level(root_item, btrfs_header_level(eb));
84234f3a 5066 btrfs_set_root_generation(root_item, trans->transid);
1a40e23b
ZY
5067
5068 btrfs_tree_unlock(eb);
5069 free_extent_buffer(eb);
5070
5071 ret = btrfs_insert_root(trans, root->fs_info->tree_root,
5072 &root_key, root_item);
5073 BUG_ON(ret);
5074 kfree(root_item);
5075
5076 reloc_root = btrfs_read_fs_root_no_radix(root->fs_info->tree_root,
5077 &root_key);
5078 BUG_ON(!reloc_root);
5079 reloc_root->last_trans = trans->transid;
5080 reloc_root->commit_root = NULL;
5081 reloc_root->ref_tree = &root->fs_info->reloc_ref_tree;
5082
5083 root->reloc_root = reloc_root;
5084 return 0;
5085}
5086
5087/*
5088 * Core function of space balance.
5089 *
5090 * The idea is using reloc trees to relocate tree blocks in reference
f82d02d9
YZ
5091 * counted roots. There is one reloc tree for each subvol, and all
5092 * reloc trees share same root key objectid. Reloc trees are snapshots
5093 * of the latest committed roots of subvols (root->commit_root).
5094 *
5095 * To relocate a tree block referenced by a subvol, there are two steps.
5096 * COW the block through subvol's reloc tree, then update block pointer
5097 * in the subvol to point to the new block. Since all reloc trees share
5098 * same root key objectid, doing special handing for tree blocks owned
5099 * by them is easy. Once a tree block has been COWed in one reloc tree,
5100 * we can use the resulting new block directly when the same block is
5101 * required to COW again through other reloc trees. By this way, relocated
5102 * tree blocks are shared between reloc trees, so they are also shared
5103 * between subvols.
1a40e23b 5104 */
d397712b 5105static noinline int relocate_one_path(struct btrfs_trans_handle *trans,
1a40e23b
ZY
5106 struct btrfs_root *root,
5107 struct btrfs_path *path,
5108 struct btrfs_key *first_key,
5109 struct btrfs_ref_path *ref_path,
5110 struct btrfs_block_group_cache *group,
5111 struct inode *reloc_inode)
5112{
5113 struct btrfs_root *reloc_root;
5114 struct extent_buffer *eb = NULL;
5115 struct btrfs_key *keys;
5116 u64 *nodes;
5117 int level;
f82d02d9 5118 int shared_level;
1a40e23b 5119 int lowest_level = 0;
1a40e23b
ZY
5120 int ret;
5121
5122 if (ref_path->owner_objectid < BTRFS_FIRST_FREE_OBJECTID)
5123 lowest_level = ref_path->owner_objectid;
5124
f82d02d9 5125 if (!root->ref_cows) {
1a40e23b
ZY
5126 path->lowest_level = lowest_level;
5127 ret = btrfs_search_slot(trans, root, first_key, path, 0, 1);
5128 BUG_ON(ret < 0);
5129 path->lowest_level = 0;
5130 btrfs_release_path(root, path);
5131 return 0;
5132 }
5133
1a40e23b
ZY
5134 mutex_lock(&root->fs_info->tree_reloc_mutex);
5135 ret = init_reloc_tree(trans, root);
5136 BUG_ON(ret);
5137 reloc_root = root->reloc_root;
5138
f82d02d9
YZ
5139 shared_level = ref_path->shared_level;
5140 ref_path->shared_level = BTRFS_MAX_LEVEL - 1;
1a40e23b 5141
f82d02d9
YZ
5142 keys = ref_path->node_keys;
5143 nodes = ref_path->new_nodes;
5144 memset(&keys[shared_level + 1], 0,
5145 sizeof(*keys) * (BTRFS_MAX_LEVEL - shared_level - 1));
5146 memset(&nodes[shared_level + 1], 0,
5147 sizeof(*nodes) * (BTRFS_MAX_LEVEL - shared_level - 1));
1a40e23b 5148
f82d02d9
YZ
5149 if (nodes[lowest_level] == 0) {
5150 path->lowest_level = lowest_level;
5151 ret = btrfs_search_slot(trans, reloc_root, first_key, path,
5152 0, 1);
5153 BUG_ON(ret);
5154 for (level = lowest_level; level < BTRFS_MAX_LEVEL; level++) {
5155 eb = path->nodes[level];
5156 if (!eb || eb == reloc_root->node)
5157 break;
5158 nodes[level] = eb->start;
5159 if (level == 0)
5160 btrfs_item_key_to_cpu(eb, &keys[level], 0);
5161 else
5162 btrfs_node_key_to_cpu(eb, &keys[level], 0);
5163 }
2b82032c
YZ
5164 if (nodes[0] &&
5165 ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
f82d02d9
YZ
5166 eb = path->nodes[0];
5167 ret = replace_extents_in_leaf(trans, reloc_root, eb,
5168 group, reloc_inode);
5169 BUG_ON(ret);
5170 }
5171 btrfs_release_path(reloc_root, path);
5172 } else {
1a40e23b 5173 ret = btrfs_merge_path(trans, reloc_root, keys, nodes,
f82d02d9 5174 lowest_level);
1a40e23b
ZY
5175 BUG_ON(ret);
5176 }
5177
1a40e23b
ZY
5178 /*
5179 * replace tree blocks in the fs tree with tree blocks in
5180 * the reloc tree.
5181 */
5182 ret = btrfs_merge_path(trans, root, keys, nodes, lowest_level);
5183 BUG_ON(ret < 0);
5184
5185 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
f82d02d9
YZ
5186 ret = btrfs_search_slot(trans, reloc_root, first_key, path,
5187 0, 0);
5188 BUG_ON(ret);
5189 extent_buffer_get(path->nodes[0]);
5190 eb = path->nodes[0];
5191 btrfs_release_path(reloc_root, path);
1a40e23b
ZY
5192 ret = invalidate_extent_cache(reloc_root, eb, group, root);
5193 BUG_ON(ret);
5194 free_extent_buffer(eb);
5195 }
1a40e23b 5196
f82d02d9 5197 mutex_unlock(&root->fs_info->tree_reloc_mutex);
1a40e23b 5198 path->lowest_level = 0;
1a40e23b
ZY
5199 return 0;
5200}
5201
d397712b 5202static noinline int relocate_tree_block(struct btrfs_trans_handle *trans,
1a40e23b
ZY
5203 struct btrfs_root *root,
5204 struct btrfs_path *path,
5205 struct btrfs_key *first_key,
5206 struct btrfs_ref_path *ref_path)
5207{
5208 int ret;
1a40e23b
ZY
5209
5210 ret = relocate_one_path(trans, root, path, first_key,
5211 ref_path, NULL, NULL);
5212 BUG_ON(ret);
5213
5214 if (root == root->fs_info->extent_root)
5215 btrfs_extent_post_op(trans, root);
1a40e23b
ZY
5216
5217 return 0;
5218}
5219
d397712b 5220static noinline int del_extent_zero(struct btrfs_trans_handle *trans,
1a40e23b
ZY
5221 struct btrfs_root *extent_root,
5222 struct btrfs_path *path,
5223 struct btrfs_key *extent_key)
5224{
5225 int ret;
5226
1a40e23b
ZY
5227 ret = btrfs_search_slot(trans, extent_root, extent_key, path, -1, 1);
5228 if (ret)
5229 goto out;
5230 ret = btrfs_del_item(trans, extent_root, path);
5231out:
5232 btrfs_release_path(extent_root, path);
1a40e23b
ZY
5233 return ret;
5234}
5235
d397712b 5236static noinline struct btrfs_root *read_ref_root(struct btrfs_fs_info *fs_info,
1a40e23b
ZY
5237 struct btrfs_ref_path *ref_path)
5238{
5239 struct btrfs_key root_key;
5240
5241 root_key.objectid = ref_path->root_objectid;
5242 root_key.type = BTRFS_ROOT_ITEM_KEY;
5243 if (is_cowonly_root(ref_path->root_objectid))
5244 root_key.offset = 0;
5245 else
5246 root_key.offset = (u64)-1;
5247
5248 return btrfs_read_fs_root_no_name(fs_info, &root_key);
5249}
5250
d397712b 5251static noinline int relocate_one_extent(struct btrfs_root *extent_root,
1a40e23b
ZY
5252 struct btrfs_path *path,
5253 struct btrfs_key *extent_key,
5254 struct btrfs_block_group_cache *group,
5255 struct inode *reloc_inode, int pass)
5256{
5257 struct btrfs_trans_handle *trans;
5258 struct btrfs_root *found_root;
5259 struct btrfs_ref_path *ref_path = NULL;
5260 struct disk_extent *new_extents = NULL;
5261 int nr_extents = 0;
5262 int loops;
5263 int ret;
5264 int level;
5265 struct btrfs_key first_key;
5266 u64 prev_block = 0;
5267
1a40e23b
ZY
5268
5269 trans = btrfs_start_transaction(extent_root, 1);
5270 BUG_ON(!trans);
5271
5272 if (extent_key->objectid == 0) {
5273 ret = del_extent_zero(trans, extent_root, path, extent_key);
5274 goto out;
5275 }
5276
5277 ref_path = kmalloc(sizeof(*ref_path), GFP_NOFS);
5278 if (!ref_path) {
d397712b
CM
5279 ret = -ENOMEM;
5280 goto out;
1a40e23b
ZY
5281 }
5282
5283 for (loops = 0; ; loops++) {
5284 if (loops == 0) {
5285 ret = btrfs_first_ref_path(trans, extent_root, ref_path,
5286 extent_key->objectid);
5287 } else {
5288 ret = btrfs_next_ref_path(trans, extent_root, ref_path);
5289 }
5290 if (ret < 0)
5291 goto out;
5292 if (ret > 0)
5293 break;
5294
5295 if (ref_path->root_objectid == BTRFS_TREE_LOG_OBJECTID ||
5296 ref_path->root_objectid == BTRFS_TREE_RELOC_OBJECTID)
5297 continue;
5298
5299 found_root = read_ref_root(extent_root->fs_info, ref_path);
5300 BUG_ON(!found_root);
5301 /*
5302 * for reference counted tree, only process reference paths
5303 * rooted at the latest committed root.
5304 */
5305 if (found_root->ref_cows &&
5306 ref_path->root_generation != found_root->root_key.offset)
5307 continue;
5308
5309 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
5310 if (pass == 0) {
5311 /*
5312 * copy data extents to new locations
5313 */
5314 u64 group_start = group->key.objectid;
5315 ret = relocate_data_extent(reloc_inode,
5316 extent_key,
5317 group_start);
5318 if (ret < 0)
5319 goto out;
5320 break;
5321 }
5322 level = 0;
5323 } else {
5324 level = ref_path->owner_objectid;
5325 }
5326
5327 if (prev_block != ref_path->nodes[level]) {
5328 struct extent_buffer *eb;
5329 u64 block_start = ref_path->nodes[level];
5330 u64 block_size = btrfs_level_size(found_root, level);
5331
5332 eb = read_tree_block(found_root, block_start,
5333 block_size, 0);
5334 btrfs_tree_lock(eb);
5335 BUG_ON(level != btrfs_header_level(eb));
5336
5337 if (level == 0)
5338 btrfs_item_key_to_cpu(eb, &first_key, 0);
5339 else
5340 btrfs_node_key_to_cpu(eb, &first_key, 0);
5341
5342 btrfs_tree_unlock(eb);
5343 free_extent_buffer(eb);
5344 prev_block = block_start;
5345 }
5346
e4404d6e
YZ
5347 btrfs_record_root_in_trans(found_root);
5348 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
5349 /*
5350 * try to update data extent references while
5351 * keeping metadata shared between snapshots.
5352 */
5353 if (pass == 1) {
5354 ret = relocate_one_path(trans, found_root,
5355 path, &first_key, ref_path,
5356 group, reloc_inode);
5357 if (ret < 0)
5358 goto out;
5359 continue;
5360 }
1a40e23b
ZY
5361 /*
5362 * use fallback method to process the remaining
5363 * references.
5364 */
5365 if (!new_extents) {
5366 u64 group_start = group->key.objectid;
d899e052
YZ
5367 new_extents = kmalloc(sizeof(*new_extents),
5368 GFP_NOFS);
5369 nr_extents = 1;
1a40e23b
ZY
5370 ret = get_new_locations(reloc_inode,
5371 extent_key,
d899e052 5372 group_start, 1,
1a40e23b
ZY
5373 &new_extents,
5374 &nr_extents);
d899e052 5375 if (ret)
1a40e23b
ZY
5376 goto out;
5377 }
1a40e23b
ZY
5378 ret = replace_one_extent(trans, found_root,
5379 path, extent_key,
5380 &first_key, ref_path,
5381 new_extents, nr_extents);
e4404d6e 5382 } else {
1a40e23b
ZY
5383 ret = relocate_tree_block(trans, found_root, path,
5384 &first_key, ref_path);
1a40e23b
ZY
5385 }
5386 if (ret < 0)
5387 goto out;
5388 }
5389 ret = 0;
5390out:
5391 btrfs_end_transaction(trans, extent_root);
5392 kfree(new_extents);
5393 kfree(ref_path);
1a40e23b
ZY
5394 return ret;
5395}
5396
ec44a35c
CM
5397static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
5398{
5399 u64 num_devices;
5400 u64 stripped = BTRFS_BLOCK_GROUP_RAID0 |
5401 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
5402
2b82032c 5403 num_devices = root->fs_info->fs_devices->rw_devices;
ec44a35c
CM
5404 if (num_devices == 1) {
5405 stripped |= BTRFS_BLOCK_GROUP_DUP;
5406 stripped = flags & ~stripped;
5407
5408 /* turn raid0 into single device chunks */
5409 if (flags & BTRFS_BLOCK_GROUP_RAID0)
5410 return stripped;
5411
5412 /* turn mirroring into duplication */
5413 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
5414 BTRFS_BLOCK_GROUP_RAID10))
5415 return stripped | BTRFS_BLOCK_GROUP_DUP;
5416 return flags;
5417 } else {
5418 /* they already had raid on here, just return */
ec44a35c
CM
5419 if (flags & stripped)
5420 return flags;
5421
5422 stripped |= BTRFS_BLOCK_GROUP_DUP;
5423 stripped = flags & ~stripped;
5424
5425 /* switch duplicated blocks with raid1 */
5426 if (flags & BTRFS_BLOCK_GROUP_DUP)
5427 return stripped | BTRFS_BLOCK_GROUP_RAID1;
5428
5429 /* turn single device chunks into raid0 */
5430 return stripped | BTRFS_BLOCK_GROUP_RAID0;
5431 }
5432 return flags;
5433}
5434
b2950863 5435static int __alloc_chunk_for_shrink(struct btrfs_root *root,
0ef3e66b
CM
5436 struct btrfs_block_group_cache *shrink_block_group,
5437 int force)
5438{
5439 struct btrfs_trans_handle *trans;
5440 u64 new_alloc_flags;
5441 u64 calc;
5442
c286ac48 5443 spin_lock(&shrink_block_group->lock);
0ef3e66b 5444 if (btrfs_block_group_used(&shrink_block_group->item) > 0) {
c286ac48 5445 spin_unlock(&shrink_block_group->lock);
c286ac48 5446
0ef3e66b 5447 trans = btrfs_start_transaction(root, 1);
c286ac48 5448 spin_lock(&shrink_block_group->lock);
7d9eb12c 5449
0ef3e66b
CM
5450 new_alloc_flags = update_block_group_flags(root,
5451 shrink_block_group->flags);
5452 if (new_alloc_flags != shrink_block_group->flags) {
5453 calc =
5454 btrfs_block_group_used(&shrink_block_group->item);
5455 } else {
5456 calc = shrink_block_group->key.offset;
5457 }
c286ac48
CM
5458 spin_unlock(&shrink_block_group->lock);
5459
0ef3e66b
CM
5460 do_chunk_alloc(trans, root->fs_info->extent_root,
5461 calc + 2 * 1024 * 1024, new_alloc_flags, force);
7d9eb12c 5462
0ef3e66b 5463 btrfs_end_transaction(trans, root);
c286ac48
CM
5464 } else
5465 spin_unlock(&shrink_block_group->lock);
0ef3e66b
CM
5466 return 0;
5467}
5468
1a40e23b
ZY
5469static int __insert_orphan_inode(struct btrfs_trans_handle *trans,
5470 struct btrfs_root *root,
5471 u64 objectid, u64 size)
5472{
5473 struct btrfs_path *path;
5474 struct btrfs_inode_item *item;
5475 struct extent_buffer *leaf;
5476 int ret;
5477
5478 path = btrfs_alloc_path();
5479 if (!path)
5480 return -ENOMEM;
5481
5482 ret = btrfs_insert_empty_inode(trans, root, path, objectid);
5483 if (ret)
5484 goto out;
5485
5486 leaf = path->nodes[0];
5487 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_inode_item);
5488 memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item));
5489 btrfs_set_inode_generation(leaf, item, 1);
5490 btrfs_set_inode_size(leaf, item, size);
5491 btrfs_set_inode_mode(leaf, item, S_IFREG | 0600);
0403e47e 5492 btrfs_set_inode_flags(leaf, item, BTRFS_INODE_NOCOMPRESS);
1a40e23b
ZY
5493 btrfs_mark_buffer_dirty(leaf);
5494 btrfs_release_path(root, path);
5495out:
5496 btrfs_free_path(path);
5497 return ret;
5498}
5499
d397712b 5500static noinline struct inode *create_reloc_inode(struct btrfs_fs_info *fs_info,
1a40e23b
ZY
5501 struct btrfs_block_group_cache *group)
5502{
5503 struct inode *inode = NULL;
5504 struct btrfs_trans_handle *trans;
5505 struct btrfs_root *root;
5506 struct btrfs_key root_key;
5507 u64 objectid = BTRFS_FIRST_FREE_OBJECTID;
5508 int err = 0;
5509
5510 root_key.objectid = BTRFS_DATA_RELOC_TREE_OBJECTID;
5511 root_key.type = BTRFS_ROOT_ITEM_KEY;
5512 root_key.offset = (u64)-1;
5513 root = btrfs_read_fs_root_no_name(fs_info, &root_key);
5514 if (IS_ERR(root))
5515 return ERR_CAST(root);
5516
5517 trans = btrfs_start_transaction(root, 1);
5518 BUG_ON(!trans);
5519
5520 err = btrfs_find_free_objectid(trans, root, objectid, &objectid);
5521 if (err)
5522 goto out;
5523
5524 err = __insert_orphan_inode(trans, root, objectid, group->key.offset);
5525 BUG_ON(err);
5526
5527 err = btrfs_insert_file_extent(trans, root, objectid, 0, 0, 0,
c8b97818
CM
5528 group->key.offset, 0, group->key.offset,
5529 0, 0, 0);
1a40e23b
ZY
5530 BUG_ON(err);
5531
5532 inode = btrfs_iget_locked(root->fs_info->sb, objectid, root);
5533 if (inode->i_state & I_NEW) {
5534 BTRFS_I(inode)->root = root;
5535 BTRFS_I(inode)->location.objectid = objectid;
5536 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
5537 BTRFS_I(inode)->location.offset = 0;
5538 btrfs_read_locked_inode(inode);
5539 unlock_new_inode(inode);
5540 BUG_ON(is_bad_inode(inode));
5541 } else {
5542 BUG_ON(1);
5543 }
17d217fe 5544 BTRFS_I(inode)->index_cnt = group->key.objectid;
1a40e23b
ZY
5545
5546 err = btrfs_orphan_add(trans, inode);
5547out:
5548 btrfs_end_transaction(trans, root);
5549 if (err) {
5550 if (inode)
5551 iput(inode);
5552 inode = ERR_PTR(err);
5553 }
5554 return inode;
5555}
5556
17d217fe
YZ
5557int btrfs_reloc_clone_csums(struct inode *inode, u64 file_pos, u64 len)
5558{
5559
5560 struct btrfs_ordered_sum *sums;
5561 struct btrfs_sector_sum *sector_sum;
5562 struct btrfs_ordered_extent *ordered;
5563 struct btrfs_root *root = BTRFS_I(inode)->root;
5564 struct list_head list;
5565 size_t offset;
5566 int ret;
5567 u64 disk_bytenr;
5568
5569 INIT_LIST_HEAD(&list);
5570
5571 ordered = btrfs_lookup_ordered_extent(inode, file_pos);
5572 BUG_ON(ordered->file_offset != file_pos || ordered->len != len);
5573
5574 disk_bytenr = file_pos + BTRFS_I(inode)->index_cnt;
07d400a6 5575 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, disk_bytenr,
17d217fe
YZ
5576 disk_bytenr + len - 1, &list);
5577
5578 while (!list_empty(&list)) {
5579 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
5580 list_del_init(&sums->list);
5581
5582 sector_sum = sums->sums;
5583 sums->bytenr = ordered->start;
5584
5585 offset = 0;
5586 while (offset < sums->len) {
5587 sector_sum->bytenr += ordered->start - disk_bytenr;
5588 sector_sum++;
5589 offset += root->sectorsize;
5590 }
5591
5592 btrfs_add_ordered_sum(inode, ordered, sums);
5593 }
5594 btrfs_put_ordered_extent(ordered);
5595 return 0;
5596}
5597
1a40e23b 5598int btrfs_relocate_block_group(struct btrfs_root *root, u64 group_start)
edbd8d4e
CM
5599{
5600 struct btrfs_trans_handle *trans;
edbd8d4e 5601 struct btrfs_path *path;
1a40e23b
ZY
5602 struct btrfs_fs_info *info = root->fs_info;
5603 struct extent_buffer *leaf;
5604 struct inode *reloc_inode;
5605 struct btrfs_block_group_cache *block_group;
5606 struct btrfs_key key;
d899e052 5607 u64 skipped;
edbd8d4e
CM
5608 u64 cur_byte;
5609 u64 total_found;
edbd8d4e
CM
5610 u32 nritems;
5611 int ret;
a061fc8d 5612 int progress;
1a40e23b 5613 int pass = 0;
edbd8d4e 5614
1a40e23b
ZY
5615 root = root->fs_info->extent_root;
5616
5617 block_group = btrfs_lookup_block_group(info, group_start);
5618 BUG_ON(!block_group);
8f18cf13 5619
d397712b 5620 printk(KERN_INFO "btrfs relocating block group %llu flags %llu\n",
1a40e23b
ZY
5621 (unsigned long long)block_group->key.objectid,
5622 (unsigned long long)block_group->flags);
8f18cf13 5623
edbd8d4e 5624 path = btrfs_alloc_path();
1a40e23b 5625 BUG_ON(!path);
edbd8d4e 5626
1a40e23b
ZY
5627 reloc_inode = create_reloc_inode(info, block_group);
5628 BUG_ON(IS_ERR(reloc_inode));
323da79c 5629
1a40e23b 5630 __alloc_chunk_for_shrink(root, block_group, 1);
c146afad 5631 set_block_group_readonly(block_group);
323da79c 5632
1a40e23b
ZY
5633 btrfs_start_delalloc_inodes(info->tree_root);
5634 btrfs_wait_ordered_extents(info->tree_root, 0);
5635again:
d899e052 5636 skipped = 0;
edbd8d4e 5637 total_found = 0;
a061fc8d 5638 progress = 0;
1a40e23b 5639 key.objectid = block_group->key.objectid;
edbd8d4e
CM
5640 key.offset = 0;
5641 key.type = 0;
73e48b27 5642 cur_byte = key.objectid;
4313b399 5643
1a40e23b
ZY
5644 trans = btrfs_start_transaction(info->tree_root, 1);
5645 btrfs_commit_transaction(trans, info->tree_root);
ea8c2819 5646
1a40e23b
ZY
5647 mutex_lock(&root->fs_info->cleaner_mutex);
5648 btrfs_clean_old_snapshots(info->tree_root);
5649 btrfs_remove_leaf_refs(info->tree_root, (u64)-1, 1);
5650 mutex_unlock(&root->fs_info->cleaner_mutex);
ea8c2819 5651
d397712b 5652 while (1) {
edbd8d4e
CM
5653 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5654 if (ret < 0)
5655 goto out;
7d9eb12c 5656next:
edbd8d4e 5657 leaf = path->nodes[0];
73e48b27 5658 nritems = btrfs_header_nritems(leaf);
73e48b27
Y
5659 if (path->slots[0] >= nritems) {
5660 ret = btrfs_next_leaf(root, path);
5661 if (ret < 0)
5662 goto out;
5663 if (ret == 1) {
5664 ret = 0;
5665 break;
edbd8d4e 5666 }
73e48b27
Y
5667 leaf = path->nodes[0];
5668 nritems = btrfs_header_nritems(leaf);
edbd8d4e 5669 }
73e48b27 5670
1a40e23b 5671 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
725c8463 5672
1a40e23b
ZY
5673 if (key.objectid >= block_group->key.objectid +
5674 block_group->key.offset)
8f18cf13
CM
5675 break;
5676
725c8463 5677 if (progress && need_resched()) {
725c8463 5678 btrfs_release_path(root, path);
1a40e23b 5679 cond_resched();
725c8463 5680 progress = 0;
1a40e23b 5681 continue;
725c8463
CM
5682 }
5683 progress = 1;
5684
1a40e23b
ZY
5685 if (btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY ||
5686 key.objectid + key.offset <= cur_byte) {
edbd8d4e 5687 path->slots[0]++;
edbd8d4e
CM
5688 goto next;
5689 }
73e48b27 5690
edbd8d4e 5691 total_found++;
1a40e23b 5692 cur_byte = key.objectid + key.offset;
edbd8d4e 5693 btrfs_release_path(root, path);
edbd8d4e 5694
1a40e23b
ZY
5695 __alloc_chunk_for_shrink(root, block_group, 0);
5696 ret = relocate_one_extent(root, path, &key, block_group,
5697 reloc_inode, pass);
5698 BUG_ON(ret < 0);
d899e052
YZ
5699 if (ret > 0)
5700 skipped++;
edbd8d4e 5701
1a40e23b
ZY
5702 key.objectid = cur_byte;
5703 key.type = 0;
5704 key.offset = 0;
edbd8d4e
CM
5705 }
5706
1a40e23b 5707 btrfs_release_path(root, path);
7d9eb12c 5708
1a40e23b
ZY
5709 if (pass == 0) {
5710 btrfs_wait_ordered_range(reloc_inode, 0, (u64)-1);
5711 invalidate_mapping_pages(reloc_inode->i_mapping, 0, -1);
8e8a1e31 5712 }
73e48b27 5713
1a40e23b 5714 if (total_found > 0) {
d397712b 5715 printk(KERN_INFO "btrfs found %llu extents in pass %d\n",
1a40e23b
ZY
5716 (unsigned long long)total_found, pass);
5717 pass++;
d899e052
YZ
5718 if (total_found == skipped && pass > 2) {
5719 iput(reloc_inode);
5720 reloc_inode = create_reloc_inode(info, block_group);
5721 pass = 0;
5722 }
1a40e23b 5723 goto again;
0f9dd46c 5724 }
0ef3e66b 5725
1a40e23b
ZY
5726 /* delete reloc_inode */
5727 iput(reloc_inode);
5728
5729 /* unpin extents in this range */
5730 trans = btrfs_start_transaction(info->tree_root, 1);
5731 btrfs_commit_transaction(trans, info->tree_root);
0ef3e66b 5732
1a40e23b
ZY
5733 spin_lock(&block_group->lock);
5734 WARN_ON(block_group->pinned > 0);
5735 WARN_ON(block_group->reserved > 0);
5736 WARN_ON(btrfs_block_group_used(&block_group->item) > 0);
5737 spin_unlock(&block_group->lock);
d2fb3437 5738 put_block_group(block_group);
1a40e23b 5739 ret = 0;
edbd8d4e 5740out:
1a40e23b 5741 btrfs_free_path(path);
edbd8d4e
CM
5742 return ret;
5743}
5744
b2950863
CH
5745static int find_first_block_group(struct btrfs_root *root,
5746 struct btrfs_path *path, struct btrfs_key *key)
0b86a832 5747{
925baedd 5748 int ret = 0;
0b86a832
CM
5749 struct btrfs_key found_key;
5750 struct extent_buffer *leaf;
5751 int slot;
edbd8d4e 5752
0b86a832
CM
5753 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
5754 if (ret < 0)
925baedd
CM
5755 goto out;
5756
d397712b 5757 while (1) {
0b86a832 5758 slot = path->slots[0];
edbd8d4e 5759 leaf = path->nodes[0];
0b86a832
CM
5760 if (slot >= btrfs_header_nritems(leaf)) {
5761 ret = btrfs_next_leaf(root, path);
5762 if (ret == 0)
5763 continue;
5764 if (ret < 0)
925baedd 5765 goto out;
0b86a832 5766 break;
edbd8d4e 5767 }
0b86a832 5768 btrfs_item_key_to_cpu(leaf, &found_key, slot);
edbd8d4e 5769
0b86a832 5770 if (found_key.objectid >= key->objectid &&
925baedd
CM
5771 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
5772 ret = 0;
5773 goto out;
5774 }
0b86a832 5775 path->slots[0]++;
edbd8d4e 5776 }
0b86a832 5777 ret = -ENOENT;
925baedd 5778out:
0b86a832 5779 return ret;
edbd8d4e
CM
5780}
5781
1a40e23b
ZY
5782int btrfs_free_block_groups(struct btrfs_fs_info *info)
5783{
5784 struct btrfs_block_group_cache *block_group;
5785 struct rb_node *n;
5786
1a40e23b
ZY
5787 spin_lock(&info->block_group_cache_lock);
5788 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
5789 block_group = rb_entry(n, struct btrfs_block_group_cache,
5790 cache_node);
1a40e23b
ZY
5791 rb_erase(&block_group->cache_node,
5792 &info->block_group_cache_tree);
d899e052
YZ
5793 spin_unlock(&info->block_group_cache_lock);
5794
5795 btrfs_remove_free_space_cache(block_group);
80eb234a 5796 down_write(&block_group->space_info->groups_sem);
1a40e23b 5797 list_del(&block_group->list);
80eb234a 5798 up_write(&block_group->space_info->groups_sem);
d2fb3437
YZ
5799
5800 WARN_ON(atomic_read(&block_group->count) != 1);
1a40e23b 5801 kfree(block_group);
d899e052
YZ
5802
5803 spin_lock(&info->block_group_cache_lock);
1a40e23b
ZY
5804 }
5805 spin_unlock(&info->block_group_cache_lock);
1a40e23b
ZY
5806 return 0;
5807}
5808
9078a3e1
CM
5809int btrfs_read_block_groups(struct btrfs_root *root)
5810{
5811 struct btrfs_path *path;
5812 int ret;
9078a3e1 5813 struct btrfs_block_group_cache *cache;
be744175 5814 struct btrfs_fs_info *info = root->fs_info;
6324fbf3 5815 struct btrfs_space_info *space_info;
9078a3e1
CM
5816 struct btrfs_key key;
5817 struct btrfs_key found_key;
5f39d397 5818 struct extent_buffer *leaf;
96b5179d 5819
be744175 5820 root = info->extent_root;
9078a3e1 5821 key.objectid = 0;
0b86a832 5822 key.offset = 0;
9078a3e1 5823 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
9078a3e1
CM
5824 path = btrfs_alloc_path();
5825 if (!path)
5826 return -ENOMEM;
5827
d397712b 5828 while (1) {
0b86a832
CM
5829 ret = find_first_block_group(root, path, &key);
5830 if (ret > 0) {
5831 ret = 0;
5832 goto error;
9078a3e1 5833 }
0b86a832
CM
5834 if (ret != 0)
5835 goto error;
5836
5f39d397
CM
5837 leaf = path->nodes[0];
5838 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
8f18cf13 5839 cache = kzalloc(sizeof(*cache), GFP_NOFS);
9078a3e1 5840 if (!cache) {
0b86a832 5841 ret = -ENOMEM;
9078a3e1
CM
5842 break;
5843 }
3e1ad54f 5844
d2fb3437 5845 atomic_set(&cache->count, 1);
c286ac48 5846 spin_lock_init(&cache->lock);
25179201 5847 mutex_init(&cache->alloc_mutex);
ea6a478e 5848 mutex_init(&cache->cache_mutex);
0f9dd46c 5849 INIT_LIST_HEAD(&cache->list);
5f39d397
CM
5850 read_extent_buffer(leaf, &cache->item,
5851 btrfs_item_ptr_offset(leaf, path->slots[0]),
5852 sizeof(cache->item));
9078a3e1 5853 memcpy(&cache->key, &found_key, sizeof(found_key));
0b86a832 5854
9078a3e1
CM
5855 key.objectid = found_key.objectid + found_key.offset;
5856 btrfs_release_path(root, path);
0b86a832 5857 cache->flags = btrfs_block_group_flags(&cache->item);
96b5179d 5858
6324fbf3
CM
5859 ret = update_space_info(info, cache->flags, found_key.offset,
5860 btrfs_block_group_used(&cache->item),
5861 &space_info);
5862 BUG_ON(ret);
5863 cache->space_info = space_info;
80eb234a
JB
5864 down_write(&space_info->groups_sem);
5865 list_add_tail(&cache->list, &space_info->block_groups);
5866 up_write(&space_info->groups_sem);
0f9dd46c
JB
5867
5868 ret = btrfs_add_block_group_cache(root->fs_info, cache);
5869 BUG_ON(ret);
75ccf47d
CM
5870
5871 set_avail_alloc_bits(root->fs_info, cache->flags);
2b82032c
YZ
5872 if (btrfs_chunk_readonly(root, cache->key.objectid))
5873 set_block_group_readonly(cache);
9078a3e1 5874 }
0b86a832
CM
5875 ret = 0;
5876error:
9078a3e1 5877 btrfs_free_path(path);
0b86a832 5878 return ret;
9078a3e1 5879}
6324fbf3
CM
5880
5881int btrfs_make_block_group(struct btrfs_trans_handle *trans,
5882 struct btrfs_root *root, u64 bytes_used,
e17cade2 5883 u64 type, u64 chunk_objectid, u64 chunk_offset,
6324fbf3
CM
5884 u64 size)
5885{
5886 int ret;
6324fbf3
CM
5887 struct btrfs_root *extent_root;
5888 struct btrfs_block_group_cache *cache;
6324fbf3
CM
5889
5890 extent_root = root->fs_info->extent_root;
6324fbf3 5891
e02119d5
CM
5892 root->fs_info->last_trans_new_blockgroup = trans->transid;
5893
8f18cf13 5894 cache = kzalloc(sizeof(*cache), GFP_NOFS);
0f9dd46c
JB
5895 if (!cache)
5896 return -ENOMEM;
5897
e17cade2 5898 cache->key.objectid = chunk_offset;
6324fbf3 5899 cache->key.offset = size;
d2fb3437
YZ
5900 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
5901 atomic_set(&cache->count, 1);
c286ac48 5902 spin_lock_init(&cache->lock);
25179201 5903 mutex_init(&cache->alloc_mutex);
ea6a478e 5904 mutex_init(&cache->cache_mutex);
0f9dd46c 5905 INIT_LIST_HEAD(&cache->list);
0ef3e66b 5906
6324fbf3 5907 btrfs_set_block_group_used(&cache->item, bytes_used);
6324fbf3
CM
5908 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
5909 cache->flags = type;
5910 btrfs_set_block_group_flags(&cache->item, type);
5911
5912 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
5913 &cache->space_info);
5914 BUG_ON(ret);
80eb234a
JB
5915 down_write(&cache->space_info->groups_sem);
5916 list_add_tail(&cache->list, &cache->space_info->block_groups);
5917 up_write(&cache->space_info->groups_sem);
6324fbf3 5918
0f9dd46c
JB
5919 ret = btrfs_add_block_group_cache(root->fs_info, cache);
5920 BUG_ON(ret);
c286ac48 5921
6324fbf3
CM
5922 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
5923 sizeof(cache->item));
5924 BUG_ON(ret);
5925
87ef2bb4
CM
5926 finish_current_insert(trans, extent_root, 0);
5927 ret = del_pending_extents(trans, extent_root, 0);
6324fbf3 5928 BUG_ON(ret);
d18a2c44 5929 set_avail_alloc_bits(extent_root->fs_info, type);
925baedd 5930
6324fbf3
CM
5931 return 0;
5932}
1a40e23b
ZY
5933
5934int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
5935 struct btrfs_root *root, u64 group_start)
5936{
5937 struct btrfs_path *path;
5938 struct btrfs_block_group_cache *block_group;
5939 struct btrfs_key key;
5940 int ret;
5941
1a40e23b
ZY
5942 root = root->fs_info->extent_root;
5943
5944 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
5945 BUG_ON(!block_group);
c146afad 5946 BUG_ON(!block_group->ro);
1a40e23b
ZY
5947
5948 memcpy(&key, &block_group->key, sizeof(key));
5949
5950 path = btrfs_alloc_path();
5951 BUG_ON(!path);
5952
3dfdb934 5953 spin_lock(&root->fs_info->block_group_cache_lock);
1a40e23b
ZY
5954 rb_erase(&block_group->cache_node,
5955 &root->fs_info->block_group_cache_tree);
3dfdb934
YZ
5956 spin_unlock(&root->fs_info->block_group_cache_lock);
5957 btrfs_remove_free_space_cache(block_group);
80eb234a 5958 down_write(&block_group->space_info->groups_sem);
1a40e23b 5959 list_del(&block_group->list);
80eb234a 5960 up_write(&block_group->space_info->groups_sem);
1a40e23b 5961
c146afad
YZ
5962 spin_lock(&block_group->space_info->lock);
5963 block_group->space_info->total_bytes -= block_group->key.offset;
5964 block_group->space_info->bytes_readonly -= block_group->key.offset;
5965 spin_unlock(&block_group->space_info->lock);
2b82032c 5966 block_group->space_info->full = 0;
c146afad 5967
d2fb3437
YZ
5968 put_block_group(block_group);
5969 put_block_group(block_group);
1a40e23b
ZY
5970
5971 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
5972 if (ret > 0)
5973 ret = -EIO;
5974 if (ret < 0)
5975 goto out;
5976
5977 ret = btrfs_del_item(trans, root, path);
5978out:
5979 btrfs_free_path(path);
5980 return ret;
5981}