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