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