Btrfs: make btrfs_map_block() return entire free extent for each device of RAID0...
[deliverable/linux.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>
b7a9f29f 22#include <linux/sort.h>
4184ea7f 23#include <linux/rcupdate.h>
817d52f8 24#include <linux/kthread.h>
5a0e3ad6 25#include <linux/slab.h>
4b4e25f2 26#include "compat.h"
74493f7a 27#include "hash.h"
fec577fb
CM
28#include "ctree.h"
29#include "disk-io.h"
30#include "print-tree.h"
e089f05c 31#include "transaction.h"
0b86a832 32#include "volumes.h"
925baedd 33#include "locking.h"
fa9c0d79 34#include "free-space-cache.h"
fec577fb 35
f3465ca4
JB
36static int update_block_group(struct btrfs_trans_handle *trans,
37 struct btrfs_root *root,
f0486c68 38 u64 bytenr, u64 num_bytes, int alloc);
5d4f98a2
YZ
39static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
40 struct btrfs_root *root,
41 u64 bytenr, u64 num_bytes, u64 parent,
42 u64 root_objectid, u64 owner_objectid,
43 u64 owner_offset, int refs_to_drop,
44 struct btrfs_delayed_extent_op *extra_op);
45static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
46 struct extent_buffer *leaf,
47 struct btrfs_extent_item *ei);
48static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
49 struct btrfs_root *root,
50 u64 parent, u64 root_objectid,
51 u64 flags, u64 owner, u64 offset,
52 struct btrfs_key *ins, int ref_mod);
53static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
54 struct btrfs_root *root,
55 u64 parent, u64 root_objectid,
56 u64 flags, struct btrfs_disk_key *key,
57 int level, struct btrfs_key *ins);
6a63209f
JB
58static int do_chunk_alloc(struct btrfs_trans_handle *trans,
59 struct btrfs_root *extent_root, u64 alloc_bytes,
60 u64 flags, int force);
11833d66
YZ
61static int find_next_key(struct btrfs_path *path, int level,
62 struct btrfs_key *key);
9ed74f2d
JB
63static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
64 int dump_block_groups);
6a63209f 65
817d52f8
JB
66static noinline int
67block_group_cache_done(struct btrfs_block_group_cache *cache)
68{
69 smp_mb();
70 return cache->cached == BTRFS_CACHE_FINISHED;
71}
72
0f9dd46c
JB
73static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
74{
75 return (cache->flags & bits) == bits;
76}
77
11dfe35a
JB
78void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
79{
80 atomic_inc(&cache->count);
81}
82
83void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
84{
f0486c68
YZ
85 if (atomic_dec_and_test(&cache->count)) {
86 WARN_ON(cache->pinned > 0);
87 WARN_ON(cache->reserved > 0);
88 WARN_ON(cache->reserved_pinned > 0);
11dfe35a 89 kfree(cache);
f0486c68 90 }
11dfe35a
JB
91}
92
0f9dd46c
JB
93/*
94 * this adds the block group to the fs_info rb tree for the block group
95 * cache
96 */
b2950863 97static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
0f9dd46c
JB
98 struct btrfs_block_group_cache *block_group)
99{
100 struct rb_node **p;
101 struct rb_node *parent = NULL;
102 struct btrfs_block_group_cache *cache;
103
104 spin_lock(&info->block_group_cache_lock);
105 p = &info->block_group_cache_tree.rb_node;
106
107 while (*p) {
108 parent = *p;
109 cache = rb_entry(parent, struct btrfs_block_group_cache,
110 cache_node);
111 if (block_group->key.objectid < cache->key.objectid) {
112 p = &(*p)->rb_left;
113 } else if (block_group->key.objectid > cache->key.objectid) {
114 p = &(*p)->rb_right;
115 } else {
116 spin_unlock(&info->block_group_cache_lock);
117 return -EEXIST;
118 }
119 }
120
121 rb_link_node(&block_group->cache_node, parent, p);
122 rb_insert_color(&block_group->cache_node,
123 &info->block_group_cache_tree);
124 spin_unlock(&info->block_group_cache_lock);
125
126 return 0;
127}
128
129/*
130 * This will return the block group at or after bytenr if contains is 0, else
131 * it will return the block group that contains the bytenr
132 */
133static struct btrfs_block_group_cache *
134block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
135 int contains)
136{
137 struct btrfs_block_group_cache *cache, *ret = NULL;
138 struct rb_node *n;
139 u64 end, start;
140
141 spin_lock(&info->block_group_cache_lock);
142 n = info->block_group_cache_tree.rb_node;
143
144 while (n) {
145 cache = rb_entry(n, struct btrfs_block_group_cache,
146 cache_node);
147 end = cache->key.objectid + cache->key.offset - 1;
148 start = cache->key.objectid;
149
150 if (bytenr < start) {
151 if (!contains && (!ret || start < ret->key.objectid))
152 ret = cache;
153 n = n->rb_left;
154 } else if (bytenr > start) {
155 if (contains && bytenr <= end) {
156 ret = cache;
157 break;
158 }
159 n = n->rb_right;
160 } else {
161 ret = cache;
162 break;
163 }
164 }
d2fb3437 165 if (ret)
11dfe35a 166 btrfs_get_block_group(ret);
0f9dd46c
JB
167 spin_unlock(&info->block_group_cache_lock);
168
169 return ret;
170}
171
11833d66
YZ
172static int add_excluded_extent(struct btrfs_root *root,
173 u64 start, u64 num_bytes)
817d52f8 174{
11833d66
YZ
175 u64 end = start + num_bytes - 1;
176 set_extent_bits(&root->fs_info->freed_extents[0],
177 start, end, EXTENT_UPTODATE, GFP_NOFS);
178 set_extent_bits(&root->fs_info->freed_extents[1],
179 start, end, EXTENT_UPTODATE, GFP_NOFS);
180 return 0;
181}
817d52f8 182
11833d66
YZ
183static void free_excluded_extents(struct btrfs_root *root,
184 struct btrfs_block_group_cache *cache)
185{
186 u64 start, end;
817d52f8 187
11833d66
YZ
188 start = cache->key.objectid;
189 end = start + cache->key.offset - 1;
190
191 clear_extent_bits(&root->fs_info->freed_extents[0],
192 start, end, EXTENT_UPTODATE, GFP_NOFS);
193 clear_extent_bits(&root->fs_info->freed_extents[1],
194 start, end, EXTENT_UPTODATE, GFP_NOFS);
817d52f8
JB
195}
196
11833d66
YZ
197static int exclude_super_stripes(struct btrfs_root *root,
198 struct btrfs_block_group_cache *cache)
817d52f8 199{
817d52f8
JB
200 u64 bytenr;
201 u64 *logical;
202 int stripe_len;
203 int i, nr, ret;
204
06b2331f
YZ
205 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
206 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
207 cache->bytes_super += stripe_len;
208 ret = add_excluded_extent(root, cache->key.objectid,
209 stripe_len);
210 BUG_ON(ret);
211 }
212
817d52f8
JB
213 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
214 bytenr = btrfs_sb_offset(i);
215 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
216 cache->key.objectid, bytenr,
217 0, &logical, &nr, &stripe_len);
218 BUG_ON(ret);
11833d66 219
817d52f8 220 while (nr--) {
1b2da372 221 cache->bytes_super += stripe_len;
11833d66
YZ
222 ret = add_excluded_extent(root, logical[nr],
223 stripe_len);
224 BUG_ON(ret);
817d52f8 225 }
11833d66 226
817d52f8
JB
227 kfree(logical);
228 }
817d52f8
JB
229 return 0;
230}
231
11833d66
YZ
232static struct btrfs_caching_control *
233get_caching_control(struct btrfs_block_group_cache *cache)
234{
235 struct btrfs_caching_control *ctl;
236
237 spin_lock(&cache->lock);
238 if (cache->cached != BTRFS_CACHE_STARTED) {
239 spin_unlock(&cache->lock);
240 return NULL;
241 }
242
dde5abee
JB
243 /* We're loading it the fast way, so we don't have a caching_ctl. */
244 if (!cache->caching_ctl) {
245 spin_unlock(&cache->lock);
11833d66
YZ
246 return NULL;
247 }
248
249 ctl = cache->caching_ctl;
250 atomic_inc(&ctl->count);
251 spin_unlock(&cache->lock);
252 return ctl;
253}
254
255static void put_caching_control(struct btrfs_caching_control *ctl)
256{
257 if (atomic_dec_and_test(&ctl->count))
258 kfree(ctl);
259}
260
0f9dd46c
JB
261/*
262 * this is only called by cache_block_group, since we could have freed extents
263 * we need to check the pinned_extents for any extents that can't be used yet
264 * since their free space will be released as soon as the transaction commits.
265 */
817d52f8 266static u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
0f9dd46c
JB
267 struct btrfs_fs_info *info, u64 start, u64 end)
268{
817d52f8 269 u64 extent_start, extent_end, size, total_added = 0;
0f9dd46c
JB
270 int ret;
271
272 while (start < end) {
11833d66 273 ret = find_first_extent_bit(info->pinned_extents, start,
0f9dd46c 274 &extent_start, &extent_end,
11833d66 275 EXTENT_DIRTY | EXTENT_UPTODATE);
0f9dd46c
JB
276 if (ret)
277 break;
278
06b2331f 279 if (extent_start <= start) {
0f9dd46c
JB
280 start = extent_end + 1;
281 } else if (extent_start > start && extent_start < end) {
282 size = extent_start - start;
817d52f8 283 total_added += size;
ea6a478e
JB
284 ret = btrfs_add_free_space(block_group, start,
285 size);
0f9dd46c
JB
286 BUG_ON(ret);
287 start = extent_end + 1;
288 } else {
289 break;
290 }
291 }
292
293 if (start < end) {
294 size = end - start;
817d52f8 295 total_added += size;
ea6a478e 296 ret = btrfs_add_free_space(block_group, start, size);
0f9dd46c
JB
297 BUG_ON(ret);
298 }
299
817d52f8 300 return total_added;
0f9dd46c
JB
301}
302
817d52f8 303static int caching_kthread(void *data)
e37c9e69 304{
817d52f8
JB
305 struct btrfs_block_group_cache *block_group = data;
306 struct btrfs_fs_info *fs_info = block_group->fs_info;
11833d66
YZ
307 struct btrfs_caching_control *caching_ctl = block_group->caching_ctl;
308 struct btrfs_root *extent_root = fs_info->extent_root;
e37c9e69 309 struct btrfs_path *path;
5f39d397 310 struct extent_buffer *leaf;
11833d66 311 struct btrfs_key key;
817d52f8 312 u64 total_found = 0;
11833d66
YZ
313 u64 last = 0;
314 u32 nritems;
315 int ret = 0;
f510cfec 316
e37c9e69
CM
317 path = btrfs_alloc_path();
318 if (!path)
319 return -ENOMEM;
7d7d6068 320
817d52f8 321 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
11833d66 322
5cd57b2c 323 /*
817d52f8
JB
324 * We don't want to deadlock with somebody trying to allocate a new
325 * extent for the extent root while also trying to search the extent
326 * root to add free space. So we skip locking and search the commit
327 * root, since its read-only
5cd57b2c
CM
328 */
329 path->skip_locking = 1;
817d52f8
JB
330 path->search_commit_root = 1;
331 path->reada = 2;
332
e4404d6e 333 key.objectid = last;
e37c9e69 334 key.offset = 0;
11833d66 335 key.type = BTRFS_EXTENT_ITEM_KEY;
013f1b12 336again:
11833d66 337 mutex_lock(&caching_ctl->mutex);
013f1b12
CM
338 /* need to make sure the commit_root doesn't disappear */
339 down_read(&fs_info->extent_commit_sem);
340
11833d66 341 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
e37c9e69 342 if (ret < 0)
ef8bbdfe 343 goto err;
a512bbf8 344
11833d66
YZ
345 leaf = path->nodes[0];
346 nritems = btrfs_header_nritems(leaf);
347
d397712b 348 while (1) {
817d52f8 349 smp_mb();
11833d66 350 if (fs_info->closing > 1) {
f25784b3 351 last = (u64)-1;
817d52f8 352 break;
f25784b3 353 }
817d52f8 354
11833d66
YZ
355 if (path->slots[0] < nritems) {
356 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
357 } else {
358 ret = find_next_key(path, 0, &key);
359 if (ret)
e37c9e69 360 break;
817d52f8 361
11833d66
YZ
362 caching_ctl->progress = last;
363 btrfs_release_path(extent_root, path);
364 up_read(&fs_info->extent_commit_sem);
365 mutex_unlock(&caching_ctl->mutex);
366 if (btrfs_transaction_in_commit(fs_info))
f36f3042 367 schedule_timeout(1);
11833d66
YZ
368 else
369 cond_resched();
370 goto again;
371 }
817d52f8 372
11833d66
YZ
373 if (key.objectid < block_group->key.objectid) {
374 path->slots[0]++;
817d52f8 375 continue;
e37c9e69 376 }
0f9dd46c 377
e37c9e69 378 if (key.objectid >= block_group->key.objectid +
0f9dd46c 379 block_group->key.offset)
e37c9e69 380 break;
7d7d6068 381
11833d66 382 if (key.type == BTRFS_EXTENT_ITEM_KEY) {
817d52f8
JB
383 total_found += add_new_free_space(block_group,
384 fs_info, last,
385 key.objectid);
7d7d6068 386 last = key.objectid + key.offset;
817d52f8 387
11833d66
YZ
388 if (total_found > (1024 * 1024 * 2)) {
389 total_found = 0;
390 wake_up(&caching_ctl->wait);
391 }
817d52f8 392 }
e37c9e69
CM
393 path->slots[0]++;
394 }
817d52f8 395 ret = 0;
e37c9e69 396
817d52f8
JB
397 total_found += add_new_free_space(block_group, fs_info, last,
398 block_group->key.objectid +
399 block_group->key.offset);
11833d66 400 caching_ctl->progress = (u64)-1;
817d52f8
JB
401
402 spin_lock(&block_group->lock);
11833d66 403 block_group->caching_ctl = NULL;
817d52f8
JB
404 block_group->cached = BTRFS_CACHE_FINISHED;
405 spin_unlock(&block_group->lock);
0f9dd46c 406
54aa1f4d 407err:
e37c9e69 408 btrfs_free_path(path);
276e680d 409 up_read(&fs_info->extent_commit_sem);
817d52f8 410
11833d66
YZ
411 free_excluded_extents(extent_root, block_group);
412
413 mutex_unlock(&caching_ctl->mutex);
414 wake_up(&caching_ctl->wait);
415
416 put_caching_control(caching_ctl);
417 atomic_dec(&block_group->space_info->caching_threads);
11dfe35a
JB
418 btrfs_put_block_group(block_group);
419
817d52f8
JB
420 return 0;
421}
422
9d66e233
JB
423static int cache_block_group(struct btrfs_block_group_cache *cache,
424 struct btrfs_trans_handle *trans,
b8399dee 425 struct btrfs_root *root,
9d66e233 426 int load_cache_only)
817d52f8 427{
11833d66
YZ
428 struct btrfs_fs_info *fs_info = cache->fs_info;
429 struct btrfs_caching_control *caching_ctl;
817d52f8
JB
430 struct task_struct *tsk;
431 int ret = 0;
432
11833d66
YZ
433 smp_mb();
434 if (cache->cached != BTRFS_CACHE_NO)
435 return 0;
436
9d66e233
JB
437 /*
438 * We can't do the read from on-disk cache during a commit since we need
b8399dee
JB
439 * to have the normal tree locking. Also if we are currently trying to
440 * allocate blocks for the tree root we can't do the fast caching since
441 * we likely hold important locks.
9d66e233 442 */
b8399dee
JB
443 if (!trans->transaction->in_commit &&
444 (root && root != root->fs_info->tree_root)) {
9d66e233
JB
445 spin_lock(&cache->lock);
446 if (cache->cached != BTRFS_CACHE_NO) {
447 spin_unlock(&cache->lock);
448 return 0;
449 }
450 cache->cached = BTRFS_CACHE_STARTED;
451 spin_unlock(&cache->lock);
452
453 ret = load_free_space_cache(fs_info, cache);
454
455 spin_lock(&cache->lock);
456 if (ret == 1) {
457 cache->cached = BTRFS_CACHE_FINISHED;
458 cache->last_byte_to_unpin = (u64)-1;
459 } else {
460 cache->cached = BTRFS_CACHE_NO;
461 }
462 spin_unlock(&cache->lock);
3c14874a
JB
463 if (ret == 1) {
464 free_excluded_extents(fs_info->extent_root, cache);
9d66e233 465 return 0;
3c14874a 466 }
9d66e233
JB
467 }
468
469 if (load_cache_only)
470 return 0;
471
fc0e4a31 472 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
11833d66
YZ
473 BUG_ON(!caching_ctl);
474
475 INIT_LIST_HEAD(&caching_ctl->list);
476 mutex_init(&caching_ctl->mutex);
477 init_waitqueue_head(&caching_ctl->wait);
478 caching_ctl->block_group = cache;
479 caching_ctl->progress = cache->key.objectid;
480 /* one for caching kthread, one for caching block group list */
481 atomic_set(&caching_ctl->count, 2);
482
817d52f8
JB
483 spin_lock(&cache->lock);
484 if (cache->cached != BTRFS_CACHE_NO) {
485 spin_unlock(&cache->lock);
11833d66
YZ
486 kfree(caching_ctl);
487 return 0;
817d52f8 488 }
11833d66 489 cache->caching_ctl = caching_ctl;
817d52f8
JB
490 cache->cached = BTRFS_CACHE_STARTED;
491 spin_unlock(&cache->lock);
492
11833d66
YZ
493 down_write(&fs_info->extent_commit_sem);
494 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
495 up_write(&fs_info->extent_commit_sem);
496
497 atomic_inc(&cache->space_info->caching_threads);
11dfe35a 498 btrfs_get_block_group(cache);
11833d66 499
817d52f8
JB
500 tsk = kthread_run(caching_kthread, cache, "btrfs-cache-%llu\n",
501 cache->key.objectid);
502 if (IS_ERR(tsk)) {
503 ret = PTR_ERR(tsk);
504 printk(KERN_ERR "error running thread %d\n", ret);
505 BUG();
506 }
507
ef8bbdfe 508 return ret;
e37c9e69
CM
509}
510
0f9dd46c
JB
511/*
512 * return the block group that starts at or after bytenr
513 */
d397712b
CM
514static struct btrfs_block_group_cache *
515btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
0ef3e66b 516{
0f9dd46c 517 struct btrfs_block_group_cache *cache;
0ef3e66b 518
0f9dd46c 519 cache = block_group_cache_tree_search(info, bytenr, 0);
0ef3e66b 520
0f9dd46c 521 return cache;
0ef3e66b
CM
522}
523
0f9dd46c 524/*
9f55684c 525 * return the block group that contains the given bytenr
0f9dd46c 526 */
d397712b
CM
527struct btrfs_block_group_cache *btrfs_lookup_block_group(
528 struct btrfs_fs_info *info,
529 u64 bytenr)
be744175 530{
0f9dd46c 531 struct btrfs_block_group_cache *cache;
be744175 532
0f9dd46c 533 cache = block_group_cache_tree_search(info, bytenr, 1);
96b5179d 534
0f9dd46c 535 return cache;
be744175 536}
0b86a832 537
0f9dd46c
JB
538static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
539 u64 flags)
6324fbf3 540{
0f9dd46c 541 struct list_head *head = &info->space_info;
0f9dd46c 542 struct btrfs_space_info *found;
4184ea7f 543
b742bb82
YZ
544 flags &= BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_SYSTEM |
545 BTRFS_BLOCK_GROUP_METADATA;
546
4184ea7f
CM
547 rcu_read_lock();
548 list_for_each_entry_rcu(found, head, list) {
67377734 549 if (found->flags & flags) {
4184ea7f 550 rcu_read_unlock();
0f9dd46c 551 return found;
4184ea7f 552 }
0f9dd46c 553 }
4184ea7f 554 rcu_read_unlock();
0f9dd46c 555 return NULL;
6324fbf3
CM
556}
557
4184ea7f
CM
558/*
559 * after adding space to the filesystem, we need to clear the full flags
560 * on all the space infos.
561 */
562void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
563{
564 struct list_head *head = &info->space_info;
565 struct btrfs_space_info *found;
566
567 rcu_read_lock();
568 list_for_each_entry_rcu(found, head, list)
569 found->full = 0;
570 rcu_read_unlock();
571}
572
80eb234a
JB
573static u64 div_factor(u64 num, int factor)
574{
575 if (factor == 10)
576 return num;
577 num *= factor;
578 do_div(num, 10);
579 return num;
580}
581
e5bc2458
CM
582static u64 div_factor_fine(u64 num, int factor)
583{
584 if (factor == 100)
585 return num;
586 num *= factor;
587 do_div(num, 100);
588 return num;
589}
590
d2fb3437
YZ
591u64 btrfs_find_block_group(struct btrfs_root *root,
592 u64 search_start, u64 search_hint, int owner)
cd1bc465 593{
96b5179d 594 struct btrfs_block_group_cache *cache;
cd1bc465 595 u64 used;
d2fb3437
YZ
596 u64 last = max(search_hint, search_start);
597 u64 group_start = 0;
31f3c99b 598 int full_search = 0;
d2fb3437 599 int factor = 9;
0ef3e66b 600 int wrapped = 0;
31f3c99b 601again:
e8569813
ZY
602 while (1) {
603 cache = btrfs_lookup_first_block_group(root->fs_info, last);
0f9dd46c
JB
604 if (!cache)
605 break;
96b5179d 606
c286ac48 607 spin_lock(&cache->lock);
96b5179d
CM
608 last = cache->key.objectid + cache->key.offset;
609 used = btrfs_block_group_used(&cache->item);
610
d2fb3437
YZ
611 if ((full_search || !cache->ro) &&
612 block_group_bits(cache, BTRFS_BLOCK_GROUP_METADATA)) {
e8569813 613 if (used + cache->pinned + cache->reserved <
d2fb3437
YZ
614 div_factor(cache->key.offset, factor)) {
615 group_start = cache->key.objectid;
c286ac48 616 spin_unlock(&cache->lock);
fa9c0d79 617 btrfs_put_block_group(cache);
8790d502
CM
618 goto found;
619 }
6324fbf3 620 }
c286ac48 621 spin_unlock(&cache->lock);
fa9c0d79 622 btrfs_put_block_group(cache);
de428b63 623 cond_resched();
cd1bc465 624 }
0ef3e66b
CM
625 if (!wrapped) {
626 last = search_start;
627 wrapped = 1;
628 goto again;
629 }
630 if (!full_search && factor < 10) {
be744175 631 last = search_start;
31f3c99b 632 full_search = 1;
0ef3e66b 633 factor = 10;
31f3c99b
CM
634 goto again;
635 }
be744175 636found:
d2fb3437 637 return group_start;
925baedd 638}
0f9dd46c 639
e02119d5 640/* simple helper to search for an existing extent at a given offset */
31840ae1 641int btrfs_lookup_extent(struct btrfs_root *root, u64 start, u64 len)
e02119d5
CM
642{
643 int ret;
644 struct btrfs_key key;
31840ae1 645 struct btrfs_path *path;
e02119d5 646
31840ae1
ZY
647 path = btrfs_alloc_path();
648 BUG_ON(!path);
e02119d5
CM
649 key.objectid = start;
650 key.offset = len;
651 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
652 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
653 0, 0);
31840ae1 654 btrfs_free_path(path);
7bb86316
CM
655 return ret;
656}
657
a22285a6
YZ
658/*
659 * helper function to lookup reference count and flags of extent.
660 *
661 * the head node for delayed ref is used to store the sum of all the
662 * reference count modifications queued up in the rbtree. the head
663 * node may also store the extent flags to set. This way you can check
664 * to see what the reference count and extent flags would be if all of
665 * the delayed refs are not processed.
666 */
667int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
668 struct btrfs_root *root, u64 bytenr,
669 u64 num_bytes, u64 *refs, u64 *flags)
670{
671 struct btrfs_delayed_ref_head *head;
672 struct btrfs_delayed_ref_root *delayed_refs;
673 struct btrfs_path *path;
674 struct btrfs_extent_item *ei;
675 struct extent_buffer *leaf;
676 struct btrfs_key key;
677 u32 item_size;
678 u64 num_refs;
679 u64 extent_flags;
680 int ret;
681
682 path = btrfs_alloc_path();
683 if (!path)
684 return -ENOMEM;
685
686 key.objectid = bytenr;
687 key.type = BTRFS_EXTENT_ITEM_KEY;
688 key.offset = num_bytes;
689 if (!trans) {
690 path->skip_locking = 1;
691 path->search_commit_root = 1;
692 }
693again:
694 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
695 &key, path, 0, 0);
696 if (ret < 0)
697 goto out_free;
698
699 if (ret == 0) {
700 leaf = path->nodes[0];
701 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
702 if (item_size >= sizeof(*ei)) {
703 ei = btrfs_item_ptr(leaf, path->slots[0],
704 struct btrfs_extent_item);
705 num_refs = btrfs_extent_refs(leaf, ei);
706 extent_flags = btrfs_extent_flags(leaf, ei);
707 } else {
708#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
709 struct btrfs_extent_item_v0 *ei0;
710 BUG_ON(item_size != sizeof(*ei0));
711 ei0 = btrfs_item_ptr(leaf, path->slots[0],
712 struct btrfs_extent_item_v0);
713 num_refs = btrfs_extent_refs_v0(leaf, ei0);
714 /* FIXME: this isn't correct for data */
715 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
716#else
717 BUG();
718#endif
719 }
720 BUG_ON(num_refs == 0);
721 } else {
722 num_refs = 0;
723 extent_flags = 0;
724 ret = 0;
725 }
726
727 if (!trans)
728 goto out;
729
730 delayed_refs = &trans->transaction->delayed_refs;
731 spin_lock(&delayed_refs->lock);
732 head = btrfs_find_delayed_ref_head(trans, bytenr);
733 if (head) {
734 if (!mutex_trylock(&head->mutex)) {
735 atomic_inc(&head->node.refs);
736 spin_unlock(&delayed_refs->lock);
737
738 btrfs_release_path(root->fs_info->extent_root, path);
739
740 mutex_lock(&head->mutex);
741 mutex_unlock(&head->mutex);
742 btrfs_put_delayed_ref(&head->node);
743 goto again;
744 }
745 if (head->extent_op && head->extent_op->update_flags)
746 extent_flags |= head->extent_op->flags_to_set;
747 else
748 BUG_ON(num_refs == 0);
749
750 num_refs += head->node.ref_mod;
751 mutex_unlock(&head->mutex);
752 }
753 spin_unlock(&delayed_refs->lock);
754out:
755 WARN_ON(num_refs == 0);
756 if (refs)
757 *refs = num_refs;
758 if (flags)
759 *flags = extent_flags;
760out_free:
761 btrfs_free_path(path);
762 return ret;
763}
764
d8d5f3e1
CM
765/*
766 * Back reference rules. Back refs have three main goals:
767 *
768 * 1) differentiate between all holders of references to an extent so that
769 * when a reference is dropped we can make sure it was a valid reference
770 * before freeing the extent.
771 *
772 * 2) Provide enough information to quickly find the holders of an extent
773 * if we notice a given block is corrupted or bad.
774 *
775 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
776 * maintenance. This is actually the same as #2, but with a slightly
777 * different use case.
778 *
5d4f98a2
YZ
779 * There are two kinds of back refs. The implicit back refs is optimized
780 * for pointers in non-shared tree blocks. For a given pointer in a block,
781 * back refs of this kind provide information about the block's owner tree
782 * and the pointer's key. These information allow us to find the block by
783 * b-tree searching. The full back refs is for pointers in tree blocks not
784 * referenced by their owner trees. The location of tree block is recorded
785 * in the back refs. Actually the full back refs is generic, and can be
786 * used in all cases the implicit back refs is used. The major shortcoming
787 * of the full back refs is its overhead. Every time a tree block gets
788 * COWed, we have to update back refs entry for all pointers in it.
789 *
790 * For a newly allocated tree block, we use implicit back refs for
791 * pointers in it. This means most tree related operations only involve
792 * implicit back refs. For a tree block created in old transaction, the
793 * only way to drop a reference to it is COW it. So we can detect the
794 * event that tree block loses its owner tree's reference and do the
795 * back refs conversion.
796 *
797 * When a tree block is COW'd through a tree, there are four cases:
798 *
799 * The reference count of the block is one and the tree is the block's
800 * owner tree. Nothing to do in this case.
801 *
802 * The reference count of the block is one and the tree is not the
803 * block's owner tree. In this case, full back refs is used for pointers
804 * in the block. Remove these full back refs, add implicit back refs for
805 * every pointers in the new block.
806 *
807 * The reference count of the block is greater than one and the tree is
808 * the block's owner tree. In this case, implicit back refs is used for
809 * pointers in the block. Add full back refs for every pointers in the
810 * block, increase lower level extents' reference counts. The original
811 * implicit back refs are entailed to the new block.
812 *
813 * The reference count of the block is greater than one and the tree is
814 * not the block's owner tree. Add implicit back refs for every pointer in
815 * the new block, increase lower level extents' reference count.
816 *
817 * Back Reference Key composing:
818 *
819 * The key objectid corresponds to the first byte in the extent,
820 * The key type is used to differentiate between types of back refs.
821 * There are different meanings of the key offset for different types
822 * of back refs.
823 *
d8d5f3e1
CM
824 * File extents can be referenced by:
825 *
826 * - multiple snapshots, subvolumes, or different generations in one subvol
31840ae1 827 * - different files inside a single subvolume
d8d5f3e1
CM
828 * - different offsets inside a file (bookend extents in file.c)
829 *
5d4f98a2 830 * The extent ref structure for the implicit back refs has fields for:
d8d5f3e1
CM
831 *
832 * - Objectid of the subvolume root
d8d5f3e1 833 * - objectid of the file holding the reference
5d4f98a2
YZ
834 * - original offset in the file
835 * - how many bookend extents
d8d5f3e1 836 *
5d4f98a2
YZ
837 * The key offset for the implicit back refs is hash of the first
838 * three fields.
d8d5f3e1 839 *
5d4f98a2 840 * The extent ref structure for the full back refs has field for:
d8d5f3e1 841 *
5d4f98a2 842 * - number of pointers in the tree leaf
d8d5f3e1 843 *
5d4f98a2
YZ
844 * The key offset for the implicit back refs is the first byte of
845 * the tree leaf
d8d5f3e1 846 *
5d4f98a2
YZ
847 * When a file extent is allocated, The implicit back refs is used.
848 * the fields are filled in:
d8d5f3e1 849 *
5d4f98a2 850 * (root_key.objectid, inode objectid, offset in file, 1)
d8d5f3e1 851 *
5d4f98a2
YZ
852 * When a file extent is removed file truncation, we find the
853 * corresponding implicit back refs and check the following fields:
d8d5f3e1 854 *
5d4f98a2 855 * (btrfs_header_owner(leaf), inode objectid, offset in file)
d8d5f3e1 856 *
5d4f98a2 857 * Btree extents can be referenced by:
d8d5f3e1 858 *
5d4f98a2 859 * - Different subvolumes
d8d5f3e1 860 *
5d4f98a2
YZ
861 * Both the implicit back refs and the full back refs for tree blocks
862 * only consist of key. The key offset for the implicit back refs is
863 * objectid of block's owner tree. The key offset for the full back refs
864 * is the first byte of parent block.
d8d5f3e1 865 *
5d4f98a2
YZ
866 * When implicit back refs is used, information about the lowest key and
867 * level of the tree block are required. These information are stored in
868 * tree block info structure.
d8d5f3e1 869 */
31840ae1 870
5d4f98a2
YZ
871#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
872static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
873 struct btrfs_root *root,
874 struct btrfs_path *path,
875 u64 owner, u32 extra_size)
7bb86316 876{
5d4f98a2
YZ
877 struct btrfs_extent_item *item;
878 struct btrfs_extent_item_v0 *ei0;
879 struct btrfs_extent_ref_v0 *ref0;
880 struct btrfs_tree_block_info *bi;
881 struct extent_buffer *leaf;
7bb86316 882 struct btrfs_key key;
5d4f98a2
YZ
883 struct btrfs_key found_key;
884 u32 new_size = sizeof(*item);
885 u64 refs;
886 int ret;
887
888 leaf = path->nodes[0];
889 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
890
891 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
892 ei0 = btrfs_item_ptr(leaf, path->slots[0],
893 struct btrfs_extent_item_v0);
894 refs = btrfs_extent_refs_v0(leaf, ei0);
895
896 if (owner == (u64)-1) {
897 while (1) {
898 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
899 ret = btrfs_next_leaf(root, path);
900 if (ret < 0)
901 return ret;
902 BUG_ON(ret > 0);
903 leaf = path->nodes[0];
904 }
905 btrfs_item_key_to_cpu(leaf, &found_key,
906 path->slots[0]);
907 BUG_ON(key.objectid != found_key.objectid);
908 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
909 path->slots[0]++;
910 continue;
911 }
912 ref0 = btrfs_item_ptr(leaf, path->slots[0],
913 struct btrfs_extent_ref_v0);
914 owner = btrfs_ref_objectid_v0(leaf, ref0);
915 break;
916 }
917 }
918 btrfs_release_path(root, path);
919
920 if (owner < BTRFS_FIRST_FREE_OBJECTID)
921 new_size += sizeof(*bi);
922
923 new_size -= sizeof(*ei0);
924 ret = btrfs_search_slot(trans, root, &key, path,
925 new_size + extra_size, 1);
926 if (ret < 0)
927 return ret;
928 BUG_ON(ret);
929
930 ret = btrfs_extend_item(trans, root, path, new_size);
931 BUG_ON(ret);
932
933 leaf = path->nodes[0];
934 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
935 btrfs_set_extent_refs(leaf, item, refs);
936 /* FIXME: get real generation */
937 btrfs_set_extent_generation(leaf, item, 0);
938 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
939 btrfs_set_extent_flags(leaf, item,
940 BTRFS_EXTENT_FLAG_TREE_BLOCK |
941 BTRFS_BLOCK_FLAG_FULL_BACKREF);
942 bi = (struct btrfs_tree_block_info *)(item + 1);
943 /* FIXME: get first key of the block */
944 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
945 btrfs_set_tree_block_level(leaf, bi, (int)owner);
946 } else {
947 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
948 }
949 btrfs_mark_buffer_dirty(leaf);
950 return 0;
951}
952#endif
953
954static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
955{
956 u32 high_crc = ~(u32)0;
957 u32 low_crc = ~(u32)0;
958 __le64 lenum;
959
960 lenum = cpu_to_le64(root_objectid);
163e783e 961 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
5d4f98a2 962 lenum = cpu_to_le64(owner);
163e783e 963 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
5d4f98a2 964 lenum = cpu_to_le64(offset);
163e783e 965 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
5d4f98a2
YZ
966
967 return ((u64)high_crc << 31) ^ (u64)low_crc;
968}
969
970static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
971 struct btrfs_extent_data_ref *ref)
972{
973 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
974 btrfs_extent_data_ref_objectid(leaf, ref),
975 btrfs_extent_data_ref_offset(leaf, ref));
976}
977
978static int match_extent_data_ref(struct extent_buffer *leaf,
979 struct btrfs_extent_data_ref *ref,
980 u64 root_objectid, u64 owner, u64 offset)
981{
982 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
983 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
984 btrfs_extent_data_ref_offset(leaf, ref) != offset)
985 return 0;
986 return 1;
987}
988
989static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
990 struct btrfs_root *root,
991 struct btrfs_path *path,
992 u64 bytenr, u64 parent,
993 u64 root_objectid,
994 u64 owner, u64 offset)
995{
996 struct btrfs_key key;
997 struct btrfs_extent_data_ref *ref;
31840ae1 998 struct extent_buffer *leaf;
5d4f98a2 999 u32 nritems;
74493f7a 1000 int ret;
5d4f98a2
YZ
1001 int recow;
1002 int err = -ENOENT;
74493f7a 1003
31840ae1 1004 key.objectid = bytenr;
5d4f98a2
YZ
1005 if (parent) {
1006 key.type = BTRFS_SHARED_DATA_REF_KEY;
1007 key.offset = parent;
1008 } else {
1009 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1010 key.offset = hash_extent_data_ref(root_objectid,
1011 owner, offset);
1012 }
1013again:
1014 recow = 0;
1015 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1016 if (ret < 0) {
1017 err = ret;
1018 goto fail;
1019 }
31840ae1 1020
5d4f98a2
YZ
1021 if (parent) {
1022 if (!ret)
1023 return 0;
1024#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1025 key.type = BTRFS_EXTENT_REF_V0_KEY;
1026 btrfs_release_path(root, path);
1027 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1028 if (ret < 0) {
1029 err = ret;
1030 goto fail;
1031 }
1032 if (!ret)
1033 return 0;
1034#endif
1035 goto fail;
31840ae1
ZY
1036 }
1037
1038 leaf = path->nodes[0];
5d4f98a2
YZ
1039 nritems = btrfs_header_nritems(leaf);
1040 while (1) {
1041 if (path->slots[0] >= nritems) {
1042 ret = btrfs_next_leaf(root, path);
1043 if (ret < 0)
1044 err = ret;
1045 if (ret)
1046 goto fail;
1047
1048 leaf = path->nodes[0];
1049 nritems = btrfs_header_nritems(leaf);
1050 recow = 1;
1051 }
1052
1053 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1054 if (key.objectid != bytenr ||
1055 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1056 goto fail;
1057
1058 ref = btrfs_item_ptr(leaf, path->slots[0],
1059 struct btrfs_extent_data_ref);
1060
1061 if (match_extent_data_ref(leaf, ref, root_objectid,
1062 owner, offset)) {
1063 if (recow) {
1064 btrfs_release_path(root, path);
1065 goto again;
1066 }
1067 err = 0;
1068 break;
1069 }
1070 path->slots[0]++;
31840ae1 1071 }
5d4f98a2
YZ
1072fail:
1073 return err;
31840ae1
ZY
1074}
1075
5d4f98a2
YZ
1076static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1077 struct btrfs_root *root,
1078 struct btrfs_path *path,
1079 u64 bytenr, u64 parent,
1080 u64 root_objectid, u64 owner,
1081 u64 offset, int refs_to_add)
31840ae1
ZY
1082{
1083 struct btrfs_key key;
1084 struct extent_buffer *leaf;
5d4f98a2 1085 u32 size;
31840ae1
ZY
1086 u32 num_refs;
1087 int ret;
74493f7a 1088
74493f7a 1089 key.objectid = bytenr;
5d4f98a2
YZ
1090 if (parent) {
1091 key.type = BTRFS_SHARED_DATA_REF_KEY;
1092 key.offset = parent;
1093 size = sizeof(struct btrfs_shared_data_ref);
1094 } else {
1095 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1096 key.offset = hash_extent_data_ref(root_objectid,
1097 owner, offset);
1098 size = sizeof(struct btrfs_extent_data_ref);
1099 }
74493f7a 1100
5d4f98a2
YZ
1101 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1102 if (ret && ret != -EEXIST)
1103 goto fail;
1104
1105 leaf = path->nodes[0];
1106 if (parent) {
1107 struct btrfs_shared_data_ref *ref;
31840ae1 1108 ref = btrfs_item_ptr(leaf, path->slots[0],
5d4f98a2
YZ
1109 struct btrfs_shared_data_ref);
1110 if (ret == 0) {
1111 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1112 } else {
1113 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1114 num_refs += refs_to_add;
1115 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
31840ae1 1116 }
5d4f98a2
YZ
1117 } else {
1118 struct btrfs_extent_data_ref *ref;
1119 while (ret == -EEXIST) {
1120 ref = btrfs_item_ptr(leaf, path->slots[0],
1121 struct btrfs_extent_data_ref);
1122 if (match_extent_data_ref(leaf, ref, root_objectid,
1123 owner, offset))
1124 break;
1125 btrfs_release_path(root, path);
1126 key.offset++;
1127 ret = btrfs_insert_empty_item(trans, root, path, &key,
1128 size);
1129 if (ret && ret != -EEXIST)
1130 goto fail;
31840ae1 1131
5d4f98a2
YZ
1132 leaf = path->nodes[0];
1133 }
1134 ref = btrfs_item_ptr(leaf, path->slots[0],
1135 struct btrfs_extent_data_ref);
1136 if (ret == 0) {
1137 btrfs_set_extent_data_ref_root(leaf, ref,
1138 root_objectid);
1139 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1140 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1141 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1142 } else {
1143 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1144 num_refs += refs_to_add;
1145 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
31840ae1 1146 }
31840ae1 1147 }
5d4f98a2
YZ
1148 btrfs_mark_buffer_dirty(leaf);
1149 ret = 0;
1150fail:
7bb86316
CM
1151 btrfs_release_path(root, path);
1152 return ret;
74493f7a
CM
1153}
1154
5d4f98a2
YZ
1155static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1156 struct btrfs_root *root,
1157 struct btrfs_path *path,
1158 int refs_to_drop)
31840ae1 1159{
5d4f98a2
YZ
1160 struct btrfs_key key;
1161 struct btrfs_extent_data_ref *ref1 = NULL;
1162 struct btrfs_shared_data_ref *ref2 = NULL;
31840ae1 1163 struct extent_buffer *leaf;
5d4f98a2 1164 u32 num_refs = 0;
31840ae1
ZY
1165 int ret = 0;
1166
1167 leaf = path->nodes[0];
5d4f98a2
YZ
1168 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1169
1170 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1171 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1172 struct btrfs_extent_data_ref);
1173 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1174 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1175 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1176 struct btrfs_shared_data_ref);
1177 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1178#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1179 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1180 struct btrfs_extent_ref_v0 *ref0;
1181 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1182 struct btrfs_extent_ref_v0);
1183 num_refs = btrfs_ref_count_v0(leaf, ref0);
1184#endif
1185 } else {
1186 BUG();
1187 }
1188
56bec294
CM
1189 BUG_ON(num_refs < refs_to_drop);
1190 num_refs -= refs_to_drop;
5d4f98a2 1191
31840ae1
ZY
1192 if (num_refs == 0) {
1193 ret = btrfs_del_item(trans, root, path);
1194 } else {
5d4f98a2
YZ
1195 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1196 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1197 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1198 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1199#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1200 else {
1201 struct btrfs_extent_ref_v0 *ref0;
1202 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1203 struct btrfs_extent_ref_v0);
1204 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1205 }
1206#endif
31840ae1
ZY
1207 btrfs_mark_buffer_dirty(leaf);
1208 }
31840ae1
ZY
1209 return ret;
1210}
1211
5d4f98a2
YZ
1212static noinline u32 extent_data_ref_count(struct btrfs_root *root,
1213 struct btrfs_path *path,
1214 struct btrfs_extent_inline_ref *iref)
15916de8 1215{
5d4f98a2
YZ
1216 struct btrfs_key key;
1217 struct extent_buffer *leaf;
1218 struct btrfs_extent_data_ref *ref1;
1219 struct btrfs_shared_data_ref *ref2;
1220 u32 num_refs = 0;
1221
1222 leaf = path->nodes[0];
1223 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1224 if (iref) {
1225 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1226 BTRFS_EXTENT_DATA_REF_KEY) {
1227 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1228 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1229 } else {
1230 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1231 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1232 }
1233 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1234 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1235 struct btrfs_extent_data_ref);
1236 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1237 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1238 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1239 struct btrfs_shared_data_ref);
1240 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1241#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1242 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1243 struct btrfs_extent_ref_v0 *ref0;
1244 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1245 struct btrfs_extent_ref_v0);
1246 num_refs = btrfs_ref_count_v0(leaf, ref0);
4b4e25f2 1247#endif
5d4f98a2
YZ
1248 } else {
1249 WARN_ON(1);
1250 }
1251 return num_refs;
1252}
15916de8 1253
5d4f98a2
YZ
1254static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1255 struct btrfs_root *root,
1256 struct btrfs_path *path,
1257 u64 bytenr, u64 parent,
1258 u64 root_objectid)
1f3c79a2 1259{
5d4f98a2 1260 struct btrfs_key key;
1f3c79a2 1261 int ret;
1f3c79a2 1262
5d4f98a2
YZ
1263 key.objectid = bytenr;
1264 if (parent) {
1265 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1266 key.offset = parent;
1267 } else {
1268 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1269 key.offset = root_objectid;
1f3c79a2
LH
1270 }
1271
5d4f98a2
YZ
1272 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1273 if (ret > 0)
1274 ret = -ENOENT;
1275#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1276 if (ret == -ENOENT && parent) {
1277 btrfs_release_path(root, path);
1278 key.type = BTRFS_EXTENT_REF_V0_KEY;
1279 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1280 if (ret > 0)
1281 ret = -ENOENT;
1282 }
1f3c79a2 1283#endif
5d4f98a2 1284 return ret;
1f3c79a2
LH
1285}
1286
5d4f98a2
YZ
1287static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1288 struct btrfs_root *root,
1289 struct btrfs_path *path,
1290 u64 bytenr, u64 parent,
1291 u64 root_objectid)
31840ae1 1292{
5d4f98a2 1293 struct btrfs_key key;
31840ae1 1294 int ret;
31840ae1 1295
5d4f98a2
YZ
1296 key.objectid = bytenr;
1297 if (parent) {
1298 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1299 key.offset = parent;
1300 } else {
1301 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1302 key.offset = root_objectid;
1303 }
1304
1305 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
1306 btrfs_release_path(root, path);
31840ae1
ZY
1307 return ret;
1308}
1309
5d4f98a2 1310static inline int extent_ref_type(u64 parent, u64 owner)
31840ae1 1311{
5d4f98a2
YZ
1312 int type;
1313 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1314 if (parent > 0)
1315 type = BTRFS_SHARED_BLOCK_REF_KEY;
1316 else
1317 type = BTRFS_TREE_BLOCK_REF_KEY;
1318 } else {
1319 if (parent > 0)
1320 type = BTRFS_SHARED_DATA_REF_KEY;
1321 else
1322 type = BTRFS_EXTENT_DATA_REF_KEY;
1323 }
1324 return type;
31840ae1 1325}
56bec294 1326
2c47e605
YZ
1327static int find_next_key(struct btrfs_path *path, int level,
1328 struct btrfs_key *key)
56bec294 1329
02217ed2 1330{
2c47e605 1331 for (; level < BTRFS_MAX_LEVEL; level++) {
5d4f98a2
YZ
1332 if (!path->nodes[level])
1333 break;
5d4f98a2
YZ
1334 if (path->slots[level] + 1 >=
1335 btrfs_header_nritems(path->nodes[level]))
1336 continue;
1337 if (level == 0)
1338 btrfs_item_key_to_cpu(path->nodes[level], key,
1339 path->slots[level] + 1);
1340 else
1341 btrfs_node_key_to_cpu(path->nodes[level], key,
1342 path->slots[level] + 1);
1343 return 0;
1344 }
1345 return 1;
1346}
037e6390 1347
5d4f98a2
YZ
1348/*
1349 * look for inline back ref. if back ref is found, *ref_ret is set
1350 * to the address of inline back ref, and 0 is returned.
1351 *
1352 * if back ref isn't found, *ref_ret is set to the address where it
1353 * should be inserted, and -ENOENT is returned.
1354 *
1355 * if insert is true and there are too many inline back refs, the path
1356 * points to the extent item, and -EAGAIN is returned.
1357 *
1358 * NOTE: inline back refs are ordered in the same way that back ref
1359 * items in the tree are ordered.
1360 */
1361static noinline_for_stack
1362int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1363 struct btrfs_root *root,
1364 struct btrfs_path *path,
1365 struct btrfs_extent_inline_ref **ref_ret,
1366 u64 bytenr, u64 num_bytes,
1367 u64 parent, u64 root_objectid,
1368 u64 owner, u64 offset, int insert)
1369{
1370 struct btrfs_key key;
1371 struct extent_buffer *leaf;
1372 struct btrfs_extent_item *ei;
1373 struct btrfs_extent_inline_ref *iref;
1374 u64 flags;
1375 u64 item_size;
1376 unsigned long ptr;
1377 unsigned long end;
1378 int extra_size;
1379 int type;
1380 int want;
1381 int ret;
1382 int err = 0;
26b8003f 1383
db94535d 1384 key.objectid = bytenr;
31840ae1 1385 key.type = BTRFS_EXTENT_ITEM_KEY;
56bec294 1386 key.offset = num_bytes;
31840ae1 1387
5d4f98a2
YZ
1388 want = extent_ref_type(parent, owner);
1389 if (insert) {
1390 extra_size = btrfs_extent_inline_ref_size(want);
85d4198e 1391 path->keep_locks = 1;
5d4f98a2
YZ
1392 } else
1393 extra_size = -1;
1394 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
b9473439 1395 if (ret < 0) {
5d4f98a2
YZ
1396 err = ret;
1397 goto out;
1398 }
1399 BUG_ON(ret);
1400
1401 leaf = path->nodes[0];
1402 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1403#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1404 if (item_size < sizeof(*ei)) {
1405 if (!insert) {
1406 err = -ENOENT;
1407 goto out;
1408 }
1409 ret = convert_extent_item_v0(trans, root, path, owner,
1410 extra_size);
1411 if (ret < 0) {
1412 err = ret;
1413 goto out;
1414 }
1415 leaf = path->nodes[0];
1416 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1417 }
1418#endif
1419 BUG_ON(item_size < sizeof(*ei));
1420
5d4f98a2
YZ
1421 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1422 flags = btrfs_extent_flags(leaf, ei);
1423
1424 ptr = (unsigned long)(ei + 1);
1425 end = (unsigned long)ei + item_size;
1426
1427 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
1428 ptr += sizeof(struct btrfs_tree_block_info);
1429 BUG_ON(ptr > end);
1430 } else {
1431 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_DATA));
1432 }
1433
1434 err = -ENOENT;
1435 while (1) {
1436 if (ptr >= end) {
1437 WARN_ON(ptr > end);
1438 break;
1439 }
1440 iref = (struct btrfs_extent_inline_ref *)ptr;
1441 type = btrfs_extent_inline_ref_type(leaf, iref);
1442 if (want < type)
1443 break;
1444 if (want > type) {
1445 ptr += btrfs_extent_inline_ref_size(type);
1446 continue;
1447 }
1448
1449 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1450 struct btrfs_extent_data_ref *dref;
1451 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1452 if (match_extent_data_ref(leaf, dref, root_objectid,
1453 owner, offset)) {
1454 err = 0;
1455 break;
1456 }
1457 if (hash_extent_data_ref_item(leaf, dref) <
1458 hash_extent_data_ref(root_objectid, owner, offset))
1459 break;
1460 } else {
1461 u64 ref_offset;
1462 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1463 if (parent > 0) {
1464 if (parent == ref_offset) {
1465 err = 0;
1466 break;
1467 }
1468 if (ref_offset < parent)
1469 break;
1470 } else {
1471 if (root_objectid == ref_offset) {
1472 err = 0;
1473 break;
1474 }
1475 if (ref_offset < root_objectid)
1476 break;
1477 }
1478 }
1479 ptr += btrfs_extent_inline_ref_size(type);
1480 }
1481 if (err == -ENOENT && insert) {
1482 if (item_size + extra_size >=
1483 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1484 err = -EAGAIN;
1485 goto out;
1486 }
1487 /*
1488 * To add new inline back ref, we have to make sure
1489 * there is no corresponding back ref item.
1490 * For simplicity, we just do not add new inline back
1491 * ref if there is any kind of item for this block
1492 */
2c47e605
YZ
1493 if (find_next_key(path, 0, &key) == 0 &&
1494 key.objectid == bytenr &&
85d4198e 1495 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
5d4f98a2
YZ
1496 err = -EAGAIN;
1497 goto out;
1498 }
1499 }
1500 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1501out:
85d4198e 1502 if (insert) {
5d4f98a2
YZ
1503 path->keep_locks = 0;
1504 btrfs_unlock_up_safe(path, 1);
1505 }
1506 return err;
1507}
1508
1509/*
1510 * helper to add new inline back ref
1511 */
1512static noinline_for_stack
1513int setup_inline_extent_backref(struct btrfs_trans_handle *trans,
1514 struct btrfs_root *root,
1515 struct btrfs_path *path,
1516 struct btrfs_extent_inline_ref *iref,
1517 u64 parent, u64 root_objectid,
1518 u64 owner, u64 offset, int refs_to_add,
1519 struct btrfs_delayed_extent_op *extent_op)
1520{
1521 struct extent_buffer *leaf;
1522 struct btrfs_extent_item *ei;
1523 unsigned long ptr;
1524 unsigned long end;
1525 unsigned long item_offset;
1526 u64 refs;
1527 int size;
1528 int type;
1529 int ret;
1530
1531 leaf = path->nodes[0];
1532 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1533 item_offset = (unsigned long)iref - (unsigned long)ei;
1534
1535 type = extent_ref_type(parent, owner);
1536 size = btrfs_extent_inline_ref_size(type);
1537
1538 ret = btrfs_extend_item(trans, root, path, size);
1539 BUG_ON(ret);
1540
1541 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1542 refs = btrfs_extent_refs(leaf, ei);
1543 refs += refs_to_add;
1544 btrfs_set_extent_refs(leaf, ei, refs);
1545 if (extent_op)
1546 __run_delayed_extent_op(extent_op, leaf, ei);
1547
1548 ptr = (unsigned long)ei + item_offset;
1549 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1550 if (ptr < end - size)
1551 memmove_extent_buffer(leaf, ptr + size, ptr,
1552 end - size - ptr);
1553
1554 iref = (struct btrfs_extent_inline_ref *)ptr;
1555 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1556 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1557 struct btrfs_extent_data_ref *dref;
1558 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1559 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1560 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1561 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1562 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1563 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1564 struct btrfs_shared_data_ref *sref;
1565 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1566 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1567 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1568 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1569 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1570 } else {
1571 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1572 }
1573 btrfs_mark_buffer_dirty(leaf);
1574 return 0;
1575}
1576
1577static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1578 struct btrfs_root *root,
1579 struct btrfs_path *path,
1580 struct btrfs_extent_inline_ref **ref_ret,
1581 u64 bytenr, u64 num_bytes, u64 parent,
1582 u64 root_objectid, u64 owner, u64 offset)
1583{
1584 int ret;
1585
1586 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1587 bytenr, num_bytes, parent,
1588 root_objectid, owner, offset, 0);
1589 if (ret != -ENOENT)
54aa1f4d 1590 return ret;
5d4f98a2
YZ
1591
1592 btrfs_release_path(root, path);
1593 *ref_ret = NULL;
1594
1595 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1596 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1597 root_objectid);
1598 } else {
1599 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1600 root_objectid, owner, offset);
b9473439 1601 }
5d4f98a2
YZ
1602 return ret;
1603}
31840ae1 1604
5d4f98a2
YZ
1605/*
1606 * helper to update/remove inline back ref
1607 */
1608static noinline_for_stack
1609int update_inline_extent_backref(struct btrfs_trans_handle *trans,
1610 struct btrfs_root *root,
1611 struct btrfs_path *path,
1612 struct btrfs_extent_inline_ref *iref,
1613 int refs_to_mod,
1614 struct btrfs_delayed_extent_op *extent_op)
1615{
1616 struct extent_buffer *leaf;
1617 struct btrfs_extent_item *ei;
1618 struct btrfs_extent_data_ref *dref = NULL;
1619 struct btrfs_shared_data_ref *sref = NULL;
1620 unsigned long ptr;
1621 unsigned long end;
1622 u32 item_size;
1623 int size;
1624 int type;
1625 int ret;
1626 u64 refs;
1627
1628 leaf = path->nodes[0];
1629 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1630 refs = btrfs_extent_refs(leaf, ei);
1631 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1632 refs += refs_to_mod;
1633 btrfs_set_extent_refs(leaf, ei, refs);
1634 if (extent_op)
1635 __run_delayed_extent_op(extent_op, leaf, ei);
1636
1637 type = btrfs_extent_inline_ref_type(leaf, iref);
1638
1639 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1640 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1641 refs = btrfs_extent_data_ref_count(leaf, dref);
1642 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1643 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1644 refs = btrfs_shared_data_ref_count(leaf, sref);
1645 } else {
1646 refs = 1;
1647 BUG_ON(refs_to_mod != -1);
56bec294 1648 }
31840ae1 1649
5d4f98a2
YZ
1650 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1651 refs += refs_to_mod;
1652
1653 if (refs > 0) {
1654 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1655 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1656 else
1657 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1658 } else {
1659 size = btrfs_extent_inline_ref_size(type);
1660 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1661 ptr = (unsigned long)iref;
1662 end = (unsigned long)ei + item_size;
1663 if (ptr + size < end)
1664 memmove_extent_buffer(leaf, ptr, ptr + size,
1665 end - ptr - size);
1666 item_size -= size;
1667 ret = btrfs_truncate_item(trans, root, path, item_size, 1);
1668 BUG_ON(ret);
1669 }
1670 btrfs_mark_buffer_dirty(leaf);
1671 return 0;
1672}
1673
1674static noinline_for_stack
1675int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1676 struct btrfs_root *root,
1677 struct btrfs_path *path,
1678 u64 bytenr, u64 num_bytes, u64 parent,
1679 u64 root_objectid, u64 owner,
1680 u64 offset, int refs_to_add,
1681 struct btrfs_delayed_extent_op *extent_op)
1682{
1683 struct btrfs_extent_inline_ref *iref;
1684 int ret;
1685
1686 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1687 bytenr, num_bytes, parent,
1688 root_objectid, owner, offset, 1);
1689 if (ret == 0) {
1690 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
1691 ret = update_inline_extent_backref(trans, root, path, iref,
1692 refs_to_add, extent_op);
1693 } else if (ret == -ENOENT) {
1694 ret = setup_inline_extent_backref(trans, root, path, iref,
1695 parent, root_objectid,
1696 owner, offset, refs_to_add,
1697 extent_op);
771ed689 1698 }
5d4f98a2
YZ
1699 return ret;
1700}
31840ae1 1701
5d4f98a2
YZ
1702static int insert_extent_backref(struct btrfs_trans_handle *trans,
1703 struct btrfs_root *root,
1704 struct btrfs_path *path,
1705 u64 bytenr, u64 parent, u64 root_objectid,
1706 u64 owner, u64 offset, int refs_to_add)
1707{
1708 int ret;
1709 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1710 BUG_ON(refs_to_add != 1);
1711 ret = insert_tree_block_ref(trans, root, path, bytenr,
1712 parent, root_objectid);
1713 } else {
1714 ret = insert_extent_data_ref(trans, root, path, bytenr,
1715 parent, root_objectid,
1716 owner, offset, refs_to_add);
1717 }
1718 return ret;
1719}
56bec294 1720
5d4f98a2
YZ
1721static int remove_extent_backref(struct btrfs_trans_handle *trans,
1722 struct btrfs_root *root,
1723 struct btrfs_path *path,
1724 struct btrfs_extent_inline_ref *iref,
1725 int refs_to_drop, int is_data)
1726{
1727 int ret;
b9473439 1728
5d4f98a2
YZ
1729 BUG_ON(!is_data && refs_to_drop != 1);
1730 if (iref) {
1731 ret = update_inline_extent_backref(trans, root, path, iref,
1732 -refs_to_drop, NULL);
1733 } else if (is_data) {
1734 ret = remove_extent_data_ref(trans, root, path, refs_to_drop);
1735 } else {
1736 ret = btrfs_del_item(trans, root, path);
1737 }
1738 return ret;
1739}
1740
5d4f98a2
YZ
1741static void btrfs_issue_discard(struct block_device *bdev,
1742 u64 start, u64 len)
1743{
fc0e4a31 1744 blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_NOFS, 0);
5d4f98a2 1745}
5d4f98a2
YZ
1746
1747static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
1748 u64 num_bytes)
1749{
5d4f98a2
YZ
1750 int ret;
1751 u64 map_length = num_bytes;
1752 struct btrfs_multi_bio *multi = NULL;
1753
e244a0ae
CH
1754 if (!btrfs_test_opt(root, DISCARD))
1755 return 0;
1756
5d4f98a2
YZ
1757 /* Tell the block device(s) that the sectors can be discarded */
1758 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
1759 bytenr, &map_length, &multi, 0);
1760 if (!ret) {
1761 struct btrfs_bio_stripe *stripe = multi->stripes;
1762 int i;
1763
1764 if (map_length > num_bytes)
1765 map_length = num_bytes;
1766
1767 for (i = 0; i < multi->num_stripes; i++, stripe++) {
1768 btrfs_issue_discard(stripe->dev->bdev,
1769 stripe->physical,
1770 map_length);
1771 }
1772 kfree(multi);
1773 }
1774
1775 return ret;
5d4f98a2
YZ
1776}
1777
1778int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1779 struct btrfs_root *root,
1780 u64 bytenr, u64 num_bytes, u64 parent,
1781 u64 root_objectid, u64 owner, u64 offset)
1782{
1783 int ret;
1784 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
1785 root_objectid == BTRFS_TREE_LOG_OBJECTID);
1786
1787 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1788 ret = btrfs_add_delayed_tree_ref(trans, bytenr, num_bytes,
1789 parent, root_objectid, (int)owner,
1790 BTRFS_ADD_DELAYED_REF, NULL);
1791 } else {
1792 ret = btrfs_add_delayed_data_ref(trans, bytenr, num_bytes,
1793 parent, root_objectid, owner, offset,
1794 BTRFS_ADD_DELAYED_REF, NULL);
1795 }
1796 return ret;
1797}
1798
1799static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1800 struct btrfs_root *root,
1801 u64 bytenr, u64 num_bytes,
1802 u64 parent, u64 root_objectid,
1803 u64 owner, u64 offset, int refs_to_add,
1804 struct btrfs_delayed_extent_op *extent_op)
1805{
1806 struct btrfs_path *path;
1807 struct extent_buffer *leaf;
1808 struct btrfs_extent_item *item;
1809 u64 refs;
1810 int ret;
1811 int err = 0;
1812
1813 path = btrfs_alloc_path();
1814 if (!path)
1815 return -ENOMEM;
1816
1817 path->reada = 1;
1818 path->leave_spinning = 1;
1819 /* this will setup the path even if it fails to insert the back ref */
1820 ret = insert_inline_extent_backref(trans, root->fs_info->extent_root,
1821 path, bytenr, num_bytes, parent,
1822 root_objectid, owner, offset,
1823 refs_to_add, extent_op);
1824 if (ret == 0)
1825 goto out;
1826
1827 if (ret != -EAGAIN) {
1828 err = ret;
1829 goto out;
1830 }
1831
1832 leaf = path->nodes[0];
1833 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1834 refs = btrfs_extent_refs(leaf, item);
1835 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
1836 if (extent_op)
1837 __run_delayed_extent_op(extent_op, leaf, item);
56bec294 1838
5d4f98a2 1839 btrfs_mark_buffer_dirty(leaf);
56bec294
CM
1840 btrfs_release_path(root->fs_info->extent_root, path);
1841
1842 path->reada = 1;
b9473439
CM
1843 path->leave_spinning = 1;
1844
56bec294
CM
1845 /* now insert the actual backref */
1846 ret = insert_extent_backref(trans, root->fs_info->extent_root,
5d4f98a2
YZ
1847 path, bytenr, parent, root_objectid,
1848 owner, offset, refs_to_add);
56bec294 1849 BUG_ON(ret);
5d4f98a2 1850out:
56bec294 1851 btrfs_free_path(path);
5d4f98a2 1852 return err;
56bec294
CM
1853}
1854
5d4f98a2
YZ
1855static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
1856 struct btrfs_root *root,
1857 struct btrfs_delayed_ref_node *node,
1858 struct btrfs_delayed_extent_op *extent_op,
1859 int insert_reserved)
56bec294 1860{
5d4f98a2
YZ
1861 int ret = 0;
1862 struct btrfs_delayed_data_ref *ref;
1863 struct btrfs_key ins;
1864 u64 parent = 0;
1865 u64 ref_root = 0;
1866 u64 flags = 0;
1867
1868 ins.objectid = node->bytenr;
1869 ins.offset = node->num_bytes;
1870 ins.type = BTRFS_EXTENT_ITEM_KEY;
1871
1872 ref = btrfs_delayed_node_to_data_ref(node);
1873 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
1874 parent = ref->parent;
1875 else
1876 ref_root = ref->root;
1877
1878 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
1879 if (extent_op) {
1880 BUG_ON(extent_op->update_key);
1881 flags |= extent_op->flags_to_set;
1882 }
1883 ret = alloc_reserved_file_extent(trans, root,
1884 parent, ref_root, flags,
1885 ref->objectid, ref->offset,
1886 &ins, node->ref_mod);
5d4f98a2
YZ
1887 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
1888 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
1889 node->num_bytes, parent,
1890 ref_root, ref->objectid,
1891 ref->offset, node->ref_mod,
1892 extent_op);
1893 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
1894 ret = __btrfs_free_extent(trans, root, node->bytenr,
1895 node->num_bytes, parent,
1896 ref_root, ref->objectid,
1897 ref->offset, node->ref_mod,
1898 extent_op);
1899 } else {
1900 BUG();
1901 }
1902 return ret;
1903}
1904
1905static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
1906 struct extent_buffer *leaf,
1907 struct btrfs_extent_item *ei)
1908{
1909 u64 flags = btrfs_extent_flags(leaf, ei);
1910 if (extent_op->update_flags) {
1911 flags |= extent_op->flags_to_set;
1912 btrfs_set_extent_flags(leaf, ei, flags);
1913 }
1914
1915 if (extent_op->update_key) {
1916 struct btrfs_tree_block_info *bi;
1917 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
1918 bi = (struct btrfs_tree_block_info *)(ei + 1);
1919 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
1920 }
1921}
1922
1923static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
1924 struct btrfs_root *root,
1925 struct btrfs_delayed_ref_node *node,
1926 struct btrfs_delayed_extent_op *extent_op)
1927{
1928 struct btrfs_key key;
1929 struct btrfs_path *path;
1930 struct btrfs_extent_item *ei;
1931 struct extent_buffer *leaf;
1932 u32 item_size;
56bec294 1933 int ret;
5d4f98a2
YZ
1934 int err = 0;
1935
1936 path = btrfs_alloc_path();
1937 if (!path)
1938 return -ENOMEM;
1939
1940 key.objectid = node->bytenr;
1941 key.type = BTRFS_EXTENT_ITEM_KEY;
1942 key.offset = node->num_bytes;
1943
1944 path->reada = 1;
1945 path->leave_spinning = 1;
1946 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
1947 path, 0, 1);
1948 if (ret < 0) {
1949 err = ret;
1950 goto out;
1951 }
1952 if (ret > 0) {
1953 err = -EIO;
1954 goto out;
1955 }
1956
1957 leaf = path->nodes[0];
1958 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1959#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1960 if (item_size < sizeof(*ei)) {
1961 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
1962 path, (u64)-1, 0);
1963 if (ret < 0) {
1964 err = ret;
1965 goto out;
1966 }
1967 leaf = path->nodes[0];
1968 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1969 }
1970#endif
1971 BUG_ON(item_size < sizeof(*ei));
1972 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1973 __run_delayed_extent_op(extent_op, leaf, ei);
56bec294 1974
5d4f98a2
YZ
1975 btrfs_mark_buffer_dirty(leaf);
1976out:
1977 btrfs_free_path(path);
1978 return err;
56bec294
CM
1979}
1980
5d4f98a2
YZ
1981static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
1982 struct btrfs_root *root,
1983 struct btrfs_delayed_ref_node *node,
1984 struct btrfs_delayed_extent_op *extent_op,
1985 int insert_reserved)
56bec294
CM
1986{
1987 int ret = 0;
5d4f98a2
YZ
1988 struct btrfs_delayed_tree_ref *ref;
1989 struct btrfs_key ins;
1990 u64 parent = 0;
1991 u64 ref_root = 0;
56bec294 1992
5d4f98a2
YZ
1993 ins.objectid = node->bytenr;
1994 ins.offset = node->num_bytes;
1995 ins.type = BTRFS_EXTENT_ITEM_KEY;
56bec294 1996
5d4f98a2
YZ
1997 ref = btrfs_delayed_node_to_tree_ref(node);
1998 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
1999 parent = ref->parent;
2000 else
2001 ref_root = ref->root;
2002
2003 BUG_ON(node->ref_mod != 1);
2004 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
2005 BUG_ON(!extent_op || !extent_op->update_flags ||
2006 !extent_op->update_key);
2007 ret = alloc_reserved_tree_block(trans, root,
2008 parent, ref_root,
2009 extent_op->flags_to_set,
2010 &extent_op->key,
2011 ref->level, &ins);
5d4f98a2
YZ
2012 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2013 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2014 node->num_bytes, parent, ref_root,
2015 ref->level, 0, 1, extent_op);
2016 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2017 ret = __btrfs_free_extent(trans, root, node->bytenr,
2018 node->num_bytes, parent, ref_root,
2019 ref->level, 0, 1, extent_op);
2020 } else {
2021 BUG();
2022 }
56bec294
CM
2023 return ret;
2024}
2025
2026/* helper function to actually process a single delayed ref entry */
5d4f98a2
YZ
2027static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2028 struct btrfs_root *root,
2029 struct btrfs_delayed_ref_node *node,
2030 struct btrfs_delayed_extent_op *extent_op,
2031 int insert_reserved)
56bec294
CM
2032{
2033 int ret;
5d4f98a2 2034 if (btrfs_delayed_ref_is_head(node)) {
56bec294
CM
2035 struct btrfs_delayed_ref_head *head;
2036 /*
2037 * we've hit the end of the chain and we were supposed
2038 * to insert this extent into the tree. But, it got
2039 * deleted before we ever needed to insert it, so all
2040 * we have to do is clean up the accounting
2041 */
5d4f98a2
YZ
2042 BUG_ON(extent_op);
2043 head = btrfs_delayed_node_to_head(node);
56bec294 2044 if (insert_reserved) {
f0486c68
YZ
2045 btrfs_pin_extent(root, node->bytenr,
2046 node->num_bytes, 1);
5d4f98a2
YZ
2047 if (head->is_data) {
2048 ret = btrfs_del_csums(trans, root,
2049 node->bytenr,
2050 node->num_bytes);
2051 BUG_ON(ret);
2052 }
56bec294 2053 }
56bec294
CM
2054 mutex_unlock(&head->mutex);
2055 return 0;
2056 }
2057
5d4f98a2
YZ
2058 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2059 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2060 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2061 insert_reserved);
2062 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2063 node->type == BTRFS_SHARED_DATA_REF_KEY)
2064 ret = run_delayed_data_ref(trans, root, node, extent_op,
2065 insert_reserved);
2066 else
2067 BUG();
2068 return ret;
56bec294
CM
2069}
2070
2071static noinline struct btrfs_delayed_ref_node *
2072select_delayed_ref(struct btrfs_delayed_ref_head *head)
2073{
2074 struct rb_node *node;
2075 struct btrfs_delayed_ref_node *ref;
2076 int action = BTRFS_ADD_DELAYED_REF;
2077again:
2078 /*
2079 * select delayed ref of type BTRFS_ADD_DELAYED_REF first.
2080 * this prevents ref count from going down to zero when
2081 * there still are pending delayed ref.
2082 */
2083 node = rb_prev(&head->node.rb_node);
2084 while (1) {
2085 if (!node)
2086 break;
2087 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2088 rb_node);
2089 if (ref->bytenr != head->node.bytenr)
2090 break;
5d4f98a2 2091 if (ref->action == action)
56bec294
CM
2092 return ref;
2093 node = rb_prev(node);
2094 }
2095 if (action == BTRFS_ADD_DELAYED_REF) {
2096 action = BTRFS_DROP_DELAYED_REF;
2097 goto again;
2098 }
2099 return NULL;
2100}
2101
c3e69d58
CM
2102static noinline int run_clustered_refs(struct btrfs_trans_handle *trans,
2103 struct btrfs_root *root,
2104 struct list_head *cluster)
56bec294 2105{
56bec294
CM
2106 struct btrfs_delayed_ref_root *delayed_refs;
2107 struct btrfs_delayed_ref_node *ref;
2108 struct btrfs_delayed_ref_head *locked_ref = NULL;
5d4f98a2 2109 struct btrfs_delayed_extent_op *extent_op;
56bec294 2110 int ret;
c3e69d58 2111 int count = 0;
56bec294 2112 int must_insert_reserved = 0;
56bec294
CM
2113
2114 delayed_refs = &trans->transaction->delayed_refs;
56bec294
CM
2115 while (1) {
2116 if (!locked_ref) {
c3e69d58
CM
2117 /* pick a new head ref from the cluster list */
2118 if (list_empty(cluster))
56bec294 2119 break;
56bec294 2120
c3e69d58
CM
2121 locked_ref = list_entry(cluster->next,
2122 struct btrfs_delayed_ref_head, cluster);
2123
2124 /* grab the lock that says we are going to process
2125 * all the refs for this head */
2126 ret = btrfs_delayed_ref_lock(trans, locked_ref);
2127
2128 /*
2129 * we may have dropped the spin lock to get the head
2130 * mutex lock, and that might have given someone else
2131 * time to free the head. If that's true, it has been
2132 * removed from our list and we can move on.
2133 */
2134 if (ret == -EAGAIN) {
2135 locked_ref = NULL;
2136 count++;
2137 continue;
56bec294
CM
2138 }
2139 }
a28ec197 2140
56bec294
CM
2141 /*
2142 * record the must insert reserved flag before we
2143 * drop the spin lock.
2144 */
2145 must_insert_reserved = locked_ref->must_insert_reserved;
2146 locked_ref->must_insert_reserved = 0;
7bb86316 2147
5d4f98a2
YZ
2148 extent_op = locked_ref->extent_op;
2149 locked_ref->extent_op = NULL;
2150
56bec294
CM
2151 /*
2152 * locked_ref is the head node, so we have to go one
2153 * node back for any delayed ref updates
2154 */
56bec294
CM
2155 ref = select_delayed_ref(locked_ref);
2156 if (!ref) {
2157 /* All delayed refs have been processed, Go ahead
2158 * and send the head node to run_one_delayed_ref,
2159 * so that any accounting fixes can happen
2160 */
2161 ref = &locked_ref->node;
5d4f98a2
YZ
2162
2163 if (extent_op && must_insert_reserved) {
2164 kfree(extent_op);
2165 extent_op = NULL;
2166 }
2167
2168 if (extent_op) {
2169 spin_unlock(&delayed_refs->lock);
2170
2171 ret = run_delayed_extent_op(trans, root,
2172 ref, extent_op);
2173 BUG_ON(ret);
2174 kfree(extent_op);
2175
2176 cond_resched();
2177 spin_lock(&delayed_refs->lock);
2178 continue;
2179 }
2180
c3e69d58 2181 list_del_init(&locked_ref->cluster);
56bec294
CM
2182 locked_ref = NULL;
2183 }
02217ed2 2184
56bec294
CM
2185 ref->in_tree = 0;
2186 rb_erase(&ref->rb_node, &delayed_refs->root);
2187 delayed_refs->num_entries--;
5d4f98a2 2188
56bec294 2189 spin_unlock(&delayed_refs->lock);
925baedd 2190
5d4f98a2 2191 ret = run_one_delayed_ref(trans, root, ref, extent_op,
56bec294
CM
2192 must_insert_reserved);
2193 BUG_ON(ret);
eb099670 2194
5d4f98a2
YZ
2195 btrfs_put_delayed_ref(ref);
2196 kfree(extent_op);
c3e69d58 2197 count++;
5d4f98a2 2198
c3e69d58
CM
2199 cond_resched();
2200 spin_lock(&delayed_refs->lock);
2201 }
2202 return count;
2203}
2204
2205/*
2206 * this starts processing the delayed reference count updates and
2207 * extent insertions we have queued up so far. count can be
2208 * 0, which means to process everything in the tree at the start
2209 * of the run (but not newly added entries), or it can be some target
2210 * number you'd like to process.
2211 */
2212int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2213 struct btrfs_root *root, unsigned long count)
2214{
2215 struct rb_node *node;
2216 struct btrfs_delayed_ref_root *delayed_refs;
2217 struct btrfs_delayed_ref_node *ref;
2218 struct list_head cluster;
2219 int ret;
2220 int run_all = count == (unsigned long)-1;
2221 int run_most = 0;
2222
2223 if (root == root->fs_info->extent_root)
2224 root = root->fs_info->tree_root;
2225
2226 delayed_refs = &trans->transaction->delayed_refs;
2227 INIT_LIST_HEAD(&cluster);
2228again:
2229 spin_lock(&delayed_refs->lock);
2230 if (count == 0) {
2231 count = delayed_refs->num_entries * 2;
2232 run_most = 1;
2233 }
2234 while (1) {
2235 if (!(run_all || run_most) &&
2236 delayed_refs->num_heads_ready < 64)
2237 break;
eb099670 2238
56bec294 2239 /*
c3e69d58
CM
2240 * go find something we can process in the rbtree. We start at
2241 * the beginning of the tree, and then build a cluster
2242 * of refs to process starting at the first one we are able to
2243 * lock
56bec294 2244 */
c3e69d58
CM
2245 ret = btrfs_find_ref_cluster(trans, &cluster,
2246 delayed_refs->run_delayed_start);
2247 if (ret)
56bec294
CM
2248 break;
2249
c3e69d58
CM
2250 ret = run_clustered_refs(trans, root, &cluster);
2251 BUG_ON(ret < 0);
2252
2253 count -= min_t(unsigned long, ret, count);
2254
2255 if (count == 0)
2256 break;
eb099670 2257 }
c3e69d58 2258
56bec294 2259 if (run_all) {
56bec294 2260 node = rb_first(&delayed_refs->root);
c3e69d58 2261 if (!node)
56bec294 2262 goto out;
c3e69d58 2263 count = (unsigned long)-1;
e9d0b13b 2264
56bec294
CM
2265 while (node) {
2266 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2267 rb_node);
2268 if (btrfs_delayed_ref_is_head(ref)) {
2269 struct btrfs_delayed_ref_head *head;
5caf2a00 2270
56bec294
CM
2271 head = btrfs_delayed_node_to_head(ref);
2272 atomic_inc(&ref->refs);
2273
2274 spin_unlock(&delayed_refs->lock);
2275 mutex_lock(&head->mutex);
2276 mutex_unlock(&head->mutex);
2277
2278 btrfs_put_delayed_ref(ref);
1887be66 2279 cond_resched();
56bec294
CM
2280 goto again;
2281 }
2282 node = rb_next(node);
2283 }
2284 spin_unlock(&delayed_refs->lock);
56bec294
CM
2285 schedule_timeout(1);
2286 goto again;
5f39d397 2287 }
54aa1f4d 2288out:
c3e69d58 2289 spin_unlock(&delayed_refs->lock);
a28ec197
CM
2290 return 0;
2291}
2292
5d4f98a2
YZ
2293int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2294 struct btrfs_root *root,
2295 u64 bytenr, u64 num_bytes, u64 flags,
2296 int is_data)
2297{
2298 struct btrfs_delayed_extent_op *extent_op;
2299 int ret;
2300
2301 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
2302 if (!extent_op)
2303 return -ENOMEM;
2304
2305 extent_op->flags_to_set = flags;
2306 extent_op->update_flags = 1;
2307 extent_op->update_key = 0;
2308 extent_op->is_data = is_data ? 1 : 0;
2309
2310 ret = btrfs_add_delayed_extent_op(trans, bytenr, num_bytes, extent_op);
2311 if (ret)
2312 kfree(extent_op);
2313 return ret;
2314}
2315
2316static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2317 struct btrfs_root *root,
2318 struct btrfs_path *path,
2319 u64 objectid, u64 offset, u64 bytenr)
2320{
2321 struct btrfs_delayed_ref_head *head;
2322 struct btrfs_delayed_ref_node *ref;
2323 struct btrfs_delayed_data_ref *data_ref;
2324 struct btrfs_delayed_ref_root *delayed_refs;
2325 struct rb_node *node;
2326 int ret = 0;
2327
2328 ret = -ENOENT;
2329 delayed_refs = &trans->transaction->delayed_refs;
2330 spin_lock(&delayed_refs->lock);
2331 head = btrfs_find_delayed_ref_head(trans, bytenr);
2332 if (!head)
2333 goto out;
2334
2335 if (!mutex_trylock(&head->mutex)) {
2336 atomic_inc(&head->node.refs);
2337 spin_unlock(&delayed_refs->lock);
2338
2339 btrfs_release_path(root->fs_info->extent_root, path);
2340
2341 mutex_lock(&head->mutex);
2342 mutex_unlock(&head->mutex);
2343 btrfs_put_delayed_ref(&head->node);
2344 return -EAGAIN;
2345 }
2346
2347 node = rb_prev(&head->node.rb_node);
2348 if (!node)
2349 goto out_unlock;
2350
2351 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2352
2353 if (ref->bytenr != bytenr)
2354 goto out_unlock;
2355
2356 ret = 1;
2357 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY)
2358 goto out_unlock;
2359
2360 data_ref = btrfs_delayed_node_to_data_ref(ref);
2361
2362 node = rb_prev(node);
2363 if (node) {
2364 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2365 if (ref->bytenr == bytenr)
2366 goto out_unlock;
2367 }
2368
2369 if (data_ref->root != root->root_key.objectid ||
2370 data_ref->objectid != objectid || data_ref->offset != offset)
2371 goto out_unlock;
2372
2373 ret = 0;
2374out_unlock:
2375 mutex_unlock(&head->mutex);
2376out:
2377 spin_unlock(&delayed_refs->lock);
2378 return ret;
2379}
2380
2381static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2382 struct btrfs_root *root,
2383 struct btrfs_path *path,
2384 u64 objectid, u64 offset, u64 bytenr)
be20aa9d
CM
2385{
2386 struct btrfs_root *extent_root = root->fs_info->extent_root;
f321e491 2387 struct extent_buffer *leaf;
5d4f98a2
YZ
2388 struct btrfs_extent_data_ref *ref;
2389 struct btrfs_extent_inline_ref *iref;
2390 struct btrfs_extent_item *ei;
f321e491 2391 struct btrfs_key key;
5d4f98a2 2392 u32 item_size;
be20aa9d 2393 int ret;
925baedd 2394
be20aa9d 2395 key.objectid = bytenr;
31840ae1 2396 key.offset = (u64)-1;
f321e491 2397 key.type = BTRFS_EXTENT_ITEM_KEY;
be20aa9d 2398
be20aa9d
CM
2399 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2400 if (ret < 0)
2401 goto out;
2402 BUG_ON(ret == 0);
80ff3856
YZ
2403
2404 ret = -ENOENT;
2405 if (path->slots[0] == 0)
31840ae1 2406 goto out;
be20aa9d 2407
31840ae1 2408 path->slots[0]--;
f321e491 2409 leaf = path->nodes[0];
5d4f98a2 2410 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
be20aa9d 2411
5d4f98a2 2412 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
be20aa9d 2413 goto out;
f321e491 2414
5d4f98a2
YZ
2415 ret = 1;
2416 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2417#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2418 if (item_size < sizeof(*ei)) {
2419 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2420 goto out;
2421 }
2422#endif
2423 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
bd09835d 2424
5d4f98a2
YZ
2425 if (item_size != sizeof(*ei) +
2426 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2427 goto out;
be20aa9d 2428
5d4f98a2
YZ
2429 if (btrfs_extent_generation(leaf, ei) <=
2430 btrfs_root_last_snapshot(&root->root_item))
2431 goto out;
2432
2433 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2434 if (btrfs_extent_inline_ref_type(leaf, iref) !=
2435 BTRFS_EXTENT_DATA_REF_KEY)
2436 goto out;
2437
2438 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2439 if (btrfs_extent_refs(leaf, ei) !=
2440 btrfs_extent_data_ref_count(leaf, ref) ||
2441 btrfs_extent_data_ref_root(leaf, ref) !=
2442 root->root_key.objectid ||
2443 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
2444 btrfs_extent_data_ref_offset(leaf, ref) != offset)
2445 goto out;
2446
2447 ret = 0;
2448out:
2449 return ret;
2450}
2451
2452int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
2453 struct btrfs_root *root,
2454 u64 objectid, u64 offset, u64 bytenr)
2455{
2456 struct btrfs_path *path;
2457 int ret;
2458 int ret2;
2459
2460 path = btrfs_alloc_path();
2461 if (!path)
2462 return -ENOENT;
2463
2464 do {
2465 ret = check_committed_ref(trans, root, path, objectid,
2466 offset, bytenr);
2467 if (ret && ret != -ENOENT)
f321e491 2468 goto out;
80ff3856 2469
5d4f98a2
YZ
2470 ret2 = check_delayed_ref(trans, root, path, objectid,
2471 offset, bytenr);
2472 } while (ret2 == -EAGAIN);
2473
2474 if (ret2 && ret2 != -ENOENT) {
2475 ret = ret2;
2476 goto out;
f321e491 2477 }
5d4f98a2
YZ
2478
2479 if (ret != -ENOENT || ret2 != -ENOENT)
2480 ret = 0;
be20aa9d 2481out:
80ff3856 2482 btrfs_free_path(path);
f0486c68
YZ
2483 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
2484 WARN_ON(ret > 0);
f321e491 2485 return ret;
be20aa9d 2486}
c5739bba 2487
5d4f98a2 2488#if 0
31840ae1
ZY
2489int btrfs_cache_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2490 struct extent_buffer *buf, u32 nr_extents)
02217ed2 2491{
5f39d397 2492 struct btrfs_key key;
6407bf6d 2493 struct btrfs_file_extent_item *fi;
e4657689
ZY
2494 u64 root_gen;
2495 u32 nritems;
02217ed2 2496 int i;
db94535d 2497 int level;
31840ae1 2498 int ret = 0;
e4657689 2499 int shared = 0;
a28ec197 2500
3768f368 2501 if (!root->ref_cows)
a28ec197 2502 return 0;
5f39d397 2503
e4657689
ZY
2504 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
2505 shared = 0;
2506 root_gen = root->root_key.offset;
2507 } else {
2508 shared = 1;
2509 root_gen = trans->transid - 1;
2510 }
2511
db94535d 2512 level = btrfs_header_level(buf);
5f39d397 2513 nritems = btrfs_header_nritems(buf);
4a096752 2514
31840ae1 2515 if (level == 0) {
31153d81
YZ
2516 struct btrfs_leaf_ref *ref;
2517 struct btrfs_extent_info *info;
2518
31840ae1 2519 ref = btrfs_alloc_leaf_ref(root, nr_extents);
31153d81 2520 if (!ref) {
31840ae1 2521 ret = -ENOMEM;
31153d81
YZ
2522 goto out;
2523 }
2524
e4657689 2525 ref->root_gen = root_gen;
31153d81
YZ
2526 ref->bytenr = buf->start;
2527 ref->owner = btrfs_header_owner(buf);
2528 ref->generation = btrfs_header_generation(buf);
31840ae1 2529 ref->nritems = nr_extents;
31153d81 2530 info = ref->extents;
bcc63abb 2531
31840ae1 2532 for (i = 0; nr_extents > 0 && i < nritems; i++) {
31153d81
YZ
2533 u64 disk_bytenr;
2534 btrfs_item_key_to_cpu(buf, &key, i);
2535 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
2536 continue;
2537 fi = btrfs_item_ptr(buf, i,
2538 struct btrfs_file_extent_item);
2539 if (btrfs_file_extent_type(buf, fi) ==
2540 BTRFS_FILE_EXTENT_INLINE)
2541 continue;
2542 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
2543 if (disk_bytenr == 0)
2544 continue;
2545
2546 info->bytenr = disk_bytenr;
2547 info->num_bytes =
2548 btrfs_file_extent_disk_num_bytes(buf, fi);
2549 info->objectid = key.objectid;
2550 info->offset = key.offset;
2551 info++;
2552 }
2553
e4657689 2554 ret = btrfs_add_leaf_ref(root, ref, shared);
5b84e8d6
YZ
2555 if (ret == -EEXIST && shared) {
2556 struct btrfs_leaf_ref *old;
2557 old = btrfs_lookup_leaf_ref(root, ref->bytenr);
2558 BUG_ON(!old);
2559 btrfs_remove_leaf_ref(root, old);
2560 btrfs_free_leaf_ref(root, old);
2561 ret = btrfs_add_leaf_ref(root, ref, shared);
2562 }
31153d81 2563 WARN_ON(ret);
bcc63abb 2564 btrfs_free_leaf_ref(root, ref);
31153d81
YZ
2565 }
2566out:
31840ae1
ZY
2567 return ret;
2568}
2569
b7a9f29f
CM
2570/* when a block goes through cow, we update the reference counts of
2571 * everything that block points to. The internal pointers of the block
2572 * can be in just about any order, and it is likely to have clusters of
2573 * things that are close together and clusters of things that are not.
2574 *
2575 * To help reduce the seeks that come with updating all of these reference
2576 * counts, sort them by byte number before actual updates are done.
2577 *
2578 * struct refsort is used to match byte number to slot in the btree block.
2579 * we sort based on the byte number and then use the slot to actually
2580 * find the item.
bd56b302
CM
2581 *
2582 * struct refsort is smaller than strcut btrfs_item and smaller than
2583 * struct btrfs_key_ptr. Since we're currently limited to the page size
2584 * for a btree block, there's no way for a kmalloc of refsorts for a
2585 * single node to be bigger than a page.
b7a9f29f
CM
2586 */
2587struct refsort {
2588 u64 bytenr;
2589 u32 slot;
2590};
2591
2592/*
2593 * for passing into sort()
2594 */
2595static int refsort_cmp(const void *a_void, const void *b_void)
2596{
2597 const struct refsort *a = a_void;
2598 const struct refsort *b = b_void;
2599
2600 if (a->bytenr < b->bytenr)
2601 return -1;
2602 if (a->bytenr > b->bytenr)
2603 return 1;
2604 return 0;
2605}
5d4f98a2 2606#endif
b7a9f29f 2607
5d4f98a2 2608static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
b7a9f29f 2609 struct btrfs_root *root,
5d4f98a2
YZ
2610 struct extent_buffer *buf,
2611 int full_backref, int inc)
31840ae1
ZY
2612{
2613 u64 bytenr;
5d4f98a2
YZ
2614 u64 num_bytes;
2615 u64 parent;
31840ae1 2616 u64 ref_root;
31840ae1 2617 u32 nritems;
31840ae1
ZY
2618 struct btrfs_key key;
2619 struct btrfs_file_extent_item *fi;
2620 int i;
2621 int level;
2622 int ret = 0;
31840ae1 2623 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
5d4f98a2 2624 u64, u64, u64, u64, u64, u64);
31840ae1
ZY
2625
2626 ref_root = btrfs_header_owner(buf);
31840ae1
ZY
2627 nritems = btrfs_header_nritems(buf);
2628 level = btrfs_header_level(buf);
2629
5d4f98a2
YZ
2630 if (!root->ref_cows && level == 0)
2631 return 0;
31840ae1 2632
5d4f98a2
YZ
2633 if (inc)
2634 process_func = btrfs_inc_extent_ref;
2635 else
2636 process_func = btrfs_free_extent;
31840ae1 2637
5d4f98a2
YZ
2638 if (full_backref)
2639 parent = buf->start;
2640 else
2641 parent = 0;
2642
2643 for (i = 0; i < nritems; i++) {
31840ae1 2644 if (level == 0) {
5d4f98a2 2645 btrfs_item_key_to_cpu(buf, &key, i);
31840ae1
ZY
2646 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
2647 continue;
5d4f98a2 2648 fi = btrfs_item_ptr(buf, i,
31840ae1
ZY
2649 struct btrfs_file_extent_item);
2650 if (btrfs_file_extent_type(buf, fi) ==
2651 BTRFS_FILE_EXTENT_INLINE)
2652 continue;
2653 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
2654 if (bytenr == 0)
2655 continue;
5d4f98a2
YZ
2656
2657 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
2658 key.offset -= btrfs_file_extent_offset(buf, fi);
2659 ret = process_func(trans, root, bytenr, num_bytes,
2660 parent, ref_root, key.objectid,
2661 key.offset);
31840ae1
ZY
2662 if (ret)
2663 goto fail;
2664 } else {
5d4f98a2
YZ
2665 bytenr = btrfs_node_blockptr(buf, i);
2666 num_bytes = btrfs_level_size(root, level - 1);
2667 ret = process_func(trans, root, bytenr, num_bytes,
2668 parent, ref_root, level - 1, 0);
31840ae1
ZY
2669 if (ret)
2670 goto fail;
2671 }
2672 }
2673 return 0;
2674fail:
5d4f98a2
YZ
2675 BUG();
2676 return ret;
2677}
2678
2679int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2680 struct extent_buffer *buf, int full_backref)
2681{
2682 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
2683}
2684
2685int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2686 struct extent_buffer *buf, int full_backref)
2687{
2688 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
31840ae1
ZY
2689}
2690
9078a3e1
CM
2691static int write_one_cache_group(struct btrfs_trans_handle *trans,
2692 struct btrfs_root *root,
2693 struct btrfs_path *path,
2694 struct btrfs_block_group_cache *cache)
2695{
2696 int ret;
9078a3e1 2697 struct btrfs_root *extent_root = root->fs_info->extent_root;
5f39d397
CM
2698 unsigned long bi;
2699 struct extent_buffer *leaf;
9078a3e1 2700
9078a3e1 2701 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
54aa1f4d
CM
2702 if (ret < 0)
2703 goto fail;
9078a3e1 2704 BUG_ON(ret);
5f39d397
CM
2705
2706 leaf = path->nodes[0];
2707 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
2708 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
2709 btrfs_mark_buffer_dirty(leaf);
9078a3e1 2710 btrfs_release_path(extent_root, path);
54aa1f4d 2711fail:
9078a3e1
CM
2712 if (ret)
2713 return ret;
9078a3e1
CM
2714 return 0;
2715
2716}
2717
4a8c9a62
YZ
2718static struct btrfs_block_group_cache *
2719next_block_group(struct btrfs_root *root,
2720 struct btrfs_block_group_cache *cache)
2721{
2722 struct rb_node *node;
2723 spin_lock(&root->fs_info->block_group_cache_lock);
2724 node = rb_next(&cache->cache_node);
2725 btrfs_put_block_group(cache);
2726 if (node) {
2727 cache = rb_entry(node, struct btrfs_block_group_cache,
2728 cache_node);
11dfe35a 2729 btrfs_get_block_group(cache);
4a8c9a62
YZ
2730 } else
2731 cache = NULL;
2732 spin_unlock(&root->fs_info->block_group_cache_lock);
2733 return cache;
2734}
2735
0af3d00b
JB
2736static int cache_save_setup(struct btrfs_block_group_cache *block_group,
2737 struct btrfs_trans_handle *trans,
2738 struct btrfs_path *path)
2739{
2740 struct btrfs_root *root = block_group->fs_info->tree_root;
2741 struct inode *inode = NULL;
2742 u64 alloc_hint = 0;
2b20982e 2743 int dcs = BTRFS_DC_ERROR;
0af3d00b
JB
2744 int num_pages = 0;
2745 int retries = 0;
2746 int ret = 0;
2747
2748 /*
2749 * If this block group is smaller than 100 megs don't bother caching the
2750 * block group.
2751 */
2752 if (block_group->key.offset < (100 * 1024 * 1024)) {
2753 spin_lock(&block_group->lock);
2754 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
2755 spin_unlock(&block_group->lock);
2756 return 0;
2757 }
2758
2759again:
2760 inode = lookup_free_space_inode(root, block_group, path);
2761 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
2762 ret = PTR_ERR(inode);
2763 btrfs_release_path(root, path);
2764 goto out;
2765 }
2766
2767 if (IS_ERR(inode)) {
2768 BUG_ON(retries);
2769 retries++;
2770
2771 if (block_group->ro)
2772 goto out_free;
2773
2774 ret = create_free_space_inode(root, trans, block_group, path);
2775 if (ret)
2776 goto out_free;
2777 goto again;
2778 }
2779
2780 /*
2781 * We want to set the generation to 0, that way if anything goes wrong
2782 * from here on out we know not to trust this cache when we load up next
2783 * time.
2784 */
2785 BTRFS_I(inode)->generation = 0;
2786 ret = btrfs_update_inode(trans, root, inode);
2787 WARN_ON(ret);
2788
2789 if (i_size_read(inode) > 0) {
2790 ret = btrfs_truncate_free_space_cache(root, trans, path,
2791 inode);
2792 if (ret)
2793 goto out_put;
2794 }
2795
2796 spin_lock(&block_group->lock);
2797 if (block_group->cached != BTRFS_CACHE_FINISHED) {
2b20982e
JB
2798 /* We're not cached, don't bother trying to write stuff out */
2799 dcs = BTRFS_DC_WRITTEN;
0af3d00b
JB
2800 spin_unlock(&block_group->lock);
2801 goto out_put;
2802 }
2803 spin_unlock(&block_group->lock);
2804
2805 num_pages = (int)div64_u64(block_group->key.offset, 1024 * 1024 * 1024);
2806 if (!num_pages)
2807 num_pages = 1;
2808
2809 /*
2810 * Just to make absolutely sure we have enough space, we're going to
2811 * preallocate 12 pages worth of space for each block group. In
2812 * practice we ought to use at most 8, but we need extra space so we can
2813 * add our header and have a terminator between the extents and the
2814 * bitmaps.
2815 */
2816 num_pages *= 16;
2817 num_pages *= PAGE_CACHE_SIZE;
2818
2819 ret = btrfs_check_data_free_space(inode, num_pages);
2820 if (ret)
2821 goto out_put;
2822
2823 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
2824 num_pages, num_pages,
2825 &alloc_hint);
2b20982e
JB
2826 if (!ret)
2827 dcs = BTRFS_DC_SETUP;
0af3d00b
JB
2828 btrfs_free_reserved_data_space(inode, num_pages);
2829out_put:
2830 iput(inode);
2831out_free:
2832 btrfs_release_path(root, path);
2833out:
2834 spin_lock(&block_group->lock);
2b20982e 2835 block_group->disk_cache_state = dcs;
0af3d00b
JB
2836 spin_unlock(&block_group->lock);
2837
2838 return ret;
2839}
2840
96b5179d
CM
2841int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
2842 struct btrfs_root *root)
9078a3e1 2843{
4a8c9a62 2844 struct btrfs_block_group_cache *cache;
9078a3e1 2845 int err = 0;
9078a3e1 2846 struct btrfs_path *path;
96b5179d 2847 u64 last = 0;
9078a3e1
CM
2848
2849 path = btrfs_alloc_path();
2850 if (!path)
2851 return -ENOMEM;
2852
0af3d00b
JB
2853again:
2854 while (1) {
2855 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2856 while (cache) {
2857 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
2858 break;
2859 cache = next_block_group(root, cache);
2860 }
2861 if (!cache) {
2862 if (last == 0)
2863 break;
2864 last = 0;
2865 continue;
2866 }
2867 err = cache_save_setup(cache, trans, path);
2868 last = cache->key.objectid + cache->key.offset;
2869 btrfs_put_block_group(cache);
2870 }
2871
d397712b 2872 while (1) {
4a8c9a62
YZ
2873 if (last == 0) {
2874 err = btrfs_run_delayed_refs(trans, root,
2875 (unsigned long)-1);
2876 BUG_ON(err);
0f9dd46c 2877 }
54aa1f4d 2878
4a8c9a62
YZ
2879 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2880 while (cache) {
0af3d00b
JB
2881 if (cache->disk_cache_state == BTRFS_DC_CLEAR) {
2882 btrfs_put_block_group(cache);
2883 goto again;
2884 }
2885
4a8c9a62
YZ
2886 if (cache->dirty)
2887 break;
2888 cache = next_block_group(root, cache);
2889 }
2890 if (!cache) {
2891 if (last == 0)
2892 break;
2893 last = 0;
2894 continue;
2895 }
0f9dd46c 2896
0cb59c99
JB
2897 if (cache->disk_cache_state == BTRFS_DC_SETUP)
2898 cache->disk_cache_state = BTRFS_DC_NEED_WRITE;
e8569813 2899 cache->dirty = 0;
4a8c9a62 2900 last = cache->key.objectid + cache->key.offset;
0f9dd46c 2901
4a8c9a62
YZ
2902 err = write_one_cache_group(trans, root, path, cache);
2903 BUG_ON(err);
2904 btrfs_put_block_group(cache);
9078a3e1 2905 }
4a8c9a62 2906
0cb59c99
JB
2907 while (1) {
2908 /*
2909 * I don't think this is needed since we're just marking our
2910 * preallocated extent as written, but just in case it can't
2911 * hurt.
2912 */
2913 if (last == 0) {
2914 err = btrfs_run_delayed_refs(trans, root,
2915 (unsigned long)-1);
2916 BUG_ON(err);
2917 }
2918
2919 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2920 while (cache) {
2921 /*
2922 * Really this shouldn't happen, but it could if we
2923 * couldn't write the entire preallocated extent and
2924 * splitting the extent resulted in a new block.
2925 */
2926 if (cache->dirty) {
2927 btrfs_put_block_group(cache);
2928 goto again;
2929 }
2930 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
2931 break;
2932 cache = next_block_group(root, cache);
2933 }
2934 if (!cache) {
2935 if (last == 0)
2936 break;
2937 last = 0;
2938 continue;
2939 }
2940
2941 btrfs_write_out_cache(root, trans, cache, path);
2942
2943 /*
2944 * If we didn't have an error then the cache state is still
2945 * NEED_WRITE, so we can set it to WRITTEN.
2946 */
2947 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
2948 cache->disk_cache_state = BTRFS_DC_WRITTEN;
2949 last = cache->key.objectid + cache->key.offset;
2950 btrfs_put_block_group(cache);
2951 }
2952
9078a3e1 2953 btrfs_free_path(path);
4a8c9a62 2954 return 0;
9078a3e1
CM
2955}
2956
d2fb3437
YZ
2957int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
2958{
2959 struct btrfs_block_group_cache *block_group;
2960 int readonly = 0;
2961
2962 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
2963 if (!block_group || block_group->ro)
2964 readonly = 1;
2965 if (block_group)
fa9c0d79 2966 btrfs_put_block_group(block_group);
d2fb3437
YZ
2967 return readonly;
2968}
2969
593060d7
CM
2970static int update_space_info(struct btrfs_fs_info *info, u64 flags,
2971 u64 total_bytes, u64 bytes_used,
2972 struct btrfs_space_info **space_info)
2973{
2974 struct btrfs_space_info *found;
b742bb82
YZ
2975 int i;
2976 int factor;
2977
2978 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
2979 BTRFS_BLOCK_GROUP_RAID10))
2980 factor = 2;
2981 else
2982 factor = 1;
593060d7
CM
2983
2984 found = __find_space_info(info, flags);
2985 if (found) {
25179201 2986 spin_lock(&found->lock);
593060d7 2987 found->total_bytes += total_bytes;
89a55897 2988 found->disk_total += total_bytes * factor;
593060d7 2989 found->bytes_used += bytes_used;
b742bb82 2990 found->disk_used += bytes_used * factor;
8f18cf13 2991 found->full = 0;
25179201 2992 spin_unlock(&found->lock);
593060d7
CM
2993 *space_info = found;
2994 return 0;
2995 }
c146afad 2996 found = kzalloc(sizeof(*found), GFP_NOFS);
593060d7
CM
2997 if (!found)
2998 return -ENOMEM;
2999
b742bb82
YZ
3000 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
3001 INIT_LIST_HEAD(&found->block_groups[i]);
80eb234a 3002 init_rwsem(&found->groups_sem);
0f9dd46c 3003 spin_lock_init(&found->lock);
b742bb82
YZ
3004 found->flags = flags & (BTRFS_BLOCK_GROUP_DATA |
3005 BTRFS_BLOCK_GROUP_SYSTEM |
3006 BTRFS_BLOCK_GROUP_METADATA);
593060d7 3007 found->total_bytes = total_bytes;
89a55897 3008 found->disk_total = total_bytes * factor;
593060d7 3009 found->bytes_used = bytes_used;
b742bb82 3010 found->disk_used = bytes_used * factor;
593060d7 3011 found->bytes_pinned = 0;
e8569813 3012 found->bytes_reserved = 0;
c146afad 3013 found->bytes_readonly = 0;
f0486c68 3014 found->bytes_may_use = 0;
593060d7 3015 found->full = 0;
0ef3e66b 3016 found->force_alloc = 0;
593060d7 3017 *space_info = found;
4184ea7f 3018 list_add_rcu(&found->list, &info->space_info);
817d52f8 3019 atomic_set(&found->caching_threads, 0);
593060d7
CM
3020 return 0;
3021}
3022
8790d502
CM
3023static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3024{
3025 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
611f0e00 3026 BTRFS_BLOCK_GROUP_RAID1 |
321aecc6 3027 BTRFS_BLOCK_GROUP_RAID10 |
611f0e00 3028 BTRFS_BLOCK_GROUP_DUP);
8790d502
CM
3029 if (extra_flags) {
3030 if (flags & BTRFS_BLOCK_GROUP_DATA)
3031 fs_info->avail_data_alloc_bits |= extra_flags;
3032 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3033 fs_info->avail_metadata_alloc_bits |= extra_flags;
3034 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3035 fs_info->avail_system_alloc_bits |= extra_flags;
3036 }
3037}
593060d7 3038
2b82032c 3039u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
ec44a35c 3040{
cd02dca5
CM
3041 /*
3042 * we add in the count of missing devices because we want
3043 * to make sure that any RAID levels on a degraded FS
3044 * continue to be honored.
3045 */
3046 u64 num_devices = root->fs_info->fs_devices->rw_devices +
3047 root->fs_info->fs_devices->missing_devices;
a061fc8d
CM
3048
3049 if (num_devices == 1)
3050 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0);
3051 if (num_devices < 4)
3052 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
3053
ec44a35c
CM
3054 if ((flags & BTRFS_BLOCK_GROUP_DUP) &&
3055 (flags & (BTRFS_BLOCK_GROUP_RAID1 |
a061fc8d 3056 BTRFS_BLOCK_GROUP_RAID10))) {
ec44a35c 3057 flags &= ~BTRFS_BLOCK_GROUP_DUP;
a061fc8d 3058 }
ec44a35c
CM
3059
3060 if ((flags & BTRFS_BLOCK_GROUP_RAID1) &&
a061fc8d 3061 (flags & BTRFS_BLOCK_GROUP_RAID10)) {
ec44a35c 3062 flags &= ~BTRFS_BLOCK_GROUP_RAID1;
a061fc8d 3063 }
ec44a35c
CM
3064
3065 if ((flags & BTRFS_BLOCK_GROUP_RAID0) &&
3066 ((flags & BTRFS_BLOCK_GROUP_RAID1) |
3067 (flags & BTRFS_BLOCK_GROUP_RAID10) |
3068 (flags & BTRFS_BLOCK_GROUP_DUP)))
3069 flags &= ~BTRFS_BLOCK_GROUP_RAID0;
3070 return flags;
3071}
3072
b742bb82 3073static u64 get_alloc_profile(struct btrfs_root *root, u64 flags)
6a63209f 3074{
b742bb82
YZ
3075 if (flags & BTRFS_BLOCK_GROUP_DATA)
3076 flags |= root->fs_info->avail_data_alloc_bits &
3077 root->fs_info->data_alloc_profile;
3078 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3079 flags |= root->fs_info->avail_system_alloc_bits &
3080 root->fs_info->system_alloc_profile;
3081 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3082 flags |= root->fs_info->avail_metadata_alloc_bits &
3083 root->fs_info->metadata_alloc_profile;
3084 return btrfs_reduce_alloc_profile(root, flags);
6a63209f
JB
3085}
3086
6d07bcec 3087u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
9ed74f2d 3088{
b742bb82 3089 u64 flags;
9ed74f2d 3090
b742bb82
YZ
3091 if (data)
3092 flags = BTRFS_BLOCK_GROUP_DATA;
3093 else if (root == root->fs_info->chunk_root)
3094 flags = BTRFS_BLOCK_GROUP_SYSTEM;
9ed74f2d 3095 else
b742bb82 3096 flags = BTRFS_BLOCK_GROUP_METADATA;
9ed74f2d 3097
b742bb82 3098 return get_alloc_profile(root, flags);
6a63209f 3099}
9ed74f2d 3100
6a63209f
JB
3101void btrfs_set_inode_space_info(struct btrfs_root *root, struct inode *inode)
3102{
6a63209f 3103 BTRFS_I(inode)->space_info = __find_space_info(root->fs_info,
f0486c68 3104 BTRFS_BLOCK_GROUP_DATA);
9ed74f2d
JB
3105}
3106
6a63209f 3107/*
6a63209f
JB
3108 * This will check the space that the inode allocates from to make sure we have
3109 * enough space for bytes.
6a63209f 3110 */
0ca1f7ce 3111int btrfs_check_data_free_space(struct inode *inode, u64 bytes)
6a63209f 3112{
6a63209f 3113 struct btrfs_space_info *data_sinfo;
0ca1f7ce 3114 struct btrfs_root *root = BTRFS_I(inode)->root;
ab6e2410 3115 u64 used;
0af3d00b 3116 int ret = 0, committed = 0, alloc_chunk = 1;
6a63209f 3117
6a63209f
JB
3118 /* make sure bytes are sectorsize aligned */
3119 bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
6a63209f 3120
0af3d00b
JB
3121 if (root == root->fs_info->tree_root) {
3122 alloc_chunk = 0;
3123 committed = 1;
3124 }
3125
6a63209f 3126 data_sinfo = BTRFS_I(inode)->space_info;
33b4d47f
CM
3127 if (!data_sinfo)
3128 goto alloc;
9ed74f2d 3129
6a63209f
JB
3130again:
3131 /* make sure we have enough space to handle the data first */
3132 spin_lock(&data_sinfo->lock);
8929ecfa
YZ
3133 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3134 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3135 data_sinfo->bytes_may_use;
ab6e2410
JB
3136
3137 if (used + bytes > data_sinfo->total_bytes) {
4e06bdd6 3138 struct btrfs_trans_handle *trans;
9ed74f2d 3139
6a63209f
JB
3140 /*
3141 * if we don't have enough free bytes in this space then we need
3142 * to alloc a new chunk.
3143 */
0af3d00b 3144 if (!data_sinfo->full && alloc_chunk) {
6a63209f 3145 u64 alloc_target;
9ed74f2d 3146
6a63209f
JB
3147 data_sinfo->force_alloc = 1;
3148 spin_unlock(&data_sinfo->lock);
33b4d47f 3149alloc:
6a63209f 3150 alloc_target = btrfs_get_alloc_profile(root, 1);
a22285a6
YZ
3151 trans = btrfs_join_transaction(root, 1);
3152 if (IS_ERR(trans))
3153 return PTR_ERR(trans);
9ed74f2d 3154
6a63209f
JB
3155 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
3156 bytes + 2 * 1024 * 1024,
3157 alloc_target, 0);
3158 btrfs_end_transaction(trans, root);
d52a5b5f
MX
3159 if (ret < 0) {
3160 if (ret != -ENOSPC)
3161 return ret;
3162 else
3163 goto commit_trans;
3164 }
9ed74f2d 3165
33b4d47f
CM
3166 if (!data_sinfo) {
3167 btrfs_set_inode_space_info(root, inode);
3168 data_sinfo = BTRFS_I(inode)->space_info;
3169 }
6a63209f
JB
3170 goto again;
3171 }
3172 spin_unlock(&data_sinfo->lock);
6a63209f 3173
4e06bdd6 3174 /* commit the current transaction and try again */
d52a5b5f 3175commit_trans:
dd7e0b7b 3176 if (!committed && !root->fs_info->open_ioctl_trans) {
4e06bdd6
JB
3177 committed = 1;
3178 trans = btrfs_join_transaction(root, 1);
a22285a6
YZ
3179 if (IS_ERR(trans))
3180 return PTR_ERR(trans);
4e06bdd6
JB
3181 ret = btrfs_commit_transaction(trans, root);
3182 if (ret)
3183 return ret;
3184 goto again;
3185 }
9ed74f2d 3186
933b585f 3187#if 0 /* I hope we never need this code again, just in case */
8929ecfa
YZ
3188 printk(KERN_ERR "no space left, need %llu, %llu bytes_used, "
3189 "%llu bytes_reserved, " "%llu bytes_pinned, "
3190 "%llu bytes_readonly, %llu may use %llu total\n",
3191 (unsigned long long)bytes,
21380931
JB
3192 (unsigned long long)data_sinfo->bytes_used,
3193 (unsigned long long)data_sinfo->bytes_reserved,
3194 (unsigned long long)data_sinfo->bytes_pinned,
3195 (unsigned long long)data_sinfo->bytes_readonly,
3196 (unsigned long long)data_sinfo->bytes_may_use,
3197 (unsigned long long)data_sinfo->total_bytes);
933b585f 3198#endif
6a63209f
JB
3199 return -ENOSPC;
3200 }
3201 data_sinfo->bytes_may_use += bytes;
3202 BTRFS_I(inode)->reserved_bytes += bytes;
3203 spin_unlock(&data_sinfo->lock);
6a63209f 3204
9ed74f2d 3205 return 0;
9ed74f2d 3206}
6a63209f 3207
6a63209f 3208/*
0ca1f7ce
YZ
3209 * called when we are clearing an delalloc extent from the
3210 * inode's io_tree or there was an error for whatever reason
3211 * after calling btrfs_check_data_free_space
6a63209f 3212 */
0ca1f7ce 3213void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
e3ccfa98 3214{
0ca1f7ce 3215 struct btrfs_root *root = BTRFS_I(inode)->root;
6a63209f 3216 struct btrfs_space_info *data_sinfo;
e3ccfa98 3217
6a63209f
JB
3218 /* make sure bytes are sectorsize aligned */
3219 bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
e3ccfa98 3220
6a63209f
JB
3221 data_sinfo = BTRFS_I(inode)->space_info;
3222 spin_lock(&data_sinfo->lock);
3223 data_sinfo->bytes_may_use -= bytes;
3224 BTRFS_I(inode)->reserved_bytes -= bytes;
3225 spin_unlock(&data_sinfo->lock);
e3ccfa98
JB
3226}
3227
97e728d4 3228static void force_metadata_allocation(struct btrfs_fs_info *info)
e3ccfa98 3229{
97e728d4
JB
3230 struct list_head *head = &info->space_info;
3231 struct btrfs_space_info *found;
e3ccfa98 3232
97e728d4
JB
3233 rcu_read_lock();
3234 list_for_each_entry_rcu(found, head, list) {
3235 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
3236 found->force_alloc = 1;
e3ccfa98 3237 }
97e728d4 3238 rcu_read_unlock();
e3ccfa98
JB
3239}
3240
e5bc2458
CM
3241static int should_alloc_chunk(struct btrfs_root *root,
3242 struct btrfs_space_info *sinfo, u64 alloc_bytes)
32c00aff 3243{
424499db 3244 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
e5bc2458 3245 u64 thresh;
e3ccfa98 3246
424499db
YZ
3247 if (sinfo->bytes_used + sinfo->bytes_reserved +
3248 alloc_bytes + 256 * 1024 * 1024 < num_bytes)
3249 return 0;
e3ccfa98 3250
424499db
YZ
3251 if (sinfo->bytes_used + sinfo->bytes_reserved +
3252 alloc_bytes < div_factor(num_bytes, 8))
3253 return 0;
32c00aff 3254
e5bc2458
CM
3255 thresh = btrfs_super_total_bytes(&root->fs_info->super_copy);
3256 thresh = max_t(u64, 256 * 1024 * 1024, div_factor_fine(thresh, 5));
3257
3258 if (num_bytes > thresh && sinfo->bytes_used < div_factor(num_bytes, 3))
14ed0ca6
JB
3259 return 0;
3260
424499db 3261 return 1;
32c00aff
JB
3262}
3263
6324fbf3
CM
3264static int do_chunk_alloc(struct btrfs_trans_handle *trans,
3265 struct btrfs_root *extent_root, u64 alloc_bytes,
0ef3e66b 3266 u64 flags, int force)
9ed74f2d 3267{
6324fbf3 3268 struct btrfs_space_info *space_info;
97e728d4 3269 struct btrfs_fs_info *fs_info = extent_root->fs_info;
9ed74f2d 3270 int ret = 0;
9ed74f2d 3271
97e728d4 3272 mutex_lock(&fs_info->chunk_mutex);
9ed74f2d 3273
2b82032c 3274 flags = btrfs_reduce_alloc_profile(extent_root, flags);
ec44a35c 3275
6324fbf3 3276 space_info = __find_space_info(extent_root->fs_info, flags);
593060d7
CM
3277 if (!space_info) {
3278 ret = update_space_info(extent_root->fs_info, flags,
3279 0, 0, &space_info);
3280 BUG_ON(ret);
9ed74f2d 3281 }
6324fbf3 3282 BUG_ON(!space_info);
9ed74f2d 3283
25179201 3284 spin_lock(&space_info->lock);
9ed74f2d 3285 if (space_info->force_alloc)
0ef3e66b 3286 force = 1;
25179201
JB
3287 if (space_info->full) {
3288 spin_unlock(&space_info->lock);
925baedd 3289 goto out;
9ed74f2d
JB
3290 }
3291
e5bc2458
CM
3292 if (!force && !should_alloc_chunk(extent_root, space_info,
3293 alloc_bytes)) {
25179201 3294 spin_unlock(&space_info->lock);
925baedd 3295 goto out;
9ed74f2d 3296 }
25179201 3297 spin_unlock(&space_info->lock);
9ed74f2d 3298
67377734
JB
3299 /*
3300 * If we have mixed data/metadata chunks we want to make sure we keep
3301 * allocating mixed chunks instead of individual chunks.
3302 */
3303 if (btrfs_mixed_space_info(space_info))
3304 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
3305
97e728d4
JB
3306 /*
3307 * if we're doing a data chunk, go ahead and make sure that
3308 * we keep a reasonable number of metadata chunks allocated in the
3309 * FS as well.
3310 */
9ed74f2d 3311 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
97e728d4
JB
3312 fs_info->data_chunk_allocations++;
3313 if (!(fs_info->data_chunk_allocations %
3314 fs_info->metadata_ratio))
3315 force_metadata_allocation(fs_info);
9ed74f2d
JB
3316 }
3317
2b82032c 3318 ret = btrfs_alloc_chunk(trans, extent_root, flags);
9ed74f2d 3319 spin_lock(&space_info->lock);
9ed74f2d 3320 if (ret)
6324fbf3 3321 space_info->full = 1;
424499db
YZ
3322 else
3323 ret = 1;
9ed74f2d
JB
3324 space_info->force_alloc = 0;
3325 spin_unlock(&space_info->lock);
9ed74f2d 3326out:
c146afad 3327 mutex_unlock(&extent_root->fs_info->chunk_mutex);
0f9dd46c 3328 return ret;
6324fbf3 3329}
9ed74f2d 3330
9ed74f2d 3331/*
5da9d01b 3332 * shrink metadata reservation for delalloc
9ed74f2d 3333 */
5da9d01b 3334static int shrink_delalloc(struct btrfs_trans_handle *trans,
0019f10d 3335 struct btrfs_root *root, u64 to_reclaim, int sync)
5da9d01b 3336{
0ca1f7ce 3337 struct btrfs_block_rsv *block_rsv;
0019f10d 3338 struct btrfs_space_info *space_info;
5da9d01b
YZ
3339 u64 reserved;
3340 u64 max_reclaim;
3341 u64 reclaimed = 0;
b1953bce 3342 long time_left;
bf9022e0 3343 int nr_pages = (2 * 1024 * 1024) >> PAGE_CACHE_SHIFT;
b1953bce 3344 int loops = 0;
36e39c40 3345 unsigned long progress;
5da9d01b 3346
0ca1f7ce 3347 block_rsv = &root->fs_info->delalloc_block_rsv;
0019f10d 3348 space_info = block_rsv->space_info;
bf9022e0
CM
3349
3350 smp_mb();
0019f10d 3351 reserved = space_info->bytes_reserved;
36e39c40 3352 progress = space_info->reservation_progress;
5da9d01b
YZ
3353
3354 if (reserved == 0)
3355 return 0;
3356
3357 max_reclaim = min(reserved, to_reclaim);
3358
b1953bce 3359 while (loops < 1024) {
bf9022e0
CM
3360 /* have the flusher threads jump in and do some IO */
3361 smp_mb();
3362 nr_pages = min_t(unsigned long, nr_pages,
3363 root->fs_info->delalloc_bytes >> PAGE_CACHE_SHIFT);
3364 writeback_inodes_sb_nr_if_idle(root->fs_info->sb, nr_pages);
5da9d01b 3365
0019f10d 3366 spin_lock(&space_info->lock);
36e39c40 3367 if (reserved > space_info->bytes_reserved)
0019f10d
JB
3368 reclaimed += reserved - space_info->bytes_reserved;
3369 reserved = space_info->bytes_reserved;
3370 spin_unlock(&space_info->lock);
5da9d01b 3371
36e39c40
CM
3372 loops++;
3373
5da9d01b
YZ
3374 if (reserved == 0 || reclaimed >= max_reclaim)
3375 break;
3376
3377 if (trans && trans->transaction->blocked)
3378 return -EAGAIN;
bf9022e0 3379
36e39c40 3380 time_left = schedule_timeout_interruptible(1);
b1953bce
JB
3381
3382 /* We were interrupted, exit */
3383 if (time_left)
3384 break;
3385
36e39c40
CM
3386 /* we've kicked the IO a few times, if anything has been freed,
3387 * exit. There is no sense in looping here for a long time
3388 * when we really need to commit the transaction, or there are
3389 * just too many writers without enough free space
3390 */
3391
3392 if (loops > 3) {
3393 smp_mb();
3394 if (progress != space_info->reservation_progress)
3395 break;
3396 }
bf9022e0 3397
5da9d01b
YZ
3398 }
3399 return reclaimed >= to_reclaim;
3400}
3401
8bb8ab2e
JB
3402/*
3403 * Retries tells us how many times we've called reserve_metadata_bytes. The
3404 * idea is if this is the first call (retries == 0) then we will add to our
3405 * reserved count if we can't make the allocation in order to hold our place
3406 * while we go and try and free up space. That way for retries > 1 we don't try
3407 * and add space, we just check to see if the amount of unused space is >= the
3408 * total space, meaning that our reservation is valid.
3409 *
3410 * However if we don't intend to retry this reservation, pass -1 as retries so
3411 * that it short circuits this logic.
3412 */
3413static int reserve_metadata_bytes(struct btrfs_trans_handle *trans,
3414 struct btrfs_root *root,
3415 struct btrfs_block_rsv *block_rsv,
3416 u64 orig_bytes, int flush)
9ed74f2d 3417{
f0486c68 3418 struct btrfs_space_info *space_info = block_rsv->space_info;
8bb8ab2e
JB
3419 u64 unused;
3420 u64 num_bytes = orig_bytes;
3421 int retries = 0;
3422 int ret = 0;
3423 bool reserved = false;
38227933 3424 bool committed = false;
9ed74f2d 3425
8bb8ab2e
JB
3426again:
3427 ret = -ENOSPC;
3428 if (reserved)
3429 num_bytes = 0;
9ed74f2d 3430
8bb8ab2e
JB
3431 spin_lock(&space_info->lock);
3432 unused = space_info->bytes_used + space_info->bytes_reserved +
3433 space_info->bytes_pinned + space_info->bytes_readonly +
3434 space_info->bytes_may_use;
9ed74f2d 3435
8bb8ab2e
JB
3436 /*
3437 * The idea here is that we've not already over-reserved the block group
3438 * then we can go ahead and save our reservation first and then start
3439 * flushing if we need to. Otherwise if we've already overcommitted
3440 * lets start flushing stuff first and then come back and try to make
3441 * our reservation.
3442 */
3443 if (unused <= space_info->total_bytes) {
6f334348 3444 unused = space_info->total_bytes - unused;
8bb8ab2e
JB
3445 if (unused >= num_bytes) {
3446 if (!reserved)
3447 space_info->bytes_reserved += orig_bytes;
3448 ret = 0;
3449 } else {
3450 /*
3451 * Ok set num_bytes to orig_bytes since we aren't
3452 * overocmmitted, this way we only try and reclaim what
3453 * we need.
3454 */
3455 num_bytes = orig_bytes;
3456 }
3457 } else {
3458 /*
3459 * Ok we're over committed, set num_bytes to the overcommitted
3460 * amount plus the amount of bytes that we need for this
3461 * reservation.
3462 */
3463 num_bytes = unused - space_info->total_bytes +
3464 (orig_bytes * (retries + 1));
3465 }
9ed74f2d 3466
8bb8ab2e
JB
3467 /*
3468 * Couldn't make our reservation, save our place so while we're trying
3469 * to reclaim space we can actually use it instead of somebody else
3470 * stealing it from us.
3471 */
3472 if (ret && !reserved) {
3473 space_info->bytes_reserved += orig_bytes;
3474 reserved = true;
3475 }
9ed74f2d 3476
f0486c68 3477 spin_unlock(&space_info->lock);
9ed74f2d 3478
8bb8ab2e
JB
3479 if (!ret)
3480 return 0;
9ed74f2d 3481
8bb8ab2e
JB
3482 if (!flush)
3483 goto out;
f0486c68 3484
8bb8ab2e
JB
3485 /*
3486 * We do synchronous shrinking since we don't actually unreserve
3487 * metadata until after the IO is completed.
3488 */
3489 ret = shrink_delalloc(trans, root, num_bytes, 1);
3490 if (ret > 0)
3491 return 0;
3492 else if (ret < 0)
3493 goto out;
f0486c68 3494
8bb8ab2e
JB
3495 /*
3496 * So if we were overcommitted it's possible that somebody else flushed
3497 * out enough space and we simply didn't have enough space to reclaim,
3498 * so go back around and try again.
3499 */
3500 if (retries < 2) {
3501 retries++;
3502 goto again;
3503 }
f0486c68
YZ
3504
3505 spin_lock(&space_info->lock);
8bb8ab2e
JB
3506 /*
3507 * Not enough space to be reclaimed, don't bother committing the
3508 * transaction.
3509 */
3510 if (space_info->bytes_pinned < orig_bytes)
3511 ret = -ENOSPC;
3512 spin_unlock(&space_info->lock);
3513 if (ret)
3514 goto out;
f0486c68 3515
8bb8ab2e 3516 ret = -EAGAIN;
38227933 3517 if (trans || committed)
8bb8ab2e 3518 goto out;
f0486c68 3519
8bb8ab2e
JB
3520 ret = -ENOSPC;
3521 trans = btrfs_join_transaction(root, 1);
3522 if (IS_ERR(trans))
3523 goto out;
3524 ret = btrfs_commit_transaction(trans, root);
38227933
JB
3525 if (!ret) {
3526 trans = NULL;
3527 committed = true;
8bb8ab2e 3528 goto again;
38227933 3529 }
8bb8ab2e
JB
3530
3531out:
3532 if (reserved) {
3533 spin_lock(&space_info->lock);
3534 space_info->bytes_reserved -= orig_bytes;
3535 spin_unlock(&space_info->lock);
f0486c68 3536 }
4e06bdd6 3537
f0486c68
YZ
3538 return ret;
3539}
3540
3541static struct btrfs_block_rsv *get_block_rsv(struct btrfs_trans_handle *trans,
3542 struct btrfs_root *root)
3543{
3544 struct btrfs_block_rsv *block_rsv;
3545 if (root->ref_cows)
3546 block_rsv = trans->block_rsv;
3547 else
3548 block_rsv = root->block_rsv;
3549
3550 if (!block_rsv)
3551 block_rsv = &root->fs_info->empty_block_rsv;
3552
3553 return block_rsv;
3554}
3555
3556static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
3557 u64 num_bytes)
3558{
3559 int ret = -ENOSPC;
3560 spin_lock(&block_rsv->lock);
3561 if (block_rsv->reserved >= num_bytes) {
3562 block_rsv->reserved -= num_bytes;
3563 if (block_rsv->reserved < block_rsv->size)
3564 block_rsv->full = 0;
3565 ret = 0;
3566 }
3567 spin_unlock(&block_rsv->lock);
3568 return ret;
3569}
3570
3571static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
3572 u64 num_bytes, int update_size)
3573{
3574 spin_lock(&block_rsv->lock);
3575 block_rsv->reserved += num_bytes;
3576 if (update_size)
3577 block_rsv->size += num_bytes;
3578 else if (block_rsv->reserved >= block_rsv->size)
3579 block_rsv->full = 1;
3580 spin_unlock(&block_rsv->lock);
3581}
3582
3583void block_rsv_release_bytes(struct btrfs_block_rsv *block_rsv,
3584 struct btrfs_block_rsv *dest, u64 num_bytes)
3585{
3586 struct btrfs_space_info *space_info = block_rsv->space_info;
3587
3588 spin_lock(&block_rsv->lock);
3589 if (num_bytes == (u64)-1)
3590 num_bytes = block_rsv->size;
3591 block_rsv->size -= num_bytes;
3592 if (block_rsv->reserved >= block_rsv->size) {
3593 num_bytes = block_rsv->reserved - block_rsv->size;
3594 block_rsv->reserved = block_rsv->size;
3595 block_rsv->full = 1;
3596 } else {
3597 num_bytes = 0;
3598 }
3599 spin_unlock(&block_rsv->lock);
3600
3601 if (num_bytes > 0) {
3602 if (dest) {
e9e22899
JB
3603 spin_lock(&dest->lock);
3604 if (!dest->full) {
3605 u64 bytes_to_add;
3606
3607 bytes_to_add = dest->size - dest->reserved;
3608 bytes_to_add = min(num_bytes, bytes_to_add);
3609 dest->reserved += bytes_to_add;
3610 if (dest->reserved >= dest->size)
3611 dest->full = 1;
3612 num_bytes -= bytes_to_add;
3613 }
3614 spin_unlock(&dest->lock);
3615 }
3616 if (num_bytes) {
f0486c68
YZ
3617 spin_lock(&space_info->lock);
3618 space_info->bytes_reserved -= num_bytes;
36e39c40 3619 space_info->reservation_progress++;
f0486c68 3620 spin_unlock(&space_info->lock);
4e06bdd6 3621 }
9ed74f2d 3622 }
f0486c68 3623}
4e06bdd6 3624
f0486c68
YZ
3625static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
3626 struct btrfs_block_rsv *dst, u64 num_bytes)
3627{
3628 int ret;
9ed74f2d 3629
f0486c68
YZ
3630 ret = block_rsv_use_bytes(src, num_bytes);
3631 if (ret)
3632 return ret;
9ed74f2d 3633
f0486c68 3634 block_rsv_add_bytes(dst, num_bytes, 1);
9ed74f2d
JB
3635 return 0;
3636}
3637
f0486c68 3638void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv)
9ed74f2d 3639{
f0486c68
YZ
3640 memset(rsv, 0, sizeof(*rsv));
3641 spin_lock_init(&rsv->lock);
3642 atomic_set(&rsv->usage, 1);
3643 rsv->priority = 6;
3644 INIT_LIST_HEAD(&rsv->list);
3645}
3646
3647struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root)
3648{
3649 struct btrfs_block_rsv *block_rsv;
3650 struct btrfs_fs_info *fs_info = root->fs_info;
9ed74f2d 3651
f0486c68
YZ
3652 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
3653 if (!block_rsv)
3654 return NULL;
9ed74f2d 3655
f0486c68 3656 btrfs_init_block_rsv(block_rsv);
f0486c68
YZ
3657 block_rsv->space_info = __find_space_info(fs_info,
3658 BTRFS_BLOCK_GROUP_METADATA);
f0486c68
YZ
3659 return block_rsv;
3660}
9ed74f2d 3661
f0486c68
YZ
3662void btrfs_free_block_rsv(struct btrfs_root *root,
3663 struct btrfs_block_rsv *rsv)
3664{
3665 if (rsv && atomic_dec_and_test(&rsv->usage)) {
3666 btrfs_block_rsv_release(root, rsv, (u64)-1);
3667 if (!rsv->durable)
3668 kfree(rsv);
3669 }
9ed74f2d
JB
3670}
3671
3672/*
f0486c68
YZ
3673 * make the block_rsv struct be able to capture freed space.
3674 * the captured space will re-add to the the block_rsv struct
3675 * after transaction commit
9ed74f2d 3676 */
f0486c68
YZ
3677void btrfs_add_durable_block_rsv(struct btrfs_fs_info *fs_info,
3678 struct btrfs_block_rsv *block_rsv)
9ed74f2d 3679{
f0486c68
YZ
3680 block_rsv->durable = 1;
3681 mutex_lock(&fs_info->durable_block_rsv_mutex);
3682 list_add_tail(&block_rsv->list, &fs_info->durable_block_rsv_list);
3683 mutex_unlock(&fs_info->durable_block_rsv_mutex);
3684}
9ed74f2d 3685
f0486c68
YZ
3686int btrfs_block_rsv_add(struct btrfs_trans_handle *trans,
3687 struct btrfs_root *root,
3688 struct btrfs_block_rsv *block_rsv,
8bb8ab2e 3689 u64 num_bytes)
f0486c68
YZ
3690{
3691 int ret;
9ed74f2d 3692
f0486c68
YZ
3693 if (num_bytes == 0)
3694 return 0;
8bb8ab2e
JB
3695
3696 ret = reserve_metadata_bytes(trans, root, block_rsv, num_bytes, 1);
f0486c68
YZ
3697 if (!ret) {
3698 block_rsv_add_bytes(block_rsv, num_bytes, 1);
3699 return 0;
3700 }
9ed74f2d 3701
f0486c68
YZ
3702 return ret;
3703}
9ed74f2d 3704
f0486c68
YZ
3705int btrfs_block_rsv_check(struct btrfs_trans_handle *trans,
3706 struct btrfs_root *root,
3707 struct btrfs_block_rsv *block_rsv,
3708 u64 min_reserved, int min_factor)
3709{
3710 u64 num_bytes = 0;
3711 int commit_trans = 0;
3712 int ret = -ENOSPC;
9ed74f2d 3713
f0486c68
YZ
3714 if (!block_rsv)
3715 return 0;
9ed74f2d 3716
f0486c68
YZ
3717 spin_lock(&block_rsv->lock);
3718 if (min_factor > 0)
3719 num_bytes = div_factor(block_rsv->size, min_factor);
3720 if (min_reserved > num_bytes)
3721 num_bytes = min_reserved;
9ed74f2d 3722
f0486c68
YZ
3723 if (block_rsv->reserved >= num_bytes) {
3724 ret = 0;
3725 } else {
3726 num_bytes -= block_rsv->reserved;
3727 if (block_rsv->durable &&
3728 block_rsv->freed[0] + block_rsv->freed[1] >= num_bytes)
3729 commit_trans = 1;
3730 }
3731 spin_unlock(&block_rsv->lock);
3732 if (!ret)
3733 return 0;
3734
3735 if (block_rsv->refill_used) {
8bb8ab2e
JB
3736 ret = reserve_metadata_bytes(trans, root, block_rsv,
3737 num_bytes, 0);
f0486c68
YZ
3738 if (!ret) {
3739 block_rsv_add_bytes(block_rsv, num_bytes, 0);
3740 return 0;
4e06bdd6 3741 }
f0486c68 3742 }
9ed74f2d 3743
f0486c68
YZ
3744 if (commit_trans) {
3745 if (trans)
3746 return -EAGAIN;
3747
3748 trans = btrfs_join_transaction(root, 1);
3749 BUG_ON(IS_ERR(trans));
3750 ret = btrfs_commit_transaction(trans, root);
3751 return 0;
6a63209f 3752 }
9ed74f2d 3753
f0486c68
YZ
3754 return -ENOSPC;
3755}
3756
3757int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
3758 struct btrfs_block_rsv *dst_rsv,
3759 u64 num_bytes)
3760{
3761 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3762}
3763
3764void btrfs_block_rsv_release(struct btrfs_root *root,
3765 struct btrfs_block_rsv *block_rsv,
3766 u64 num_bytes)
3767{
3768 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
3769 if (global_rsv->full || global_rsv == block_rsv ||
3770 block_rsv->space_info != global_rsv->space_info)
3771 global_rsv = NULL;
3772 block_rsv_release_bytes(block_rsv, global_rsv, num_bytes);
6a63209f
JB
3773}
3774
3775/*
8929ecfa
YZ
3776 * helper to calculate size of global block reservation.
3777 * the desired value is sum of space used by extent tree,
3778 * checksum tree and root tree
6a63209f 3779 */
8929ecfa 3780static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
6a63209f 3781{
8929ecfa
YZ
3782 struct btrfs_space_info *sinfo;
3783 u64 num_bytes;
3784 u64 meta_used;
3785 u64 data_used;
3786 int csum_size = btrfs_super_csum_size(&fs_info->super_copy);
3787#if 0
3788 /*
3789 * per tree used space accounting can be inaccuracy, so we
3790 * can't rely on it.
3791 */
3792 spin_lock(&fs_info->extent_root->accounting_lock);
3793 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item);
3794 spin_unlock(&fs_info->extent_root->accounting_lock);
6a63209f 3795
8929ecfa
YZ
3796 spin_lock(&fs_info->csum_root->accounting_lock);
3797 num_bytes += btrfs_root_used(&fs_info->csum_root->root_item);
3798 spin_unlock(&fs_info->csum_root->accounting_lock);
6a63209f 3799
8929ecfa
YZ
3800 spin_lock(&fs_info->tree_root->accounting_lock);
3801 num_bytes += btrfs_root_used(&fs_info->tree_root->root_item);
3802 spin_unlock(&fs_info->tree_root->accounting_lock);
3803#endif
3804 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
3805 spin_lock(&sinfo->lock);
3806 data_used = sinfo->bytes_used;
3807 spin_unlock(&sinfo->lock);
33b4d47f 3808
8929ecfa
YZ
3809 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
3810 spin_lock(&sinfo->lock);
6d48755d
JB
3811 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
3812 data_used = 0;
8929ecfa
YZ
3813 meta_used = sinfo->bytes_used;
3814 spin_unlock(&sinfo->lock);
ab6e2410 3815
8929ecfa
YZ
3816 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
3817 csum_size * 2;
3818 num_bytes += div64_u64(data_used + meta_used, 50);
4e06bdd6 3819
8929ecfa
YZ
3820 if (num_bytes * 3 > meta_used)
3821 num_bytes = div64_u64(meta_used, 3);
ab6e2410 3822
8929ecfa
YZ
3823 return ALIGN(num_bytes, fs_info->extent_root->leafsize << 10);
3824}
6a63209f 3825
8929ecfa
YZ
3826static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
3827{
3828 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
3829 struct btrfs_space_info *sinfo = block_rsv->space_info;
3830 u64 num_bytes;
6a63209f 3831
8929ecfa 3832 num_bytes = calc_global_metadata_size(fs_info);
33b4d47f 3833
8929ecfa
YZ
3834 spin_lock(&block_rsv->lock);
3835 spin_lock(&sinfo->lock);
4e06bdd6 3836
8929ecfa 3837 block_rsv->size = num_bytes;
4e06bdd6 3838
8929ecfa 3839 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
6d48755d
JB
3840 sinfo->bytes_reserved + sinfo->bytes_readonly +
3841 sinfo->bytes_may_use;
8929ecfa
YZ
3842
3843 if (sinfo->total_bytes > num_bytes) {
3844 num_bytes = sinfo->total_bytes - num_bytes;
3845 block_rsv->reserved += num_bytes;
3846 sinfo->bytes_reserved += num_bytes;
6a63209f 3847 }
6a63209f 3848
8929ecfa
YZ
3849 if (block_rsv->reserved >= block_rsv->size) {
3850 num_bytes = block_rsv->reserved - block_rsv->size;
3851 sinfo->bytes_reserved -= num_bytes;
36e39c40 3852 sinfo->reservation_progress++;
8929ecfa
YZ
3853 block_rsv->reserved = block_rsv->size;
3854 block_rsv->full = 1;
3855 }
3856#if 0
3857 printk(KERN_INFO"global block rsv size %llu reserved %llu\n",
3858 block_rsv->size, block_rsv->reserved);
3859#endif
3860 spin_unlock(&sinfo->lock);
3861 spin_unlock(&block_rsv->lock);
6a63209f
JB
3862}
3863
f0486c68 3864static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
6a63209f 3865{
f0486c68 3866 struct btrfs_space_info *space_info;
6a63209f 3867
f0486c68
YZ
3868 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
3869 fs_info->chunk_block_rsv.space_info = space_info;
3870 fs_info->chunk_block_rsv.priority = 10;
6a63209f 3871
f0486c68 3872 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
8929ecfa
YZ
3873 fs_info->global_block_rsv.space_info = space_info;
3874 fs_info->global_block_rsv.priority = 10;
3875 fs_info->global_block_rsv.refill_used = 1;
3876 fs_info->delalloc_block_rsv.space_info = space_info;
f0486c68
YZ
3877 fs_info->trans_block_rsv.space_info = space_info;
3878 fs_info->empty_block_rsv.space_info = space_info;
3879 fs_info->empty_block_rsv.priority = 10;
3880
8929ecfa
YZ
3881 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
3882 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
3883 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
3884 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
f0486c68 3885 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
8929ecfa
YZ
3886
3887 btrfs_add_durable_block_rsv(fs_info, &fs_info->global_block_rsv);
3888
3889 btrfs_add_durable_block_rsv(fs_info, &fs_info->delalloc_block_rsv);
3890
3891 update_global_block_rsv(fs_info);
6a63209f
JB
3892}
3893
8929ecfa 3894static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
6a63209f 3895{
8929ecfa
YZ
3896 block_rsv_release_bytes(&fs_info->global_block_rsv, NULL, (u64)-1);
3897 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
3898 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
3899 WARN_ON(fs_info->trans_block_rsv.size > 0);
3900 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
3901 WARN_ON(fs_info->chunk_block_rsv.size > 0);
3902 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
f0486c68 3903}
6a63209f 3904
a22285a6
YZ
3905static u64 calc_trans_metadata_size(struct btrfs_root *root, int num_items)
3906{
3907 return (root->leafsize + root->nodesize * (BTRFS_MAX_LEVEL - 1)) *
3908 3 * num_items;
3909}
6a63209f 3910
a22285a6
YZ
3911int btrfs_trans_reserve_metadata(struct btrfs_trans_handle *trans,
3912 struct btrfs_root *root,
8bb8ab2e 3913 int num_items)
a22285a6
YZ
3914{
3915 u64 num_bytes;
3916 int ret;
6a63209f 3917
a22285a6
YZ
3918 if (num_items == 0 || root->fs_info->chunk_root == root)
3919 return 0;
6a63209f 3920
a22285a6
YZ
3921 num_bytes = calc_trans_metadata_size(root, num_items);
3922 ret = btrfs_block_rsv_add(trans, root, &root->fs_info->trans_block_rsv,
8bb8ab2e 3923 num_bytes);
a22285a6
YZ
3924 if (!ret) {
3925 trans->bytes_reserved += num_bytes;
3926 trans->block_rsv = &root->fs_info->trans_block_rsv;
3927 }
3928 return ret;
6a63209f
JB
3929}
3930
a22285a6
YZ
3931void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
3932 struct btrfs_root *root)
6a63209f 3933{
a22285a6
YZ
3934 if (!trans->bytes_reserved)
3935 return;
6a63209f 3936
a22285a6
YZ
3937 BUG_ON(trans->block_rsv != &root->fs_info->trans_block_rsv);
3938 btrfs_block_rsv_release(root, trans->block_rsv,
3939 trans->bytes_reserved);
3940 trans->bytes_reserved = 0;
3941}
6a63209f 3942
d68fc57b
YZ
3943int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
3944 struct inode *inode)
3945{
3946 struct btrfs_root *root = BTRFS_I(inode)->root;
3947 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
3948 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
3949
3950 /*
3951 * one for deleting orphan item, one for updating inode and
3952 * two for calling btrfs_truncate_inode_items.
3953 *
3954 * btrfs_truncate_inode_items is a delete operation, it frees
3955 * more space than it uses in most cases. So two units of
3956 * metadata space should be enough for calling it many times.
3957 * If all of the metadata space is used, we can commit
3958 * transaction and use space it freed.
3959 */
3960 u64 num_bytes = calc_trans_metadata_size(root, 4);
3961 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
6a63209f
JB
3962}
3963
d68fc57b 3964void btrfs_orphan_release_metadata(struct inode *inode)
97e728d4 3965{
d68fc57b
YZ
3966 struct btrfs_root *root = BTRFS_I(inode)->root;
3967 u64 num_bytes = calc_trans_metadata_size(root, 4);
3968 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
3969}
97e728d4 3970
a22285a6
YZ
3971int btrfs_snap_reserve_metadata(struct btrfs_trans_handle *trans,
3972 struct btrfs_pending_snapshot *pending)
3973{
3974 struct btrfs_root *root = pending->root;
3975 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
3976 struct btrfs_block_rsv *dst_rsv = &pending->block_rsv;
3977 /*
3978 * two for root back/forward refs, two for directory entries
3979 * and one for root of the snapshot.
3980 */
3981 u64 num_bytes = calc_trans_metadata_size(root, 5);
3982 dst_rsv->space_info = src_rsv->space_info;
3983 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
97e728d4
JB
3984}
3985
0ca1f7ce 3986static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes)
6324fbf3 3987{
0ca1f7ce
YZ
3988 return num_bytes >>= 3;
3989}
c146afad 3990
0ca1f7ce
YZ
3991int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
3992{
3993 struct btrfs_root *root = BTRFS_I(inode)->root;
3994 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
3995 u64 to_reserve;
3996 int nr_extents;
57a45ced 3997 int reserved_extents;
0ca1f7ce 3998 int ret;
6324fbf3 3999
0ca1f7ce
YZ
4000 if (btrfs_transaction_in_commit(root->fs_info))
4001 schedule_timeout(1);
ec44a35c 4002
0ca1f7ce 4003 num_bytes = ALIGN(num_bytes, root->sectorsize);
8bb8ab2e 4004
0ca1f7ce 4005 nr_extents = atomic_read(&BTRFS_I(inode)->outstanding_extents) + 1;
57a45ced
JB
4006 reserved_extents = atomic_read(&BTRFS_I(inode)->reserved_extents);
4007
4008 if (nr_extents > reserved_extents) {
4009 nr_extents -= reserved_extents;
0ca1f7ce
YZ
4010 to_reserve = calc_trans_metadata_size(root, nr_extents);
4011 } else {
4012 nr_extents = 0;
4013 to_reserve = 0;
593060d7 4014 }
57a45ced 4015
0ca1f7ce 4016 to_reserve += calc_csum_metadata_size(inode, num_bytes);
8bb8ab2e
JB
4017 ret = reserve_metadata_bytes(NULL, root, block_rsv, to_reserve, 1);
4018 if (ret)
0ca1f7ce 4019 return ret;
6324fbf3 4020
57a45ced 4021 atomic_add(nr_extents, &BTRFS_I(inode)->reserved_extents);
0ca1f7ce 4022 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
25179201 4023
0ca1f7ce
YZ
4024 block_rsv_add_bytes(block_rsv, to_reserve, 1);
4025
4026 if (block_rsv->size > 512 * 1024 * 1024)
0019f10d 4027 shrink_delalloc(NULL, root, to_reserve, 0);
0ca1f7ce
YZ
4028
4029 return 0;
4030}
4031
4032void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
4033{
4034 struct btrfs_root *root = BTRFS_I(inode)->root;
4035 u64 to_free;
4036 int nr_extents;
57a45ced 4037 int reserved_extents;
0ca1f7ce
YZ
4038
4039 num_bytes = ALIGN(num_bytes, root->sectorsize);
4040 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
3c14874a 4041 WARN_ON(atomic_read(&BTRFS_I(inode)->outstanding_extents) < 0);
0ca1f7ce 4042
57a45ced
JB
4043 reserved_extents = atomic_read(&BTRFS_I(inode)->reserved_extents);
4044 do {
4045 int old, new;
4046
4047 nr_extents = atomic_read(&BTRFS_I(inode)->outstanding_extents);
4048 if (nr_extents >= reserved_extents) {
4049 nr_extents = 0;
4050 break;
4051 }
4052 old = reserved_extents;
4053 nr_extents = reserved_extents - nr_extents;
4054 new = reserved_extents - nr_extents;
4055 old = atomic_cmpxchg(&BTRFS_I(inode)->reserved_extents,
4056 reserved_extents, new);
4057 if (likely(old == reserved_extents))
4058 break;
4059 reserved_extents = old;
4060 } while (1);
97e728d4 4061
0ca1f7ce
YZ
4062 to_free = calc_csum_metadata_size(inode, num_bytes);
4063 if (nr_extents > 0)
4064 to_free += calc_trans_metadata_size(root, nr_extents);
4065
4066 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
4067 to_free);
4068}
4069
4070int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
4071{
4072 int ret;
4073
4074 ret = btrfs_check_data_free_space(inode, num_bytes);
d397712b 4075 if (ret)
0ca1f7ce
YZ
4076 return ret;
4077
4078 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
4079 if (ret) {
4080 btrfs_free_reserved_data_space(inode, num_bytes);
4081 return ret;
4082 }
4083
4084 return 0;
4085}
4086
4087void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
4088{
4089 btrfs_delalloc_release_metadata(inode, num_bytes);
4090 btrfs_free_reserved_data_space(inode, num_bytes);
6324fbf3
CM
4091}
4092
9078a3e1
CM
4093static int update_block_group(struct btrfs_trans_handle *trans,
4094 struct btrfs_root *root,
f0486c68 4095 u64 bytenr, u64 num_bytes, int alloc)
9078a3e1 4096{
0af3d00b 4097 struct btrfs_block_group_cache *cache = NULL;
9078a3e1 4098 struct btrfs_fs_info *info = root->fs_info;
db94535d 4099 u64 total = num_bytes;
9078a3e1 4100 u64 old_val;
db94535d 4101 u64 byte_in_group;
0af3d00b 4102 int factor;
3e1ad54f 4103
5d4f98a2
YZ
4104 /* block accounting for super block */
4105 spin_lock(&info->delalloc_lock);
4106 old_val = btrfs_super_bytes_used(&info->super_copy);
4107 if (alloc)
4108 old_val += num_bytes;
4109 else
4110 old_val -= num_bytes;
4111 btrfs_set_super_bytes_used(&info->super_copy, old_val);
5d4f98a2
YZ
4112 spin_unlock(&info->delalloc_lock);
4113
d397712b 4114 while (total) {
db94535d 4115 cache = btrfs_lookup_block_group(info, bytenr);
f3465ca4 4116 if (!cache)
9078a3e1 4117 return -1;
b742bb82
YZ
4118 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
4119 BTRFS_BLOCK_GROUP_RAID1 |
4120 BTRFS_BLOCK_GROUP_RAID10))
4121 factor = 2;
4122 else
4123 factor = 1;
9d66e233
JB
4124 /*
4125 * If this block group has free space cache written out, we
4126 * need to make sure to load it if we are removing space. This
4127 * is because we need the unpinning stage to actually add the
4128 * space back to the block group, otherwise we will leak space.
4129 */
4130 if (!alloc && cache->cached == BTRFS_CACHE_NO)
b8399dee 4131 cache_block_group(cache, trans, NULL, 1);
0af3d00b 4132
db94535d
CM
4133 byte_in_group = bytenr - cache->key.objectid;
4134 WARN_ON(byte_in_group > cache->key.offset);
9078a3e1 4135
25179201 4136 spin_lock(&cache->space_info->lock);
c286ac48 4137 spin_lock(&cache->lock);
0af3d00b
JB
4138
4139 if (btrfs_super_cache_generation(&info->super_copy) != 0 &&
4140 cache->disk_cache_state < BTRFS_DC_CLEAR)
4141 cache->disk_cache_state = BTRFS_DC_CLEAR;
4142
0f9dd46c 4143 cache->dirty = 1;
9078a3e1 4144 old_val = btrfs_block_group_used(&cache->item);
db94535d 4145 num_bytes = min(total, cache->key.offset - byte_in_group);
cd1bc465 4146 if (alloc) {
db94535d 4147 old_val += num_bytes;
11833d66
YZ
4148 btrfs_set_block_group_used(&cache->item, old_val);
4149 cache->reserved -= num_bytes;
11833d66 4150 cache->space_info->bytes_reserved -= num_bytes;
36e39c40 4151 cache->space_info->reservation_progress++;
b742bb82
YZ
4152 cache->space_info->bytes_used += num_bytes;
4153 cache->space_info->disk_used += num_bytes * factor;
c286ac48 4154 spin_unlock(&cache->lock);
25179201 4155 spin_unlock(&cache->space_info->lock);
cd1bc465 4156 } else {
db94535d 4157 old_val -= num_bytes;
c286ac48 4158 btrfs_set_block_group_used(&cache->item, old_val);
f0486c68
YZ
4159 cache->pinned += num_bytes;
4160 cache->space_info->bytes_pinned += num_bytes;
6324fbf3 4161 cache->space_info->bytes_used -= num_bytes;
b742bb82 4162 cache->space_info->disk_used -= num_bytes * factor;
c286ac48 4163 spin_unlock(&cache->lock);
25179201 4164 spin_unlock(&cache->space_info->lock);
1f3c79a2 4165
f0486c68
YZ
4166 set_extent_dirty(info->pinned_extents,
4167 bytenr, bytenr + num_bytes - 1,
4168 GFP_NOFS | __GFP_NOFAIL);
cd1bc465 4169 }
fa9c0d79 4170 btrfs_put_block_group(cache);
db94535d
CM
4171 total -= num_bytes;
4172 bytenr += num_bytes;
9078a3e1
CM
4173 }
4174 return 0;
4175}
6324fbf3 4176
a061fc8d
CM
4177static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
4178{
0f9dd46c 4179 struct btrfs_block_group_cache *cache;
d2fb3437 4180 u64 bytenr;
0f9dd46c
JB
4181
4182 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
4183 if (!cache)
a061fc8d 4184 return 0;
0f9dd46c 4185
d2fb3437 4186 bytenr = cache->key.objectid;
fa9c0d79 4187 btrfs_put_block_group(cache);
d2fb3437
YZ
4188
4189 return bytenr;
a061fc8d
CM
4190}
4191
f0486c68
YZ
4192static int pin_down_extent(struct btrfs_root *root,
4193 struct btrfs_block_group_cache *cache,
4194 u64 bytenr, u64 num_bytes, int reserved)
324ae4df 4195{
11833d66
YZ
4196 spin_lock(&cache->space_info->lock);
4197 spin_lock(&cache->lock);
4198 cache->pinned += num_bytes;
4199 cache->space_info->bytes_pinned += num_bytes;
4200 if (reserved) {
4201 cache->reserved -= num_bytes;
4202 cache->space_info->bytes_reserved -= num_bytes;
36e39c40 4203 cache->space_info->reservation_progress++;
11833d66
YZ
4204 }
4205 spin_unlock(&cache->lock);
4206 spin_unlock(&cache->space_info->lock);
68b38550 4207
f0486c68
YZ
4208 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
4209 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
4210 return 0;
4211}
68b38550 4212
f0486c68
YZ
4213/*
4214 * this function must be called within transaction
4215 */
4216int btrfs_pin_extent(struct btrfs_root *root,
4217 u64 bytenr, u64 num_bytes, int reserved)
4218{
4219 struct btrfs_block_group_cache *cache;
68b38550 4220
f0486c68
YZ
4221 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
4222 BUG_ON(!cache);
4223
4224 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
4225
4226 btrfs_put_block_group(cache);
11833d66
YZ
4227 return 0;
4228}
4229
f0486c68
YZ
4230/*
4231 * update size of reserved extents. this function may return -EAGAIN
4232 * if 'reserve' is true or 'sinfo' is false.
4233 */
b4d00d56
LD
4234int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
4235 u64 num_bytes, int reserve, int sinfo)
11833d66 4236{
f0486c68
YZ
4237 int ret = 0;
4238 if (sinfo) {
4239 struct btrfs_space_info *space_info = cache->space_info;
4240 spin_lock(&space_info->lock);
4241 spin_lock(&cache->lock);
4242 if (reserve) {
4243 if (cache->ro) {
4244 ret = -EAGAIN;
4245 } else {
4246 cache->reserved += num_bytes;
4247 space_info->bytes_reserved += num_bytes;
4248 }
4249 } else {
4250 if (cache->ro)
4251 space_info->bytes_readonly += num_bytes;
4252 cache->reserved -= num_bytes;
4253 space_info->bytes_reserved -= num_bytes;
36e39c40 4254 space_info->reservation_progress++;
f0486c68
YZ
4255 }
4256 spin_unlock(&cache->lock);
4257 spin_unlock(&space_info->lock);
11833d66 4258 } else {
f0486c68
YZ
4259 spin_lock(&cache->lock);
4260 if (cache->ro) {
4261 ret = -EAGAIN;
4262 } else {
4263 if (reserve)
4264 cache->reserved += num_bytes;
4265 else
4266 cache->reserved -= num_bytes;
4267 }
4268 spin_unlock(&cache->lock);
324ae4df 4269 }
f0486c68 4270 return ret;
324ae4df 4271}
9078a3e1 4272
11833d66
YZ
4273int btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
4274 struct btrfs_root *root)
e8569813 4275{
e8569813 4276 struct btrfs_fs_info *fs_info = root->fs_info;
11833d66
YZ
4277 struct btrfs_caching_control *next;
4278 struct btrfs_caching_control *caching_ctl;
4279 struct btrfs_block_group_cache *cache;
e8569813 4280
11833d66 4281 down_write(&fs_info->extent_commit_sem);
25179201 4282
11833d66
YZ
4283 list_for_each_entry_safe(caching_ctl, next,
4284 &fs_info->caching_block_groups, list) {
4285 cache = caching_ctl->block_group;
4286 if (block_group_cache_done(cache)) {
4287 cache->last_byte_to_unpin = (u64)-1;
4288 list_del_init(&caching_ctl->list);
4289 put_caching_control(caching_ctl);
e8569813 4290 } else {
11833d66 4291 cache->last_byte_to_unpin = caching_ctl->progress;
e8569813 4292 }
e8569813 4293 }
11833d66
YZ
4294
4295 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
4296 fs_info->pinned_extents = &fs_info->freed_extents[1];
4297 else
4298 fs_info->pinned_extents = &fs_info->freed_extents[0];
4299
4300 up_write(&fs_info->extent_commit_sem);
8929ecfa
YZ
4301
4302 update_global_block_rsv(fs_info);
e8569813
ZY
4303 return 0;
4304}
4305
11833d66 4306static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
ccd467d6 4307{
11833d66
YZ
4308 struct btrfs_fs_info *fs_info = root->fs_info;
4309 struct btrfs_block_group_cache *cache = NULL;
4310 u64 len;
ccd467d6 4311
11833d66
YZ
4312 while (start <= end) {
4313 if (!cache ||
4314 start >= cache->key.objectid + cache->key.offset) {
4315 if (cache)
4316 btrfs_put_block_group(cache);
4317 cache = btrfs_lookup_block_group(fs_info, start);
4318 BUG_ON(!cache);
4319 }
4320
4321 len = cache->key.objectid + cache->key.offset - start;
4322 len = min(len, end + 1 - start);
4323
4324 if (start < cache->last_byte_to_unpin) {
4325 len = min(len, cache->last_byte_to_unpin - start);
4326 btrfs_add_free_space(cache, start, len);
4327 }
4328
f0486c68
YZ
4329 start += len;
4330
11833d66
YZ
4331 spin_lock(&cache->space_info->lock);
4332 spin_lock(&cache->lock);
4333 cache->pinned -= len;
4334 cache->space_info->bytes_pinned -= len;
f0486c68
YZ
4335 if (cache->ro) {
4336 cache->space_info->bytes_readonly += len;
4337 } else if (cache->reserved_pinned > 0) {
4338 len = min(len, cache->reserved_pinned);
4339 cache->reserved_pinned -= len;
4340 cache->space_info->bytes_reserved += len;
4341 }
11833d66
YZ
4342 spin_unlock(&cache->lock);
4343 spin_unlock(&cache->space_info->lock);
ccd467d6 4344 }
11833d66
YZ
4345
4346 if (cache)
4347 btrfs_put_block_group(cache);
ccd467d6
CM
4348 return 0;
4349}
4350
4351int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
11833d66 4352 struct btrfs_root *root)
a28ec197 4353{
11833d66
YZ
4354 struct btrfs_fs_info *fs_info = root->fs_info;
4355 struct extent_io_tree *unpin;
f0486c68
YZ
4356 struct btrfs_block_rsv *block_rsv;
4357 struct btrfs_block_rsv *next_rsv;
1a5bc167
CM
4358 u64 start;
4359 u64 end;
f0486c68 4360 int idx;
a28ec197 4361 int ret;
a28ec197 4362
11833d66
YZ
4363 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
4364 unpin = &fs_info->freed_extents[1];
4365 else
4366 unpin = &fs_info->freed_extents[0];
4367
d397712b 4368 while (1) {
1a5bc167
CM
4369 ret = find_first_extent_bit(unpin, 0, &start, &end,
4370 EXTENT_DIRTY);
4371 if (ret)
a28ec197 4372 break;
1f3c79a2
LH
4373
4374 ret = btrfs_discard_extent(root, start, end + 1 - start);
4375
1a5bc167 4376 clear_extent_dirty(unpin, start, end, GFP_NOFS);
11833d66 4377 unpin_extent_range(root, start, end);
b9473439 4378 cond_resched();
a28ec197 4379 }
817d52f8 4380
f0486c68
YZ
4381 mutex_lock(&fs_info->durable_block_rsv_mutex);
4382 list_for_each_entry_safe(block_rsv, next_rsv,
4383 &fs_info->durable_block_rsv_list, list) {
444528b3 4384
f0486c68
YZ
4385 idx = trans->transid & 0x1;
4386 if (block_rsv->freed[idx] > 0) {
4387 block_rsv_add_bytes(block_rsv,
4388 block_rsv->freed[idx], 0);
4389 block_rsv->freed[idx] = 0;
4390 }
4391 if (atomic_read(&block_rsv->usage) == 0) {
4392 btrfs_block_rsv_release(root, block_rsv, (u64)-1);
31840ae1 4393
f0486c68
YZ
4394 if (block_rsv->freed[0] == 0 &&
4395 block_rsv->freed[1] == 0) {
4396 list_del_init(&block_rsv->list);
4397 kfree(block_rsv);
4398 }
4399 } else {
4400 btrfs_block_rsv_release(root, block_rsv, 0);
8ef97622 4401 }
f4b9aa8d 4402 }
f0486c68 4403 mutex_unlock(&fs_info->durable_block_rsv_mutex);
31840ae1 4404
e20d96d6
CM
4405 return 0;
4406}
4407
5d4f98a2
YZ
4408static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
4409 struct btrfs_root *root,
4410 u64 bytenr, u64 num_bytes, u64 parent,
4411 u64 root_objectid, u64 owner_objectid,
4412 u64 owner_offset, int refs_to_drop,
4413 struct btrfs_delayed_extent_op *extent_op)
a28ec197 4414{
e2fa7227 4415 struct btrfs_key key;
5d4f98a2 4416 struct btrfs_path *path;
1261ec42
CM
4417 struct btrfs_fs_info *info = root->fs_info;
4418 struct btrfs_root *extent_root = info->extent_root;
5f39d397 4419 struct extent_buffer *leaf;
5d4f98a2
YZ
4420 struct btrfs_extent_item *ei;
4421 struct btrfs_extent_inline_ref *iref;
a28ec197 4422 int ret;
5d4f98a2 4423 int is_data;
952fccac
CM
4424 int extent_slot = 0;
4425 int found_extent = 0;
4426 int num_to_del = 1;
5d4f98a2
YZ
4427 u32 item_size;
4428 u64 refs;
037e6390 4429
5caf2a00 4430 path = btrfs_alloc_path();
54aa1f4d
CM
4431 if (!path)
4432 return -ENOMEM;
5f26f772 4433
3c12ac72 4434 path->reada = 1;
b9473439 4435 path->leave_spinning = 1;
5d4f98a2
YZ
4436
4437 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
4438 BUG_ON(!is_data && refs_to_drop != 1);
4439
4440 ret = lookup_extent_backref(trans, extent_root, path, &iref,
4441 bytenr, num_bytes, parent,
4442 root_objectid, owner_objectid,
4443 owner_offset);
7bb86316 4444 if (ret == 0) {
952fccac 4445 extent_slot = path->slots[0];
5d4f98a2
YZ
4446 while (extent_slot >= 0) {
4447 btrfs_item_key_to_cpu(path->nodes[0], &key,
952fccac 4448 extent_slot);
5d4f98a2 4449 if (key.objectid != bytenr)
952fccac 4450 break;
5d4f98a2
YZ
4451 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
4452 key.offset == num_bytes) {
952fccac
CM
4453 found_extent = 1;
4454 break;
4455 }
4456 if (path->slots[0] - extent_slot > 5)
4457 break;
5d4f98a2 4458 extent_slot--;
952fccac 4459 }
5d4f98a2
YZ
4460#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4461 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
4462 if (found_extent && item_size < sizeof(*ei))
4463 found_extent = 0;
4464#endif
31840ae1 4465 if (!found_extent) {
5d4f98a2 4466 BUG_ON(iref);
56bec294 4467 ret = remove_extent_backref(trans, extent_root, path,
5d4f98a2
YZ
4468 NULL, refs_to_drop,
4469 is_data);
31840ae1
ZY
4470 BUG_ON(ret);
4471 btrfs_release_path(extent_root, path);
b9473439 4472 path->leave_spinning = 1;
5d4f98a2
YZ
4473
4474 key.objectid = bytenr;
4475 key.type = BTRFS_EXTENT_ITEM_KEY;
4476 key.offset = num_bytes;
4477
31840ae1
ZY
4478 ret = btrfs_search_slot(trans, extent_root,
4479 &key, path, -1, 1);
f3465ca4
JB
4480 if (ret) {
4481 printk(KERN_ERR "umm, got %d back from search"
d397712b
CM
4482 ", was looking for %llu\n", ret,
4483 (unsigned long long)bytenr);
f3465ca4
JB
4484 btrfs_print_leaf(extent_root, path->nodes[0]);
4485 }
31840ae1
ZY
4486 BUG_ON(ret);
4487 extent_slot = path->slots[0];
4488 }
7bb86316
CM
4489 } else {
4490 btrfs_print_leaf(extent_root, path->nodes[0]);
4491 WARN_ON(1);
d397712b 4492 printk(KERN_ERR "btrfs unable to find ref byte nr %llu "
5d4f98a2 4493 "parent %llu root %llu owner %llu offset %llu\n",
d397712b 4494 (unsigned long long)bytenr,
56bec294 4495 (unsigned long long)parent,
d397712b 4496 (unsigned long long)root_objectid,
5d4f98a2
YZ
4497 (unsigned long long)owner_objectid,
4498 (unsigned long long)owner_offset);
7bb86316 4499 }
5f39d397
CM
4500
4501 leaf = path->nodes[0];
5d4f98a2
YZ
4502 item_size = btrfs_item_size_nr(leaf, extent_slot);
4503#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4504 if (item_size < sizeof(*ei)) {
4505 BUG_ON(found_extent || extent_slot != path->slots[0]);
4506 ret = convert_extent_item_v0(trans, extent_root, path,
4507 owner_objectid, 0);
4508 BUG_ON(ret < 0);
4509
4510 btrfs_release_path(extent_root, path);
4511 path->leave_spinning = 1;
4512
4513 key.objectid = bytenr;
4514 key.type = BTRFS_EXTENT_ITEM_KEY;
4515 key.offset = num_bytes;
4516
4517 ret = btrfs_search_slot(trans, extent_root, &key, path,
4518 -1, 1);
4519 if (ret) {
4520 printk(KERN_ERR "umm, got %d back from search"
4521 ", was looking for %llu\n", ret,
4522 (unsigned long long)bytenr);
4523 btrfs_print_leaf(extent_root, path->nodes[0]);
4524 }
4525 BUG_ON(ret);
4526 extent_slot = path->slots[0];
4527 leaf = path->nodes[0];
4528 item_size = btrfs_item_size_nr(leaf, extent_slot);
4529 }
4530#endif
4531 BUG_ON(item_size < sizeof(*ei));
952fccac 4532 ei = btrfs_item_ptr(leaf, extent_slot,
123abc88 4533 struct btrfs_extent_item);
5d4f98a2
YZ
4534 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID) {
4535 struct btrfs_tree_block_info *bi;
4536 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
4537 bi = (struct btrfs_tree_block_info *)(ei + 1);
4538 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
4539 }
56bec294 4540
5d4f98a2 4541 refs = btrfs_extent_refs(leaf, ei);
56bec294
CM
4542 BUG_ON(refs < refs_to_drop);
4543 refs -= refs_to_drop;
5f39d397 4544
5d4f98a2
YZ
4545 if (refs > 0) {
4546 if (extent_op)
4547 __run_delayed_extent_op(extent_op, leaf, ei);
4548 /*
4549 * In the case of inline back ref, reference count will
4550 * be updated by remove_extent_backref
952fccac 4551 */
5d4f98a2
YZ
4552 if (iref) {
4553 BUG_ON(!found_extent);
4554 } else {
4555 btrfs_set_extent_refs(leaf, ei, refs);
4556 btrfs_mark_buffer_dirty(leaf);
4557 }
4558 if (found_extent) {
4559 ret = remove_extent_backref(trans, extent_root, path,
4560 iref, refs_to_drop,
4561 is_data);
952fccac
CM
4562 BUG_ON(ret);
4563 }
5d4f98a2 4564 } else {
5d4f98a2
YZ
4565 if (found_extent) {
4566 BUG_ON(is_data && refs_to_drop !=
4567 extent_data_ref_count(root, path, iref));
4568 if (iref) {
4569 BUG_ON(path->slots[0] != extent_slot);
4570 } else {
4571 BUG_ON(path->slots[0] != extent_slot + 1);
4572 path->slots[0] = extent_slot;
4573 num_to_del = 2;
4574 }
78fae27e 4575 }
b9473439 4576
952fccac
CM
4577 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
4578 num_to_del);
31840ae1 4579 BUG_ON(ret);
25179201 4580 btrfs_release_path(extent_root, path);
21af804c 4581
5d4f98a2 4582 if (is_data) {
459931ec
CM
4583 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
4584 BUG_ON(ret);
d57e62b8
CM
4585 } else {
4586 invalidate_mapping_pages(info->btree_inode->i_mapping,
4587 bytenr >> PAGE_CACHE_SHIFT,
4588 (bytenr + num_bytes - 1) >> PAGE_CACHE_SHIFT);
459931ec
CM
4589 }
4590
f0486c68 4591 ret = update_block_group(trans, root, bytenr, num_bytes, 0);
dcbdd4dc 4592 BUG_ON(ret);
a28ec197 4593 }
5caf2a00 4594 btrfs_free_path(path);
a28ec197
CM
4595 return ret;
4596}
4597
1887be66 4598/*
f0486c68 4599 * when we free an block, it is possible (and likely) that we free the last
1887be66
CM
4600 * delayed ref for that extent as well. This searches the delayed ref tree for
4601 * a given extent, and if there are no other delayed refs to be processed, it
4602 * removes it from the tree.
4603 */
4604static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
4605 struct btrfs_root *root, u64 bytenr)
4606{
4607 struct btrfs_delayed_ref_head *head;
4608 struct btrfs_delayed_ref_root *delayed_refs;
4609 struct btrfs_delayed_ref_node *ref;
4610 struct rb_node *node;
f0486c68 4611 int ret = 0;
1887be66
CM
4612
4613 delayed_refs = &trans->transaction->delayed_refs;
4614 spin_lock(&delayed_refs->lock);
4615 head = btrfs_find_delayed_ref_head(trans, bytenr);
4616 if (!head)
4617 goto out;
4618
4619 node = rb_prev(&head->node.rb_node);
4620 if (!node)
4621 goto out;
4622
4623 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
4624
4625 /* there are still entries for this ref, we can't drop it */
4626 if (ref->bytenr == bytenr)
4627 goto out;
4628
5d4f98a2
YZ
4629 if (head->extent_op) {
4630 if (!head->must_insert_reserved)
4631 goto out;
4632 kfree(head->extent_op);
4633 head->extent_op = NULL;
4634 }
4635
1887be66
CM
4636 /*
4637 * waiting for the lock here would deadlock. If someone else has it
4638 * locked they are already in the process of dropping it anyway
4639 */
4640 if (!mutex_trylock(&head->mutex))
4641 goto out;
4642
4643 /*
4644 * at this point we have a head with no other entries. Go
4645 * ahead and process it.
4646 */
4647 head->node.in_tree = 0;
4648 rb_erase(&head->node.rb_node, &delayed_refs->root);
c3e69d58 4649
1887be66
CM
4650 delayed_refs->num_entries--;
4651
4652 /*
4653 * we don't take a ref on the node because we're removing it from the
4654 * tree, so we just steal the ref the tree was holding.
4655 */
c3e69d58
CM
4656 delayed_refs->num_heads--;
4657 if (list_empty(&head->cluster))
4658 delayed_refs->num_heads_ready--;
4659
4660 list_del_init(&head->cluster);
1887be66
CM
4661 spin_unlock(&delayed_refs->lock);
4662
f0486c68
YZ
4663 BUG_ON(head->extent_op);
4664 if (head->must_insert_reserved)
4665 ret = 1;
4666
4667 mutex_unlock(&head->mutex);
1887be66 4668 btrfs_put_delayed_ref(&head->node);
f0486c68 4669 return ret;
1887be66
CM
4670out:
4671 spin_unlock(&delayed_refs->lock);
4672 return 0;
4673}
4674
f0486c68
YZ
4675void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
4676 struct btrfs_root *root,
4677 struct extent_buffer *buf,
4678 u64 parent, int last_ref)
4679{
4680 struct btrfs_block_rsv *block_rsv;
4681 struct btrfs_block_group_cache *cache = NULL;
4682 int ret;
4683
4684 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4685 ret = btrfs_add_delayed_tree_ref(trans, buf->start, buf->len,
4686 parent, root->root_key.objectid,
4687 btrfs_header_level(buf),
4688 BTRFS_DROP_DELAYED_REF, NULL);
4689 BUG_ON(ret);
4690 }
4691
4692 if (!last_ref)
4693 return;
4694
4695 block_rsv = get_block_rsv(trans, root);
4696 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
3bf84a5a
YZ
4697 if (block_rsv->space_info != cache->space_info)
4698 goto out;
f0486c68
YZ
4699
4700 if (btrfs_header_generation(buf) == trans->transid) {
4701 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4702 ret = check_ref_cleanup(trans, root, buf->start);
4703 if (!ret)
4704 goto pin;
4705 }
4706
4707 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
4708 pin_down_extent(root, cache, buf->start, buf->len, 1);
4709 goto pin;
4710 }
4711
4712 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
4713
4714 btrfs_add_free_space(cache, buf->start, buf->len);
b4d00d56 4715 ret = btrfs_update_reserved_bytes(cache, buf->len, 0, 0);
f0486c68
YZ
4716 if (ret == -EAGAIN) {
4717 /* block group became read-only */
b4d00d56 4718 btrfs_update_reserved_bytes(cache, buf->len, 0, 1);
f0486c68
YZ
4719 goto out;
4720 }
4721
4722 ret = 1;
4723 spin_lock(&block_rsv->lock);
4724 if (block_rsv->reserved < block_rsv->size) {
4725 block_rsv->reserved += buf->len;
4726 ret = 0;
4727 }
4728 spin_unlock(&block_rsv->lock);
4729
4730 if (ret) {
4731 spin_lock(&cache->space_info->lock);
4732 cache->space_info->bytes_reserved -= buf->len;
36e39c40 4733 cache->space_info->reservation_progress++;
f0486c68
YZ
4734 spin_unlock(&cache->space_info->lock);
4735 }
4736 goto out;
4737 }
4738pin:
4739 if (block_rsv->durable && !cache->ro) {
4740 ret = 0;
4741 spin_lock(&cache->lock);
4742 if (!cache->ro) {
4743 cache->reserved_pinned += buf->len;
4744 ret = 1;
4745 }
4746 spin_unlock(&cache->lock);
4747
4748 if (ret) {
4749 spin_lock(&block_rsv->lock);
4750 block_rsv->freed[trans->transid & 0x1] += buf->len;
4751 spin_unlock(&block_rsv->lock);
4752 }
4753 }
4754out:
a826d6dc
JB
4755 /*
4756 * Deleting the buffer, clear the corrupt flag since it doesn't matter
4757 * anymore.
4758 */
4759 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
f0486c68
YZ
4760 btrfs_put_block_group(cache);
4761}
4762
925baedd 4763int btrfs_free_extent(struct btrfs_trans_handle *trans,
31840ae1
ZY
4764 struct btrfs_root *root,
4765 u64 bytenr, u64 num_bytes, u64 parent,
5d4f98a2 4766 u64 root_objectid, u64 owner, u64 offset)
925baedd
CM
4767{
4768 int ret;
4769
56bec294
CM
4770 /*
4771 * tree log blocks never actually go into the extent allocation
4772 * tree, just update pinning info and exit early.
56bec294 4773 */
5d4f98a2
YZ
4774 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
4775 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
b9473439 4776 /* unlocks the pinned mutex */
11833d66 4777 btrfs_pin_extent(root, bytenr, num_bytes, 1);
56bec294 4778 ret = 0;
5d4f98a2
YZ
4779 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
4780 ret = btrfs_add_delayed_tree_ref(trans, bytenr, num_bytes,
4781 parent, root_objectid, (int)owner,
4782 BTRFS_DROP_DELAYED_REF, NULL);
1887be66 4783 BUG_ON(ret);
5d4f98a2
YZ
4784 } else {
4785 ret = btrfs_add_delayed_data_ref(trans, bytenr, num_bytes,
4786 parent, root_objectid, owner,
4787 offset, BTRFS_DROP_DELAYED_REF, NULL);
4788 BUG_ON(ret);
56bec294 4789 }
925baedd
CM
4790 return ret;
4791}
4792
87ee04eb
CM
4793static u64 stripe_align(struct btrfs_root *root, u64 val)
4794{
4795 u64 mask = ((u64)root->stripesize - 1);
4796 u64 ret = (val + mask) & ~mask;
4797 return ret;
4798}
4799
817d52f8
JB
4800/*
4801 * when we wait for progress in the block group caching, its because
4802 * our allocation attempt failed at least once. So, we must sleep
4803 * and let some progress happen before we try again.
4804 *
4805 * This function will sleep at least once waiting for new free space to
4806 * show up, and then it will check the block group free space numbers
4807 * for our min num_bytes. Another option is to have it go ahead
4808 * and look in the rbtree for a free extent of a given size, but this
4809 * is a good start.
4810 */
4811static noinline int
4812wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
4813 u64 num_bytes)
4814{
11833d66 4815 struct btrfs_caching_control *caching_ctl;
817d52f8
JB
4816 DEFINE_WAIT(wait);
4817
11833d66
YZ
4818 caching_ctl = get_caching_control(cache);
4819 if (!caching_ctl)
817d52f8 4820 return 0;
817d52f8 4821
11833d66 4822 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
817d52f8 4823 (cache->free_space >= num_bytes));
11833d66
YZ
4824
4825 put_caching_control(caching_ctl);
4826 return 0;
4827}
4828
4829static noinline int
4830wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
4831{
4832 struct btrfs_caching_control *caching_ctl;
4833 DEFINE_WAIT(wait);
4834
4835 caching_ctl = get_caching_control(cache);
4836 if (!caching_ctl)
4837 return 0;
4838
4839 wait_event(caching_ctl->wait, block_group_cache_done(cache));
4840
4841 put_caching_control(caching_ctl);
817d52f8
JB
4842 return 0;
4843}
4844
b742bb82
YZ
4845static int get_block_group_index(struct btrfs_block_group_cache *cache)
4846{
4847 int index;
4848 if (cache->flags & BTRFS_BLOCK_GROUP_RAID10)
4849 index = 0;
4850 else if (cache->flags & BTRFS_BLOCK_GROUP_RAID1)
4851 index = 1;
4852 else if (cache->flags & BTRFS_BLOCK_GROUP_DUP)
4853 index = 2;
4854 else if (cache->flags & BTRFS_BLOCK_GROUP_RAID0)
4855 index = 3;
4856 else
4857 index = 4;
4858 return index;
4859}
4860
817d52f8 4861enum btrfs_loop_type {
ccf0e725 4862 LOOP_FIND_IDEAL = 0,
817d52f8
JB
4863 LOOP_CACHING_NOWAIT = 1,
4864 LOOP_CACHING_WAIT = 2,
4865 LOOP_ALLOC_CHUNK = 3,
4866 LOOP_NO_EMPTY_SIZE = 4,
4867};
4868
fec577fb
CM
4869/*
4870 * walks the btree of allocated extents and find a hole of a given size.
4871 * The key ins is changed to record the hole:
4872 * ins->objectid == block start
62e2749e 4873 * ins->flags = BTRFS_EXTENT_ITEM_KEY
fec577fb
CM
4874 * ins->offset == number of blocks
4875 * Any available blocks before search_start are skipped.
4876 */
d397712b 4877static noinline int find_free_extent(struct btrfs_trans_handle *trans,
98ed5174
CM
4878 struct btrfs_root *orig_root,
4879 u64 num_bytes, u64 empty_size,
4880 u64 search_start, u64 search_end,
4881 u64 hint_byte, struct btrfs_key *ins,
98ed5174 4882 int data)
fec577fb 4883{
80eb234a 4884 int ret = 0;
d397712b 4885 struct btrfs_root *root = orig_root->fs_info->extent_root;
fa9c0d79 4886 struct btrfs_free_cluster *last_ptr = NULL;
80eb234a 4887 struct btrfs_block_group_cache *block_group = NULL;
239b14b3 4888 int empty_cluster = 2 * 1024 * 1024;
0ef3e66b 4889 int allowed_chunk_alloc = 0;
ccf0e725 4890 int done_chunk_alloc = 0;
80eb234a 4891 struct btrfs_space_info *space_info;
fa9c0d79
CM
4892 int last_ptr_loop = 0;
4893 int loop = 0;
f0486c68 4894 int index = 0;
817d52f8 4895 bool found_uncached_bg = false;
0a24325e 4896 bool failed_cluster_refill = false;
1cdda9b8 4897 bool failed_alloc = false;
67377734 4898 bool use_cluster = true;
ccf0e725
JB
4899 u64 ideal_cache_percent = 0;
4900 u64 ideal_cache_offset = 0;
fec577fb 4901
db94535d 4902 WARN_ON(num_bytes < root->sectorsize);
b1a4d965 4903 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
80eb234a
JB
4904 ins->objectid = 0;
4905 ins->offset = 0;
b1a4d965 4906
2552d17e 4907 space_info = __find_space_info(root->fs_info, data);
1b1d1f66
JB
4908 if (!space_info) {
4909 printk(KERN_ERR "No space info for %d\n", data);
4910 return -ENOSPC;
4911 }
2552d17e 4912
67377734
JB
4913 /*
4914 * If the space info is for both data and metadata it means we have a
4915 * small filesystem and we can't use the clustering stuff.
4916 */
4917 if (btrfs_mixed_space_info(space_info))
4918 use_cluster = false;
4919
0ef3e66b
CM
4920 if (orig_root->ref_cows || empty_size)
4921 allowed_chunk_alloc = 1;
4922
67377734 4923 if (data & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
fa9c0d79 4924 last_ptr = &root->fs_info->meta_alloc_cluster;
536ac8ae
CM
4925 if (!btrfs_test_opt(root, SSD))
4926 empty_cluster = 64 * 1024;
239b14b3
CM
4927 }
4928
67377734
JB
4929 if ((data & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
4930 btrfs_test_opt(root, SSD)) {
fa9c0d79
CM
4931 last_ptr = &root->fs_info->data_alloc_cluster;
4932 }
0f9dd46c 4933
239b14b3 4934 if (last_ptr) {
fa9c0d79
CM
4935 spin_lock(&last_ptr->lock);
4936 if (last_ptr->block_group)
4937 hint_byte = last_ptr->window_start;
4938 spin_unlock(&last_ptr->lock);
239b14b3 4939 }
fa9c0d79 4940
a061fc8d 4941 search_start = max(search_start, first_logical_byte(root, 0));
239b14b3 4942 search_start = max(search_start, hint_byte);
0b86a832 4943
817d52f8 4944 if (!last_ptr)
fa9c0d79 4945 empty_cluster = 0;
fa9c0d79 4946
2552d17e 4947 if (search_start == hint_byte) {
ccf0e725 4948ideal_cache:
2552d17e
JB
4949 block_group = btrfs_lookup_block_group(root->fs_info,
4950 search_start);
817d52f8
JB
4951 /*
4952 * we don't want to use the block group if it doesn't match our
4953 * allocation bits, or if its not cached.
ccf0e725
JB
4954 *
4955 * However if we are re-searching with an ideal block group
4956 * picked out then we don't care that the block group is cached.
817d52f8
JB
4957 */
4958 if (block_group && block_group_bits(block_group, data) &&
ccf0e725
JB
4959 (block_group->cached != BTRFS_CACHE_NO ||
4960 search_start == ideal_cache_offset)) {
2552d17e 4961 down_read(&space_info->groups_sem);
44fb5511
CM
4962 if (list_empty(&block_group->list) ||
4963 block_group->ro) {
4964 /*
4965 * someone is removing this block group,
4966 * we can't jump into the have_block_group
4967 * target because our list pointers are not
4968 * valid
4969 */
4970 btrfs_put_block_group(block_group);
4971 up_read(&space_info->groups_sem);
ccf0e725 4972 } else {
b742bb82 4973 index = get_block_group_index(block_group);
44fb5511 4974 goto have_block_group;
ccf0e725 4975 }
2552d17e 4976 } else if (block_group) {
fa9c0d79 4977 btrfs_put_block_group(block_group);
2552d17e 4978 }
42e70e7a 4979 }
2552d17e 4980search:
80eb234a 4981 down_read(&space_info->groups_sem);
b742bb82
YZ
4982 list_for_each_entry(block_group, &space_info->block_groups[index],
4983 list) {
6226cb0a 4984 u64 offset;
817d52f8 4985 int cached;
8a1413a2 4986
11dfe35a 4987 btrfs_get_block_group(block_group);
2552d17e 4988 search_start = block_group->key.objectid;
42e70e7a 4989
83a50de9
CM
4990 /*
4991 * this can happen if we end up cycling through all the
4992 * raid types, but we want to make sure we only allocate
4993 * for the proper type.
4994 */
4995 if (!block_group_bits(block_group, data)) {
4996 u64 extra = BTRFS_BLOCK_GROUP_DUP |
4997 BTRFS_BLOCK_GROUP_RAID1 |
4998 BTRFS_BLOCK_GROUP_RAID10;
4999
5000 /*
5001 * if they asked for extra copies and this block group
5002 * doesn't provide them, bail. This does allow us to
5003 * fill raid0 from raid1.
5004 */
5005 if ((data & extra) && !(block_group->flags & extra))
5006 goto loop;
5007 }
5008
2552d17e 5009have_block_group:
817d52f8 5010 if (unlikely(block_group->cached == BTRFS_CACHE_NO)) {
ccf0e725
JB
5011 u64 free_percent;
5012
b8399dee
JB
5013 ret = cache_block_group(block_group, trans,
5014 orig_root, 1);
9d66e233
JB
5015 if (block_group->cached == BTRFS_CACHE_FINISHED)
5016 goto have_block_group;
5017
ccf0e725
JB
5018 free_percent = btrfs_block_group_used(&block_group->item);
5019 free_percent *= 100;
5020 free_percent = div64_u64(free_percent,
5021 block_group->key.offset);
5022 free_percent = 100 - free_percent;
5023 if (free_percent > ideal_cache_percent &&
5024 likely(!block_group->ro)) {
5025 ideal_cache_offset = block_group->key.objectid;
5026 ideal_cache_percent = free_percent;
5027 }
5028
817d52f8 5029 /*
ccf0e725
JB
5030 * We only want to start kthread caching if we are at
5031 * the point where we will wait for caching to make
5032 * progress, or if our ideal search is over and we've
5033 * found somebody to start caching.
817d52f8
JB
5034 */
5035 if (loop > LOOP_CACHING_NOWAIT ||
ccf0e725
JB
5036 (loop > LOOP_FIND_IDEAL &&
5037 atomic_read(&space_info->caching_threads) < 2)) {
b8399dee
JB
5038 ret = cache_block_group(block_group, trans,
5039 orig_root, 0);
817d52f8 5040 BUG_ON(ret);
2552d17e 5041 }
817d52f8
JB
5042 found_uncached_bg = true;
5043
ccf0e725
JB
5044 /*
5045 * If loop is set for cached only, try the next block
5046 * group.
5047 */
5048 if (loop == LOOP_FIND_IDEAL)
817d52f8
JB
5049 goto loop;
5050 }
5051
ccf0e725
JB
5052 cached = block_group_cache_done(block_group);
5053 if (unlikely(!cached))
5054 found_uncached_bg = true;
5055
ea6a478e 5056 if (unlikely(block_group->ro))
2552d17e 5057 goto loop;
0f9dd46c 5058
0a24325e
JB
5059 /*
5060 * Ok we want to try and use the cluster allocator, so lets look
5061 * there, unless we are on LOOP_NO_EMPTY_SIZE, since we will
5062 * have tried the cluster allocator plenty of times at this
5063 * point and not have found anything, so we are likely way too
5064 * fragmented for the clustering stuff to find anything, so lets
5065 * just skip it and let the allocator find whatever block it can
5066 * find
5067 */
5068 if (last_ptr && loop < LOOP_NO_EMPTY_SIZE) {
fa9c0d79
CM
5069 /*
5070 * the refill lock keeps out other
5071 * people trying to start a new cluster
5072 */
5073 spin_lock(&last_ptr->refill_lock);
44fb5511
CM
5074 if (last_ptr->block_group &&
5075 (last_ptr->block_group->ro ||
5076 !block_group_bits(last_ptr->block_group, data))) {
5077 offset = 0;
5078 goto refill_cluster;
5079 }
5080
fa9c0d79
CM
5081 offset = btrfs_alloc_from_cluster(block_group, last_ptr,
5082 num_bytes, search_start);
5083 if (offset) {
5084 /* we have a block, we're done */
5085 spin_unlock(&last_ptr->refill_lock);
5086 goto checks;
5087 }
5088
5089 spin_lock(&last_ptr->lock);
5090 /*
5091 * whoops, this cluster doesn't actually point to
5092 * this block group. Get a ref on the block
5093 * group is does point to and try again
5094 */
5095 if (!last_ptr_loop && last_ptr->block_group &&
5096 last_ptr->block_group != block_group) {
5097
5098 btrfs_put_block_group(block_group);
5099 block_group = last_ptr->block_group;
11dfe35a 5100 btrfs_get_block_group(block_group);
fa9c0d79
CM
5101 spin_unlock(&last_ptr->lock);
5102 spin_unlock(&last_ptr->refill_lock);
5103
5104 last_ptr_loop = 1;
5105 search_start = block_group->key.objectid;
44fb5511
CM
5106 /*
5107 * we know this block group is properly
5108 * in the list because
5109 * btrfs_remove_block_group, drops the
5110 * cluster before it removes the block
5111 * group from the list
5112 */
fa9c0d79
CM
5113 goto have_block_group;
5114 }
5115 spin_unlock(&last_ptr->lock);
44fb5511 5116refill_cluster:
fa9c0d79
CM
5117 /*
5118 * this cluster didn't work out, free it and
5119 * start over
5120 */
5121 btrfs_return_cluster_to_free_space(NULL, last_ptr);
5122
5123 last_ptr_loop = 0;
5124
5125 /* allocate a cluster in this block group */
451d7585 5126 ret = btrfs_find_space_cluster(trans, root,
fa9c0d79
CM
5127 block_group, last_ptr,
5128 offset, num_bytes,
5129 empty_cluster + empty_size);
5130 if (ret == 0) {
5131 /*
5132 * now pull our allocation out of this
5133 * cluster
5134 */
5135 offset = btrfs_alloc_from_cluster(block_group,
5136 last_ptr, num_bytes,
5137 search_start);
5138 if (offset) {
5139 /* we found one, proceed */
5140 spin_unlock(&last_ptr->refill_lock);
5141 goto checks;
5142 }
0a24325e
JB
5143 } else if (!cached && loop > LOOP_CACHING_NOWAIT
5144 && !failed_cluster_refill) {
817d52f8
JB
5145 spin_unlock(&last_ptr->refill_lock);
5146
0a24325e 5147 failed_cluster_refill = true;
817d52f8
JB
5148 wait_block_group_cache_progress(block_group,
5149 num_bytes + empty_cluster + empty_size);
5150 goto have_block_group;
fa9c0d79 5151 }
817d52f8 5152
fa9c0d79
CM
5153 /*
5154 * at this point we either didn't find a cluster
5155 * or we weren't able to allocate a block from our
5156 * cluster. Free the cluster we've been trying
5157 * to use, and go to the next block group
5158 */
0a24325e 5159 btrfs_return_cluster_to_free_space(NULL, last_ptr);
fa9c0d79 5160 spin_unlock(&last_ptr->refill_lock);
0a24325e 5161 goto loop;
fa9c0d79
CM
5162 }
5163
6226cb0a
JB
5164 offset = btrfs_find_space_for_alloc(block_group, search_start,
5165 num_bytes, empty_size);
1cdda9b8
JB
5166 /*
5167 * If we didn't find a chunk, and we haven't failed on this
5168 * block group before, and this block group is in the middle of
5169 * caching and we are ok with waiting, then go ahead and wait
5170 * for progress to be made, and set failed_alloc to true.
5171 *
5172 * If failed_alloc is true then we've already waited on this
5173 * block group once and should move on to the next block group.
5174 */
5175 if (!offset && !failed_alloc && !cached &&
5176 loop > LOOP_CACHING_NOWAIT) {
817d52f8 5177 wait_block_group_cache_progress(block_group,
1cdda9b8
JB
5178 num_bytes + empty_size);
5179 failed_alloc = true;
817d52f8 5180 goto have_block_group;
1cdda9b8
JB
5181 } else if (!offset) {
5182 goto loop;
817d52f8 5183 }
fa9c0d79 5184checks:
6226cb0a 5185 search_start = stripe_align(root, offset);
2552d17e 5186 /* move on to the next group */
6226cb0a
JB
5187 if (search_start + num_bytes >= search_end) {
5188 btrfs_add_free_space(block_group, offset, num_bytes);
2552d17e 5189 goto loop;
6226cb0a 5190 }
25179201 5191
2552d17e
JB
5192 /* move on to the next group */
5193 if (search_start + num_bytes >
6226cb0a
JB
5194 block_group->key.objectid + block_group->key.offset) {
5195 btrfs_add_free_space(block_group, offset, num_bytes);
2552d17e 5196 goto loop;
6226cb0a 5197 }
f5a31e16 5198
f0486c68
YZ
5199 ins->objectid = search_start;
5200 ins->offset = num_bytes;
2552d17e 5201
f0486c68
YZ
5202 if (offset < search_start)
5203 btrfs_add_free_space(block_group, offset,
5204 search_start - offset);
5205 BUG_ON(offset > search_start);
2552d17e 5206
b4d00d56 5207 ret = btrfs_update_reserved_bytes(block_group, num_bytes, 1,
f0486c68
YZ
5208 (data & BTRFS_BLOCK_GROUP_DATA));
5209 if (ret == -EAGAIN) {
6226cb0a 5210 btrfs_add_free_space(block_group, offset, num_bytes);
2552d17e 5211 goto loop;
0f9dd46c 5212 }
0b86a832 5213
f0486c68 5214 /* we are all good, lets return */
2552d17e
JB
5215 ins->objectid = search_start;
5216 ins->offset = num_bytes;
d2fb3437 5217
6226cb0a
JB
5218 if (offset < search_start)
5219 btrfs_add_free_space(block_group, offset,
5220 search_start - offset);
5221 BUG_ON(offset > search_start);
2552d17e
JB
5222 break;
5223loop:
0a24325e 5224 failed_cluster_refill = false;
1cdda9b8 5225 failed_alloc = false;
b742bb82 5226 BUG_ON(index != get_block_group_index(block_group));
fa9c0d79 5227 btrfs_put_block_group(block_group);
2552d17e
JB
5228 }
5229 up_read(&space_info->groups_sem);
5230
b742bb82
YZ
5231 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
5232 goto search;
5233
ccf0e725
JB
5234 /* LOOP_FIND_IDEAL, only search caching/cached bg's, and don't wait for
5235 * for them to make caching progress. Also
5236 * determine the best possible bg to cache
5237 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
5238 * caching kthreads as we move along
817d52f8
JB
5239 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
5240 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
5241 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
5242 * again
fa9c0d79 5243 */
817d52f8
JB
5244 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE &&
5245 (found_uncached_bg || empty_size || empty_cluster ||
5246 allowed_chunk_alloc)) {
b742bb82 5247 index = 0;
ccf0e725 5248 if (loop == LOOP_FIND_IDEAL && found_uncached_bg) {
817d52f8 5249 found_uncached_bg = false;
ccf0e725
JB
5250 loop++;
5251 if (!ideal_cache_percent &&
5252 atomic_read(&space_info->caching_threads))
817d52f8 5253 goto search;
ccf0e725
JB
5254
5255 /*
5256 * 1 of the following 2 things have happened so far
5257 *
5258 * 1) We found an ideal block group for caching that
5259 * is mostly full and will cache quickly, so we might
5260 * as well wait for it.
5261 *
5262 * 2) We searched for cached only and we didn't find
5263 * anything, and we didn't start any caching kthreads
5264 * either, so chances are we will loop through and
5265 * start a couple caching kthreads, and then come back
5266 * around and just wait for them. This will be slower
5267 * because we will have 2 caching kthreads reading at
5268 * the same time when we could have just started one
5269 * and waited for it to get far enough to give us an
5270 * allocation, so go ahead and go to the wait caching
5271 * loop.
5272 */
5273 loop = LOOP_CACHING_WAIT;
5274 search_start = ideal_cache_offset;
5275 ideal_cache_percent = 0;
5276 goto ideal_cache;
5277 } else if (loop == LOOP_FIND_IDEAL) {
5278 /*
5279 * Didn't find a uncached bg, wait on anything we find
5280 * next.
5281 */
5282 loop = LOOP_CACHING_WAIT;
5283 goto search;
5284 }
5285
5286 if (loop < LOOP_CACHING_WAIT) {
5287 loop++;
5288 goto search;
817d52f8
JB
5289 }
5290
5291 if (loop == LOOP_ALLOC_CHUNK) {
fa9c0d79
CM
5292 empty_size = 0;
5293 empty_cluster = 0;
5294 }
2552d17e
JB
5295
5296 if (allowed_chunk_alloc) {
5297 ret = do_chunk_alloc(trans, root, num_bytes +
5298 2 * 1024 * 1024, data, 1);
2552d17e 5299 allowed_chunk_alloc = 0;
ccf0e725
JB
5300 done_chunk_alloc = 1;
5301 } else if (!done_chunk_alloc) {
2552d17e
JB
5302 space_info->force_alloc = 1;
5303 }
5304
817d52f8 5305 if (loop < LOOP_NO_EMPTY_SIZE) {
fa9c0d79 5306 loop++;
2552d17e 5307 goto search;
fa9c0d79 5308 }
2552d17e
JB
5309 ret = -ENOSPC;
5310 } else if (!ins->objectid) {
5311 ret = -ENOSPC;
f2654de4 5312 }
0b86a832 5313
80eb234a
JB
5314 /* we found what we needed */
5315 if (ins->objectid) {
5316 if (!(data & BTRFS_BLOCK_GROUP_DATA))
d2fb3437 5317 trans->block_group = block_group->key.objectid;
0f9dd46c 5318
fa9c0d79 5319 btrfs_put_block_group(block_group);
80eb234a 5320 ret = 0;
be744175 5321 }
be744175 5322
0f70abe2 5323 return ret;
fec577fb 5324}
ec44a35c 5325
9ed74f2d
JB
5326static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
5327 int dump_block_groups)
0f9dd46c
JB
5328{
5329 struct btrfs_block_group_cache *cache;
b742bb82 5330 int index = 0;
0f9dd46c 5331
9ed74f2d 5332 spin_lock(&info->lock);
d397712b
CM
5333 printk(KERN_INFO "space_info has %llu free, is %sfull\n",
5334 (unsigned long long)(info->total_bytes - info->bytes_used -
9ed74f2d 5335 info->bytes_pinned - info->bytes_reserved -
8929ecfa 5336 info->bytes_readonly),
d397712b 5337 (info->full) ? "" : "not ");
8929ecfa
YZ
5338 printk(KERN_INFO "space_info total=%llu, used=%llu, pinned=%llu, "
5339 "reserved=%llu, may_use=%llu, readonly=%llu\n",
21380931 5340 (unsigned long long)info->total_bytes,
8929ecfa 5341 (unsigned long long)info->bytes_used,
21380931 5342 (unsigned long long)info->bytes_pinned,
8929ecfa 5343 (unsigned long long)info->bytes_reserved,
21380931 5344 (unsigned long long)info->bytes_may_use,
8929ecfa 5345 (unsigned long long)info->bytes_readonly);
9ed74f2d
JB
5346 spin_unlock(&info->lock);
5347
5348 if (!dump_block_groups)
5349 return;
0f9dd46c 5350
80eb234a 5351 down_read(&info->groups_sem);
b742bb82
YZ
5352again:
5353 list_for_each_entry(cache, &info->block_groups[index], list) {
0f9dd46c 5354 spin_lock(&cache->lock);
d397712b
CM
5355 printk(KERN_INFO "block group %llu has %llu bytes, %llu used "
5356 "%llu pinned %llu reserved\n",
5357 (unsigned long long)cache->key.objectid,
5358 (unsigned long long)cache->key.offset,
5359 (unsigned long long)btrfs_block_group_used(&cache->item),
5360 (unsigned long long)cache->pinned,
5361 (unsigned long long)cache->reserved);
0f9dd46c
JB
5362 btrfs_dump_free_space(cache, bytes);
5363 spin_unlock(&cache->lock);
5364 }
b742bb82
YZ
5365 if (++index < BTRFS_NR_RAID_TYPES)
5366 goto again;
80eb234a 5367 up_read(&info->groups_sem);
0f9dd46c 5368}
e8569813 5369
11833d66
YZ
5370int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
5371 struct btrfs_root *root,
5372 u64 num_bytes, u64 min_alloc_size,
5373 u64 empty_size, u64 hint_byte,
5374 u64 search_end, struct btrfs_key *ins,
5375 u64 data)
fec577fb
CM
5376{
5377 int ret;
fbdc762b 5378 u64 search_start = 0;
925baedd 5379
6a63209f 5380 data = btrfs_get_alloc_profile(root, data);
98d20f67 5381again:
0ef3e66b
CM
5382 /*
5383 * the only place that sets empty_size is btrfs_realloc_node, which
5384 * is not called recursively on allocations
5385 */
83d3c969 5386 if (empty_size || root->ref_cows)
6324fbf3 5387 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
0ef3e66b 5388 num_bytes + 2 * 1024 * 1024, data, 0);
0b86a832 5389
db94535d
CM
5390 WARN_ON(num_bytes < root->sectorsize);
5391 ret = find_free_extent(trans, root, num_bytes, empty_size,
f0486c68
YZ
5392 search_start, search_end, hint_byte,
5393 ins, data);
3b951516 5394
98d20f67
CM
5395 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
5396 num_bytes = num_bytes >> 1;
0f9dd46c 5397 num_bytes = num_bytes & ~(root->sectorsize - 1);
98d20f67 5398 num_bytes = max(num_bytes, min_alloc_size);
0ef3e66b
CM
5399 do_chunk_alloc(trans, root->fs_info->extent_root,
5400 num_bytes, data, 1);
98d20f67
CM
5401 goto again;
5402 }
91435650 5403 if (ret == -ENOSPC && btrfs_test_opt(root, ENOSPC_DEBUG)) {
0f9dd46c
JB
5404 struct btrfs_space_info *sinfo;
5405
5406 sinfo = __find_space_info(root->fs_info, data);
d397712b
CM
5407 printk(KERN_ERR "btrfs allocation failed flags %llu, "
5408 "wanted %llu\n", (unsigned long long)data,
5409 (unsigned long long)num_bytes);
9ed74f2d 5410 dump_space_info(sinfo, num_bytes, 1);
925baedd 5411 }
0f9dd46c 5412
1abe9b8a 5413 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
5414
0f9dd46c 5415 return ret;
e6dcd2dc
CM
5416}
5417
65b51a00
CM
5418int btrfs_free_reserved_extent(struct btrfs_root *root, u64 start, u64 len)
5419{
0f9dd46c 5420 struct btrfs_block_group_cache *cache;
1f3c79a2 5421 int ret = 0;
0f9dd46c 5422
0f9dd46c
JB
5423 cache = btrfs_lookup_block_group(root->fs_info, start);
5424 if (!cache) {
d397712b
CM
5425 printk(KERN_ERR "Unable to find block group for %llu\n",
5426 (unsigned long long)start);
0f9dd46c
JB
5427 return -ENOSPC;
5428 }
1f3c79a2
LH
5429
5430 ret = btrfs_discard_extent(root, start, len);
5431
0f9dd46c 5432 btrfs_add_free_space(cache, start, len);
b4d00d56 5433 btrfs_update_reserved_bytes(cache, len, 0, 1);
fa9c0d79 5434 btrfs_put_block_group(cache);
817d52f8 5435
1abe9b8a 5436 trace_btrfs_reserved_extent_free(root, start, len);
5437
e6dcd2dc
CM
5438 return ret;
5439}
5440
5d4f98a2
YZ
5441static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5442 struct btrfs_root *root,
5443 u64 parent, u64 root_objectid,
5444 u64 flags, u64 owner, u64 offset,
5445 struct btrfs_key *ins, int ref_mod)
e6dcd2dc
CM
5446{
5447 int ret;
5d4f98a2 5448 struct btrfs_fs_info *fs_info = root->fs_info;
e6dcd2dc 5449 struct btrfs_extent_item *extent_item;
5d4f98a2 5450 struct btrfs_extent_inline_ref *iref;
e6dcd2dc 5451 struct btrfs_path *path;
5d4f98a2
YZ
5452 struct extent_buffer *leaf;
5453 int type;
5454 u32 size;
26b8003f 5455
5d4f98a2
YZ
5456 if (parent > 0)
5457 type = BTRFS_SHARED_DATA_REF_KEY;
5458 else
5459 type = BTRFS_EXTENT_DATA_REF_KEY;
58176a96 5460
5d4f98a2 5461 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
7bb86316
CM
5462
5463 path = btrfs_alloc_path();
db5b493a
TI
5464 if (!path)
5465 return -ENOMEM;
47e4bb98 5466
b9473439 5467 path->leave_spinning = 1;
5d4f98a2
YZ
5468 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
5469 ins, size);
ccd467d6 5470 BUG_ON(ret);
0f9dd46c 5471
5d4f98a2
YZ
5472 leaf = path->nodes[0];
5473 extent_item = btrfs_item_ptr(leaf, path->slots[0],
47e4bb98 5474 struct btrfs_extent_item);
5d4f98a2
YZ
5475 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
5476 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
5477 btrfs_set_extent_flags(leaf, extent_item,
5478 flags | BTRFS_EXTENT_FLAG_DATA);
5479
5480 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
5481 btrfs_set_extent_inline_ref_type(leaf, iref, type);
5482 if (parent > 0) {
5483 struct btrfs_shared_data_ref *ref;
5484 ref = (struct btrfs_shared_data_ref *)(iref + 1);
5485 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
5486 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
5487 } else {
5488 struct btrfs_extent_data_ref *ref;
5489 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
5490 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
5491 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
5492 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
5493 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
5494 }
47e4bb98
CM
5495
5496 btrfs_mark_buffer_dirty(path->nodes[0]);
7bb86316 5497 btrfs_free_path(path);
f510cfec 5498
f0486c68 5499 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
f5947066 5500 if (ret) {
d397712b
CM
5501 printk(KERN_ERR "btrfs update block group failed for %llu "
5502 "%llu\n", (unsigned long long)ins->objectid,
5503 (unsigned long long)ins->offset);
f5947066
CM
5504 BUG();
5505 }
e6dcd2dc
CM
5506 return ret;
5507}
5508
5d4f98a2
YZ
5509static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
5510 struct btrfs_root *root,
5511 u64 parent, u64 root_objectid,
5512 u64 flags, struct btrfs_disk_key *key,
5513 int level, struct btrfs_key *ins)
e6dcd2dc
CM
5514{
5515 int ret;
5d4f98a2
YZ
5516 struct btrfs_fs_info *fs_info = root->fs_info;
5517 struct btrfs_extent_item *extent_item;
5518 struct btrfs_tree_block_info *block_info;
5519 struct btrfs_extent_inline_ref *iref;
5520 struct btrfs_path *path;
5521 struct extent_buffer *leaf;
5522 u32 size = sizeof(*extent_item) + sizeof(*block_info) + sizeof(*iref);
1c2308f8 5523
5d4f98a2
YZ
5524 path = btrfs_alloc_path();
5525 BUG_ON(!path);
56bec294 5526
5d4f98a2
YZ
5527 path->leave_spinning = 1;
5528 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
5529 ins, size);
56bec294 5530 BUG_ON(ret);
5d4f98a2
YZ
5531
5532 leaf = path->nodes[0];
5533 extent_item = btrfs_item_ptr(leaf, path->slots[0],
5534 struct btrfs_extent_item);
5535 btrfs_set_extent_refs(leaf, extent_item, 1);
5536 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
5537 btrfs_set_extent_flags(leaf, extent_item,
5538 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
5539 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
5540
5541 btrfs_set_tree_block_key(leaf, block_info, key);
5542 btrfs_set_tree_block_level(leaf, block_info, level);
5543
5544 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
5545 if (parent > 0) {
5546 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
5547 btrfs_set_extent_inline_ref_type(leaf, iref,
5548 BTRFS_SHARED_BLOCK_REF_KEY);
5549 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
5550 } else {
5551 btrfs_set_extent_inline_ref_type(leaf, iref,
5552 BTRFS_TREE_BLOCK_REF_KEY);
5553 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
5554 }
5555
5556 btrfs_mark_buffer_dirty(leaf);
5557 btrfs_free_path(path);
5558
f0486c68 5559 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
5d4f98a2
YZ
5560 if (ret) {
5561 printk(KERN_ERR "btrfs update block group failed for %llu "
5562 "%llu\n", (unsigned long long)ins->objectid,
5563 (unsigned long long)ins->offset);
5564 BUG();
5565 }
5566 return ret;
5567}
5568
5569int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5570 struct btrfs_root *root,
5571 u64 root_objectid, u64 owner,
5572 u64 offset, struct btrfs_key *ins)
5573{
5574 int ret;
5575
5576 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
5577
5578 ret = btrfs_add_delayed_data_ref(trans, ins->objectid, ins->offset,
5579 0, root_objectid, owner, offset,
5580 BTRFS_ADD_DELAYED_EXTENT, NULL);
e6dcd2dc
CM
5581 return ret;
5582}
e02119d5
CM
5583
5584/*
5585 * this is used by the tree logging recovery code. It records that
5586 * an extent has been allocated and makes sure to clear the free
5587 * space cache bits as well
5588 */
5d4f98a2
YZ
5589int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
5590 struct btrfs_root *root,
5591 u64 root_objectid, u64 owner, u64 offset,
5592 struct btrfs_key *ins)
e02119d5
CM
5593{
5594 int ret;
5595 struct btrfs_block_group_cache *block_group;
11833d66
YZ
5596 struct btrfs_caching_control *caching_ctl;
5597 u64 start = ins->objectid;
5598 u64 num_bytes = ins->offset;
e02119d5 5599
e02119d5 5600 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
b8399dee 5601 cache_block_group(block_group, trans, NULL, 0);
11833d66 5602 caching_ctl = get_caching_control(block_group);
e02119d5 5603
11833d66
YZ
5604 if (!caching_ctl) {
5605 BUG_ON(!block_group_cache_done(block_group));
5606 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5607 BUG_ON(ret);
5608 } else {
5609 mutex_lock(&caching_ctl->mutex);
5610
5611 if (start >= caching_ctl->progress) {
5612 ret = add_excluded_extent(root, start, num_bytes);
5613 BUG_ON(ret);
5614 } else if (start + num_bytes <= caching_ctl->progress) {
5615 ret = btrfs_remove_free_space(block_group,
5616 start, num_bytes);
5617 BUG_ON(ret);
5618 } else {
5619 num_bytes = caching_ctl->progress - start;
5620 ret = btrfs_remove_free_space(block_group,
5621 start, num_bytes);
5622 BUG_ON(ret);
5623
5624 start = caching_ctl->progress;
5625 num_bytes = ins->objectid + ins->offset -
5626 caching_ctl->progress;
5627 ret = add_excluded_extent(root, start, num_bytes);
5628 BUG_ON(ret);
5629 }
5630
5631 mutex_unlock(&caching_ctl->mutex);
5632 put_caching_control(caching_ctl);
5633 }
5634
b4d00d56 5635 ret = btrfs_update_reserved_bytes(block_group, ins->offset, 1, 1);
f0486c68 5636 BUG_ON(ret);
fa9c0d79 5637 btrfs_put_block_group(block_group);
5d4f98a2
YZ
5638 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
5639 0, owner, offset, ins, 1);
e02119d5
CM
5640 return ret;
5641}
5642
65b51a00
CM
5643struct extent_buffer *btrfs_init_new_buffer(struct btrfs_trans_handle *trans,
5644 struct btrfs_root *root,
4008c04a
CM
5645 u64 bytenr, u32 blocksize,
5646 int level)
65b51a00
CM
5647{
5648 struct extent_buffer *buf;
5649
5650 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
5651 if (!buf)
5652 return ERR_PTR(-ENOMEM);
5653 btrfs_set_header_generation(buf, trans->transid);
4008c04a 5654 btrfs_set_buffer_lockdep_class(buf, level);
65b51a00
CM
5655 btrfs_tree_lock(buf);
5656 clean_tree_block(trans, root, buf);
b4ce94de
CM
5657
5658 btrfs_set_lock_blocking(buf);
65b51a00 5659 btrfs_set_buffer_uptodate(buf);
b4ce94de 5660
d0c803c4 5661 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
8cef4e16
YZ
5662 /*
5663 * we allow two log transactions at a time, use different
5664 * EXENT bit to differentiate dirty pages.
5665 */
5666 if (root->log_transid % 2 == 0)
5667 set_extent_dirty(&root->dirty_log_pages, buf->start,
5668 buf->start + buf->len - 1, GFP_NOFS);
5669 else
5670 set_extent_new(&root->dirty_log_pages, buf->start,
5671 buf->start + buf->len - 1, GFP_NOFS);
d0c803c4
CM
5672 } else {
5673 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
65b51a00 5674 buf->start + buf->len - 1, GFP_NOFS);
d0c803c4 5675 }
65b51a00 5676 trans->blocks_used++;
b4ce94de 5677 /* this returns a buffer locked for blocking */
65b51a00
CM
5678 return buf;
5679}
5680
f0486c68
YZ
5681static struct btrfs_block_rsv *
5682use_block_rsv(struct btrfs_trans_handle *trans,
5683 struct btrfs_root *root, u32 blocksize)
5684{
5685 struct btrfs_block_rsv *block_rsv;
68a82277 5686 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
f0486c68
YZ
5687 int ret;
5688
5689 block_rsv = get_block_rsv(trans, root);
5690
5691 if (block_rsv->size == 0) {
8bb8ab2e
JB
5692 ret = reserve_metadata_bytes(trans, root, block_rsv,
5693 blocksize, 0);
68a82277
JB
5694 /*
5695 * If we couldn't reserve metadata bytes try and use some from
5696 * the global reserve.
5697 */
5698 if (ret && block_rsv != global_rsv) {
5699 ret = block_rsv_use_bytes(global_rsv, blocksize);
5700 if (!ret)
5701 return global_rsv;
f0486c68 5702 return ERR_PTR(ret);
68a82277 5703 } else if (ret) {
f0486c68 5704 return ERR_PTR(ret);
68a82277 5705 }
f0486c68
YZ
5706 return block_rsv;
5707 }
5708
5709 ret = block_rsv_use_bytes(block_rsv, blocksize);
5710 if (!ret)
5711 return block_rsv;
68a82277
JB
5712 if (ret) {
5713 WARN_ON(1);
5714 ret = reserve_metadata_bytes(trans, root, block_rsv, blocksize,
5715 0);
5716 if (!ret) {
5717 spin_lock(&block_rsv->lock);
5718 block_rsv->size += blocksize;
5719 spin_unlock(&block_rsv->lock);
5720 return block_rsv;
5721 } else if (ret && block_rsv != global_rsv) {
5722 ret = block_rsv_use_bytes(global_rsv, blocksize);
5723 if (!ret)
5724 return global_rsv;
5725 }
5726 }
f0486c68 5727
f0486c68
YZ
5728 return ERR_PTR(-ENOSPC);
5729}
5730
5731static void unuse_block_rsv(struct btrfs_block_rsv *block_rsv, u32 blocksize)
5732{
5733 block_rsv_add_bytes(block_rsv, blocksize, 0);
5734 block_rsv_release_bytes(block_rsv, NULL, 0);
5735}
5736
fec577fb 5737/*
f0486c68
YZ
5738 * finds a free extent and does all the dirty work required for allocation
5739 * returns the key for the extent through ins, and a tree buffer for
5740 * the first block of the extent through buf.
5741 *
fec577fb
CM
5742 * returns the tree buffer or NULL.
5743 */
5f39d397 5744struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
5d4f98a2
YZ
5745 struct btrfs_root *root, u32 blocksize,
5746 u64 parent, u64 root_objectid,
5747 struct btrfs_disk_key *key, int level,
5748 u64 hint, u64 empty_size)
fec577fb 5749{
e2fa7227 5750 struct btrfs_key ins;
f0486c68 5751 struct btrfs_block_rsv *block_rsv;
5f39d397 5752 struct extent_buffer *buf;
f0486c68
YZ
5753 u64 flags = 0;
5754 int ret;
5755
fec577fb 5756
f0486c68
YZ
5757 block_rsv = use_block_rsv(trans, root, blocksize);
5758 if (IS_ERR(block_rsv))
5759 return ERR_CAST(block_rsv);
5760
5761 ret = btrfs_reserve_extent(trans, root, blocksize, blocksize,
5762 empty_size, hint, (u64)-1, &ins, 0);
fec577fb 5763 if (ret) {
f0486c68 5764 unuse_block_rsv(block_rsv, blocksize);
54aa1f4d 5765 return ERR_PTR(ret);
fec577fb 5766 }
55c69072 5767
4008c04a
CM
5768 buf = btrfs_init_new_buffer(trans, root, ins.objectid,
5769 blocksize, level);
f0486c68
YZ
5770 BUG_ON(IS_ERR(buf));
5771
5772 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
5773 if (parent == 0)
5774 parent = ins.objectid;
5775 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
5776 } else
5777 BUG_ON(parent > 0);
5778
5779 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
5780 struct btrfs_delayed_extent_op *extent_op;
5781 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
5782 BUG_ON(!extent_op);
5783 if (key)
5784 memcpy(&extent_op->key, key, sizeof(extent_op->key));
5785 else
5786 memset(&extent_op->key, 0, sizeof(extent_op->key));
5787 extent_op->flags_to_set = flags;
5788 extent_op->update_key = 1;
5789 extent_op->update_flags = 1;
5790 extent_op->is_data = 0;
5791
5792 ret = btrfs_add_delayed_tree_ref(trans, ins.objectid,
5793 ins.offset, parent, root_objectid,
5794 level, BTRFS_ADD_DELAYED_EXTENT,
5795 extent_op);
5796 BUG_ON(ret);
5797 }
fec577fb
CM
5798 return buf;
5799}
a28ec197 5800
2c47e605
YZ
5801struct walk_control {
5802 u64 refs[BTRFS_MAX_LEVEL];
5803 u64 flags[BTRFS_MAX_LEVEL];
5804 struct btrfs_key update_progress;
5805 int stage;
5806 int level;
5807 int shared_level;
5808 int update_ref;
5809 int keep_locks;
1c4850e2
YZ
5810 int reada_slot;
5811 int reada_count;
2c47e605
YZ
5812};
5813
5814#define DROP_REFERENCE 1
5815#define UPDATE_BACKREF 2
5816
1c4850e2
YZ
5817static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
5818 struct btrfs_root *root,
5819 struct walk_control *wc,
5820 struct btrfs_path *path)
6407bf6d 5821{
1c4850e2
YZ
5822 u64 bytenr;
5823 u64 generation;
5824 u64 refs;
94fcca9f 5825 u64 flags;
5d4f98a2 5826 u32 nritems;
1c4850e2
YZ
5827 u32 blocksize;
5828 struct btrfs_key key;
5829 struct extent_buffer *eb;
6407bf6d 5830 int ret;
1c4850e2
YZ
5831 int slot;
5832 int nread = 0;
6407bf6d 5833
1c4850e2
YZ
5834 if (path->slots[wc->level] < wc->reada_slot) {
5835 wc->reada_count = wc->reada_count * 2 / 3;
5836 wc->reada_count = max(wc->reada_count, 2);
5837 } else {
5838 wc->reada_count = wc->reada_count * 3 / 2;
5839 wc->reada_count = min_t(int, wc->reada_count,
5840 BTRFS_NODEPTRS_PER_BLOCK(root));
5841 }
7bb86316 5842
1c4850e2
YZ
5843 eb = path->nodes[wc->level];
5844 nritems = btrfs_header_nritems(eb);
5845 blocksize = btrfs_level_size(root, wc->level - 1);
bd56b302 5846
1c4850e2
YZ
5847 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
5848 if (nread >= wc->reada_count)
5849 break;
bd56b302 5850
2dd3e67b 5851 cond_resched();
1c4850e2
YZ
5852 bytenr = btrfs_node_blockptr(eb, slot);
5853 generation = btrfs_node_ptr_generation(eb, slot);
2dd3e67b 5854
1c4850e2
YZ
5855 if (slot == path->slots[wc->level])
5856 goto reada;
5d4f98a2 5857
1c4850e2
YZ
5858 if (wc->stage == UPDATE_BACKREF &&
5859 generation <= root->root_key.offset)
bd56b302
CM
5860 continue;
5861
94fcca9f
YZ
5862 /* We don't lock the tree block, it's OK to be racy here */
5863 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
5864 &refs, &flags);
5865 BUG_ON(ret);
5866 BUG_ON(refs == 0);
5867
1c4850e2 5868 if (wc->stage == DROP_REFERENCE) {
1c4850e2
YZ
5869 if (refs == 1)
5870 goto reada;
bd56b302 5871
94fcca9f
YZ
5872 if (wc->level == 1 &&
5873 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5874 continue;
1c4850e2
YZ
5875 if (!wc->update_ref ||
5876 generation <= root->root_key.offset)
5877 continue;
5878 btrfs_node_key_to_cpu(eb, &key, slot);
5879 ret = btrfs_comp_cpu_keys(&key,
5880 &wc->update_progress);
5881 if (ret < 0)
5882 continue;
94fcca9f
YZ
5883 } else {
5884 if (wc->level == 1 &&
5885 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5886 continue;
6407bf6d 5887 }
1c4850e2
YZ
5888reada:
5889 ret = readahead_tree_block(root, bytenr, blocksize,
5890 generation);
5891 if (ret)
bd56b302 5892 break;
1c4850e2 5893 nread++;
20524f02 5894 }
1c4850e2 5895 wc->reada_slot = slot;
20524f02 5896}
2c47e605 5897
f82d02d9 5898/*
2c47e605
YZ
5899 * hepler to process tree block while walking down the tree.
5900 *
2c47e605
YZ
5901 * when wc->stage == UPDATE_BACKREF, this function updates
5902 * back refs for pointers in the block.
5903 *
5904 * NOTE: return value 1 means we should stop walking down.
f82d02d9 5905 */
2c47e605 5906static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
5d4f98a2 5907 struct btrfs_root *root,
2c47e605 5908 struct btrfs_path *path,
94fcca9f 5909 struct walk_control *wc, int lookup_info)
f82d02d9 5910{
2c47e605
YZ
5911 int level = wc->level;
5912 struct extent_buffer *eb = path->nodes[level];
2c47e605 5913 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
f82d02d9
YZ
5914 int ret;
5915
2c47e605
YZ
5916 if (wc->stage == UPDATE_BACKREF &&
5917 btrfs_header_owner(eb) != root->root_key.objectid)
5918 return 1;
f82d02d9 5919
2c47e605
YZ
5920 /*
5921 * when reference count of tree block is 1, it won't increase
5922 * again. once full backref flag is set, we never clear it.
5923 */
94fcca9f
YZ
5924 if (lookup_info &&
5925 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
5926 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
2c47e605
YZ
5927 BUG_ON(!path->locks[level]);
5928 ret = btrfs_lookup_extent_info(trans, root,
5929 eb->start, eb->len,
5930 &wc->refs[level],
5931 &wc->flags[level]);
5932 BUG_ON(ret);
5933 BUG_ON(wc->refs[level] == 0);
5934 }
5d4f98a2 5935
2c47e605
YZ
5936 if (wc->stage == DROP_REFERENCE) {
5937 if (wc->refs[level] > 1)
5938 return 1;
f82d02d9 5939
2c47e605
YZ
5940 if (path->locks[level] && !wc->keep_locks) {
5941 btrfs_tree_unlock(eb);
5942 path->locks[level] = 0;
5943 }
5944 return 0;
5945 }
f82d02d9 5946
2c47e605
YZ
5947 /* wc->stage == UPDATE_BACKREF */
5948 if (!(wc->flags[level] & flag)) {
5949 BUG_ON(!path->locks[level]);
5950 ret = btrfs_inc_ref(trans, root, eb, 1);
f82d02d9 5951 BUG_ON(ret);
2c47e605
YZ
5952 ret = btrfs_dec_ref(trans, root, eb, 0);
5953 BUG_ON(ret);
5954 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
5955 eb->len, flag, 0);
5956 BUG_ON(ret);
5957 wc->flags[level] |= flag;
5958 }
5959
5960 /*
5961 * the block is shared by multiple trees, so it's not good to
5962 * keep the tree lock
5963 */
5964 if (path->locks[level] && level > 0) {
5965 btrfs_tree_unlock(eb);
5966 path->locks[level] = 0;
5967 }
5968 return 0;
5969}
5970
1c4850e2
YZ
5971/*
5972 * hepler to process tree block pointer.
5973 *
5974 * when wc->stage == DROP_REFERENCE, this function checks
5975 * reference count of the block pointed to. if the block
5976 * is shared and we need update back refs for the subtree
5977 * rooted at the block, this function changes wc->stage to
5978 * UPDATE_BACKREF. if the block is shared and there is no
5979 * need to update back, this function drops the reference
5980 * to the block.
5981 *
5982 * NOTE: return value 1 means we should stop walking down.
5983 */
5984static noinline int do_walk_down(struct btrfs_trans_handle *trans,
5985 struct btrfs_root *root,
5986 struct btrfs_path *path,
94fcca9f 5987 struct walk_control *wc, int *lookup_info)
1c4850e2
YZ
5988{
5989 u64 bytenr;
5990 u64 generation;
5991 u64 parent;
5992 u32 blocksize;
5993 struct btrfs_key key;
5994 struct extent_buffer *next;
5995 int level = wc->level;
5996 int reada = 0;
5997 int ret = 0;
5998
5999 generation = btrfs_node_ptr_generation(path->nodes[level],
6000 path->slots[level]);
6001 /*
6002 * if the lower level block was created before the snapshot
6003 * was created, we know there is no need to update back refs
6004 * for the subtree
6005 */
6006 if (wc->stage == UPDATE_BACKREF &&
94fcca9f
YZ
6007 generation <= root->root_key.offset) {
6008 *lookup_info = 1;
1c4850e2 6009 return 1;
94fcca9f 6010 }
1c4850e2
YZ
6011
6012 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
6013 blocksize = btrfs_level_size(root, level - 1);
6014
6015 next = btrfs_find_tree_block(root, bytenr, blocksize);
6016 if (!next) {
6017 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
90d2c51d
MX
6018 if (!next)
6019 return -ENOMEM;
1c4850e2
YZ
6020 reada = 1;
6021 }
6022 btrfs_tree_lock(next);
6023 btrfs_set_lock_blocking(next);
6024
94fcca9f
YZ
6025 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
6026 &wc->refs[level - 1],
6027 &wc->flags[level - 1]);
6028 BUG_ON(ret);
6029 BUG_ON(wc->refs[level - 1] == 0);
6030 *lookup_info = 0;
1c4850e2 6031
94fcca9f 6032 if (wc->stage == DROP_REFERENCE) {
1c4850e2 6033 if (wc->refs[level - 1] > 1) {
94fcca9f
YZ
6034 if (level == 1 &&
6035 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
6036 goto skip;
6037
1c4850e2
YZ
6038 if (!wc->update_ref ||
6039 generation <= root->root_key.offset)
6040 goto skip;
6041
6042 btrfs_node_key_to_cpu(path->nodes[level], &key,
6043 path->slots[level]);
6044 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
6045 if (ret < 0)
6046 goto skip;
6047
6048 wc->stage = UPDATE_BACKREF;
6049 wc->shared_level = level - 1;
6050 }
94fcca9f
YZ
6051 } else {
6052 if (level == 1 &&
6053 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
6054 goto skip;
1c4850e2
YZ
6055 }
6056
6057 if (!btrfs_buffer_uptodate(next, generation)) {
6058 btrfs_tree_unlock(next);
6059 free_extent_buffer(next);
6060 next = NULL;
94fcca9f 6061 *lookup_info = 1;
1c4850e2
YZ
6062 }
6063
6064 if (!next) {
6065 if (reada && level == 1)
6066 reada_walk_down(trans, root, wc, path);
6067 next = read_tree_block(root, bytenr, blocksize, generation);
97d9a8a4
TI
6068 if (!next)
6069 return -EIO;
1c4850e2
YZ
6070 btrfs_tree_lock(next);
6071 btrfs_set_lock_blocking(next);
6072 }
6073
6074 level--;
6075 BUG_ON(level != btrfs_header_level(next));
6076 path->nodes[level] = next;
6077 path->slots[level] = 0;
6078 path->locks[level] = 1;
6079 wc->level = level;
6080 if (wc->level == 1)
6081 wc->reada_slot = 0;
6082 return 0;
6083skip:
6084 wc->refs[level - 1] = 0;
6085 wc->flags[level - 1] = 0;
94fcca9f
YZ
6086 if (wc->stage == DROP_REFERENCE) {
6087 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
6088 parent = path->nodes[level]->start;
6089 } else {
6090 BUG_ON(root->root_key.objectid !=
6091 btrfs_header_owner(path->nodes[level]));
6092 parent = 0;
6093 }
1c4850e2 6094
94fcca9f
YZ
6095 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
6096 root->root_key.objectid, level - 1, 0);
6097 BUG_ON(ret);
1c4850e2 6098 }
1c4850e2
YZ
6099 btrfs_tree_unlock(next);
6100 free_extent_buffer(next);
94fcca9f 6101 *lookup_info = 1;
1c4850e2
YZ
6102 return 1;
6103}
6104
2c47e605
YZ
6105/*
6106 * hepler to process tree block while walking up the tree.
6107 *
6108 * when wc->stage == DROP_REFERENCE, this function drops
6109 * reference count on the block.
6110 *
6111 * when wc->stage == UPDATE_BACKREF, this function changes
6112 * wc->stage back to DROP_REFERENCE if we changed wc->stage
6113 * to UPDATE_BACKREF previously while processing the block.
6114 *
6115 * NOTE: return value 1 means we should stop walking up.
6116 */
6117static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
6118 struct btrfs_root *root,
6119 struct btrfs_path *path,
6120 struct walk_control *wc)
6121{
f0486c68 6122 int ret;
2c47e605
YZ
6123 int level = wc->level;
6124 struct extent_buffer *eb = path->nodes[level];
6125 u64 parent = 0;
6126
6127 if (wc->stage == UPDATE_BACKREF) {
6128 BUG_ON(wc->shared_level < level);
6129 if (level < wc->shared_level)
6130 goto out;
6131
2c47e605
YZ
6132 ret = find_next_key(path, level + 1, &wc->update_progress);
6133 if (ret > 0)
6134 wc->update_ref = 0;
6135
6136 wc->stage = DROP_REFERENCE;
6137 wc->shared_level = -1;
6138 path->slots[level] = 0;
6139
6140 /*
6141 * check reference count again if the block isn't locked.
6142 * we should start walking down the tree again if reference
6143 * count is one.
6144 */
6145 if (!path->locks[level]) {
6146 BUG_ON(level == 0);
6147 btrfs_tree_lock(eb);
6148 btrfs_set_lock_blocking(eb);
6149 path->locks[level] = 1;
6150
6151 ret = btrfs_lookup_extent_info(trans, root,
6152 eb->start, eb->len,
6153 &wc->refs[level],
6154 &wc->flags[level]);
f82d02d9 6155 BUG_ON(ret);
2c47e605
YZ
6156 BUG_ON(wc->refs[level] == 0);
6157 if (wc->refs[level] == 1) {
6158 btrfs_tree_unlock(eb);
6159 path->locks[level] = 0;
6160 return 1;
6161 }
f82d02d9 6162 }
2c47e605 6163 }
f82d02d9 6164
2c47e605
YZ
6165 /* wc->stage == DROP_REFERENCE */
6166 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
5d4f98a2 6167
2c47e605
YZ
6168 if (wc->refs[level] == 1) {
6169 if (level == 0) {
6170 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6171 ret = btrfs_dec_ref(trans, root, eb, 1);
6172 else
6173 ret = btrfs_dec_ref(trans, root, eb, 0);
6174 BUG_ON(ret);
6175 }
6176 /* make block locked assertion in clean_tree_block happy */
6177 if (!path->locks[level] &&
6178 btrfs_header_generation(eb) == trans->transid) {
6179 btrfs_tree_lock(eb);
6180 btrfs_set_lock_blocking(eb);
6181 path->locks[level] = 1;
6182 }
6183 clean_tree_block(trans, root, eb);
6184 }
6185
6186 if (eb == root->node) {
6187 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6188 parent = eb->start;
6189 else
6190 BUG_ON(root->root_key.objectid !=
6191 btrfs_header_owner(eb));
6192 } else {
6193 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6194 parent = path->nodes[level + 1]->start;
6195 else
6196 BUG_ON(root->root_key.objectid !=
6197 btrfs_header_owner(path->nodes[level + 1]));
f82d02d9 6198 }
f82d02d9 6199
f0486c68 6200 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
2c47e605
YZ
6201out:
6202 wc->refs[level] = 0;
6203 wc->flags[level] = 0;
f0486c68 6204 return 0;
2c47e605
YZ
6205}
6206
6207static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
6208 struct btrfs_root *root,
6209 struct btrfs_path *path,
6210 struct walk_control *wc)
6211{
2c47e605 6212 int level = wc->level;
94fcca9f 6213 int lookup_info = 1;
2c47e605
YZ
6214 int ret;
6215
6216 while (level >= 0) {
94fcca9f 6217 ret = walk_down_proc(trans, root, path, wc, lookup_info);
2c47e605
YZ
6218 if (ret > 0)
6219 break;
6220
6221 if (level == 0)
6222 break;
6223
7a7965f8
YZ
6224 if (path->slots[level] >=
6225 btrfs_header_nritems(path->nodes[level]))
6226 break;
6227
94fcca9f 6228 ret = do_walk_down(trans, root, path, wc, &lookup_info);
1c4850e2
YZ
6229 if (ret > 0) {
6230 path->slots[level]++;
6231 continue;
90d2c51d
MX
6232 } else if (ret < 0)
6233 return ret;
1c4850e2 6234 level = wc->level;
f82d02d9 6235 }
f82d02d9
YZ
6236 return 0;
6237}
6238
d397712b 6239static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
98ed5174 6240 struct btrfs_root *root,
f82d02d9 6241 struct btrfs_path *path,
2c47e605 6242 struct walk_control *wc, int max_level)
20524f02 6243{
2c47e605 6244 int level = wc->level;
20524f02 6245 int ret;
9f3a7427 6246
2c47e605
YZ
6247 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
6248 while (level < max_level && path->nodes[level]) {
6249 wc->level = level;
6250 if (path->slots[level] + 1 <
6251 btrfs_header_nritems(path->nodes[level])) {
6252 path->slots[level]++;
20524f02
CM
6253 return 0;
6254 } else {
2c47e605
YZ
6255 ret = walk_up_proc(trans, root, path, wc);
6256 if (ret > 0)
6257 return 0;
bd56b302 6258
2c47e605
YZ
6259 if (path->locks[level]) {
6260 btrfs_tree_unlock(path->nodes[level]);
6261 path->locks[level] = 0;
f82d02d9 6262 }
2c47e605
YZ
6263 free_extent_buffer(path->nodes[level]);
6264 path->nodes[level] = NULL;
6265 level++;
20524f02
CM
6266 }
6267 }
6268 return 1;
6269}
6270
9aca1d51 6271/*
2c47e605
YZ
6272 * drop a subvolume tree.
6273 *
6274 * this function traverses the tree freeing any blocks that only
6275 * referenced by the tree.
6276 *
6277 * when a shared tree block is found. this function decreases its
6278 * reference count by one. if update_ref is true, this function
6279 * also make sure backrefs for the shared block and all lower level
6280 * blocks are properly updated.
9aca1d51 6281 */
3fd0a558
YZ
6282int btrfs_drop_snapshot(struct btrfs_root *root,
6283 struct btrfs_block_rsv *block_rsv, int update_ref)
20524f02 6284{
5caf2a00 6285 struct btrfs_path *path;
2c47e605
YZ
6286 struct btrfs_trans_handle *trans;
6287 struct btrfs_root *tree_root = root->fs_info->tree_root;
9f3a7427 6288 struct btrfs_root_item *root_item = &root->root_item;
2c47e605
YZ
6289 struct walk_control *wc;
6290 struct btrfs_key key;
6291 int err = 0;
6292 int ret;
6293 int level;
20524f02 6294
5caf2a00
CM
6295 path = btrfs_alloc_path();
6296 BUG_ON(!path);
20524f02 6297
2c47e605
YZ
6298 wc = kzalloc(sizeof(*wc), GFP_NOFS);
6299 BUG_ON(!wc);
6300
a22285a6 6301 trans = btrfs_start_transaction(tree_root, 0);
98d5dc13
TI
6302 BUG_ON(IS_ERR(trans));
6303
3fd0a558
YZ
6304 if (block_rsv)
6305 trans->block_rsv = block_rsv;
2c47e605 6306
9f3a7427 6307 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2c47e605 6308 level = btrfs_header_level(root->node);
5d4f98a2
YZ
6309 path->nodes[level] = btrfs_lock_root_node(root);
6310 btrfs_set_lock_blocking(path->nodes[level]);
9f3a7427 6311 path->slots[level] = 0;
5d4f98a2 6312 path->locks[level] = 1;
2c47e605
YZ
6313 memset(&wc->update_progress, 0,
6314 sizeof(wc->update_progress));
9f3a7427 6315 } else {
9f3a7427 6316 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
2c47e605
YZ
6317 memcpy(&wc->update_progress, &key,
6318 sizeof(wc->update_progress));
6319
6702ed49 6320 level = root_item->drop_level;
2c47e605 6321 BUG_ON(level == 0);
6702ed49 6322 path->lowest_level = level;
2c47e605
YZ
6323 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6324 path->lowest_level = 0;
6325 if (ret < 0) {
6326 err = ret;
9f3a7427
CM
6327 goto out;
6328 }
1c4850e2 6329 WARN_ON(ret > 0);
2c47e605 6330
7d9eb12c
CM
6331 /*
6332 * unlock our path, this is safe because only this
6333 * function is allowed to delete this snapshot
6334 */
5d4f98a2 6335 btrfs_unlock_up_safe(path, 0);
2c47e605
YZ
6336
6337 level = btrfs_header_level(root->node);
6338 while (1) {
6339 btrfs_tree_lock(path->nodes[level]);
6340 btrfs_set_lock_blocking(path->nodes[level]);
6341
6342 ret = btrfs_lookup_extent_info(trans, root,
6343 path->nodes[level]->start,
6344 path->nodes[level]->len,
6345 &wc->refs[level],
6346 &wc->flags[level]);
6347 BUG_ON(ret);
6348 BUG_ON(wc->refs[level] == 0);
6349
6350 if (level == root_item->drop_level)
6351 break;
6352
6353 btrfs_tree_unlock(path->nodes[level]);
6354 WARN_ON(wc->refs[level] != 1);
6355 level--;
6356 }
9f3a7427 6357 }
2c47e605
YZ
6358
6359 wc->level = level;
6360 wc->shared_level = -1;
6361 wc->stage = DROP_REFERENCE;
6362 wc->update_ref = update_ref;
6363 wc->keep_locks = 0;
1c4850e2 6364 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
2c47e605 6365
d397712b 6366 while (1) {
2c47e605
YZ
6367 ret = walk_down_tree(trans, root, path, wc);
6368 if (ret < 0) {
6369 err = ret;
20524f02 6370 break;
2c47e605 6371 }
9aca1d51 6372
2c47e605
YZ
6373 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
6374 if (ret < 0) {
6375 err = ret;
20524f02 6376 break;
2c47e605
YZ
6377 }
6378
6379 if (ret > 0) {
6380 BUG_ON(wc->stage != DROP_REFERENCE);
e7a84565
CM
6381 break;
6382 }
2c47e605
YZ
6383
6384 if (wc->stage == DROP_REFERENCE) {
6385 level = wc->level;
6386 btrfs_node_key(path->nodes[level],
6387 &root_item->drop_progress,
6388 path->slots[level]);
6389 root_item->drop_level = level;
6390 }
6391
6392 BUG_ON(wc->level == 0);
3fd0a558 6393 if (btrfs_should_end_transaction(trans, tree_root)) {
2c47e605
YZ
6394 ret = btrfs_update_root(trans, tree_root,
6395 &root->root_key,
6396 root_item);
6397 BUG_ON(ret);
6398
3fd0a558 6399 btrfs_end_transaction_throttle(trans, tree_root);
a22285a6 6400 trans = btrfs_start_transaction(tree_root, 0);
98d5dc13 6401 BUG_ON(IS_ERR(trans));
3fd0a558
YZ
6402 if (block_rsv)
6403 trans->block_rsv = block_rsv;
c3e69d58 6404 }
20524f02 6405 }
2c47e605
YZ
6406 btrfs_release_path(root, path);
6407 BUG_ON(err);
6408
6409 ret = btrfs_del_root(trans, tree_root, &root->root_key);
6410 BUG_ON(ret);
6411
76dda93c
YZ
6412 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
6413 ret = btrfs_find_last_root(tree_root, root->root_key.objectid,
6414 NULL, NULL);
6415 BUG_ON(ret < 0);
6416 if (ret > 0) {
84cd948c
JB
6417 /* if we fail to delete the orphan item this time
6418 * around, it'll get picked up the next time.
6419 *
6420 * The most common failure here is just -ENOENT.
6421 */
6422 btrfs_del_orphan_item(trans, tree_root,
6423 root->root_key.objectid);
76dda93c
YZ
6424 }
6425 }
6426
6427 if (root->in_radix) {
6428 btrfs_free_fs_root(tree_root->fs_info, root);
6429 } else {
6430 free_extent_buffer(root->node);
6431 free_extent_buffer(root->commit_root);
6432 kfree(root);
6433 }
9f3a7427 6434out:
3fd0a558 6435 btrfs_end_transaction_throttle(trans, tree_root);
2c47e605 6436 kfree(wc);
5caf2a00 6437 btrfs_free_path(path);
2c47e605 6438 return err;
20524f02 6439}
9078a3e1 6440
2c47e605
YZ
6441/*
6442 * drop subtree rooted at tree block 'node'.
6443 *
6444 * NOTE: this function will unlock and release tree block 'node'
6445 */
f82d02d9
YZ
6446int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
6447 struct btrfs_root *root,
6448 struct extent_buffer *node,
6449 struct extent_buffer *parent)
6450{
6451 struct btrfs_path *path;
2c47e605 6452 struct walk_control *wc;
f82d02d9
YZ
6453 int level;
6454 int parent_level;
6455 int ret = 0;
6456 int wret;
6457
2c47e605
YZ
6458 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
6459
f82d02d9 6460 path = btrfs_alloc_path();
db5b493a
TI
6461 if (!path)
6462 return -ENOMEM;
f82d02d9 6463
2c47e605 6464 wc = kzalloc(sizeof(*wc), GFP_NOFS);
db5b493a
TI
6465 if (!wc) {
6466 btrfs_free_path(path);
6467 return -ENOMEM;
6468 }
2c47e605 6469
b9447ef8 6470 btrfs_assert_tree_locked(parent);
f82d02d9
YZ
6471 parent_level = btrfs_header_level(parent);
6472 extent_buffer_get(parent);
6473 path->nodes[parent_level] = parent;
6474 path->slots[parent_level] = btrfs_header_nritems(parent);
6475
b9447ef8 6476 btrfs_assert_tree_locked(node);
f82d02d9 6477 level = btrfs_header_level(node);
f82d02d9
YZ
6478 path->nodes[level] = node;
6479 path->slots[level] = 0;
2c47e605
YZ
6480 path->locks[level] = 1;
6481
6482 wc->refs[parent_level] = 1;
6483 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
6484 wc->level = level;
6485 wc->shared_level = -1;
6486 wc->stage = DROP_REFERENCE;
6487 wc->update_ref = 0;
6488 wc->keep_locks = 1;
1c4850e2 6489 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
f82d02d9
YZ
6490
6491 while (1) {
2c47e605
YZ
6492 wret = walk_down_tree(trans, root, path, wc);
6493 if (wret < 0) {
f82d02d9 6494 ret = wret;
f82d02d9 6495 break;
2c47e605 6496 }
f82d02d9 6497
2c47e605 6498 wret = walk_up_tree(trans, root, path, wc, parent_level);
f82d02d9
YZ
6499 if (wret < 0)
6500 ret = wret;
6501 if (wret != 0)
6502 break;
6503 }
6504
2c47e605 6505 kfree(wc);
f82d02d9
YZ
6506 btrfs_free_path(path);
6507 return ret;
6508}
6509
5d4f98a2 6510#if 0
8e7bf94f
CM
6511static unsigned long calc_ra(unsigned long start, unsigned long last,
6512 unsigned long nr)
6513{
6514 return min(last, start + nr - 1);
6515}
6516
d397712b 6517static noinline int relocate_inode_pages(struct inode *inode, u64 start,
98ed5174 6518 u64 len)
edbd8d4e
CM
6519{
6520 u64 page_start;
6521 u64 page_end;
1a40e23b 6522 unsigned long first_index;
edbd8d4e 6523 unsigned long last_index;
edbd8d4e
CM
6524 unsigned long i;
6525 struct page *page;
d1310b2e 6526 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4313b399 6527 struct file_ra_state *ra;
3eaa2885 6528 struct btrfs_ordered_extent *ordered;
1a40e23b
ZY
6529 unsigned int total_read = 0;
6530 unsigned int total_dirty = 0;
6531 int ret = 0;
4313b399
CM
6532
6533 ra = kzalloc(sizeof(*ra), GFP_NOFS);
5df67083
TI
6534 if (!ra)
6535 return -ENOMEM;
edbd8d4e
CM
6536
6537 mutex_lock(&inode->i_mutex);
1a40e23b 6538 first_index = start >> PAGE_CACHE_SHIFT;
edbd8d4e
CM
6539 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
6540
1a40e23b
ZY
6541 /* make sure the dirty trick played by the caller work */
6542 ret = invalidate_inode_pages2_range(inode->i_mapping,
6543 first_index, last_index);
6544 if (ret)
6545 goto out_unlock;
8e7bf94f 6546
4313b399 6547 file_ra_state_init(ra, inode->i_mapping);
edbd8d4e 6548
1a40e23b
ZY
6549 for (i = first_index ; i <= last_index; i++) {
6550 if (total_read % ra->ra_pages == 0) {
8e7bf94f 6551 btrfs_force_ra(inode->i_mapping, ra, NULL, i,
1a40e23b 6552 calc_ra(i, last_index, ra->ra_pages));
8e7bf94f
CM
6553 }
6554 total_read++;
3eaa2885
CM
6555again:
6556 if (((u64)i << PAGE_CACHE_SHIFT) > i_size_read(inode))
1a40e23b 6557 BUG_ON(1);
edbd8d4e 6558 page = grab_cache_page(inode->i_mapping, i);
a061fc8d 6559 if (!page) {
1a40e23b 6560 ret = -ENOMEM;
edbd8d4e 6561 goto out_unlock;
a061fc8d 6562 }
edbd8d4e
CM
6563 if (!PageUptodate(page)) {
6564 btrfs_readpage(NULL, page);
6565 lock_page(page);
6566 if (!PageUptodate(page)) {
6567 unlock_page(page);
6568 page_cache_release(page);
1a40e23b 6569 ret = -EIO;
edbd8d4e
CM
6570 goto out_unlock;
6571 }
6572 }
ec44a35c 6573 wait_on_page_writeback(page);
3eaa2885 6574
edbd8d4e
CM
6575 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
6576 page_end = page_start + PAGE_CACHE_SIZE - 1;
d1310b2e 6577 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
edbd8d4e 6578
3eaa2885
CM
6579 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6580 if (ordered) {
6581 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
6582 unlock_page(page);
6583 page_cache_release(page);
6584 btrfs_start_ordered_extent(inode, ordered, 1);
6585 btrfs_put_ordered_extent(ordered);
6586 goto again;
6587 }
6588 set_page_extent_mapped(page);
6589
1a40e23b
ZY
6590 if (i == first_index)
6591 set_extent_bits(io_tree, page_start, page_end,
6592 EXTENT_BOUNDARY, GFP_NOFS);
1f80e4db 6593 btrfs_set_extent_delalloc(inode, page_start, page_end);
1a40e23b 6594
a061fc8d 6595 set_page_dirty(page);
1a40e23b 6596 total_dirty++;
edbd8d4e 6597
d1310b2e 6598 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
edbd8d4e
CM
6599 unlock_page(page);
6600 page_cache_release(page);
6601 }
6602
6603out_unlock:
ec44a35c 6604 kfree(ra);
edbd8d4e 6605 mutex_unlock(&inode->i_mutex);
1a40e23b
ZY
6606 balance_dirty_pages_ratelimited_nr(inode->i_mapping, total_dirty);
6607 return ret;
edbd8d4e
CM
6608}
6609
d397712b 6610static noinline int relocate_data_extent(struct inode *reloc_inode,
1a40e23b
ZY
6611 struct btrfs_key *extent_key,
6612 u64 offset)
6613{
6614 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
6615 struct extent_map_tree *em_tree = &BTRFS_I(reloc_inode)->extent_tree;
6616 struct extent_map *em;
6643558d
YZ
6617 u64 start = extent_key->objectid - offset;
6618 u64 end = start + extent_key->offset - 1;
bf4ef679 6619
1a40e23b 6620 em = alloc_extent_map(GFP_NOFS);
c26a9203 6621 BUG_ON(!em);
bf4ef679 6622
6643558d 6623 em->start = start;
1a40e23b 6624 em->len = extent_key->offset;
c8b97818 6625 em->block_len = extent_key->offset;
1a40e23b
ZY
6626 em->block_start = extent_key->objectid;
6627 em->bdev = root->fs_info->fs_devices->latest_bdev;
6628 set_bit(EXTENT_FLAG_PINNED, &em->flags);
6629
6630 /* setup extent map to cheat btrfs_readpage */
6643558d 6631 lock_extent(&BTRFS_I(reloc_inode)->io_tree, start, end, GFP_NOFS);
1a40e23b
ZY
6632 while (1) {
6633 int ret;
890871be 6634 write_lock(&em_tree->lock);
1a40e23b 6635 ret = add_extent_mapping(em_tree, em);
890871be 6636 write_unlock(&em_tree->lock);
1a40e23b
ZY
6637 if (ret != -EEXIST) {
6638 free_extent_map(em);
bf4ef679
CM
6639 break;
6640 }
6643558d 6641 btrfs_drop_extent_cache(reloc_inode, start, end, 0);
bf4ef679 6642 }
6643558d 6643 unlock_extent(&BTRFS_I(reloc_inode)->io_tree, start, end, GFP_NOFS);
bf4ef679 6644
6643558d 6645 return relocate_inode_pages(reloc_inode, start, extent_key->offset);
1a40e23b 6646}
edbd8d4e 6647
1a40e23b
ZY
6648struct btrfs_ref_path {
6649 u64 extent_start;
6650 u64 nodes[BTRFS_MAX_LEVEL];
6651 u64 root_objectid;
6652 u64 root_generation;
6653 u64 owner_objectid;
1a40e23b
ZY
6654 u32 num_refs;
6655 int lowest_level;
6656 int current_level;
f82d02d9
YZ
6657 int shared_level;
6658
6659 struct btrfs_key node_keys[BTRFS_MAX_LEVEL];
6660 u64 new_nodes[BTRFS_MAX_LEVEL];
1a40e23b 6661};
7d9eb12c 6662
1a40e23b 6663struct disk_extent {
c8b97818 6664 u64 ram_bytes;
1a40e23b
ZY
6665 u64 disk_bytenr;
6666 u64 disk_num_bytes;
6667 u64 offset;
6668 u64 num_bytes;
c8b97818
CM
6669 u8 compression;
6670 u8 encryption;
6671 u16 other_encoding;
1a40e23b 6672};
4313b399 6673
1a40e23b
ZY
6674static int is_cowonly_root(u64 root_objectid)
6675{
6676 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID ||
6677 root_objectid == BTRFS_EXTENT_TREE_OBJECTID ||
6678 root_objectid == BTRFS_CHUNK_TREE_OBJECTID ||
6679 root_objectid == BTRFS_DEV_TREE_OBJECTID ||
0403e47e
YZ
6680 root_objectid == BTRFS_TREE_LOG_OBJECTID ||
6681 root_objectid == BTRFS_CSUM_TREE_OBJECTID)
1a40e23b
ZY
6682 return 1;
6683 return 0;
6684}
edbd8d4e 6685
d397712b 6686static noinline int __next_ref_path(struct btrfs_trans_handle *trans,
1a40e23b
ZY
6687 struct btrfs_root *extent_root,
6688 struct btrfs_ref_path *ref_path,
6689 int first_time)
6690{
6691 struct extent_buffer *leaf;
6692 struct btrfs_path *path;
6693 struct btrfs_extent_ref *ref;
6694 struct btrfs_key key;
6695 struct btrfs_key found_key;
6696 u64 bytenr;
6697 u32 nritems;
6698 int level;
6699 int ret = 1;
edbd8d4e 6700
1a40e23b
ZY
6701 path = btrfs_alloc_path();
6702 if (!path)
6703 return -ENOMEM;
bf4ef679 6704
1a40e23b
ZY
6705 if (first_time) {
6706 ref_path->lowest_level = -1;
6707 ref_path->current_level = -1;
f82d02d9 6708 ref_path->shared_level = -1;
1a40e23b
ZY
6709 goto walk_up;
6710 }
6711walk_down:
6712 level = ref_path->current_level - 1;
6713 while (level >= -1) {
6714 u64 parent;
6715 if (level < ref_path->lowest_level)
6716 break;
bf4ef679 6717
d397712b 6718 if (level >= 0)
1a40e23b 6719 bytenr = ref_path->nodes[level];
d397712b 6720 else
1a40e23b 6721 bytenr = ref_path->extent_start;
1a40e23b 6722 BUG_ON(bytenr == 0);
bf4ef679 6723
1a40e23b
ZY
6724 parent = ref_path->nodes[level + 1];
6725 ref_path->nodes[level + 1] = 0;
6726 ref_path->current_level = level;
6727 BUG_ON(parent == 0);
0ef3e66b 6728
1a40e23b
ZY
6729 key.objectid = bytenr;
6730 key.offset = parent + 1;
6731 key.type = BTRFS_EXTENT_REF_KEY;
edbd8d4e 6732
1a40e23b
ZY
6733 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 0);
6734 if (ret < 0)
edbd8d4e 6735 goto out;
1a40e23b 6736 BUG_ON(ret == 0);
7d9eb12c 6737
1a40e23b
ZY
6738 leaf = path->nodes[0];
6739 nritems = btrfs_header_nritems(leaf);
6740 if (path->slots[0] >= nritems) {
6741 ret = btrfs_next_leaf(extent_root, path);
6742 if (ret < 0)
6743 goto out;
6744 if (ret > 0)
6745 goto next;
6746 leaf = path->nodes[0];
6747 }
0ef3e66b 6748
1a40e23b
ZY
6749 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6750 if (found_key.objectid == bytenr &&
f82d02d9
YZ
6751 found_key.type == BTRFS_EXTENT_REF_KEY) {
6752 if (level < ref_path->shared_level)
6753 ref_path->shared_level = level;
1a40e23b 6754 goto found;
f82d02d9 6755 }
1a40e23b
ZY
6756next:
6757 level--;
6758 btrfs_release_path(extent_root, path);
d899e052 6759 cond_resched();
1a40e23b
ZY
6760 }
6761 /* reached lowest level */
6762 ret = 1;
6763 goto out;
6764walk_up:
6765 level = ref_path->current_level;
6766 while (level < BTRFS_MAX_LEVEL - 1) {
6767 u64 ref_objectid;
d397712b
CM
6768
6769 if (level >= 0)
1a40e23b 6770 bytenr = ref_path->nodes[level];
d397712b 6771 else
1a40e23b 6772 bytenr = ref_path->extent_start;
d397712b 6773
1a40e23b 6774 BUG_ON(bytenr == 0);
edbd8d4e 6775
1a40e23b
ZY
6776 key.objectid = bytenr;
6777 key.offset = 0;
6778 key.type = BTRFS_EXTENT_REF_KEY;
edbd8d4e 6779
1a40e23b
ZY
6780 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 0);
6781 if (ret < 0)
6782 goto out;
edbd8d4e 6783
1a40e23b
ZY
6784 leaf = path->nodes[0];
6785 nritems = btrfs_header_nritems(leaf);
6786 if (path->slots[0] >= nritems) {
6787 ret = btrfs_next_leaf(extent_root, path);
6788 if (ret < 0)
6789 goto out;
6790 if (ret > 0) {
6791 /* the extent was freed by someone */
6792 if (ref_path->lowest_level == level)
6793 goto out;
6794 btrfs_release_path(extent_root, path);
6795 goto walk_down;
6796 }
6797 leaf = path->nodes[0];
6798 }
edbd8d4e 6799
1a40e23b
ZY
6800 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6801 if (found_key.objectid != bytenr ||
6802 found_key.type != BTRFS_EXTENT_REF_KEY) {
6803 /* the extent was freed by someone */
6804 if (ref_path->lowest_level == level) {
6805 ret = 1;
6806 goto out;
6807 }
6808 btrfs_release_path(extent_root, path);
6809 goto walk_down;
6810 }
6811found:
6812 ref = btrfs_item_ptr(leaf, path->slots[0],
6813 struct btrfs_extent_ref);
6814 ref_objectid = btrfs_ref_objectid(leaf, ref);
6815 if (ref_objectid < BTRFS_FIRST_FREE_OBJECTID) {
6816 if (first_time) {
6817 level = (int)ref_objectid;
6818 BUG_ON(level >= BTRFS_MAX_LEVEL);
6819 ref_path->lowest_level = level;
6820 ref_path->current_level = level;
6821 ref_path->nodes[level] = bytenr;
6822 } else {
6823 WARN_ON(ref_objectid != level);
6824 }
6825 } else {
6826 WARN_ON(level != -1);
6827 }
6828 first_time = 0;
bf4ef679 6829
1a40e23b
ZY
6830 if (ref_path->lowest_level == level) {
6831 ref_path->owner_objectid = ref_objectid;
1a40e23b
ZY
6832 ref_path->num_refs = btrfs_ref_num_refs(leaf, ref);
6833 }
bf4ef679 6834
7d9eb12c 6835 /*
1a40e23b
ZY
6836 * the block is tree root or the block isn't in reference
6837 * counted tree.
7d9eb12c 6838 */
1a40e23b
ZY
6839 if (found_key.objectid == found_key.offset ||
6840 is_cowonly_root(btrfs_ref_root(leaf, ref))) {
6841 ref_path->root_objectid = btrfs_ref_root(leaf, ref);
6842 ref_path->root_generation =
6843 btrfs_ref_generation(leaf, ref);
6844 if (level < 0) {
6845 /* special reference from the tree log */
6846 ref_path->nodes[0] = found_key.offset;
6847 ref_path->current_level = 0;
6848 }
6849 ret = 0;
6850 goto out;
6851 }
7d9eb12c 6852
1a40e23b
ZY
6853 level++;
6854 BUG_ON(ref_path->nodes[level] != 0);
6855 ref_path->nodes[level] = found_key.offset;
6856 ref_path->current_level = level;
bf4ef679 6857
1a40e23b
ZY
6858 /*
6859 * the reference was created in the running transaction,
6860 * no need to continue walking up.
6861 */
6862 if (btrfs_ref_generation(leaf, ref) == trans->transid) {
6863 ref_path->root_objectid = btrfs_ref_root(leaf, ref);
6864 ref_path->root_generation =
6865 btrfs_ref_generation(leaf, ref);
6866 ret = 0;
6867 goto out;
7d9eb12c
CM
6868 }
6869
1a40e23b 6870 btrfs_release_path(extent_root, path);
d899e052 6871 cond_resched();
7d9eb12c 6872 }
1a40e23b
ZY
6873 /* reached max tree level, but no tree root found. */
6874 BUG();
edbd8d4e 6875out:
1a40e23b
ZY
6876 btrfs_free_path(path);
6877 return ret;
edbd8d4e
CM
6878}
6879
1a40e23b
ZY
6880static int btrfs_first_ref_path(struct btrfs_trans_handle *trans,
6881 struct btrfs_root *extent_root,
6882 struct btrfs_ref_path *ref_path,
6883 u64 extent_start)
a061fc8d 6884{
1a40e23b
ZY
6885 memset(ref_path, 0, sizeof(*ref_path));
6886 ref_path->extent_start = extent_start;
a061fc8d 6887
1a40e23b 6888 return __next_ref_path(trans, extent_root, ref_path, 1);
a061fc8d
CM
6889}
6890
1a40e23b
ZY
6891static int btrfs_next_ref_path(struct btrfs_trans_handle *trans,
6892 struct btrfs_root *extent_root,
6893 struct btrfs_ref_path *ref_path)
edbd8d4e 6894{
1a40e23b
ZY
6895 return __next_ref_path(trans, extent_root, ref_path, 0);
6896}
6897
d397712b 6898static noinline int get_new_locations(struct inode *reloc_inode,
1a40e23b
ZY
6899 struct btrfs_key *extent_key,
6900 u64 offset, int no_fragment,
6901 struct disk_extent **extents,
6902 int *nr_extents)
6903{
6904 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
6905 struct btrfs_path *path;
6906 struct btrfs_file_extent_item *fi;
edbd8d4e 6907 struct extent_buffer *leaf;
1a40e23b
ZY
6908 struct disk_extent *exts = *extents;
6909 struct btrfs_key found_key;
6910 u64 cur_pos;
6911 u64 last_byte;
edbd8d4e 6912 u32 nritems;
1a40e23b
ZY
6913 int nr = 0;
6914 int max = *nr_extents;
6915 int ret;
edbd8d4e 6916
1a40e23b
ZY
6917 WARN_ON(!no_fragment && *extents);
6918 if (!exts) {
6919 max = 1;
6920 exts = kmalloc(sizeof(*exts) * max, GFP_NOFS);
6921 if (!exts)
6922 return -ENOMEM;
a061fc8d 6923 }
edbd8d4e 6924
1a40e23b 6925 path = btrfs_alloc_path();
db5b493a
TI
6926 if (!path) {
6927 if (exts != *extents)
6928 kfree(exts);
6929 return -ENOMEM;
6930 }
edbd8d4e 6931
1a40e23b
ZY
6932 cur_pos = extent_key->objectid - offset;
6933 last_byte = extent_key->objectid + extent_key->offset;
6934 ret = btrfs_lookup_file_extent(NULL, root, path, reloc_inode->i_ino,
6935 cur_pos, 0);
6936 if (ret < 0)
6937 goto out;
6938 if (ret > 0) {
6939 ret = -ENOENT;
6940 goto out;
6941 }
edbd8d4e 6942
1a40e23b 6943 while (1) {
edbd8d4e
CM
6944 leaf = path->nodes[0];
6945 nritems = btrfs_header_nritems(leaf);
1a40e23b
ZY
6946 if (path->slots[0] >= nritems) {
6947 ret = btrfs_next_leaf(root, path);
a061fc8d
CM
6948 if (ret < 0)
6949 goto out;
1a40e23b
ZY
6950 if (ret > 0)
6951 break;
bf4ef679 6952 leaf = path->nodes[0];
a061fc8d 6953 }
edbd8d4e
CM
6954
6955 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1a40e23b
ZY
6956 if (found_key.offset != cur_pos ||
6957 found_key.type != BTRFS_EXTENT_DATA_KEY ||
6958 found_key.objectid != reloc_inode->i_ino)
edbd8d4e
CM
6959 break;
6960
1a40e23b
ZY
6961 fi = btrfs_item_ptr(leaf, path->slots[0],
6962 struct btrfs_file_extent_item);
6963 if (btrfs_file_extent_type(leaf, fi) !=
6964 BTRFS_FILE_EXTENT_REG ||
6965 btrfs_file_extent_disk_bytenr(leaf, fi) == 0)
edbd8d4e 6966 break;
1a40e23b
ZY
6967
6968 if (nr == max) {
6969 struct disk_extent *old = exts;
6970 max *= 2;
6971 exts = kzalloc(sizeof(*exts) * max, GFP_NOFS);
6972 memcpy(exts, old, sizeof(*exts) * nr);
6973 if (old != *extents)
6974 kfree(old);
a061fc8d 6975 }
edbd8d4e 6976
1a40e23b
ZY
6977 exts[nr].disk_bytenr =
6978 btrfs_file_extent_disk_bytenr(leaf, fi);
6979 exts[nr].disk_num_bytes =
6980 btrfs_file_extent_disk_num_bytes(leaf, fi);
6981 exts[nr].offset = btrfs_file_extent_offset(leaf, fi);
6982 exts[nr].num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
c8b97818
CM
6983 exts[nr].ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
6984 exts[nr].compression = btrfs_file_extent_compression(leaf, fi);
6985 exts[nr].encryption = btrfs_file_extent_encryption(leaf, fi);
6986 exts[nr].other_encoding = btrfs_file_extent_other_encoding(leaf,
6987 fi);
d899e052
YZ
6988 BUG_ON(exts[nr].offset > 0);
6989 BUG_ON(exts[nr].compression || exts[nr].encryption);
6990 BUG_ON(exts[nr].num_bytes != exts[nr].disk_num_bytes);
edbd8d4e 6991
1a40e23b
ZY
6992 cur_pos += exts[nr].num_bytes;
6993 nr++;
6994
6995 if (cur_pos + offset >= last_byte)
6996 break;
6997
6998 if (no_fragment) {
6999 ret = 1;
edbd8d4e 7000 goto out;
1a40e23b
ZY
7001 }
7002 path->slots[0]++;
7003 }
7004
1f80e4db 7005 BUG_ON(cur_pos + offset > last_byte);
1a40e23b
ZY
7006 if (cur_pos + offset < last_byte) {
7007 ret = -ENOENT;
7008 goto out;
edbd8d4e
CM
7009 }
7010 ret = 0;
7011out:
1a40e23b
ZY
7012 btrfs_free_path(path);
7013 if (ret) {
7014 if (exts != *extents)
7015 kfree(exts);
7016 } else {
7017 *extents = exts;
7018 *nr_extents = nr;
7019 }
7020 return ret;
7021}
7022
d397712b 7023static noinline int replace_one_extent(struct btrfs_trans_handle *trans,
1a40e23b
ZY
7024 struct btrfs_root *root,
7025 struct btrfs_path *path,
7026 struct btrfs_key *extent_key,
7027 struct btrfs_key *leaf_key,
7028 struct btrfs_ref_path *ref_path,
7029 struct disk_extent *new_extents,
7030 int nr_extents)
7031{
7032 struct extent_buffer *leaf;
7033 struct btrfs_file_extent_item *fi;
7034 struct inode *inode = NULL;
7035 struct btrfs_key key;
7036 u64 lock_start = 0;
7037 u64 lock_end = 0;
7038 u64 num_bytes;
7039 u64 ext_offset;
86288a19 7040 u64 search_end = (u64)-1;
1a40e23b 7041 u32 nritems;
3bb1a1bc 7042 int nr_scaned = 0;
1a40e23b 7043 int extent_locked = 0;
d899e052 7044 int extent_type;
1a40e23b
ZY
7045 int ret;
7046
3bb1a1bc 7047 memcpy(&key, leaf_key, sizeof(key));
1a40e23b 7048 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS) {
3bb1a1bc
YZ
7049 if (key.objectid < ref_path->owner_objectid ||
7050 (key.objectid == ref_path->owner_objectid &&
7051 key.type < BTRFS_EXTENT_DATA_KEY)) {
7052 key.objectid = ref_path->owner_objectid;
7053 key.type = BTRFS_EXTENT_DATA_KEY;
7054 key.offset = 0;
7055 }
1a40e23b
ZY
7056 }
7057
7058 while (1) {
7059 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
7060 if (ret < 0)
7061 goto out;
7062
7063 leaf = path->nodes[0];
7064 nritems = btrfs_header_nritems(leaf);
7065next:
7066 if (extent_locked && ret > 0) {
7067 /*
7068 * the file extent item was modified by someone
7069 * before the extent got locked.
7070 */
1a40e23b
ZY
7071 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7072 lock_end, GFP_NOFS);
7073 extent_locked = 0;
7074 }
7075
7076 if (path->slots[0] >= nritems) {
3bb1a1bc 7077 if (++nr_scaned > 2)
1a40e23b
ZY
7078 break;
7079
7080 BUG_ON(extent_locked);
7081 ret = btrfs_next_leaf(root, path);
7082 if (ret < 0)
7083 goto out;
7084 if (ret > 0)
7085 break;
7086 leaf = path->nodes[0];
7087 nritems = btrfs_header_nritems(leaf);
7088 }
7089
7090 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
7091
7092 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS) {
7093 if ((key.objectid > ref_path->owner_objectid) ||
7094 (key.objectid == ref_path->owner_objectid &&
7095 key.type > BTRFS_EXTENT_DATA_KEY) ||
86288a19 7096 key.offset >= search_end)
1a40e23b
ZY
7097 break;
7098 }
7099
7100 if (inode && key.objectid != inode->i_ino) {
7101 BUG_ON(extent_locked);
7102 btrfs_release_path(root, path);
7103 mutex_unlock(&inode->i_mutex);
7104 iput(inode);
7105 inode = NULL;
7106 continue;
7107 }
7108
7109 if (key.type != BTRFS_EXTENT_DATA_KEY) {
7110 path->slots[0]++;
7111 ret = 1;
7112 goto next;
7113 }
7114 fi = btrfs_item_ptr(leaf, path->slots[0],
7115 struct btrfs_file_extent_item);
d899e052
YZ
7116 extent_type = btrfs_file_extent_type(leaf, fi);
7117 if ((extent_type != BTRFS_FILE_EXTENT_REG &&
7118 extent_type != BTRFS_FILE_EXTENT_PREALLOC) ||
1a40e23b
ZY
7119 (btrfs_file_extent_disk_bytenr(leaf, fi) !=
7120 extent_key->objectid)) {
7121 path->slots[0]++;
7122 ret = 1;
7123 goto next;
7124 }
7125
7126 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
7127 ext_offset = btrfs_file_extent_offset(leaf, fi);
7128
86288a19
YZ
7129 if (search_end == (u64)-1) {
7130 search_end = key.offset - ext_offset +
7131 btrfs_file_extent_ram_bytes(leaf, fi);
7132 }
1a40e23b
ZY
7133
7134 if (!extent_locked) {
7135 lock_start = key.offset;
7136 lock_end = lock_start + num_bytes - 1;
7137 } else {
6643558d
YZ
7138 if (lock_start > key.offset ||
7139 lock_end + 1 < key.offset + num_bytes) {
7140 unlock_extent(&BTRFS_I(inode)->io_tree,
7141 lock_start, lock_end, GFP_NOFS);
7142 extent_locked = 0;
7143 }
1a40e23b
ZY
7144 }
7145
7146 if (!inode) {
7147 btrfs_release_path(root, path);
7148
7149 inode = btrfs_iget_locked(root->fs_info->sb,
7150 key.objectid, root);
7151 if (inode->i_state & I_NEW) {
7152 BTRFS_I(inode)->root = root;
7153 BTRFS_I(inode)->location.objectid =
7154 key.objectid;
7155 BTRFS_I(inode)->location.type =
7156 BTRFS_INODE_ITEM_KEY;
7157 BTRFS_I(inode)->location.offset = 0;
7158 btrfs_read_locked_inode(inode);
7159 unlock_new_inode(inode);
7160 }
7161 /*
7162 * some code call btrfs_commit_transaction while
7163 * holding the i_mutex, so we can't use mutex_lock
7164 * here.
7165 */
7166 if (is_bad_inode(inode) ||
7167 !mutex_trylock(&inode->i_mutex)) {
7168 iput(inode);
7169 inode = NULL;
7170 key.offset = (u64)-1;
7171 goto skip;
7172 }
7173 }
7174
7175 if (!extent_locked) {
7176 struct btrfs_ordered_extent *ordered;
7177
7178 btrfs_release_path(root, path);
7179
7180 lock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7181 lock_end, GFP_NOFS);
7182 ordered = btrfs_lookup_first_ordered_extent(inode,
7183 lock_end);
7184 if (ordered &&
7185 ordered->file_offset <= lock_end &&
7186 ordered->file_offset + ordered->len > lock_start) {
7187 unlock_extent(&BTRFS_I(inode)->io_tree,
7188 lock_start, lock_end, GFP_NOFS);
7189 btrfs_start_ordered_extent(inode, ordered, 1);
7190 btrfs_put_ordered_extent(ordered);
7191 key.offset += num_bytes;
7192 goto skip;
7193 }
7194 if (ordered)
7195 btrfs_put_ordered_extent(ordered);
7196
1a40e23b
ZY
7197 extent_locked = 1;
7198 continue;
7199 }
7200
7201 if (nr_extents == 1) {
7202 /* update extent pointer in place */
1a40e23b
ZY
7203 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7204 new_extents[0].disk_bytenr);
7205 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7206 new_extents[0].disk_num_bytes);
1a40e23b
ZY
7207 btrfs_mark_buffer_dirty(leaf);
7208
7209 btrfs_drop_extent_cache(inode, key.offset,
7210 key.offset + num_bytes - 1, 0);
7211
7212 ret = btrfs_inc_extent_ref(trans, root,
7213 new_extents[0].disk_bytenr,
7214 new_extents[0].disk_num_bytes,
7215 leaf->start,
7216 root->root_key.objectid,
7217 trans->transid,
3bb1a1bc 7218 key.objectid);
1a40e23b
ZY
7219 BUG_ON(ret);
7220
7221 ret = btrfs_free_extent(trans, root,
7222 extent_key->objectid,
7223 extent_key->offset,
7224 leaf->start,
7225 btrfs_header_owner(leaf),
7226 btrfs_header_generation(leaf),
3bb1a1bc 7227 key.objectid, 0);
1a40e23b
ZY
7228 BUG_ON(ret);
7229
7230 btrfs_release_path(root, path);
7231 key.offset += num_bytes;
7232 } else {
d899e052
YZ
7233 BUG_ON(1);
7234#if 0
1a40e23b
ZY
7235 u64 alloc_hint;
7236 u64 extent_len;
7237 int i;
7238 /*
7239 * drop old extent pointer at first, then insert the
7240 * new pointers one bye one
7241 */
7242 btrfs_release_path(root, path);
7243 ret = btrfs_drop_extents(trans, root, inode, key.offset,
7244 key.offset + num_bytes,
7245 key.offset, &alloc_hint);
7246 BUG_ON(ret);
7247
7248 for (i = 0; i < nr_extents; i++) {
7249 if (ext_offset >= new_extents[i].num_bytes) {
7250 ext_offset -= new_extents[i].num_bytes;
7251 continue;
7252 }
7253 extent_len = min(new_extents[i].num_bytes -
7254 ext_offset, num_bytes);
7255
7256 ret = btrfs_insert_empty_item(trans, root,
7257 path, &key,
7258 sizeof(*fi));
7259 BUG_ON(ret);
7260
7261 leaf = path->nodes[0];
7262 fi = btrfs_item_ptr(leaf, path->slots[0],
7263 struct btrfs_file_extent_item);
7264 btrfs_set_file_extent_generation(leaf, fi,
7265 trans->transid);
7266 btrfs_set_file_extent_type(leaf, fi,
7267 BTRFS_FILE_EXTENT_REG);
7268 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7269 new_extents[i].disk_bytenr);
7270 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7271 new_extents[i].disk_num_bytes);
c8b97818
CM
7272 btrfs_set_file_extent_ram_bytes(leaf, fi,
7273 new_extents[i].ram_bytes);
7274
7275 btrfs_set_file_extent_compression(leaf, fi,
7276 new_extents[i].compression);
7277 btrfs_set_file_extent_encryption(leaf, fi,
7278 new_extents[i].encryption);
7279 btrfs_set_file_extent_other_encoding(leaf, fi,
7280 new_extents[i].other_encoding);
7281
1a40e23b
ZY
7282 btrfs_set_file_extent_num_bytes(leaf, fi,
7283 extent_len);
7284 ext_offset += new_extents[i].offset;
7285 btrfs_set_file_extent_offset(leaf, fi,
7286 ext_offset);
7287 btrfs_mark_buffer_dirty(leaf);
7288
7289 btrfs_drop_extent_cache(inode, key.offset,
7290 key.offset + extent_len - 1, 0);
7291
7292 ret = btrfs_inc_extent_ref(trans, root,
7293 new_extents[i].disk_bytenr,
7294 new_extents[i].disk_num_bytes,
7295 leaf->start,
7296 root->root_key.objectid,
3bb1a1bc 7297 trans->transid, key.objectid);
1a40e23b
ZY
7298 BUG_ON(ret);
7299 btrfs_release_path(root, path);
7300
a76a3cd4 7301 inode_add_bytes(inode, extent_len);
1a40e23b
ZY
7302
7303 ext_offset = 0;
7304 num_bytes -= extent_len;
7305 key.offset += extent_len;
7306
7307 if (num_bytes == 0)
7308 break;
7309 }
7310 BUG_ON(i >= nr_extents);
d899e052 7311#endif
1a40e23b
ZY
7312 }
7313
7314 if (extent_locked) {
1a40e23b
ZY
7315 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7316 lock_end, GFP_NOFS);
7317 extent_locked = 0;
7318 }
7319skip:
7320 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS &&
86288a19 7321 key.offset >= search_end)
1a40e23b
ZY
7322 break;
7323
7324 cond_resched();
7325 }
7326 ret = 0;
7327out:
7328 btrfs_release_path(root, path);
7329 if (inode) {
7330 mutex_unlock(&inode->i_mutex);
7331 if (extent_locked) {
1a40e23b
ZY
7332 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7333 lock_end, GFP_NOFS);
7334 }
7335 iput(inode);
7336 }
7337 return ret;
7338}
7339
1a40e23b
ZY
7340int btrfs_reloc_tree_cache_ref(struct btrfs_trans_handle *trans,
7341 struct btrfs_root *root,
7342 struct extent_buffer *buf, u64 orig_start)
7343{
7344 int level;
7345 int ret;
7346
7347 BUG_ON(btrfs_header_generation(buf) != trans->transid);
7348 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
7349
7350 level = btrfs_header_level(buf);
7351 if (level == 0) {
7352 struct btrfs_leaf_ref *ref;
7353 struct btrfs_leaf_ref *orig_ref;
7354
7355 orig_ref = btrfs_lookup_leaf_ref(root, orig_start);
7356 if (!orig_ref)
7357 return -ENOENT;
7358
7359 ref = btrfs_alloc_leaf_ref(root, orig_ref->nritems);
7360 if (!ref) {
7361 btrfs_free_leaf_ref(root, orig_ref);
7362 return -ENOMEM;
7363 }
7364
7365 ref->nritems = orig_ref->nritems;
7366 memcpy(ref->extents, orig_ref->extents,
7367 sizeof(ref->extents[0]) * ref->nritems);
7368
7369 btrfs_free_leaf_ref(root, orig_ref);
7370
7371 ref->root_gen = trans->transid;
7372 ref->bytenr = buf->start;
7373 ref->owner = btrfs_header_owner(buf);
7374 ref->generation = btrfs_header_generation(buf);
bd56b302 7375
1a40e23b
ZY
7376 ret = btrfs_add_leaf_ref(root, ref, 0);
7377 WARN_ON(ret);
7378 btrfs_free_leaf_ref(root, ref);
7379 }
7380 return 0;
7381}
7382
d397712b 7383static noinline int invalidate_extent_cache(struct btrfs_root *root,
1a40e23b
ZY
7384 struct extent_buffer *leaf,
7385 struct btrfs_block_group_cache *group,
7386 struct btrfs_root *target_root)
7387{
7388 struct btrfs_key key;
7389 struct inode *inode = NULL;
7390 struct btrfs_file_extent_item *fi;
2ac55d41 7391 struct extent_state *cached_state = NULL;
1a40e23b
ZY
7392 u64 num_bytes;
7393 u64 skip_objectid = 0;
7394 u32 nritems;
7395 u32 i;
7396
7397 nritems = btrfs_header_nritems(leaf);
7398 for (i = 0; i < nritems; i++) {
7399 btrfs_item_key_to_cpu(leaf, &key, i);
7400 if (key.objectid == skip_objectid ||
7401 key.type != BTRFS_EXTENT_DATA_KEY)
7402 continue;
7403 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
7404 if (btrfs_file_extent_type(leaf, fi) ==
7405 BTRFS_FILE_EXTENT_INLINE)
7406 continue;
7407 if (btrfs_file_extent_disk_bytenr(leaf, fi) == 0)
7408 continue;
7409 if (!inode || inode->i_ino != key.objectid) {
7410 iput(inode);
7411 inode = btrfs_ilookup(target_root->fs_info->sb,
7412 key.objectid, target_root, 1);
7413 }
7414 if (!inode) {
7415 skip_objectid = key.objectid;
7416 continue;
7417 }
7418 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
7419
2ac55d41
JB
7420 lock_extent_bits(&BTRFS_I(inode)->io_tree, key.offset,
7421 key.offset + num_bytes - 1, 0, &cached_state,
7422 GFP_NOFS);
1a40e23b
ZY
7423 btrfs_drop_extent_cache(inode, key.offset,
7424 key.offset + num_bytes - 1, 1);
2ac55d41
JB
7425 unlock_extent_cached(&BTRFS_I(inode)->io_tree, key.offset,
7426 key.offset + num_bytes - 1, &cached_state,
7427 GFP_NOFS);
1a40e23b
ZY
7428 cond_resched();
7429 }
7430 iput(inode);
7431 return 0;
7432}
7433
d397712b 7434static noinline int replace_extents_in_leaf(struct btrfs_trans_handle *trans,
1a40e23b
ZY
7435 struct btrfs_root *root,
7436 struct extent_buffer *leaf,
7437 struct btrfs_block_group_cache *group,
7438 struct inode *reloc_inode)
7439{
7440 struct btrfs_key key;
7441 struct btrfs_key extent_key;
7442 struct btrfs_file_extent_item *fi;
7443 struct btrfs_leaf_ref *ref;
7444 struct disk_extent *new_extent;
7445 u64 bytenr;
7446 u64 num_bytes;
7447 u32 nritems;
7448 u32 i;
7449 int ext_index;
7450 int nr_extent;
7451 int ret;
7452
7453 new_extent = kmalloc(sizeof(*new_extent), GFP_NOFS);
db5b493a
TI
7454 if (!new_extent)
7455 return -ENOMEM;
1a40e23b
ZY
7456
7457 ref = btrfs_lookup_leaf_ref(root, leaf->start);
7458 BUG_ON(!ref);
7459
7460 ext_index = -1;
7461 nritems = btrfs_header_nritems(leaf);
7462 for (i = 0; i < nritems; i++) {
7463 btrfs_item_key_to_cpu(leaf, &key, i);
7464 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
7465 continue;
7466 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
7467 if (btrfs_file_extent_type(leaf, fi) ==
7468 BTRFS_FILE_EXTENT_INLINE)
7469 continue;
7470 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
7471 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
7472 if (bytenr == 0)
7473 continue;
7474
7475 ext_index++;
7476 if (bytenr >= group->key.objectid + group->key.offset ||
7477 bytenr + num_bytes <= group->key.objectid)
7478 continue;
7479
7480 extent_key.objectid = bytenr;
7481 extent_key.offset = num_bytes;
7482 extent_key.type = BTRFS_EXTENT_ITEM_KEY;
7483 nr_extent = 1;
7484 ret = get_new_locations(reloc_inode, &extent_key,
7485 group->key.objectid, 1,
7486 &new_extent, &nr_extent);
7487 if (ret > 0)
7488 continue;
7489 BUG_ON(ret < 0);
7490
7491 BUG_ON(ref->extents[ext_index].bytenr != bytenr);
7492 BUG_ON(ref->extents[ext_index].num_bytes != num_bytes);
7493 ref->extents[ext_index].bytenr = new_extent->disk_bytenr;
7494 ref->extents[ext_index].num_bytes = new_extent->disk_num_bytes;
7495
1a40e23b
ZY
7496 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7497 new_extent->disk_bytenr);
7498 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7499 new_extent->disk_num_bytes);
1a40e23b
ZY
7500 btrfs_mark_buffer_dirty(leaf);
7501
7502 ret = btrfs_inc_extent_ref(trans, root,
7503 new_extent->disk_bytenr,
7504 new_extent->disk_num_bytes,
7505 leaf->start,
7506 root->root_key.objectid,
3bb1a1bc 7507 trans->transid, key.objectid);
1a40e23b 7508 BUG_ON(ret);
56bec294 7509
1a40e23b
ZY
7510 ret = btrfs_free_extent(trans, root,
7511 bytenr, num_bytes, leaf->start,
7512 btrfs_header_owner(leaf),
7513 btrfs_header_generation(leaf),
3bb1a1bc 7514 key.objectid, 0);
1a40e23b
ZY
7515 BUG_ON(ret);
7516 cond_resched();
7517 }
7518 kfree(new_extent);
7519 BUG_ON(ext_index + 1 != ref->nritems);
7520 btrfs_free_leaf_ref(root, ref);
7521 return 0;
7522}
7523
f82d02d9
YZ
7524int btrfs_free_reloc_root(struct btrfs_trans_handle *trans,
7525 struct btrfs_root *root)
1a40e23b
ZY
7526{
7527 struct btrfs_root *reloc_root;
f82d02d9 7528 int ret;
1a40e23b
ZY
7529
7530 if (root->reloc_root) {
7531 reloc_root = root->reloc_root;
7532 root->reloc_root = NULL;
7533 list_add(&reloc_root->dead_list,
7534 &root->fs_info->dead_reloc_roots);
f82d02d9
YZ
7535
7536 btrfs_set_root_bytenr(&reloc_root->root_item,
7537 reloc_root->node->start);
7538 btrfs_set_root_level(&root->root_item,
7539 btrfs_header_level(reloc_root->node));
7540 memset(&reloc_root->root_item.drop_progress, 0,
7541 sizeof(struct btrfs_disk_key));
7542 reloc_root->root_item.drop_level = 0;
7543
7544 ret = btrfs_update_root(trans, root->fs_info->tree_root,
7545 &reloc_root->root_key,
7546 &reloc_root->root_item);
7547 BUG_ON(ret);
1a40e23b
ZY
7548 }
7549 return 0;
7550}
7551
7552int btrfs_drop_dead_reloc_roots(struct btrfs_root *root)
7553{
7554 struct btrfs_trans_handle *trans;
7555 struct btrfs_root *reloc_root;
7556 struct btrfs_root *prev_root = NULL;
7557 struct list_head dead_roots;
7558 int ret;
7559 unsigned long nr;
7560
7561 INIT_LIST_HEAD(&dead_roots);
7562 list_splice_init(&root->fs_info->dead_reloc_roots, &dead_roots);
7563
7564 while (!list_empty(&dead_roots)) {
7565 reloc_root = list_entry(dead_roots.prev,
7566 struct btrfs_root, dead_list);
7567 list_del_init(&reloc_root->dead_list);
7568
7569 BUG_ON(reloc_root->commit_root != NULL);
7570 while (1) {
7571 trans = btrfs_join_transaction(root, 1);
3612b495 7572 BUG_ON(IS_ERR(trans));
1a40e23b
ZY
7573
7574 mutex_lock(&root->fs_info->drop_mutex);
7575 ret = btrfs_drop_snapshot(trans, reloc_root);
7576 if (ret != -EAGAIN)
7577 break;
7578 mutex_unlock(&root->fs_info->drop_mutex);
7579
7580 nr = trans->blocks_used;
7581 ret = btrfs_end_transaction(trans, root);
7582 BUG_ON(ret);
7583 btrfs_btree_balance_dirty(root, nr);
7584 }
7585
7586 free_extent_buffer(reloc_root->node);
7587
7588 ret = btrfs_del_root(trans, root->fs_info->tree_root,
7589 &reloc_root->root_key);
7590 BUG_ON(ret);
7591 mutex_unlock(&root->fs_info->drop_mutex);
7592
7593 nr = trans->blocks_used;
7594 ret = btrfs_end_transaction(trans, root);
7595 BUG_ON(ret);
7596 btrfs_btree_balance_dirty(root, nr);
7597
7598 kfree(prev_root);
7599 prev_root = reloc_root;
7600 }
7601 if (prev_root) {
7602 btrfs_remove_leaf_refs(prev_root, (u64)-1, 0);
7603 kfree(prev_root);
7604 }
7605 return 0;
7606}
7607
7608int btrfs_add_dead_reloc_root(struct btrfs_root *root)
7609{
7610 list_add(&root->dead_list, &root->fs_info->dead_reloc_roots);
7611 return 0;
7612}
7613
7614int btrfs_cleanup_reloc_trees(struct btrfs_root *root)
7615{
7616 struct btrfs_root *reloc_root;
7617 struct btrfs_trans_handle *trans;
7618 struct btrfs_key location;
7619 int found;
7620 int ret;
7621
7622 mutex_lock(&root->fs_info->tree_reloc_mutex);
7623 ret = btrfs_find_dead_roots(root, BTRFS_TREE_RELOC_OBJECTID, NULL);
7624 BUG_ON(ret);
7625 found = !list_empty(&root->fs_info->dead_reloc_roots);
7626 mutex_unlock(&root->fs_info->tree_reloc_mutex);
7627
7628 if (found) {
7629 trans = btrfs_start_transaction(root, 1);
98d5dc13 7630 BUG_ON(IS_ERR(trans));
1a40e23b
ZY
7631 ret = btrfs_commit_transaction(trans, root);
7632 BUG_ON(ret);
7633 }
7634
7635 location.objectid = BTRFS_DATA_RELOC_TREE_OBJECTID;
7636 location.offset = (u64)-1;
7637 location.type = BTRFS_ROOT_ITEM_KEY;
7638
7639 reloc_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
7640 BUG_ON(!reloc_root);
66b4ffd1
JB
7641 ret = btrfs_orphan_cleanup(reloc_root);
7642 BUG_ON(ret);
1a40e23b
ZY
7643 return 0;
7644}
7645
d397712b 7646static noinline int init_reloc_tree(struct btrfs_trans_handle *trans,
1a40e23b
ZY
7647 struct btrfs_root *root)
7648{
7649 struct btrfs_root *reloc_root;
7650 struct extent_buffer *eb;
7651 struct btrfs_root_item *root_item;
7652 struct btrfs_key root_key;
7653 int ret;
7654
7655 BUG_ON(!root->ref_cows);
7656 if (root->reloc_root)
7657 return 0;
7658
7659 root_item = kmalloc(sizeof(*root_item), GFP_NOFS);
db5b493a
TI
7660 if (!root_item)
7661 return -ENOMEM;
1a40e23b
ZY
7662
7663 ret = btrfs_copy_root(trans, root, root->commit_root,
7664 &eb, BTRFS_TREE_RELOC_OBJECTID);
7665 BUG_ON(ret);
7666
7667 root_key.objectid = BTRFS_TREE_RELOC_OBJECTID;
7668 root_key.offset = root->root_key.objectid;
7669 root_key.type = BTRFS_ROOT_ITEM_KEY;
7670
7671 memcpy(root_item, &root->root_item, sizeof(root_item));
7672 btrfs_set_root_refs(root_item, 0);
7673 btrfs_set_root_bytenr(root_item, eb->start);
7674 btrfs_set_root_level(root_item, btrfs_header_level(eb));
84234f3a 7675 btrfs_set_root_generation(root_item, trans->transid);
1a40e23b
ZY
7676
7677 btrfs_tree_unlock(eb);
7678 free_extent_buffer(eb);
7679
7680 ret = btrfs_insert_root(trans, root->fs_info->tree_root,
7681 &root_key, root_item);
7682 BUG_ON(ret);
7683 kfree(root_item);
7684
7685 reloc_root = btrfs_read_fs_root_no_radix(root->fs_info->tree_root,
7686 &root_key);
db5b493a 7687 BUG_ON(IS_ERR(reloc_root));
1a40e23b
ZY
7688 reloc_root->last_trans = trans->transid;
7689 reloc_root->commit_root = NULL;
7690 reloc_root->ref_tree = &root->fs_info->reloc_ref_tree;
7691
7692 root->reloc_root = reloc_root;
7693 return 0;
7694}
7695
7696/*
7697 * Core function of space balance.
7698 *
7699 * The idea is using reloc trees to relocate tree blocks in reference
f82d02d9
YZ
7700 * counted roots. There is one reloc tree for each subvol, and all
7701 * reloc trees share same root key objectid. Reloc trees are snapshots
7702 * of the latest committed roots of subvols (root->commit_root).
7703 *
7704 * To relocate a tree block referenced by a subvol, there are two steps.
7705 * COW the block through subvol's reloc tree, then update block pointer
7706 * in the subvol to point to the new block. Since all reloc trees share
7707 * same root key objectid, doing special handing for tree blocks owned
7708 * by them is easy. Once a tree block has been COWed in one reloc tree,
7709 * we can use the resulting new block directly when the same block is
7710 * required to COW again through other reloc trees. By this way, relocated
7711 * tree blocks are shared between reloc trees, so they are also shared
7712 * between subvols.
1a40e23b 7713 */
d397712b 7714static noinline int relocate_one_path(struct btrfs_trans_handle *trans,
1a40e23b
ZY
7715 struct btrfs_root *root,
7716 struct btrfs_path *path,
7717 struct btrfs_key *first_key,
7718 struct btrfs_ref_path *ref_path,
7719 struct btrfs_block_group_cache *group,
7720 struct inode *reloc_inode)
7721{
7722 struct btrfs_root *reloc_root;
7723 struct extent_buffer *eb = NULL;
7724 struct btrfs_key *keys;
7725 u64 *nodes;
7726 int level;
f82d02d9 7727 int shared_level;
1a40e23b 7728 int lowest_level = 0;
1a40e23b
ZY
7729 int ret;
7730
7731 if (ref_path->owner_objectid < BTRFS_FIRST_FREE_OBJECTID)
7732 lowest_level = ref_path->owner_objectid;
7733
f82d02d9 7734 if (!root->ref_cows) {
1a40e23b
ZY
7735 path->lowest_level = lowest_level;
7736 ret = btrfs_search_slot(trans, root, first_key, path, 0, 1);
7737 BUG_ON(ret < 0);
7738 path->lowest_level = 0;
7739 btrfs_release_path(root, path);
7740 return 0;
7741 }
7742
1a40e23b
ZY
7743 mutex_lock(&root->fs_info->tree_reloc_mutex);
7744 ret = init_reloc_tree(trans, root);
7745 BUG_ON(ret);
7746 reloc_root = root->reloc_root;
7747
f82d02d9
YZ
7748 shared_level = ref_path->shared_level;
7749 ref_path->shared_level = BTRFS_MAX_LEVEL - 1;
1a40e23b 7750
f82d02d9
YZ
7751 keys = ref_path->node_keys;
7752 nodes = ref_path->new_nodes;
7753 memset(&keys[shared_level + 1], 0,
7754 sizeof(*keys) * (BTRFS_MAX_LEVEL - shared_level - 1));
7755 memset(&nodes[shared_level + 1], 0,
7756 sizeof(*nodes) * (BTRFS_MAX_LEVEL - shared_level - 1));
1a40e23b 7757
f82d02d9
YZ
7758 if (nodes[lowest_level] == 0) {
7759 path->lowest_level = lowest_level;
7760 ret = btrfs_search_slot(trans, reloc_root, first_key, path,
7761 0, 1);
7762 BUG_ON(ret);
7763 for (level = lowest_level; level < BTRFS_MAX_LEVEL; level++) {
7764 eb = path->nodes[level];
7765 if (!eb || eb == reloc_root->node)
7766 break;
7767 nodes[level] = eb->start;
7768 if (level == 0)
7769 btrfs_item_key_to_cpu(eb, &keys[level], 0);
7770 else
7771 btrfs_node_key_to_cpu(eb, &keys[level], 0);
7772 }
2b82032c
YZ
7773 if (nodes[0] &&
7774 ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
f82d02d9
YZ
7775 eb = path->nodes[0];
7776 ret = replace_extents_in_leaf(trans, reloc_root, eb,
7777 group, reloc_inode);
7778 BUG_ON(ret);
7779 }
7780 btrfs_release_path(reloc_root, path);
7781 } else {
1a40e23b 7782 ret = btrfs_merge_path(trans, reloc_root, keys, nodes,
f82d02d9 7783 lowest_level);
1a40e23b
ZY
7784 BUG_ON(ret);
7785 }
7786
1a40e23b
ZY
7787 /*
7788 * replace tree blocks in the fs tree with tree blocks in
7789 * the reloc tree.
7790 */
7791 ret = btrfs_merge_path(trans, root, keys, nodes, lowest_level);
7792 BUG_ON(ret < 0);
7793
7794 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
f82d02d9
YZ
7795 ret = btrfs_search_slot(trans, reloc_root, first_key, path,
7796 0, 0);
7797 BUG_ON(ret);
7798 extent_buffer_get(path->nodes[0]);
7799 eb = path->nodes[0];
7800 btrfs_release_path(reloc_root, path);
1a40e23b
ZY
7801 ret = invalidate_extent_cache(reloc_root, eb, group, root);
7802 BUG_ON(ret);
7803 free_extent_buffer(eb);
7804 }
1a40e23b 7805
f82d02d9 7806 mutex_unlock(&root->fs_info->tree_reloc_mutex);
1a40e23b 7807 path->lowest_level = 0;
1a40e23b
ZY
7808 return 0;
7809}
7810
d397712b 7811static noinline int relocate_tree_block(struct btrfs_trans_handle *trans,
1a40e23b
ZY
7812 struct btrfs_root *root,
7813 struct btrfs_path *path,
7814 struct btrfs_key *first_key,
7815 struct btrfs_ref_path *ref_path)
7816{
7817 int ret;
1a40e23b
ZY
7818
7819 ret = relocate_one_path(trans, root, path, first_key,
7820 ref_path, NULL, NULL);
7821 BUG_ON(ret);
7822
1a40e23b
ZY
7823 return 0;
7824}
7825
d397712b 7826static noinline int del_extent_zero(struct btrfs_trans_handle *trans,
1a40e23b
ZY
7827 struct btrfs_root *extent_root,
7828 struct btrfs_path *path,
7829 struct btrfs_key *extent_key)
7830{
7831 int ret;
7832
1a40e23b
ZY
7833 ret = btrfs_search_slot(trans, extent_root, extent_key, path, -1, 1);
7834 if (ret)
7835 goto out;
7836 ret = btrfs_del_item(trans, extent_root, path);
7837out:
7838 btrfs_release_path(extent_root, path);
1a40e23b
ZY
7839 return ret;
7840}
7841
d397712b 7842static noinline struct btrfs_root *read_ref_root(struct btrfs_fs_info *fs_info,
1a40e23b
ZY
7843 struct btrfs_ref_path *ref_path)
7844{
7845 struct btrfs_key root_key;
7846
7847 root_key.objectid = ref_path->root_objectid;
7848 root_key.type = BTRFS_ROOT_ITEM_KEY;
7849 if (is_cowonly_root(ref_path->root_objectid))
7850 root_key.offset = 0;
7851 else
7852 root_key.offset = (u64)-1;
7853
7854 return btrfs_read_fs_root_no_name(fs_info, &root_key);
7855}
7856
d397712b 7857static noinline int relocate_one_extent(struct btrfs_root *extent_root,
1a40e23b
ZY
7858 struct btrfs_path *path,
7859 struct btrfs_key *extent_key,
7860 struct btrfs_block_group_cache *group,
7861 struct inode *reloc_inode, int pass)
7862{
7863 struct btrfs_trans_handle *trans;
7864 struct btrfs_root *found_root;
7865 struct btrfs_ref_path *ref_path = NULL;
7866 struct disk_extent *new_extents = NULL;
7867 int nr_extents = 0;
7868 int loops;
7869 int ret;
7870 int level;
7871 struct btrfs_key first_key;
7872 u64 prev_block = 0;
7873
1a40e23b
ZY
7874
7875 trans = btrfs_start_transaction(extent_root, 1);
98d5dc13 7876 BUG_ON(IS_ERR(trans));
1a40e23b
ZY
7877
7878 if (extent_key->objectid == 0) {
7879 ret = del_extent_zero(trans, extent_root, path, extent_key);
7880 goto out;
7881 }
7882
7883 ref_path = kmalloc(sizeof(*ref_path), GFP_NOFS);
7884 if (!ref_path) {
d397712b
CM
7885 ret = -ENOMEM;
7886 goto out;
1a40e23b
ZY
7887 }
7888
7889 for (loops = 0; ; loops++) {
7890 if (loops == 0) {
7891 ret = btrfs_first_ref_path(trans, extent_root, ref_path,
7892 extent_key->objectid);
7893 } else {
7894 ret = btrfs_next_ref_path(trans, extent_root, ref_path);
7895 }
7896 if (ret < 0)
7897 goto out;
7898 if (ret > 0)
7899 break;
7900
7901 if (ref_path->root_objectid == BTRFS_TREE_LOG_OBJECTID ||
7902 ref_path->root_objectid == BTRFS_TREE_RELOC_OBJECTID)
7903 continue;
7904
7905 found_root = read_ref_root(extent_root->fs_info, ref_path);
7906 BUG_ON(!found_root);
7907 /*
7908 * for reference counted tree, only process reference paths
7909 * rooted at the latest committed root.
7910 */
7911 if (found_root->ref_cows &&
7912 ref_path->root_generation != found_root->root_key.offset)
7913 continue;
7914
7915 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
7916 if (pass == 0) {
7917 /*
7918 * copy data extents to new locations
7919 */
7920 u64 group_start = group->key.objectid;
7921 ret = relocate_data_extent(reloc_inode,
7922 extent_key,
7923 group_start);
7924 if (ret < 0)
7925 goto out;
7926 break;
7927 }
7928 level = 0;
7929 } else {
7930 level = ref_path->owner_objectid;
7931 }
7932
7933 if (prev_block != ref_path->nodes[level]) {
7934 struct extent_buffer *eb;
7935 u64 block_start = ref_path->nodes[level];
7936 u64 block_size = btrfs_level_size(found_root, level);
7937
7938 eb = read_tree_block(found_root, block_start,
7939 block_size, 0);
97d9a8a4
TI
7940 if (!eb) {
7941 ret = -EIO;
7942 goto out;
7943 }
1a40e23b
ZY
7944 btrfs_tree_lock(eb);
7945 BUG_ON(level != btrfs_header_level(eb));
7946
7947 if (level == 0)
7948 btrfs_item_key_to_cpu(eb, &first_key, 0);
7949 else
7950 btrfs_node_key_to_cpu(eb, &first_key, 0);
7951
7952 btrfs_tree_unlock(eb);
7953 free_extent_buffer(eb);
7954 prev_block = block_start;
7955 }
7956
24562425 7957 mutex_lock(&extent_root->fs_info->trans_mutex);
e4404d6e 7958 btrfs_record_root_in_trans(found_root);
24562425 7959 mutex_unlock(&extent_root->fs_info->trans_mutex);
e4404d6e
YZ
7960 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
7961 /*
7962 * try to update data extent references while
7963 * keeping metadata shared between snapshots.
7964 */
7965 if (pass == 1) {
7966 ret = relocate_one_path(trans, found_root,
7967 path, &first_key, ref_path,
7968 group, reloc_inode);
7969 if (ret < 0)
7970 goto out;
7971 continue;
7972 }
1a40e23b
ZY
7973 /*
7974 * use fallback method to process the remaining
7975 * references.
7976 */
7977 if (!new_extents) {
7978 u64 group_start = group->key.objectid;
d899e052
YZ
7979 new_extents = kmalloc(sizeof(*new_extents),
7980 GFP_NOFS);
7981 nr_extents = 1;
1a40e23b
ZY
7982 ret = get_new_locations(reloc_inode,
7983 extent_key,
d899e052 7984 group_start, 1,
1a40e23b
ZY
7985 &new_extents,
7986 &nr_extents);
d899e052 7987 if (ret)
1a40e23b
ZY
7988 goto out;
7989 }
1a40e23b
ZY
7990 ret = replace_one_extent(trans, found_root,
7991 path, extent_key,
7992 &first_key, ref_path,
7993 new_extents, nr_extents);
e4404d6e 7994 } else {
1a40e23b
ZY
7995 ret = relocate_tree_block(trans, found_root, path,
7996 &first_key, ref_path);
1a40e23b
ZY
7997 }
7998 if (ret < 0)
7999 goto out;
8000 }
8001 ret = 0;
8002out:
8003 btrfs_end_transaction(trans, extent_root);
8004 kfree(new_extents);
8005 kfree(ref_path);
1a40e23b
ZY
8006 return ret;
8007}
5d4f98a2 8008#endif
1a40e23b 8009
ec44a35c
CM
8010static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
8011{
8012 u64 num_devices;
8013 u64 stripped = BTRFS_BLOCK_GROUP_RAID0 |
8014 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
8015
cd02dca5
CM
8016 /*
8017 * we add in the count of missing devices because we want
8018 * to make sure that any RAID levels on a degraded FS
8019 * continue to be honored.
8020 */
8021 num_devices = root->fs_info->fs_devices->rw_devices +
8022 root->fs_info->fs_devices->missing_devices;
8023
ec44a35c
CM
8024 if (num_devices == 1) {
8025 stripped |= BTRFS_BLOCK_GROUP_DUP;
8026 stripped = flags & ~stripped;
8027
8028 /* turn raid0 into single device chunks */
8029 if (flags & BTRFS_BLOCK_GROUP_RAID0)
8030 return stripped;
8031
8032 /* turn mirroring into duplication */
8033 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
8034 BTRFS_BLOCK_GROUP_RAID10))
8035 return stripped | BTRFS_BLOCK_GROUP_DUP;
8036 return flags;
8037 } else {
8038 /* they already had raid on here, just return */
ec44a35c
CM
8039 if (flags & stripped)
8040 return flags;
8041
8042 stripped |= BTRFS_BLOCK_GROUP_DUP;
8043 stripped = flags & ~stripped;
8044
8045 /* switch duplicated blocks with raid1 */
8046 if (flags & BTRFS_BLOCK_GROUP_DUP)
8047 return stripped | BTRFS_BLOCK_GROUP_RAID1;
8048
8049 /* turn single device chunks into raid0 */
8050 return stripped | BTRFS_BLOCK_GROUP_RAID0;
8051 }
8052 return flags;
8053}
8054
f0486c68 8055static int set_block_group_ro(struct btrfs_block_group_cache *cache)
0ef3e66b 8056{
f0486c68
YZ
8057 struct btrfs_space_info *sinfo = cache->space_info;
8058 u64 num_bytes;
8059 int ret = -ENOSPC;
0ef3e66b 8060
f0486c68
YZ
8061 if (cache->ro)
8062 return 0;
c286ac48 8063
f0486c68
YZ
8064 spin_lock(&sinfo->lock);
8065 spin_lock(&cache->lock);
8066 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8067 cache->bytes_super - btrfs_block_group_used(&cache->item);
8068
8069 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
8070 sinfo->bytes_may_use + sinfo->bytes_readonly +
65e5341b 8071 cache->reserved_pinned + num_bytes <= sinfo->total_bytes) {
f0486c68
YZ
8072 sinfo->bytes_readonly += num_bytes;
8073 sinfo->bytes_reserved += cache->reserved_pinned;
8074 cache->reserved_pinned = 0;
8075 cache->ro = 1;
8076 ret = 0;
8077 }
65e5341b 8078
f0486c68
YZ
8079 spin_unlock(&cache->lock);
8080 spin_unlock(&sinfo->lock);
8081 return ret;
8082}
7d9eb12c 8083
f0486c68
YZ
8084int btrfs_set_block_group_ro(struct btrfs_root *root,
8085 struct btrfs_block_group_cache *cache)
c286ac48 8086
f0486c68
YZ
8087{
8088 struct btrfs_trans_handle *trans;
8089 u64 alloc_flags;
8090 int ret;
7d9eb12c 8091
f0486c68 8092 BUG_ON(cache->ro);
0ef3e66b 8093
f0486c68
YZ
8094 trans = btrfs_join_transaction(root, 1);
8095 BUG_ON(IS_ERR(trans));
5d4f98a2 8096
f0486c68
YZ
8097 alloc_flags = update_block_group_flags(root, cache->flags);
8098 if (alloc_flags != cache->flags)
8099 do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags, 1);
5d4f98a2 8100
f0486c68
YZ
8101 ret = set_block_group_ro(cache);
8102 if (!ret)
8103 goto out;
8104 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
8105 ret = do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags, 1);
8106 if (ret < 0)
8107 goto out;
8108 ret = set_block_group_ro(cache);
8109out:
8110 btrfs_end_transaction(trans, root);
8111 return ret;
8112}
5d4f98a2 8113
c87f08ca
CM
8114int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
8115 struct btrfs_root *root, u64 type)
8116{
8117 u64 alloc_flags = get_alloc_profile(root, type);
8118 return do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags, 1);
8119}
8120
6d07bcec
MX
8121/*
8122 * helper to account the unused space of all the readonly block group in the
8123 * list. takes mirrors into account.
8124 */
8125static u64 __btrfs_get_ro_block_group_free_space(struct list_head *groups_list)
8126{
8127 struct btrfs_block_group_cache *block_group;
8128 u64 free_bytes = 0;
8129 int factor;
8130
8131 list_for_each_entry(block_group, groups_list, list) {
8132 spin_lock(&block_group->lock);
8133
8134 if (!block_group->ro) {
8135 spin_unlock(&block_group->lock);
8136 continue;
8137 }
8138
8139 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
8140 BTRFS_BLOCK_GROUP_RAID10 |
8141 BTRFS_BLOCK_GROUP_DUP))
8142 factor = 2;
8143 else
8144 factor = 1;
8145
8146 free_bytes += (block_group->key.offset -
8147 btrfs_block_group_used(&block_group->item)) *
8148 factor;
8149
8150 spin_unlock(&block_group->lock);
8151 }
8152
8153 return free_bytes;
8154}
8155
8156/*
8157 * helper to account the unused space of all the readonly block group in the
8158 * space_info. takes mirrors into account.
8159 */
8160u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
8161{
8162 int i;
8163 u64 free_bytes = 0;
8164
8165 spin_lock(&sinfo->lock);
8166
8167 for(i = 0; i < BTRFS_NR_RAID_TYPES; i++)
8168 if (!list_empty(&sinfo->block_groups[i]))
8169 free_bytes += __btrfs_get_ro_block_group_free_space(
8170 &sinfo->block_groups[i]);
8171
8172 spin_unlock(&sinfo->lock);
8173
8174 return free_bytes;
8175}
8176
f0486c68
YZ
8177int btrfs_set_block_group_rw(struct btrfs_root *root,
8178 struct btrfs_block_group_cache *cache)
5d4f98a2 8179{
f0486c68
YZ
8180 struct btrfs_space_info *sinfo = cache->space_info;
8181 u64 num_bytes;
8182
8183 BUG_ON(!cache->ro);
8184
8185 spin_lock(&sinfo->lock);
8186 spin_lock(&cache->lock);
8187 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8188 cache->bytes_super - btrfs_block_group_used(&cache->item);
8189 sinfo->bytes_readonly -= num_bytes;
8190 cache->ro = 0;
8191 spin_unlock(&cache->lock);
8192 spin_unlock(&sinfo->lock);
5d4f98a2
YZ
8193 return 0;
8194}
8195
ba1bf481
JB
8196/*
8197 * checks to see if its even possible to relocate this block group.
8198 *
8199 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
8200 * ok to go ahead and try.
8201 */
8202int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
1a40e23b 8203{
ba1bf481
JB
8204 struct btrfs_block_group_cache *block_group;
8205 struct btrfs_space_info *space_info;
8206 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
8207 struct btrfs_device *device;
8208 int full = 0;
8209 int ret = 0;
1a40e23b 8210
ba1bf481 8211 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
1a40e23b 8212
ba1bf481
JB
8213 /* odd, couldn't find the block group, leave it alone */
8214 if (!block_group)
8215 return -1;
1a40e23b 8216
ba1bf481
JB
8217 /* no bytes used, we're good */
8218 if (!btrfs_block_group_used(&block_group->item))
1a40e23b
ZY
8219 goto out;
8220
ba1bf481
JB
8221 space_info = block_group->space_info;
8222 spin_lock(&space_info->lock);
17d217fe 8223
ba1bf481 8224 full = space_info->full;
17d217fe 8225
ba1bf481
JB
8226 /*
8227 * if this is the last block group we have in this space, we can't
7ce618db
CM
8228 * relocate it unless we're able to allocate a new chunk below.
8229 *
8230 * Otherwise, we need to make sure we have room in the space to handle
8231 * all of the extents from this block group. If we can, we're good
ba1bf481 8232 */
7ce618db
CM
8233 if ((space_info->total_bytes != block_group->key.offset) &&
8234 (space_info->bytes_used + space_info->bytes_reserved +
ba1bf481
JB
8235 space_info->bytes_pinned + space_info->bytes_readonly +
8236 btrfs_block_group_used(&block_group->item) <
7ce618db 8237 space_info->total_bytes)) {
ba1bf481
JB
8238 spin_unlock(&space_info->lock);
8239 goto out;
17d217fe 8240 }
ba1bf481 8241 spin_unlock(&space_info->lock);
ea8c2819 8242
ba1bf481
JB
8243 /*
8244 * ok we don't have enough space, but maybe we have free space on our
8245 * devices to allocate new chunks for relocation, so loop through our
8246 * alloc devices and guess if we have enough space. However, if we
8247 * were marked as full, then we know there aren't enough chunks, and we
8248 * can just return.
8249 */
8250 ret = -1;
8251 if (full)
8252 goto out;
ea8c2819 8253
ba1bf481
JB
8254 mutex_lock(&root->fs_info->chunk_mutex);
8255 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
8256 u64 min_free = btrfs_block_group_used(&block_group->item);
7bfc837d 8257 u64 dev_offset;
56bec294 8258
ba1bf481
JB
8259 /*
8260 * check to make sure we can actually find a chunk with enough
8261 * space to fit our block group in.
8262 */
8263 if (device->total_bytes > device->bytes_used + min_free) {
8264 ret = find_free_dev_extent(NULL, device, min_free,
7bfc837d 8265 &dev_offset, NULL);
ba1bf481 8266 if (!ret)
73e48b27 8267 break;
ba1bf481 8268 ret = -1;
725c8463 8269 }
edbd8d4e 8270 }
ba1bf481 8271 mutex_unlock(&root->fs_info->chunk_mutex);
edbd8d4e 8272out:
ba1bf481 8273 btrfs_put_block_group(block_group);
edbd8d4e
CM
8274 return ret;
8275}
8276
b2950863
CH
8277static int find_first_block_group(struct btrfs_root *root,
8278 struct btrfs_path *path, struct btrfs_key *key)
0b86a832 8279{
925baedd 8280 int ret = 0;
0b86a832
CM
8281 struct btrfs_key found_key;
8282 struct extent_buffer *leaf;
8283 int slot;
edbd8d4e 8284
0b86a832
CM
8285 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
8286 if (ret < 0)
925baedd
CM
8287 goto out;
8288
d397712b 8289 while (1) {
0b86a832 8290 slot = path->slots[0];
edbd8d4e 8291 leaf = path->nodes[0];
0b86a832
CM
8292 if (slot >= btrfs_header_nritems(leaf)) {
8293 ret = btrfs_next_leaf(root, path);
8294 if (ret == 0)
8295 continue;
8296 if (ret < 0)
925baedd 8297 goto out;
0b86a832 8298 break;
edbd8d4e 8299 }
0b86a832 8300 btrfs_item_key_to_cpu(leaf, &found_key, slot);
edbd8d4e 8301
0b86a832 8302 if (found_key.objectid >= key->objectid &&
925baedd
CM
8303 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
8304 ret = 0;
8305 goto out;
8306 }
0b86a832 8307 path->slots[0]++;
edbd8d4e 8308 }
925baedd 8309out:
0b86a832 8310 return ret;
edbd8d4e
CM
8311}
8312
0af3d00b
JB
8313void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
8314{
8315 struct btrfs_block_group_cache *block_group;
8316 u64 last = 0;
8317
8318 while (1) {
8319 struct inode *inode;
8320
8321 block_group = btrfs_lookup_first_block_group(info, last);
8322 while (block_group) {
8323 spin_lock(&block_group->lock);
8324 if (block_group->iref)
8325 break;
8326 spin_unlock(&block_group->lock);
8327 block_group = next_block_group(info->tree_root,
8328 block_group);
8329 }
8330 if (!block_group) {
8331 if (last == 0)
8332 break;
8333 last = 0;
8334 continue;
8335 }
8336
8337 inode = block_group->inode;
8338 block_group->iref = 0;
8339 block_group->inode = NULL;
8340 spin_unlock(&block_group->lock);
8341 iput(inode);
8342 last = block_group->key.objectid + block_group->key.offset;
8343 btrfs_put_block_group(block_group);
8344 }
8345}
8346
1a40e23b
ZY
8347int btrfs_free_block_groups(struct btrfs_fs_info *info)
8348{
8349 struct btrfs_block_group_cache *block_group;
4184ea7f 8350 struct btrfs_space_info *space_info;
11833d66 8351 struct btrfs_caching_control *caching_ctl;
1a40e23b
ZY
8352 struct rb_node *n;
8353
11833d66
YZ
8354 down_write(&info->extent_commit_sem);
8355 while (!list_empty(&info->caching_block_groups)) {
8356 caching_ctl = list_entry(info->caching_block_groups.next,
8357 struct btrfs_caching_control, list);
8358 list_del(&caching_ctl->list);
8359 put_caching_control(caching_ctl);
8360 }
8361 up_write(&info->extent_commit_sem);
8362
1a40e23b
ZY
8363 spin_lock(&info->block_group_cache_lock);
8364 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
8365 block_group = rb_entry(n, struct btrfs_block_group_cache,
8366 cache_node);
1a40e23b
ZY
8367 rb_erase(&block_group->cache_node,
8368 &info->block_group_cache_tree);
d899e052
YZ
8369 spin_unlock(&info->block_group_cache_lock);
8370
80eb234a 8371 down_write(&block_group->space_info->groups_sem);
1a40e23b 8372 list_del(&block_group->list);
80eb234a 8373 up_write(&block_group->space_info->groups_sem);
d2fb3437 8374
817d52f8 8375 if (block_group->cached == BTRFS_CACHE_STARTED)
11833d66 8376 wait_block_group_cache_done(block_group);
817d52f8 8377
3c14874a
JB
8378 /*
8379 * We haven't cached this block group, which means we could
8380 * possibly have excluded extents on this block group.
8381 */
8382 if (block_group->cached == BTRFS_CACHE_NO)
8383 free_excluded_extents(info->extent_root, block_group);
8384
817d52f8 8385 btrfs_remove_free_space_cache(block_group);
11dfe35a 8386 btrfs_put_block_group(block_group);
d899e052
YZ
8387
8388 spin_lock(&info->block_group_cache_lock);
1a40e23b
ZY
8389 }
8390 spin_unlock(&info->block_group_cache_lock);
4184ea7f
CM
8391
8392 /* now that all the block groups are freed, go through and
8393 * free all the space_info structs. This is only called during
8394 * the final stages of unmount, and so we know nobody is
8395 * using them. We call synchronize_rcu() once before we start,
8396 * just to be on the safe side.
8397 */
8398 synchronize_rcu();
8399
8929ecfa
YZ
8400 release_global_block_rsv(info);
8401
4184ea7f
CM
8402 while(!list_empty(&info->space_info)) {
8403 space_info = list_entry(info->space_info.next,
8404 struct btrfs_space_info,
8405 list);
f0486c68
YZ
8406 if (space_info->bytes_pinned > 0 ||
8407 space_info->bytes_reserved > 0) {
8408 WARN_ON(1);
8409 dump_space_info(space_info, 0, 0);
8410 }
4184ea7f
CM
8411 list_del(&space_info->list);
8412 kfree(space_info);
8413 }
1a40e23b
ZY
8414 return 0;
8415}
8416
b742bb82
YZ
8417static void __link_block_group(struct btrfs_space_info *space_info,
8418 struct btrfs_block_group_cache *cache)
8419{
8420 int index = get_block_group_index(cache);
8421
8422 down_write(&space_info->groups_sem);
8423 list_add_tail(&cache->list, &space_info->block_groups[index]);
8424 up_write(&space_info->groups_sem);
8425}
8426
9078a3e1
CM
8427int btrfs_read_block_groups(struct btrfs_root *root)
8428{
8429 struct btrfs_path *path;
8430 int ret;
9078a3e1 8431 struct btrfs_block_group_cache *cache;
be744175 8432 struct btrfs_fs_info *info = root->fs_info;
6324fbf3 8433 struct btrfs_space_info *space_info;
9078a3e1
CM
8434 struct btrfs_key key;
8435 struct btrfs_key found_key;
5f39d397 8436 struct extent_buffer *leaf;
0af3d00b
JB
8437 int need_clear = 0;
8438 u64 cache_gen;
96b5179d 8439
be744175 8440 root = info->extent_root;
9078a3e1 8441 key.objectid = 0;
0b86a832 8442 key.offset = 0;
9078a3e1 8443 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
9078a3e1
CM
8444 path = btrfs_alloc_path();
8445 if (!path)
8446 return -ENOMEM;
8447
0af3d00b
JB
8448 cache_gen = btrfs_super_cache_generation(&root->fs_info->super_copy);
8449 if (cache_gen != 0 &&
8450 btrfs_super_generation(&root->fs_info->super_copy) != cache_gen)
8451 need_clear = 1;
88c2ba3b
JB
8452 if (btrfs_test_opt(root, CLEAR_CACHE))
8453 need_clear = 1;
8216ef86
JB
8454 if (!btrfs_test_opt(root, SPACE_CACHE) && cache_gen)
8455 printk(KERN_INFO "btrfs: disk space caching is enabled\n");
0af3d00b 8456
d397712b 8457 while (1) {
0b86a832 8458 ret = find_first_block_group(root, path, &key);
b742bb82
YZ
8459 if (ret > 0)
8460 break;
0b86a832
CM
8461 if (ret != 0)
8462 goto error;
5f39d397
CM
8463 leaf = path->nodes[0];
8464 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
8f18cf13 8465 cache = kzalloc(sizeof(*cache), GFP_NOFS);
9078a3e1 8466 if (!cache) {
0b86a832 8467 ret = -ENOMEM;
f0486c68 8468 goto error;
9078a3e1 8469 }
3e1ad54f 8470
d2fb3437 8471 atomic_set(&cache->count, 1);
c286ac48 8472 spin_lock_init(&cache->lock);
6226cb0a 8473 spin_lock_init(&cache->tree_lock);
817d52f8 8474 cache->fs_info = info;
0f9dd46c 8475 INIT_LIST_HEAD(&cache->list);
fa9c0d79 8476 INIT_LIST_HEAD(&cache->cluster_list);
96303081 8477
0af3d00b
JB
8478 if (need_clear)
8479 cache->disk_cache_state = BTRFS_DC_CLEAR;
8480
96303081
JB
8481 /*
8482 * we only want to have 32k of ram per block group for keeping
8483 * track of free space, and if we pass 1/2 of that we want to
8484 * start converting things over to using bitmaps
8485 */
8486 cache->extents_thresh = ((1024 * 32) / 2) /
8487 sizeof(struct btrfs_free_space);
8488
5f39d397
CM
8489 read_extent_buffer(leaf, &cache->item,
8490 btrfs_item_ptr_offset(leaf, path->slots[0]),
8491 sizeof(cache->item));
9078a3e1 8492 memcpy(&cache->key, &found_key, sizeof(found_key));
0b86a832 8493
9078a3e1
CM
8494 key.objectid = found_key.objectid + found_key.offset;
8495 btrfs_release_path(root, path);
0b86a832 8496 cache->flags = btrfs_block_group_flags(&cache->item);
817d52f8
JB
8497 cache->sectorsize = root->sectorsize;
8498
3c14874a
JB
8499 /*
8500 * We need to exclude the super stripes now so that the space
8501 * info has super bytes accounted for, otherwise we'll think
8502 * we have more space than we actually do.
8503 */
8504 exclude_super_stripes(root, cache);
8505
817d52f8
JB
8506 /*
8507 * check for two cases, either we are full, and therefore
8508 * don't need to bother with the caching work since we won't
8509 * find any space, or we are empty, and we can just add all
8510 * the space in and be done with it. This saves us _alot_ of
8511 * time, particularly in the full case.
8512 */
8513 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
11833d66 8514 cache->last_byte_to_unpin = (u64)-1;
817d52f8 8515 cache->cached = BTRFS_CACHE_FINISHED;
1b2da372 8516 free_excluded_extents(root, cache);
817d52f8 8517 } else if (btrfs_block_group_used(&cache->item) == 0) {
11833d66 8518 cache->last_byte_to_unpin = (u64)-1;
817d52f8
JB
8519 cache->cached = BTRFS_CACHE_FINISHED;
8520 add_new_free_space(cache, root->fs_info,
8521 found_key.objectid,
8522 found_key.objectid +
8523 found_key.offset);
11833d66 8524 free_excluded_extents(root, cache);
817d52f8 8525 }
96b5179d 8526
6324fbf3
CM
8527 ret = update_space_info(info, cache->flags, found_key.offset,
8528 btrfs_block_group_used(&cache->item),
8529 &space_info);
8530 BUG_ON(ret);
8531 cache->space_info = space_info;
1b2da372 8532 spin_lock(&cache->space_info->lock);
f0486c68 8533 cache->space_info->bytes_readonly += cache->bytes_super;
1b2da372
JB
8534 spin_unlock(&cache->space_info->lock);
8535
b742bb82 8536 __link_block_group(space_info, cache);
0f9dd46c
JB
8537
8538 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8539 BUG_ON(ret);
75ccf47d
CM
8540
8541 set_avail_alloc_bits(root->fs_info, cache->flags);
2b82032c 8542 if (btrfs_chunk_readonly(root, cache->key.objectid))
f0486c68 8543 set_block_group_ro(cache);
9078a3e1 8544 }
b742bb82
YZ
8545
8546 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
8547 if (!(get_alloc_profile(root, space_info->flags) &
8548 (BTRFS_BLOCK_GROUP_RAID10 |
8549 BTRFS_BLOCK_GROUP_RAID1 |
8550 BTRFS_BLOCK_GROUP_DUP)))
8551 continue;
8552 /*
8553 * avoid allocating from un-mirrored block group if there are
8554 * mirrored block groups.
8555 */
8556 list_for_each_entry(cache, &space_info->block_groups[3], list)
f0486c68 8557 set_block_group_ro(cache);
b742bb82 8558 list_for_each_entry(cache, &space_info->block_groups[4], list)
f0486c68 8559 set_block_group_ro(cache);
9078a3e1 8560 }
f0486c68
YZ
8561
8562 init_global_block_rsv(info);
0b86a832
CM
8563 ret = 0;
8564error:
9078a3e1 8565 btrfs_free_path(path);
0b86a832 8566 return ret;
9078a3e1 8567}
6324fbf3
CM
8568
8569int btrfs_make_block_group(struct btrfs_trans_handle *trans,
8570 struct btrfs_root *root, u64 bytes_used,
e17cade2 8571 u64 type, u64 chunk_objectid, u64 chunk_offset,
6324fbf3
CM
8572 u64 size)
8573{
8574 int ret;
6324fbf3
CM
8575 struct btrfs_root *extent_root;
8576 struct btrfs_block_group_cache *cache;
6324fbf3
CM
8577
8578 extent_root = root->fs_info->extent_root;
6324fbf3 8579
12fcfd22 8580 root->fs_info->last_trans_log_full_commit = trans->transid;
e02119d5 8581
8f18cf13 8582 cache = kzalloc(sizeof(*cache), GFP_NOFS);
0f9dd46c
JB
8583 if (!cache)
8584 return -ENOMEM;
8585
e17cade2 8586 cache->key.objectid = chunk_offset;
6324fbf3 8587 cache->key.offset = size;
d2fb3437 8588 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
96303081 8589 cache->sectorsize = root->sectorsize;
0af3d00b 8590 cache->fs_info = root->fs_info;
96303081
JB
8591
8592 /*
8593 * we only want to have 32k of ram per block group for keeping track
8594 * of free space, and if we pass 1/2 of that we want to start
8595 * converting things over to using bitmaps
8596 */
8597 cache->extents_thresh = ((1024 * 32) / 2) /
8598 sizeof(struct btrfs_free_space);
d2fb3437 8599 atomic_set(&cache->count, 1);
c286ac48 8600 spin_lock_init(&cache->lock);
6226cb0a 8601 spin_lock_init(&cache->tree_lock);
0f9dd46c 8602 INIT_LIST_HEAD(&cache->list);
fa9c0d79 8603 INIT_LIST_HEAD(&cache->cluster_list);
0ef3e66b 8604
6324fbf3 8605 btrfs_set_block_group_used(&cache->item, bytes_used);
6324fbf3
CM
8606 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
8607 cache->flags = type;
8608 btrfs_set_block_group_flags(&cache->item, type);
8609
11833d66 8610 cache->last_byte_to_unpin = (u64)-1;
817d52f8 8611 cache->cached = BTRFS_CACHE_FINISHED;
11833d66 8612 exclude_super_stripes(root, cache);
96303081 8613
817d52f8
JB
8614 add_new_free_space(cache, root->fs_info, chunk_offset,
8615 chunk_offset + size);
8616
11833d66
YZ
8617 free_excluded_extents(root, cache);
8618
6324fbf3
CM
8619 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
8620 &cache->space_info);
8621 BUG_ON(ret);
1b2da372
JB
8622
8623 spin_lock(&cache->space_info->lock);
f0486c68 8624 cache->space_info->bytes_readonly += cache->bytes_super;
1b2da372
JB
8625 spin_unlock(&cache->space_info->lock);
8626
b742bb82 8627 __link_block_group(cache->space_info, cache);
6324fbf3 8628
0f9dd46c
JB
8629 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8630 BUG_ON(ret);
c286ac48 8631
6324fbf3
CM
8632 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
8633 sizeof(cache->item));
8634 BUG_ON(ret);
8635
d18a2c44 8636 set_avail_alloc_bits(extent_root->fs_info, type);
925baedd 8637
6324fbf3
CM
8638 return 0;
8639}
1a40e23b
ZY
8640
8641int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
8642 struct btrfs_root *root, u64 group_start)
8643{
8644 struct btrfs_path *path;
8645 struct btrfs_block_group_cache *block_group;
44fb5511 8646 struct btrfs_free_cluster *cluster;
0af3d00b 8647 struct btrfs_root *tree_root = root->fs_info->tree_root;
1a40e23b 8648 struct btrfs_key key;
0af3d00b 8649 struct inode *inode;
1a40e23b 8650 int ret;
89a55897 8651 int factor;
1a40e23b 8652
1a40e23b
ZY
8653 root = root->fs_info->extent_root;
8654
8655 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
8656 BUG_ON(!block_group);
c146afad 8657 BUG_ON(!block_group->ro);
1a40e23b
ZY
8658
8659 memcpy(&key, &block_group->key, sizeof(key));
89a55897
JB
8660 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
8661 BTRFS_BLOCK_GROUP_RAID1 |
8662 BTRFS_BLOCK_GROUP_RAID10))
8663 factor = 2;
8664 else
8665 factor = 1;
1a40e23b 8666
44fb5511
CM
8667 /* make sure this block group isn't part of an allocation cluster */
8668 cluster = &root->fs_info->data_alloc_cluster;
8669 spin_lock(&cluster->refill_lock);
8670 btrfs_return_cluster_to_free_space(block_group, cluster);
8671 spin_unlock(&cluster->refill_lock);
8672
8673 /*
8674 * make sure this block group isn't part of a metadata
8675 * allocation cluster
8676 */
8677 cluster = &root->fs_info->meta_alloc_cluster;
8678 spin_lock(&cluster->refill_lock);
8679 btrfs_return_cluster_to_free_space(block_group, cluster);
8680 spin_unlock(&cluster->refill_lock);
8681
1a40e23b
ZY
8682 path = btrfs_alloc_path();
8683 BUG_ON(!path);
8684
0af3d00b
JB
8685 inode = lookup_free_space_inode(root, block_group, path);
8686 if (!IS_ERR(inode)) {
8687 btrfs_orphan_add(trans, inode);
8688 clear_nlink(inode);
8689 /* One for the block groups ref */
8690 spin_lock(&block_group->lock);
8691 if (block_group->iref) {
8692 block_group->iref = 0;
8693 block_group->inode = NULL;
8694 spin_unlock(&block_group->lock);
8695 iput(inode);
8696 } else {
8697 spin_unlock(&block_group->lock);
8698 }
8699 /* One for our lookup ref */
8700 iput(inode);
8701 }
8702
8703 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
8704 key.offset = block_group->key.objectid;
8705 key.type = 0;
8706
8707 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
8708 if (ret < 0)
8709 goto out;
8710 if (ret > 0)
8711 btrfs_release_path(tree_root, path);
8712 if (ret == 0) {
8713 ret = btrfs_del_item(trans, tree_root, path);
8714 if (ret)
8715 goto out;
8716 btrfs_release_path(tree_root, path);
8717 }
8718
3dfdb934 8719 spin_lock(&root->fs_info->block_group_cache_lock);
1a40e23b
ZY
8720 rb_erase(&block_group->cache_node,
8721 &root->fs_info->block_group_cache_tree);
3dfdb934 8722 spin_unlock(&root->fs_info->block_group_cache_lock);
817d52f8 8723
80eb234a 8724 down_write(&block_group->space_info->groups_sem);
44fb5511
CM
8725 /*
8726 * we must use list_del_init so people can check to see if they
8727 * are still on the list after taking the semaphore
8728 */
8729 list_del_init(&block_group->list);
80eb234a 8730 up_write(&block_group->space_info->groups_sem);
1a40e23b 8731
817d52f8 8732 if (block_group->cached == BTRFS_CACHE_STARTED)
11833d66 8733 wait_block_group_cache_done(block_group);
817d52f8
JB
8734
8735 btrfs_remove_free_space_cache(block_group);
8736
c146afad
YZ
8737 spin_lock(&block_group->space_info->lock);
8738 block_group->space_info->total_bytes -= block_group->key.offset;
8739 block_group->space_info->bytes_readonly -= block_group->key.offset;
89a55897 8740 block_group->space_info->disk_total -= block_group->key.offset * factor;
c146afad 8741 spin_unlock(&block_group->space_info->lock);
283bb197 8742
0af3d00b
JB
8743 memcpy(&key, &block_group->key, sizeof(key));
8744
283bb197 8745 btrfs_clear_space_info_full(root->fs_info);
c146afad 8746
fa9c0d79
CM
8747 btrfs_put_block_group(block_group);
8748 btrfs_put_block_group(block_group);
1a40e23b
ZY
8749
8750 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
8751 if (ret > 0)
8752 ret = -EIO;
8753 if (ret < 0)
8754 goto out;
8755
8756 ret = btrfs_del_item(trans, root, path);
8757out:
8758 btrfs_free_path(path);
8759 return ret;
8760}
acce952b 8761
8762int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
8763{
8764 return unpin_extent_range(root, start, end);
8765}
8766
8767int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr,
8768 u64 num_bytes)
8769{
8770 return btrfs_discard_extent(root, bytenr, num_bytes);
8771}
This page took 0.731809 seconds and 5 git commands to generate.