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