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