blob: b38c3e92f0c80270a9eed1dacca21cebf618e559 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
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
Chris Mason2e635a22007-03-21 11:12:56 -040019#include <linux/module.h>
Chris Masonfec577f2007-02-26 10:40:21 -050020#include "ctree.h"
21#include "disk-io.h"
22#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040023#include "transaction.h"
Chris Masonfec577f2007-02-26 10:40:21 -050024
Chris Masone089f052007-03-16 16:20:31 -040025static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masonfbdc7622007-05-30 10:22:12 -040026 *orig_root, u64 num_blocks, u64 search_start,
27 u64 search_end, u64 hint_block,
28 struct btrfs_key *ins, int data);
Chris Masone089f052007-03-16 16:20:31 -040029static int finish_current_insert(struct btrfs_trans_handle *trans, struct
30 btrfs_root *extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -040031static int del_pending_extents(struct btrfs_trans_handle *trans, struct
32 btrfs_root *extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -050033
Chris Masonde428b62007-05-18 13:28:27 -040034static void reada_extent_leaves(struct btrfs_root *root,
35 struct btrfs_path *path, u64 limit)
36{
37 struct btrfs_node *node;
38 int i;
39 int nritems;
40 u64 item_objectid;
41 u64 blocknr;
42 int slot;
43 int ret;
44
45 if (!path->nodes[1])
46 return;
47 node = btrfs_buffer_node(path->nodes[1]);
48 slot = path->slots[1] + 1;
49 nritems = btrfs_header_nritems(&node->header);
50 for (i = slot; i < nritems && i < slot + 8; i++) {
51 item_objectid = btrfs_disk_key_objectid(&node->ptrs[i].key);
52 if (item_objectid > limit)
53 break;
54 blocknr = btrfs_node_blockptr(node, i);
55 ret = readahead_tree_block(root, blocknr);
56 if (ret)
57 break;
58 }
59}
60
Chris Masone37c9e62007-05-09 20:13:14 -040061static int cache_block_group(struct btrfs_root *root,
62 struct btrfs_block_group_cache *block_group)
63{
64 struct btrfs_path *path;
65 int ret;
66 struct btrfs_key key;
67 struct btrfs_leaf *leaf;
68 struct radix_tree_root *extent_radix;
69 int slot;
70 u64 i;
71 u64 last = 0;
72 u64 hole_size;
Chris Masonde428b62007-05-18 13:28:27 -040073 u64 limit;
Chris Masone37c9e62007-05-09 20:13:14 -040074 int found = 0;
75
76 root = root->fs_info->extent_root;
77 extent_radix = &root->fs_info->extent_map_radix;
78
79 if (block_group->cached)
80 return 0;
81 if (block_group->data)
82 return 0;
83 path = btrfs_alloc_path();
84 if (!path)
85 return -ENOMEM;
Chris Masone37c9e62007-05-09 20:13:14 -040086 key.objectid = block_group->key.objectid;
87 key.flags = 0;
88 key.offset = 0;
89 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
90 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
91 if (ret < 0)
92 return ret;
93 if (ret && path->slots[0] > 0)
94 path->slots[0]--;
Chris Masonde428b62007-05-18 13:28:27 -040095 limit = block_group->key.objectid + block_group->key.offset;
96 reada_extent_leaves(root, path, limit);
Chris Masone37c9e62007-05-09 20:13:14 -040097 while(1) {
98 leaf = btrfs_buffer_leaf(path->nodes[0]);
99 slot = path->slots[0];
100 if (slot >= btrfs_header_nritems(&leaf->header)) {
Chris Masonde428b62007-05-18 13:28:27 -0400101 reada_extent_leaves(root, path, limit);
Chris Masone37c9e62007-05-09 20:13:14 -0400102 ret = btrfs_next_leaf(root, path);
Chris Masonde428b62007-05-18 13:28:27 -0400103 if (ret == 0) {
Chris Masone37c9e62007-05-09 20:13:14 -0400104 continue;
Chris Masonde428b62007-05-18 13:28:27 -0400105 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400106 if (found) {
107 hole_size = block_group->key.objectid +
108 block_group->key.offset - last;
109 } else {
110 last = block_group->key.objectid;
111 hole_size = block_group->key.offset;
112 }
113 for (i = 0; i < hole_size; i++) {
114 set_radix_bit(extent_radix,
115 last + i);
116 }
117 break;
118 }
119 }
120 btrfs_disk_key_to_cpu(&key, &leaf->items[slot].key);
121 if (key.objectid >= block_group->key.objectid +
122 block_group->key.offset) {
123 if (found) {
124 hole_size = block_group->key.objectid +
125 block_group->key.offset - last;
126 } else {
127 last = block_group->key.objectid;
128 hole_size = block_group->key.offset;
129 }
130 for (i = 0; i < hole_size; i++) {
131 set_radix_bit(extent_radix, last + i);
132 }
133 break;
134 }
135 if (btrfs_key_type(&key) == BTRFS_EXTENT_ITEM_KEY) {
136 if (!found) {
137 last = key.objectid + key.offset;
138 found = 1;
139 } else {
140 hole_size = key.objectid - last;
141 for (i = 0; i < hole_size; i++) {
142 set_radix_bit(extent_radix, last + i);
143 }
144 last = key.objectid + key.offset;
145 }
146 }
147 path->slots[0]++;
148 }
149
150 block_group->cached = 1;
151 btrfs_free_path(path);
152 return 0;
153}
154
Chris Mason5276aed2007-06-11 21:33:38 -0400155struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
156 btrfs_fs_info *info,
157 u64 blocknr)
Chris Masonbe744172007-05-06 10:15:01 -0400158{
159 struct btrfs_block_group_cache *block_group;
160 int ret;
161
162 ret = radix_tree_gang_lookup(&info->block_group_radix,
163 (void **)&block_group,
164 blocknr, 1);
165 if (ret) {
Chris Mason3e1ad542007-05-07 20:03:49 -0400166 if (block_group->key.objectid <= blocknr && blocknr <=
Chris Masonbe744172007-05-06 10:15:01 -0400167 block_group->key.objectid + block_group->key.offset)
168 return block_group;
169 }
170 ret = radix_tree_gang_lookup(&info->block_group_data_radix,
171 (void **)&block_group,
172 blocknr, 1);
173 if (ret) {
Chris Mason3e1ad542007-05-07 20:03:49 -0400174 if (block_group->key.objectid <= blocknr && blocknr <=
Chris Masonbe744172007-05-06 10:15:01 -0400175 block_group->key.objectid + block_group->key.offset)
176 return block_group;
177 }
Chris Masonbe744172007-05-06 10:15:01 -0400178 return NULL;
179}
180
Chris Masone37c9e62007-05-09 20:13:14 -0400181static u64 leaf_range(struct btrfs_root *root)
182{
183 u64 size = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason84f54cf2007-06-12 07:43:08 -0400184 do_div(size, sizeof(struct btrfs_extent_item) +
185 sizeof(struct btrfs_item));
Chris Masone37c9e62007-05-09 20:13:14 -0400186 return size;
187}
188
189static u64 find_search_start(struct btrfs_root *root,
190 struct btrfs_block_group_cache **cache_ret,
191 u64 search_start, int num)
192{
193 unsigned long gang[8];
194 int ret;
195 struct btrfs_block_group_cache *cache = *cache_ret;
196 u64 last = max(search_start, cache->key.objectid);
197
198 if (cache->data)
199 goto out;
200 if (num > 1) {
201 last = max(last, cache->last_prealloc);
202 }
203again:
204 cache_block_group(root, cache);
205 while(1) {
206 ret = find_first_radix_bit(&root->fs_info->extent_map_radix,
207 gang, last, ARRAY_SIZE(gang));
208 if (!ret)
209 goto out;
210 last = gang[ret-1] + 1;
211 if (num > 1) {
212 if (ret != ARRAY_SIZE(gang)) {
213 goto new_group;
214 }
215 if (gang[ret-1] - gang[0] > leaf_range(root)) {
216 continue;
217 }
218 }
219 if (gang[0] >= cache->key.objectid + cache->key.offset) {
220 goto new_group;
221 }
222 return gang[0];
223 }
224out:
225 return max(cache->last_alloc, search_start);
226
227new_group:
Chris Mason5276aed2007-06-11 21:33:38 -0400228 cache = btrfs_lookup_block_group(root->fs_info,
229 last + cache->key.offset - 1);
Chris Masone37c9e62007-05-09 20:13:14 -0400230 if (!cache) {
231 return max((*cache_ret)->last_alloc, search_start);
232 }
233 cache = btrfs_find_block_group(root, cache,
Chris Masonde428b62007-05-18 13:28:27 -0400234 last + cache->key.offset - 1, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400235 *cache_ret = cache;
236 goto again;
237}
238
Chris Mason84f54cf2007-06-12 07:43:08 -0400239static u64 div_factor(u64 num, int factor)
240{
241 num *= factor;
242 do_div(num, 10);
243 return num;
244}
245
Chris Mason31f3c992007-04-30 15:25:45 -0400246struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
247 struct btrfs_block_group_cache
Chris Masonbe744172007-05-06 10:15:01 -0400248 *hint, u64 search_start,
Chris Masonde428b62007-05-18 13:28:27 -0400249 int data, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400250{
251 struct btrfs_block_group_cache *cache[8];
Chris Mason31f3c992007-04-30 15:25:45 -0400252 struct btrfs_block_group_cache *found_group = NULL;
Chris Masoncd1bc462007-04-27 10:08:34 -0400253 struct btrfs_fs_info *info = root->fs_info;
Chris Masonbe744172007-05-06 10:15:01 -0400254 struct radix_tree_root *radix;
Chris Mason1e2677e2007-05-29 16:52:18 -0400255 struct radix_tree_root *swap_radix;
Chris Masoncd1bc462007-04-27 10:08:34 -0400256 u64 used;
Chris Mason31f3c992007-04-30 15:25:45 -0400257 u64 last = 0;
258 u64 hint_last;
Chris Masoncd1bc462007-04-27 10:08:34 -0400259 int i;
260 int ret;
Chris Mason31f3c992007-04-30 15:25:45 -0400261 int full_search = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400262 int factor = 8;
Chris Mason1e2677e2007-05-29 16:52:18 -0400263 int data_swap = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400264
265 if (!owner)
266 factor = 5;
Chris Masonbe744172007-05-06 10:15:01 -0400267
Chris Mason1e2677e2007-05-29 16:52:18 -0400268 if (data) {
Chris Masonbe744172007-05-06 10:15:01 -0400269 radix = &info->block_group_data_radix;
Chris Mason1e2677e2007-05-29 16:52:18 -0400270 swap_radix = &info->block_group_radix;
271 } else {
Chris Masonbe744172007-05-06 10:15:01 -0400272 radix = &info->block_group_radix;
Chris Mason1e2677e2007-05-29 16:52:18 -0400273 swap_radix = &info->block_group_data_radix;
274 }
Chris Masonbe744172007-05-06 10:15:01 -0400275
276 if (search_start) {
277 struct btrfs_block_group_cache *shint;
Chris Mason5276aed2007-06-11 21:33:38 -0400278 shint = btrfs_lookup_block_group(info, search_start);
Chris Masonbe744172007-05-06 10:15:01 -0400279 if (shint->data == data) {
280 used = btrfs_block_group_used(&shint->item);
281 if (used + shint->pinned <
Chris Mason84f54cf2007-06-12 07:43:08 -0400282 div_factor(shint->key.offset, factor)) {
Chris Masonbe744172007-05-06 10:15:01 -0400283 return shint;
284 }
285 }
286 }
287 if (hint && hint->data == data) {
Chris Mason31f3c992007-04-30 15:25:45 -0400288 used = btrfs_block_group_used(&hint->item);
Chris Mason84f54cf2007-06-12 07:43:08 -0400289 if (used + hint->pinned <
290 div_factor(hint->key.offset, factor)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400291 return hint;
292 }
Chris Mason84f54cf2007-06-12 07:43:08 -0400293 if (used >= div_factor(hint->key.offset, 8)) {
Chris Masonbe744172007-05-06 10:15:01 -0400294 radix_tree_tag_clear(radix,
295 hint->key.objectid +
296 hint->key.offset - 1,
297 BTRFS_BLOCK_GROUP_AVAIL);
298 }
Chris Mason8d7be552007-05-10 11:24:42 -0400299 last = hint->key.offset * 3;
Chris Masonbe744172007-05-06 10:15:01 -0400300 if (hint->key.objectid >= last)
Chris Masone37c9e62007-05-09 20:13:14 -0400301 last = max(search_start + hint->key.offset - 1,
302 hint->key.objectid - last);
Chris Masonbe744172007-05-06 10:15:01 -0400303 else
304 last = hint->key.objectid + hint->key.offset;
Chris Mason31f3c992007-04-30 15:25:45 -0400305 hint_last = last;
306 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400307 if (hint)
308 hint_last = max(hint->key.objectid, search_start);
309 else
310 hint_last = search_start;
311
312 last = hint_last;
Chris Mason31f3c992007-04-30 15:25:45 -0400313 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400314 while(1) {
Chris Masonbe744172007-05-06 10:15:01 -0400315 ret = radix_tree_gang_lookup_tag(radix, (void **)cache,
Chris Masoncd1bc462007-04-27 10:08:34 -0400316 last, ARRAY_SIZE(cache),
Chris Mason31f3c992007-04-30 15:25:45 -0400317 BTRFS_BLOCK_GROUP_AVAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -0400318 if (!ret)
319 break;
320 for (i = 0; i < ret; i++) {
Chris Masonbe08c1b2007-05-03 09:06:49 -0400321 last = cache[i]->key.objectid +
322 cache[i]->key.offset;
Chris Masoncd1bc462007-04-27 10:08:34 -0400323 used = btrfs_block_group_used(&cache[i]->item);
Chris Masonbe744172007-05-06 10:15:01 -0400324 if (used + cache[i]->pinned <
Chris Mason84f54cf2007-06-12 07:43:08 -0400325 div_factor(cache[i]->key.offset, factor)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400326 found_group = cache[i];
327 goto found;
Chris Masoncd1bc462007-04-27 10:08:34 -0400328 }
Chris Mason84f54cf2007-06-12 07:43:08 -0400329 if (used >= div_factor(cache[i]->key.offset, 8)) {
Chris Masonbe744172007-05-06 10:15:01 -0400330 radix_tree_tag_clear(radix,
331 cache[i]->key.objectid +
332 cache[i]->key.offset - 1,
333 BTRFS_BLOCK_GROUP_AVAIL);
334 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400335 }
Chris Masonde428b62007-05-18 13:28:27 -0400336 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400337 }
Chris Mason31f3c992007-04-30 15:25:45 -0400338 last = hint_last;
339again:
Chris Masoncd1bc462007-04-27 10:08:34 -0400340 while(1) {
Chris Masonbe744172007-05-06 10:15:01 -0400341 ret = radix_tree_gang_lookup(radix, (void **)cache,
342 last, ARRAY_SIZE(cache));
Chris Masoncd1bc462007-04-27 10:08:34 -0400343 if (!ret)
344 break;
345 for (i = 0; i < ret; i++) {
Chris Masonbe08c1b2007-05-03 09:06:49 -0400346 last = cache[i]->key.objectid +
347 cache[i]->key.offset;
Chris Masoncd1bc462007-04-27 10:08:34 -0400348 used = btrfs_block_group_used(&cache[i]->item);
Chris Masonbe744172007-05-06 10:15:01 -0400349 if (used + cache[i]->pinned < cache[i]->key.offset) {
Chris Mason31f3c992007-04-30 15:25:45 -0400350 found_group = cache[i];
351 goto found;
Chris Masoncd1bc462007-04-27 10:08:34 -0400352 }
Chris Masonbe744172007-05-06 10:15:01 -0400353 if (used >= cache[i]->key.offset) {
354 radix_tree_tag_clear(radix,
355 cache[i]->key.objectid +
356 cache[i]->key.offset - 1,
357 BTRFS_BLOCK_GROUP_AVAIL);
358 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400359 }
Chris Masonde428b62007-05-18 13:28:27 -0400360 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400361 }
Chris Mason31f3c992007-04-30 15:25:45 -0400362 if (!full_search) {
Chris Masonbe744172007-05-06 10:15:01 -0400363 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400364 full_search = 1;
365 goto again;
366 }
Chris Mason1e2677e2007-05-29 16:52:18 -0400367 if (!data_swap) {
368 struct radix_tree_root *tmp = radix;
369 data_swap = 1;
370 radix = swap_radix;
371 swap_radix = tmp;
372 last = search_start;
373 goto again;
374 }
Chris Mason31f3c992007-04-30 15:25:45 -0400375 if (!found_group) {
Chris Masonbe744172007-05-06 10:15:01 -0400376 ret = radix_tree_gang_lookup(radix,
Chris Mason31f3c992007-04-30 15:25:45 -0400377 (void **)&found_group, 0, 1);
Chris Mason1e2677e2007-05-29 16:52:18 -0400378 if (ret == 0) {
379 ret = radix_tree_gang_lookup(swap_radix,
380 (void **)&found_group,
381 0, 1);
382 }
Chris Mason31f3c992007-04-30 15:25:45 -0400383 BUG_ON(ret != 1);
384 }
Chris Masonbe744172007-05-06 10:15:01 -0400385found:
Chris Mason31f3c992007-04-30 15:25:45 -0400386 return found_group;
Chris Masoncd1bc462007-04-27 10:08:34 -0400387}
388
Chris Masonb18c6682007-04-17 13:26:50 -0400389int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
390 struct btrfs_root *root,
391 u64 blocknr, u64 num_blocks)
Chris Mason02217ed2007-03-02 16:08:05 -0500392{
Chris Mason5caf2a02007-04-02 11:20:42 -0400393 struct btrfs_path *path;
Chris Mason02217ed2007-03-02 16:08:05 -0500394 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400395 struct btrfs_key key;
Chris Mason234b63a2007-03-13 10:46:10 -0400396 struct btrfs_leaf *l;
397 struct btrfs_extent_item *item;
Chris Masone2fa7222007-03-12 16:22:34 -0400398 struct btrfs_key ins;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400399 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500400
Chris Masonfbdc7622007-05-30 10:22:12 -0400401 find_free_extent(trans, root->fs_info->extent_root, 0, 0, (u64)-1, 0,
Chris Masonbe08c1b2007-05-03 09:06:49 -0400402 &ins, 0);
Chris Mason5caf2a02007-04-02 11:20:42 -0400403 path = btrfs_alloc_path();
404 BUG_ON(!path);
Chris Mason02217ed2007-03-02 16:08:05 -0500405 key.objectid = blocknr;
406 key.flags = 0;
Chris Mason62e27492007-03-15 12:56:47 -0400407 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason6407bf62007-03-27 06:33:00 -0400408 key.offset = num_blocks;
Chris Mason5caf2a02007-04-02 11:20:42 -0400409 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400410 0, 1);
Chris Masona429e512007-04-18 16:15:28 -0400411 if (ret != 0) {
Chris Masona28ec192007-03-06 20:08:01 -0500412 BUG();
Chris Masona429e512007-04-18 16:15:28 -0400413 }
Chris Mason02217ed2007-03-02 16:08:05 -0500414 BUG_ON(ret != 0);
Chris Mason5caf2a02007-04-02 11:20:42 -0400415 l = btrfs_buffer_leaf(path->nodes[0]);
416 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Masoncf27e1e2007-03-13 09:49:06 -0400417 refs = btrfs_extent_refs(item);
418 btrfs_set_extent_refs(item, refs + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -0400419 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masona28ec192007-03-06 20:08:01 -0500420
Chris Mason5caf2a02007-04-02 11:20:42 -0400421 btrfs_release_path(root->fs_info->extent_root, path);
422 btrfs_free_path(path);
Chris Mason9f5fae22007-03-20 14:38:32 -0400423 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400424 del_pending_extents(trans, root->fs_info->extent_root);
Chris Mason02217ed2007-03-02 16:08:05 -0500425 return 0;
426}
427
Chris Masonb18c6682007-04-17 13:26:50 -0400428static int lookup_extent_ref(struct btrfs_trans_handle *trans,
429 struct btrfs_root *root, u64 blocknr,
430 u64 num_blocks, u32 *refs)
Chris Masona28ec192007-03-06 20:08:01 -0500431{
Chris Mason5caf2a02007-04-02 11:20:42 -0400432 struct btrfs_path *path;
Chris Masona28ec192007-03-06 20:08:01 -0500433 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400434 struct btrfs_key key;
Chris Mason234b63a2007-03-13 10:46:10 -0400435 struct btrfs_leaf *l;
436 struct btrfs_extent_item *item;
Chris Mason5caf2a02007-04-02 11:20:42 -0400437
438 path = btrfs_alloc_path();
Chris Masona28ec192007-03-06 20:08:01 -0500439 key.objectid = blocknr;
Chris Mason6407bf62007-03-27 06:33:00 -0400440 key.offset = num_blocks;
Chris Mason62e27492007-03-15 12:56:47 -0400441 key.flags = 0;
442 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5caf2a02007-04-02 11:20:42 -0400443 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400444 0, 0);
Chris Masona28ec192007-03-06 20:08:01 -0500445 if (ret != 0)
446 BUG();
Chris Mason5caf2a02007-04-02 11:20:42 -0400447 l = btrfs_buffer_leaf(path->nodes[0]);
448 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Masoncf27e1e2007-03-13 09:49:06 -0400449 *refs = btrfs_extent_refs(item);
Chris Mason5caf2a02007-04-02 11:20:42 -0400450 btrfs_release_path(root->fs_info->extent_root, path);
451 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -0500452 return 0;
453}
454
Chris Masonc5739bb2007-04-10 09:27:04 -0400455int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
456 struct btrfs_root *root)
457{
Chris Masonb18c6682007-04-17 13:26:50 -0400458 return btrfs_inc_extent_ref(trans, root, bh_blocknr(root->node), 1);
Chris Masonc5739bb2007-04-10 09:27:04 -0400459}
460
Chris Masone089f052007-03-16 16:20:31 -0400461int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Masone20d96d2007-03-22 12:13:20 -0400462 struct buffer_head *buf)
Chris Mason02217ed2007-03-02 16:08:05 -0500463{
464 u64 blocknr;
Chris Masone20d96d2007-03-22 12:13:20 -0400465 struct btrfs_node *buf_node;
Chris Mason6407bf62007-03-27 06:33:00 -0400466 struct btrfs_leaf *buf_leaf;
467 struct btrfs_disk_key *key;
468 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -0500469 int i;
Chris Mason6407bf62007-03-27 06:33:00 -0400470 int leaf;
471 int ret;
Chris Masona28ec192007-03-06 20:08:01 -0500472
Chris Mason3768f362007-03-13 16:47:54 -0400473 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500474 return 0;
Chris Masone20d96d2007-03-22 12:13:20 -0400475 buf_node = btrfs_buffer_node(buf);
Chris Mason6407bf62007-03-27 06:33:00 -0400476 leaf = btrfs_is_leaf(buf_node);
477 buf_leaf = btrfs_buffer_leaf(buf);
Chris Masone20d96d2007-03-22 12:13:20 -0400478 for (i = 0; i < btrfs_header_nritems(&buf_node->header); i++) {
Chris Mason6407bf62007-03-27 06:33:00 -0400479 if (leaf) {
Chris Mason3a686372007-05-24 13:35:57 -0400480 u64 disk_blocknr;
Chris Mason6407bf62007-03-27 06:33:00 -0400481 key = &buf_leaf->items[i].key;
482 if (btrfs_disk_key_type(key) != BTRFS_EXTENT_DATA_KEY)
483 continue;
484 fi = btrfs_item_ptr(buf_leaf, i,
485 struct btrfs_file_extent_item);
Chris Mason236454df2007-04-19 13:37:44 -0400486 if (btrfs_file_extent_type(fi) ==
487 BTRFS_FILE_EXTENT_INLINE)
488 continue;
Chris Mason3a686372007-05-24 13:35:57 -0400489 disk_blocknr = btrfs_file_extent_disk_blocknr(fi);
490 if (disk_blocknr == 0)
491 continue;
492 ret = btrfs_inc_extent_ref(trans, root, disk_blocknr,
Chris Mason6407bf62007-03-27 06:33:00 -0400493 btrfs_file_extent_disk_num_blocks(fi));
494 BUG_ON(ret);
495 } else {
496 blocknr = btrfs_node_blockptr(buf_node, i);
Chris Masonb18c6682007-04-17 13:26:50 -0400497 ret = btrfs_inc_extent_ref(trans, root, blocknr, 1);
Chris Mason6407bf62007-03-27 06:33:00 -0400498 BUG_ON(ret);
499 }
Chris Mason02217ed2007-03-02 16:08:05 -0500500 }
501 return 0;
502}
503
Chris Mason9078a3e2007-04-26 16:46:15 -0400504static int write_one_cache_group(struct btrfs_trans_handle *trans,
505 struct btrfs_root *root,
506 struct btrfs_path *path,
507 struct btrfs_block_group_cache *cache)
508{
509 int ret;
510 int pending_ret;
511 struct btrfs_root *extent_root = root->fs_info->extent_root;
512 struct btrfs_block_group_item *bi;
513 struct btrfs_key ins;
514
Chris Masonfbdc7622007-05-30 10:22:12 -0400515 find_free_extent(trans, extent_root, 0, 0, (u64)-1, 0, &ins, 0);
Chris Mason9078a3e2007-04-26 16:46:15 -0400516 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
517 BUG_ON(ret);
518 bi = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]), path->slots[0],
519 struct btrfs_block_group_item);
520 memcpy(bi, &cache->item, sizeof(*bi));
521 mark_buffer_dirty(path->nodes[0]);
522 btrfs_release_path(extent_root, path);
523
524 finish_current_insert(trans, extent_root);
525 pending_ret = del_pending_extents(trans, extent_root);
526 if (ret)
527 return ret;
528 if (pending_ret)
529 return pending_ret;
Chris Masonbe744172007-05-06 10:15:01 -0400530 if (cache->data)
531 cache->last_alloc = cache->first_free;
Chris Mason9078a3e2007-04-26 16:46:15 -0400532 return 0;
533
534}
535
Chris Masonbe744172007-05-06 10:15:01 -0400536static int write_dirty_block_radix(struct btrfs_trans_handle *trans,
537 struct btrfs_root *root,
538 struct radix_tree_root *radix)
Chris Mason9078a3e2007-04-26 16:46:15 -0400539{
540 struct btrfs_block_group_cache *cache[8];
541 int ret;
542 int err = 0;
543 int werr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -0400544 int i;
545 struct btrfs_path *path;
546
547 path = btrfs_alloc_path();
548 if (!path)
549 return -ENOMEM;
550
551 while(1) {
552 ret = radix_tree_gang_lookup_tag(radix, (void **)cache,
553 0, ARRAY_SIZE(cache),
554 BTRFS_BLOCK_GROUP_DIRTY);
555 if (!ret)
556 break;
557 for (i = 0; i < ret; i++) {
558 radix_tree_tag_clear(radix, cache[i]->key.objectid +
559 cache[i]->key.offset - 1,
560 BTRFS_BLOCK_GROUP_DIRTY);
561 err = write_one_cache_group(trans, root,
562 path, cache[i]);
563 if (err)
564 werr = err;
565 }
566 }
567 btrfs_free_path(path);
568 return werr;
569}
570
Chris Masonbe744172007-05-06 10:15:01 -0400571int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
572 struct btrfs_root *root)
573{
574 int ret;
575 int ret2;
576 ret = write_dirty_block_radix(trans, root,
577 &root->fs_info->block_group_radix);
578 ret2 = write_dirty_block_radix(trans, root,
579 &root->fs_info->block_group_data_radix);
580 if (ret)
581 return ret;
582 if (ret2)
583 return ret2;
584 return 0;
585}
586
Chris Mason9078a3e2007-04-26 16:46:15 -0400587static int update_block_group(struct btrfs_trans_handle *trans,
588 struct btrfs_root *root,
Chris Mason1e2677e2007-05-29 16:52:18 -0400589 u64 blocknr, u64 num, int alloc, int mark_free,
590 int data)
Chris Mason9078a3e2007-04-26 16:46:15 -0400591{
592 struct btrfs_block_group_cache *cache;
593 struct btrfs_fs_info *info = root->fs_info;
594 u64 total = num;
595 u64 old_val;
596 u64 block_in_group;
Chris Masone37c9e62007-05-09 20:13:14 -0400597 u64 i;
Chris Mason1e2677e2007-05-29 16:52:18 -0400598 int ret;
Chris Mason3e1ad542007-05-07 20:03:49 -0400599
Chris Mason9078a3e2007-04-26 16:46:15 -0400600 while(total) {
Chris Mason5276aed2007-06-11 21:33:38 -0400601 cache = btrfs_lookup_block_group(info, blocknr);
Chris Mason3e1ad542007-05-07 20:03:49 -0400602 if (!cache) {
Chris Mason9078a3e2007-04-26 16:46:15 -0400603 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -0400604 }
Chris Mason9078a3e2007-04-26 16:46:15 -0400605 block_in_group = blocknr - cache->key.objectid;
606 WARN_ON(block_in_group > cache->key.offset);
Chris Mason3e1ad542007-05-07 20:03:49 -0400607 radix_tree_tag_set(cache->radix, cache->key.objectid +
Chris Masonbe744172007-05-06 10:15:01 -0400608 cache->key.offset - 1,
Chris Mason9078a3e2007-04-26 16:46:15 -0400609 BTRFS_BLOCK_GROUP_DIRTY);
610
611 old_val = btrfs_block_group_used(&cache->item);
612 num = min(total, cache->key.offset - block_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -0400613 if (alloc) {
Chris Masoncd1bc462007-04-27 10:08:34 -0400614 if (blocknr > cache->last_alloc)
615 cache->last_alloc = blocknr;
Chris Masone37c9e62007-05-09 20:13:14 -0400616 if (!cache->data) {
617 for (i = 0; i < num; i++) {
618 clear_radix_bit(&info->extent_map_radix,
619 blocknr + i);
620 }
621 }
Chris Mason1e2677e2007-05-29 16:52:18 -0400622 if (cache->data != data &&
Chris Mason84f54cf2007-06-12 07:43:08 -0400623 old_val < (cache->key.offset >> 1)) {
Chris Mason1e2677e2007-05-29 16:52:18 -0400624 cache->data = data;
625 radix_tree_delete(cache->radix,
626 cache->key.objectid +
627 cache->key.offset - 1);
628
629 if (data) {
630 cache->radix =
631 &info->block_group_data_radix;
632 cache->item.flags |=
633 BTRFS_BLOCK_GROUP_DATA;
634 } else {
635 cache->radix = &info->block_group_radix;
636 cache->item.flags &=
637 ~BTRFS_BLOCK_GROUP_DATA;
638 }
639 ret = radix_tree_insert(cache->radix,
640 cache->key.objectid +
641 cache->key.offset - 1,
642 (void *)cache);
643 }
644 old_val += num;
Chris Masoncd1bc462007-04-27 10:08:34 -0400645 } else {
Chris Mason9078a3e2007-04-26 16:46:15 -0400646 old_val -= num;
Chris Masoncd1bc462007-04-27 10:08:34 -0400647 if (blocknr < cache->first_free)
648 cache->first_free = blocknr;
Chris Masone37c9e62007-05-09 20:13:14 -0400649 if (!cache->data && mark_free) {
650 for (i = 0; i < num; i++) {
651 set_radix_bit(&info->extent_map_radix,
652 blocknr + i);
653 }
654 }
Chris Mason84f54cf2007-06-12 07:43:08 -0400655 if (old_val < (cache->key.offset >> 1) &&
656 old_val + num >= (cache->key.offset >> 1)) {
Chris Masone37c9e62007-05-09 20:13:14 -0400657 radix_tree_tag_set(cache->radix,
658 cache->key.objectid +
659 cache->key.offset - 1,
660 BTRFS_BLOCK_GROUP_AVAIL);
661 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400662 }
Chris Mason9078a3e2007-04-26 16:46:15 -0400663 btrfs_set_block_group_used(&cache->item, old_val);
Chris Masone37c9e62007-05-09 20:13:14 -0400664 total -= num;
665 blocknr += num;
Chris Mason9078a3e2007-04-26 16:46:15 -0400666 }
667 return 0;
668}
669
Chris Masonbe08c1b2007-05-03 09:06:49 -0400670static int try_remove_page(struct address_space *mapping, unsigned long index)
671{
672 int ret;
673 ret = invalidate_mapping_pages(mapping, index, index);
674 return ret;
675}
676
Chris Masone089f052007-03-16 16:20:31 -0400677int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, struct
678 btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -0500679{
Chris Mason8ef97622007-03-26 10:15:30 -0400680 unsigned long gang[8];
Chris Masonbe08c1b2007-05-03 09:06:49 -0400681 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonbe744172007-05-06 10:15:01 -0400682 struct btrfs_block_group_cache *block_group;
Chris Mason88fd1462007-03-16 08:56:18 -0400683 u64 first = 0;
Chris Masona28ec192007-03-06 20:08:01 -0500684 int ret;
685 int i;
Chris Mason8ef97622007-03-26 10:15:30 -0400686 struct radix_tree_root *pinned_radix = &root->fs_info->pinned_radix;
Chris Masone37c9e62007-05-09 20:13:14 -0400687 struct radix_tree_root *extent_radix = &root->fs_info->extent_map_radix;
Chris Masona28ec192007-03-06 20:08:01 -0500688
689 while(1) {
Chris Masone37c9e62007-05-09 20:13:14 -0400690 ret = find_first_radix_bit(pinned_radix, gang, 0,
Chris Mason8ef97622007-03-26 10:15:30 -0400691 ARRAY_SIZE(gang));
Chris Masona28ec192007-03-06 20:08:01 -0500692 if (!ret)
693 break;
Chris Mason88fd1462007-03-16 08:56:18 -0400694 if (!first)
Chris Mason8ef97622007-03-26 10:15:30 -0400695 first = gang[0];
Chris Mason0579da42007-03-07 16:15:30 -0500696 for (i = 0; i < ret; i++) {
Chris Mason8ef97622007-03-26 10:15:30 -0400697 clear_radix_bit(pinned_radix, gang[i]);
Chris Mason5276aed2007-06-11 21:33:38 -0400698 block_group = btrfs_lookup_block_group(root->fs_info,
699 gang[i]);
Chris Masonbe744172007-05-06 10:15:01 -0400700 if (block_group) {
701 WARN_ON(block_group->pinned == 0);
702 block_group->pinned--;
703 if (gang[i] < block_group->last_alloc)
704 block_group->last_alloc = gang[i];
Chris Masone37c9e62007-05-09 20:13:14 -0400705 if (gang[i] < block_group->last_prealloc)
706 block_group->last_prealloc = gang[i];
707 if (!block_group->data)
708 set_radix_bit(extent_radix, gang[i]);
Chris Masonbe744172007-05-06 10:15:01 -0400709 }
Chris Masonbe08c1b2007-05-03 09:06:49 -0400710 try_remove_page(btree_inode->i_mapping,
711 gang[i] << (PAGE_CACHE_SHIFT -
712 btree_inode->i_blkbits));
Chris Mason0579da42007-03-07 16:15:30 -0500713 }
Chris Masona28ec192007-03-06 20:08:01 -0500714 }
715 return 0;
716}
717
Chris Masone089f052007-03-16 16:20:31 -0400718static int finish_current_insert(struct btrfs_trans_handle *trans, struct
719 btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -0500720{
Chris Masone2fa7222007-03-12 16:22:34 -0400721 struct btrfs_key ins;
Chris Mason234b63a2007-03-13 10:46:10 -0400722 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -0500723 int i;
724 int ret;
Chris Mason1261ec42007-03-20 20:35:03 -0400725 u64 super_blocks_used;
726 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Mason037e6392007-03-07 11:50:24 -0500727
Chris Masoncf27e1e2007-03-13 09:49:06 -0400728 btrfs_set_extent_refs(&extent_item, 1);
Chris Mason037e6392007-03-07 11:50:24 -0500729 ins.offset = 1;
730 ins.flags = 0;
Chris Mason62e27492007-03-15 12:56:47 -0400731 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5d0c3e62007-04-23 17:01:05 -0400732 btrfs_set_extent_owner(&extent_item, extent_root->root_key.objectid);
Chris Mason037e6392007-03-07 11:50:24 -0500733
Chris Masonf2458e12007-04-25 15:52:25 -0400734 for (i = 0; i < extent_root->fs_info->extent_tree_insert_nr; i++) {
735 ins.objectid = extent_root->fs_info->extent_tree_insert[i];
Chris Mason1261ec42007-03-20 20:35:03 -0400736 super_blocks_used = btrfs_super_blocks_used(info->disk_super);
737 btrfs_set_super_blocks_used(info->disk_super,
738 super_blocks_used + 1);
Chris Masone089f052007-03-16 16:20:31 -0400739 ret = btrfs_insert_item(trans, extent_root, &ins, &extent_item,
740 sizeof(extent_item));
Chris Mason037e6392007-03-07 11:50:24 -0500741 BUG_ON(ret);
742 }
Chris Masonf2458e12007-04-25 15:52:25 -0400743 extent_root->fs_info->extent_tree_insert_nr = 0;
Chris Mason037e6392007-03-07 11:50:24 -0500744 return 0;
745}
746
Chris Mason8ef97622007-03-26 10:15:30 -0400747static int pin_down_block(struct btrfs_root *root, u64 blocknr, int pending)
Chris Masone20d96d2007-03-22 12:13:20 -0400748{
749 int err;
Chris Mason78fae272007-03-25 11:35:08 -0400750 struct btrfs_header *header;
Chris Mason8ef97622007-03-26 10:15:30 -0400751 struct buffer_head *bh;
Chris Mason78fae272007-03-25 11:35:08 -0400752
Chris Masonf4b9aa82007-03-27 11:05:53 -0400753 if (!pending) {
Chris Masond98237b2007-03-28 13:57:48 -0400754 bh = btrfs_find_tree_block(root, blocknr);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400755 if (bh) {
756 if (buffer_uptodate(bh)) {
757 u64 transid =
758 root->fs_info->running_transaction->transid;
759 header = btrfs_buffer_header(bh);
760 if (btrfs_header_generation(header) ==
761 transid) {
762 btrfs_block_release(root, bh);
763 return 0;
764 }
Chris Masonf4b9aa82007-03-27 11:05:53 -0400765 }
Chris Masond6025572007-03-30 14:27:56 -0400766 btrfs_block_release(root, bh);
Chris Mason8ef97622007-03-26 10:15:30 -0400767 }
Chris Mason8ef97622007-03-26 10:15:30 -0400768 err = set_radix_bit(&root->fs_info->pinned_radix, blocknr);
Chris Masonbe744172007-05-06 10:15:01 -0400769 if (!err) {
770 struct btrfs_block_group_cache *cache;
Chris Mason5276aed2007-06-11 21:33:38 -0400771 cache = btrfs_lookup_block_group(root->fs_info,
772 blocknr);
Chris Masonbe744172007-05-06 10:15:01 -0400773 if (cache)
774 cache->pinned++;
775 }
Chris Masonf4b9aa82007-03-27 11:05:53 -0400776 } else {
777 err = set_radix_bit(&root->fs_info->pending_del_radix, blocknr);
778 }
Chris Masonbe744172007-05-06 10:15:01 -0400779 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -0400780 return 0;
781}
782
Chris Masona28ec192007-03-06 20:08:01 -0500783/*
784 * remove an extent from the root, returns 0 on success
785 */
Chris Masone089f052007-03-16 16:20:31 -0400786static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masone37c9e62007-05-09 20:13:14 -0400787 *root, u64 blocknr, u64 num_blocks, int pin,
788 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -0500789{
Chris Mason5caf2a02007-04-02 11:20:42 -0400790 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -0400791 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -0400792 struct btrfs_fs_info *info = root->fs_info;
793 struct btrfs_root *extent_root = info->extent_root;
Chris Masona28ec192007-03-06 20:08:01 -0500794 int ret;
Chris Mason234b63a2007-03-13 10:46:10 -0400795 struct btrfs_extent_item *ei;
Chris Masone2fa7222007-03-12 16:22:34 -0400796 struct btrfs_key ins;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400797 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500798
Chris Masona28ec192007-03-06 20:08:01 -0500799 key.objectid = blocknr;
800 key.flags = 0;
Chris Mason62e27492007-03-15 12:56:47 -0400801 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masona28ec192007-03-06 20:08:01 -0500802 key.offset = num_blocks;
803
Chris Masonfbdc7622007-05-30 10:22:12 -0400804 find_free_extent(trans, root, 0, 0, (u64)-1, 0, &ins, 0);
Chris Mason5caf2a02007-04-02 11:20:42 -0400805 path = btrfs_alloc_path();
806 BUG_ON(!path);
Chris Mason5f26f772007-04-05 10:38:44 -0400807
Chris Mason5caf2a02007-04-02 11:20:42 -0400808 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
Chris Masona28ec192007-03-06 20:08:01 -0500809 if (ret) {
Chris Masona28ec192007-03-06 20:08:01 -0500810 BUG();
811 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400812 ei = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]), path->slots[0],
Chris Mason123abc82007-03-14 14:14:43 -0400813 struct btrfs_extent_item);
Chris Masona28ec192007-03-06 20:08:01 -0500814 BUG_ON(ei->refs == 0);
Chris Masoncf27e1e2007-03-13 09:49:06 -0400815 refs = btrfs_extent_refs(ei) - 1;
816 btrfs_set_extent_refs(ei, refs);
Chris Mason5caf2a02007-04-02 11:20:42 -0400817 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masoncf27e1e2007-03-13 09:49:06 -0400818 if (refs == 0) {
Chris Mason1261ec42007-03-20 20:35:03 -0400819 u64 super_blocks_used;
Chris Mason78fae272007-03-25 11:35:08 -0400820
821 if (pin) {
Chris Mason8ef97622007-03-26 10:15:30 -0400822 ret = pin_down_block(root, blocknr, 0);
Chris Mason78fae272007-03-25 11:35:08 -0400823 BUG_ON(ret);
824 }
825
Chris Mason1261ec42007-03-20 20:35:03 -0400826 super_blocks_used = btrfs_super_blocks_used(info->disk_super);
827 btrfs_set_super_blocks_used(info->disk_super,
828 super_blocks_used - num_blocks);
Chris Mason5caf2a02007-04-02 11:20:42 -0400829 ret = btrfs_del_item(trans, extent_root, path);
Chris Masona28ec192007-03-06 20:08:01 -0500830 if (ret)
831 BUG();
Chris Masone37c9e62007-05-09 20:13:14 -0400832 ret = update_block_group(trans, root, blocknr, num_blocks, 0,
Chris Mason1e2677e2007-05-29 16:52:18 -0400833 mark_free, 0);
Chris Mason9078a3e2007-04-26 16:46:15 -0400834 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -0500835 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400836 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -0400837 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -0500838 return ret;
839}
840
841/*
Chris Masonfec577f2007-02-26 10:40:21 -0500842 * find all the blocks marked as pending in the radix tree and remove
843 * them from the extent map
844 */
Chris Masone089f052007-03-16 16:20:31 -0400845static int del_pending_extents(struct btrfs_trans_handle *trans, struct
846 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -0500847{
848 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -0400849 int wret;
850 int err = 0;
Chris Mason8ef97622007-03-26 10:15:30 -0400851 unsigned long gang[4];
Chris Masonfec577f2007-02-26 10:40:21 -0500852 int i;
Chris Mason8ef97622007-03-26 10:15:30 -0400853 struct radix_tree_root *pending_radix;
854 struct radix_tree_root *pinned_radix;
Chris Masonbe744172007-05-06 10:15:01 -0400855 struct btrfs_block_group_cache *cache;
Chris Mason8ef97622007-03-26 10:15:30 -0400856
857 pending_radix = &extent_root->fs_info->pending_del_radix;
858 pinned_radix = &extent_root->fs_info->pinned_radix;
Chris Masonfec577f2007-02-26 10:40:21 -0500859
860 while(1) {
Chris Masone37c9e62007-05-09 20:13:14 -0400861 ret = find_first_radix_bit(pending_radix, gang, 0,
Chris Mason8ef97622007-03-26 10:15:30 -0400862 ARRAY_SIZE(gang));
Chris Masonfec577f2007-02-26 10:40:21 -0500863 if (!ret)
864 break;
865 for (i = 0; i < ret; i++) {
Chris Mason8ef97622007-03-26 10:15:30 -0400866 wret = set_radix_bit(pinned_radix, gang[i]);
Chris Masonbe744172007-05-06 10:15:01 -0400867 if (wret == 0) {
Chris Mason5276aed2007-06-11 21:33:38 -0400868 cache =
869 btrfs_lookup_block_group(extent_root->fs_info,
Chris Masonbe744172007-05-06 10:15:01 -0400870 gang[i]);
871 if (cache)
872 cache->pinned++;
873 }
874 if (wret < 0) {
875 printk(KERN_CRIT "set_radix_bit, err %d\n",
876 wret);
877 BUG_ON(wret < 0);
878 }
Chris Mason8ef97622007-03-26 10:15:30 -0400879 wret = clear_radix_bit(pending_radix, gang[i]);
880 BUG_ON(wret);
Chris Masond5719762007-03-23 10:01:08 -0400881 wret = __free_extent(trans, extent_root,
Chris Masone37c9e62007-05-09 20:13:14 -0400882 gang[i], 1, 0, 0);
Chris Masone20d96d2007-03-22 12:13:20 -0400883 if (wret)
884 err = wret;
Chris Masonfec577f2007-02-26 10:40:21 -0500885 }
886 }
Chris Masone20d96d2007-03-22 12:13:20 -0400887 return err;
Chris Masonfec577f2007-02-26 10:40:21 -0500888}
889
890/*
891 * remove an extent from the root, returns 0 on success
892 */
Chris Masone089f052007-03-16 16:20:31 -0400893int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
894 *root, u64 blocknr, u64 num_blocks, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -0500895{
Chris Mason9f5fae22007-03-20 14:38:32 -0400896 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -0500897 int pending_ret;
898 int ret;
Chris Masona28ec192007-03-06 20:08:01 -0500899
900 if (root == extent_root) {
Chris Mason8ef97622007-03-26 10:15:30 -0400901 pin_down_block(root, blocknr, 1);
Chris Masona28ec192007-03-06 20:08:01 -0500902 return 0;
903 }
Chris Masone37c9e62007-05-09 20:13:14 -0400904 ret = __free_extent(trans, root, blocknr, num_blocks, pin, pin == 0);
Chris Masone20d96d2007-03-22 12:13:20 -0400905 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -0500906 return ret ? ret : pending_ret;
907}
908
909/*
910 * walks the btree of allocated extents and find a hole of a given size.
911 * The key ins is changed to record the hole:
912 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -0400913 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -0500914 * ins->offset == number of blocks
915 * Any available blocks before search_start are skipped.
916 */
Chris Masone089f052007-03-16 16:20:31 -0400917static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
918 *orig_root, u64 num_blocks, u64 search_start, u64
Chris Masonfbdc7622007-05-30 10:22:12 -0400919 search_end, u64 hint_block,
920 struct btrfs_key *ins, int data)
Chris Masonfec577f2007-02-26 10:40:21 -0500921{
Chris Mason5caf2a02007-04-02 11:20:42 -0400922 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -0400923 struct btrfs_key key;
Chris Masonfec577f2007-02-26 10:40:21 -0500924 int ret;
925 u64 hole_size = 0;
926 int slot = 0;
Chris Masone20d96d2007-03-22 12:13:20 -0400927 u64 last_block = 0;
Chris Mason037e6392007-03-07 11:50:24 -0500928 u64 test_block;
Chris Masonbe744172007-05-06 10:15:01 -0400929 u64 orig_search_start = search_start;
Chris Masonfec577f2007-02-26 10:40:21 -0500930 int start_found;
Chris Mason234b63a2007-03-13 10:46:10 -0400931 struct btrfs_leaf *l;
Chris Mason9f5fae22007-03-20 14:38:32 -0400932 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -0400933 struct btrfs_fs_info *info = root->fs_info;
Chris Mason0579da42007-03-07 16:15:30 -0500934 int total_needed = num_blocks;
Chris Masonf2458e12007-04-25 15:52:25 -0400935 int total_found = 0;
936 int fill_prealloc = 0;
Chris Masone20d96d2007-03-22 12:13:20 -0400937 int level;
Chris Masonbe08c1b2007-05-03 09:06:49 -0400938 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -0400939 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -0400940 int wrapped = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400941 u64 limit;
Chris Masonfec577f2007-02-26 10:40:21 -0500942
Chris Masonb1a4d962007-04-04 15:27:52 -0400943 ins->flags = 0;
944 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
945
Chris Masone20d96d2007-03-22 12:13:20 -0400946 level = btrfs_header_level(btrfs_buffer_header(root->node));
Chris Masonf2458e12007-04-25 15:52:25 -0400947 if (num_blocks == 0) {
948 fill_prealloc = 1;
949 num_blocks = 1;
Chris Mason308535a2007-04-28 15:17:08 -0400950 total_needed = (min(level + 1, BTRFS_MAX_LEVEL) + 2) * 3;
Chris Masonf2458e12007-04-25 15:52:25 -0400951 }
Chris Mason85e55b12007-06-19 15:50:51 -0400952 if (fill_prealloc) {
953 u64 first;
954 int nr = info->extent_tree_prealloc_nr;
955 first = info->extent_tree_prealloc[nr - 1];
956 if (info->extent_tree_prealloc_nr >= total_needed &&
957 first >= search_start) {
958 ins->objectid = info->extent_tree_prealloc[0];
959 ins->offset = 1;
960 return 0;
961 }
962 info->extent_tree_prealloc_nr = 0;
963 }
Chris Mason3e1ad542007-05-07 20:03:49 -0400964 if (search_end == (u64)-1)
965 search_end = btrfs_super_total_blocks(info->disk_super);
Chris Masonfbdc7622007-05-30 10:22:12 -0400966 if (hint_block) {
Chris Mason5276aed2007-06-11 21:33:38 -0400967 block_group = btrfs_lookup_block_group(info, hint_block);
Chris Masonbe744172007-05-06 10:15:01 -0400968 block_group = btrfs_find_block_group(root, block_group,
Chris Masonfbdc7622007-05-30 10:22:12 -0400969 hint_block, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -0400970 } else {
971 block_group = btrfs_find_block_group(root,
972 trans->block_group, 0,
Chris Masonde428b62007-05-18 13:28:27 -0400973 data, 1);
Chris Masonbe744172007-05-06 10:15:01 -0400974 }
975
Chris Masone0115992007-06-19 16:23:05 -0400976 path = btrfs_alloc_path();
977
Chris Masonbe744172007-05-06 10:15:01 -0400978check_failed:
Chris Mason1e2677e2007-05-29 16:52:18 -0400979 if (!block_group->data)
Chris Masone37c9e62007-05-09 20:13:14 -0400980 search_start = find_search_start(root, &block_group,
981 search_start, total_needed);
Chris Masonfbdc7622007-05-30 10:22:12 -0400982 else if (!full_scan)
Chris Masone37c9e62007-05-09 20:13:14 -0400983 search_start = max(block_group->last_alloc, search_start);
984
Chris Mason5caf2a02007-04-02 11:20:42 -0400985 btrfs_init_path(path);
Chris Masonfec577f2007-02-26 10:40:21 -0500986 ins->objectid = search_start;
987 ins->offset = 0;
Chris Masonfec577f2007-02-26 10:40:21 -0500988 start_found = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400989
Chris Mason5caf2a02007-04-02 11:20:42 -0400990 ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
Chris Mason0f70abe2007-02-28 16:46:22 -0500991 if (ret < 0)
992 goto error;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500993
Chris Masone37c9e62007-05-09 20:13:14 -0400994 if (path->slots[0] > 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -0400995 path->slots[0]--;
Chris Masone37c9e62007-05-09 20:13:14 -0400996 }
997
998 l = btrfs_buffer_leaf(path->nodes[0]);
999 btrfs_disk_key_to_cpu(&key, &l->items[path->slots[0]].key);
1000 /*
1001 * a rare case, go back one key if we hit a block group item
1002 * instead of an extent item
1003 */
1004 if (btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY &&
1005 key.objectid + key.offset >= search_start) {
1006 ins->objectid = key.objectid;
1007 ins->offset = key.offset - 1;
1008 btrfs_release_path(root, path);
1009 ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
1010 if (ret < 0)
1011 goto error;
1012
1013 if (path->slots[0] > 0) {
1014 path->slots[0]--;
1015 }
1016 }
Chris Mason0579da42007-03-07 16:15:30 -05001017
Chris Masonfec577f2007-02-26 10:40:21 -05001018 while (1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001019 l = btrfs_buffer_leaf(path->nodes[0]);
1020 slot = path->slots[0];
Chris Mason7518a232007-03-12 12:01:18 -04001021 if (slot >= btrfs_header_nritems(&l->header)) {
Chris Masonf2458e12007-04-25 15:52:25 -04001022 if (fill_prealloc) {
1023 info->extent_tree_prealloc_nr = 0;
1024 total_found = 0;
1025 }
Chris Masonde428b62007-05-18 13:28:27 -04001026 if (start_found)
1027 limit = last_block +
Chris Mason84f54cf2007-06-12 07:43:08 -04001028 (block_group->key.offset >> 1);
Chris Masonde428b62007-05-18 13:28:27 -04001029 else
1030 limit = search_start +
Chris Mason84f54cf2007-06-12 07:43:08 -04001031 (block_group->key.offset >> 1);
Chris Mason5caf2a02007-04-02 11:20:42 -04001032 ret = btrfs_next_leaf(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -05001033 if (ret == 0)
1034 continue;
Chris Mason0f70abe2007-02-28 16:46:22 -05001035 if (ret < 0)
1036 goto error;
Chris Masonfec577f2007-02-26 10:40:21 -05001037 if (!start_found) {
1038 ins->objectid = search_start;
Chris Mason3e1ad542007-05-07 20:03:49 -04001039 ins->offset = search_end - search_start;
Chris Masonfec577f2007-02-26 10:40:21 -05001040 start_found = 1;
1041 goto check_pending;
1042 }
1043 ins->objectid = last_block > search_start ?
1044 last_block : search_start;
Chris Mason3e1ad542007-05-07 20:03:49 -04001045 ins->offset = search_end - ins->objectid;
Chris Masonfec577f2007-02-26 10:40:21 -05001046 goto check_pending;
1047 }
Chris Masone37c9e62007-05-09 20:13:14 -04001048
Chris Masone2fa7222007-03-12 16:22:34 -04001049 btrfs_disk_key_to_cpu(&key, &l->items[slot].key);
Chris Masone37c9e62007-05-09 20:13:14 -04001050 if (key.objectid >= search_start && key.objectid > last_block &&
1051 start_found) {
1052 if (last_block < search_start)
1053 last_block = search_start;
1054 hole_size = key.objectid - last_block;
1055 if (hole_size >= num_blocks) {
1056 ins->objectid = last_block;
1057 ins->offset = hole_size;
1058 goto check_pending;
Chris Mason0579da42007-03-07 16:15:30 -05001059 }
Chris Masonfec577f2007-02-26 10:40:21 -05001060 }
Chris Masone37c9e62007-05-09 20:13:14 -04001061
1062 if (btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY)
1063 goto next;
1064
Chris Mason0579da42007-03-07 16:15:30 -05001065 start_found = 1;
Chris Masone2fa7222007-03-12 16:22:34 -04001066 last_block = key.objectid + key.offset;
Chris Masonfbdc7622007-05-30 10:22:12 -04001067 if (!full_scan && last_block >= block_group->key.objectid +
Chris Masonbe744172007-05-06 10:15:01 -04001068 block_group->key.offset) {
1069 btrfs_release_path(root, path);
1070 search_start = block_group->key.objectid +
1071 block_group->key.offset * 2;
1072 goto new_group;
1073 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001074next:
Chris Mason5caf2a02007-04-02 11:20:42 -04001075 path->slots[0]++;
Chris Masonde428b62007-05-18 13:28:27 -04001076 cond_resched();
Chris Masonfec577f2007-02-26 10:40:21 -05001077 }
1078 // FIXME -ENOSPC
1079check_pending:
1080 /* we have to make sure we didn't find an extent that has already
1081 * been allocated by the map tree or the original allocation
1082 */
Chris Mason5caf2a02007-04-02 11:20:42 -04001083 btrfs_release_path(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -05001084 BUG_ON(ins->objectid < search_start);
Chris Masone37c9e62007-05-09 20:13:14 -04001085
Chris Mason3e1ad542007-05-07 20:03:49 -04001086 if (ins->objectid + num_blocks >= search_end) {
Chris Masonfbdc7622007-05-30 10:22:12 -04001087 if (full_scan) {
1088 ret = -ENOSPC;
1089 goto error;
1090 }
Chris Masonbe744172007-05-06 10:15:01 -04001091 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04001092 if (wrapped)
1093 full_scan = 1;
1094 else
1095 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04001096 goto new_group;
Chris Mason06a2f9f2007-04-28 08:48:10 -04001097 }
Chris Mason037e6392007-03-07 11:50:24 -05001098 for (test_block = ins->objectid;
Chris Masonf2458e12007-04-25 15:52:25 -04001099 test_block < ins->objectid + num_blocks; test_block++) {
1100 if (test_radix_bit(&info->pinned_radix, test_block)) {
Chris Mason037e6392007-03-07 11:50:24 -05001101 search_start = test_block + 1;
Chris Masonbe744172007-05-06 10:15:01 -04001102 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05001103 }
1104 }
Chris Masonf2458e12007-04-25 15:52:25 -04001105 if (!fill_prealloc && info->extent_tree_insert_nr) {
1106 u64 last =
1107 info->extent_tree_insert[info->extent_tree_insert_nr - 1];
1108 if (ins->objectid + num_blocks >
1109 info->extent_tree_insert[0] &&
1110 ins->objectid <= last) {
1111 search_start = last + 1;
Chris Masone37c9e62007-05-09 20:13:14 -04001112 WARN_ON(!full_scan);
Chris Masonbe744172007-05-06 10:15:01 -04001113 goto new_group;
Chris Masonf2458e12007-04-25 15:52:25 -04001114 }
1115 }
1116 if (!fill_prealloc && info->extent_tree_prealloc_nr) {
1117 u64 first =
1118 info->extent_tree_prealloc[info->extent_tree_prealloc_nr - 1];
1119 if (ins->objectid + num_blocks > first &&
1120 ins->objectid <= info->extent_tree_prealloc[0]) {
1121 search_start = info->extent_tree_prealloc[0] + 1;
Chris Masonbe744172007-05-06 10:15:01 -04001122 goto new_group;
Chris Masonf2458e12007-04-25 15:52:25 -04001123 }
1124 }
1125 if (fill_prealloc) {
1126 int nr;
1127 test_block = ins->objectid;
Chris Masone37c9e62007-05-09 20:13:14 -04001128 if (test_block - info->extent_tree_prealloc[total_needed - 1] >=
1129 leaf_range(root)) {
1130 total_found = 0;
1131 info->extent_tree_prealloc_nr = total_found;
1132 }
Chris Masonf2458e12007-04-25 15:52:25 -04001133 while(test_block < ins->objectid + ins->offset &&
1134 total_found < total_needed) {
1135 nr = total_needed - total_found - 1;
1136 BUG_ON(nr < 0);
Chris Masoncd1bc462007-04-27 10:08:34 -04001137 info->extent_tree_prealloc[nr] = test_block;
Chris Masonf2458e12007-04-25 15:52:25 -04001138 total_found++;
1139 test_block++;
1140 }
1141 if (total_found < total_needed) {
1142 search_start = test_block;
Chris Masonbe744172007-05-06 10:15:01 -04001143 goto new_group;
Chris Masonf2458e12007-04-25 15:52:25 -04001144 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001145 info->extent_tree_prealloc_nr = total_found;
Chris Masonf2458e12007-04-25 15:52:25 -04001146 }
Chris Masone37c9e62007-05-09 20:13:14 -04001147 if (!data) {
Chris Mason5276aed2007-06-11 21:33:38 -04001148 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Masone37c9e62007-05-09 20:13:14 -04001149 if (block_group) {
1150 if (fill_prealloc)
1151 block_group->last_prealloc =
1152 info->extent_tree_prealloc[total_needed-1];
1153 else
1154 trans->block_group = block_group;
1155 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001156 }
Chris Mason037e6392007-03-07 11:50:24 -05001157 ins->offset = num_blocks;
Chris Mason5caf2a02007-04-02 11:20:42 -04001158 btrfs_free_path(path);
Chris Masonfec577f2007-02-26 10:40:21 -05001159 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04001160
1161new_group:
Chris Mason3e1ad542007-05-07 20:03:49 -04001162 if (search_start + num_blocks >= search_end) {
Chris Masonbe744172007-05-06 10:15:01 -04001163 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04001164 if (full_scan) {
1165 ret = -ENOSPC;
1166 goto error;
1167 }
1168 if (wrapped)
1169 full_scan = 1;
1170 else
1171 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04001172 }
Chris Mason5276aed2007-06-11 21:33:38 -04001173 block_group = btrfs_lookup_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04001174 cond_resched();
Chris Masonbe744172007-05-06 10:15:01 -04001175 if (!full_scan)
1176 block_group = btrfs_find_block_group(root, block_group,
Chris Masonde428b62007-05-18 13:28:27 -04001177 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04001178 goto check_failed;
1179
Chris Mason0f70abe2007-02-28 16:46:22 -05001180error:
Chris Mason5caf2a02007-04-02 11:20:42 -04001181 btrfs_release_path(root, path);
1182 btrfs_free_path(path);
Chris Mason0f70abe2007-02-28 16:46:22 -05001183 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001184}
Chris Masonfec577f2007-02-26 10:40:21 -05001185/*
Chris Masonfec577f2007-02-26 10:40:21 -05001186 * finds a free extent and does all the dirty work required for allocation
1187 * returns the key for the extent through ins, and a tree buffer for
1188 * the first block of the extent through buf.
1189 *
1190 * returns 0 if everything worked, non-zero otherwise.
1191 */
Chris Mason4d775672007-04-20 20:23:12 -04001192int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
1193 struct btrfs_root *root, u64 owner,
Chris Masonfbdc7622007-05-30 10:22:12 -04001194 u64 num_blocks, u64 hint_block,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001195 u64 search_end, struct btrfs_key *ins, int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001196{
1197 int ret;
1198 int pending_ret;
Chris Mason1261ec42007-03-20 20:35:03 -04001199 u64 super_blocks_used;
Chris Masonfbdc7622007-05-30 10:22:12 -04001200 u64 search_start = 0;
Chris Mason1261ec42007-03-20 20:35:03 -04001201 struct btrfs_fs_info *info = root->fs_info;
1202 struct btrfs_root *extent_root = info->extent_root;
Chris Mason234b63a2007-03-13 10:46:10 -04001203 struct btrfs_extent_item extent_item;
Chris Masonf2458e12007-04-25 15:52:25 -04001204 struct btrfs_key prealloc_key;
Chris Mason037e6392007-03-07 11:50:24 -05001205
Chris Masoncf27e1e2007-03-13 09:49:06 -04001206 btrfs_set_extent_refs(&extent_item, 1);
Chris Mason4d775672007-04-20 20:23:12 -04001207 btrfs_set_extent_owner(&extent_item, owner);
Chris Masonfec577f2007-02-26 10:40:21 -05001208
Chris Mason037e6392007-03-07 11:50:24 -05001209 if (root == extent_root) {
Chris Masonf2458e12007-04-25 15:52:25 -04001210 int nr;
1211 BUG_ON(info->extent_tree_prealloc_nr == 0);
Chris Mason037e6392007-03-07 11:50:24 -05001212 BUG_ON(num_blocks != 1);
Chris Mason037e6392007-03-07 11:50:24 -05001213 ins->offset = 1;
Chris Masonf2458e12007-04-25 15:52:25 -04001214 info->extent_tree_prealloc_nr--;
1215 nr = info->extent_tree_prealloc_nr;
1216 ins->objectid = info->extent_tree_prealloc[nr];
1217 info->extent_tree_insert[info->extent_tree_insert_nr++] =
1218 ins->objectid;
Chris Mason9078a3e2007-04-26 16:46:15 -04001219 ret = update_block_group(trans, root,
Chris Mason1e2677e2007-05-29 16:52:18 -04001220 ins->objectid, ins->offset, 1, 0, 0);
Chris Mason9078a3e2007-04-26 16:46:15 -04001221 BUG_ON(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05001222 return 0;
1223 }
Chris Masone37c9e62007-05-09 20:13:14 -04001224
1225 /*
1226 * if we're doing a data allocation, preallocate room in the
1227 * extent tree first. This way the extent tree blocks end up
1228 * in the correct block group.
1229 */
1230 if (data) {
Chris Masonde428b62007-05-18 13:28:27 -04001231 ret = find_free_extent(trans, root, 0, 0,
Chris Masonfbdc7622007-05-30 10:22:12 -04001232 search_end, 0, &prealloc_key, 0);
Chris Masone37c9e62007-05-09 20:13:14 -04001233 if (ret) {
1234 return ret;
1235 }
1236 if (prealloc_key.objectid + prealloc_key.offset >= search_end) {
1237 int nr = info->extent_tree_prealloc_nr;
1238 search_end = info->extent_tree_prealloc[nr - 1] - 1;
1239 } else {
1240 search_start = info->extent_tree_prealloc[0] + 1;
1241 }
1242 }
Chris Masonfbdc7622007-05-30 10:22:12 -04001243 if (hint_block < search_start)
1244 hint_block = search_start;
Chris Masonf2458e12007-04-25 15:52:25 -04001245 /* do the real allocation */
Chris Masone089f052007-03-16 16:20:31 -04001246 ret = find_free_extent(trans, root, num_blocks, search_start,
Chris Masonfbdc7622007-05-30 10:22:12 -04001247 search_end, hint_block, ins, data);
Chris Masone37c9e62007-05-09 20:13:14 -04001248 if (ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001249 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001250 }
Chris Masonfec577f2007-02-26 10:40:21 -05001251
Chris Masone37c9e62007-05-09 20:13:14 -04001252 /*
1253 * if we're doing a metadata allocation, preallocate space in the
1254 * extent tree second. This way, we don't create a tiny hole
1255 * in the allocation map between any unused preallocation blocks
1256 * and the metadata block we're actually allocating. On disk,
1257 * it'll go:
1258 * [block we've allocated], [used prealloc 1], [ unused prealloc ]
1259 * The unused prealloc will get reused the next time around.
1260 */
1261 if (!data) {
1262 if (ins->objectid + ins->offset >= search_end)
1263 search_end = ins->objectid - 1;
1264 else
1265 search_start = ins->objectid + ins->offset;
Chris Mason3e1ad542007-05-07 20:03:49 -04001266
Chris Masonfbdc7622007-05-30 10:22:12 -04001267 if (hint_block < search_start)
1268 hint_block = search_start;
1269
Chris Masone37c9e62007-05-09 20:13:14 -04001270 ret = find_free_extent(trans, root, 0, search_start,
Chris Masonfbdc7622007-05-30 10:22:12 -04001271 search_end, hint_block,
1272 &prealloc_key, 0);
Chris Masone37c9e62007-05-09 20:13:14 -04001273 if (ret) {
1274 return ret;
1275 }
1276 }
Chris Masonf2458e12007-04-25 15:52:25 -04001277
Chris Mason1261ec42007-03-20 20:35:03 -04001278 super_blocks_used = btrfs_super_blocks_used(info->disk_super);
1279 btrfs_set_super_blocks_used(info->disk_super, super_blocks_used +
1280 num_blocks);
Chris Masone089f052007-03-16 16:20:31 -04001281 ret = btrfs_insert_item(trans, extent_root, ins, &extent_item,
1282 sizeof(extent_item));
Chris Mason037e6392007-03-07 11:50:24 -05001283
Chris Masone089f052007-03-16 16:20:31 -04001284 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001285 pending_ret = del_pending_extents(trans, extent_root);
Chris Masone37c9e62007-05-09 20:13:14 -04001286 if (ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001287 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001288 }
1289 if (pending_ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001290 return pending_ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001291 }
Chris Mason1e2677e2007-05-29 16:52:18 -04001292 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0,
1293 data);
Chris Masonfabb5682007-06-07 22:13:21 -04001294 BUG_ON(ret);
Chris Mason037e6392007-03-07 11:50:24 -05001295 return 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001296}
1297
1298/*
1299 * helper function to allocate a block for a given tree
1300 * returns the tree buffer or NULL.
1301 */
Chris Masone20d96d2007-03-22 12:13:20 -04001302struct buffer_head *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Mason31f3c992007-04-30 15:25:45 -04001303 struct btrfs_root *root, u64 hint)
Chris Masonfec577f2007-02-26 10:40:21 -05001304{
Chris Masone2fa7222007-03-12 16:22:34 -04001305 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05001306 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001307 struct buffer_head *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05001308
Chris Mason4d775672007-04-20 20:23:12 -04001309 ret = btrfs_alloc_extent(trans, root, root->root_key.objectid,
Chris Masonde428b62007-05-18 13:28:27 -04001310 1, hint, (unsigned long)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05001311 if (ret) {
1312 BUG();
1313 return NULL;
1314 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001315 BUG_ON(ret);
Chris Masond98237b2007-03-28 13:57:48 -04001316 buf = btrfs_find_create_tree_block(root, ins.objectid);
Chris Masondf2ce342007-03-23 11:00:45 -04001317 set_buffer_uptodate(buf);
Chris Mason090d1872007-05-01 08:53:32 -04001318 set_buffer_checked(buf);
Chris Mason7c4452b2007-04-28 09:29:35 -04001319 set_radix_bit(&trans->transaction->dirty_pages, buf->b_page->index);
Chris Masonfec577f2007-02-26 10:40:21 -05001320 return buf;
1321}
Chris Masona28ec192007-03-06 20:08:01 -05001322
Chris Mason6407bf62007-03-27 06:33:00 -04001323static int drop_leaf_ref(struct btrfs_trans_handle *trans,
1324 struct btrfs_root *root, struct buffer_head *cur)
1325{
1326 struct btrfs_disk_key *key;
1327 struct btrfs_leaf *leaf;
1328 struct btrfs_file_extent_item *fi;
1329 int i;
1330 int nritems;
1331 int ret;
1332
1333 BUG_ON(!btrfs_is_leaf(btrfs_buffer_node(cur)));
1334 leaf = btrfs_buffer_leaf(cur);
1335 nritems = btrfs_header_nritems(&leaf->header);
1336 for (i = 0; i < nritems; i++) {
Chris Mason3a686372007-05-24 13:35:57 -04001337 u64 disk_blocknr;
Chris Mason6407bf62007-03-27 06:33:00 -04001338 key = &leaf->items[i].key;
1339 if (btrfs_disk_key_type(key) != BTRFS_EXTENT_DATA_KEY)
1340 continue;
1341 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason236454df2007-04-19 13:37:44 -04001342 if (btrfs_file_extent_type(fi) == BTRFS_FILE_EXTENT_INLINE)
1343 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04001344 /*
1345 * FIXME make sure to insert a trans record that
1346 * repeats the snapshot del on crash
1347 */
Chris Mason3a686372007-05-24 13:35:57 -04001348 disk_blocknr = btrfs_file_extent_disk_blocknr(fi);
1349 if (disk_blocknr == 0)
1350 continue;
1351 ret = btrfs_free_extent(trans, root, disk_blocknr,
Chris Mason6407bf62007-03-27 06:33:00 -04001352 btrfs_file_extent_disk_num_blocks(fi),
1353 0);
1354 BUG_ON(ret);
1355 }
1356 return 0;
1357}
1358
Chris Masone0115992007-06-19 16:23:05 -04001359static void reada_walk_down(struct btrfs_root *root,
1360 struct btrfs_node *node)
1361{
1362 int i;
1363 u32 nritems;
1364 u64 blocknr;
1365 int ret;
1366 u32 refs;
1367
1368 nritems = btrfs_header_nritems(&node->header);
1369 for (i = 0; i < nritems; i++) {
1370 blocknr = btrfs_node_blockptr(node, i);
1371 ret = lookup_extent_ref(NULL, root, blocknr, 1, &refs);
1372 BUG_ON(ret);
1373 if (refs != 1)
1374 continue;
1375 ret = readahead_tree_block(root, blocknr);
1376 if (ret)
1377 break;
1378 }
1379}
1380
Chris Mason9aca1d52007-03-13 11:09:37 -04001381/*
1382 * helper function for drop_snapshot, this walks down the tree dropping ref
1383 * counts as it goes.
1384 */
Chris Masone089f052007-03-16 16:20:31 -04001385static int walk_down_tree(struct btrfs_trans_handle *trans, struct btrfs_root
1386 *root, struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05001387{
Chris Masone20d96d2007-03-22 12:13:20 -04001388 struct buffer_head *next;
1389 struct buffer_head *cur;
Chris Mason20524f02007-03-10 06:35:47 -05001390 u64 blocknr;
1391 int ret;
1392 u32 refs;
1393
Chris Mason5caf2a02007-04-02 11:20:42 -04001394 WARN_ON(*level < 0);
1395 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Masonb18c6682007-04-17 13:26:50 -04001396 ret = lookup_extent_ref(trans, root, bh_blocknr(path->nodes[*level]),
Chris Mason6407bf62007-03-27 06:33:00 -04001397 1, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05001398 BUG_ON(ret);
1399 if (refs > 1)
1400 goto out;
Chris Masone0115992007-06-19 16:23:05 -04001401
Chris Mason9aca1d52007-03-13 11:09:37 -04001402 /*
1403 * walk down to the last node level and free all the leaves
1404 */
Chris Mason6407bf62007-03-27 06:33:00 -04001405 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001406 WARN_ON(*level < 0);
1407 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05001408 cur = path->nodes[*level];
Chris Masone0115992007-06-19 16:23:05 -04001409
1410 if (*level > 0 && path->slots[*level] == 0)
1411 reada_walk_down(root, btrfs_buffer_node(cur));
1412
Chris Mason2c90e5d2007-04-02 10:50:19 -04001413 if (btrfs_header_level(btrfs_buffer_header(cur)) != *level)
1414 WARN_ON(1);
Chris Masone0115992007-06-19 16:23:05 -04001415
Chris Mason7518a232007-03-12 12:01:18 -04001416 if (path->slots[*level] >=
Chris Masone20d96d2007-03-22 12:13:20 -04001417 btrfs_header_nritems(btrfs_buffer_header(cur)))
Chris Mason20524f02007-03-10 06:35:47 -05001418 break;
Chris Mason6407bf62007-03-27 06:33:00 -04001419 if (*level == 0) {
1420 ret = drop_leaf_ref(trans, root, cur);
1421 BUG_ON(ret);
1422 break;
1423 }
Chris Masone20d96d2007-03-22 12:13:20 -04001424 blocknr = btrfs_node_blockptr(btrfs_buffer_node(cur),
1425 path->slots[*level]);
Chris Masonb18c6682007-04-17 13:26:50 -04001426 ret = lookup_extent_ref(trans, root, blocknr, 1, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04001427 BUG_ON(ret);
1428 if (refs != 1) {
Chris Mason20524f02007-03-10 06:35:47 -05001429 path->slots[*level]++;
Chris Masone089f052007-03-16 16:20:31 -04001430 ret = btrfs_free_extent(trans, root, blocknr, 1, 1);
Chris Mason20524f02007-03-10 06:35:47 -05001431 BUG_ON(ret);
1432 continue;
1433 }
Chris Mason20524f02007-03-10 06:35:47 -05001434 next = read_tree_block(root, blocknr);
Chris Mason5caf2a02007-04-02 11:20:42 -04001435 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04001436 if (path->nodes[*level-1])
Chris Mason234b63a2007-03-13 10:46:10 -04001437 btrfs_block_release(root, path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05001438 path->nodes[*level-1] = next;
Chris Masone20d96d2007-03-22 12:13:20 -04001439 *level = btrfs_header_level(btrfs_buffer_header(next));
Chris Mason20524f02007-03-10 06:35:47 -05001440 path->slots[*level] = 0;
1441 }
1442out:
Chris Mason5caf2a02007-04-02 11:20:42 -04001443 WARN_ON(*level < 0);
1444 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason6407bf62007-03-27 06:33:00 -04001445 ret = btrfs_free_extent(trans, root,
Chris Mason7eccb902007-04-11 15:53:25 -04001446 bh_blocknr(path->nodes[*level]), 1, 1);
Chris Mason234b63a2007-03-13 10:46:10 -04001447 btrfs_block_release(root, path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05001448 path->nodes[*level] = NULL;
1449 *level += 1;
1450 BUG_ON(ret);
1451 return 0;
1452}
1453
Chris Mason9aca1d52007-03-13 11:09:37 -04001454/*
1455 * helper for dropping snapshots. This walks back up the tree in the path
1456 * to find the first node higher up where we haven't yet gone through
1457 * all the slots
1458 */
Chris Masone089f052007-03-16 16:20:31 -04001459static int walk_up_tree(struct btrfs_trans_handle *trans, struct btrfs_root
1460 *root, struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05001461{
1462 int i;
1463 int slot;
1464 int ret;
Chris Mason234b63a2007-03-13 10:46:10 -04001465 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05001466 slot = path->slots[i];
Chris Masone20d96d2007-03-22 12:13:20 -04001467 if (slot < btrfs_header_nritems(
1468 btrfs_buffer_header(path->nodes[i])) - 1) {
Chris Mason20524f02007-03-10 06:35:47 -05001469 path->slots[i]++;
1470 *level = i;
1471 return 0;
1472 } else {
Chris Masone089f052007-03-16 16:20:31 -04001473 ret = btrfs_free_extent(trans, root,
Chris Mason7eccb902007-04-11 15:53:25 -04001474 bh_blocknr(path->nodes[*level]),
Chris Masone089f052007-03-16 16:20:31 -04001475 1, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04001476 BUG_ON(ret);
Chris Mason234b63a2007-03-13 10:46:10 -04001477 btrfs_block_release(root, path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04001478 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05001479 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05001480 }
1481 }
1482 return 1;
1483}
1484
Chris Mason9aca1d52007-03-13 11:09:37 -04001485/*
1486 * drop the reference count on the tree rooted at 'snap'. This traverses
1487 * the tree freeing any blocks that have a ref count of zero after being
1488 * decremented.
1489 */
Chris Masone089f052007-03-16 16:20:31 -04001490int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masone20d96d2007-03-22 12:13:20 -04001491 *root, struct buffer_head *snap)
Chris Mason20524f02007-03-10 06:35:47 -05001492{
Chris Mason3768f362007-03-13 16:47:54 -04001493 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04001494 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05001495 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04001496 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05001497 int i;
1498 int orig_level;
1499
Chris Mason5caf2a02007-04-02 11:20:42 -04001500 path = btrfs_alloc_path();
1501 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05001502
Chris Masone20d96d2007-03-22 12:13:20 -04001503 level = btrfs_header_level(btrfs_buffer_header(snap));
Chris Mason20524f02007-03-10 06:35:47 -05001504 orig_level = level;
Chris Mason5caf2a02007-04-02 11:20:42 -04001505 path->nodes[level] = snap;
1506 path->slots[level] = 0;
Chris Mason20524f02007-03-10 06:35:47 -05001507 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001508 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04001509 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05001510 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04001511 if (wret < 0)
1512 ret = wret;
1513
Chris Mason5caf2a02007-04-02 11:20:42 -04001514 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04001515 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05001516 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04001517 if (wret < 0)
1518 ret = wret;
Chris Mason20524f02007-03-10 06:35:47 -05001519 }
Chris Mason83e15a22007-03-12 09:03:27 -04001520 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001521 if (path->nodes[i]) {
1522 btrfs_block_release(root, path->nodes[i]);
Chris Mason83e15a22007-03-12 09:03:27 -04001523 }
Chris Mason20524f02007-03-10 06:35:47 -05001524 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001525 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04001526 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05001527}
Chris Mason9078a3e2007-04-26 16:46:15 -04001528
Chris Masonbe744172007-05-06 10:15:01 -04001529static int free_block_group_radix(struct radix_tree_root *radix)
Chris Mason9078a3e2007-04-26 16:46:15 -04001530{
1531 int ret;
1532 struct btrfs_block_group_cache *cache[8];
1533 int i;
1534
1535 while(1) {
Chris Masonbe744172007-05-06 10:15:01 -04001536 ret = radix_tree_gang_lookup(radix, (void **)cache, 0,
Chris Mason9078a3e2007-04-26 16:46:15 -04001537 ARRAY_SIZE(cache));
1538 if (!ret)
1539 break;
1540 for (i = 0; i < ret; i++) {
Chris Masonbe744172007-05-06 10:15:01 -04001541 radix_tree_delete(radix, cache[i]->key.objectid +
Chris Mason9078a3e2007-04-26 16:46:15 -04001542 cache[i]->key.offset - 1);
1543 kfree(cache[i]);
1544 }
1545 }
1546 return 0;
1547}
1548
Chris Masonbe744172007-05-06 10:15:01 -04001549int btrfs_free_block_groups(struct btrfs_fs_info *info)
1550{
1551 int ret;
1552 int ret2;
Chris Masone37c9e62007-05-09 20:13:14 -04001553 unsigned long gang[16];
1554 int i;
Chris Masonbe744172007-05-06 10:15:01 -04001555
1556 ret = free_block_group_radix(&info->block_group_radix);
1557 ret2 = free_block_group_radix(&info->block_group_data_radix);
1558 if (ret)
1559 return ret;
1560 if (ret2)
1561 return ret2;
Chris Masone37c9e62007-05-09 20:13:14 -04001562
1563 while(1) {
1564 ret = find_first_radix_bit(&info->extent_map_radix,
1565 gang, 0, ARRAY_SIZE(gang));
1566 if (!ret)
1567 break;
1568 for (i = 0; i < ret; i++) {
1569 clear_radix_bit(&info->extent_map_radix, gang[i]);
1570 }
1571 }
Chris Masonbe744172007-05-06 10:15:01 -04001572 return 0;
1573}
1574
Chris Mason9078a3e2007-04-26 16:46:15 -04001575int btrfs_read_block_groups(struct btrfs_root *root)
1576{
1577 struct btrfs_path *path;
1578 int ret;
1579 int err = 0;
1580 struct btrfs_block_group_item *bi;
1581 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04001582 struct btrfs_fs_info *info = root->fs_info;
1583 struct radix_tree_root *radix;
Chris Mason9078a3e2007-04-26 16:46:15 -04001584 struct btrfs_key key;
1585 struct btrfs_key found_key;
1586 struct btrfs_leaf *leaf;
Chris Mason84f54cf2007-06-12 07:43:08 -04001587 u64 group_size_blocks;
Chris Mason31f3c992007-04-30 15:25:45 -04001588 u64 used;
Chris Mason9078a3e2007-04-26 16:46:15 -04001589
Chris Mason84f54cf2007-06-12 07:43:08 -04001590 group_size_blocks = BTRFS_BLOCK_GROUP_SIZE >>
1591 root->fs_info->sb->s_blocksize_bits;
Chris Masonbe744172007-05-06 10:15:01 -04001592 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04001593 key.objectid = 0;
1594 key.offset = group_size_blocks;
1595 key.flags = 0;
1596 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
1597
1598 path = btrfs_alloc_path();
1599 if (!path)
1600 return -ENOMEM;
1601
1602 while(1) {
Chris Masonbe744172007-05-06 10:15:01 -04001603 ret = btrfs_search_slot(NULL, info->extent_root,
Chris Mason9078a3e2007-04-26 16:46:15 -04001604 &key, path, 0, 0);
1605 if (ret != 0) {
1606 err = ret;
1607 break;
1608 }
1609 leaf = btrfs_buffer_leaf(path->nodes[0]);
1610 btrfs_disk_key_to_cpu(&found_key,
1611 &leaf->items[path->slots[0]].key);
1612 cache = kmalloc(sizeof(*cache), GFP_NOFS);
1613 if (!cache) {
1614 err = -1;
1615 break;
1616 }
Chris Mason3e1ad542007-05-07 20:03:49 -04001617
Chris Mason9078a3e2007-04-26 16:46:15 -04001618 bi = btrfs_item_ptr(leaf, path->slots[0],
1619 struct btrfs_block_group_item);
Chris Mason1e2677e2007-05-29 16:52:18 -04001620 if (bi->flags & BTRFS_BLOCK_GROUP_DATA) {
1621 radix = &info->block_group_data_radix;
1622 cache->data = 1;
1623 } else {
1624 radix = &info->block_group_radix;
1625 cache->data = 0;
1626 }
1627
Chris Mason9078a3e2007-04-26 16:46:15 -04001628 memcpy(&cache->item, bi, sizeof(*bi));
1629 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason31f3c992007-04-30 15:25:45 -04001630 cache->last_alloc = cache->key.objectid;
1631 cache->first_free = cache->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -04001632 cache->last_prealloc = cache->key.objectid;
Chris Masonbe744172007-05-06 10:15:01 -04001633 cache->pinned = 0;
Chris Masone37c9e62007-05-09 20:13:14 -04001634 cache->cached = 0;
1635
Chris Mason3e1ad542007-05-07 20:03:49 -04001636 cache->radix = radix;
1637
Chris Mason9078a3e2007-04-26 16:46:15 -04001638 key.objectid = found_key.objectid + found_key.offset;
1639 btrfs_release_path(root, path);
Chris Masonbe744172007-05-06 10:15:01 -04001640 ret = radix_tree_insert(radix, found_key.objectid +
Chris Mason9078a3e2007-04-26 16:46:15 -04001641 found_key.offset - 1,
1642 (void *)cache);
1643 BUG_ON(ret);
Chris Mason31f3c992007-04-30 15:25:45 -04001644 used = btrfs_block_group_used(bi);
Chris Mason84f54cf2007-06-12 07:43:08 -04001645 if (used < div_factor(key.offset, 8)) {
Chris Masonbe744172007-05-06 10:15:01 -04001646 radix_tree_tag_set(radix, found_key.objectid +
Chris Mason31f3c992007-04-30 15:25:45 -04001647 found_key.offset - 1,
1648 BTRFS_BLOCK_GROUP_AVAIL);
1649 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001650 if (key.objectid >=
Chris Masonbe744172007-05-06 10:15:01 -04001651 btrfs_super_total_blocks(info->disk_super))
Chris Mason9078a3e2007-04-26 16:46:15 -04001652 break;
1653 }
1654
1655 btrfs_free_path(path);
1656 return 0;
1657}