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