Add check for tree-log roots in btrfs_alloc_reserved_extents
[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>
74493f7a 22#include "hash.h"
a5eb62e3 23#include "crc32c.h"
fec577fb
CM
24#include "ctree.h"
25#include "disk-io.h"
26#include "print-tree.h"
e089f05c 27#include "transaction.h"
0b86a832 28#include "volumes.h"
925baedd 29#include "locking.h"
31153d81 30#include "ref-cache.h"
fec577fb 31
e089f05c
CM
32static int finish_current_insert(struct btrfs_trans_handle *trans, struct
33 btrfs_root *extent_root);
e20d96d6
CM
34static int del_pending_extents(struct btrfs_trans_handle *trans, struct
35 btrfs_root *extent_root);
925baedd
CM
36static struct btrfs_block_group_cache *
37__btrfs_find_block_group(struct btrfs_root *root,
38 struct btrfs_block_group_cache *hint,
39 u64 search_start, int data, int owner);
d548ee51 40
925baedd
CM
41void maybe_lock_mutex(struct btrfs_root *root)
42{
43 if (root != root->fs_info->extent_root &&
44 root != root->fs_info->chunk_root &&
45 root != root->fs_info->dev_root) {
46 mutex_lock(&root->fs_info->alloc_mutex);
47 }
48}
49
50void maybe_unlock_mutex(struct btrfs_root *root)
51{
52 if (root != root->fs_info->extent_root &&
53 root != root->fs_info->chunk_root &&
54 root != root->fs_info->dev_root) {
55 mutex_unlock(&root->fs_info->alloc_mutex);
56 }
57}
fec577fb 58
0f9dd46c
JB
59static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
60{
61 return (cache->flags & bits) == bits;
62}
63
64/*
65 * this adds the block group to the fs_info rb tree for the block group
66 * cache
67 */
68int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
69 struct btrfs_block_group_cache *block_group)
70{
71 struct rb_node **p;
72 struct rb_node *parent = NULL;
73 struct btrfs_block_group_cache *cache;
74
75 spin_lock(&info->block_group_cache_lock);
76 p = &info->block_group_cache_tree.rb_node;
77
78 while (*p) {
79 parent = *p;
80 cache = rb_entry(parent, struct btrfs_block_group_cache,
81 cache_node);
82 if (block_group->key.objectid < cache->key.objectid) {
83 p = &(*p)->rb_left;
84 } else if (block_group->key.objectid > cache->key.objectid) {
85 p = &(*p)->rb_right;
86 } else {
87 spin_unlock(&info->block_group_cache_lock);
88 return -EEXIST;
89 }
90 }
91
92 rb_link_node(&block_group->cache_node, parent, p);
93 rb_insert_color(&block_group->cache_node,
94 &info->block_group_cache_tree);
95 spin_unlock(&info->block_group_cache_lock);
96
97 return 0;
98}
99
100/*
101 * This will return the block group at or after bytenr if contains is 0, else
102 * it will return the block group that contains the bytenr
103 */
104static struct btrfs_block_group_cache *
105block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
106 int contains)
107{
108 struct btrfs_block_group_cache *cache, *ret = NULL;
109 struct rb_node *n;
110 u64 end, start;
111
112 spin_lock(&info->block_group_cache_lock);
113 n = info->block_group_cache_tree.rb_node;
114
115 while (n) {
116 cache = rb_entry(n, struct btrfs_block_group_cache,
117 cache_node);
118 end = cache->key.objectid + cache->key.offset - 1;
119 start = cache->key.objectid;
120
121 if (bytenr < start) {
122 if (!contains && (!ret || start < ret->key.objectid))
123 ret = cache;
124 n = n->rb_left;
125 } else if (bytenr > start) {
126 if (contains && bytenr <= end) {
127 ret = cache;
128 break;
129 }
130 n = n->rb_right;
131 } else {
132 ret = cache;
133 break;
134 }
135 }
136 spin_unlock(&info->block_group_cache_lock);
137
138 return ret;
139}
140
141/*
142 * this is only called by cache_block_group, since we could have freed extents
143 * we need to check the pinned_extents for any extents that can't be used yet
144 * since their free space will be released as soon as the transaction commits.
145 */
146static int add_new_free_space(struct btrfs_block_group_cache *block_group,
147 struct btrfs_fs_info *info, u64 start, u64 end)
148{
149 u64 extent_start, extent_end, size;
150 int ret;
151
152 while (start < end) {
153 ret = find_first_extent_bit(&info->pinned_extents, start,
154 &extent_start, &extent_end,
155 EXTENT_DIRTY);
156 if (ret)
157 break;
158
159 if (extent_start == start) {
160 start = extent_end + 1;
161 } else if (extent_start > start && extent_start < end) {
162 size = extent_start - start;
163 ret = btrfs_add_free_space(block_group, start, size);
164 BUG_ON(ret);
165 start = extent_end + 1;
166 } else {
167 break;
168 }
169 }
170
171 if (start < end) {
172 size = end - start;
173 ret = btrfs_add_free_space(block_group, start, size);
174 BUG_ON(ret);
175 }
176
177 return 0;
178}
179
e37c9e69
CM
180static int cache_block_group(struct btrfs_root *root,
181 struct btrfs_block_group_cache *block_group)
182{
183 struct btrfs_path *path;
ef8bbdfe 184 int ret = 0;
e37c9e69 185 struct btrfs_key key;
5f39d397 186 struct extent_buffer *leaf;
e37c9e69 187 int slot;
e37c9e69 188 u64 last = 0;
7d7d6068 189 u64 first_free;
e37c9e69
CM
190 int found = 0;
191
00f5c795
CM
192 if (!block_group)
193 return 0;
194
e37c9e69 195 root = root->fs_info->extent_root;
e37c9e69
CM
196
197 if (block_group->cached)
198 return 0;
f510cfec 199
e37c9e69
CM
200 path = btrfs_alloc_path();
201 if (!path)
202 return -ENOMEM;
7d7d6068 203
2cc58cf2 204 path->reada = 2;
5cd57b2c
CM
205 /*
206 * we get into deadlocks with paths held by callers of this function.
207 * since the alloc_mutex is protecting things right now, just
208 * skip the locking here
209 */
210 path->skip_locking = 1;
0f9dd46c
JB
211 first_free = max_t(u64, block_group->key.objectid,
212 BTRFS_SUPER_INFO_OFFSET + BTRFS_SUPER_INFO_SIZE);
e37c9e69 213 key.objectid = block_group->key.objectid;
e37c9e69
CM
214 key.offset = 0;
215 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
216 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
217 if (ret < 0)
ef8bbdfe 218 goto err;
0b86a832 219 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
d548ee51 220 if (ret < 0)
ef8bbdfe 221 goto err;
d548ee51
Y
222 if (ret == 0) {
223 leaf = path->nodes[0];
224 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
225 if (key.objectid + key.offset > first_free)
226 first_free = key.objectid + key.offset;
227 }
e37c9e69 228 while(1) {
5f39d397 229 leaf = path->nodes[0];
e37c9e69 230 slot = path->slots[0];
5f39d397 231 if (slot >= btrfs_header_nritems(leaf)) {
e37c9e69 232 ret = btrfs_next_leaf(root, path);
54aa1f4d
CM
233 if (ret < 0)
234 goto err;
0f9dd46c 235 if (ret == 0)
e37c9e69 236 continue;
0f9dd46c 237 else
e37c9e69 238 break;
e37c9e69 239 }
5f39d397 240 btrfs_item_key_to_cpu(leaf, &key, slot);
0f9dd46c 241 if (key.objectid < block_group->key.objectid)
7d7d6068 242 goto next;
0f9dd46c 243
e37c9e69 244 if (key.objectid >= block_group->key.objectid +
0f9dd46c 245 block_group->key.offset)
e37c9e69 246 break;
7d7d6068 247
e37c9e69
CM
248 if (btrfs_key_type(&key) == BTRFS_EXTENT_ITEM_KEY) {
249 if (!found) {
7d7d6068 250 last = first_free;
e37c9e69 251 found = 1;
e37c9e69 252 }
0f9dd46c
JB
253
254 add_new_free_space(block_group, root->fs_info, last,
255 key.objectid);
256
7d7d6068 257 last = key.objectid + key.offset;
e37c9e69 258 }
7d7d6068 259next:
e37c9e69
CM
260 path->slots[0]++;
261 }
262
7d7d6068
Y
263 if (!found)
264 last = first_free;
0f9dd46c
JB
265
266 add_new_free_space(block_group, root->fs_info, last,
267 block_group->key.objectid +
268 block_group->key.offset);
269
e37c9e69 270 block_group->cached = 1;
ef8bbdfe 271 ret = 0;
54aa1f4d 272err:
e37c9e69 273 btrfs_free_path(path);
ef8bbdfe 274 return ret;
e37c9e69
CM
275}
276
0f9dd46c
JB
277/*
278 * return the block group that starts at or after bytenr
279 */
0ef3e66b
CM
280struct btrfs_block_group_cache *btrfs_lookup_first_block_group(struct
281 btrfs_fs_info *info,
282 u64 bytenr)
283{
0f9dd46c 284 struct btrfs_block_group_cache *cache;
0ef3e66b 285
0f9dd46c 286 cache = block_group_cache_tree_search(info, bytenr, 0);
0ef3e66b 287
0f9dd46c 288 return cache;
0ef3e66b
CM
289}
290
0f9dd46c
JB
291/*
292 * return the block group that contains teh given bytenr
293 */
5276aeda
CM
294struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
295 btrfs_fs_info *info,
db94535d 296 u64 bytenr)
be744175 297{
0f9dd46c 298 struct btrfs_block_group_cache *cache;
be744175 299
0f9dd46c 300 cache = block_group_cache_tree_search(info, bytenr, 1);
96b5179d 301
0f9dd46c 302 return cache;
be744175 303}
0b86a832 304
0f9dd46c
JB
305static int noinline find_free_space(struct btrfs_root *root,
306 struct btrfs_block_group_cache **cache_ret,
307 u64 *start_ret, u64 num, int data)
e37c9e69 308{
e37c9e69
CM
309 int ret;
310 struct btrfs_block_group_cache *cache = *cache_ret;
0f9dd46c 311 struct btrfs_free_space *info = NULL;
e19caa5f 312 u64 last;
c31f8830 313 u64 total_fs_bytes;
0b86a832 314 u64 search_start = *start_ret;
e37c9e69 315
7d9eb12c 316 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
c31f8830 317 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
d7fc640e 318
0ef3e66b
CM
319 if (!cache)
320 goto out;
321
0f9dd46c
JB
322 last = max(search_start, cache->key.objectid);
323
e37c9e69 324again:
54aa1f4d 325 ret = cache_block_group(root, cache);
0f9dd46c 326 if (ret)
54aa1f4d 327 goto out;
f84a8b36 328
0f9dd46c 329 if (cache->ro || !block_group_bits(cache, data))
0b86a832 330 goto new_group;
e19caa5f 331
0f9dd46c
JB
332 info = btrfs_find_free_space(cache, last, num);
333 if (info) {
334 *start_ret = info->offset;
0b86a832 335 return 0;
8790d502 336 }
e37c9e69
CM
337
338new_group:
e19caa5f 339 last = cache->key.objectid + cache->key.offset;
0f9dd46c 340
0ef3e66b 341 cache = btrfs_lookup_first_block_group(root->fs_info, last);
0f9dd46c 342 if (!cache || cache->key.objectid >= total_fs_bytes)
1a2b2ac7 343 goto out;
0f9dd46c 344
e37c9e69
CM
345 *cache_ret = cache;
346 goto again;
0f9dd46c
JB
347
348out:
349 return -ENOSPC;
e37c9e69
CM
350}
351
84f54cfa
CM
352static u64 div_factor(u64 num, int factor)
353{
257d0ce3
CM
354 if (factor == 10)
355 return num;
84f54cfa
CM
356 num *= factor;
357 do_div(num, 10);
358 return num;
359}
360
0f9dd46c
JB
361static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
362 u64 flags)
6324fbf3 363{
0f9dd46c
JB
364 struct list_head *head = &info->space_info;
365 struct list_head *cur;
366 struct btrfs_space_info *found;
367 list_for_each(cur, head) {
368 found = list_entry(cur, struct btrfs_space_info, list);
369 if (found->flags == flags)
370 return found;
371 }
372 return NULL;
373
6324fbf3
CM
374}
375
925baedd
CM
376static struct btrfs_block_group_cache *
377__btrfs_find_block_group(struct btrfs_root *root,
378 struct btrfs_block_group_cache *hint,
379 u64 search_start, int data, int owner)
cd1bc465 380{
96b5179d 381 struct btrfs_block_group_cache *cache;
31f3c99b 382 struct btrfs_block_group_cache *found_group = NULL;
cd1bc465 383 struct btrfs_fs_info *info = root->fs_info;
0f9dd46c 384 struct btrfs_space_info *sinfo;
cd1bc465 385 u64 used;
31f3c99b 386 u64 last = 0;
96b5179d 387 u64 free_check;
31f3c99b 388 int full_search = 0;
bce4eae9 389 int factor = 10;
0ef3e66b 390 int wrapped = 0;
de428b63 391
a236aed1
CM
392 if (data & BTRFS_BLOCK_GROUP_METADATA)
393 factor = 9;
be744175 394
0ef3e66b 395 if (search_start) {
be744175 396 struct btrfs_block_group_cache *shint;
0ef3e66b 397 shint = btrfs_lookup_first_block_group(info, search_start);
8f18cf13 398 if (shint && block_group_bits(shint, data) && !shint->ro) {
c286ac48 399 spin_lock(&shint->lock);
be744175 400 used = btrfs_block_group_used(&shint->item);
324ae4df
Y
401 if (used + shint->pinned <
402 div_factor(shint->key.offset, factor)) {
c286ac48 403 spin_unlock(&shint->lock);
be744175
CM
404 return shint;
405 }
c286ac48 406 spin_unlock(&shint->lock);
be744175
CM
407 }
408 }
0ef3e66b 409 if (hint && !hint->ro && block_group_bits(hint, data)) {
c286ac48 410 spin_lock(&hint->lock);
31f3c99b 411 used = btrfs_block_group_used(&hint->item);
324ae4df
Y
412 if (used + hint->pinned <
413 div_factor(hint->key.offset, factor)) {
c286ac48 414 spin_unlock(&hint->lock);
31f3c99b
CM
415 return hint;
416 }
c286ac48 417 spin_unlock(&hint->lock);
e19caa5f 418 last = hint->key.objectid + hint->key.offset;
31f3c99b 419 } else {
e37c9e69 420 if (hint)
0ef3e66b 421 last = max(hint->key.objectid, search_start);
e37c9e69 422 else
0ef3e66b 423 last = search_start;
31f3c99b 424 }
0f9dd46c
JB
425 sinfo = __find_space_info(root->fs_info, data);
426 if (!sinfo)
427 goto found;
31f3c99b 428again:
cd1bc465 429 while(1) {
0f9dd46c 430 struct list_head *l;
96b5179d 431
0f9dd46c
JB
432 cache = NULL;
433
434 spin_lock(&sinfo->lock);
435 list_for_each(l, &sinfo->block_groups) {
436 struct btrfs_block_group_cache *entry;
437 entry = list_entry(l, struct btrfs_block_group_cache,
438 list);
439 if ((entry->key.objectid >= last) &&
440 (!cache || (entry->key.objectid <
441 cache->key.objectid)))
442 cache = entry;
0ef3e66b 443 }
0f9dd46c
JB
444 spin_unlock(&sinfo->lock);
445
446 if (!cache)
447 break;
96b5179d 448
c286ac48 449 spin_lock(&cache->lock);
96b5179d
CM
450 last = cache->key.objectid + cache->key.offset;
451 used = btrfs_block_group_used(&cache->item);
452
8f18cf13 453 if (!cache->ro && block_group_bits(cache, data)) {
0ef3e66b 454 free_check = div_factor(cache->key.offset, factor);
8790d502
CM
455 if (used + cache->pinned < free_check) {
456 found_group = cache;
c286ac48 457 spin_unlock(&cache->lock);
8790d502
CM
458 goto found;
459 }
6324fbf3 460 }
c286ac48 461 spin_unlock(&cache->lock);
de428b63 462 cond_resched();
cd1bc465 463 }
0ef3e66b
CM
464 if (!wrapped) {
465 last = search_start;
466 wrapped = 1;
467 goto again;
468 }
469 if (!full_search && factor < 10) {
be744175 470 last = search_start;
31f3c99b 471 full_search = 1;
0ef3e66b 472 factor = 10;
31f3c99b
CM
473 goto again;
474 }
be744175 475found:
31f3c99b 476 return found_group;
cd1bc465
CM
477}
478
925baedd
CM
479struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
480 struct btrfs_block_group_cache
481 *hint, u64 search_start,
482 int data, int owner)
483{
484
485 struct btrfs_block_group_cache *ret;
925baedd 486 ret = __btrfs_find_block_group(root, hint, search_start, data, owner);
925baedd
CM
487 return ret;
488}
0f9dd46c 489
7bb86316 490static u64 hash_extent_ref(u64 root_objectid, u64 ref_generation,
74493f7a
CM
491 u64 owner, u64 owner_offset)
492{
493 u32 high_crc = ~(u32)0;
494 u32 low_crc = ~(u32)0;
495 __le64 lenum;
74493f7a 496 lenum = cpu_to_le64(root_objectid);
a5eb62e3 497 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
7bb86316 498 lenum = cpu_to_le64(ref_generation);
a5eb62e3 499 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
21a4989d
CM
500 if (owner >= BTRFS_FIRST_FREE_OBJECTID) {
501 lenum = cpu_to_le64(owner);
a5eb62e3 502 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
21a4989d 503 lenum = cpu_to_le64(owner_offset);
a5eb62e3 504 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
21a4989d 505 }
74493f7a
CM
506 return ((u64)high_crc << 32) | (u64)low_crc;
507}
508
7bb86316
CM
509static int match_extent_ref(struct extent_buffer *leaf,
510 struct btrfs_extent_ref *disk_ref,
511 struct btrfs_extent_ref *cpu_ref)
512{
513 int ret;
514 int len;
515
516 if (cpu_ref->objectid)
517 len = sizeof(*cpu_ref);
518 else
519 len = 2 * sizeof(u64);
520 ret = memcmp_extent_buffer(leaf, cpu_ref, (unsigned long)disk_ref,
521 len);
522 return ret == 0;
523}
524
e02119d5
CM
525/* simple helper to search for an existing extent at a given offset */
526int btrfs_lookup_extent(struct btrfs_root *root, struct btrfs_path *path,
527 u64 start, u64 len)
528{
529 int ret;
530 struct btrfs_key key;
531
532 maybe_lock_mutex(root);
533 key.objectid = start;
534 key.offset = len;
535 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
536 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
537 0, 0);
538 maybe_unlock_mutex(root);
539 return ret;
540}
541
98ed5174
CM
542static int noinline lookup_extent_backref(struct btrfs_trans_handle *trans,
543 struct btrfs_root *root,
544 struct btrfs_path *path, u64 bytenr,
545 u64 root_objectid,
546 u64 ref_generation, u64 owner,
547 u64 owner_offset, int del)
74493f7a
CM
548{
549 u64 hash;
550 struct btrfs_key key;
7bb86316 551 struct btrfs_key found_key;
74493f7a 552 struct btrfs_extent_ref ref;
7bb86316
CM
553 struct extent_buffer *leaf;
554 struct btrfs_extent_ref *disk_ref;
555 int ret;
556 int ret2;
557
558 btrfs_set_stack_ref_root(&ref, root_objectid);
559 btrfs_set_stack_ref_generation(&ref, ref_generation);
560 btrfs_set_stack_ref_objectid(&ref, owner);
561 btrfs_set_stack_ref_offset(&ref, owner_offset);
562
563 hash = hash_extent_ref(root_objectid, ref_generation, owner,
564 owner_offset);
565 key.offset = hash;
566 key.objectid = bytenr;
567 key.type = BTRFS_EXTENT_REF_KEY;
568
569 while (1) {
570 ret = btrfs_search_slot(trans, root, &key, path,
571 del ? -1 : 0, del);
572 if (ret < 0)
573 goto out;
574 leaf = path->nodes[0];
575 if (ret != 0) {
576 u32 nritems = btrfs_header_nritems(leaf);
577 if (path->slots[0] >= nritems) {
578 ret2 = btrfs_next_leaf(root, path);
579 if (ret2)
580 goto out;
581 leaf = path->nodes[0];
582 }
583 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
584 if (found_key.objectid != bytenr ||
585 found_key.type != BTRFS_EXTENT_REF_KEY)
586 goto out;
587 key.offset = found_key.offset;
588 if (del) {
589 btrfs_release_path(root, path);
590 continue;
591 }
592 }
593 disk_ref = btrfs_item_ptr(path->nodes[0],
594 path->slots[0],
595 struct btrfs_extent_ref);
596 if (match_extent_ref(path->nodes[0], disk_ref, &ref)) {
597 ret = 0;
598 goto out;
599 }
600 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
601 key.offset = found_key.offset + 1;
602 btrfs_release_path(root, path);
603 }
604out:
605 return ret;
606}
607
d8d5f3e1
CM
608/*
609 * Back reference rules. Back refs have three main goals:
610 *
611 * 1) differentiate between all holders of references to an extent so that
612 * when a reference is dropped we can make sure it was a valid reference
613 * before freeing the extent.
614 *
615 * 2) Provide enough information to quickly find the holders of an extent
616 * if we notice a given block is corrupted or bad.
617 *
618 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
619 * maintenance. This is actually the same as #2, but with a slightly
620 * different use case.
621 *
622 * File extents can be referenced by:
623 *
624 * - multiple snapshots, subvolumes, or different generations in one subvol
625 * - different files inside a single subvolume (in theory, not implemented yet)
626 * - different offsets inside a file (bookend extents in file.c)
627 *
628 * The extent ref structure has fields for:
629 *
630 * - Objectid of the subvolume root
631 * - Generation number of the tree holding the reference
632 * - objectid of the file holding the reference
633 * - offset in the file corresponding to the key holding the reference
634 *
635 * When a file extent is allocated the fields are filled in:
636 * (root_key.objectid, trans->transid, inode objectid, offset in file)
637 *
638 * When a leaf is cow'd new references are added for every file extent found
639 * in the leaf. It looks the same as the create case, but trans->transid
640 * will be different when the block is cow'd.
641 *
642 * (root_key.objectid, trans->transid, inode objectid, offset in file)
643 *
644 * When a file extent is removed either during snapshot deletion or file
645 * truncation, the corresponding back reference is found
646 * by searching for:
647 *
648 * (btrfs_header_owner(leaf), btrfs_header_generation(leaf),
649 * inode objectid, offset in file)
650 *
651 * Btree extents can be referenced by:
652 *
653 * - Different subvolumes
654 * - Different generations of the same subvolume
655 *
656 * Storing sufficient information for a full reverse mapping of a btree
657 * block would require storing the lowest key of the block in the backref,
658 * and it would require updating that lowest key either before write out or
659 * every time it changed. Instead, the objectid of the lowest key is stored
660 * along with the level of the tree block. This provides a hint
661 * about where in the btree the block can be found. Searches through the
662 * btree only need to look for a pointer to that block, so they stop one
663 * level higher than the level recorded in the backref.
664 *
665 * Some btrees do not do reference counting on their extents. These
666 * include the extent tree and the tree of tree roots. Backrefs for these
667 * trees always have a generation of zero.
668 *
669 * When a tree block is created, back references are inserted:
670 *
f6dbff55 671 * (root->root_key.objectid, trans->transid or zero, level, lowest_key_objectid)
d8d5f3e1
CM
672 *
673 * When a tree block is cow'd in a reference counted root,
674 * new back references are added for all the blocks it points to.
675 * These are of the form (trans->transid will have increased since creation):
676 *
f6dbff55 677 * (root->root_key.objectid, trans->transid, level, lowest_key_objectid)
d8d5f3e1
CM
678 *
679 * Because the lowest_key_objectid and the level are just hints
680 * they are not used when backrefs are deleted. When a backref is deleted:
681 *
682 * if backref was for a tree root:
683 * root_objectid = root->root_key.objectid
684 * else
685 * root_objectid = btrfs_header_owner(parent)
686 *
687 * (root_objectid, btrfs_header_generation(parent) or zero, 0, 0)
688 *
689 * Back Reference Key hashing:
690 *
691 * Back references have four fields, each 64 bits long. Unfortunately,
692 * This is hashed into a single 64 bit number and placed into the key offset.
693 * The key objectid corresponds to the first byte in the extent, and the
694 * key type is set to BTRFS_EXTENT_REF_KEY
695 */
7bb86316
CM
696int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
697 struct btrfs_root *root,
698 struct btrfs_path *path, u64 bytenr,
699 u64 root_objectid, u64 ref_generation,
700 u64 owner, u64 owner_offset)
701{
702 u64 hash;
703 struct btrfs_key key;
704 struct btrfs_extent_ref ref;
705 struct btrfs_extent_ref *disk_ref;
74493f7a
CM
706 int ret;
707
708 btrfs_set_stack_ref_root(&ref, root_objectid);
7bb86316 709 btrfs_set_stack_ref_generation(&ref, ref_generation);
74493f7a
CM
710 btrfs_set_stack_ref_objectid(&ref, owner);
711 btrfs_set_stack_ref_offset(&ref, owner_offset);
712
7bb86316
CM
713 hash = hash_extent_ref(root_objectid, ref_generation, owner,
714 owner_offset);
74493f7a
CM
715 key.offset = hash;
716 key.objectid = bytenr;
717 key.type = BTRFS_EXTENT_REF_KEY;
718
719 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(ref));
720 while (ret == -EEXIST) {
7bb86316
CM
721 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
722 struct btrfs_extent_ref);
723 if (match_extent_ref(path->nodes[0], disk_ref, &ref))
724 goto out;
725 key.offset++;
726 btrfs_release_path(root, path);
727 ret = btrfs_insert_empty_item(trans, root, path, &key,
728 sizeof(ref));
74493f7a 729 }
7bb86316
CM
730 if (ret)
731 goto out;
732 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
733 struct btrfs_extent_ref);
734 write_extent_buffer(path->nodes[0], &ref, (unsigned long)disk_ref,
735 sizeof(ref));
736 btrfs_mark_buffer_dirty(path->nodes[0]);
737out:
738 btrfs_release_path(root, path);
739 return ret;
74493f7a
CM
740}
741
925baedd 742static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
b18c6685 743 struct btrfs_root *root,
74493f7a 744 u64 bytenr, u64 num_bytes,
7bb86316 745 u64 root_objectid, u64 ref_generation,
74493f7a 746 u64 owner, u64 owner_offset)
02217ed2 747{
5caf2a00 748 struct btrfs_path *path;
02217ed2 749 int ret;
e2fa7227 750 struct btrfs_key key;
5f39d397 751 struct extent_buffer *l;
234b63a0 752 struct btrfs_extent_item *item;
cf27e1ee 753 u32 refs;
037e6390 754
db94535d 755 WARN_ON(num_bytes < root->sectorsize);
5caf2a00 756 path = btrfs_alloc_path();
54aa1f4d
CM
757 if (!path)
758 return -ENOMEM;
26b8003f 759
3c12ac72 760 path->reada = 1;
db94535d 761 key.objectid = bytenr;
62e2749e 762 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
db94535d 763 key.offset = num_bytes;
5caf2a00 764 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
9f5fae2f 765 0, 1);
54aa1f4d
CM
766 if (ret < 0)
767 return ret;
a429e513 768 if (ret != 0) {
a28ec197 769 BUG();
a429e513 770 }
02217ed2 771 BUG_ON(ret != 0);
5f39d397 772 l = path->nodes[0];
5caf2a00 773 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
5f39d397
CM
774 refs = btrfs_extent_refs(l, item);
775 btrfs_set_extent_refs(l, item, refs + 1);
5caf2a00 776 btrfs_mark_buffer_dirty(path->nodes[0]);
a28ec197 777
5caf2a00 778 btrfs_release_path(root->fs_info->extent_root, path);
7bb86316 779
3c12ac72 780 path->reada = 1;
7bb86316
CM
781 ret = btrfs_insert_extent_backref(trans, root->fs_info->extent_root,
782 path, bytenr, root_objectid,
783 ref_generation, owner, owner_offset);
784 BUG_ON(ret);
9f5fae2f 785 finish_current_insert(trans, root->fs_info->extent_root);
e20d96d6 786 del_pending_extents(trans, root->fs_info->extent_root);
74493f7a
CM
787
788 btrfs_free_path(path);
02217ed2
CM
789 return 0;
790}
791
925baedd
CM
792int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
793 struct btrfs_root *root,
794 u64 bytenr, u64 num_bytes,
795 u64 root_objectid, u64 ref_generation,
796 u64 owner, u64 owner_offset)
797{
798 int ret;
799
800 mutex_lock(&root->fs_info->alloc_mutex);
801 ret = __btrfs_inc_extent_ref(trans, root, bytenr, num_bytes,
802 root_objectid, ref_generation,
803 owner, owner_offset);
804 mutex_unlock(&root->fs_info->alloc_mutex);
805 return ret;
806}
807
e9d0b13b
CM
808int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
809 struct btrfs_root *root)
810{
811 finish_current_insert(trans, root->fs_info->extent_root);
812 del_pending_extents(trans, root->fs_info->extent_root);
813 return 0;
814}
815
b18c6685 816static int lookup_extent_ref(struct btrfs_trans_handle *trans,
db94535d
CM
817 struct btrfs_root *root, u64 bytenr,
818 u64 num_bytes, u32 *refs)
a28ec197 819{
5caf2a00 820 struct btrfs_path *path;
a28ec197 821 int ret;
e2fa7227 822 struct btrfs_key key;
5f39d397 823 struct extent_buffer *l;
234b63a0 824 struct btrfs_extent_item *item;
5caf2a00 825
db94535d 826 WARN_ON(num_bytes < root->sectorsize);
5caf2a00 827 path = btrfs_alloc_path();
3c12ac72 828 path->reada = 1;
db94535d
CM
829 key.objectid = bytenr;
830 key.offset = num_bytes;
62e2749e 831 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
5caf2a00 832 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
9f5fae2f 833 0, 0);
54aa1f4d
CM
834 if (ret < 0)
835 goto out;
5f39d397
CM
836 if (ret != 0) {
837 btrfs_print_leaf(root, path->nodes[0]);
db94535d 838 printk("failed to find block number %Lu\n", bytenr);
a28ec197 839 BUG();
5f39d397
CM
840 }
841 l = path->nodes[0];
5caf2a00 842 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
5f39d397 843 *refs = btrfs_extent_refs(l, item);
54aa1f4d 844out:
5caf2a00 845 btrfs_free_path(path);
a28ec197
CM
846 return 0;
847}
848
f321e491
YZ
849
850static int get_reference_status(struct btrfs_root *root, u64 bytenr,
851 u64 parent_gen, u64 ref_objectid,
852 u64 *min_generation, u32 *ref_count)
be20aa9d
CM
853{
854 struct btrfs_root *extent_root = root->fs_info->extent_root;
855 struct btrfs_path *path;
f321e491
YZ
856 struct extent_buffer *leaf;
857 struct btrfs_extent_ref *ref_item;
858 struct btrfs_key key;
859 struct btrfs_key found_key;
56b453c9 860 u64 root_objectid = root->root_key.objectid;
f321e491 861 u64 ref_generation;
be20aa9d
CM
862 u32 nritems;
863 int ret;
925baedd 864
be20aa9d
CM
865 key.objectid = bytenr;
866 key.offset = 0;
f321e491 867 key.type = BTRFS_EXTENT_ITEM_KEY;
be20aa9d 868
f321e491
YZ
869 path = btrfs_alloc_path();
870 mutex_lock(&root->fs_info->alloc_mutex);
be20aa9d
CM
871 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
872 if (ret < 0)
873 goto out;
874 BUG_ON(ret == 0);
875
f321e491
YZ
876 leaf = path->nodes[0];
877 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
be20aa9d
CM
878
879 if (found_key.objectid != bytenr ||
880 found_key.type != BTRFS_EXTENT_ITEM_KEY) {
f321e491 881 ret = 1;
be20aa9d
CM
882 goto out;
883 }
884
f321e491
YZ
885 *ref_count = 0;
886 *min_generation = (u64)-1;
887
be20aa9d 888 while (1) {
f321e491
YZ
889 leaf = path->nodes[0];
890 nritems = btrfs_header_nritems(leaf);
be20aa9d
CM
891 if (path->slots[0] >= nritems) {
892 ret = btrfs_next_leaf(extent_root, path);
f321e491
YZ
893 if (ret < 0)
894 goto out;
be20aa9d
CM
895 if (ret == 0)
896 continue;
897 break;
898 }
f321e491 899 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
be20aa9d
CM
900 if (found_key.objectid != bytenr)
901 break;
bd09835d 902
be20aa9d
CM
903 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
904 path->slots[0]++;
905 continue;
906 }
907
f321e491 908 ref_item = btrfs_item_ptr(leaf, path->slots[0],
be20aa9d 909 struct btrfs_extent_ref);
f321e491
YZ
910 ref_generation = btrfs_ref_generation(leaf, ref_item);
911 /*
912 * For (parent_gen > 0 && parent_gen > ref_gen):
913 *
bcc63abb
Y
914 * we reach here through the oldest root, therefore
915 * all other reference from same snapshot should have
f321e491
YZ
916 * a larger generation.
917 */
918 if ((root_objectid != btrfs_ref_root(leaf, ref_item)) ||
919 (parent_gen > 0 && parent_gen > ref_generation) ||
920 (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID &&
921 ref_objectid != btrfs_ref_objectid(leaf, ref_item))) {
922 if (ref_count)
923 *ref_count = 2;
924 break;
a68d5933 925 }
f321e491
YZ
926
927 *ref_count = 1;
928 if (*min_generation > ref_generation)
929 *min_generation = ref_generation;
930
be20aa9d
CM
931 path->slots[0]++;
932 }
f321e491
YZ
933 ret = 0;
934out:
935 mutex_unlock(&root->fs_info->alloc_mutex);
936 btrfs_free_path(path);
937 return ret;
938}
939
7ea394f1
YZ
940int btrfs_cross_ref_exists(struct btrfs_trans_handle *trans,
941 struct btrfs_root *root,
f321e491
YZ
942 struct btrfs_key *key, u64 bytenr)
943{
f321e491
YZ
944 struct btrfs_root *old_root;
945 struct btrfs_path *path = NULL;
946 struct extent_buffer *eb;
947 struct btrfs_file_extent_item *item;
948 u64 ref_generation;
949 u64 min_generation;
950 u64 extent_start;
951 u32 ref_count;
952 int level;
953 int ret;
954
7ea394f1 955 BUG_ON(trans == NULL);
f321e491
YZ
956 BUG_ON(key->type != BTRFS_EXTENT_DATA_KEY);
957 ret = get_reference_status(root, bytenr, 0, key->objectid,
958 &min_generation, &ref_count);
959 if (ret)
960 return ret;
961
962 if (ref_count != 1)
963 return 1;
964
f321e491
YZ
965 old_root = root->dirty_root->root;
966 ref_generation = old_root->root_key.offset;
967
968 /* all references are created in running transaction */
969 if (min_generation > ref_generation) {
970 ret = 0;
bbaf549e
CM
971 goto out;
972 }
f321e491
YZ
973
974 path = btrfs_alloc_path();
975 if (!path) {
976 ret = -ENOMEM;
be20aa9d
CM
977 goto out;
978 }
f321e491
YZ
979
980 path->skip_locking = 1;
981 /* if no item found, the extent is referenced by other snapshot */
982 ret = btrfs_search_slot(NULL, old_root, key, path, 0, 0);
983 if (ret)
be20aa9d 984 goto out;
be20aa9d 985
f321e491
YZ
986 eb = path->nodes[0];
987 item = btrfs_item_ptr(eb, path->slots[0],
988 struct btrfs_file_extent_item);
989 if (btrfs_file_extent_type(eb, item) != BTRFS_FILE_EXTENT_REG ||
990 btrfs_file_extent_disk_bytenr(eb, item) != bytenr) {
991 ret = 1;
992 goto out;
993 }
994
995 for (level = BTRFS_MAX_LEVEL - 1; level >= -1; level--) {
996 if (level >= 0) {
997 eb = path->nodes[level];
998 if (!eb)
999 continue;
1000 extent_start = eb->start;
bcc63abb 1001 } else
f321e491
YZ
1002 extent_start = bytenr;
1003
1004 ret = get_reference_status(root, extent_start, ref_generation,
1005 0, &min_generation, &ref_count);
1006 if (ret)
1007 goto out;
1008
1009 if (ref_count != 1) {
1010 ret = 1;
1011 goto out;
1012 }
1013 if (level >= 0)
1014 ref_generation = btrfs_header_generation(eb);
1015 }
1016 ret = 0;
be20aa9d 1017out:
f321e491
YZ
1018 if (path)
1019 btrfs_free_path(path);
f321e491 1020 return ret;
be20aa9d 1021}
c5739bba 1022
e089f05c 1023int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
31153d81 1024 struct extent_buffer *buf, int cache_ref)
02217ed2 1025{
db94535d 1026 u64 bytenr;
5f39d397
CM
1027 u32 nritems;
1028 struct btrfs_key key;
6407bf6d 1029 struct btrfs_file_extent_item *fi;
02217ed2 1030 int i;
db94535d 1031 int level;
6407bf6d 1032 int ret;
54aa1f4d 1033 int faili;
31153d81 1034 int nr_file_extents = 0;
a28ec197 1035
3768f368 1036 if (!root->ref_cows)
a28ec197 1037 return 0;
5f39d397 1038
db94535d 1039 level = btrfs_header_level(buf);
5f39d397
CM
1040 nritems = btrfs_header_nritems(buf);
1041 for (i = 0; i < nritems; i++) {
e34a5b4f 1042 cond_resched();
db94535d
CM
1043 if (level == 0) {
1044 u64 disk_bytenr;
5f39d397
CM
1045 btrfs_item_key_to_cpu(buf, &key, i);
1046 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
6407bf6d 1047 continue;
5f39d397 1048 fi = btrfs_item_ptr(buf, i,
6407bf6d 1049 struct btrfs_file_extent_item);
5f39d397 1050 if (btrfs_file_extent_type(buf, fi) ==
236454df
CM
1051 BTRFS_FILE_EXTENT_INLINE)
1052 continue;
db94535d
CM
1053 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
1054 if (disk_bytenr == 0)
3a686375 1055 continue;
4a096752 1056
31153d81
YZ
1057 if (buf != root->commit_root)
1058 nr_file_extents++;
1059
4a096752 1060 mutex_lock(&root->fs_info->alloc_mutex);
925baedd 1061 ret = __btrfs_inc_extent_ref(trans, root, disk_bytenr,
7bb86316
CM
1062 btrfs_file_extent_disk_num_bytes(buf, fi),
1063 root->root_key.objectid, trans->transid,
1064 key.objectid, key.offset);
4a096752 1065 mutex_unlock(&root->fs_info->alloc_mutex);
54aa1f4d
CM
1066 if (ret) {
1067 faili = i;
4a096752 1068 WARN_ON(1);
54aa1f4d
CM
1069 goto fail;
1070 }
6407bf6d 1071 } else {
db94535d 1072 bytenr = btrfs_node_blockptr(buf, i);
6caab489 1073 btrfs_node_key_to_cpu(buf, &key, i);
4a096752
CM
1074
1075 mutex_lock(&root->fs_info->alloc_mutex);
925baedd 1076 ret = __btrfs_inc_extent_ref(trans, root, bytenr,
7bb86316
CM
1077 btrfs_level_size(root, level - 1),
1078 root->root_key.objectid,
f6dbff55
CM
1079 trans->transid,
1080 level - 1, key.objectid);
4a096752 1081 mutex_unlock(&root->fs_info->alloc_mutex);
54aa1f4d
CM
1082 if (ret) {
1083 faili = i;
4a096752 1084 WARN_ON(1);
54aa1f4d
CM
1085 goto fail;
1086 }
6407bf6d 1087 }
02217ed2 1088 }
31153d81
YZ
1089 /* cache orignal leaf block's references */
1090 if (level == 0 && cache_ref && buf != root->commit_root) {
1091 struct btrfs_leaf_ref *ref;
1092 struct btrfs_extent_info *info;
1093
bcc63abb 1094 ref = btrfs_alloc_leaf_ref(root, nr_file_extents);
31153d81
YZ
1095 if (!ref) {
1096 WARN_ON(1);
1097 goto out;
1098 }
1099
47ac14fa 1100 ref->root_gen = root->root_key.offset;
31153d81
YZ
1101 ref->bytenr = buf->start;
1102 ref->owner = btrfs_header_owner(buf);
1103 ref->generation = btrfs_header_generation(buf);
1104 ref->nritems = nr_file_extents;
1105 info = ref->extents;
bcc63abb 1106
31153d81
YZ
1107 for (i = 0; nr_file_extents > 0 && i < nritems; i++) {
1108 u64 disk_bytenr;
1109 btrfs_item_key_to_cpu(buf, &key, i);
1110 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
1111 continue;
1112 fi = btrfs_item_ptr(buf, i,
1113 struct btrfs_file_extent_item);
1114 if (btrfs_file_extent_type(buf, fi) ==
1115 BTRFS_FILE_EXTENT_INLINE)
1116 continue;
1117 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
1118 if (disk_bytenr == 0)
1119 continue;
1120
1121 info->bytenr = disk_bytenr;
1122 info->num_bytes =
1123 btrfs_file_extent_disk_num_bytes(buf, fi);
1124 info->objectid = key.objectid;
1125 info->offset = key.offset;
1126 info++;
1127 }
1128
1129 BUG_ON(!root->ref_tree);
1130 ret = btrfs_add_leaf_ref(root, ref);
1131 WARN_ON(ret);
bcc63abb 1132 btrfs_free_leaf_ref(root, ref);
31153d81
YZ
1133 }
1134out:
02217ed2 1135 return 0;
54aa1f4d 1136fail:
ccd467d6 1137 WARN_ON(1);
7bb86316 1138#if 0
54aa1f4d 1139 for (i =0; i < faili; i++) {
db94535d
CM
1140 if (level == 0) {
1141 u64 disk_bytenr;
5f39d397
CM
1142 btrfs_item_key_to_cpu(buf, &key, i);
1143 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
54aa1f4d 1144 continue;
5f39d397 1145 fi = btrfs_item_ptr(buf, i,
54aa1f4d 1146 struct btrfs_file_extent_item);
5f39d397 1147 if (btrfs_file_extent_type(buf, fi) ==
54aa1f4d
CM
1148 BTRFS_FILE_EXTENT_INLINE)
1149 continue;
db94535d
CM
1150 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
1151 if (disk_bytenr == 0)
54aa1f4d 1152 continue;
db94535d
CM
1153 err = btrfs_free_extent(trans, root, disk_bytenr,
1154 btrfs_file_extent_disk_num_bytes(buf,
5f39d397 1155 fi), 0);
54aa1f4d
CM
1156 BUG_ON(err);
1157 } else {
db94535d
CM
1158 bytenr = btrfs_node_blockptr(buf, i);
1159 err = btrfs_free_extent(trans, root, bytenr,
1160 btrfs_level_size(root, level - 1), 0);
54aa1f4d
CM
1161 BUG_ON(err);
1162 }
1163 }
7bb86316 1164#endif
54aa1f4d 1165 return ret;
02217ed2
CM
1166}
1167
9078a3e1
CM
1168static int write_one_cache_group(struct btrfs_trans_handle *trans,
1169 struct btrfs_root *root,
1170 struct btrfs_path *path,
1171 struct btrfs_block_group_cache *cache)
1172{
1173 int ret;
1174 int pending_ret;
1175 struct btrfs_root *extent_root = root->fs_info->extent_root;
5f39d397
CM
1176 unsigned long bi;
1177 struct extent_buffer *leaf;
9078a3e1 1178
9078a3e1 1179 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
54aa1f4d
CM
1180 if (ret < 0)
1181 goto fail;
9078a3e1 1182 BUG_ON(ret);
5f39d397
CM
1183
1184 leaf = path->nodes[0];
1185 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
1186 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
1187 btrfs_mark_buffer_dirty(leaf);
9078a3e1 1188 btrfs_release_path(extent_root, path);
54aa1f4d 1189fail:
9078a3e1
CM
1190 finish_current_insert(trans, extent_root);
1191 pending_ret = del_pending_extents(trans, extent_root);
1192 if (ret)
1193 return ret;
1194 if (pending_ret)
1195 return pending_ret;
1196 return 0;
1197
1198}
1199
96b5179d
CM
1200int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1201 struct btrfs_root *root)
9078a3e1 1202{
0f9dd46c
JB
1203 struct btrfs_block_group_cache *cache, *entry;
1204 struct rb_node *n;
9078a3e1
CM
1205 int err = 0;
1206 int werr = 0;
9078a3e1 1207 struct btrfs_path *path;
96b5179d 1208 u64 last = 0;
9078a3e1
CM
1209
1210 path = btrfs_alloc_path();
1211 if (!path)
1212 return -ENOMEM;
1213
925baedd 1214 mutex_lock(&root->fs_info->alloc_mutex);
9078a3e1 1215 while(1) {
0f9dd46c
JB
1216 cache = NULL;
1217 spin_lock(&root->fs_info->block_group_cache_lock);
1218 for (n = rb_first(&root->fs_info->block_group_cache_tree);
1219 n; n = rb_next(n)) {
1220 entry = rb_entry(n, struct btrfs_block_group_cache,
1221 cache_node);
1222 if (entry->dirty) {
1223 cache = entry;
1224 break;
1225 }
1226 }
1227 spin_unlock(&root->fs_info->block_group_cache_lock);
54aa1f4d 1228
0f9dd46c 1229 if (!cache)
96b5179d 1230 break;
0f9dd46c
JB
1231
1232 last += cache->key.offset;
1233
96b5179d
CM
1234 err = write_one_cache_group(trans, root,
1235 path, cache);
1236 /*
1237 * if we fail to write the cache group, we want
1238 * to keep it marked dirty in hopes that a later
1239 * write will work
1240 */
1241 if (err) {
1242 werr = err;
1243 continue;
9078a3e1 1244 }
0f9dd46c
JB
1245
1246 cache->dirty = 0;
9078a3e1
CM
1247 }
1248 btrfs_free_path(path);
925baedd 1249 mutex_unlock(&root->fs_info->alloc_mutex);
9078a3e1
CM
1250 return werr;
1251}
1252
593060d7
CM
1253static int update_space_info(struct btrfs_fs_info *info, u64 flags,
1254 u64 total_bytes, u64 bytes_used,
1255 struct btrfs_space_info **space_info)
1256{
1257 struct btrfs_space_info *found;
1258
1259 found = __find_space_info(info, flags);
1260 if (found) {
1261 found->total_bytes += total_bytes;
1262 found->bytes_used += bytes_used;
8f18cf13 1263 found->full = 0;
593060d7
CM
1264 *space_info = found;
1265 return 0;
1266 }
1267 found = kmalloc(sizeof(*found), GFP_NOFS);
1268 if (!found)
1269 return -ENOMEM;
1270
1271 list_add(&found->list, &info->space_info);
0f9dd46c
JB
1272 INIT_LIST_HEAD(&found->block_groups);
1273 spin_lock_init(&found->lock);
593060d7
CM
1274 found->flags = flags;
1275 found->total_bytes = total_bytes;
1276 found->bytes_used = bytes_used;
1277 found->bytes_pinned = 0;
1278 found->full = 0;
0ef3e66b 1279 found->force_alloc = 0;
593060d7
CM
1280 *space_info = found;
1281 return 0;
1282}
1283
8790d502
CM
1284static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
1285{
1286 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
611f0e00 1287 BTRFS_BLOCK_GROUP_RAID1 |
321aecc6 1288 BTRFS_BLOCK_GROUP_RAID10 |
611f0e00 1289 BTRFS_BLOCK_GROUP_DUP);
8790d502
CM
1290 if (extra_flags) {
1291 if (flags & BTRFS_BLOCK_GROUP_DATA)
1292 fs_info->avail_data_alloc_bits |= extra_flags;
1293 if (flags & BTRFS_BLOCK_GROUP_METADATA)
1294 fs_info->avail_metadata_alloc_bits |= extra_flags;
1295 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
1296 fs_info->avail_system_alloc_bits |= extra_flags;
1297 }
1298}
593060d7 1299
a061fc8d 1300static u64 reduce_alloc_profile(struct btrfs_root *root, u64 flags)
ec44a35c 1301{
a061fc8d
CM
1302 u64 num_devices = root->fs_info->fs_devices->num_devices;
1303
1304 if (num_devices == 1)
1305 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0);
1306 if (num_devices < 4)
1307 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
1308
ec44a35c
CM
1309 if ((flags & BTRFS_BLOCK_GROUP_DUP) &&
1310 (flags & (BTRFS_BLOCK_GROUP_RAID1 |
a061fc8d 1311 BTRFS_BLOCK_GROUP_RAID10))) {
ec44a35c 1312 flags &= ~BTRFS_BLOCK_GROUP_DUP;
a061fc8d 1313 }
ec44a35c
CM
1314
1315 if ((flags & BTRFS_BLOCK_GROUP_RAID1) &&
a061fc8d 1316 (flags & BTRFS_BLOCK_GROUP_RAID10)) {
ec44a35c 1317 flags &= ~BTRFS_BLOCK_GROUP_RAID1;
a061fc8d 1318 }
ec44a35c
CM
1319
1320 if ((flags & BTRFS_BLOCK_GROUP_RAID0) &&
1321 ((flags & BTRFS_BLOCK_GROUP_RAID1) |
1322 (flags & BTRFS_BLOCK_GROUP_RAID10) |
1323 (flags & BTRFS_BLOCK_GROUP_DUP)))
1324 flags &= ~BTRFS_BLOCK_GROUP_RAID0;
1325 return flags;
1326}
1327
6324fbf3
CM
1328static int do_chunk_alloc(struct btrfs_trans_handle *trans,
1329 struct btrfs_root *extent_root, u64 alloc_bytes,
0ef3e66b 1330 u64 flags, int force)
6324fbf3
CM
1331{
1332 struct btrfs_space_info *space_info;
1333 u64 thresh;
1334 u64 start;
1335 u64 num_bytes;
0f9dd46c 1336 int ret = 0;
6324fbf3 1337
a061fc8d 1338 flags = reduce_alloc_profile(extent_root, flags);
ec44a35c 1339
6324fbf3 1340 space_info = __find_space_info(extent_root->fs_info, flags);
593060d7
CM
1341 if (!space_info) {
1342 ret = update_space_info(extent_root->fs_info, flags,
1343 0, 0, &space_info);
1344 BUG_ON(ret);
1345 }
6324fbf3
CM
1346 BUG_ON(!space_info);
1347
0ef3e66b
CM
1348 if (space_info->force_alloc) {
1349 force = 1;
1350 space_info->force_alloc = 0;
1351 }
6324fbf3 1352 if (space_info->full)
925baedd 1353 goto out;
6324fbf3 1354
8790d502 1355 thresh = div_factor(space_info->total_bytes, 6);
0ef3e66b
CM
1356 if (!force &&
1357 (space_info->bytes_used + space_info->bytes_pinned + alloc_bytes) <
6324fbf3 1358 thresh)
925baedd 1359 goto out;
6324fbf3 1360
925baedd 1361 mutex_lock(&extent_root->fs_info->chunk_mutex);
6324fbf3
CM
1362 ret = btrfs_alloc_chunk(trans, extent_root, &start, &num_bytes, flags);
1363 if (ret == -ENOSPC) {
1364printk("space info full %Lu\n", flags);
1365 space_info->full = 1;
a74a4b97 1366 goto out_unlock;
6324fbf3 1367 }
6324fbf3
CM
1368 BUG_ON(ret);
1369
1370 ret = btrfs_make_block_group(trans, extent_root, 0, flags,
e17cade2 1371 BTRFS_FIRST_CHUNK_TREE_OBJECTID, start, num_bytes);
6324fbf3 1372 BUG_ON(ret);
0f9dd46c 1373
a74a4b97 1374out_unlock:
333db94c 1375 mutex_unlock(&extent_root->fs_info->chunk_mutex);
a74a4b97 1376out:
0f9dd46c 1377 return ret;
6324fbf3
CM
1378}
1379
9078a3e1
CM
1380static int update_block_group(struct btrfs_trans_handle *trans,
1381 struct btrfs_root *root,
db94535d 1382 u64 bytenr, u64 num_bytes, int alloc,
0b86a832 1383 int mark_free)
9078a3e1
CM
1384{
1385 struct btrfs_block_group_cache *cache;
1386 struct btrfs_fs_info *info = root->fs_info;
db94535d 1387 u64 total = num_bytes;
9078a3e1 1388 u64 old_val;
db94535d 1389 u64 byte_in_group;
3e1ad54f 1390
7d9eb12c 1391 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
9078a3e1 1392 while(total) {
db94535d 1393 cache = btrfs_lookup_block_group(info, bytenr);
3e1ad54f 1394 if (!cache) {
9078a3e1 1395 return -1;
cd1bc465 1396 }
db94535d
CM
1397 byte_in_group = bytenr - cache->key.objectid;
1398 WARN_ON(byte_in_group > cache->key.offset);
9078a3e1 1399
c286ac48 1400 spin_lock(&cache->lock);
0f9dd46c 1401 cache->dirty = 1;
9078a3e1 1402 old_val = btrfs_block_group_used(&cache->item);
db94535d 1403 num_bytes = min(total, cache->key.offset - byte_in_group);
cd1bc465 1404 if (alloc) {
db94535d 1405 old_val += num_bytes;
6324fbf3 1406 cache->space_info->bytes_used += num_bytes;
c286ac48
CM
1407 btrfs_set_block_group_used(&cache->item, old_val);
1408 spin_unlock(&cache->lock);
cd1bc465 1409 } else {
db94535d 1410 old_val -= num_bytes;
6324fbf3 1411 cache->space_info->bytes_used -= num_bytes;
c286ac48
CM
1412 btrfs_set_block_group_used(&cache->item, old_val);
1413 spin_unlock(&cache->lock);
f510cfec 1414 if (mark_free) {
0f9dd46c
JB
1415 int ret;
1416 ret = btrfs_add_free_space(cache, bytenr,
1417 num_bytes);
1418 if (ret)
1419 return -1;
e37c9e69 1420 }
cd1bc465 1421 }
db94535d
CM
1422 total -= num_bytes;
1423 bytenr += num_bytes;
9078a3e1
CM
1424 }
1425 return 0;
1426}
6324fbf3 1427
a061fc8d
CM
1428static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
1429{
0f9dd46c
JB
1430 struct btrfs_block_group_cache *cache;
1431
1432 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
1433 if (!cache)
a061fc8d 1434 return 0;
0f9dd46c
JB
1435
1436 return cache->key.objectid;
a061fc8d
CM
1437}
1438
1439
e02119d5 1440int btrfs_update_pinned_extents(struct btrfs_root *root,
324ae4df
Y
1441 u64 bytenr, u64 num, int pin)
1442{
1443 u64 len;
1444 struct btrfs_block_group_cache *cache;
1445 struct btrfs_fs_info *fs_info = root->fs_info;
1446
7d9eb12c 1447 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
324ae4df
Y
1448 if (pin) {
1449 set_extent_dirty(&fs_info->pinned_extents,
1450 bytenr, bytenr + num - 1, GFP_NOFS);
1451 } else {
1452 clear_extent_dirty(&fs_info->pinned_extents,
1453 bytenr, bytenr + num - 1, GFP_NOFS);
1454 }
1455 while (num > 0) {
1456 cache = btrfs_lookup_block_group(fs_info, bytenr);
a061fc8d
CM
1457 if (!cache) {
1458 u64 first = first_logical_byte(root, bytenr);
1459 WARN_ON(first < bytenr);
1460 len = min(first - bytenr, num);
1461 } else {
1462 len = min(num, cache->key.offset -
1463 (bytenr - cache->key.objectid));
1464 }
324ae4df 1465 if (pin) {
a061fc8d 1466 if (cache) {
c286ac48 1467 spin_lock(&cache->lock);
a061fc8d
CM
1468 cache->pinned += len;
1469 cache->space_info->bytes_pinned += len;
c286ac48 1470 spin_unlock(&cache->lock);
a061fc8d 1471 }
324ae4df
Y
1472 fs_info->total_pinned += len;
1473 } else {
a061fc8d 1474 if (cache) {
c286ac48 1475 spin_lock(&cache->lock);
a061fc8d
CM
1476 cache->pinned -= len;
1477 cache->space_info->bytes_pinned -= len;
c286ac48 1478 spin_unlock(&cache->lock);
a061fc8d 1479 }
324ae4df
Y
1480 fs_info->total_pinned -= len;
1481 }
1482 bytenr += len;
1483 num -= len;
1484 }
1485 return 0;
1486}
9078a3e1 1487
d1310b2e 1488int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy)
ccd467d6 1489{
ccd467d6 1490 u64 last = 0;
1a5bc167
CM
1491 u64 start;
1492 u64 end;
d1310b2e 1493 struct extent_io_tree *pinned_extents = &root->fs_info->pinned_extents;
ccd467d6 1494 int ret;
ccd467d6
CM
1495
1496 while(1) {
1a5bc167
CM
1497 ret = find_first_extent_bit(pinned_extents, last,
1498 &start, &end, EXTENT_DIRTY);
1499 if (ret)
ccd467d6 1500 break;
1a5bc167
CM
1501 set_extent_dirty(copy, start, end, GFP_NOFS);
1502 last = end + 1;
ccd467d6
CM
1503 }
1504 return 0;
1505}
1506
1507int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1508 struct btrfs_root *root,
d1310b2e 1509 struct extent_io_tree *unpin)
a28ec197 1510{
1a5bc167
CM
1511 u64 start;
1512 u64 end;
a28ec197 1513 int ret;
0f9dd46c 1514 struct btrfs_block_group_cache *cache;
a28ec197 1515
925baedd 1516 mutex_lock(&root->fs_info->alloc_mutex);
a28ec197 1517 while(1) {
1a5bc167
CM
1518 ret = find_first_extent_bit(unpin, 0, &start, &end,
1519 EXTENT_DIRTY);
1520 if (ret)
a28ec197 1521 break;
e02119d5 1522 btrfs_update_pinned_extents(root, start, end + 1 - start, 0);
1a5bc167 1523 clear_extent_dirty(unpin, start, end, GFP_NOFS);
0f9dd46c
JB
1524 cache = btrfs_lookup_block_group(root->fs_info, start);
1525 if (cache->cached)
1526 btrfs_add_free_space(cache, start, end - start + 1);
c286ac48
CM
1527 if (need_resched()) {
1528 mutex_unlock(&root->fs_info->alloc_mutex);
1529 cond_resched();
1530 mutex_lock(&root->fs_info->alloc_mutex);
1531 }
a28ec197 1532 }
925baedd 1533 mutex_unlock(&root->fs_info->alloc_mutex);
a28ec197
CM
1534 return 0;
1535}
1536
98ed5174
CM
1537static int finish_current_insert(struct btrfs_trans_handle *trans,
1538 struct btrfs_root *extent_root)
037e6390 1539{
7bb86316
CM
1540 u64 start;
1541 u64 end;
1542 struct btrfs_fs_info *info = extent_root->fs_info;
d8d5f3e1 1543 struct extent_buffer *eb;
7bb86316 1544 struct btrfs_path *path;
e2fa7227 1545 struct btrfs_key ins;
d8d5f3e1 1546 struct btrfs_disk_key first;
234b63a0 1547 struct btrfs_extent_item extent_item;
037e6390 1548 int ret;
d8d5f3e1 1549 int level;
1a5bc167 1550 int err = 0;
037e6390 1551
7d9eb12c 1552 WARN_ON(!mutex_is_locked(&extent_root->fs_info->alloc_mutex));
5f39d397 1553 btrfs_set_stack_extent_refs(&extent_item, 1);
62e2749e 1554 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
7bb86316 1555 path = btrfs_alloc_path();
037e6390 1556
26b8003f 1557 while(1) {
1a5bc167
CM
1558 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1559 &end, EXTENT_LOCKED);
1560 if (ret)
26b8003f
CM
1561 break;
1562
1a5bc167
CM
1563 ins.objectid = start;
1564 ins.offset = end + 1 - start;
1565 err = btrfs_insert_item(trans, extent_root, &ins,
1566 &extent_item, sizeof(extent_item));
1567 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1568 GFP_NOFS);
c286ac48 1569
e02119d5 1570 eb = btrfs_find_create_tree_block(extent_root, ins.objectid,
c286ac48
CM
1571 ins.offset);
1572
e02119d5 1573 if (!btrfs_buffer_uptodate(eb, trans->transid))
c286ac48 1574 btrfs_read_buffer(eb, trans->transid);
c286ac48 1575
925baedd 1576 btrfs_tree_lock(eb);
d8d5f3e1
CM
1577 level = btrfs_header_level(eb);
1578 if (level == 0) {
1579 btrfs_item_key(eb, &first, 0);
1580 } else {
1581 btrfs_node_key(eb, &first, 0);
1582 }
925baedd
CM
1583 btrfs_tree_unlock(eb);
1584 free_extent_buffer(eb);
1585 /*
1586 * the first key is just a hint, so the race we've created
1587 * against reading it is fine
1588 */
7bb86316
CM
1589 err = btrfs_insert_extent_backref(trans, extent_root, path,
1590 start, extent_root->root_key.objectid,
f6dbff55
CM
1591 0, level,
1592 btrfs_disk_key_objectid(&first));
7bb86316 1593 BUG_ON(err);
c286ac48
CM
1594 if (need_resched()) {
1595 mutex_unlock(&extent_root->fs_info->alloc_mutex);
1596 cond_resched();
1597 mutex_lock(&extent_root->fs_info->alloc_mutex);
1598 }
037e6390 1599 }
7bb86316 1600 btrfs_free_path(path);
037e6390
CM
1601 return 0;
1602}
1603
db94535d 1604static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
4bef0848 1605 int is_data, int pending)
e20d96d6 1606{
1a5bc167 1607 int err = 0;
8ef97622 1608
7d9eb12c 1609 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
f4b9aa8d 1610 if (!pending) {
925baedd 1611 struct extent_buffer *buf;
4bef0848
CM
1612
1613 if (is_data)
1614 goto pinit;
1615
db94535d 1616 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
5f39d397 1617 if (buf) {
e02119d5
CM
1618 /* we can reuse a block if it hasn't been written
1619 * and it is from this transaction. We can't
1620 * reuse anything from the tree log root because
1621 * it has tiny sub-transactions.
1622 */
974e35a8
Y
1623 if (btrfs_buffer_uptodate(buf, 0) &&
1624 btrfs_try_tree_lock(buf)) {
2c90e5d6
CM
1625 u64 transid =
1626 root->fs_info->running_transaction->transid;
dc17ff8f
CM
1627 u64 header_transid =
1628 btrfs_header_generation(buf);
e02119d5
CM
1629 if (btrfs_header_owner(buf) !=
1630 BTRFS_TREE_LOG_OBJECTID &&
1631 header_transid == transid &&
6bc34676
CM
1632 !btrfs_header_flag(buf,
1633 BTRFS_HEADER_FLAG_WRITTEN)) {
55c69072 1634 clean_tree_block(NULL, root, buf);
925baedd 1635 btrfs_tree_unlock(buf);
5f39d397 1636 free_extent_buffer(buf);
c549228f 1637 return 1;
2c90e5d6 1638 }
925baedd 1639 btrfs_tree_unlock(buf);
f4b9aa8d 1640 }
5f39d397 1641 free_extent_buffer(buf);
8ef97622 1642 }
4bef0848 1643pinit:
e02119d5 1644 btrfs_update_pinned_extents(root, bytenr, num_bytes, 1);
f4b9aa8d 1645 } else {
1a5bc167 1646 set_extent_bits(&root->fs_info->pending_del,
db94535d
CM
1647 bytenr, bytenr + num_bytes - 1,
1648 EXTENT_LOCKED, GFP_NOFS);
f4b9aa8d 1649 }
be744175 1650 BUG_ON(err < 0);
e20d96d6
CM
1651 return 0;
1652}
1653
fec577fb 1654/*
a28ec197 1655 * remove an extent from the root, returns 0 on success
fec577fb 1656 */
e089f05c 1657static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
7bb86316
CM
1658 *root, u64 bytenr, u64 num_bytes,
1659 u64 root_objectid, u64 ref_generation,
1660 u64 owner_objectid, u64 owner_offset, int pin,
e37c9e69 1661 int mark_free)
a28ec197 1662{
5caf2a00 1663 struct btrfs_path *path;
e2fa7227 1664 struct btrfs_key key;
1261ec42
CM
1665 struct btrfs_fs_info *info = root->fs_info;
1666 struct btrfs_root *extent_root = info->extent_root;
5f39d397 1667 struct extent_buffer *leaf;
a28ec197 1668 int ret;
952fccac
CM
1669 int extent_slot = 0;
1670 int found_extent = 0;
1671 int num_to_del = 1;
234b63a0 1672 struct btrfs_extent_item *ei;
cf27e1ee 1673 u32 refs;
037e6390 1674
7d9eb12c 1675 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
db94535d 1676 key.objectid = bytenr;
62e2749e 1677 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
db94535d 1678 key.offset = num_bytes;
5caf2a00 1679 path = btrfs_alloc_path();
54aa1f4d
CM
1680 if (!path)
1681 return -ENOMEM;
5f26f772 1682
3c12ac72 1683 path->reada = 1;
7bb86316
CM
1684 ret = lookup_extent_backref(trans, extent_root, path,
1685 bytenr, root_objectid,
1686 ref_generation,
1687 owner_objectid, owner_offset, 1);
1688 if (ret == 0) {
952fccac
CM
1689 struct btrfs_key found_key;
1690 extent_slot = path->slots[0];
1691 while(extent_slot > 0) {
1692 extent_slot--;
1693 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1694 extent_slot);
1695 if (found_key.objectid != bytenr)
1696 break;
1697 if (found_key.type == BTRFS_EXTENT_ITEM_KEY &&
1698 found_key.offset == num_bytes) {
1699 found_extent = 1;
1700 break;
1701 }
1702 if (path->slots[0] - extent_slot > 5)
1703 break;
1704 }
1705 if (!found_extent)
1706 ret = btrfs_del_item(trans, extent_root, path);
7bb86316
CM
1707 } else {
1708 btrfs_print_leaf(extent_root, path->nodes[0]);
1709 WARN_ON(1);
1710 printk("Unable to find ref byte nr %Lu root %Lu "
1711 " gen %Lu owner %Lu offset %Lu\n", bytenr,
1712 root_objectid, ref_generation, owner_objectid,
1713 owner_offset);
1714 }
952fccac
CM
1715 if (!found_extent) {
1716 btrfs_release_path(extent_root, path);
1717 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
1718 if (ret < 0)
1719 return ret;
1720 BUG_ON(ret);
1721 extent_slot = path->slots[0];
1722 }
5f39d397
CM
1723
1724 leaf = path->nodes[0];
952fccac 1725 ei = btrfs_item_ptr(leaf, extent_slot,
123abc88 1726 struct btrfs_extent_item);
5f39d397
CM
1727 refs = btrfs_extent_refs(leaf, ei);
1728 BUG_ON(refs == 0);
1729 refs -= 1;
1730 btrfs_set_extent_refs(leaf, ei, refs);
952fccac 1731
5f39d397
CM
1732 btrfs_mark_buffer_dirty(leaf);
1733
952fccac
CM
1734 if (refs == 0 && found_extent && path->slots[0] == extent_slot + 1) {
1735 /* if the back ref and the extent are next to each other
1736 * they get deleted below in one shot
1737 */
1738 path->slots[0] = extent_slot;
1739 num_to_del = 2;
1740 } else if (found_extent) {
1741 /* otherwise delete the extent back ref */
1742 ret = btrfs_del_item(trans, extent_root, path);
1743 BUG_ON(ret);
1744 /* if refs are 0, we need to setup the path for deletion */
1745 if (refs == 0) {
1746 btrfs_release_path(extent_root, path);
1747 ret = btrfs_search_slot(trans, extent_root, &key, path,
1748 -1, 1);
1749 if (ret < 0)
1750 return ret;
1751 BUG_ON(ret);
1752 }
1753 }
1754
cf27e1ee 1755 if (refs == 0) {
db94535d
CM
1756 u64 super_used;
1757 u64 root_used;
21af804c
DW
1758#ifdef BIO_RW_DISCARD
1759 u64 map_length = num_bytes;
1760 struct btrfs_multi_bio *multi = NULL;
1761#endif
78fae27e
CM
1762
1763 if (pin) {
4bef0848
CM
1764 ret = pin_down_bytes(root, bytenr, num_bytes,
1765 owner_objectid >= BTRFS_FIRST_FREE_OBJECTID, 0);
c549228f
Y
1766 if (ret > 0)
1767 mark_free = 1;
1768 BUG_ON(ret < 0);
78fae27e
CM
1769 }
1770
58176a96 1771 /* block accounting for super block */
a2135011 1772 spin_lock_irq(&info->delalloc_lock);
db94535d
CM
1773 super_used = btrfs_super_bytes_used(&info->super_copy);
1774 btrfs_set_super_bytes_used(&info->super_copy,
1775 super_used - num_bytes);
a2135011 1776 spin_unlock_irq(&info->delalloc_lock);
58176a96
JB
1777
1778 /* block accounting for root item */
db94535d 1779 root_used = btrfs_root_used(&root->root_item);
5f39d397 1780 btrfs_set_root_used(&root->root_item,
db94535d 1781 root_used - num_bytes);
952fccac
CM
1782 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
1783 num_to_del);
54aa1f4d
CM
1784 if (ret) {
1785 return ret;
1786 }
db94535d 1787 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
0b86a832 1788 mark_free);
9078a3e1 1789 BUG_ON(ret);
21af804c
DW
1790
1791#ifdef BIO_RW_DISCARD
1792 /* Tell the block device(s) that the sectors can be discarded */
1793 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
1794 bytenr, &map_length, &multi, 0);
1795 if (!ret) {
1796 struct btrfs_bio_stripe *stripe = multi->stripes;
1797 int i;
1798
1799 if (map_length > num_bytes)
1800 map_length = num_bytes;
1801
1802 for (i = 0; i < multi->num_stripes; i++, stripe++) {
1803 blkdev_issue_discard(stripe->dev->bdev,
1804 stripe->physical >> 9,
1805 map_length >> 9);
1806 }
1807 kfree(multi);
1808 }
1809#endif
a28ec197 1810 }
5caf2a00 1811 btrfs_free_path(path);
e089f05c 1812 finish_current_insert(trans, extent_root);
a28ec197
CM
1813 return ret;
1814}
1815
a28ec197
CM
1816/*
1817 * find all the blocks marked as pending in the radix tree and remove
1818 * them from the extent map
1819 */
e089f05c
CM
1820static int del_pending_extents(struct btrfs_trans_handle *trans, struct
1821 btrfs_root *extent_root)
a28ec197
CM
1822{
1823 int ret;
e20d96d6 1824 int err = 0;
1a5bc167
CM
1825 u64 start;
1826 u64 end;
d1310b2e
CM
1827 struct extent_io_tree *pending_del;
1828 struct extent_io_tree *pinned_extents;
8ef97622 1829
7d9eb12c 1830 WARN_ON(!mutex_is_locked(&extent_root->fs_info->alloc_mutex));
1a5bc167
CM
1831 pending_del = &extent_root->fs_info->pending_del;
1832 pinned_extents = &extent_root->fs_info->pinned_extents;
a28ec197
CM
1833
1834 while(1) {
1a5bc167
CM
1835 ret = find_first_extent_bit(pending_del, 0, &start, &end,
1836 EXTENT_LOCKED);
1837 if (ret)
a28ec197 1838 break;
1a5bc167
CM
1839 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
1840 GFP_NOFS);
c286ac48
CM
1841 if (!test_range_bit(&extent_root->fs_info->extent_ins,
1842 start, end, EXTENT_LOCKED, 0)) {
e02119d5 1843 btrfs_update_pinned_extents(extent_root, start,
c286ac48
CM
1844 end + 1 - start, 1);
1845 ret = __free_extent(trans, extent_root,
1846 start, end + 1 - start,
1847 extent_root->root_key.objectid,
1848 0, 0, 0, 0, 0);
1849 } else {
1850 clear_extent_bits(&extent_root->fs_info->extent_ins,
1851 start, end, EXTENT_LOCKED, GFP_NOFS);
1852 }
1a5bc167
CM
1853 if (ret)
1854 err = ret;
c286ac48
CM
1855
1856 if (need_resched()) {
1857 mutex_unlock(&extent_root->fs_info->alloc_mutex);
1858 cond_resched();
1859 mutex_lock(&extent_root->fs_info->alloc_mutex);
1860 }
fec577fb 1861 }
e20d96d6 1862 return err;
fec577fb
CM
1863}
1864
1865/*
1866 * remove an extent from the root, returns 0 on success
1867 */
925baedd
CM
1868static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
1869 struct btrfs_root *root, u64 bytenr,
1870 u64 num_bytes, u64 root_objectid,
1871 u64 ref_generation, u64 owner_objectid,
1872 u64 owner_offset, int pin)
fec577fb 1873{
9f5fae2f 1874 struct btrfs_root *extent_root = root->fs_info->extent_root;
fec577fb
CM
1875 int pending_ret;
1876 int ret;
a28ec197 1877
db94535d 1878 WARN_ON(num_bytes < root->sectorsize);
7bb86316
CM
1879 if (!root->ref_cows)
1880 ref_generation = 0;
1881
fec577fb 1882 if (root == extent_root) {
4bef0848 1883 pin_down_bytes(root, bytenr, num_bytes, 0, 1);
fec577fb
CM
1884 return 0;
1885 }
4bef0848 1886 /* if metadata always pin */
d00aff00
CM
1887 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID) {
1888 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
0f9dd46c
JB
1889 struct btrfs_block_group_cache *cache;
1890
d00aff00 1891 /* btrfs_free_reserved_extent */
0f9dd46c
JB
1892 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
1893 BUG_ON(!cache);
1894 btrfs_add_free_space(cache, bytenr, num_bytes);
d00aff00
CM
1895 return 0;
1896 }
4bef0848 1897 pin = 1;
d00aff00 1898 }
4bef0848
CM
1899
1900 /* if data pin when any transaction has committed this */
1901 if (ref_generation != trans->transid)
1902 pin = 1;
1903
7bb86316
CM
1904 ret = __free_extent(trans, root, bytenr, num_bytes, root_objectid,
1905 ref_generation, owner_objectid, owner_offset,
1906 pin, pin == 0);
ee6e6504
CM
1907
1908 finish_current_insert(trans, root->fs_info->extent_root);
e20d96d6 1909 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
fec577fb
CM
1910 return ret ? ret : pending_ret;
1911}
1912
925baedd
CM
1913int btrfs_free_extent(struct btrfs_trans_handle *trans,
1914 struct btrfs_root *root, u64 bytenr,
1915 u64 num_bytes, u64 root_objectid,
1916 u64 ref_generation, u64 owner_objectid,
1917 u64 owner_offset, int pin)
1918{
1919 int ret;
1920
1921 maybe_lock_mutex(root);
1922 ret = __btrfs_free_extent(trans, root, bytenr, num_bytes,
1923 root_objectid, ref_generation,
1924 owner_objectid, owner_offset, pin);
1925 maybe_unlock_mutex(root);
1926 return ret;
1927}
1928
87ee04eb
CM
1929static u64 stripe_align(struct btrfs_root *root, u64 val)
1930{
1931 u64 mask = ((u64)root->stripesize - 1);
1932 u64 ret = (val + mask) & ~mask;
1933 return ret;
1934}
1935
fec577fb
CM
1936/*
1937 * walks the btree of allocated extents and find a hole of a given size.
1938 * The key ins is changed to record the hole:
1939 * ins->objectid == block start
62e2749e 1940 * ins->flags = BTRFS_EXTENT_ITEM_KEY
fec577fb
CM
1941 * ins->offset == number of blocks
1942 * Any available blocks before search_start are skipped.
1943 */
98ed5174
CM
1944static int noinline find_free_extent(struct btrfs_trans_handle *trans,
1945 struct btrfs_root *orig_root,
1946 u64 num_bytes, u64 empty_size,
1947 u64 search_start, u64 search_end,
1948 u64 hint_byte, struct btrfs_key *ins,
1949 u64 exclude_start, u64 exclude_nr,
1950 int data)
fec577fb 1951{
87ee04eb 1952 int ret;
a061fc8d 1953 u64 orig_search_start;
9f5fae2f 1954 struct btrfs_root * root = orig_root->fs_info->extent_root;
f2458e1d 1955 struct btrfs_fs_info *info = root->fs_info;
db94535d 1956 u64 total_needed = num_bytes;
239b14b3 1957 u64 *last_ptr = NULL;
be08c1b9 1958 struct btrfs_block_group_cache *block_group;
0ef3e66b 1959 int chunk_alloc_done = 0;
239b14b3 1960 int empty_cluster = 2 * 1024 * 1024;
0ef3e66b 1961 int allowed_chunk_alloc = 0;
fec577fb 1962
db94535d 1963 WARN_ON(num_bytes < root->sectorsize);
b1a4d965
CM
1964 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
1965
0ef3e66b
CM
1966 if (orig_root->ref_cows || empty_size)
1967 allowed_chunk_alloc = 1;
1968
239b14b3
CM
1969 if (data & BTRFS_BLOCK_GROUP_METADATA) {
1970 last_ptr = &root->fs_info->last_alloc;
8790d502 1971 empty_cluster = 256 * 1024;
239b14b3
CM
1972 }
1973
0f9dd46c 1974 if ((data & BTRFS_BLOCK_GROUP_DATA) && btrfs_test_opt(root, SSD))
239b14b3 1975 last_ptr = &root->fs_info->last_data_alloc;
0f9dd46c 1976
e02119d5
CM
1977 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
1978 last_ptr = &root->fs_info->last_log_alloc;
1979 if (!last_ptr == 0 && root->fs_info->last_alloc) {
1980 *last_ptr = root->fs_info->last_alloc + empty_cluster;
1981 }
1982 }
239b14b3
CM
1983
1984 if (last_ptr) {
1985 if (*last_ptr)
1986 hint_byte = *last_ptr;
0f9dd46c 1987 else
239b14b3 1988 empty_size += empty_cluster;
239b14b3
CM
1989 }
1990
a061fc8d
CM
1991 search_start = max(search_start, first_logical_byte(root, 0));
1992 orig_search_start = search_start;
1993
7f93bf8d
CM
1994 if (search_end == (u64)-1)
1995 search_end = btrfs_super_total_bytes(&info->super_copy);
0b86a832 1996
239b14b3 1997 search_start = max(search_start, hint_byte);
6702ed49 1998 total_needed += empty_size;
0b86a832 1999
0f9dd46c
JB
2000new_group:
2001 block_group = btrfs_lookup_block_group(info, search_start);
2002
2003 /*
2004 * Ok this looks a little tricky, buts its really simple. First if we
2005 * didn't find a block group obviously we want to start over.
2006 * Secondly, if the block group we found does not match the type we
2007 * need, and we have a last_ptr and its not 0, chances are the last
2008 * allocation we made was at the end of the block group, so lets go
2009 * ahead and skip the looking through the rest of the block groups and
2010 * start at the beginning. This helps with metadata allocations,
2011 * since you are likely to have a bunch of data block groups to search
2012 * through first before you realize that you need to start over, so go
2013 * ahead and start over and save the time.
2014 */
2015 if (!block_group || (!block_group_bits(block_group, data) &&
2016 last_ptr && *last_ptr)) {
2017 if (search_start != orig_search_start) {
2018 if (last_ptr && *last_ptr)
2019 *last_ptr = 0;
2020 search_start = orig_search_start;
2021 goto new_group;
2022 } else if (!chunk_alloc_done && allowed_chunk_alloc) {
2023 ret = do_chunk_alloc(trans, root,
2024 num_bytes + 2 * 1024 * 1024,
2025 data, 1);
2026 if (ret < 0) {
2027 struct btrfs_space_info *info;
2028
2029 info = __find_space_info(root->fs_info, data);
2030 goto error;
2031 }
2032 BUG_ON(ret);
2033 chunk_alloc_done = 1;
2034 search_start = orig_search_start;
2035 goto new_group;
2036 } else {
2037 ret = -ENOSPC;
2038 goto error;
0ef3e66b 2039 }
239b14b3 2040 }
e19caa5f 2041
0f9dd46c
JB
2042 /*
2043 * this is going to seach through all of the existing block groups it
2044 * can find, so if we don't find something we need to see if we can
2045 * allocate what we need.
2046 */
2047 ret = find_free_space(root, &block_group, &search_start,
2048 total_needed, data);
2049 if (ret == -ENOSPC) {
2050 /*
2051 * instead of allocating, start at the original search start
2052 * and see if there is something to be found, if not then we
2053 * allocate
2054 */
2055 if (search_start != orig_search_start) {
2056 if (last_ptr && *last_ptr) {
2057 *last_ptr = 0;
2058 total_needed += empty_cluster;
2059 }
2060 search_start = orig_search_start;
2061 goto new_group;
239b14b3 2062 }
0f9dd46c
JB
2063
2064 /*
2065 * we've already allocated, we're pretty screwed
2066 */
2067 if (chunk_alloc_done) {
239b14b3 2068 goto error;
0f9dd46c
JB
2069 } else if (!allowed_chunk_alloc && block_group &&
2070 block_group_bits(block_group, data)) {
2071 block_group->space_info->force_alloc = 1;
2072 goto error;
2073 } else if (!allowed_chunk_alloc) {
2074 goto error;
2075 }
2076
2077 ret = do_chunk_alloc(trans, root, num_bytes + 2 * 1024 * 1024,
2078 data, 1);
2079 if (ret < 0)
2080 goto error;
2081
2082 BUG_ON(ret);
2083 chunk_alloc_done = 1;
2084 if (block_group)
2085 search_start = block_group->key.objectid +
2086 block_group->key.offset;
2087 else
2088 search_start = orig_search_start;
2089 goto new_group;
239b14b3
CM
2090 }
2091
0f9dd46c
JB
2092 if (ret)
2093 goto error;
2094
0b86a832
CM
2095 search_start = stripe_align(root, search_start);
2096 ins->objectid = search_start;
2097 ins->offset = num_bytes;
e37c9e69 2098
0f9dd46c
JB
2099 if (ins->objectid + num_bytes >= search_end) {
2100 search_start = orig_search_start;
2101 if (chunk_alloc_done) {
2102 ret = -ENOSPC;
2103 goto error;
2104 }
2105 goto new_group;
2106 }
0b86a832
CM
2107
2108 if (ins->objectid + num_bytes >
2109 block_group->key.objectid + block_group->key.offset) {
0f9dd46c
JB
2110 if (search_start == orig_search_start && chunk_alloc_done) {
2111 ret = -ENOSPC;
2112 goto error;
2113 }
e19caa5f
CM
2114 search_start = block_group->key.objectid +
2115 block_group->key.offset;
2116 goto new_group;
2117 }
0b86a832 2118
db94535d 2119 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
f2654de4
CM
2120 ins->objectid < exclude_start + exclude_nr)) {
2121 search_start = exclude_start + exclude_nr;
2122 goto new_group;
2123 }
0b86a832 2124
0f9dd46c
JB
2125 if (!(data & BTRFS_BLOCK_GROUP_DATA))
2126 trans->block_group = block_group;
2127
db94535d 2128 ins->offset = num_bytes;
239b14b3
CM
2129 if (last_ptr) {
2130 *last_ptr = ins->objectid + ins->offset;
2131 if (*last_ptr ==
0f9dd46c 2132 btrfs_super_total_bytes(&root->fs_info->super_copy))
239b14b3 2133 *last_ptr = 0;
be744175 2134 }
be744175 2135
0f9dd46c 2136 ret = 0;
0f70abe2 2137error:
0f70abe2 2138 return ret;
fec577fb 2139}
ec44a35c 2140
0f9dd46c
JB
2141static void dump_space_info(struct btrfs_space_info *info, u64 bytes)
2142{
2143 struct btrfs_block_group_cache *cache;
2144 struct list_head *l;
2145
2146 printk(KERN_INFO "space_info has %Lu free, is %sfull\n",
2147 info->total_bytes - info->bytes_used - info->bytes_pinned,
2148 (info->full) ? "" : "not ");
2149
2150 spin_lock(&info->lock);
2151 list_for_each(l, &info->block_groups) {
2152 cache = list_entry(l, struct btrfs_block_group_cache, list);
2153 spin_lock(&cache->lock);
2154 printk(KERN_INFO "block group %Lu has %Lu bytes, %Lu used "
2155 "%Lu pinned\n",
2156 cache->key.objectid, cache->key.offset,
2157 btrfs_block_group_used(&cache->item), cache->pinned);
2158 btrfs_dump_free_space(cache, bytes);
2159 spin_unlock(&cache->lock);
2160 }
2161 spin_unlock(&info->lock);
2162}
e6dcd2dc
CM
2163static int __btrfs_reserve_extent(struct btrfs_trans_handle *trans,
2164 struct btrfs_root *root,
2165 u64 num_bytes, u64 min_alloc_size,
2166 u64 empty_size, u64 hint_byte,
2167 u64 search_end, struct btrfs_key *ins,
2168 u64 data)
fec577fb
CM
2169{
2170 int ret;
fbdc762b 2171 u64 search_start = 0;
8790d502 2172 u64 alloc_profile;
1261ec42 2173 struct btrfs_fs_info *info = root->fs_info;
0f9dd46c 2174 struct btrfs_block_group_cache *cache;
925baedd 2175
6324fbf3 2176 if (data) {
8790d502
CM
2177 alloc_profile = info->avail_data_alloc_bits &
2178 info->data_alloc_profile;
2179 data = BTRFS_BLOCK_GROUP_DATA | alloc_profile;
6324fbf3 2180 } else if (root == root->fs_info->chunk_root) {
8790d502
CM
2181 alloc_profile = info->avail_system_alloc_bits &
2182 info->system_alloc_profile;
2183 data = BTRFS_BLOCK_GROUP_SYSTEM | alloc_profile;
6324fbf3 2184 } else {
8790d502
CM
2185 alloc_profile = info->avail_metadata_alloc_bits &
2186 info->metadata_alloc_profile;
2187 data = BTRFS_BLOCK_GROUP_METADATA | alloc_profile;
6324fbf3 2188 }
98d20f67 2189again:
a061fc8d 2190 data = reduce_alloc_profile(root, data);
0ef3e66b
CM
2191 /*
2192 * the only place that sets empty_size is btrfs_realloc_node, which
2193 * is not called recursively on allocations
2194 */
2195 if (empty_size || root->ref_cows) {
593060d7 2196 if (!(data & BTRFS_BLOCK_GROUP_METADATA)) {
6324fbf3 2197 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
0ef3e66b
CM
2198 2 * 1024 * 1024,
2199 BTRFS_BLOCK_GROUP_METADATA |
2200 (info->metadata_alloc_profile &
2201 info->avail_metadata_alloc_bits), 0);
6324fbf3
CM
2202 }
2203 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
0ef3e66b 2204 num_bytes + 2 * 1024 * 1024, data, 0);
6324fbf3 2205 }
0b86a832 2206
db94535d
CM
2207 WARN_ON(num_bytes < root->sectorsize);
2208 ret = find_free_extent(trans, root, num_bytes, empty_size,
2209 search_start, search_end, hint_byte, ins,
26b8003f
CM
2210 trans->alloc_exclude_start,
2211 trans->alloc_exclude_nr, data);
3b951516 2212
98d20f67
CM
2213 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
2214 num_bytes = num_bytes >> 1;
0f9dd46c 2215 num_bytes = num_bytes & ~(root->sectorsize - 1);
98d20f67 2216 num_bytes = max(num_bytes, min_alloc_size);
0ef3e66b
CM
2217 do_chunk_alloc(trans, root->fs_info->extent_root,
2218 num_bytes, data, 1);
98d20f67
CM
2219 goto again;
2220 }
ec44a35c 2221 if (ret) {
0f9dd46c
JB
2222 struct btrfs_space_info *sinfo;
2223
2224 sinfo = __find_space_info(root->fs_info, data);
2225 printk("allocation failed flags %Lu, wanted %Lu\n",
2226 data, num_bytes);
2227 dump_space_info(sinfo, num_bytes);
925baedd 2228 BUG();
925baedd 2229 }
0f9dd46c
JB
2230 cache = btrfs_lookup_block_group(root->fs_info, ins->objectid);
2231 if (!cache) {
2232 printk(KERN_ERR "Unable to find block group for %Lu\n", ins->objectid);
2233 return -ENOSPC;
2234 }
2235
2236 ret = btrfs_remove_free_space(cache, ins->objectid, ins->offset);
2237
2238 return ret;
e6dcd2dc
CM
2239}
2240
65b51a00
CM
2241int btrfs_free_reserved_extent(struct btrfs_root *root, u64 start, u64 len)
2242{
0f9dd46c
JB
2243 struct btrfs_block_group_cache *cache;
2244
65b51a00 2245 maybe_lock_mutex(root);
0f9dd46c
JB
2246 cache = btrfs_lookup_block_group(root->fs_info, start);
2247 if (!cache) {
2248 printk(KERN_ERR "Unable to find block group for %Lu\n", start);
2249 maybe_unlock_mutex(root);
2250 return -ENOSPC;
2251 }
2252 btrfs_add_free_space(cache, start, len);
65b51a00
CM
2253 maybe_unlock_mutex(root);
2254 return 0;
2255}
2256
e6dcd2dc
CM
2257int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
2258 struct btrfs_root *root,
2259 u64 num_bytes, u64 min_alloc_size,
2260 u64 empty_size, u64 hint_byte,
2261 u64 search_end, struct btrfs_key *ins,
2262 u64 data)
2263{
2264 int ret;
2265 maybe_lock_mutex(root);
2266 ret = __btrfs_reserve_extent(trans, root, num_bytes, min_alloc_size,
2267 empty_size, hint_byte, search_end, ins,
2268 data);
2269 maybe_unlock_mutex(root);
2270 return ret;
2271}
2272
2273static int __btrfs_alloc_reserved_extent(struct btrfs_trans_handle *trans,
2274 struct btrfs_root *root,
2275 u64 root_objectid, u64 ref_generation,
2276 u64 owner, u64 owner_offset,
2277 struct btrfs_key *ins)
2278{
2279 int ret;
2280 int pending_ret;
2281 u64 super_used;
2282 u64 root_used;
2283 u64 num_bytes = ins->offset;
2284 u32 sizes[2];
2285 struct btrfs_fs_info *info = root->fs_info;
2286 struct btrfs_root *extent_root = info->extent_root;
2287 struct btrfs_extent_item *extent_item;
2288 struct btrfs_extent_ref *ref;
2289 struct btrfs_path *path;
2290 struct btrfs_key keys[2];
fec577fb 2291
58176a96 2292 /* block accounting for super block */
a2135011 2293 spin_lock_irq(&info->delalloc_lock);
db94535d
CM
2294 super_used = btrfs_super_bytes_used(&info->super_copy);
2295 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
a2135011 2296 spin_unlock_irq(&info->delalloc_lock);
26b8003f 2297
58176a96 2298 /* block accounting for root item */
db94535d
CM
2299 root_used = btrfs_root_used(&root->root_item);
2300 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
58176a96 2301
26b8003f 2302 if (root == extent_root) {
1a5bc167
CM
2303 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
2304 ins->objectid + ins->offset - 1,
2305 EXTENT_LOCKED, GFP_NOFS);
26b8003f
CM
2306 goto update_block;
2307 }
2308
47e4bb98
CM
2309 memcpy(&keys[0], ins, sizeof(*ins));
2310 keys[1].offset = hash_extent_ref(root_objectid, ref_generation,
2311 owner, owner_offset);
2312 keys[1].objectid = ins->objectid;
2313 keys[1].type = BTRFS_EXTENT_REF_KEY;
2314 sizes[0] = sizeof(*extent_item);
2315 sizes[1] = sizeof(*ref);
7bb86316
CM
2316
2317 path = btrfs_alloc_path();
2318 BUG_ON(!path);
47e4bb98
CM
2319
2320 ret = btrfs_insert_empty_items(trans, extent_root, path, keys,
2321 sizes, 2);
ccd467d6 2322 BUG_ON(ret);
0f9dd46c 2323
47e4bb98
CM
2324 extent_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2325 struct btrfs_extent_item);
2326 btrfs_set_extent_refs(path->nodes[0], extent_item, 1);
2327 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
2328 struct btrfs_extent_ref);
2329
2330 btrfs_set_ref_root(path->nodes[0], ref, root_objectid);
2331 btrfs_set_ref_generation(path->nodes[0], ref, ref_generation);
2332 btrfs_set_ref_objectid(path->nodes[0], ref, owner);
2333 btrfs_set_ref_offset(path->nodes[0], ref, owner_offset);
2334
2335 btrfs_mark_buffer_dirty(path->nodes[0]);
2336
2337 trans->alloc_exclude_start = 0;
2338 trans->alloc_exclude_nr = 0;
7bb86316 2339 btrfs_free_path(path);
e089f05c 2340 finish_current_insert(trans, extent_root);
e20d96d6 2341 pending_ret = del_pending_extents(trans, extent_root);
f510cfec 2342
925baedd
CM
2343 if (ret)
2344 goto out;
e37c9e69 2345 if (pending_ret) {
925baedd
CM
2346 ret = pending_ret;
2347 goto out;
e37c9e69 2348 }
26b8003f
CM
2349
2350update_block:
0b86a832 2351 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0);
f5947066
CM
2352 if (ret) {
2353 printk("update block group failed for %Lu %Lu\n",
2354 ins->objectid, ins->offset);
2355 BUG();
2356 }
925baedd 2357out:
e6dcd2dc
CM
2358 return ret;
2359}
2360
2361int btrfs_alloc_reserved_extent(struct btrfs_trans_handle *trans,
2362 struct btrfs_root *root,
2363 u64 root_objectid, u64 ref_generation,
2364 u64 owner, u64 owner_offset,
2365 struct btrfs_key *ins)
2366{
2367 int ret;
1c2308f8
CM
2368
2369 if (root_objectid == BTRFS_TREE_LOG_OBJECTID)
2370 return 0;
e6dcd2dc
CM
2371 maybe_lock_mutex(root);
2372 ret = __btrfs_alloc_reserved_extent(trans, root, root_objectid,
2373 ref_generation, owner,
2374 owner_offset, ins);
2375 maybe_unlock_mutex(root);
2376 return ret;
2377}
e02119d5
CM
2378
2379/*
2380 * this is used by the tree logging recovery code. It records that
2381 * an extent has been allocated and makes sure to clear the free
2382 * space cache bits as well
2383 */
2384int btrfs_alloc_logged_extent(struct btrfs_trans_handle *trans,
2385 struct btrfs_root *root,
2386 u64 root_objectid, u64 ref_generation,
2387 u64 owner, u64 owner_offset,
2388 struct btrfs_key *ins)
2389{
2390 int ret;
2391 struct btrfs_block_group_cache *block_group;
2392
2393 maybe_lock_mutex(root);
2394 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
2395 cache_block_group(root, block_group);
2396
0f9dd46c
JB
2397 ret = btrfs_remove_free_space(block_group, ins->objectid, ins->offset);
2398 BUG_ON(ret);
2399
e02119d5
CM
2400 ret = __btrfs_alloc_reserved_extent(trans, root, root_objectid,
2401 ref_generation, owner,
2402 owner_offset, ins);
2403 maybe_unlock_mutex(root);
2404 return ret;
2405}
2406
e6dcd2dc
CM
2407/*
2408 * finds a free extent and does all the dirty work required for allocation
2409 * returns the key for the extent through ins, and a tree buffer for
2410 * the first block of the extent through buf.
2411 *
2412 * returns 0 if everything worked, non-zero otherwise.
2413 */
2414int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
2415 struct btrfs_root *root,
2416 u64 num_bytes, u64 min_alloc_size,
2417 u64 root_objectid, u64 ref_generation,
2418 u64 owner, u64 owner_offset,
2419 u64 empty_size, u64 hint_byte,
2420 u64 search_end, struct btrfs_key *ins, u64 data)
2421{
2422 int ret;
2423
2424 maybe_lock_mutex(root);
2425
2426 ret = __btrfs_reserve_extent(trans, root, num_bytes,
2427 min_alloc_size, empty_size, hint_byte,
2428 search_end, ins, data);
2429 BUG_ON(ret);
d00aff00
CM
2430 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
2431 ret = __btrfs_alloc_reserved_extent(trans, root, root_objectid,
2432 ref_generation, owner,
2433 owner_offset, ins);
2434 BUG_ON(ret);
e6dcd2dc 2435
d00aff00 2436 }
925baedd
CM
2437 maybe_unlock_mutex(root);
2438 return ret;
fec577fb 2439}
65b51a00
CM
2440
2441struct extent_buffer *btrfs_init_new_buffer(struct btrfs_trans_handle *trans,
2442 struct btrfs_root *root,
2443 u64 bytenr, u32 blocksize)
2444{
2445 struct extent_buffer *buf;
2446
2447 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
2448 if (!buf)
2449 return ERR_PTR(-ENOMEM);
2450 btrfs_set_header_generation(buf, trans->transid);
2451 btrfs_tree_lock(buf);
2452 clean_tree_block(trans, root, buf);
2453 btrfs_set_buffer_uptodate(buf);
d0c803c4
CM
2454 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
2455 set_extent_dirty(&root->dirty_log_pages, buf->start,
2456 buf->start + buf->len - 1, GFP_NOFS);
2457 } else {
2458 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
65b51a00 2459 buf->start + buf->len - 1, GFP_NOFS);
d0c803c4 2460 }
65b51a00
CM
2461 trans->blocks_used++;
2462 return buf;
2463}
2464
fec577fb
CM
2465/*
2466 * helper function to allocate a block for a given tree
2467 * returns the tree buffer or NULL.
2468 */
5f39d397 2469struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
7bb86316
CM
2470 struct btrfs_root *root,
2471 u32 blocksize,
2472 u64 root_objectid,
2473 u64 ref_generation,
2474 u64 first_objectid,
2475 int level,
2476 u64 hint,
5f39d397 2477 u64 empty_size)
fec577fb 2478{
e2fa7227 2479 struct btrfs_key ins;
fec577fb 2480 int ret;
5f39d397 2481 struct extent_buffer *buf;
fec577fb 2482
98d20f67 2483 ret = btrfs_alloc_extent(trans, root, blocksize, blocksize,
7bb86316 2484 root_objectid, ref_generation,
f6dbff55 2485 level, first_objectid, empty_size, hint,
db94535d 2486 (u64)-1, &ins, 0);
fec577fb 2487 if (ret) {
54aa1f4d
CM
2488 BUG_ON(ret > 0);
2489 return ERR_PTR(ret);
fec577fb 2490 }
55c69072 2491
65b51a00 2492 buf = btrfs_init_new_buffer(trans, root, ins.objectid, blocksize);
fec577fb
CM
2493 return buf;
2494}
a28ec197 2495
e02119d5
CM
2496int btrfs_drop_leaf_ref(struct btrfs_trans_handle *trans,
2497 struct btrfs_root *root, struct extent_buffer *leaf)
6407bf6d 2498{
7bb86316
CM
2499 u64 leaf_owner;
2500 u64 leaf_generation;
5f39d397 2501 struct btrfs_key key;
6407bf6d
CM
2502 struct btrfs_file_extent_item *fi;
2503 int i;
2504 int nritems;
2505 int ret;
2506
5f39d397
CM
2507 BUG_ON(!btrfs_is_leaf(leaf));
2508 nritems = btrfs_header_nritems(leaf);
7bb86316
CM
2509 leaf_owner = btrfs_header_owner(leaf);
2510 leaf_generation = btrfs_header_generation(leaf);
2511
6407bf6d 2512 for (i = 0; i < nritems; i++) {
db94535d 2513 u64 disk_bytenr;
e34a5b4f 2514 cond_resched();
5f39d397
CM
2515
2516 btrfs_item_key_to_cpu(leaf, &key, i);
2517 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
6407bf6d
CM
2518 continue;
2519 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
5f39d397
CM
2520 if (btrfs_file_extent_type(leaf, fi) ==
2521 BTRFS_FILE_EXTENT_INLINE)
236454df 2522 continue;
6407bf6d
CM
2523 /*
2524 * FIXME make sure to insert a trans record that
2525 * repeats the snapshot del on crash
2526 */
db94535d
CM
2527 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
2528 if (disk_bytenr == 0)
3a686375 2529 continue;
4a096752
CM
2530
2531 mutex_lock(&root->fs_info->alloc_mutex);
925baedd 2532 ret = __btrfs_free_extent(trans, root, disk_bytenr,
7bb86316
CM
2533 btrfs_file_extent_disk_num_bytes(leaf, fi),
2534 leaf_owner, leaf_generation,
2535 key.objectid, key.offset, 0);
4a096752 2536 mutex_unlock(&root->fs_info->alloc_mutex);
2dd3e67b
CM
2537
2538 atomic_inc(&root->fs_info->throttle_gen);
2539 wake_up(&root->fs_info->transaction_throttle);
2540 cond_resched();
2541
6407bf6d
CM
2542 BUG_ON(ret);
2543 }
2544 return 0;
2545}
2546
e02119d5
CM
2547static int noinline cache_drop_leaf_ref(struct btrfs_trans_handle *trans,
2548 struct btrfs_root *root,
2549 struct btrfs_leaf_ref *ref)
31153d81
YZ
2550{
2551 int i;
2552 int ret;
2553 struct btrfs_extent_info *info = ref->extents;
2554
31153d81
YZ
2555 for (i = 0; i < ref->nritems; i++) {
2556 mutex_lock(&root->fs_info->alloc_mutex);
2557 ret = __btrfs_free_extent(trans, root,
2558 info->bytenr, info->num_bytes,
2559 ref->owner, ref->generation,
2560 info->objectid, info->offset, 0);
2561 mutex_unlock(&root->fs_info->alloc_mutex);
2dd3e67b
CM
2562
2563 atomic_inc(&root->fs_info->throttle_gen);
2564 wake_up(&root->fs_info->transaction_throttle);
2565 cond_resched();
2566
31153d81
YZ
2567 BUG_ON(ret);
2568 info++;
2569 }
31153d81
YZ
2570
2571 return 0;
2572}
2573
333db94c
CM
2574int drop_snap_lookup_refcount(struct btrfs_root *root, u64 start, u64 len,
2575 u32 *refs)
2576{
017e5369 2577 int ret;
f87f057b 2578
017e5369 2579 ret = lookup_extent_ref(NULL, root, start, len, refs);
f87f057b
CM
2580 BUG_ON(ret);
2581
2582#if 0 // some debugging code in case we see problems here
2583 /* if the refs count is one, it won't get increased again. But
2584 * if the ref count is > 1, someone may be decreasing it at
2585 * the same time we are.
2586 */
2587 if (*refs != 1) {
2588 struct extent_buffer *eb = NULL;
2589 eb = btrfs_find_create_tree_block(root, start, len);
2590 if (eb)
2591 btrfs_tree_lock(eb);
2592
2593 mutex_lock(&root->fs_info->alloc_mutex);
2594 ret = lookup_extent_ref(NULL, root, start, len, refs);
2595 BUG_ON(ret);
2596 mutex_unlock(&root->fs_info->alloc_mutex);
2597
2598 if (eb) {
2599 btrfs_tree_unlock(eb);
2600 free_extent_buffer(eb);
2601 }
2602 if (*refs == 1) {
2603 printk("block %llu went down to one during drop_snap\n",
2604 (unsigned long long)start);
2605 }
2606
2607 }
2608#endif
2609
e7a84565 2610 cond_resched();
017e5369 2611 return ret;
333db94c
CM
2612}
2613
9aca1d51
CM
2614/*
2615 * helper function for drop_snapshot, this walks down the tree dropping ref
2616 * counts as it goes.
2617 */
98ed5174
CM
2618static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
2619 struct btrfs_root *root,
2620 struct btrfs_path *path, int *level)
20524f02 2621{
7bb86316
CM
2622 u64 root_owner;
2623 u64 root_gen;
2624 u64 bytenr;
ca7a79ad 2625 u64 ptr_gen;
5f39d397
CM
2626 struct extent_buffer *next;
2627 struct extent_buffer *cur;
7bb86316 2628 struct extent_buffer *parent;
31153d81 2629 struct btrfs_leaf_ref *ref;
db94535d 2630 u32 blocksize;
20524f02
CM
2631 int ret;
2632 u32 refs;
2633
5caf2a00
CM
2634 WARN_ON(*level < 0);
2635 WARN_ON(*level >= BTRFS_MAX_LEVEL);
333db94c 2636 ret = drop_snap_lookup_refcount(root, path->nodes[*level]->start,
db94535d 2637 path->nodes[*level]->len, &refs);
20524f02
CM
2638 BUG_ON(ret);
2639 if (refs > 1)
2640 goto out;
e011599b 2641
9aca1d51
CM
2642 /*
2643 * walk down to the last node level and free all the leaves
2644 */
6407bf6d 2645 while(*level >= 0) {
5caf2a00
CM
2646 WARN_ON(*level < 0);
2647 WARN_ON(*level >= BTRFS_MAX_LEVEL);
20524f02 2648 cur = path->nodes[*level];
e011599b 2649
5f39d397 2650 if (btrfs_header_level(cur) != *level)
2c90e5d6 2651 WARN_ON(1);
e011599b 2652
7518a238 2653 if (path->slots[*level] >=
5f39d397 2654 btrfs_header_nritems(cur))
20524f02 2655 break;
6407bf6d 2656 if (*level == 0) {
e02119d5 2657 ret = btrfs_drop_leaf_ref(trans, root, cur);
6407bf6d
CM
2658 BUG_ON(ret);
2659 break;
2660 }
db94535d 2661 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
ca7a79ad 2662 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
db94535d 2663 blocksize = btrfs_level_size(root, *level - 1);
925baedd 2664
333db94c 2665 ret = drop_snap_lookup_refcount(root, bytenr, blocksize, &refs);
6407bf6d
CM
2666 BUG_ON(ret);
2667 if (refs != 1) {
7bb86316
CM
2668 parent = path->nodes[*level];
2669 root_owner = btrfs_header_owner(parent);
2670 root_gen = btrfs_header_generation(parent);
20524f02 2671 path->slots[*level]++;
f87f057b
CM
2672
2673 mutex_lock(&root->fs_info->alloc_mutex);
925baedd 2674 ret = __btrfs_free_extent(trans, root, bytenr,
7bb86316
CM
2675 blocksize, root_owner,
2676 root_gen, 0, 0, 1);
20524f02 2677 BUG_ON(ret);
f87f057b 2678 mutex_unlock(&root->fs_info->alloc_mutex);
18e35e0a
CM
2679
2680 atomic_inc(&root->fs_info->throttle_gen);
2681 wake_up(&root->fs_info->transaction_throttle);
2dd3e67b 2682 cond_resched();
18e35e0a 2683
20524f02
CM
2684 continue;
2685 }
f87f057b
CM
2686 /*
2687 * at this point, we have a single ref, and since the
2688 * only place referencing this extent is a dead root
2689 * the reference count should never go higher.
2690 * So, we don't need to check it again
2691 */
31153d81
YZ
2692 if (*level == 1) {
2693 struct btrfs_key key;
2694 btrfs_node_key_to_cpu(cur, &key, path->slots[*level]);
017e5369 2695 ref = btrfs_lookup_leaf_ref(root, bytenr);
31153d81 2696 if (ref) {
e02119d5 2697 ret = cache_drop_leaf_ref(trans, root, ref);
31153d81
YZ
2698 BUG_ON(ret);
2699 btrfs_remove_leaf_ref(root, ref);
bcc63abb 2700 btrfs_free_leaf_ref(root, ref);
31153d81
YZ
2701 *level = 0;
2702 break;
2703 }
37d1aeee
CM
2704 if (printk_ratelimit())
2705 printk("leaf ref miss for bytenr %llu\n",
2706 (unsigned long long)bytenr);
31153d81 2707 }
db94535d 2708 next = btrfs_find_tree_block(root, bytenr, blocksize);
1259ab75 2709 if (!next || !btrfs_buffer_uptodate(next, ptr_gen)) {
5f39d397 2710 free_extent_buffer(next);
333db94c 2711
ca7a79ad
CM
2712 next = read_tree_block(root, bytenr, blocksize,
2713 ptr_gen);
e7a84565 2714 cond_resched();
f87f057b
CM
2715#if 0
2716 /*
2717 * this is a debugging check and can go away
2718 * the ref should never go all the way down to 1
2719 * at this point
2720 */
e6dcd2dc
CM
2721 ret = lookup_extent_ref(NULL, root, bytenr, blocksize,
2722 &refs);
e9d0b13b 2723 BUG_ON(ret);
f87f057b
CM
2724 WARN_ON(refs != 1);
2725#endif
e9d0b13b 2726 }
5caf2a00 2727 WARN_ON(*level <= 0);
83e15a28 2728 if (path->nodes[*level-1])
5f39d397 2729 free_extent_buffer(path->nodes[*level-1]);
20524f02 2730 path->nodes[*level-1] = next;
5f39d397 2731 *level = btrfs_header_level(next);
20524f02 2732 path->slots[*level] = 0;
2dd3e67b 2733 cond_resched();
20524f02
CM
2734 }
2735out:
5caf2a00
CM
2736 WARN_ON(*level < 0);
2737 WARN_ON(*level >= BTRFS_MAX_LEVEL);
7bb86316
CM
2738
2739 if (path->nodes[*level] == root->node) {
7bb86316 2740 parent = path->nodes[*level];
31153d81 2741 bytenr = path->nodes[*level]->start;
7bb86316
CM
2742 } else {
2743 parent = path->nodes[*level + 1];
31153d81 2744 bytenr = btrfs_node_blockptr(parent, path->slots[*level + 1]);
7bb86316
CM
2745 }
2746
31153d81
YZ
2747 blocksize = btrfs_level_size(root, *level);
2748 root_owner = btrfs_header_owner(parent);
7bb86316 2749 root_gen = btrfs_header_generation(parent);
31153d81 2750
f87f057b 2751 mutex_lock(&root->fs_info->alloc_mutex);
31153d81
YZ
2752 ret = __btrfs_free_extent(trans, root, bytenr, blocksize,
2753 root_owner, root_gen, 0, 0, 1);
5f39d397 2754 free_extent_buffer(path->nodes[*level]);
20524f02
CM
2755 path->nodes[*level] = NULL;
2756 *level += 1;
2757 BUG_ON(ret);
925baedd 2758 mutex_unlock(&root->fs_info->alloc_mutex);
f87f057b 2759
e7a84565 2760 cond_resched();
20524f02
CM
2761 return 0;
2762}
2763
9aca1d51
CM
2764/*
2765 * helper for dropping snapshots. This walks back up the tree in the path
2766 * to find the first node higher up where we haven't yet gone through
2767 * all the slots
2768 */
98ed5174
CM
2769static int noinline walk_up_tree(struct btrfs_trans_handle *trans,
2770 struct btrfs_root *root,
2771 struct btrfs_path *path, int *level)
20524f02 2772{
7bb86316
CM
2773 u64 root_owner;
2774 u64 root_gen;
2775 struct btrfs_root_item *root_item = &root->root_item;
20524f02
CM
2776 int i;
2777 int slot;
2778 int ret;
9f3a7427 2779
234b63a0 2780 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
20524f02 2781 slot = path->slots[i];
5f39d397
CM
2782 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
2783 struct extent_buffer *node;
2784 struct btrfs_disk_key disk_key;
2785 node = path->nodes[i];
20524f02
CM
2786 path->slots[i]++;
2787 *level = i;
9f3a7427 2788 WARN_ON(*level == 0);
5f39d397 2789 btrfs_node_key(node, &disk_key, path->slots[i]);
9f3a7427 2790 memcpy(&root_item->drop_progress,
5f39d397 2791 &disk_key, sizeof(disk_key));
9f3a7427 2792 root_item->drop_level = i;
20524f02
CM
2793 return 0;
2794 } else {
7bb86316
CM
2795 if (path->nodes[*level] == root->node) {
2796 root_owner = root->root_key.objectid;
2797 root_gen =
2798 btrfs_header_generation(path->nodes[*level]);
2799 } else {
2800 struct extent_buffer *node;
2801 node = path->nodes[*level + 1];
2802 root_owner = btrfs_header_owner(node);
2803 root_gen = btrfs_header_generation(node);
2804 }
e089f05c 2805 ret = btrfs_free_extent(trans, root,
db94535d 2806 path->nodes[*level]->start,
7bb86316
CM
2807 path->nodes[*level]->len,
2808 root_owner, root_gen, 0, 0, 1);
6407bf6d 2809 BUG_ON(ret);
5f39d397 2810 free_extent_buffer(path->nodes[*level]);
83e15a28 2811 path->nodes[*level] = NULL;
20524f02 2812 *level = i + 1;
20524f02
CM
2813 }
2814 }
2815 return 1;
2816}
2817
9aca1d51
CM
2818/*
2819 * drop the reference count on the tree rooted at 'snap'. This traverses
2820 * the tree freeing any blocks that have a ref count of zero after being
2821 * decremented.
2822 */
e089f05c 2823int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
9f3a7427 2824 *root)
20524f02 2825{
3768f368 2826 int ret = 0;
9aca1d51 2827 int wret;
20524f02 2828 int level;
5caf2a00 2829 struct btrfs_path *path;
20524f02
CM
2830 int i;
2831 int orig_level;
9f3a7427 2832 struct btrfs_root_item *root_item = &root->root_item;
20524f02 2833
a2135011 2834 WARN_ON(!mutex_is_locked(&root->fs_info->drop_mutex));
5caf2a00
CM
2835 path = btrfs_alloc_path();
2836 BUG_ON(!path);
20524f02 2837
5f39d397 2838 level = btrfs_header_level(root->node);
20524f02 2839 orig_level = level;
9f3a7427
CM
2840 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2841 path->nodes[level] = root->node;
f510cfec 2842 extent_buffer_get(root->node);
9f3a7427
CM
2843 path->slots[level] = 0;
2844 } else {
2845 struct btrfs_key key;
5f39d397
CM
2846 struct btrfs_disk_key found_key;
2847 struct extent_buffer *node;
6702ed49 2848
9f3a7427 2849 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
6702ed49
CM
2850 level = root_item->drop_level;
2851 path->lowest_level = level;
9f3a7427 2852 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6702ed49 2853 if (wret < 0) {
9f3a7427
CM
2854 ret = wret;
2855 goto out;
2856 }
5f39d397
CM
2857 node = path->nodes[level];
2858 btrfs_node_key(node, &found_key, path->slots[level]);
2859 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2860 sizeof(found_key)));
7d9eb12c
CM
2861 /*
2862 * unlock our path, this is safe because only this
2863 * function is allowed to delete this snapshot
2864 */
925baedd
CM
2865 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
2866 if (path->nodes[i] && path->locks[i]) {
2867 path->locks[i] = 0;
2868 btrfs_tree_unlock(path->nodes[i]);
2869 }
2870 }
9f3a7427 2871 }
20524f02 2872 while(1) {
5caf2a00 2873 wret = walk_down_tree(trans, root, path, &level);
9aca1d51 2874 if (wret > 0)
20524f02 2875 break;
9aca1d51
CM
2876 if (wret < 0)
2877 ret = wret;
2878
5caf2a00 2879 wret = walk_up_tree(trans, root, path, &level);
9aca1d51 2880 if (wret > 0)
20524f02 2881 break;
9aca1d51
CM
2882 if (wret < 0)
2883 ret = wret;
e7a84565
CM
2884 if (trans->transaction->in_commit) {
2885 ret = -EAGAIN;
2886 break;
2887 }
18e35e0a 2888 atomic_inc(&root->fs_info->throttle_gen);
017e5369 2889 wake_up(&root->fs_info->transaction_throttle);
20524f02 2890 }
83e15a28 2891 for (i = 0; i <= orig_level; i++) {
5caf2a00 2892 if (path->nodes[i]) {
5f39d397 2893 free_extent_buffer(path->nodes[i]);
0f82731f 2894 path->nodes[i] = NULL;
83e15a28 2895 }
20524f02 2896 }
9f3a7427 2897out:
5caf2a00 2898 btrfs_free_path(path);
9aca1d51 2899 return ret;
20524f02 2900}
9078a3e1 2901
96b5179d 2902int btrfs_free_block_groups(struct btrfs_fs_info *info)
9078a3e1 2903{
0f9dd46c
JB
2904 struct btrfs_block_group_cache *block_group;
2905 struct rb_node *n;
925baedd
CM
2906
2907 mutex_lock(&info->alloc_mutex);
0f9dd46c
JB
2908 spin_lock(&info->block_group_cache_lock);
2909 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
2910 block_group = rb_entry(n, struct btrfs_block_group_cache,
2911 cache_node);
2912
2913 btrfs_remove_free_space_cache(block_group);
2914 rb_erase(&block_group->cache_node,
2915 &info->block_group_cache_tree);
2916 spin_lock(&block_group->space_info->lock);
2917 list_del(&block_group->list);
2918 spin_unlock(&block_group->space_info->lock);
2919 kfree(block_group);
2920 }
2921 spin_unlock(&info->block_group_cache_lock);
925baedd 2922 mutex_unlock(&info->alloc_mutex);
be744175
CM
2923 return 0;
2924}
2925
8e7bf94f
CM
2926static unsigned long calc_ra(unsigned long start, unsigned long last,
2927 unsigned long nr)
2928{
2929 return min(last, start + nr - 1);
2930}
2931
98ed5174
CM
2932static int noinline relocate_inode_pages(struct inode *inode, u64 start,
2933 u64 len)
edbd8d4e
CM
2934{
2935 u64 page_start;
2936 u64 page_end;
edbd8d4e 2937 unsigned long last_index;
edbd8d4e
CM
2938 unsigned long i;
2939 struct page *page;
d1310b2e 2940 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4313b399 2941 struct file_ra_state *ra;
8e7bf94f
CM
2942 unsigned long total_read = 0;
2943 unsigned long ra_pages;
3eaa2885 2944 struct btrfs_ordered_extent *ordered;
a061fc8d 2945 struct btrfs_trans_handle *trans;
4313b399
CM
2946
2947 ra = kzalloc(sizeof(*ra), GFP_NOFS);
edbd8d4e
CM
2948
2949 mutex_lock(&inode->i_mutex);
4313b399 2950 i = start >> PAGE_CACHE_SHIFT;
edbd8d4e
CM
2951 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
2952
8e7bf94f
CM
2953 ra_pages = BTRFS_I(inode)->root->fs_info->bdi.ra_pages;
2954
4313b399 2955 file_ra_state_init(ra, inode->i_mapping);
edbd8d4e 2956
4313b399 2957 for (; i <= last_index; i++) {
8e7bf94f
CM
2958 if (total_read % ra_pages == 0) {
2959 btrfs_force_ra(inode->i_mapping, ra, NULL, i,
2960 calc_ra(i, last_index, ra_pages));
2961 }
2962 total_read++;
3eaa2885
CM
2963again:
2964 if (((u64)i << PAGE_CACHE_SHIFT) > i_size_read(inode))
a061fc8d 2965 goto truncate_racing;
edbd8d4e 2966 page = grab_cache_page(inode->i_mapping, i);
a061fc8d 2967 if (!page) {
edbd8d4e 2968 goto out_unlock;
a061fc8d 2969 }
edbd8d4e
CM
2970 if (!PageUptodate(page)) {
2971 btrfs_readpage(NULL, page);
2972 lock_page(page);
2973 if (!PageUptodate(page)) {
2974 unlock_page(page);
2975 page_cache_release(page);
2976 goto out_unlock;
2977 }
2978 }
ec44a35c 2979 wait_on_page_writeback(page);
3eaa2885 2980
edbd8d4e
CM
2981 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2982 page_end = page_start + PAGE_CACHE_SIZE - 1;
d1310b2e 2983 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
edbd8d4e 2984
3eaa2885
CM
2985 ordered = btrfs_lookup_ordered_extent(inode, page_start);
2986 if (ordered) {
2987 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
2988 unlock_page(page);
2989 page_cache_release(page);
2990 btrfs_start_ordered_extent(inode, ordered, 1);
2991 btrfs_put_ordered_extent(ordered);
2992 goto again;
2993 }
2994 set_page_extent_mapped(page);
2995
f87f057b
CM
2996 /*
2997 * make sure page_mkwrite is called for this page if userland
2998 * wants to change it from mmap
2999 */
3000 clear_page_dirty_for_io(page);
3eaa2885 3001
ea8c2819 3002 btrfs_set_extent_delalloc(inode, page_start, page_end);
a061fc8d 3003 set_page_dirty(page);
edbd8d4e 3004
d1310b2e 3005 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
edbd8d4e
CM
3006 unlock_page(page);
3007 page_cache_release(page);
3008 }
3009
3010out_unlock:
3eaa2885
CM
3011 /* we have to start the IO in order to get the ordered extents
3012 * instantiated. This allows the relocation to code to wait
3013 * for all the ordered extents to hit the disk.
3014 *
3015 * Otherwise, it would constantly loop over the same extents
3016 * because the old ones don't get deleted until the IO is
3017 * started
3018 */
3019 btrfs_fdatawrite_range(inode->i_mapping, start, start + len - 1,
3020 WB_SYNC_NONE);
ec44a35c 3021 kfree(ra);
a061fc8d
CM
3022 trans = btrfs_start_transaction(BTRFS_I(inode)->root, 1);
3023 if (trans) {
a061fc8d
CM
3024 btrfs_end_transaction(trans, BTRFS_I(inode)->root);
3025 mark_inode_dirty(inode);
3026 }
edbd8d4e
CM
3027 mutex_unlock(&inode->i_mutex);
3028 return 0;
a061fc8d
CM
3029
3030truncate_racing:
3031 vmtruncate(inode, inode->i_size);
3032 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
3033 total_read);
3034 goto out_unlock;
edbd8d4e
CM
3035}
3036
bf4ef679
CM
3037/*
3038 * The back references tell us which tree holds a ref on a block,
3039 * but it is possible for the tree root field in the reference to
3040 * reflect the original root before a snapshot was made. In this
3041 * case we should search through all the children of a given root
3042 * to find potential holders of references on a block.
3043 *
3044 * Instead, we do something a little less fancy and just search
3045 * all the roots for a given key/block combination.
3046 */
3047static int find_root_for_ref(struct btrfs_root *root,
3048 struct btrfs_path *path,
3049 struct btrfs_key *key0,
3050 int level,
3051 int file_key,
3052 struct btrfs_root **found_root,
3053 u64 bytenr)
3054{
3055 struct btrfs_key root_location;
3056 struct btrfs_root *cur_root = *found_root;
3057 struct btrfs_file_extent_item *file_extent;
3058 u64 root_search_start = BTRFS_FS_TREE_OBJECTID;
3059 u64 found_bytenr;
3060 int ret;
bf4ef679
CM
3061
3062 root_location.offset = (u64)-1;
3063 root_location.type = BTRFS_ROOT_ITEM_KEY;
3064 path->lowest_level = level;
3065 path->reada = 0;
3066 while(1) {
3067 ret = btrfs_search_slot(NULL, cur_root, key0, path, 0, 0);
3068 found_bytenr = 0;
3069 if (ret == 0 && file_key) {
3070 struct extent_buffer *leaf = path->nodes[0];
3071 file_extent = btrfs_item_ptr(leaf, path->slots[0],
3072 struct btrfs_file_extent_item);
3073 if (btrfs_file_extent_type(leaf, file_extent) ==
3074 BTRFS_FILE_EXTENT_REG) {
3075 found_bytenr =
3076 btrfs_file_extent_disk_bytenr(leaf,
3077 file_extent);
3078 }
323da79c 3079 } else if (!file_key) {
bf4ef679
CM
3080 if (path->nodes[level])
3081 found_bytenr = path->nodes[level]->start;
3082 }
3083
bf4ef679
CM
3084 btrfs_release_path(cur_root, path);
3085
3086 if (found_bytenr == bytenr) {
3087 *found_root = cur_root;
3088 ret = 0;
3089 goto out;
3090 }
3091 ret = btrfs_search_root(root->fs_info->tree_root,
3092 root_search_start, &root_search_start);
3093 if (ret)
3094 break;
3095
3096 root_location.objectid = root_search_start;
3097 cur_root = btrfs_read_fs_root_no_name(root->fs_info,
3098 &root_location);
3099 if (!cur_root) {
3100 ret = 1;
3101 break;
3102 }
3103 }
3104out:
3105 path->lowest_level = 0;
3106 return ret;
3107}
3108
4313b399
CM
3109/*
3110 * note, this releases the path
3111 */
98ed5174 3112static int noinline relocate_one_reference(struct btrfs_root *extent_root,
edbd8d4e 3113 struct btrfs_path *path,
0ef3e66b
CM
3114 struct btrfs_key *extent_key,
3115 u64 *last_file_objectid,
3116 u64 *last_file_offset,
3117 u64 *last_file_root,
3118 u64 last_extent)
edbd8d4e
CM
3119{
3120 struct inode *inode;
3121 struct btrfs_root *found_root;
bf4ef679
CM
3122 struct btrfs_key root_location;
3123 struct btrfs_key found_key;
4313b399
CM
3124 struct btrfs_extent_ref *ref;
3125 u64 ref_root;
3126 u64 ref_gen;
3127 u64 ref_objectid;
3128 u64 ref_offset;
edbd8d4e 3129 int ret;
bf4ef679 3130 int level;
edbd8d4e 3131
7d9eb12c
CM
3132 WARN_ON(!mutex_is_locked(&extent_root->fs_info->alloc_mutex));
3133
4313b399
CM
3134 ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
3135 struct btrfs_extent_ref);
3136 ref_root = btrfs_ref_root(path->nodes[0], ref);
3137 ref_gen = btrfs_ref_generation(path->nodes[0], ref);
3138 ref_objectid = btrfs_ref_objectid(path->nodes[0], ref);
3139 ref_offset = btrfs_ref_offset(path->nodes[0], ref);
3140 btrfs_release_path(extent_root, path);
3141
bf4ef679 3142 root_location.objectid = ref_root;
edbd8d4e 3143 if (ref_gen == 0)
bf4ef679 3144 root_location.offset = 0;
edbd8d4e 3145 else
bf4ef679
CM
3146 root_location.offset = (u64)-1;
3147 root_location.type = BTRFS_ROOT_ITEM_KEY;
edbd8d4e
CM
3148
3149 found_root = btrfs_read_fs_root_no_name(extent_root->fs_info,
bf4ef679 3150 &root_location);
edbd8d4e 3151 BUG_ON(!found_root);
7d9eb12c 3152 mutex_unlock(&extent_root->fs_info->alloc_mutex);
edbd8d4e
CM
3153
3154 if (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
bf4ef679
CM
3155 found_key.objectid = ref_objectid;
3156 found_key.type = BTRFS_EXTENT_DATA_KEY;
3157 found_key.offset = ref_offset;
3158 level = 0;
3159
0ef3e66b
CM
3160 if (last_extent == extent_key->objectid &&
3161 *last_file_objectid == ref_objectid &&
3162 *last_file_offset == ref_offset &&
3163 *last_file_root == ref_root)
3164 goto out;
3165
bf4ef679
CM
3166 ret = find_root_for_ref(extent_root, path, &found_key,
3167 level, 1, &found_root,
3168 extent_key->objectid);
3169
3170 if (ret)
3171 goto out;
3172
0ef3e66b
CM
3173 if (last_extent == extent_key->objectid &&
3174 *last_file_objectid == ref_objectid &&
3175 *last_file_offset == ref_offset &&
3176 *last_file_root == ref_root)
3177 goto out;
3178
edbd8d4e
CM
3179 inode = btrfs_iget_locked(extent_root->fs_info->sb,
3180 ref_objectid, found_root);
3181 if (inode->i_state & I_NEW) {
3182 /* the inode and parent dir are two different roots */
3183 BTRFS_I(inode)->root = found_root;
3184 BTRFS_I(inode)->location.objectid = ref_objectid;
3185 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
3186 BTRFS_I(inode)->location.offset = 0;
3187 btrfs_read_locked_inode(inode);
3188 unlock_new_inode(inode);
3189
3190 }
3191 /* this can happen if the reference is not against
3192 * the latest version of the tree root
3193 */
7d9eb12c 3194 if (is_bad_inode(inode))
edbd8d4e 3195 goto out;
7d9eb12c 3196
0ef3e66b
CM
3197 *last_file_objectid = inode->i_ino;
3198 *last_file_root = found_root->root_key.objectid;
3199 *last_file_offset = ref_offset;
3200
edbd8d4e 3201 relocate_inode_pages(inode, ref_offset, extent_key->offset);
edbd8d4e 3202 iput(inode);
edbd8d4e
CM
3203 } else {
3204 struct btrfs_trans_handle *trans;
edbd8d4e 3205 struct extent_buffer *eb;
7d9eb12c 3206 int needs_lock = 0;
edbd8d4e 3207
edbd8d4e 3208 eb = read_tree_block(found_root, extent_key->objectid,
ca7a79ad 3209 extent_key->offset, 0);
925baedd 3210 btrfs_tree_lock(eb);
edbd8d4e
CM
3211 level = btrfs_header_level(eb);
3212
3213 if (level == 0)
3214 btrfs_item_key_to_cpu(eb, &found_key, 0);
3215 else
3216 btrfs_node_key_to_cpu(eb, &found_key, 0);
3217
925baedd 3218 btrfs_tree_unlock(eb);
edbd8d4e
CM
3219 free_extent_buffer(eb);
3220
bf4ef679
CM
3221 ret = find_root_for_ref(extent_root, path, &found_key,
3222 level, 0, &found_root,
3223 extent_key->objectid);
3224
3225 if (ret)
3226 goto out;
3227
7d9eb12c
CM
3228 /*
3229 * right here almost anything could happen to our key,
3230 * but that's ok. The cow below will either relocate it
3231 * or someone else will have relocated it. Either way,
3232 * it is in a different spot than it was before and
3233 * we're happy.
3234 */
3235
bf4ef679
CM
3236 trans = btrfs_start_transaction(found_root, 1);
3237
7d9eb12c
CM
3238 if (found_root == extent_root->fs_info->extent_root ||
3239 found_root == extent_root->fs_info->chunk_root ||
3240 found_root == extent_root->fs_info->dev_root) {
3241 needs_lock = 1;
3242 mutex_lock(&extent_root->fs_info->alloc_mutex);
3243 }
3244
edbd8d4e 3245 path->lowest_level = level;
8f662a76 3246 path->reada = 2;
edbd8d4e
CM
3247 ret = btrfs_search_slot(trans, found_root, &found_key, path,
3248 0, 1);
3249 path->lowest_level = 0;
edbd8d4e 3250 btrfs_release_path(found_root, path);
7d9eb12c 3251
0ef3e66b
CM
3252 if (found_root == found_root->fs_info->extent_root)
3253 btrfs_extent_post_op(trans, found_root);
7d9eb12c
CM
3254 if (needs_lock)
3255 mutex_unlock(&extent_root->fs_info->alloc_mutex);
3256
edbd8d4e 3257 btrfs_end_transaction(trans, found_root);
edbd8d4e 3258
7d9eb12c 3259 }
edbd8d4e 3260out:
7d9eb12c 3261 mutex_lock(&extent_root->fs_info->alloc_mutex);
edbd8d4e
CM
3262 return 0;
3263}
3264
a061fc8d
CM
3265static int noinline del_extent_zero(struct btrfs_root *extent_root,
3266 struct btrfs_path *path,
3267 struct btrfs_key *extent_key)
3268{
3269 int ret;
3270 struct btrfs_trans_handle *trans;
3271
3272 trans = btrfs_start_transaction(extent_root, 1);
3273 ret = btrfs_search_slot(trans, extent_root, extent_key, path, -1, 1);
3274 if (ret > 0) {
3275 ret = -EIO;
3276 goto out;
3277 }
3278 if (ret < 0)
3279 goto out;
3280 ret = btrfs_del_item(trans, extent_root, path);
3281out:
3282 btrfs_end_transaction(trans, extent_root);
3283 return ret;
3284}
3285
98ed5174
CM
3286static int noinline relocate_one_extent(struct btrfs_root *extent_root,
3287 struct btrfs_path *path,
3288 struct btrfs_key *extent_key)
edbd8d4e
CM
3289{
3290 struct btrfs_key key;
3291 struct btrfs_key found_key;
edbd8d4e 3292 struct extent_buffer *leaf;
0ef3e66b
CM
3293 u64 last_file_objectid = 0;
3294 u64 last_file_root = 0;
3295 u64 last_file_offset = (u64)-1;
3296 u64 last_extent = 0;
edbd8d4e
CM
3297 u32 nritems;
3298 u32 item_size;
3299 int ret = 0;
3300
a061fc8d
CM
3301 if (extent_key->objectid == 0) {
3302 ret = del_extent_zero(extent_root, path, extent_key);
3303 goto out;
3304 }
edbd8d4e
CM
3305 key.objectid = extent_key->objectid;
3306 key.type = BTRFS_EXTENT_REF_KEY;
3307 key.offset = 0;
3308
3309 while(1) {
3310 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3311
edbd8d4e
CM
3312 if (ret < 0)
3313 goto out;
3314
3315 ret = 0;
3316 leaf = path->nodes[0];
3317 nritems = btrfs_header_nritems(leaf);
a061fc8d
CM
3318 if (path->slots[0] == nritems) {
3319 ret = btrfs_next_leaf(extent_root, path);
3320 if (ret > 0) {
3321 ret = 0;
3322 goto out;
3323 }
3324 if (ret < 0)
3325 goto out;
bf4ef679 3326 leaf = path->nodes[0];
a061fc8d 3327 }
edbd8d4e
CM
3328
3329 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
a061fc8d 3330 if (found_key.objectid != extent_key->objectid) {
edbd8d4e 3331 break;
a061fc8d 3332 }
edbd8d4e 3333
a061fc8d 3334 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
edbd8d4e 3335 break;
a061fc8d 3336 }
edbd8d4e
CM
3337
3338 key.offset = found_key.offset + 1;
3339 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3340
0ef3e66b
CM
3341 ret = relocate_one_reference(extent_root, path, extent_key,
3342 &last_file_objectid,
3343 &last_file_offset,
3344 &last_file_root, last_extent);
edbd8d4e
CM
3345 if (ret)
3346 goto out;
0ef3e66b 3347 last_extent = extent_key->objectid;
edbd8d4e
CM
3348 }
3349 ret = 0;
3350out:
3351 btrfs_release_path(extent_root, path);
3352 return ret;
3353}
3354
ec44a35c
CM
3355static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
3356{
3357 u64 num_devices;
3358 u64 stripped = BTRFS_BLOCK_GROUP_RAID0 |
3359 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
3360
a061fc8d 3361 num_devices = root->fs_info->fs_devices->num_devices;
ec44a35c
CM
3362 if (num_devices == 1) {
3363 stripped |= BTRFS_BLOCK_GROUP_DUP;
3364 stripped = flags & ~stripped;
3365
3366 /* turn raid0 into single device chunks */
3367 if (flags & BTRFS_BLOCK_GROUP_RAID0)
3368 return stripped;
3369
3370 /* turn mirroring into duplication */
3371 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
3372 BTRFS_BLOCK_GROUP_RAID10))
3373 return stripped | BTRFS_BLOCK_GROUP_DUP;
3374 return flags;
3375 } else {
3376 /* they already had raid on here, just return */
ec44a35c
CM
3377 if (flags & stripped)
3378 return flags;
3379
3380 stripped |= BTRFS_BLOCK_GROUP_DUP;
3381 stripped = flags & ~stripped;
3382
3383 /* switch duplicated blocks with raid1 */
3384 if (flags & BTRFS_BLOCK_GROUP_DUP)
3385 return stripped | BTRFS_BLOCK_GROUP_RAID1;
3386
3387 /* turn single device chunks into raid0 */
3388 return stripped | BTRFS_BLOCK_GROUP_RAID0;
3389 }
3390 return flags;
3391}
3392
0ef3e66b
CM
3393int __alloc_chunk_for_shrink(struct btrfs_root *root,
3394 struct btrfs_block_group_cache *shrink_block_group,
3395 int force)
3396{
3397 struct btrfs_trans_handle *trans;
3398 u64 new_alloc_flags;
3399 u64 calc;
3400
c286ac48 3401 spin_lock(&shrink_block_group->lock);
0ef3e66b 3402 if (btrfs_block_group_used(&shrink_block_group->item) > 0) {
c286ac48 3403 spin_unlock(&shrink_block_group->lock);
7d9eb12c 3404 mutex_unlock(&root->fs_info->alloc_mutex);
c286ac48 3405
0ef3e66b 3406 trans = btrfs_start_transaction(root, 1);
7d9eb12c 3407 mutex_lock(&root->fs_info->alloc_mutex);
c286ac48 3408 spin_lock(&shrink_block_group->lock);
7d9eb12c 3409
0ef3e66b
CM
3410 new_alloc_flags = update_block_group_flags(root,
3411 shrink_block_group->flags);
3412 if (new_alloc_flags != shrink_block_group->flags) {
3413 calc =
3414 btrfs_block_group_used(&shrink_block_group->item);
3415 } else {
3416 calc = shrink_block_group->key.offset;
3417 }
c286ac48
CM
3418 spin_unlock(&shrink_block_group->lock);
3419
0ef3e66b
CM
3420 do_chunk_alloc(trans, root->fs_info->extent_root,
3421 calc + 2 * 1024 * 1024, new_alloc_flags, force);
7d9eb12c
CM
3422
3423 mutex_unlock(&root->fs_info->alloc_mutex);
0ef3e66b 3424 btrfs_end_transaction(trans, root);
7d9eb12c 3425 mutex_lock(&root->fs_info->alloc_mutex);
c286ac48
CM
3426 } else
3427 spin_unlock(&shrink_block_group->lock);
0ef3e66b
CM
3428 return 0;
3429}
3430
8f18cf13 3431int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 shrink_start)
edbd8d4e
CM
3432{
3433 struct btrfs_trans_handle *trans;
3434 struct btrfs_root *tree_root = root->fs_info->tree_root;
3435 struct btrfs_path *path;
3436 u64 cur_byte;
3437 u64 total_found;
8f18cf13
CM
3438 u64 shrink_last_byte;
3439 struct btrfs_block_group_cache *shrink_block_group;
edbd8d4e 3440 struct btrfs_key key;
73e48b27 3441 struct btrfs_key found_key;
edbd8d4e
CM
3442 struct extent_buffer *leaf;
3443 u32 nritems;
3444 int ret;
a061fc8d 3445 int progress;
edbd8d4e 3446
925baedd 3447 mutex_lock(&root->fs_info->alloc_mutex);
8f18cf13
CM
3448 shrink_block_group = btrfs_lookup_block_group(root->fs_info,
3449 shrink_start);
3450 BUG_ON(!shrink_block_group);
3451
0ef3e66b
CM
3452 shrink_last_byte = shrink_block_group->key.objectid +
3453 shrink_block_group->key.offset;
8f18cf13
CM
3454
3455 shrink_block_group->space_info->total_bytes -=
3456 shrink_block_group->key.offset;
edbd8d4e
CM
3457 path = btrfs_alloc_path();
3458 root = root->fs_info->extent_root;
8f662a76 3459 path->reada = 2;
edbd8d4e 3460
323da79c
CM
3461 printk("btrfs relocating block group %llu flags %llu\n",
3462 (unsigned long long)shrink_start,
3463 (unsigned long long)shrink_block_group->flags);
3464
0ef3e66b
CM
3465 __alloc_chunk_for_shrink(root, shrink_block_group, 1);
3466
edbd8d4e 3467again:
323da79c 3468
8f18cf13
CM
3469 shrink_block_group->ro = 1;
3470
edbd8d4e 3471 total_found = 0;
a061fc8d 3472 progress = 0;
8f18cf13 3473 key.objectid = shrink_start;
edbd8d4e
CM
3474 key.offset = 0;
3475 key.type = 0;
73e48b27 3476 cur_byte = key.objectid;
4313b399 3477
ea8c2819
CM
3478 mutex_unlock(&root->fs_info->alloc_mutex);
3479
3480 btrfs_start_delalloc_inodes(root);
7ea394f1 3481 btrfs_wait_ordered_extents(tree_root, 0);
ea8c2819
CM
3482
3483 mutex_lock(&root->fs_info->alloc_mutex);
3484
73e48b27
Y
3485 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3486 if (ret < 0)
3487 goto out;
3488
0b86a832 3489 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
73e48b27
Y
3490 if (ret < 0)
3491 goto out;
8f18cf13 3492
73e48b27
Y
3493 if (ret == 0) {
3494 leaf = path->nodes[0];
3495 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
8f18cf13
CM
3496 if (found_key.objectid + found_key.offset > shrink_start &&
3497 found_key.objectid < shrink_last_byte) {
73e48b27
Y
3498 cur_byte = found_key.objectid;
3499 key.objectid = cur_byte;
3500 }
3501 }
3502 btrfs_release_path(root, path);
3503
3504 while(1) {
edbd8d4e
CM
3505 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3506 if (ret < 0)
3507 goto out;
73e48b27 3508
7d9eb12c 3509next:
edbd8d4e 3510 leaf = path->nodes[0];
73e48b27 3511 nritems = btrfs_header_nritems(leaf);
73e48b27
Y
3512 if (path->slots[0] >= nritems) {
3513 ret = btrfs_next_leaf(root, path);
3514 if (ret < 0)
3515 goto out;
3516 if (ret == 1) {
3517 ret = 0;
3518 break;
edbd8d4e 3519 }
73e48b27
Y
3520 leaf = path->nodes[0];
3521 nritems = btrfs_header_nritems(leaf);
edbd8d4e 3522 }
73e48b27
Y
3523
3524 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
725c8463 3525
8f18cf13
CM
3526 if (found_key.objectid >= shrink_last_byte)
3527 break;
3528
725c8463
CM
3529 if (progress && need_resched()) {
3530 memcpy(&key, &found_key, sizeof(key));
725c8463 3531 cond_resched();
725c8463
CM
3532 btrfs_release_path(root, path);
3533 btrfs_search_slot(NULL, root, &key, path, 0, 0);
3534 progress = 0;
3535 goto next;
3536 }
3537 progress = 1;
3538
73e48b27
Y
3539 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_ITEM_KEY ||
3540 found_key.objectid + found_key.offset <= cur_byte) {
0ef3e66b
CM
3541 memcpy(&key, &found_key, sizeof(key));
3542 key.offset++;
edbd8d4e 3543 path->slots[0]++;
edbd8d4e
CM
3544 goto next;
3545 }
73e48b27 3546
edbd8d4e
CM
3547 total_found++;
3548 cur_byte = found_key.objectid + found_key.offset;
3549 key.objectid = cur_byte;
3550 btrfs_release_path(root, path);
3551 ret = relocate_one_extent(root, path, &found_key);
0ef3e66b 3552 __alloc_chunk_for_shrink(root, shrink_block_group, 0);
edbd8d4e
CM
3553 }
3554
3555 btrfs_release_path(root, path);
3556
3557 if (total_found > 0) {
323da79c
CM
3558 printk("btrfs relocate found %llu last extent was %llu\n",
3559 (unsigned long long)total_found,
3560 (unsigned long long)found_key.objectid);
7d9eb12c 3561 mutex_unlock(&root->fs_info->alloc_mutex);
edbd8d4e
CM
3562 trans = btrfs_start_transaction(tree_root, 1);
3563 btrfs_commit_transaction(trans, tree_root);
3564
edbd8d4e 3565 btrfs_clean_old_snapshots(tree_root);
edbd8d4e 3566
ea8c2819 3567 btrfs_start_delalloc_inodes(root);
7ea394f1 3568 btrfs_wait_ordered_extents(tree_root, 0);
3eaa2885 3569
edbd8d4e
CM
3570 trans = btrfs_start_transaction(tree_root, 1);
3571 btrfs_commit_transaction(trans, tree_root);
7d9eb12c 3572 mutex_lock(&root->fs_info->alloc_mutex);
edbd8d4e
CM
3573 goto again;
3574 }
3575
8f18cf13
CM
3576 /*
3577 * we've freed all the extents, now remove the block
3578 * group item from the tree
3579 */
7d9eb12c
CM
3580 mutex_unlock(&root->fs_info->alloc_mutex);
3581
edbd8d4e 3582 trans = btrfs_start_transaction(root, 1);
c286ac48 3583
7d9eb12c 3584 mutex_lock(&root->fs_info->alloc_mutex);
8f18cf13 3585 memcpy(&key, &shrink_block_group->key, sizeof(key));
1372f8e6 3586
8f18cf13
CM
3587 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3588 if (ret > 0)
3589 ret = -EIO;
8e8a1e31
JB
3590 if (ret < 0) {
3591 btrfs_end_transaction(trans, root);
8f18cf13 3592 goto out;
8e8a1e31 3593 }
73e48b27 3594
0f9dd46c
JB
3595 spin_lock(&root->fs_info->block_group_cache_lock);
3596 rb_erase(&shrink_block_group->cache_node,
3597 &root->fs_info->block_group_cache_tree);
3598 spin_unlock(&root->fs_info->block_group_cache_lock);
0ef3e66b 3599
0f9dd46c
JB
3600 ret = btrfs_remove_free_space(shrink_block_group, key.objectid,
3601 key.offset);
3602 if (ret) {
3603 btrfs_end_transaction(trans, root);
3604 goto out;
3605 }
d7a029a8 3606 /*
0ef3e66b
CM
3607 memset(shrink_block_group, 0, sizeof(*shrink_block_group));
3608 kfree(shrink_block_group);
d7a029a8 3609 */
0ef3e66b 3610
8f18cf13 3611 btrfs_del_item(trans, root, path);
7d9eb12c
CM
3612 btrfs_release_path(root, path);
3613 mutex_unlock(&root->fs_info->alloc_mutex);
edbd8d4e 3614 btrfs_commit_transaction(trans, root);
0ef3e66b 3615
7d9eb12c
CM
3616 mutex_lock(&root->fs_info->alloc_mutex);
3617
0ef3e66b
CM
3618 /* the code to unpin extents might set a few bits in the free
3619 * space cache for this range again
3620 */
0f9dd46c
JB
3621 /* XXX? */
3622 ret = btrfs_remove_free_space(shrink_block_group, key.objectid,
3623 key.offset);
edbd8d4e
CM
3624out:
3625 btrfs_free_path(path);
925baedd 3626 mutex_unlock(&root->fs_info->alloc_mutex);
edbd8d4e
CM
3627 return ret;
3628}
3629
0b86a832
CM
3630int find_first_block_group(struct btrfs_root *root, struct btrfs_path *path,
3631 struct btrfs_key *key)
3632{
925baedd 3633 int ret = 0;
0b86a832
CM
3634 struct btrfs_key found_key;
3635 struct extent_buffer *leaf;
3636 int slot;
edbd8d4e 3637
0b86a832
CM
3638 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
3639 if (ret < 0)
925baedd
CM
3640 goto out;
3641
0b86a832
CM
3642 while(1) {
3643 slot = path->slots[0];
edbd8d4e 3644 leaf = path->nodes[0];
0b86a832
CM
3645 if (slot >= btrfs_header_nritems(leaf)) {
3646 ret = btrfs_next_leaf(root, path);
3647 if (ret == 0)
3648 continue;
3649 if (ret < 0)
925baedd 3650 goto out;
0b86a832 3651 break;
edbd8d4e 3652 }
0b86a832 3653 btrfs_item_key_to_cpu(leaf, &found_key, slot);
edbd8d4e 3654
0b86a832 3655 if (found_key.objectid >= key->objectid &&
925baedd
CM
3656 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
3657 ret = 0;
3658 goto out;
3659 }
0b86a832 3660 path->slots[0]++;
edbd8d4e 3661 }
0b86a832 3662 ret = -ENOENT;
925baedd 3663out:
0b86a832 3664 return ret;
edbd8d4e
CM
3665}
3666
9078a3e1
CM
3667int btrfs_read_block_groups(struct btrfs_root *root)
3668{
3669 struct btrfs_path *path;
3670 int ret;
9078a3e1 3671 struct btrfs_block_group_cache *cache;
be744175 3672 struct btrfs_fs_info *info = root->fs_info;
6324fbf3 3673 struct btrfs_space_info *space_info;
9078a3e1
CM
3674 struct btrfs_key key;
3675 struct btrfs_key found_key;
5f39d397 3676 struct extent_buffer *leaf;
96b5179d 3677
be744175 3678 root = info->extent_root;
9078a3e1 3679 key.objectid = 0;
0b86a832 3680 key.offset = 0;
9078a3e1 3681 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
9078a3e1
CM
3682 path = btrfs_alloc_path();
3683 if (!path)
3684 return -ENOMEM;
3685
925baedd 3686 mutex_lock(&root->fs_info->alloc_mutex);
9078a3e1 3687 while(1) {
0b86a832
CM
3688 ret = find_first_block_group(root, path, &key);
3689 if (ret > 0) {
3690 ret = 0;
3691 goto error;
9078a3e1 3692 }
0b86a832
CM
3693 if (ret != 0)
3694 goto error;
3695
5f39d397
CM
3696 leaf = path->nodes[0];
3697 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
8f18cf13 3698 cache = kzalloc(sizeof(*cache), GFP_NOFS);
9078a3e1 3699 if (!cache) {
0b86a832 3700 ret = -ENOMEM;
9078a3e1
CM
3701 break;
3702 }
3e1ad54f 3703
c286ac48 3704 spin_lock_init(&cache->lock);
0f9dd46c 3705 INIT_LIST_HEAD(&cache->list);
5f39d397
CM
3706 read_extent_buffer(leaf, &cache->item,
3707 btrfs_item_ptr_offset(leaf, path->slots[0]),
3708 sizeof(cache->item));
9078a3e1 3709 memcpy(&cache->key, &found_key, sizeof(found_key));
0b86a832 3710
9078a3e1
CM
3711 key.objectid = found_key.objectid + found_key.offset;
3712 btrfs_release_path(root, path);
0b86a832 3713 cache->flags = btrfs_block_group_flags(&cache->item);
96b5179d 3714
6324fbf3
CM
3715 ret = update_space_info(info, cache->flags, found_key.offset,
3716 btrfs_block_group_used(&cache->item),
3717 &space_info);
3718 BUG_ON(ret);
3719 cache->space_info = space_info;
0f9dd46c
JB
3720 spin_lock(&space_info->lock);
3721 list_add(&cache->list, &space_info->block_groups);
3722 spin_unlock(&space_info->lock);
3723
3724 ret = btrfs_add_block_group_cache(root->fs_info, cache);
3725 BUG_ON(ret);
6324fbf3 3726
9078a3e1 3727 if (key.objectid >=
db94535d 3728 btrfs_super_total_bytes(&info->super_copy))
9078a3e1
CM
3729 break;
3730 }
0b86a832
CM
3731 ret = 0;
3732error:
9078a3e1 3733 btrfs_free_path(path);
925baedd 3734 mutex_unlock(&root->fs_info->alloc_mutex);
0b86a832 3735 return ret;
9078a3e1 3736}
6324fbf3
CM
3737
3738int btrfs_make_block_group(struct btrfs_trans_handle *trans,
3739 struct btrfs_root *root, u64 bytes_used,
e17cade2 3740 u64 type, u64 chunk_objectid, u64 chunk_offset,
6324fbf3
CM
3741 u64 size)
3742{
3743 int ret;
6324fbf3
CM
3744 struct btrfs_root *extent_root;
3745 struct btrfs_block_group_cache *cache;
6324fbf3 3746
7d9eb12c 3747 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
6324fbf3 3748 extent_root = root->fs_info->extent_root;
6324fbf3 3749
e02119d5
CM
3750 root->fs_info->last_trans_new_blockgroup = trans->transid;
3751
8f18cf13 3752 cache = kzalloc(sizeof(*cache), GFP_NOFS);
0f9dd46c
JB
3753 if (!cache)
3754 return -ENOMEM;
3755
e17cade2 3756 cache->key.objectid = chunk_offset;
6324fbf3 3757 cache->key.offset = size;
c286ac48 3758 spin_lock_init(&cache->lock);
0f9dd46c 3759 INIT_LIST_HEAD(&cache->list);
6324fbf3 3760 btrfs_set_key_type(&cache->key, BTRFS_BLOCK_GROUP_ITEM_KEY);
0ef3e66b 3761
6324fbf3 3762 btrfs_set_block_group_used(&cache->item, bytes_used);
6324fbf3
CM
3763 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
3764 cache->flags = type;
3765 btrfs_set_block_group_flags(&cache->item, type);
3766
3767 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
3768 &cache->space_info);
3769 BUG_ON(ret);
0f9dd46c
JB
3770 spin_lock(&cache->space_info->lock);
3771 list_add(&cache->list, &cache->space_info->block_groups);
3772 spin_unlock(&cache->space_info->lock);
6324fbf3 3773
0f9dd46c
JB
3774 ret = btrfs_add_block_group_cache(root->fs_info, cache);
3775 BUG_ON(ret);
c286ac48 3776
6324fbf3
CM
3777 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
3778 sizeof(cache->item));
3779 BUG_ON(ret);
3780
3781 finish_current_insert(trans, extent_root);
3782 ret = del_pending_extents(trans, extent_root);
3783 BUG_ON(ret);
d18a2c44 3784 set_avail_alloc_bits(extent_root->fs_info, type);
925baedd 3785
6324fbf3
CM
3786 return 0;
3787}