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