Btrfs: fixup various fsx failures
[linux-2.6-block.git] / fs / btrfs / extent-tree.c
CommitLineData
2e635a27 1#include <linux/module.h>
fec577fb
CM
2#include "ctree.h"
3#include "disk-io.h"
4#include "print-tree.h"
e089f05c 5#include "transaction.h"
fec577fb 6
e089f05c
CM
7static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
8 *orig_root, u64 num_blocks, u64 search_start, u64
be08c1b9 9 search_end, struct btrfs_key *ins, int data);
e089f05c
CM
10static int finish_current_insert(struct btrfs_trans_handle *trans, struct
11 btrfs_root *extent_root);
e20d96d6
CM
12static int del_pending_extents(struct btrfs_trans_handle *trans, struct
13 btrfs_root *extent_root);
fec577fb 14
de428b63
CM
15static void reada_extent_leaves(struct btrfs_root *root,
16 struct btrfs_path *path, u64 limit)
17{
18 struct btrfs_node *node;
19 int i;
20 int nritems;
21 u64 item_objectid;
22 u64 blocknr;
23 int slot;
24 int ret;
25
26 if (!path->nodes[1])
27 return;
28 node = btrfs_buffer_node(path->nodes[1]);
29 slot = path->slots[1] + 1;
30 nritems = btrfs_header_nritems(&node->header);
31 for (i = slot; i < nritems && i < slot + 8; i++) {
32 item_objectid = btrfs_disk_key_objectid(&node->ptrs[i].key);
33 if (item_objectid > limit)
34 break;
35 blocknr = btrfs_node_blockptr(node, i);
36 ret = readahead_tree_block(root, blocknr);
37 if (ret)
38 break;
39 }
40}
41
e37c9e69
CM
42static int cache_block_group(struct btrfs_root *root,
43 struct btrfs_block_group_cache *block_group)
44{
45 struct btrfs_path *path;
46 int ret;
47 struct btrfs_key key;
48 struct btrfs_leaf *leaf;
49 struct radix_tree_root *extent_radix;
50 int slot;
51 u64 i;
52 u64 last = 0;
53 u64 hole_size;
de428b63 54 u64 limit;
e37c9e69
CM
55 int found = 0;
56
57 root = root->fs_info->extent_root;
58 extent_radix = &root->fs_info->extent_map_radix;
59
60 if (block_group->cached)
61 return 0;
62 if (block_group->data)
63 return 0;
64 path = btrfs_alloc_path();
65 if (!path)
66 return -ENOMEM;
67printk("cache block group %Lu\n", block_group->key.objectid);
68 key.objectid = block_group->key.objectid;
69 key.flags = 0;
70 key.offset = 0;
71 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
72 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
73 if (ret < 0)
74 return ret;
75 if (ret && path->slots[0] > 0)
76 path->slots[0]--;
de428b63
CM
77 limit = block_group->key.objectid + block_group->key.offset;
78 reada_extent_leaves(root, path, limit);
e37c9e69
CM
79 while(1) {
80 leaf = btrfs_buffer_leaf(path->nodes[0]);
81 slot = path->slots[0];
82 if (slot >= btrfs_header_nritems(&leaf->header)) {
de428b63 83 reada_extent_leaves(root, path, limit);
e37c9e69 84 ret = btrfs_next_leaf(root, path);
de428b63 85 if (ret == 0) {
e37c9e69 86 continue;
de428b63 87 } else {
e37c9e69
CM
88 if (found) {
89 hole_size = block_group->key.objectid +
90 block_group->key.offset - last;
91 } else {
92 last = block_group->key.objectid;
93 hole_size = block_group->key.offset;
94 }
95 for (i = 0; i < hole_size; i++) {
96 set_radix_bit(extent_radix,
97 last + i);
98 }
99 break;
100 }
101 }
102 btrfs_disk_key_to_cpu(&key, &leaf->items[slot].key);
103 if (key.objectid >= block_group->key.objectid +
104 block_group->key.offset) {
105 if (found) {
106 hole_size = block_group->key.objectid +
107 block_group->key.offset - last;
108 } else {
109 last = block_group->key.objectid;
110 hole_size = block_group->key.offset;
111 }
112 for (i = 0; i < hole_size; i++) {
113 set_radix_bit(extent_radix, last + i);
114 }
115 break;
116 }
117 if (btrfs_key_type(&key) == BTRFS_EXTENT_ITEM_KEY) {
118 if (!found) {
119 last = key.objectid + key.offset;
120 found = 1;
121 } else {
122 hole_size = key.objectid - last;
123 for (i = 0; i < hole_size; i++) {
124 set_radix_bit(extent_radix, last + i);
125 }
126 last = key.objectid + key.offset;
127 }
128 }
129 path->slots[0]++;
130 }
131
132 block_group->cached = 1;
133 btrfs_free_path(path);
134 return 0;
135}
136
be744175
CM
137static struct btrfs_block_group_cache *lookup_block_group(struct
138 btrfs_fs_info *info,
139 u64 blocknr)
140{
141 struct btrfs_block_group_cache *block_group;
142 int ret;
143
144 ret = radix_tree_gang_lookup(&info->block_group_radix,
145 (void **)&block_group,
146 blocknr, 1);
147 if (ret) {
3e1ad54f 148 if (block_group->key.objectid <= blocknr && blocknr <=
be744175
CM
149 block_group->key.objectid + block_group->key.offset)
150 return block_group;
151 }
152 ret = radix_tree_gang_lookup(&info->block_group_data_radix,
153 (void **)&block_group,
154 blocknr, 1);
155 if (ret) {
3e1ad54f 156 if (block_group->key.objectid <= blocknr && blocknr <=
be744175
CM
157 block_group->key.objectid + block_group->key.offset)
158 return block_group;
159 }
3e1ad54f
CM
160 WARN_ON(1);
161 printk("lookup_block_group fails for blocknr %Lu\n", blocknr);
162 printk("last ret was %d\n", ret);
163 if (ret) {
164 printk("last block group was %Lu %Lu\n", block_group->key.objectid, block_group->key.offset);
165 }
be744175
CM
166 return NULL;
167}
168
e37c9e69
CM
169static u64 leaf_range(struct btrfs_root *root)
170{
171 u64 size = BTRFS_LEAF_DATA_SIZE(root);
172 size = size / (sizeof(struct btrfs_extent_item) +
173 sizeof(struct btrfs_item));
174 return size;
175}
176
177static u64 find_search_start(struct btrfs_root *root,
178 struct btrfs_block_group_cache **cache_ret,
179 u64 search_start, int num)
180{
181 unsigned long gang[8];
182 int ret;
183 struct btrfs_block_group_cache *cache = *cache_ret;
184 u64 last = max(search_start, cache->key.objectid);
185
186 if (cache->data)
187 goto out;
188 if (num > 1) {
189 last = max(last, cache->last_prealloc);
190 }
191again:
192 cache_block_group(root, cache);
193 while(1) {
194 ret = find_first_radix_bit(&root->fs_info->extent_map_radix,
195 gang, last, ARRAY_SIZE(gang));
196 if (!ret)
197 goto out;
198 last = gang[ret-1] + 1;
199 if (num > 1) {
200 if (ret != ARRAY_SIZE(gang)) {
201 goto new_group;
202 }
203 if (gang[ret-1] - gang[0] > leaf_range(root)) {
204 continue;
205 }
206 }
207 if (gang[0] >= cache->key.objectid + cache->key.offset) {
208 goto new_group;
209 }
210 return gang[0];
211 }
212out:
213 return max(cache->last_alloc, search_start);
214
215new_group:
216 cache = lookup_block_group(root->fs_info, last + cache->key.offset - 1);
217 if (!cache) {
218 return max((*cache_ret)->last_alloc, search_start);
219 }
220 cache = btrfs_find_block_group(root, cache,
de428b63 221 last + cache->key.offset - 1, 0, 0);
e37c9e69
CM
222 *cache_ret = cache;
223 goto again;
224}
225
31f3c99b
CM
226struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
227 struct btrfs_block_group_cache
be744175 228 *hint, u64 search_start,
de428b63 229 int data, int owner)
cd1bc465
CM
230{
231 struct btrfs_block_group_cache *cache[8];
31f3c99b 232 struct btrfs_block_group_cache *found_group = NULL;
cd1bc465 233 struct btrfs_fs_info *info = root->fs_info;
be744175 234 struct radix_tree_root *radix;
cd1bc465 235 u64 used;
31f3c99b
CM
236 u64 last = 0;
237 u64 hint_last;
cd1bc465
CM
238 int i;
239 int ret;
31f3c99b 240 int full_search = 0;
de428b63
CM
241 int factor = 8;
242
243 if (!owner)
244 factor = 5;
be744175
CM
245
246 if (data)
247 radix = &info->block_group_data_radix;
248 else
249 radix = &info->block_group_radix;
250
251 if (search_start) {
252 struct btrfs_block_group_cache *shint;
253 shint = lookup_block_group(info, search_start);
254 if (shint->data == data) {
255 used = btrfs_block_group_used(&shint->item);
256 if (used + shint->pinned <
de428b63 257 (shint->key.offset * factor) / 10) {
be744175
CM
258 return shint;
259 }
260 }
261 }
262 if (hint && hint->data == data) {
31f3c99b 263 used = btrfs_block_group_used(&hint->item);
de428b63 264 if (used + hint->pinned < (hint->key.offset * factor) / 10) {
31f3c99b
CM
265 return hint;
266 }
be744175
CM
267 if (used >= (hint->key.offset * 8) / 10) {
268 radix_tree_tag_clear(radix,
269 hint->key.objectid +
270 hint->key.offset - 1,
271 BTRFS_BLOCK_GROUP_AVAIL);
272 }
8d7be552 273 last = hint->key.offset * 3;
be744175 274 if (hint->key.objectid >= last)
e37c9e69
CM
275 last = max(search_start + hint->key.offset - 1,
276 hint->key.objectid - last);
be744175
CM
277 else
278 last = hint->key.objectid + hint->key.offset;
31f3c99b
CM
279 hint_last = last;
280 } else {
e37c9e69
CM
281 if (hint)
282 hint_last = max(hint->key.objectid, search_start);
283 else
284 hint_last = search_start;
285
286 last = hint_last;
31f3c99b 287 }
cd1bc465 288 while(1) {
be744175 289 ret = radix_tree_gang_lookup_tag(radix, (void **)cache,
cd1bc465 290 last, ARRAY_SIZE(cache),
31f3c99b 291 BTRFS_BLOCK_GROUP_AVAIL);
cd1bc465
CM
292 if (!ret)
293 break;
294 for (i = 0; i < ret; i++) {
be08c1b9
CM
295 last = cache[i]->key.objectid +
296 cache[i]->key.offset;
cd1bc465 297 used = btrfs_block_group_used(&cache[i]->item);
be744175 298 if (used + cache[i]->pinned <
de428b63 299 (cache[i]->key.offset * factor) / 10) {
31f3c99b
CM
300 found_group = cache[i];
301 goto found;
cd1bc465 302 }
be744175
CM
303 if (used >= (cache[i]->key.offset * 8) / 10) {
304 radix_tree_tag_clear(radix,
305 cache[i]->key.objectid +
306 cache[i]->key.offset - 1,
307 BTRFS_BLOCK_GROUP_AVAIL);
308 }
cd1bc465 309 }
de428b63 310 cond_resched();
cd1bc465 311 }
31f3c99b
CM
312 last = hint_last;
313again:
cd1bc465 314 while(1) {
be744175
CM
315 ret = radix_tree_gang_lookup(radix, (void **)cache,
316 last, ARRAY_SIZE(cache));
cd1bc465
CM
317 if (!ret)
318 break;
319 for (i = 0; i < ret; i++) {
be08c1b9
CM
320 last = cache[i]->key.objectid +
321 cache[i]->key.offset;
cd1bc465 322 used = btrfs_block_group_used(&cache[i]->item);
be744175 323 if (used + cache[i]->pinned < cache[i]->key.offset) {
31f3c99b
CM
324 found_group = cache[i];
325 goto found;
cd1bc465 326 }
be744175
CM
327 if (used >= cache[i]->key.offset) {
328 radix_tree_tag_clear(radix,
329 cache[i]->key.objectid +
330 cache[i]->key.offset - 1,
331 BTRFS_BLOCK_GROUP_AVAIL);
332 }
cd1bc465 333 }
de428b63 334 cond_resched();
cd1bc465 335 }
31f3c99b 336 if (!full_search) {
de428b63 337printk("find block group doing full search data %d start %Lu\n", data, search_start);
be744175 338 last = search_start;
31f3c99b
CM
339 full_search = 1;
340 goto again;
341 }
31f3c99b 342 if (!found_group) {
de428b63 343printk("find block group bailing to zero data %d\n", data);
be744175 344 ret = radix_tree_gang_lookup(radix,
31f3c99b
CM
345 (void **)&found_group, 0, 1);
346 BUG_ON(ret != 1);
347 }
be744175 348found:
31f3c99b 349 return found_group;
cd1bc465
CM
350}
351
b18c6685
CM
352int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
353 struct btrfs_root *root,
354 u64 blocknr, u64 num_blocks)
02217ed2 355{
5caf2a00 356 struct btrfs_path *path;
02217ed2 357 int ret;
e2fa7227 358 struct btrfs_key key;
234b63a0
CM
359 struct btrfs_leaf *l;
360 struct btrfs_extent_item *item;
e2fa7227 361 struct btrfs_key ins;
cf27e1ee 362 u32 refs;
037e6390 363
9f5fae2f 364 find_free_extent(trans, root->fs_info->extent_root, 0, 0, (u64)-1,
be08c1b9 365 &ins, 0);
5caf2a00
CM
366 path = btrfs_alloc_path();
367 BUG_ON(!path);
368 btrfs_init_path(path);
02217ed2
CM
369 key.objectid = blocknr;
370 key.flags = 0;
62e2749e 371 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
6407bf6d 372 key.offset = num_blocks;
5caf2a00 373 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
9f5fae2f 374 0, 1);
a429e513
CM
375 if (ret != 0) {
376printk("can't find block %Lu %Lu\n", blocknr, num_blocks);
a28ec197 377 BUG();
a429e513 378 }
02217ed2 379 BUG_ON(ret != 0);
5caf2a00
CM
380 l = btrfs_buffer_leaf(path->nodes[0]);
381 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
cf27e1ee
CM
382 refs = btrfs_extent_refs(item);
383 btrfs_set_extent_refs(item, refs + 1);
5caf2a00 384 btrfs_mark_buffer_dirty(path->nodes[0]);
a28ec197 385
5caf2a00
CM
386 btrfs_release_path(root->fs_info->extent_root, path);
387 btrfs_free_path(path);
9f5fae2f 388 finish_current_insert(trans, root->fs_info->extent_root);
e20d96d6 389 del_pending_extents(trans, root->fs_info->extent_root);
02217ed2
CM
390 return 0;
391}
392
b18c6685
CM
393static int lookup_extent_ref(struct btrfs_trans_handle *trans,
394 struct btrfs_root *root, u64 blocknr,
395 u64 num_blocks, u32 *refs)
a28ec197 396{
5caf2a00 397 struct btrfs_path *path;
a28ec197 398 int ret;
e2fa7227 399 struct btrfs_key key;
234b63a0
CM
400 struct btrfs_leaf *l;
401 struct btrfs_extent_item *item;
5caf2a00
CM
402
403 path = btrfs_alloc_path();
404 btrfs_init_path(path);
a28ec197 405 key.objectid = blocknr;
6407bf6d 406 key.offset = num_blocks;
62e2749e
CM
407 key.flags = 0;
408 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
5caf2a00 409 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
9f5fae2f 410 0, 0);
a28ec197
CM
411 if (ret != 0)
412 BUG();
5caf2a00
CM
413 l = btrfs_buffer_leaf(path->nodes[0]);
414 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
cf27e1ee 415 *refs = btrfs_extent_refs(item);
5caf2a00
CM
416 btrfs_release_path(root->fs_info->extent_root, path);
417 btrfs_free_path(path);
a28ec197
CM
418 return 0;
419}
420
c5739bba
CM
421int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
422 struct btrfs_root *root)
423{
b18c6685 424 return btrfs_inc_extent_ref(trans, root, bh_blocknr(root->node), 1);
c5739bba
CM
425}
426
e089f05c 427int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
e20d96d6 428 struct buffer_head *buf)
02217ed2
CM
429{
430 u64 blocknr;
e20d96d6 431 struct btrfs_node *buf_node;
6407bf6d
CM
432 struct btrfs_leaf *buf_leaf;
433 struct btrfs_disk_key *key;
434 struct btrfs_file_extent_item *fi;
02217ed2 435 int i;
6407bf6d
CM
436 int leaf;
437 int ret;
a28ec197 438
3768f368 439 if (!root->ref_cows)
a28ec197 440 return 0;
e20d96d6 441 buf_node = btrfs_buffer_node(buf);
6407bf6d
CM
442 leaf = btrfs_is_leaf(buf_node);
443 buf_leaf = btrfs_buffer_leaf(buf);
e20d96d6 444 for (i = 0; i < btrfs_header_nritems(&buf_node->header); i++) {
6407bf6d 445 if (leaf) {
3a686375 446 u64 disk_blocknr;
6407bf6d
CM
447 key = &buf_leaf->items[i].key;
448 if (btrfs_disk_key_type(key) != BTRFS_EXTENT_DATA_KEY)
449 continue;
450 fi = btrfs_item_ptr(buf_leaf, i,
451 struct btrfs_file_extent_item);
236454df
CM
452 if (btrfs_file_extent_type(fi) ==
453 BTRFS_FILE_EXTENT_INLINE)
454 continue;
3a686375
CM
455 disk_blocknr = btrfs_file_extent_disk_blocknr(fi);
456 if (disk_blocknr == 0)
457 continue;
458 ret = btrfs_inc_extent_ref(trans, root, disk_blocknr,
6407bf6d
CM
459 btrfs_file_extent_disk_num_blocks(fi));
460 BUG_ON(ret);
461 } else {
462 blocknr = btrfs_node_blockptr(buf_node, i);
b18c6685 463 ret = btrfs_inc_extent_ref(trans, root, blocknr, 1);
6407bf6d
CM
464 BUG_ON(ret);
465 }
02217ed2
CM
466 }
467 return 0;
468}
469
9078a3e1
CM
470static int write_one_cache_group(struct btrfs_trans_handle *trans,
471 struct btrfs_root *root,
472 struct btrfs_path *path,
473 struct btrfs_block_group_cache *cache)
474{
475 int ret;
476 int pending_ret;
477 struct btrfs_root *extent_root = root->fs_info->extent_root;
478 struct btrfs_block_group_item *bi;
479 struct btrfs_key ins;
480
be08c1b9 481 find_free_extent(trans, extent_root, 0, 0, (u64)-1, &ins, 0);
9078a3e1
CM
482 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
483 BUG_ON(ret);
484 bi = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]), path->slots[0],
485 struct btrfs_block_group_item);
486 memcpy(bi, &cache->item, sizeof(*bi));
487 mark_buffer_dirty(path->nodes[0]);
488 btrfs_release_path(extent_root, path);
489
490 finish_current_insert(trans, extent_root);
491 pending_ret = del_pending_extents(trans, extent_root);
492 if (ret)
493 return ret;
494 if (pending_ret)
495 return pending_ret;
be744175
CM
496 if (cache->data)
497 cache->last_alloc = cache->first_free;
9078a3e1
CM
498 return 0;
499
500}
501
be744175
CM
502static int write_dirty_block_radix(struct btrfs_trans_handle *trans,
503 struct btrfs_root *root,
504 struct radix_tree_root *radix)
9078a3e1
CM
505{
506 struct btrfs_block_group_cache *cache[8];
507 int ret;
508 int err = 0;
509 int werr = 0;
9078a3e1
CM
510 int i;
511 struct btrfs_path *path;
512
513 path = btrfs_alloc_path();
514 if (!path)
515 return -ENOMEM;
516
517 while(1) {
518 ret = radix_tree_gang_lookup_tag(radix, (void **)cache,
519 0, ARRAY_SIZE(cache),
520 BTRFS_BLOCK_GROUP_DIRTY);
521 if (!ret)
522 break;
523 for (i = 0; i < ret; i++) {
524 radix_tree_tag_clear(radix, cache[i]->key.objectid +
525 cache[i]->key.offset - 1,
526 BTRFS_BLOCK_GROUP_DIRTY);
527 err = write_one_cache_group(trans, root,
528 path, cache[i]);
529 if (err)
530 werr = err;
531 }
532 }
533 btrfs_free_path(path);
534 return werr;
535}
536
be744175
CM
537int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
538 struct btrfs_root *root)
539{
540 int ret;
541 int ret2;
542 ret = write_dirty_block_radix(trans, root,
543 &root->fs_info->block_group_radix);
544 ret2 = write_dirty_block_radix(trans, root,
545 &root->fs_info->block_group_data_radix);
546 if (ret)
547 return ret;
548 if (ret2)
549 return ret2;
550 return 0;
551}
552
9078a3e1
CM
553static int update_block_group(struct btrfs_trans_handle *trans,
554 struct btrfs_root *root,
e37c9e69 555 u64 blocknr, u64 num, int alloc, int mark_free)
9078a3e1
CM
556{
557 struct btrfs_block_group_cache *cache;
558 struct btrfs_fs_info *info = root->fs_info;
559 u64 total = num;
560 u64 old_val;
561 u64 block_in_group;
e37c9e69 562 u64 i;
3e1ad54f 563
9078a3e1 564 while(total) {
3e1ad54f
CM
565 cache = lookup_block_group(info, blocknr);
566 if (!cache) {
cd1bc465
CM
567 printk(KERN_CRIT "blocknr %Lu lookup failed\n",
568 blocknr);
9078a3e1 569 return -1;
cd1bc465 570 }
9078a3e1
CM
571 block_in_group = blocknr - cache->key.objectid;
572 WARN_ON(block_in_group > cache->key.offset);
3e1ad54f 573 radix_tree_tag_set(cache->radix, cache->key.objectid +
be744175 574 cache->key.offset - 1,
9078a3e1
CM
575 BTRFS_BLOCK_GROUP_DIRTY);
576
577 old_val = btrfs_block_group_used(&cache->item);
578 num = min(total, cache->key.offset - block_in_group);
cd1bc465 579 if (alloc) {
9078a3e1 580 old_val += num;
cd1bc465
CM
581 if (blocknr > cache->last_alloc)
582 cache->last_alloc = blocknr;
e37c9e69
CM
583 if (!cache->data) {
584 for (i = 0; i < num; i++) {
585 clear_radix_bit(&info->extent_map_radix,
586 blocknr + i);
587 }
588 }
cd1bc465 589 } else {
9078a3e1 590 old_val -= num;
cd1bc465
CM
591 if (blocknr < cache->first_free)
592 cache->first_free = blocknr;
e37c9e69
CM
593 if (!cache->data && mark_free) {
594 for (i = 0; i < num; i++) {
595 set_radix_bit(&info->extent_map_radix,
596 blocknr + i);
597 }
598 }
de428b63
CM
599 if (old_val < (cache->key.offset * 5) / 10 &&
600 old_val + num >= (cache->key.offset * 5) / 10) {
e37c9e69
CM
601printk("group %Lu now available\n", cache->key.objectid);
602 radix_tree_tag_set(cache->radix,
603 cache->key.objectid +
604 cache->key.offset - 1,
605 BTRFS_BLOCK_GROUP_AVAIL);
606 }
cd1bc465 607 }
9078a3e1 608 btrfs_set_block_group_used(&cache->item, old_val);
e37c9e69
CM
609 total -= num;
610 blocknr += num;
9078a3e1
CM
611 }
612 return 0;
613}
614
be08c1b9
CM
615static int try_remove_page(struct address_space *mapping, unsigned long index)
616{
617 int ret;
618 ret = invalidate_mapping_pages(mapping, index, index);
619 return ret;
620}
621
e089f05c
CM
622int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, struct
623 btrfs_root *root)
a28ec197 624{
8ef97622 625 unsigned long gang[8];
be08c1b9 626 struct inode *btree_inode = root->fs_info->btree_inode;
be744175 627 struct btrfs_block_group_cache *block_group;
88fd146c 628 u64 first = 0;
a28ec197
CM
629 int ret;
630 int i;
8ef97622 631 struct radix_tree_root *pinned_radix = &root->fs_info->pinned_radix;
e37c9e69 632 struct radix_tree_root *extent_radix = &root->fs_info->extent_map_radix;
a28ec197
CM
633
634 while(1) {
e37c9e69 635 ret = find_first_radix_bit(pinned_radix, gang, 0,
8ef97622 636 ARRAY_SIZE(gang));
a28ec197
CM
637 if (!ret)
638 break;
88fd146c 639 if (!first)
8ef97622 640 first = gang[0];
0579da42 641 for (i = 0; i < ret; i++) {
8ef97622 642 clear_radix_bit(pinned_radix, gang[i]);
be744175
CM
643 block_group = lookup_block_group(root->fs_info,
644 gang[i]);
645 if (block_group) {
646 WARN_ON(block_group->pinned == 0);
647 block_group->pinned--;
648 if (gang[i] < block_group->last_alloc)
649 block_group->last_alloc = gang[i];
e37c9e69
CM
650 if (gang[i] < block_group->last_prealloc)
651 block_group->last_prealloc = gang[i];
652 if (!block_group->data)
653 set_radix_bit(extent_radix, gang[i]);
be744175 654 }
be08c1b9
CM
655 try_remove_page(btree_inode->i_mapping,
656 gang[i] << (PAGE_CACHE_SHIFT -
657 btree_inode->i_blkbits));
0579da42 658 }
a28ec197
CM
659 }
660 return 0;
661}
662
e089f05c
CM
663static int finish_current_insert(struct btrfs_trans_handle *trans, struct
664 btrfs_root *extent_root)
037e6390 665{
e2fa7227 666 struct btrfs_key ins;
234b63a0 667 struct btrfs_extent_item extent_item;
037e6390
CM
668 int i;
669 int ret;
1261ec42
CM
670 u64 super_blocks_used;
671 struct btrfs_fs_info *info = extent_root->fs_info;
037e6390 672
cf27e1ee 673 btrfs_set_extent_refs(&extent_item, 1);
037e6390
CM
674 ins.offset = 1;
675 ins.flags = 0;
62e2749e 676 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
5d0c3e60 677 btrfs_set_extent_owner(&extent_item, extent_root->root_key.objectid);
037e6390 678
f2458e1d
CM
679 for (i = 0; i < extent_root->fs_info->extent_tree_insert_nr; i++) {
680 ins.objectid = extent_root->fs_info->extent_tree_insert[i];
1261ec42
CM
681 super_blocks_used = btrfs_super_blocks_used(info->disk_super);
682 btrfs_set_super_blocks_used(info->disk_super,
683 super_blocks_used + 1);
e089f05c
CM
684 ret = btrfs_insert_item(trans, extent_root, &ins, &extent_item,
685 sizeof(extent_item));
037e6390
CM
686 BUG_ON(ret);
687 }
f2458e1d
CM
688 extent_root->fs_info->extent_tree_insert_nr = 0;
689 extent_root->fs_info->extent_tree_prealloc_nr = 0;
037e6390
CM
690 return 0;
691}
692
8ef97622 693static int pin_down_block(struct btrfs_root *root, u64 blocknr, int pending)
e20d96d6
CM
694{
695 int err;
78fae27e 696 struct btrfs_header *header;
8ef97622
CM
697 struct buffer_head *bh;
698
f4b9aa8d 699 if (!pending) {
d98237b3 700 bh = btrfs_find_tree_block(root, blocknr);
2c90e5d6
CM
701 if (bh) {
702 if (buffer_uptodate(bh)) {
703 u64 transid =
704 root->fs_info->running_transaction->transid;
705 header = btrfs_buffer_header(bh);
706 if (btrfs_header_generation(header) ==
707 transid) {
708 btrfs_block_release(root, bh);
709 return 0;
710 }
f4b9aa8d 711 }
d6025579 712 btrfs_block_release(root, bh);
8ef97622 713 }
8ef97622 714 err = set_radix_bit(&root->fs_info->pinned_radix, blocknr);
be744175
CM
715 if (!err) {
716 struct btrfs_block_group_cache *cache;
717 cache = lookup_block_group(root->fs_info, blocknr);
718 if (cache)
719 cache->pinned++;
720 }
f4b9aa8d
CM
721 } else {
722 err = set_radix_bit(&root->fs_info->pending_del_radix, blocknr);
723 }
be744175 724 BUG_ON(err < 0);
e20d96d6
CM
725 return 0;
726}
727
fec577fb 728/*
a28ec197 729 * remove an extent from the root, returns 0 on success
fec577fb 730 */
e089f05c 731static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
e37c9e69
CM
732 *root, u64 blocknr, u64 num_blocks, int pin,
733 int mark_free)
a28ec197 734{
5caf2a00 735 struct btrfs_path *path;
e2fa7227 736 struct btrfs_key key;
1261ec42
CM
737 struct btrfs_fs_info *info = root->fs_info;
738 struct btrfs_root *extent_root = info->extent_root;
a28ec197 739 int ret;
234b63a0 740 struct btrfs_extent_item *ei;
e2fa7227 741 struct btrfs_key ins;
cf27e1ee 742 u32 refs;
037e6390 743
a28ec197
CM
744 key.objectid = blocknr;
745 key.flags = 0;
62e2749e 746 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
a28ec197
CM
747 key.offset = num_blocks;
748
be08c1b9 749 find_free_extent(trans, root, 0, 0, (u64)-1, &ins, 0);
5caf2a00
CM
750 path = btrfs_alloc_path();
751 BUG_ON(!path);
752 btrfs_init_path(path);
5f26f772 753
5caf2a00 754 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
a28ec197 755 if (ret) {
2e635a27 756 printk("failed to find %Lu\n", key.objectid);
234b63a0 757 btrfs_print_tree(extent_root, extent_root->node);
2e635a27 758 printk("failed to find %Lu\n", key.objectid);
a28ec197
CM
759 BUG();
760 }
5caf2a00 761 ei = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]), path->slots[0],
123abc88 762 struct btrfs_extent_item);
a28ec197 763 BUG_ON(ei->refs == 0);
cf27e1ee
CM
764 refs = btrfs_extent_refs(ei) - 1;
765 btrfs_set_extent_refs(ei, refs);
5caf2a00 766 btrfs_mark_buffer_dirty(path->nodes[0]);
cf27e1ee 767 if (refs == 0) {
1261ec42 768 u64 super_blocks_used;
78fae27e
CM
769
770 if (pin) {
8ef97622 771 ret = pin_down_block(root, blocknr, 0);
78fae27e
CM
772 BUG_ON(ret);
773 }
774
1261ec42
CM
775 super_blocks_used = btrfs_super_blocks_used(info->disk_super);
776 btrfs_set_super_blocks_used(info->disk_super,
777 super_blocks_used - num_blocks);
5caf2a00 778 ret = btrfs_del_item(trans, extent_root, path);
a28ec197
CM
779 if (ret)
780 BUG();
e37c9e69
CM
781 ret = update_block_group(trans, root, blocknr, num_blocks, 0,
782 mark_free);
9078a3e1 783 BUG_ON(ret);
a28ec197 784 }
5caf2a00 785 btrfs_free_path(path);
e089f05c 786 finish_current_insert(trans, extent_root);
a28ec197
CM
787 return ret;
788}
789
a28ec197
CM
790/*
791 * find all the blocks marked as pending in the radix tree and remove
792 * them from the extent map
793 */
e089f05c
CM
794static int del_pending_extents(struct btrfs_trans_handle *trans, struct
795 btrfs_root *extent_root)
a28ec197
CM
796{
797 int ret;
e20d96d6
CM
798 int wret;
799 int err = 0;
8ef97622 800 unsigned long gang[4];
a28ec197 801 int i;
8ef97622
CM
802 struct radix_tree_root *pending_radix;
803 struct radix_tree_root *pinned_radix;
be744175 804 struct btrfs_block_group_cache *cache;
8ef97622
CM
805
806 pending_radix = &extent_root->fs_info->pending_del_radix;
807 pinned_radix = &extent_root->fs_info->pinned_radix;
a28ec197
CM
808
809 while(1) {
e37c9e69 810 ret = find_first_radix_bit(pending_radix, gang, 0,
8ef97622 811 ARRAY_SIZE(gang));
a28ec197
CM
812 if (!ret)
813 break;
814 for (i = 0; i < ret; i++) {
8ef97622 815 wret = set_radix_bit(pinned_radix, gang[i]);
be744175
CM
816 if (wret == 0) {
817 cache = lookup_block_group(extent_root->fs_info,
818 gang[i]);
819 if (cache)
820 cache->pinned++;
821 }
822 if (wret < 0) {
823 printk(KERN_CRIT "set_radix_bit, err %d\n",
824 wret);
825 BUG_ON(wret < 0);
826 }
8ef97622
CM
827 wret = clear_radix_bit(pending_radix, gang[i]);
828 BUG_ON(wret);
d5719762 829 wret = __free_extent(trans, extent_root,
e37c9e69 830 gang[i], 1, 0, 0);
e20d96d6
CM
831 if (wret)
832 err = wret;
fec577fb
CM
833 }
834 }
e20d96d6 835 return err;
fec577fb
CM
836}
837
838/*
839 * remove an extent from the root, returns 0 on success
840 */
e089f05c
CM
841int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
842 *root, u64 blocknr, u64 num_blocks, int pin)
fec577fb 843{
9f5fae2f 844 struct btrfs_root *extent_root = root->fs_info->extent_root;
fec577fb
CM
845 int pending_ret;
846 int ret;
a28ec197 847
fec577fb 848 if (root == extent_root) {
8ef97622 849 pin_down_block(root, blocknr, 1);
fec577fb
CM
850 return 0;
851 }
e37c9e69 852 ret = __free_extent(trans, root, blocknr, num_blocks, pin, pin == 0);
e20d96d6 853 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
fec577fb
CM
854 return ret ? ret : pending_ret;
855}
856
857/*
858 * walks the btree of allocated extents and find a hole of a given size.
859 * The key ins is changed to record the hole:
860 * ins->objectid == block start
62e2749e 861 * ins->flags = BTRFS_EXTENT_ITEM_KEY
fec577fb
CM
862 * ins->offset == number of blocks
863 * Any available blocks before search_start are skipped.
864 */
e089f05c
CM
865static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
866 *orig_root, u64 num_blocks, u64 search_start, u64
be08c1b9 867 search_end, struct btrfs_key *ins, int data)
fec577fb 868{
5caf2a00 869 struct btrfs_path *path;
e2fa7227 870 struct btrfs_key key;
fec577fb
CM
871 int ret;
872 u64 hole_size = 0;
873 int slot = 0;
e20d96d6 874 u64 last_block = 0;
037e6390 875 u64 test_block;
be744175 876 u64 orig_search_start = search_start;
fec577fb 877 int start_found;
234b63a0 878 struct btrfs_leaf *l;
9f5fae2f 879 struct btrfs_root * root = orig_root->fs_info->extent_root;
f2458e1d 880 struct btrfs_fs_info *info = root->fs_info;
0579da42 881 int total_needed = num_blocks;
f2458e1d
CM
882 int total_found = 0;
883 int fill_prealloc = 0;
e20d96d6 884 int level;
be08c1b9 885 struct btrfs_block_group_cache *block_group;
be744175 886 int full_scan = 0;
de428b63 887 u64 limit;
fec577fb 888
b1a4d965
CM
889 path = btrfs_alloc_path();
890 ins->flags = 0;
891 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
892
e20d96d6 893 level = btrfs_header_level(btrfs_buffer_header(root->node));
f2458e1d
CM
894 if (num_blocks == 0) {
895 fill_prealloc = 1;
896 num_blocks = 1;
308535a0 897 total_needed = (min(level + 1, BTRFS_MAX_LEVEL) + 2) * 3;
f2458e1d 898 }
3e1ad54f
CM
899 if (search_end == (u64)-1)
900 search_end = btrfs_super_total_blocks(info->disk_super);
be744175
CM
901 if (search_start) {
902 block_group = lookup_block_group(info, search_start);
903 block_group = btrfs_find_block_group(root, block_group,
de428b63 904 search_start, data, 1);
be744175
CM
905 } else {
906 block_group = btrfs_find_block_group(root,
907 trans->block_group, 0,
de428b63 908 data, 1);
be744175
CM
909 }
910
911check_failed:
3e1ad54f 912 if (!full_scan && block_group->data != data)
be744175 913 WARN_ON(1);
e37c9e69
CM
914
915 if (!data)
916 search_start = find_search_start(root, &block_group,
917 search_start, total_needed);
918 else
919 search_start = max(block_group->last_alloc, search_start);
920
5caf2a00 921 btrfs_init_path(path);
fec577fb
CM
922 ins->objectid = search_start;
923 ins->offset = 0;
fec577fb 924 start_found = 0;
e37c9e69 925
5caf2a00 926 ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
0f70abe2
CM
927 if (ret < 0)
928 goto error;
aa5d6bed 929
e37c9e69 930 if (path->slots[0] > 0) {
5caf2a00 931 path->slots[0]--;
e37c9e69
CM
932 }
933
934 l = btrfs_buffer_leaf(path->nodes[0]);
935 btrfs_disk_key_to_cpu(&key, &l->items[path->slots[0]].key);
936 /*
937 * a rare case, go back one key if we hit a block group item
938 * instead of an extent item
939 */
940 if (btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY &&
941 key.objectid + key.offset >= search_start) {
942 ins->objectid = key.objectid;
943 ins->offset = key.offset - 1;
944 btrfs_release_path(root, path);
945 ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
946 if (ret < 0)
947 goto error;
948
949 if (path->slots[0] > 0) {
950 path->slots[0]--;
951 }
952 }
0579da42 953
fec577fb 954 while (1) {
5caf2a00
CM
955 l = btrfs_buffer_leaf(path->nodes[0]);
956 slot = path->slots[0];
7518a238 957 if (slot >= btrfs_header_nritems(&l->header)) {
f2458e1d
CM
958 if (fill_prealloc) {
959 info->extent_tree_prealloc_nr = 0;
960 total_found = 0;
961 }
de428b63
CM
962 if (start_found)
963 limit = last_block +
964 block_group->key.offset / 2;
965 else
966 limit = search_start +
967 block_group->key.offset / 2;
5caf2a00 968 ret = btrfs_next_leaf(root, path);
fec577fb
CM
969 if (ret == 0)
970 continue;
0f70abe2
CM
971 if (ret < 0)
972 goto error;
fec577fb
CM
973 if (!start_found) {
974 ins->objectid = search_start;
3e1ad54f 975 ins->offset = search_end - search_start;
fec577fb
CM
976 start_found = 1;
977 goto check_pending;
978 }
979 ins->objectid = last_block > search_start ?
980 last_block : search_start;
3e1ad54f 981 ins->offset = search_end - ins->objectid;
fec577fb
CM
982 goto check_pending;
983 }
e37c9e69 984
e2fa7227 985 btrfs_disk_key_to_cpu(&key, &l->items[slot].key);
e37c9e69
CM
986 if (key.objectid >= search_start && key.objectid > last_block &&
987 start_found) {
988 if (last_block < search_start)
989 last_block = search_start;
990 hole_size = key.objectid - last_block;
991 if (hole_size >= num_blocks) {
992 ins->objectid = last_block;
993 ins->offset = hole_size;
994 goto check_pending;
0579da42 995 }
fec577fb 996 }
e37c9e69
CM
997
998 if (btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY)
999 goto next;
1000
0579da42 1001 start_found = 1;
e2fa7227 1002 last_block = key.objectid + key.offset;
be744175
CM
1003 if (last_block >= block_group->key.objectid +
1004 block_group->key.offset) {
1005 btrfs_release_path(root, path);
1006 search_start = block_group->key.objectid +
1007 block_group->key.offset * 2;
1008 goto new_group;
1009 }
9078a3e1 1010next:
5caf2a00 1011 path->slots[0]++;
de428b63 1012 cond_resched();
fec577fb
CM
1013 }
1014 // FIXME -ENOSPC
1015check_pending:
1016 /* we have to make sure we didn't find an extent that has already
1017 * been allocated by the map tree or the original allocation
1018 */
5caf2a00 1019 btrfs_release_path(root, path);
fec577fb 1020 BUG_ON(ins->objectid < search_start);
e37c9e69 1021
3e1ad54f 1022 if (ins->objectid + num_blocks >= search_end) {
be744175 1023 if (full_scan)
06a2f9fa 1024 return -ENOSPC;
be744175
CM
1025 search_start = orig_search_start;
1026 full_scan = 1;
1027 goto new_group;
06a2f9fa 1028 }
037e6390 1029 for (test_block = ins->objectid;
f2458e1d
CM
1030 test_block < ins->objectid + num_blocks; test_block++) {
1031 if (test_radix_bit(&info->pinned_radix, test_block)) {
037e6390 1032 search_start = test_block + 1;
be744175 1033 goto new_group;
fec577fb
CM
1034 }
1035 }
f2458e1d
CM
1036 if (!fill_prealloc && info->extent_tree_insert_nr) {
1037 u64 last =
1038 info->extent_tree_insert[info->extent_tree_insert_nr - 1];
1039 if (ins->objectid + num_blocks >
1040 info->extent_tree_insert[0] &&
1041 ins->objectid <= last) {
1042 search_start = last + 1;
e37c9e69 1043 WARN_ON(!full_scan);
be744175 1044 goto new_group;
f2458e1d
CM
1045 }
1046 }
1047 if (!fill_prealloc && info->extent_tree_prealloc_nr) {
1048 u64 first =
1049 info->extent_tree_prealloc[info->extent_tree_prealloc_nr - 1];
1050 if (ins->objectid + num_blocks > first &&
1051 ins->objectid <= info->extent_tree_prealloc[0]) {
1052 search_start = info->extent_tree_prealloc[0] + 1;
e37c9e69 1053 WARN_ON(!full_scan);
be744175 1054 goto new_group;
f2458e1d
CM
1055 }
1056 }
1057 if (fill_prealloc) {
1058 int nr;
1059 test_block = ins->objectid;
e37c9e69
CM
1060 if (test_block - info->extent_tree_prealloc[total_needed - 1] >=
1061 leaf_range(root)) {
1062 total_found = 0;
1063 info->extent_tree_prealloc_nr = total_found;
1064 }
f2458e1d
CM
1065 while(test_block < ins->objectid + ins->offset &&
1066 total_found < total_needed) {
1067 nr = total_needed - total_found - 1;
1068 BUG_ON(nr < 0);
cd1bc465 1069 info->extent_tree_prealloc[nr] = test_block;
f2458e1d
CM
1070 total_found++;
1071 test_block++;
1072 }
1073 if (total_found < total_needed) {
1074 search_start = test_block;
be744175 1075 goto new_group;
f2458e1d 1076 }
cd1bc465
CM
1077 info->extent_tree_prealloc_nr = total_found;
1078 }
e37c9e69
CM
1079 if (!data) {
1080 block_group = lookup_block_group(info, ins->objectid);
1081 if (block_group) {
1082 if (fill_prealloc)
1083 block_group->last_prealloc =
1084 info->extent_tree_prealloc[total_needed-1];
1085 else
1086 trans->block_group = block_group;
1087 }
f2458e1d 1088 }
037e6390 1089 ins->offset = num_blocks;
5caf2a00 1090 btrfs_free_path(path);
fec577fb 1091 return 0;
be744175
CM
1092
1093new_group:
3e1ad54f 1094 if (search_start + num_blocks >= search_end) {
be744175 1095 search_start = orig_search_start;
e37c9e69 1096printk("doing full scan!\n");
be744175
CM
1097 full_scan = 1;
1098 }
1099 block_group = lookup_block_group(info, search_start);
1100 if (!full_scan)
1101 block_group = btrfs_find_block_group(root, block_group,
de428b63
CM
1102 search_start, data, 0);
1103 cond_resched();
be744175
CM
1104 goto check_failed;
1105
0f70abe2 1106error:
5caf2a00
CM
1107 btrfs_release_path(root, path);
1108 btrfs_free_path(path);
0f70abe2 1109 return ret;
fec577fb 1110}
fec577fb
CM
1111/*
1112 * finds a free extent and does all the dirty work required for allocation
1113 * returns the key for the extent through ins, and a tree buffer for
1114 * the first block of the extent through buf.
1115 *
1116 * returns 0 if everything worked, non-zero otherwise.
1117 */
4d775673
CM
1118int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
1119 struct btrfs_root *root, u64 owner,
c62a1920 1120 u64 num_blocks, u64 search_start,
be08c1b9 1121 u64 search_end, struct btrfs_key *ins, int data)
fec577fb
CM
1122{
1123 int ret;
1124 int pending_ret;
1261ec42
CM
1125 u64 super_blocks_used;
1126 struct btrfs_fs_info *info = root->fs_info;
1127 struct btrfs_root *extent_root = info->extent_root;
234b63a0 1128 struct btrfs_extent_item extent_item;
f2458e1d 1129 struct btrfs_key prealloc_key;
037e6390 1130
cf27e1ee 1131 btrfs_set_extent_refs(&extent_item, 1);
4d775673 1132 btrfs_set_extent_owner(&extent_item, owner);
fec577fb 1133
037e6390 1134 if (root == extent_root) {
f2458e1d
CM
1135 int nr;
1136 BUG_ON(info->extent_tree_prealloc_nr == 0);
037e6390 1137 BUG_ON(num_blocks != 1);
037e6390 1138 ins->offset = 1;
f2458e1d
CM
1139 info->extent_tree_prealloc_nr--;
1140 nr = info->extent_tree_prealloc_nr;
1141 ins->objectid = info->extent_tree_prealloc[nr];
1142 info->extent_tree_insert[info->extent_tree_insert_nr++] =
1143 ins->objectid;
9078a3e1 1144 ret = update_block_group(trans, root,
e37c9e69 1145 ins->objectid, ins->offset, 1, 0);
9078a3e1 1146 BUG_ON(ret);
fec577fb
CM
1147 return 0;
1148 }
e37c9e69
CM
1149
1150 /*
1151 * if we're doing a data allocation, preallocate room in the
1152 * extent tree first. This way the extent tree blocks end up
1153 * in the correct block group.
1154 */
1155 if (data) {
de428b63 1156 ret = find_free_extent(trans, root, 0, 0,
e37c9e69
CM
1157 search_end, &prealloc_key, 0);
1158 if (ret) {
1159 return ret;
1160 }
1161 if (prealloc_key.objectid + prealloc_key.offset >= search_end) {
1162 int nr = info->extent_tree_prealloc_nr;
1163 search_end = info->extent_tree_prealloc[nr - 1] - 1;
1164 } else {
1165 search_start = info->extent_tree_prealloc[0] + 1;
1166 }
1167 }
f2458e1d 1168 /* do the real allocation */
e089f05c 1169 ret = find_free_extent(trans, root, num_blocks, search_start,
be08c1b9 1170 search_end, ins, data);
e37c9e69 1171 if (ret) {
037e6390 1172 return ret;
e37c9e69 1173 }
fec577fb 1174
e37c9e69
CM
1175 /*
1176 * if we're doing a metadata allocation, preallocate space in the
1177 * extent tree second. This way, we don't create a tiny hole
1178 * in the allocation map between any unused preallocation blocks
1179 * and the metadata block we're actually allocating. On disk,
1180 * it'll go:
1181 * [block we've allocated], [used prealloc 1], [ unused prealloc ]
1182 * The unused prealloc will get reused the next time around.
1183 */
1184 if (!data) {
1185 if (ins->objectid + ins->offset >= search_end)
1186 search_end = ins->objectid - 1;
1187 else
1188 search_start = ins->objectid + ins->offset;
3e1ad54f 1189
e37c9e69
CM
1190 ret = find_free_extent(trans, root, 0, search_start,
1191 search_end, &prealloc_key, 0);
1192 if (ret) {
1193 return ret;
1194 }
1195 }
f2458e1d 1196
1261ec42
CM
1197 super_blocks_used = btrfs_super_blocks_used(info->disk_super);
1198 btrfs_set_super_blocks_used(info->disk_super, super_blocks_used +
1199 num_blocks);
e089f05c
CM
1200 ret = btrfs_insert_item(trans, extent_root, ins, &extent_item,
1201 sizeof(extent_item));
037e6390 1202
e089f05c 1203 finish_current_insert(trans, extent_root);
e20d96d6 1204 pending_ret = del_pending_extents(trans, extent_root);
e37c9e69 1205 if (ret) {
037e6390 1206 return ret;
e37c9e69
CM
1207 }
1208 if (pending_ret) {
037e6390 1209 return pending_ret;
e37c9e69
CM
1210 }
1211 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0);
037e6390 1212 return 0;
fec577fb
CM
1213}
1214
1215/*
1216 * helper function to allocate a block for a given tree
1217 * returns the tree buffer or NULL.
1218 */
e20d96d6 1219struct buffer_head *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
31f3c99b 1220 struct btrfs_root *root, u64 hint)
fec577fb 1221{
e2fa7227 1222 struct btrfs_key ins;
fec577fb 1223 int ret;
e20d96d6 1224 struct buffer_head *buf;
fec577fb 1225
4d775673 1226 ret = btrfs_alloc_extent(trans, root, root->root_key.objectid,
de428b63 1227 1, hint, (unsigned long)-1, &ins, 0);
fec577fb
CM
1228 if (ret) {
1229 BUG();
1230 return NULL;
1231 }
9078a3e1 1232 BUG_ON(ret);
d98237b3 1233 buf = btrfs_find_create_tree_block(root, ins.objectid);
df2ce34c 1234 set_buffer_uptodate(buf);
090d1875 1235 set_buffer_checked(buf);
7c4452b9 1236 set_radix_bit(&trans->transaction->dirty_pages, buf->b_page->index);
fec577fb
CM
1237 return buf;
1238}
a28ec197 1239
6407bf6d
CM
1240static int drop_leaf_ref(struct btrfs_trans_handle *trans,
1241 struct btrfs_root *root, struct buffer_head *cur)
1242{
1243 struct btrfs_disk_key *key;
1244 struct btrfs_leaf *leaf;
1245 struct btrfs_file_extent_item *fi;
1246 int i;
1247 int nritems;
1248 int ret;
1249
1250 BUG_ON(!btrfs_is_leaf(btrfs_buffer_node(cur)));
1251 leaf = btrfs_buffer_leaf(cur);
1252 nritems = btrfs_header_nritems(&leaf->header);
1253 for (i = 0; i < nritems; i++) {
3a686375 1254 u64 disk_blocknr;
6407bf6d
CM
1255 key = &leaf->items[i].key;
1256 if (btrfs_disk_key_type(key) != BTRFS_EXTENT_DATA_KEY)
1257 continue;
1258 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
236454df
CM
1259 if (btrfs_file_extent_type(fi) == BTRFS_FILE_EXTENT_INLINE)
1260 continue;
6407bf6d
CM
1261 /*
1262 * FIXME make sure to insert a trans record that
1263 * repeats the snapshot del on crash
1264 */
3a686375
CM
1265 disk_blocknr = btrfs_file_extent_disk_blocknr(fi);
1266 if (disk_blocknr == 0)
1267 continue;
1268 ret = btrfs_free_extent(trans, root, disk_blocknr,
6407bf6d
CM
1269 btrfs_file_extent_disk_num_blocks(fi),
1270 0);
1271 BUG_ON(ret);
1272 }
1273 return 0;
1274}
1275
9aca1d51
CM
1276/*
1277 * helper function for drop_snapshot, this walks down the tree dropping ref
1278 * counts as it goes.
1279 */
e089f05c
CM
1280static int walk_down_tree(struct btrfs_trans_handle *trans, struct btrfs_root
1281 *root, struct btrfs_path *path, int *level)
20524f02 1282{
e20d96d6
CM
1283 struct buffer_head *next;
1284 struct buffer_head *cur;
20524f02
CM
1285 u64 blocknr;
1286 int ret;
1287 u32 refs;
1288
5caf2a00
CM
1289 WARN_ON(*level < 0);
1290 WARN_ON(*level >= BTRFS_MAX_LEVEL);
b18c6685 1291 ret = lookup_extent_ref(trans, root, bh_blocknr(path->nodes[*level]),
6407bf6d 1292 1, &refs);
20524f02
CM
1293 BUG_ON(ret);
1294 if (refs > 1)
1295 goto out;
9aca1d51
CM
1296 /*
1297 * walk down to the last node level and free all the leaves
1298 */
6407bf6d 1299 while(*level >= 0) {
5caf2a00
CM
1300 WARN_ON(*level < 0);
1301 WARN_ON(*level >= BTRFS_MAX_LEVEL);
20524f02 1302 cur = path->nodes[*level];
2c90e5d6
CM
1303 if (btrfs_header_level(btrfs_buffer_header(cur)) != *level)
1304 WARN_ON(1);
7518a238 1305 if (path->slots[*level] >=
e20d96d6 1306 btrfs_header_nritems(btrfs_buffer_header(cur)))
20524f02 1307 break;
6407bf6d
CM
1308 if (*level == 0) {
1309 ret = drop_leaf_ref(trans, root, cur);
1310 BUG_ON(ret);
1311 break;
1312 }
e20d96d6
CM
1313 blocknr = btrfs_node_blockptr(btrfs_buffer_node(cur),
1314 path->slots[*level]);
b18c6685 1315 ret = lookup_extent_ref(trans, root, blocknr, 1, &refs);
6407bf6d
CM
1316 BUG_ON(ret);
1317 if (refs != 1) {
20524f02 1318 path->slots[*level]++;
e089f05c 1319 ret = btrfs_free_extent(trans, root, blocknr, 1, 1);
20524f02
CM
1320 BUG_ON(ret);
1321 continue;
1322 }
20524f02 1323 next = read_tree_block(root, blocknr);
5caf2a00 1324 WARN_ON(*level <= 0);
83e15a28 1325 if (path->nodes[*level-1])
234b63a0 1326 btrfs_block_release(root, path->nodes[*level-1]);
20524f02 1327 path->nodes[*level-1] = next;
e20d96d6 1328 *level = btrfs_header_level(btrfs_buffer_header(next));
20524f02
CM
1329 path->slots[*level] = 0;
1330 }
1331out:
5caf2a00
CM
1332 WARN_ON(*level < 0);
1333 WARN_ON(*level >= BTRFS_MAX_LEVEL);
6407bf6d 1334 ret = btrfs_free_extent(trans, root,
7eccb903 1335 bh_blocknr(path->nodes[*level]), 1, 1);
234b63a0 1336 btrfs_block_release(root, path->nodes[*level]);
20524f02
CM
1337 path->nodes[*level] = NULL;
1338 *level += 1;
1339 BUG_ON(ret);
1340 return 0;
1341}
1342
9aca1d51
CM
1343/*
1344 * helper for dropping snapshots. This walks back up the tree in the path
1345 * to find the first node higher up where we haven't yet gone through
1346 * all the slots
1347 */
e089f05c
CM
1348static int walk_up_tree(struct btrfs_trans_handle *trans, struct btrfs_root
1349 *root, struct btrfs_path *path, int *level)
20524f02
CM
1350{
1351 int i;
1352 int slot;
1353 int ret;
234b63a0 1354 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
20524f02 1355 slot = path->slots[i];
e20d96d6
CM
1356 if (slot < btrfs_header_nritems(
1357 btrfs_buffer_header(path->nodes[i])) - 1) {
20524f02
CM
1358 path->slots[i]++;
1359 *level = i;
1360 return 0;
1361 } else {
e089f05c 1362 ret = btrfs_free_extent(trans, root,
7eccb903 1363 bh_blocknr(path->nodes[*level]),
e089f05c 1364 1, 1);
6407bf6d 1365 BUG_ON(ret);
234b63a0 1366 btrfs_block_release(root, path->nodes[*level]);
83e15a28 1367 path->nodes[*level] = NULL;
20524f02 1368 *level = i + 1;
20524f02
CM
1369 }
1370 }
1371 return 1;
1372}
1373
9aca1d51
CM
1374/*
1375 * drop the reference count on the tree rooted at 'snap'. This traverses
1376 * the tree freeing any blocks that have a ref count of zero after being
1377 * decremented.
1378 */
e089f05c 1379int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
e20d96d6 1380 *root, struct buffer_head *snap)
20524f02 1381{
3768f368 1382 int ret = 0;
9aca1d51 1383 int wret;
20524f02 1384 int level;
5caf2a00 1385 struct btrfs_path *path;
20524f02
CM
1386 int i;
1387 int orig_level;
1388
5caf2a00
CM
1389 path = btrfs_alloc_path();
1390 BUG_ON(!path);
1391 btrfs_init_path(path);
20524f02 1392
e20d96d6 1393 level = btrfs_header_level(btrfs_buffer_header(snap));
20524f02 1394 orig_level = level;
5caf2a00
CM
1395 path->nodes[level] = snap;
1396 path->slots[level] = 0;
20524f02 1397 while(1) {
5caf2a00 1398 wret = walk_down_tree(trans, root, path, &level);
9aca1d51 1399 if (wret > 0)
20524f02 1400 break;
9aca1d51
CM
1401 if (wret < 0)
1402 ret = wret;
1403
5caf2a00 1404 wret = walk_up_tree(trans, root, path, &level);
9aca1d51 1405 if (wret > 0)
20524f02 1406 break;
9aca1d51
CM
1407 if (wret < 0)
1408 ret = wret;
35b7e476 1409 btrfs_btree_balance_dirty(root);
20524f02 1410 }
83e15a28 1411 for (i = 0; i <= orig_level; i++) {
5caf2a00
CM
1412 if (path->nodes[i]) {
1413 btrfs_block_release(root, path->nodes[i]);
83e15a28 1414 }
20524f02 1415 }
5caf2a00 1416 btrfs_free_path(path);
9aca1d51 1417 return ret;
20524f02 1418}
9078a3e1 1419
be744175 1420static int free_block_group_radix(struct radix_tree_root *radix)
9078a3e1
CM
1421{
1422 int ret;
1423 struct btrfs_block_group_cache *cache[8];
1424 int i;
1425
1426 while(1) {
be744175 1427 ret = radix_tree_gang_lookup(radix, (void **)cache, 0,
9078a3e1
CM
1428 ARRAY_SIZE(cache));
1429 if (!ret)
1430 break;
1431 for (i = 0; i < ret; i++) {
be744175 1432 radix_tree_delete(radix, cache[i]->key.objectid +
9078a3e1
CM
1433 cache[i]->key.offset - 1);
1434 kfree(cache[i]);
1435 }
1436 }
1437 return 0;
1438}
1439
be744175
CM
1440int btrfs_free_block_groups(struct btrfs_fs_info *info)
1441{
1442 int ret;
1443 int ret2;
e37c9e69
CM
1444 unsigned long gang[16];
1445 int i;
be744175
CM
1446
1447 ret = free_block_group_radix(&info->block_group_radix);
1448 ret2 = free_block_group_radix(&info->block_group_data_radix);
1449 if (ret)
1450 return ret;
1451 if (ret2)
1452 return ret2;
e37c9e69
CM
1453
1454 while(1) {
1455 ret = find_first_radix_bit(&info->extent_map_radix,
1456 gang, 0, ARRAY_SIZE(gang));
1457 if (!ret)
1458 break;
1459 for (i = 0; i < ret; i++) {
1460 clear_radix_bit(&info->extent_map_radix, gang[i]);
1461 }
1462 }
be744175
CM
1463 return 0;
1464}
1465
9078a3e1
CM
1466int btrfs_read_block_groups(struct btrfs_root *root)
1467{
1468 struct btrfs_path *path;
1469 int ret;
1470 int err = 0;
1471 struct btrfs_block_group_item *bi;
1472 struct btrfs_block_group_cache *cache;
be744175
CM
1473 struct btrfs_fs_info *info = root->fs_info;
1474 struct radix_tree_root *radix;
9078a3e1
CM
1475 struct btrfs_key key;
1476 struct btrfs_key found_key;
1477 struct btrfs_leaf *leaf;
1478 u64 group_size_blocks = BTRFS_BLOCK_GROUP_SIZE / root->blocksize;
31f3c99b 1479 u64 used;
be744175 1480 u64 nr = 0;
9078a3e1 1481
be744175 1482 root = info->extent_root;
9078a3e1
CM
1483 key.objectid = 0;
1484 key.offset = group_size_blocks;
1485 key.flags = 0;
1486 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
1487
1488 path = btrfs_alloc_path();
1489 if (!path)
1490 return -ENOMEM;
1491
1492 while(1) {
be744175 1493 ret = btrfs_search_slot(NULL, info->extent_root,
9078a3e1
CM
1494 &key, path, 0, 0);
1495 if (ret != 0) {
1496 err = ret;
1497 break;
1498 }
1499 leaf = btrfs_buffer_leaf(path->nodes[0]);
1500 btrfs_disk_key_to_cpu(&found_key,
1501 &leaf->items[path->slots[0]].key);
1502 cache = kmalloc(sizeof(*cache), GFP_NOFS);
1503 if (!cache) {
1504 err = -1;
1505 break;
1506 }
3e1ad54f 1507
e37c9e69 1508 if (nr % 3)
3e1ad54f
CM
1509 radix = &info->block_group_data_radix;
1510 else
1511 radix = &info->block_group_radix;
1512
9078a3e1
CM
1513 bi = btrfs_item_ptr(leaf, path->slots[0],
1514 struct btrfs_block_group_item);
1515 memcpy(&cache->item, bi, sizeof(*bi));
1516 memcpy(&cache->key, &found_key, sizeof(found_key));
31f3c99b
CM
1517 cache->last_alloc = cache->key.objectid;
1518 cache->first_free = cache->key.objectid;
e37c9e69 1519 cache->last_prealloc = cache->key.objectid;
be744175 1520 cache->pinned = 0;
e37c9e69
CM
1521 cache->cached = 0;
1522
1523 if (nr % 3)
1524 cache->data = 1;
1525 else
1526 cache->data = 0;
3e1ad54f
CM
1527 cache->radix = radix;
1528
9078a3e1
CM
1529 key.objectid = found_key.objectid + found_key.offset;
1530 btrfs_release_path(root, path);
be744175 1531 ret = radix_tree_insert(radix, found_key.objectid +
9078a3e1
CM
1532 found_key.offset - 1,
1533 (void *)cache);
1534 BUG_ON(ret);
31f3c99b 1535 used = btrfs_block_group_used(bi);
be744175
CM
1536 if (used < (key.offset * 8) / 10) {
1537 radix_tree_tag_set(radix, found_key.objectid +
31f3c99b
CM
1538 found_key.offset - 1,
1539 BTRFS_BLOCK_GROUP_AVAIL);
1540 }
9078a3e1 1541 if (key.objectid >=
be744175 1542 btrfs_super_total_blocks(info->disk_super))
9078a3e1 1543 break;
be744175 1544 nr++;
9078a3e1
CM
1545 }
1546
1547 btrfs_free_path(path);
1548 return 0;
1549}