blob: a366415e03a6769d179390330a79cd01f129329d [file] [log] [blame]
Chris Mason2e635a22007-03-21 11:12:56 -04001#include <linux/module.h>
Chris Masonfec577f2007-02-26 10:40:21 -05002#include "ctree.h"
3#include "disk-io.h"
4#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -04005#include "transaction.h"
Chris Masonfec577f2007-02-26 10:40:21 -05006
Chris Masone089f052007-03-16 16:20:31 -04007static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
8 *orig_root, u64 num_blocks, u64 search_start, u64
Chris Masonbe08c1b2007-05-03 09:06:49 -04009 search_end, struct btrfs_key *ins, int data);
Chris Masone089f052007-03-16 16:20:31 -040010static int finish_current_insert(struct btrfs_trans_handle *trans, struct
11 btrfs_root *extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -040012static int del_pending_extents(struct btrfs_trans_handle *trans, struct
13 btrfs_root *extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -050014
Chris Masonde428b62007-05-18 13:28:27 -040015static 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
Chris Masone37c9e62007-05-09 20:13:14 -040042static 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;
Chris Masonde428b62007-05-18 13:28:27 -040054 u64 limit;
Chris Masone37c9e62007-05-09 20:13:14 -040055 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]--;
Chris Masonde428b62007-05-18 13:28:27 -040077 limit = block_group->key.objectid + block_group->key.offset;
78 reada_extent_leaves(root, path, limit);
Chris Masone37c9e62007-05-09 20:13:14 -040079 while(1) {
80 leaf = btrfs_buffer_leaf(path->nodes[0]);
81 slot = path->slots[0];
82 if (slot >= btrfs_header_nritems(&leaf->header)) {
Chris Masonde428b62007-05-18 13:28:27 -040083 reada_extent_leaves(root, path, limit);
Chris Masone37c9e62007-05-09 20:13:14 -040084 ret = btrfs_next_leaf(root, path);
Chris Masonde428b62007-05-18 13:28:27 -040085 if (ret == 0) {
Chris Masone37c9e62007-05-09 20:13:14 -040086 continue;
Chris Masonde428b62007-05-18 13:28:27 -040087 } else {
Chris Masone37c9e62007-05-09 20:13:14 -040088 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
Chris Masonbe744172007-05-06 10:15:01 -0400137static 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) {
Chris Mason3e1ad542007-05-07 20:03:49 -0400148 if (block_group->key.objectid <= blocknr && blocknr <=
Chris Masonbe744172007-05-06 10:15:01 -0400149 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) {
Chris Mason3e1ad542007-05-07 20:03:49 -0400156 if (block_group->key.objectid <= blocknr && blocknr <=
Chris Masonbe744172007-05-06 10:15:01 -0400157 block_group->key.objectid + block_group->key.offset)
158 return block_group;
159 }
Chris Mason3e1ad542007-05-07 20:03:49 -0400160 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 }
Chris Masonbe744172007-05-06 10:15:01 -0400166 return NULL;
167}
168
Chris Masone37c9e62007-05-09 20:13:14 -0400169static 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,
Chris Masonde428b62007-05-18 13:28:27 -0400221 last + cache->key.offset - 1, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400222 *cache_ret = cache;
223 goto again;
224}
225
Chris Mason31f3c992007-04-30 15:25:45 -0400226struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
227 struct btrfs_block_group_cache
Chris Masonbe744172007-05-06 10:15:01 -0400228 *hint, u64 search_start,
Chris Masonde428b62007-05-18 13:28:27 -0400229 int data, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400230{
231 struct btrfs_block_group_cache *cache[8];
Chris Mason31f3c992007-04-30 15:25:45 -0400232 struct btrfs_block_group_cache *found_group = NULL;
Chris Masoncd1bc462007-04-27 10:08:34 -0400233 struct btrfs_fs_info *info = root->fs_info;
Chris Masonbe744172007-05-06 10:15:01 -0400234 struct radix_tree_root *radix;
Chris Masoncd1bc462007-04-27 10:08:34 -0400235 u64 used;
Chris Mason31f3c992007-04-30 15:25:45 -0400236 u64 last = 0;
237 u64 hint_last;
Chris Masoncd1bc462007-04-27 10:08:34 -0400238 int i;
239 int ret;
Chris Mason31f3c992007-04-30 15:25:45 -0400240 int full_search = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400241 int factor = 8;
242
243 if (!owner)
244 factor = 5;
Chris Masonbe744172007-05-06 10:15:01 -0400245
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 <
Chris Masonde428b62007-05-18 13:28:27 -0400257 (shint->key.offset * factor) / 10) {
Chris Masonbe744172007-05-06 10:15:01 -0400258 return shint;
259 }
260 }
261 }
262 if (hint && hint->data == data) {
Chris Mason31f3c992007-04-30 15:25:45 -0400263 used = btrfs_block_group_used(&hint->item);
Chris Masonde428b62007-05-18 13:28:27 -0400264 if (used + hint->pinned < (hint->key.offset * factor) / 10) {
Chris Mason31f3c992007-04-30 15:25:45 -0400265 return hint;
266 }
Chris Masonbe744172007-05-06 10:15:01 -0400267 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 }
Chris Mason8d7be552007-05-10 11:24:42 -0400273 last = hint->key.offset * 3;
Chris Masonbe744172007-05-06 10:15:01 -0400274 if (hint->key.objectid >= last)
Chris Masone37c9e62007-05-09 20:13:14 -0400275 last = max(search_start + hint->key.offset - 1,
276 hint->key.objectid - last);
Chris Masonbe744172007-05-06 10:15:01 -0400277 else
278 last = hint->key.objectid + hint->key.offset;
Chris Mason31f3c992007-04-30 15:25:45 -0400279 hint_last = last;
280 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400281 if (hint)
282 hint_last = max(hint->key.objectid, search_start);
283 else
284 hint_last = search_start;
285
286 last = hint_last;
Chris Mason31f3c992007-04-30 15:25:45 -0400287 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400288 while(1) {
Chris Masonbe744172007-05-06 10:15:01 -0400289 ret = radix_tree_gang_lookup_tag(radix, (void **)cache,
Chris Masoncd1bc462007-04-27 10:08:34 -0400290 last, ARRAY_SIZE(cache),
Chris Mason31f3c992007-04-30 15:25:45 -0400291 BTRFS_BLOCK_GROUP_AVAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -0400292 if (!ret)
293 break;
294 for (i = 0; i < ret; i++) {
Chris Masonbe08c1b2007-05-03 09:06:49 -0400295 last = cache[i]->key.objectid +
296 cache[i]->key.offset;
Chris Masoncd1bc462007-04-27 10:08:34 -0400297 used = btrfs_block_group_used(&cache[i]->item);
Chris Masonbe744172007-05-06 10:15:01 -0400298 if (used + cache[i]->pinned <
Chris Masonde428b62007-05-18 13:28:27 -0400299 (cache[i]->key.offset * factor) / 10) {
Chris Mason31f3c992007-04-30 15:25:45 -0400300 found_group = cache[i];
301 goto found;
Chris Masoncd1bc462007-04-27 10:08:34 -0400302 }
Chris Masonbe744172007-05-06 10:15:01 -0400303 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 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400309 }
Chris Masonde428b62007-05-18 13:28:27 -0400310 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400311 }
Chris Mason31f3c992007-04-30 15:25:45 -0400312 last = hint_last;
313again:
Chris Masoncd1bc462007-04-27 10:08:34 -0400314 while(1) {
Chris Masonbe744172007-05-06 10:15:01 -0400315 ret = radix_tree_gang_lookup(radix, (void **)cache,
316 last, ARRAY_SIZE(cache));
Chris Masoncd1bc462007-04-27 10:08:34 -0400317 if (!ret)
318 break;
319 for (i = 0; i < ret; i++) {
Chris Masonbe08c1b2007-05-03 09:06:49 -0400320 last = cache[i]->key.objectid +
321 cache[i]->key.offset;
Chris Masoncd1bc462007-04-27 10:08:34 -0400322 used = btrfs_block_group_used(&cache[i]->item);
Chris Masonbe744172007-05-06 10:15:01 -0400323 if (used + cache[i]->pinned < cache[i]->key.offset) {
Chris Mason31f3c992007-04-30 15:25:45 -0400324 found_group = cache[i];
325 goto found;
Chris Masoncd1bc462007-04-27 10:08:34 -0400326 }
Chris Masonbe744172007-05-06 10:15:01 -0400327 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 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400333 }
Chris Masonde428b62007-05-18 13:28:27 -0400334 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400335 }
Chris Mason31f3c992007-04-30 15:25:45 -0400336 if (!full_search) {
Chris Masonde428b62007-05-18 13:28:27 -0400337printk("find block group doing full search data %d start %Lu\n", data, search_start);
Chris Masonbe744172007-05-06 10:15:01 -0400338 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400339 full_search = 1;
340 goto again;
341 }
Chris Mason31f3c992007-04-30 15:25:45 -0400342 if (!found_group) {
Chris Masonde428b62007-05-18 13:28:27 -0400343printk("find block group bailing to zero data %d\n", data);
Chris Masonbe744172007-05-06 10:15:01 -0400344 ret = radix_tree_gang_lookup(radix,
Chris Mason31f3c992007-04-30 15:25:45 -0400345 (void **)&found_group, 0, 1);
346 BUG_ON(ret != 1);
347 }
Chris Masonbe744172007-05-06 10:15:01 -0400348found:
Chris Mason31f3c992007-04-30 15:25:45 -0400349 return found_group;
Chris Masoncd1bc462007-04-27 10:08:34 -0400350}
351
Chris Masonb18c6682007-04-17 13:26:50 -0400352int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
353 struct btrfs_root *root,
354 u64 blocknr, u64 num_blocks)
Chris Mason02217ed2007-03-02 16:08:05 -0500355{
Chris Mason5caf2a02007-04-02 11:20:42 -0400356 struct btrfs_path *path;
Chris Mason02217ed2007-03-02 16:08:05 -0500357 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400358 struct btrfs_key key;
Chris Mason234b63a2007-03-13 10:46:10 -0400359 struct btrfs_leaf *l;
360 struct btrfs_extent_item *item;
Chris Masone2fa7222007-03-12 16:22:34 -0400361 struct btrfs_key ins;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400362 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500363
Chris Mason9f5fae22007-03-20 14:38:32 -0400364 find_free_extent(trans, root->fs_info->extent_root, 0, 0, (u64)-1,
Chris Masonbe08c1b2007-05-03 09:06:49 -0400365 &ins, 0);
Chris Mason5caf2a02007-04-02 11:20:42 -0400366 path = btrfs_alloc_path();
367 BUG_ON(!path);
368 btrfs_init_path(path);
Chris Mason02217ed2007-03-02 16:08:05 -0500369 key.objectid = blocknr;
370 key.flags = 0;
Chris Mason62e27492007-03-15 12:56:47 -0400371 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason6407bf62007-03-27 06:33:00 -0400372 key.offset = num_blocks;
Chris Mason5caf2a02007-04-02 11:20:42 -0400373 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400374 0, 1);
Chris Masona429e512007-04-18 16:15:28 -0400375 if (ret != 0) {
376printk("can't find block %Lu %Lu\n", blocknr, num_blocks);
Chris Masona28ec192007-03-06 20:08:01 -0500377 BUG();
Chris Masona429e512007-04-18 16:15:28 -0400378 }
Chris Mason02217ed2007-03-02 16:08:05 -0500379 BUG_ON(ret != 0);
Chris Mason5caf2a02007-04-02 11:20:42 -0400380 l = btrfs_buffer_leaf(path->nodes[0]);
381 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Masoncf27e1e2007-03-13 09:49:06 -0400382 refs = btrfs_extent_refs(item);
383 btrfs_set_extent_refs(item, refs + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -0400384 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masona28ec192007-03-06 20:08:01 -0500385
Chris Mason5caf2a02007-04-02 11:20:42 -0400386 btrfs_release_path(root->fs_info->extent_root, path);
387 btrfs_free_path(path);
Chris Mason9f5fae22007-03-20 14:38:32 -0400388 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400389 del_pending_extents(trans, root->fs_info->extent_root);
Chris Mason02217ed2007-03-02 16:08:05 -0500390 return 0;
391}
392
Chris Masonb18c6682007-04-17 13:26:50 -0400393static int lookup_extent_ref(struct btrfs_trans_handle *trans,
394 struct btrfs_root *root, u64 blocknr,
395 u64 num_blocks, u32 *refs)
Chris Masona28ec192007-03-06 20:08:01 -0500396{
Chris Mason5caf2a02007-04-02 11:20:42 -0400397 struct btrfs_path *path;
Chris Masona28ec192007-03-06 20:08:01 -0500398 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400399 struct btrfs_key key;
Chris Mason234b63a2007-03-13 10:46:10 -0400400 struct btrfs_leaf *l;
401 struct btrfs_extent_item *item;
Chris Mason5caf2a02007-04-02 11:20:42 -0400402
403 path = btrfs_alloc_path();
404 btrfs_init_path(path);
Chris Masona28ec192007-03-06 20:08:01 -0500405 key.objectid = blocknr;
Chris Mason6407bf62007-03-27 06:33:00 -0400406 key.offset = num_blocks;
Chris Mason62e27492007-03-15 12:56:47 -0400407 key.flags = 0;
408 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
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, 0);
Chris Masona28ec192007-03-06 20:08:01 -0500411 if (ret != 0)
412 BUG();
Chris Mason5caf2a02007-04-02 11:20:42 -0400413 l = btrfs_buffer_leaf(path->nodes[0]);
414 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Masoncf27e1e2007-03-13 09:49:06 -0400415 *refs = btrfs_extent_refs(item);
Chris Mason5caf2a02007-04-02 11:20:42 -0400416 btrfs_release_path(root->fs_info->extent_root, path);
417 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -0500418 return 0;
419}
420
Chris Masonc5739bb2007-04-10 09:27:04 -0400421int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
422 struct btrfs_root *root)
423{
Chris Masonb18c6682007-04-17 13:26:50 -0400424 return btrfs_inc_extent_ref(trans, root, bh_blocknr(root->node), 1);
Chris Masonc5739bb2007-04-10 09:27:04 -0400425}
426
Chris Masone089f052007-03-16 16:20:31 -0400427int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Masone20d96d2007-03-22 12:13:20 -0400428 struct buffer_head *buf)
Chris Mason02217ed2007-03-02 16:08:05 -0500429{
430 u64 blocknr;
Chris Masone20d96d2007-03-22 12:13:20 -0400431 struct btrfs_node *buf_node;
Chris Mason6407bf62007-03-27 06:33:00 -0400432 struct btrfs_leaf *buf_leaf;
433 struct btrfs_disk_key *key;
434 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -0500435 int i;
Chris Mason6407bf62007-03-27 06:33:00 -0400436 int leaf;
437 int ret;
Chris Masona28ec192007-03-06 20:08:01 -0500438
Chris Mason3768f362007-03-13 16:47:54 -0400439 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500440 return 0;
Chris Masone20d96d2007-03-22 12:13:20 -0400441 buf_node = btrfs_buffer_node(buf);
Chris Mason6407bf62007-03-27 06:33:00 -0400442 leaf = btrfs_is_leaf(buf_node);
443 buf_leaf = btrfs_buffer_leaf(buf);
Chris Masone20d96d2007-03-22 12:13:20 -0400444 for (i = 0; i < btrfs_header_nritems(&buf_node->header); i++) {
Chris Mason6407bf62007-03-27 06:33:00 -0400445 if (leaf) {
Chris Mason3a686372007-05-24 13:35:57 -0400446 u64 disk_blocknr;
Chris Mason6407bf62007-03-27 06:33:00 -0400447 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);
Chris Mason236454d2007-04-19 13:37:44 -0400452 if (btrfs_file_extent_type(fi) ==
453 BTRFS_FILE_EXTENT_INLINE)
454 continue;
Chris Mason3a686372007-05-24 13:35:57 -0400455 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,
Chris Mason6407bf62007-03-27 06:33:00 -0400459 btrfs_file_extent_disk_num_blocks(fi));
460 BUG_ON(ret);
461 } else {
462 blocknr = btrfs_node_blockptr(buf_node, i);
Chris Masonb18c6682007-04-17 13:26:50 -0400463 ret = btrfs_inc_extent_ref(trans, root, blocknr, 1);
Chris Mason6407bf62007-03-27 06:33:00 -0400464 BUG_ON(ret);
465 }
Chris Mason02217ed2007-03-02 16:08:05 -0500466 }
467 return 0;
468}
469
Chris Mason9078a3e2007-04-26 16:46:15 -0400470static 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
Chris Masonbe08c1b2007-05-03 09:06:49 -0400481 find_free_extent(trans, extent_root, 0, 0, (u64)-1, &ins, 0);
Chris Mason9078a3e2007-04-26 16:46:15 -0400482 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;
Chris Masonbe744172007-05-06 10:15:01 -0400496 if (cache->data)
497 cache->last_alloc = cache->first_free;
Chris Mason9078a3e2007-04-26 16:46:15 -0400498 return 0;
499
500}
501
Chris Masonbe744172007-05-06 10:15:01 -0400502static int write_dirty_block_radix(struct btrfs_trans_handle *trans,
503 struct btrfs_root *root,
504 struct radix_tree_root *radix)
Chris Mason9078a3e2007-04-26 16:46:15 -0400505{
506 struct btrfs_block_group_cache *cache[8];
507 int ret;
508 int err = 0;
509 int werr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -0400510 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
Chris Masonbe744172007-05-06 10:15:01 -0400537int 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
Chris Mason9078a3e2007-04-26 16:46:15 -0400553static int update_block_group(struct btrfs_trans_handle *trans,
554 struct btrfs_root *root,
Chris Masone37c9e62007-05-09 20:13:14 -0400555 u64 blocknr, u64 num, int alloc, int mark_free)
Chris Mason9078a3e2007-04-26 16:46:15 -0400556{
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;
Chris Masone37c9e62007-05-09 20:13:14 -0400562 u64 i;
Chris Mason3e1ad542007-05-07 20:03:49 -0400563
Chris Mason9078a3e2007-04-26 16:46:15 -0400564 while(total) {
Chris Mason3e1ad542007-05-07 20:03:49 -0400565 cache = lookup_block_group(info, blocknr);
566 if (!cache) {
Chris Masoncd1bc462007-04-27 10:08:34 -0400567 printk(KERN_CRIT "blocknr %Lu lookup failed\n",
568 blocknr);
Chris Mason9078a3e2007-04-26 16:46:15 -0400569 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -0400570 }
Chris Mason9078a3e2007-04-26 16:46:15 -0400571 block_in_group = blocknr - cache->key.objectid;
572 WARN_ON(block_in_group > cache->key.offset);
Chris Mason3e1ad542007-05-07 20:03:49 -0400573 radix_tree_tag_set(cache->radix, cache->key.objectid +
Chris Masonbe744172007-05-06 10:15:01 -0400574 cache->key.offset - 1,
Chris Mason9078a3e2007-04-26 16:46:15 -0400575 BTRFS_BLOCK_GROUP_DIRTY);
576
577 old_val = btrfs_block_group_used(&cache->item);
578 num = min(total, cache->key.offset - block_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -0400579 if (alloc) {
Chris Mason9078a3e2007-04-26 16:46:15 -0400580 old_val += num;
Chris Masoncd1bc462007-04-27 10:08:34 -0400581 if (blocknr > cache->last_alloc)
582 cache->last_alloc = blocknr;
Chris Masone37c9e62007-05-09 20:13:14 -0400583 if (!cache->data) {
584 for (i = 0; i < num; i++) {
585 clear_radix_bit(&info->extent_map_radix,
586 blocknr + i);
587 }
588 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400589 } else {
Chris Mason9078a3e2007-04-26 16:46:15 -0400590 old_val -= num;
Chris Masoncd1bc462007-04-27 10:08:34 -0400591 if (blocknr < cache->first_free)
592 cache->first_free = blocknr;
Chris Masone37c9e62007-05-09 20:13:14 -0400593 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 }
Chris Masonde428b62007-05-18 13:28:27 -0400599 if (old_val < (cache->key.offset * 5) / 10 &&
600 old_val + num >= (cache->key.offset * 5) / 10) {
Chris Masone37c9e62007-05-09 20:13:14 -0400601printk("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 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400607 }
Chris Mason9078a3e2007-04-26 16:46:15 -0400608 btrfs_set_block_group_used(&cache->item, old_val);
Chris Masone37c9e62007-05-09 20:13:14 -0400609 total -= num;
610 blocknr += num;
Chris Mason9078a3e2007-04-26 16:46:15 -0400611 }
612 return 0;
613}
614
Chris Masonbe08c1b2007-05-03 09:06:49 -0400615static 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
Chris Masone089f052007-03-16 16:20:31 -0400622int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, struct
623 btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -0500624{
Chris Mason8ef97622007-03-26 10:15:30 -0400625 unsigned long gang[8];
Chris Masonbe08c1b2007-05-03 09:06:49 -0400626 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonbe744172007-05-06 10:15:01 -0400627 struct btrfs_block_group_cache *block_group;
Chris Mason88fd1462007-03-16 08:56:18 -0400628 u64 first = 0;
Chris Masona28ec192007-03-06 20:08:01 -0500629 int ret;
630 int i;
Chris Mason8ef97622007-03-26 10:15:30 -0400631 struct radix_tree_root *pinned_radix = &root->fs_info->pinned_radix;
Chris Masone37c9e62007-05-09 20:13:14 -0400632 struct radix_tree_root *extent_radix = &root->fs_info->extent_map_radix;
Chris Masona28ec192007-03-06 20:08:01 -0500633
634 while(1) {
Chris Masone37c9e62007-05-09 20:13:14 -0400635 ret = find_first_radix_bit(pinned_radix, gang, 0,
Chris Mason8ef97622007-03-26 10:15:30 -0400636 ARRAY_SIZE(gang));
Chris Masona28ec192007-03-06 20:08:01 -0500637 if (!ret)
638 break;
Chris Mason88fd1462007-03-16 08:56:18 -0400639 if (!first)
Chris Mason8ef97622007-03-26 10:15:30 -0400640 first = gang[0];
Chris Mason0579da42007-03-07 16:15:30 -0500641 for (i = 0; i < ret; i++) {
Chris Mason8ef97622007-03-26 10:15:30 -0400642 clear_radix_bit(pinned_radix, gang[i]);
Chris Masonbe744172007-05-06 10:15:01 -0400643 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];
Chris Masone37c9e62007-05-09 20:13:14 -0400650 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]);
Chris Masonbe744172007-05-06 10:15:01 -0400654 }
Chris Masonbe08c1b2007-05-03 09:06:49 -0400655 try_remove_page(btree_inode->i_mapping,
656 gang[i] << (PAGE_CACHE_SHIFT -
657 btree_inode->i_blkbits));
Chris Mason0579da42007-03-07 16:15:30 -0500658 }
Chris Masona28ec192007-03-06 20:08:01 -0500659 }
660 return 0;
661}
662
Chris Masone089f052007-03-16 16:20:31 -0400663static int finish_current_insert(struct btrfs_trans_handle *trans, struct
664 btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -0500665{
Chris Masone2fa7222007-03-12 16:22:34 -0400666 struct btrfs_key ins;
Chris Mason234b63a2007-03-13 10:46:10 -0400667 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -0500668 int i;
669 int ret;
Chris Mason1261ec42007-03-20 20:35:03 -0400670 u64 super_blocks_used;
671 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Mason037e6392007-03-07 11:50:24 -0500672
Chris Masoncf27e1e2007-03-13 09:49:06 -0400673 btrfs_set_extent_refs(&extent_item, 1);
Chris Mason037e6392007-03-07 11:50:24 -0500674 ins.offset = 1;
675 ins.flags = 0;
Chris Mason62e27492007-03-15 12:56:47 -0400676 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5d0c3e62007-04-23 17:01:05 -0400677 btrfs_set_extent_owner(&extent_item, extent_root->root_key.objectid);
Chris Mason037e6392007-03-07 11:50:24 -0500678
Chris Masonf2458e12007-04-25 15:52:25 -0400679 for (i = 0; i < extent_root->fs_info->extent_tree_insert_nr; i++) {
680 ins.objectid = extent_root->fs_info->extent_tree_insert[i];
Chris Mason1261ec42007-03-20 20:35:03 -0400681 super_blocks_used = btrfs_super_blocks_used(info->disk_super);
682 btrfs_set_super_blocks_used(info->disk_super,
683 super_blocks_used + 1);
Chris Masone089f052007-03-16 16:20:31 -0400684 ret = btrfs_insert_item(trans, extent_root, &ins, &extent_item,
685 sizeof(extent_item));
Chris Mason037e6392007-03-07 11:50:24 -0500686 BUG_ON(ret);
687 }
Chris Masonf2458e12007-04-25 15:52:25 -0400688 extent_root->fs_info->extent_tree_insert_nr = 0;
689 extent_root->fs_info->extent_tree_prealloc_nr = 0;
Chris Mason037e6392007-03-07 11:50:24 -0500690 return 0;
691}
692
Chris Mason8ef97622007-03-26 10:15:30 -0400693static int pin_down_block(struct btrfs_root *root, u64 blocknr, int pending)
Chris Masone20d96d2007-03-22 12:13:20 -0400694{
695 int err;
Chris Mason78fae272007-03-25 11:35:08 -0400696 struct btrfs_header *header;
Chris Mason8ef97622007-03-26 10:15:30 -0400697 struct buffer_head *bh;
Chris Mason78fae272007-03-25 11:35:08 -0400698
Chris Masonf4b9aa82007-03-27 11:05:53 -0400699 if (!pending) {
Chris Masond98237b2007-03-28 13:57:48 -0400700 bh = btrfs_find_tree_block(root, blocknr);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400701 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 }
Chris Masonf4b9aa82007-03-27 11:05:53 -0400711 }
Chris Masond6025572007-03-30 14:27:56 -0400712 btrfs_block_release(root, bh);
Chris Mason8ef97622007-03-26 10:15:30 -0400713 }
Chris Mason8ef97622007-03-26 10:15:30 -0400714 err = set_radix_bit(&root->fs_info->pinned_radix, blocknr);
Chris Masonbe744172007-05-06 10:15:01 -0400715 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 }
Chris Masonf4b9aa82007-03-27 11:05:53 -0400721 } else {
722 err = set_radix_bit(&root->fs_info->pending_del_radix, blocknr);
723 }
Chris Masonbe744172007-05-06 10:15:01 -0400724 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -0400725 return 0;
726}
727
Chris Masona28ec192007-03-06 20:08:01 -0500728/*
729 * remove an extent from the root, returns 0 on success
730 */
Chris Masone089f052007-03-16 16:20:31 -0400731static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masone37c9e62007-05-09 20:13:14 -0400732 *root, u64 blocknr, u64 num_blocks, int pin,
733 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -0500734{
Chris Mason5caf2a02007-04-02 11:20:42 -0400735 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -0400736 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -0400737 struct btrfs_fs_info *info = root->fs_info;
738 struct btrfs_root *extent_root = info->extent_root;
Chris Masona28ec192007-03-06 20:08:01 -0500739 int ret;
Chris Mason234b63a2007-03-13 10:46:10 -0400740 struct btrfs_extent_item *ei;
Chris Masone2fa7222007-03-12 16:22:34 -0400741 struct btrfs_key ins;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400742 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500743
Chris Masona28ec192007-03-06 20:08:01 -0500744 key.objectid = blocknr;
745 key.flags = 0;
Chris Mason62e27492007-03-15 12:56:47 -0400746 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masona28ec192007-03-06 20:08:01 -0500747 key.offset = num_blocks;
748
Chris Masonbe08c1b2007-05-03 09:06:49 -0400749 find_free_extent(trans, root, 0, 0, (u64)-1, &ins, 0);
Chris Mason5caf2a02007-04-02 11:20:42 -0400750 path = btrfs_alloc_path();
751 BUG_ON(!path);
752 btrfs_init_path(path);
Chris Mason5f26f772007-04-05 10:38:44 -0400753
Chris Mason5caf2a02007-04-02 11:20:42 -0400754 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
Chris Masona28ec192007-03-06 20:08:01 -0500755 if (ret) {
Chris Mason2e635a22007-03-21 11:12:56 -0400756 printk("failed to find %Lu\n", key.objectid);
Chris Mason234b63a2007-03-13 10:46:10 -0400757 btrfs_print_tree(extent_root, extent_root->node);
Chris Mason2e635a22007-03-21 11:12:56 -0400758 printk("failed to find %Lu\n", key.objectid);
Chris Masona28ec192007-03-06 20:08:01 -0500759 BUG();
760 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400761 ei = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]), path->slots[0],
Chris Mason123abc82007-03-14 14:14:43 -0400762 struct btrfs_extent_item);
Chris Masona28ec192007-03-06 20:08:01 -0500763 BUG_ON(ei->refs == 0);
Chris Masoncf27e1e2007-03-13 09:49:06 -0400764 refs = btrfs_extent_refs(ei) - 1;
765 btrfs_set_extent_refs(ei, refs);
Chris Mason5caf2a02007-04-02 11:20:42 -0400766 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masoncf27e1e2007-03-13 09:49:06 -0400767 if (refs == 0) {
Chris Mason1261ec42007-03-20 20:35:03 -0400768 u64 super_blocks_used;
Chris Mason78fae272007-03-25 11:35:08 -0400769
770 if (pin) {
Chris Mason8ef97622007-03-26 10:15:30 -0400771 ret = pin_down_block(root, blocknr, 0);
Chris Mason78fae272007-03-25 11:35:08 -0400772 BUG_ON(ret);
773 }
774
Chris Mason1261ec42007-03-20 20:35:03 -0400775 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);
Chris Mason5caf2a02007-04-02 11:20:42 -0400778 ret = btrfs_del_item(trans, extent_root, path);
Chris Masona28ec192007-03-06 20:08:01 -0500779 if (ret)
780 BUG();
Chris Masone37c9e62007-05-09 20:13:14 -0400781 ret = update_block_group(trans, root, blocknr, num_blocks, 0,
782 mark_free);
Chris Mason9078a3e2007-04-26 16:46:15 -0400783 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -0500784 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400785 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -0400786 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -0500787 return ret;
788}
789
790/*
Chris Masonfec577f2007-02-26 10:40:21 -0500791 * find all the blocks marked as pending in the radix tree and remove
792 * them from the extent map
793 */
Chris Masone089f052007-03-16 16:20:31 -0400794static int del_pending_extents(struct btrfs_trans_handle *trans, struct
795 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -0500796{
797 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -0400798 int wret;
799 int err = 0;
Chris Mason8ef97622007-03-26 10:15:30 -0400800 unsigned long gang[4];
Chris Masonfec577f2007-02-26 10:40:21 -0500801 int i;
Chris Mason8ef97622007-03-26 10:15:30 -0400802 struct radix_tree_root *pending_radix;
803 struct radix_tree_root *pinned_radix;
Chris Masonbe744172007-05-06 10:15:01 -0400804 struct btrfs_block_group_cache *cache;
Chris Mason8ef97622007-03-26 10:15:30 -0400805
806 pending_radix = &extent_root->fs_info->pending_del_radix;
807 pinned_radix = &extent_root->fs_info->pinned_radix;
Chris Masonfec577f2007-02-26 10:40:21 -0500808
809 while(1) {
Chris Masone37c9e62007-05-09 20:13:14 -0400810 ret = find_first_radix_bit(pending_radix, gang, 0,
Chris Mason8ef97622007-03-26 10:15:30 -0400811 ARRAY_SIZE(gang));
Chris Masonfec577f2007-02-26 10:40:21 -0500812 if (!ret)
813 break;
814 for (i = 0; i < ret; i++) {
Chris Mason8ef97622007-03-26 10:15:30 -0400815 wret = set_radix_bit(pinned_radix, gang[i]);
Chris Masonbe744172007-05-06 10:15:01 -0400816 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 }
Chris Mason8ef97622007-03-26 10:15:30 -0400827 wret = clear_radix_bit(pending_radix, gang[i]);
828 BUG_ON(wret);
Chris Masond5719762007-03-23 10:01:08 -0400829 wret = __free_extent(trans, extent_root,
Chris Masone37c9e62007-05-09 20:13:14 -0400830 gang[i], 1, 0, 0);
Chris Masone20d96d2007-03-22 12:13:20 -0400831 if (wret)
832 err = wret;
Chris Masonfec577f2007-02-26 10:40:21 -0500833 }
834 }
Chris Masone20d96d2007-03-22 12:13:20 -0400835 return err;
Chris Masonfec577f2007-02-26 10:40:21 -0500836}
837
838/*
839 * remove an extent from the root, returns 0 on success
840 */
Chris Masone089f052007-03-16 16:20:31 -0400841int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
842 *root, u64 blocknr, u64 num_blocks, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -0500843{
Chris Mason9f5fae22007-03-20 14:38:32 -0400844 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -0500845 int pending_ret;
846 int ret;
Chris Masona28ec192007-03-06 20:08:01 -0500847
848 if (root == extent_root) {
Chris Mason8ef97622007-03-26 10:15:30 -0400849 pin_down_block(root, blocknr, 1);
Chris Masona28ec192007-03-06 20:08:01 -0500850 return 0;
851 }
Chris Masone37c9e62007-05-09 20:13:14 -0400852 ret = __free_extent(trans, root, blocknr, num_blocks, pin, pin == 0);
Chris Masone20d96d2007-03-22 12:13:20 -0400853 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -0500854 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
Chris Mason62e27492007-03-15 12:56:47 -0400861 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -0500862 * ins->offset == number of blocks
863 * Any available blocks before search_start are skipped.
864 */
Chris Masone089f052007-03-16 16:20:31 -0400865static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
866 *orig_root, u64 num_blocks, u64 search_start, u64
Chris Masonbe08c1b2007-05-03 09:06:49 -0400867 search_end, struct btrfs_key *ins, int data)
Chris Masonfec577f2007-02-26 10:40:21 -0500868{
Chris Mason5caf2a02007-04-02 11:20:42 -0400869 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -0400870 struct btrfs_key key;
Chris Masonfec577f2007-02-26 10:40:21 -0500871 int ret;
872 u64 hole_size = 0;
873 int slot = 0;
Chris Masone20d96d2007-03-22 12:13:20 -0400874 u64 last_block = 0;
Chris Mason037e6392007-03-07 11:50:24 -0500875 u64 test_block;
Chris Masonbe744172007-05-06 10:15:01 -0400876 u64 orig_search_start = search_start;
Chris Masonfec577f2007-02-26 10:40:21 -0500877 int start_found;
Chris Mason234b63a2007-03-13 10:46:10 -0400878 struct btrfs_leaf *l;
Chris Mason9f5fae22007-03-20 14:38:32 -0400879 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -0400880 struct btrfs_fs_info *info = root->fs_info;
Chris Mason0579da42007-03-07 16:15:30 -0500881 int total_needed = num_blocks;
Chris Masonf2458e12007-04-25 15:52:25 -0400882 int total_found = 0;
883 int fill_prealloc = 0;
Chris Masone20d96d2007-03-22 12:13:20 -0400884 int level;
Chris Masonbe08c1b2007-05-03 09:06:49 -0400885 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -0400886 int full_scan = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400887 u64 limit;
Chris Masonfec577f2007-02-26 10:40:21 -0500888
Chris Masonb1a4d962007-04-04 15:27:52 -0400889 path = btrfs_alloc_path();
890 ins->flags = 0;
891 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
892
Chris Masone20d96d2007-03-22 12:13:20 -0400893 level = btrfs_header_level(btrfs_buffer_header(root->node));
Chris Masonf2458e12007-04-25 15:52:25 -0400894 if (num_blocks == 0) {
895 fill_prealloc = 1;
896 num_blocks = 1;
Chris Mason308535a2007-04-28 15:17:08 -0400897 total_needed = (min(level + 1, BTRFS_MAX_LEVEL) + 2) * 3;
Chris Masonf2458e12007-04-25 15:52:25 -0400898 }
Chris Mason3e1ad542007-05-07 20:03:49 -0400899 if (search_end == (u64)-1)
900 search_end = btrfs_super_total_blocks(info->disk_super);
Chris Masonbe744172007-05-06 10:15:01 -0400901 if (search_start) {
902 block_group = lookup_block_group(info, search_start);
903 block_group = btrfs_find_block_group(root, block_group,
Chris Masonde428b62007-05-18 13:28:27 -0400904 search_start, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -0400905 } else {
906 block_group = btrfs_find_block_group(root,
907 trans->block_group, 0,
Chris Masonde428b62007-05-18 13:28:27 -0400908 data, 1);
Chris Masonbe744172007-05-06 10:15:01 -0400909 }
910
911check_failed:
Chris Mason3e1ad542007-05-07 20:03:49 -0400912 if (!full_scan && block_group->data != data)
Chris Masonbe744172007-05-06 10:15:01 -0400913 WARN_ON(1);
Chris Masone37c9e62007-05-09 20:13:14 -0400914
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
Chris Mason5caf2a02007-04-02 11:20:42 -0400921 btrfs_init_path(path);
Chris Masonfec577f2007-02-26 10:40:21 -0500922 ins->objectid = search_start;
923 ins->offset = 0;
Chris Masonfec577f2007-02-26 10:40:21 -0500924 start_found = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400925
Chris Mason5caf2a02007-04-02 11:20:42 -0400926 ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
Chris Mason0f70abe2007-02-28 16:46:22 -0500927 if (ret < 0)
928 goto error;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500929
Chris Masone37c9e62007-05-09 20:13:14 -0400930 if (path->slots[0] > 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -0400931 path->slots[0]--;
Chris Masone37c9e62007-05-09 20:13:14 -0400932 }
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 }
Chris Mason0579da42007-03-07 16:15:30 -0500953
Chris Masonfec577f2007-02-26 10:40:21 -0500954 while (1) {
Chris Mason5caf2a02007-04-02 11:20:42 -0400955 l = btrfs_buffer_leaf(path->nodes[0]);
956 slot = path->slots[0];
Chris Mason7518a232007-03-12 12:01:18 -0400957 if (slot >= btrfs_header_nritems(&l->header)) {
Chris Masonf2458e12007-04-25 15:52:25 -0400958 if (fill_prealloc) {
959 info->extent_tree_prealloc_nr = 0;
960 total_found = 0;
961 }
Chris Masonde428b62007-05-18 13:28:27 -0400962 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;
Chris Mason5caf2a02007-04-02 11:20:42 -0400968 ret = btrfs_next_leaf(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -0500969 if (ret == 0)
970 continue;
Chris Mason0f70abe2007-02-28 16:46:22 -0500971 if (ret < 0)
972 goto error;
Chris Masonfec577f2007-02-26 10:40:21 -0500973 if (!start_found) {
974 ins->objectid = search_start;
Chris Mason3e1ad542007-05-07 20:03:49 -0400975 ins->offset = search_end - search_start;
Chris Masonfec577f2007-02-26 10:40:21 -0500976 start_found = 1;
977 goto check_pending;
978 }
979 ins->objectid = last_block > search_start ?
980 last_block : search_start;
Chris Mason3e1ad542007-05-07 20:03:49 -0400981 ins->offset = search_end - ins->objectid;
Chris Masonfec577f2007-02-26 10:40:21 -0500982 goto check_pending;
983 }
Chris Masone37c9e62007-05-09 20:13:14 -0400984
Chris Masone2fa7222007-03-12 16:22:34 -0400985 btrfs_disk_key_to_cpu(&key, &l->items[slot].key);
Chris Masone37c9e62007-05-09 20:13:14 -0400986 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;
Chris Mason0579da42007-03-07 16:15:30 -0500995 }
Chris Masonfec577f2007-02-26 10:40:21 -0500996 }
Chris Masone37c9e62007-05-09 20:13:14 -0400997
998 if (btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY)
999 goto next;
1000
Chris Mason0579da42007-03-07 16:15:30 -05001001 start_found = 1;
Chris Masone2fa7222007-03-12 16:22:34 -04001002 last_block = key.objectid + key.offset;
Chris Masonbe744172007-05-06 10:15:01 -04001003 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 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001010next:
Chris Mason5caf2a02007-04-02 11:20:42 -04001011 path->slots[0]++;
Chris Masonde428b62007-05-18 13:28:27 -04001012 cond_resched();
Chris Masonfec577f2007-02-26 10:40:21 -05001013 }
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 */
Chris Mason5caf2a02007-04-02 11:20:42 -04001019 btrfs_release_path(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -05001020 BUG_ON(ins->objectid < search_start);
Chris Masone37c9e62007-05-09 20:13:14 -04001021
Chris Mason3e1ad542007-05-07 20:03:49 -04001022 if (ins->objectid + num_blocks >= search_end) {
Chris Masonbe744172007-05-06 10:15:01 -04001023 if (full_scan)
Chris Mason06a2f9f2007-04-28 08:48:10 -04001024 return -ENOSPC;
Chris Masonbe744172007-05-06 10:15:01 -04001025 search_start = orig_search_start;
1026 full_scan = 1;
1027 goto new_group;
Chris Mason06a2f9f2007-04-28 08:48:10 -04001028 }
Chris Mason037e6392007-03-07 11:50:24 -05001029 for (test_block = ins->objectid;
Chris Masonf2458e12007-04-25 15:52:25 -04001030 test_block < ins->objectid + num_blocks; test_block++) {
1031 if (test_radix_bit(&info->pinned_radix, test_block)) {
Chris Mason037e6392007-03-07 11:50:24 -05001032 search_start = test_block + 1;
Chris Masonbe744172007-05-06 10:15:01 -04001033 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05001034 }
1035 }
Chris Masonf2458e12007-04-25 15:52:25 -04001036 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;
Chris Masone37c9e62007-05-09 20:13:14 -04001043 WARN_ON(!full_scan);
Chris Masonbe744172007-05-06 10:15:01 -04001044 goto new_group;
Chris Masonf2458e12007-04-25 15:52:25 -04001045 }
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;
Chris Masone37c9e62007-05-09 20:13:14 -04001053 WARN_ON(!full_scan);
Chris Masonbe744172007-05-06 10:15:01 -04001054 goto new_group;
Chris Masonf2458e12007-04-25 15:52:25 -04001055 }
1056 }
1057 if (fill_prealloc) {
1058 int nr;
1059 test_block = ins->objectid;
Chris Masone37c9e62007-05-09 20:13:14 -04001060 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 }
Chris Masonf2458e12007-04-25 15:52:25 -04001065 while(test_block < ins->objectid + ins->offset &&
1066 total_found < total_needed) {
1067 nr = total_needed - total_found - 1;
1068 BUG_ON(nr < 0);
Chris Masoncd1bc462007-04-27 10:08:34 -04001069 info->extent_tree_prealloc[nr] = test_block;
Chris Masonf2458e12007-04-25 15:52:25 -04001070 total_found++;
1071 test_block++;
1072 }
1073 if (total_found < total_needed) {
1074 search_start = test_block;
Chris Masonbe744172007-05-06 10:15:01 -04001075 goto new_group;
Chris Masonf2458e12007-04-25 15:52:25 -04001076 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001077 info->extent_tree_prealloc_nr = total_found;
Chris Masonf2458e12007-04-25 15:52:25 -04001078 }
Chris Masone37c9e62007-05-09 20:13:14 -04001079 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 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001088 }
Chris Mason037e6392007-03-07 11:50:24 -05001089 ins->offset = num_blocks;
Chris Mason5caf2a02007-04-02 11:20:42 -04001090 btrfs_free_path(path);
Chris Masonfec577f2007-02-26 10:40:21 -05001091 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04001092
1093new_group:
Chris Mason3e1ad542007-05-07 20:03:49 -04001094 if (search_start + num_blocks >= search_end) {
Chris Masonbe744172007-05-06 10:15:01 -04001095 search_start = orig_search_start;
Chris Masone37c9e62007-05-09 20:13:14 -04001096printk("doing full scan!\n");
Chris Masonbe744172007-05-06 10:15:01 -04001097 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,
Chris Masonde428b62007-05-18 13:28:27 -04001102 search_start, data, 0);
1103 cond_resched();
Chris Masonbe744172007-05-06 10:15:01 -04001104 goto check_failed;
1105
Chris Mason0f70abe2007-02-28 16:46:22 -05001106error:
Chris Mason5caf2a02007-04-02 11:20:42 -04001107 btrfs_release_path(root, path);
1108 btrfs_free_path(path);
Chris Mason0f70abe2007-02-28 16:46:22 -05001109 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001110}
Chris Masonfec577f2007-02-26 10:40:21 -05001111/*
Chris Masonfec577f2007-02-26 10:40:21 -05001112 * 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 */
Chris Mason4d775672007-04-20 20:23:12 -04001118int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
1119 struct btrfs_root *root, u64 owner,
Chris Masonc62a1922007-04-24 12:07:39 -04001120 u64 num_blocks, u64 search_start,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001121 u64 search_end, struct btrfs_key *ins, int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001122{
1123 int ret;
1124 int pending_ret;
Chris Mason1261ec42007-03-20 20:35:03 -04001125 u64 super_blocks_used;
1126 struct btrfs_fs_info *info = root->fs_info;
1127 struct btrfs_root *extent_root = info->extent_root;
Chris Mason234b63a2007-03-13 10:46:10 -04001128 struct btrfs_extent_item extent_item;
Chris Masonf2458e12007-04-25 15:52:25 -04001129 struct btrfs_key prealloc_key;
Chris Mason037e6392007-03-07 11:50:24 -05001130
Chris Masoncf27e1e2007-03-13 09:49:06 -04001131 btrfs_set_extent_refs(&extent_item, 1);
Chris Mason4d775672007-04-20 20:23:12 -04001132 btrfs_set_extent_owner(&extent_item, owner);
Chris Masonfec577f2007-02-26 10:40:21 -05001133
Chris Mason037e6392007-03-07 11:50:24 -05001134 if (root == extent_root) {
Chris Masonf2458e12007-04-25 15:52:25 -04001135 int nr;
1136 BUG_ON(info->extent_tree_prealloc_nr == 0);
Chris Mason037e6392007-03-07 11:50:24 -05001137 BUG_ON(num_blocks != 1);
Chris Mason037e6392007-03-07 11:50:24 -05001138 ins->offset = 1;
Chris Masonf2458e12007-04-25 15:52:25 -04001139 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;
Chris Mason9078a3e2007-04-26 16:46:15 -04001144 ret = update_block_group(trans, root,
Chris Masone37c9e62007-05-09 20:13:14 -04001145 ins->objectid, ins->offset, 1, 0);
Chris Mason9078a3e2007-04-26 16:46:15 -04001146 BUG_ON(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05001147 return 0;
1148 }
Chris Masone37c9e62007-05-09 20:13:14 -04001149
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) {
Chris Masonde428b62007-05-18 13:28:27 -04001156 ret = find_free_extent(trans, root, 0, 0,
Chris Masone37c9e62007-05-09 20:13:14 -04001157 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 }
Chris Masonf2458e12007-04-25 15:52:25 -04001168 /* do the real allocation */
Chris Masone089f052007-03-16 16:20:31 -04001169 ret = find_free_extent(trans, root, num_blocks, search_start,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001170 search_end, ins, data);
Chris Masone37c9e62007-05-09 20:13:14 -04001171 if (ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001172 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001173 }
Chris Masonfec577f2007-02-26 10:40:21 -05001174
Chris Masone37c9e62007-05-09 20:13:14 -04001175 /*
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;
Chris Mason3e1ad542007-05-07 20:03:49 -04001189
Chris Masone37c9e62007-05-09 20:13:14 -04001190 ret = find_free_extent(trans, root, 0, search_start,
1191 search_end, &prealloc_key, 0);
1192 if (ret) {
1193 return ret;
1194 }
1195 }
Chris Masonf2458e12007-04-25 15:52:25 -04001196
Chris Mason1261ec42007-03-20 20:35:03 -04001197 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);
Chris Masone089f052007-03-16 16:20:31 -04001200 ret = btrfs_insert_item(trans, extent_root, ins, &extent_item,
1201 sizeof(extent_item));
Chris Mason037e6392007-03-07 11:50:24 -05001202
Chris Masone089f052007-03-16 16:20:31 -04001203 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001204 pending_ret = del_pending_extents(trans, extent_root);
Chris Masone37c9e62007-05-09 20:13:14 -04001205 if (ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001206 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001207 }
1208 if (pending_ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001209 return pending_ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001210 }
1211 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0);
Chris Mason037e6392007-03-07 11:50:24 -05001212 return 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001213}
1214
1215/*
1216 * helper function to allocate a block for a given tree
1217 * returns the tree buffer or NULL.
1218 */
Chris Masone20d96d2007-03-22 12:13:20 -04001219struct buffer_head *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Mason31f3c992007-04-30 15:25:45 -04001220 struct btrfs_root *root, u64 hint)
Chris Masonfec577f2007-02-26 10:40:21 -05001221{
Chris Masone2fa7222007-03-12 16:22:34 -04001222 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05001223 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001224 struct buffer_head *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05001225
Chris Mason4d775672007-04-20 20:23:12 -04001226 ret = btrfs_alloc_extent(trans, root, root->root_key.objectid,
Chris Masonde428b62007-05-18 13:28:27 -04001227 1, hint, (unsigned long)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05001228 if (ret) {
1229 BUG();
1230 return NULL;
1231 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001232 BUG_ON(ret);
Chris Masond98237b2007-03-28 13:57:48 -04001233 buf = btrfs_find_create_tree_block(root, ins.objectid);
Chris Masondf2ce342007-03-23 11:00:45 -04001234 set_buffer_uptodate(buf);
Chris Mason090d1872007-05-01 08:53:32 -04001235 set_buffer_checked(buf);
Chris Mason7c4452b2007-04-28 09:29:35 -04001236 set_radix_bit(&trans->transaction->dirty_pages, buf->b_page->index);
Chris Masonfec577f2007-02-26 10:40:21 -05001237 return buf;
1238}
Chris Masona28ec192007-03-06 20:08:01 -05001239
Chris Mason6407bf62007-03-27 06:33:00 -04001240static 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++) {
Chris Mason3a686372007-05-24 13:35:57 -04001254 u64 disk_blocknr;
Chris Mason6407bf62007-03-27 06:33:00 -04001255 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);
Chris Mason236454d2007-04-19 13:37:44 -04001259 if (btrfs_file_extent_type(fi) == BTRFS_FILE_EXTENT_INLINE)
1260 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04001261 /*
1262 * FIXME make sure to insert a trans record that
1263 * repeats the snapshot del on crash
1264 */
Chris Mason3a686372007-05-24 13:35:57 -04001265 disk_blocknr = btrfs_file_extent_disk_blocknr(fi);
1266 if (disk_blocknr == 0)
1267 continue;
1268 ret = btrfs_free_extent(trans, root, disk_blocknr,
Chris Mason6407bf62007-03-27 06:33:00 -04001269 btrfs_file_extent_disk_num_blocks(fi),
1270 0);
1271 BUG_ON(ret);
1272 }
1273 return 0;
1274}
1275
Chris Mason9aca1d52007-03-13 11:09:37 -04001276/*
1277 * helper function for drop_snapshot, this walks down the tree dropping ref
1278 * counts as it goes.
1279 */
Chris Masone089f052007-03-16 16:20:31 -04001280static int walk_down_tree(struct btrfs_trans_handle *trans, struct btrfs_root
1281 *root, struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05001282{
Chris Masone20d96d2007-03-22 12:13:20 -04001283 struct buffer_head *next;
1284 struct buffer_head *cur;
Chris Mason20524f02007-03-10 06:35:47 -05001285 u64 blocknr;
1286 int ret;
1287 u32 refs;
1288
Chris Mason5caf2a02007-04-02 11:20:42 -04001289 WARN_ON(*level < 0);
1290 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Masonb18c6682007-04-17 13:26:50 -04001291 ret = lookup_extent_ref(trans, root, bh_blocknr(path->nodes[*level]),
Chris Mason6407bf62007-03-27 06:33:00 -04001292 1, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05001293 BUG_ON(ret);
1294 if (refs > 1)
1295 goto out;
Chris Mason9aca1d52007-03-13 11:09:37 -04001296 /*
1297 * walk down to the last node level and free all the leaves
1298 */
Chris Mason6407bf62007-03-27 06:33:00 -04001299 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001300 WARN_ON(*level < 0);
1301 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05001302 cur = path->nodes[*level];
Chris Mason2c90e5d2007-04-02 10:50:19 -04001303 if (btrfs_header_level(btrfs_buffer_header(cur)) != *level)
1304 WARN_ON(1);
Chris Mason7518a232007-03-12 12:01:18 -04001305 if (path->slots[*level] >=
Chris Masone20d96d2007-03-22 12:13:20 -04001306 btrfs_header_nritems(btrfs_buffer_header(cur)))
Chris Mason20524f02007-03-10 06:35:47 -05001307 break;
Chris Mason6407bf62007-03-27 06:33:00 -04001308 if (*level == 0) {
1309 ret = drop_leaf_ref(trans, root, cur);
1310 BUG_ON(ret);
1311 break;
1312 }
Chris Masone20d96d2007-03-22 12:13:20 -04001313 blocknr = btrfs_node_blockptr(btrfs_buffer_node(cur),
1314 path->slots[*level]);
Chris Masonb18c6682007-04-17 13:26:50 -04001315 ret = lookup_extent_ref(trans, root, blocknr, 1, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04001316 BUG_ON(ret);
1317 if (refs != 1) {
Chris Mason20524f02007-03-10 06:35:47 -05001318 path->slots[*level]++;
Chris Masone089f052007-03-16 16:20:31 -04001319 ret = btrfs_free_extent(trans, root, blocknr, 1, 1);
Chris Mason20524f02007-03-10 06:35:47 -05001320 BUG_ON(ret);
1321 continue;
1322 }
Chris Mason20524f02007-03-10 06:35:47 -05001323 next = read_tree_block(root, blocknr);
Chris Mason5caf2a02007-04-02 11:20:42 -04001324 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04001325 if (path->nodes[*level-1])
Chris Mason234b63a2007-03-13 10:46:10 -04001326 btrfs_block_release(root, path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05001327 path->nodes[*level-1] = next;
Chris Masone20d96d2007-03-22 12:13:20 -04001328 *level = btrfs_header_level(btrfs_buffer_header(next));
Chris Mason20524f02007-03-10 06:35:47 -05001329 path->slots[*level] = 0;
1330 }
1331out:
Chris Mason5caf2a02007-04-02 11:20:42 -04001332 WARN_ON(*level < 0);
1333 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason6407bf62007-03-27 06:33:00 -04001334 ret = btrfs_free_extent(trans, root,
Chris Mason7eccb902007-04-11 15:53:25 -04001335 bh_blocknr(path->nodes[*level]), 1, 1);
Chris Mason234b63a2007-03-13 10:46:10 -04001336 btrfs_block_release(root, path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05001337 path->nodes[*level] = NULL;
1338 *level += 1;
1339 BUG_ON(ret);
1340 return 0;
1341}
1342
Chris Mason9aca1d52007-03-13 11:09:37 -04001343/*
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 */
Chris Masone089f052007-03-16 16:20:31 -04001348static int walk_up_tree(struct btrfs_trans_handle *trans, struct btrfs_root
1349 *root, struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05001350{
1351 int i;
1352 int slot;
1353 int ret;
Chris Mason234b63a2007-03-13 10:46:10 -04001354 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05001355 slot = path->slots[i];
Chris Masone20d96d2007-03-22 12:13:20 -04001356 if (slot < btrfs_header_nritems(
1357 btrfs_buffer_header(path->nodes[i])) - 1) {
Chris Mason20524f02007-03-10 06:35:47 -05001358 path->slots[i]++;
1359 *level = i;
1360 return 0;
1361 } else {
Chris Masone089f052007-03-16 16:20:31 -04001362 ret = btrfs_free_extent(trans, root,
Chris Mason7eccb902007-04-11 15:53:25 -04001363 bh_blocknr(path->nodes[*level]),
Chris Masone089f052007-03-16 16:20:31 -04001364 1, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04001365 BUG_ON(ret);
Chris Mason234b63a2007-03-13 10:46:10 -04001366 btrfs_block_release(root, path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04001367 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05001368 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05001369 }
1370 }
1371 return 1;
1372}
1373
Chris Mason9aca1d52007-03-13 11:09:37 -04001374/*
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 */
Chris Masone089f052007-03-16 16:20:31 -04001379int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masone20d96d2007-03-22 12:13:20 -04001380 *root, struct buffer_head *snap)
Chris Mason20524f02007-03-10 06:35:47 -05001381{
Chris Mason3768f362007-03-13 16:47:54 -04001382 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04001383 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05001384 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04001385 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05001386 int i;
1387 int orig_level;
1388
Chris Mason5caf2a02007-04-02 11:20:42 -04001389 path = btrfs_alloc_path();
1390 BUG_ON(!path);
1391 btrfs_init_path(path);
Chris Mason20524f02007-03-10 06:35:47 -05001392
Chris Masone20d96d2007-03-22 12:13:20 -04001393 level = btrfs_header_level(btrfs_buffer_header(snap));
Chris Mason20524f02007-03-10 06:35:47 -05001394 orig_level = level;
Chris Mason5caf2a02007-04-02 11:20:42 -04001395 path->nodes[level] = snap;
1396 path->slots[level] = 0;
Chris Mason20524f02007-03-10 06:35:47 -05001397 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001398 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04001399 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05001400 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04001401 if (wret < 0)
1402 ret = wret;
1403
Chris Mason5caf2a02007-04-02 11:20:42 -04001404 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04001405 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05001406 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04001407 if (wret < 0)
1408 ret = wret;
Chris Mason35b7e472007-05-02 15:53:43 -04001409 btrfs_btree_balance_dirty(root);
Chris Mason20524f02007-03-10 06:35:47 -05001410 }
Chris Mason83e15a22007-03-12 09:03:27 -04001411 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001412 if (path->nodes[i]) {
1413 btrfs_block_release(root, path->nodes[i]);
Chris Mason83e15a22007-03-12 09:03:27 -04001414 }
Chris Mason20524f02007-03-10 06:35:47 -05001415 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001416 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04001417 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05001418}
Chris Mason9078a3e2007-04-26 16:46:15 -04001419
Chris Masonbe744172007-05-06 10:15:01 -04001420static int free_block_group_radix(struct radix_tree_root *radix)
Chris Mason9078a3e2007-04-26 16:46:15 -04001421{
1422 int ret;
1423 struct btrfs_block_group_cache *cache[8];
1424 int i;
1425
1426 while(1) {
Chris Masonbe744172007-05-06 10:15:01 -04001427 ret = radix_tree_gang_lookup(radix, (void **)cache, 0,
Chris Mason9078a3e2007-04-26 16:46:15 -04001428 ARRAY_SIZE(cache));
1429 if (!ret)
1430 break;
1431 for (i = 0; i < ret; i++) {
Chris Masonbe744172007-05-06 10:15:01 -04001432 radix_tree_delete(radix, cache[i]->key.objectid +
Chris Mason9078a3e2007-04-26 16:46:15 -04001433 cache[i]->key.offset - 1);
1434 kfree(cache[i]);
1435 }
1436 }
1437 return 0;
1438}
1439
Chris Masonbe744172007-05-06 10:15:01 -04001440int btrfs_free_block_groups(struct btrfs_fs_info *info)
1441{
1442 int ret;
1443 int ret2;
Chris Masone37c9e62007-05-09 20:13:14 -04001444 unsigned long gang[16];
1445 int i;
Chris Masonbe744172007-05-06 10:15:01 -04001446
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;
Chris Masone37c9e62007-05-09 20:13:14 -04001453
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 }
Chris Masonbe744172007-05-06 10:15:01 -04001463 return 0;
1464}
1465
Chris Mason9078a3e2007-04-26 16:46:15 -04001466int 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;
Chris Masonbe744172007-05-06 10:15:01 -04001473 struct btrfs_fs_info *info = root->fs_info;
1474 struct radix_tree_root *radix;
Chris Mason9078a3e2007-04-26 16:46:15 -04001475 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;
Chris Mason31f3c992007-04-30 15:25:45 -04001479 u64 used;
Chris Masonbe744172007-05-06 10:15:01 -04001480 u64 nr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04001481
Chris Masonbe744172007-05-06 10:15:01 -04001482 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04001483 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) {
Chris Masonbe744172007-05-06 10:15:01 -04001493 ret = btrfs_search_slot(NULL, info->extent_root,
Chris Mason9078a3e2007-04-26 16:46:15 -04001494 &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 }
Chris Mason3e1ad542007-05-07 20:03:49 -04001507
Chris Masone37c9e62007-05-09 20:13:14 -04001508 if (nr % 3)
Chris Mason3e1ad542007-05-07 20:03:49 -04001509 radix = &info->block_group_data_radix;
1510 else
1511 radix = &info->block_group_radix;
1512
Chris Mason9078a3e2007-04-26 16:46:15 -04001513 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));
Chris Mason31f3c992007-04-30 15:25:45 -04001517 cache->last_alloc = cache->key.objectid;
1518 cache->first_free = cache->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -04001519 cache->last_prealloc = cache->key.objectid;
Chris Masonbe744172007-05-06 10:15:01 -04001520 cache->pinned = 0;
Chris Masone37c9e62007-05-09 20:13:14 -04001521 cache->cached = 0;
1522
1523 if (nr % 3)
1524 cache->data = 1;
1525 else
1526 cache->data = 0;
Chris Mason3e1ad542007-05-07 20:03:49 -04001527 cache->radix = radix;
1528
Chris Mason9078a3e2007-04-26 16:46:15 -04001529 key.objectid = found_key.objectid + found_key.offset;
1530 btrfs_release_path(root, path);
Chris Masonbe744172007-05-06 10:15:01 -04001531 ret = radix_tree_insert(radix, found_key.objectid +
Chris Mason9078a3e2007-04-26 16:46:15 -04001532 found_key.offset - 1,
1533 (void *)cache);
1534 BUG_ON(ret);
Chris Mason31f3c992007-04-30 15:25:45 -04001535 used = btrfs_block_group_used(bi);
Chris Masonbe744172007-05-06 10:15:01 -04001536 if (used < (key.offset * 8) / 10) {
1537 radix_tree_tag_set(radix, found_key.objectid +
Chris Mason31f3c992007-04-30 15:25:45 -04001538 found_key.offset - 1,
1539 BTRFS_BLOCK_GROUP_AVAIL);
1540 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001541 if (key.objectid >=
Chris Masonbe744172007-05-06 10:15:01 -04001542 btrfs_super_total_blocks(info->disk_super))
Chris Mason9078a3e2007-04-26 16:46:15 -04001543 break;
Chris Masonbe744172007-05-06 10:15:01 -04001544 nr++;
Chris Mason9078a3e2007-04-26 16:46:15 -04001545 }
1546
1547 btrfs_free_path(path);
1548 return 0;
1549}