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