blob: e0738c65bc5bd32bb18a2fbc2edf47630f3fa980 [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 Mason236454d2007-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;
744 extent_root->fs_info->extent_tree_prealloc_nr = 0;
Chris Mason037e6392007-03-07 11:50:24 -0500745 return 0;
746}
747
Chris Mason8ef97622007-03-26 10:15:30 -0400748static int pin_down_block(struct btrfs_root *root, u64 blocknr, int pending)
Chris Masone20d96d2007-03-22 12:13:20 -0400749{
750 int err;
Chris Mason78fae272007-03-25 11:35:08 -0400751 struct btrfs_header *header;
Chris Mason8ef97622007-03-26 10:15:30 -0400752 struct buffer_head *bh;
Chris Mason78fae272007-03-25 11:35:08 -0400753
Chris Masonf4b9aa82007-03-27 11:05:53 -0400754 if (!pending) {
Chris Masond98237b2007-03-28 13:57:48 -0400755 bh = btrfs_find_tree_block(root, blocknr);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400756 if (bh) {
757 if (buffer_uptodate(bh)) {
758 u64 transid =
759 root->fs_info->running_transaction->transid;
760 header = btrfs_buffer_header(bh);
761 if (btrfs_header_generation(header) ==
762 transid) {
763 btrfs_block_release(root, bh);
764 return 0;
765 }
Chris Masonf4b9aa82007-03-27 11:05:53 -0400766 }
Chris Masond6025572007-03-30 14:27:56 -0400767 btrfs_block_release(root, bh);
Chris Mason8ef97622007-03-26 10:15:30 -0400768 }
Chris Mason8ef97622007-03-26 10:15:30 -0400769 err = set_radix_bit(&root->fs_info->pinned_radix, blocknr);
Chris Masonbe744172007-05-06 10:15:01 -0400770 if (!err) {
771 struct btrfs_block_group_cache *cache;
Chris Mason5276aed2007-06-11 21:33:38 -0400772 cache = btrfs_lookup_block_group(root->fs_info,
773 blocknr);
Chris Masonbe744172007-05-06 10:15:01 -0400774 if (cache)
775 cache->pinned++;
776 }
Chris Masonf4b9aa82007-03-27 11:05:53 -0400777 } else {
778 err = set_radix_bit(&root->fs_info->pending_del_radix, blocknr);
779 }
Chris Masonbe744172007-05-06 10:15:01 -0400780 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -0400781 return 0;
782}
783
Chris Masona28ec192007-03-06 20:08:01 -0500784/*
785 * remove an extent from the root, returns 0 on success
786 */
Chris Masone089f052007-03-16 16:20:31 -0400787static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masone37c9e62007-05-09 20:13:14 -0400788 *root, u64 blocknr, u64 num_blocks, int pin,
789 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -0500790{
Chris Mason5caf2a02007-04-02 11:20:42 -0400791 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -0400792 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -0400793 struct btrfs_fs_info *info = root->fs_info;
794 struct btrfs_root *extent_root = info->extent_root;
Chris Masona28ec192007-03-06 20:08:01 -0500795 int ret;
Chris Mason234b63a2007-03-13 10:46:10 -0400796 struct btrfs_extent_item *ei;
Chris Masone2fa7222007-03-12 16:22:34 -0400797 struct btrfs_key ins;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400798 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500799
Chris Masona28ec192007-03-06 20:08:01 -0500800 key.objectid = blocknr;
801 key.flags = 0;
Chris Mason62e27492007-03-15 12:56:47 -0400802 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masona28ec192007-03-06 20:08:01 -0500803 key.offset = num_blocks;
804
Chris Masonfbdc7622007-05-30 10:22:12 -0400805 find_free_extent(trans, root, 0, 0, (u64)-1, 0, &ins, 0);
Chris Mason5caf2a02007-04-02 11:20:42 -0400806 path = btrfs_alloc_path();
807 BUG_ON(!path);
Chris Mason5f26f772007-04-05 10:38:44 -0400808
Chris Mason5caf2a02007-04-02 11:20:42 -0400809 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
Chris Masona28ec192007-03-06 20:08:01 -0500810 if (ret) {
Chris Masona28ec192007-03-06 20:08:01 -0500811 BUG();
812 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400813 ei = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]), path->slots[0],
Chris Mason123abc82007-03-14 14:14:43 -0400814 struct btrfs_extent_item);
Chris Masona28ec192007-03-06 20:08:01 -0500815 BUG_ON(ei->refs == 0);
Chris Masoncf27e1e2007-03-13 09:49:06 -0400816 refs = btrfs_extent_refs(ei) - 1;
817 btrfs_set_extent_refs(ei, refs);
Chris Mason5caf2a02007-04-02 11:20:42 -0400818 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masoncf27e1e2007-03-13 09:49:06 -0400819 if (refs == 0) {
Chris Mason1261ec42007-03-20 20:35:03 -0400820 u64 super_blocks_used;
Chris Mason78fae272007-03-25 11:35:08 -0400821
822 if (pin) {
Chris Mason8ef97622007-03-26 10:15:30 -0400823 ret = pin_down_block(root, blocknr, 0);
Chris Mason78fae272007-03-25 11:35:08 -0400824 BUG_ON(ret);
825 }
826
Chris Mason1261ec42007-03-20 20:35:03 -0400827 super_blocks_used = btrfs_super_blocks_used(info->disk_super);
828 btrfs_set_super_blocks_used(info->disk_super,
829 super_blocks_used - num_blocks);
Chris Mason5caf2a02007-04-02 11:20:42 -0400830 ret = btrfs_del_item(trans, extent_root, path);
Chris Masona28ec192007-03-06 20:08:01 -0500831 if (ret)
832 BUG();
Chris Masone37c9e62007-05-09 20:13:14 -0400833 ret = update_block_group(trans, root, blocknr, num_blocks, 0,
Chris Mason1e2677e2007-05-29 16:52:18 -0400834 mark_free, 0);
Chris Mason9078a3e2007-04-26 16:46:15 -0400835 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -0500836 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400837 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -0400838 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -0500839 return ret;
840}
841
842/*
Chris Masonfec577f2007-02-26 10:40:21 -0500843 * find all the blocks marked as pending in the radix tree and remove
844 * them from the extent map
845 */
Chris Masone089f052007-03-16 16:20:31 -0400846static int del_pending_extents(struct btrfs_trans_handle *trans, struct
847 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -0500848{
849 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -0400850 int wret;
851 int err = 0;
Chris Mason8ef97622007-03-26 10:15:30 -0400852 unsigned long gang[4];
Chris Masonfec577f2007-02-26 10:40:21 -0500853 int i;
Chris Mason8ef97622007-03-26 10:15:30 -0400854 struct radix_tree_root *pending_radix;
855 struct radix_tree_root *pinned_radix;
Chris Masonbe744172007-05-06 10:15:01 -0400856 struct btrfs_block_group_cache *cache;
Chris Mason8ef97622007-03-26 10:15:30 -0400857
858 pending_radix = &extent_root->fs_info->pending_del_radix;
859 pinned_radix = &extent_root->fs_info->pinned_radix;
Chris Masonfec577f2007-02-26 10:40:21 -0500860
861 while(1) {
Chris Masone37c9e62007-05-09 20:13:14 -0400862 ret = find_first_radix_bit(pending_radix, gang, 0,
Chris Mason8ef97622007-03-26 10:15:30 -0400863 ARRAY_SIZE(gang));
Chris Masonfec577f2007-02-26 10:40:21 -0500864 if (!ret)
865 break;
866 for (i = 0; i < ret; i++) {
Chris Mason8ef97622007-03-26 10:15:30 -0400867 wret = set_radix_bit(pinned_radix, gang[i]);
Chris Masonbe744172007-05-06 10:15:01 -0400868 if (wret == 0) {
Chris Mason5276aed2007-06-11 21:33:38 -0400869 cache =
870 btrfs_lookup_block_group(extent_root->fs_info,
Chris Masonbe744172007-05-06 10:15:01 -0400871 gang[i]);
872 if (cache)
873 cache->pinned++;
874 }
875 if (wret < 0) {
876 printk(KERN_CRIT "set_radix_bit, err %d\n",
877 wret);
878 BUG_ON(wret < 0);
879 }
Chris Mason8ef97622007-03-26 10:15:30 -0400880 wret = clear_radix_bit(pending_radix, gang[i]);
881 BUG_ON(wret);
Chris Masond5719762007-03-23 10:01:08 -0400882 wret = __free_extent(trans, extent_root,
Chris Masone37c9e62007-05-09 20:13:14 -0400883 gang[i], 1, 0, 0);
Chris Masone20d96d2007-03-22 12:13:20 -0400884 if (wret)
885 err = wret;
Chris Masonfec577f2007-02-26 10:40:21 -0500886 }
887 }
Chris Masone20d96d2007-03-22 12:13:20 -0400888 return err;
Chris Masonfec577f2007-02-26 10:40:21 -0500889}
890
891/*
892 * remove an extent from the root, returns 0 on success
893 */
Chris Masone089f052007-03-16 16:20:31 -0400894int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
895 *root, u64 blocknr, u64 num_blocks, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -0500896{
Chris Mason9f5fae22007-03-20 14:38:32 -0400897 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -0500898 int pending_ret;
899 int ret;
Chris Masona28ec192007-03-06 20:08:01 -0500900
901 if (root == extent_root) {
Chris Mason8ef97622007-03-26 10:15:30 -0400902 pin_down_block(root, blocknr, 1);
Chris Masona28ec192007-03-06 20:08:01 -0500903 return 0;
904 }
Chris Masone37c9e62007-05-09 20:13:14 -0400905 ret = __free_extent(trans, root, blocknr, num_blocks, pin, pin == 0);
Chris Masone20d96d2007-03-22 12:13:20 -0400906 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -0500907 return ret ? ret : pending_ret;
908}
909
910/*
911 * walks the btree of allocated extents and find a hole of a given size.
912 * The key ins is changed to record the hole:
913 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -0400914 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -0500915 * ins->offset == number of blocks
916 * Any available blocks before search_start are skipped.
917 */
Chris Masone089f052007-03-16 16:20:31 -0400918static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
919 *orig_root, u64 num_blocks, u64 search_start, u64
Chris Masonfbdc7622007-05-30 10:22:12 -0400920 search_end, u64 hint_block,
921 struct btrfs_key *ins, int data)
Chris Masonfec577f2007-02-26 10:40:21 -0500922{
Chris Mason5caf2a02007-04-02 11:20:42 -0400923 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -0400924 struct btrfs_key key;
Chris Masonfec577f2007-02-26 10:40:21 -0500925 int ret;
926 u64 hole_size = 0;
927 int slot = 0;
Chris Masone20d96d2007-03-22 12:13:20 -0400928 u64 last_block = 0;
Chris Mason037e6392007-03-07 11:50:24 -0500929 u64 test_block;
Chris Masonbe744172007-05-06 10:15:01 -0400930 u64 orig_search_start = search_start;
Chris Masonfec577f2007-02-26 10:40:21 -0500931 int start_found;
Chris Mason234b63a2007-03-13 10:46:10 -0400932 struct btrfs_leaf *l;
Chris Mason9f5fae22007-03-20 14:38:32 -0400933 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -0400934 struct btrfs_fs_info *info = root->fs_info;
Chris Mason0579da42007-03-07 16:15:30 -0500935 int total_needed = num_blocks;
Chris Masonf2458e12007-04-25 15:52:25 -0400936 int total_found = 0;
937 int fill_prealloc = 0;
Chris Masone20d96d2007-03-22 12:13:20 -0400938 int level;
Chris Masonbe08c1b2007-05-03 09:06:49 -0400939 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -0400940 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -0400941 int wrapped = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400942 u64 limit;
Chris Masonfec577f2007-02-26 10:40:21 -0500943
Chris Masonb1a4d962007-04-04 15:27:52 -0400944 path = btrfs_alloc_path();
945 ins->flags = 0;
946 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
947
Chris Masone20d96d2007-03-22 12:13:20 -0400948 level = btrfs_header_level(btrfs_buffer_header(root->node));
Chris Masonf2458e12007-04-25 15:52:25 -0400949 if (num_blocks == 0) {
950 fill_prealloc = 1;
951 num_blocks = 1;
Chris Mason308535a2007-04-28 15:17:08 -0400952 total_needed = (min(level + 1, BTRFS_MAX_LEVEL) + 2) * 3;
Chris Masonf2458e12007-04-25 15:52:25 -0400953 }
Chris Mason3e1ad542007-05-07 20:03:49 -0400954 if (search_end == (u64)-1)
955 search_end = btrfs_super_total_blocks(info->disk_super);
Chris Masonfbdc7622007-05-30 10:22:12 -0400956 if (hint_block) {
Chris Mason5276aed2007-06-11 21:33:38 -0400957 block_group = btrfs_lookup_block_group(info, hint_block);
Chris Masonbe744172007-05-06 10:15:01 -0400958 block_group = btrfs_find_block_group(root, block_group,
Chris Masonfbdc7622007-05-30 10:22:12 -0400959 hint_block, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -0400960 } else {
961 block_group = btrfs_find_block_group(root,
962 trans->block_group, 0,
Chris Masonde428b62007-05-18 13:28:27 -0400963 data, 1);
Chris Masonbe744172007-05-06 10:15:01 -0400964 }
965
966check_failed:
Chris Mason1e2677e2007-05-29 16:52:18 -0400967 if (!block_group->data)
Chris Masone37c9e62007-05-09 20:13:14 -0400968 search_start = find_search_start(root, &block_group,
969 search_start, total_needed);
Chris Masonfbdc7622007-05-30 10:22:12 -0400970 else if (!full_scan)
Chris Masone37c9e62007-05-09 20:13:14 -0400971 search_start = max(block_group->last_alloc, search_start);
972
Chris Mason5caf2a02007-04-02 11:20:42 -0400973 btrfs_init_path(path);
Chris Masonfec577f2007-02-26 10:40:21 -0500974 ins->objectid = search_start;
975 ins->offset = 0;
Chris Masonfec577f2007-02-26 10:40:21 -0500976 start_found = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400977
Chris Mason5caf2a02007-04-02 11:20:42 -0400978 ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
Chris Mason0f70abe2007-02-28 16:46:22 -0500979 if (ret < 0)
980 goto error;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500981
Chris Masone37c9e62007-05-09 20:13:14 -0400982 if (path->slots[0] > 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -0400983 path->slots[0]--;
Chris Masone37c9e62007-05-09 20:13:14 -0400984 }
985
986 l = btrfs_buffer_leaf(path->nodes[0]);
987 btrfs_disk_key_to_cpu(&key, &l->items[path->slots[0]].key);
988 /*
989 * a rare case, go back one key if we hit a block group item
990 * instead of an extent item
991 */
992 if (btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY &&
993 key.objectid + key.offset >= search_start) {
994 ins->objectid = key.objectid;
995 ins->offset = key.offset - 1;
996 btrfs_release_path(root, path);
997 ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
998 if (ret < 0)
999 goto error;
1000
1001 if (path->slots[0] > 0) {
1002 path->slots[0]--;
1003 }
1004 }
Chris Mason0579da42007-03-07 16:15:30 -05001005
Chris Masonfec577f2007-02-26 10:40:21 -05001006 while (1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001007 l = btrfs_buffer_leaf(path->nodes[0]);
1008 slot = path->slots[0];
Chris Mason7518a232007-03-12 12:01:18 -04001009 if (slot >= btrfs_header_nritems(&l->header)) {
Chris Masonf2458e12007-04-25 15:52:25 -04001010 if (fill_prealloc) {
1011 info->extent_tree_prealloc_nr = 0;
1012 total_found = 0;
1013 }
Chris Masonde428b62007-05-18 13:28:27 -04001014 if (start_found)
1015 limit = last_block +
Chris Mason84f54cf2007-06-12 07:43:08 -04001016 (block_group->key.offset >> 1);
Chris Masonde428b62007-05-18 13:28:27 -04001017 else
1018 limit = search_start +
Chris Mason84f54cf2007-06-12 07:43:08 -04001019 (block_group->key.offset >> 1);
Chris Mason5caf2a02007-04-02 11:20:42 -04001020 ret = btrfs_next_leaf(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -05001021 if (ret == 0)
1022 continue;
Chris Mason0f70abe2007-02-28 16:46:22 -05001023 if (ret < 0)
1024 goto error;
Chris Masonfec577f2007-02-26 10:40:21 -05001025 if (!start_found) {
1026 ins->objectid = search_start;
Chris Mason3e1ad542007-05-07 20:03:49 -04001027 ins->offset = search_end - search_start;
Chris Masonfec577f2007-02-26 10:40:21 -05001028 start_found = 1;
1029 goto check_pending;
1030 }
1031 ins->objectid = last_block > search_start ?
1032 last_block : search_start;
Chris Mason3e1ad542007-05-07 20:03:49 -04001033 ins->offset = search_end - ins->objectid;
Chris Masonfec577f2007-02-26 10:40:21 -05001034 goto check_pending;
1035 }
Chris Masone37c9e62007-05-09 20:13:14 -04001036
Chris Masone2fa7222007-03-12 16:22:34 -04001037 btrfs_disk_key_to_cpu(&key, &l->items[slot].key);
Chris Masone37c9e62007-05-09 20:13:14 -04001038 if (key.objectid >= search_start && key.objectid > last_block &&
1039 start_found) {
1040 if (last_block < search_start)
1041 last_block = search_start;
1042 hole_size = key.objectid - last_block;
1043 if (hole_size >= num_blocks) {
1044 ins->objectid = last_block;
1045 ins->offset = hole_size;
1046 goto check_pending;
Chris Mason0579da42007-03-07 16:15:30 -05001047 }
Chris Masonfec577f2007-02-26 10:40:21 -05001048 }
Chris Masone37c9e62007-05-09 20:13:14 -04001049
1050 if (btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY)
1051 goto next;
1052
Chris Mason0579da42007-03-07 16:15:30 -05001053 start_found = 1;
Chris Masone2fa7222007-03-12 16:22:34 -04001054 last_block = key.objectid + key.offset;
Chris Masonfbdc7622007-05-30 10:22:12 -04001055 if (!full_scan && last_block >= block_group->key.objectid +
Chris Masonbe744172007-05-06 10:15:01 -04001056 block_group->key.offset) {
1057 btrfs_release_path(root, path);
1058 search_start = block_group->key.objectid +
1059 block_group->key.offset * 2;
1060 goto new_group;
1061 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001062next:
Chris Mason5caf2a02007-04-02 11:20:42 -04001063 path->slots[0]++;
Chris Masonde428b62007-05-18 13:28:27 -04001064 cond_resched();
Chris Masonfec577f2007-02-26 10:40:21 -05001065 }
1066 // FIXME -ENOSPC
1067check_pending:
1068 /* we have to make sure we didn't find an extent that has already
1069 * been allocated by the map tree or the original allocation
1070 */
Chris Mason5caf2a02007-04-02 11:20:42 -04001071 btrfs_release_path(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -05001072 BUG_ON(ins->objectid < search_start);
Chris Masone37c9e62007-05-09 20:13:14 -04001073
Chris Mason3e1ad542007-05-07 20:03:49 -04001074 if (ins->objectid + num_blocks >= search_end) {
Chris Masonfbdc7622007-05-30 10:22:12 -04001075 if (full_scan) {
1076 ret = -ENOSPC;
1077 goto error;
1078 }
Chris Masonbe744172007-05-06 10:15:01 -04001079 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04001080 if (wrapped)
1081 full_scan = 1;
1082 else
1083 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04001084 goto new_group;
Chris Mason06a2f9f2007-04-28 08:48:10 -04001085 }
Chris Mason037e6392007-03-07 11:50:24 -05001086 for (test_block = ins->objectid;
Chris Masonf2458e12007-04-25 15:52:25 -04001087 test_block < ins->objectid + num_blocks; test_block++) {
1088 if (test_radix_bit(&info->pinned_radix, test_block)) {
Chris Mason037e6392007-03-07 11:50:24 -05001089 search_start = test_block + 1;
Chris Masonbe744172007-05-06 10:15:01 -04001090 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05001091 }
1092 }
Chris Masonf2458e12007-04-25 15:52:25 -04001093 if (!fill_prealloc && info->extent_tree_insert_nr) {
1094 u64 last =
1095 info->extent_tree_insert[info->extent_tree_insert_nr - 1];
1096 if (ins->objectid + num_blocks >
1097 info->extent_tree_insert[0] &&
1098 ins->objectid <= last) {
1099 search_start = last + 1;
Chris Masone37c9e62007-05-09 20:13:14 -04001100 WARN_ON(!full_scan);
Chris Masonbe744172007-05-06 10:15:01 -04001101 goto new_group;
Chris Masonf2458e12007-04-25 15:52:25 -04001102 }
1103 }
1104 if (!fill_prealloc && info->extent_tree_prealloc_nr) {
1105 u64 first =
1106 info->extent_tree_prealloc[info->extent_tree_prealloc_nr - 1];
1107 if (ins->objectid + num_blocks > first &&
1108 ins->objectid <= info->extent_tree_prealloc[0]) {
1109 search_start = info->extent_tree_prealloc[0] + 1;
Chris Masone37c9e62007-05-09 20:13:14 -04001110 WARN_ON(!full_scan);
Chris Masonbe744172007-05-06 10:15:01 -04001111 goto new_group;
Chris Masonf2458e12007-04-25 15:52:25 -04001112 }
1113 }
1114 if (fill_prealloc) {
1115 int nr;
1116 test_block = ins->objectid;
Chris Masone37c9e62007-05-09 20:13:14 -04001117 if (test_block - info->extent_tree_prealloc[total_needed - 1] >=
1118 leaf_range(root)) {
1119 total_found = 0;
1120 info->extent_tree_prealloc_nr = total_found;
1121 }
Chris Masonf2458e12007-04-25 15:52:25 -04001122 while(test_block < ins->objectid + ins->offset &&
1123 total_found < total_needed) {
1124 nr = total_needed - total_found - 1;
1125 BUG_ON(nr < 0);
Chris Masoncd1bc462007-04-27 10:08:34 -04001126 info->extent_tree_prealloc[nr] = test_block;
Chris Masonf2458e12007-04-25 15:52:25 -04001127 total_found++;
1128 test_block++;
1129 }
1130 if (total_found < total_needed) {
1131 search_start = test_block;
Chris Masonbe744172007-05-06 10:15:01 -04001132 goto new_group;
Chris Masonf2458e12007-04-25 15:52:25 -04001133 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001134 info->extent_tree_prealloc_nr = total_found;
Chris Masonf2458e12007-04-25 15:52:25 -04001135 }
Chris Masone37c9e62007-05-09 20:13:14 -04001136 if (!data) {
Chris Mason5276aed2007-06-11 21:33:38 -04001137 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Masone37c9e62007-05-09 20:13:14 -04001138 if (block_group) {
1139 if (fill_prealloc)
1140 block_group->last_prealloc =
1141 info->extent_tree_prealloc[total_needed-1];
1142 else
1143 trans->block_group = block_group;
1144 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001145 }
Chris Mason037e6392007-03-07 11:50:24 -05001146 ins->offset = num_blocks;
Chris Mason5caf2a02007-04-02 11:20:42 -04001147 btrfs_free_path(path);
Chris Masonfec577f2007-02-26 10:40:21 -05001148 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04001149
1150new_group:
Chris Mason3e1ad542007-05-07 20:03:49 -04001151 if (search_start + num_blocks >= search_end) {
Chris Masonbe744172007-05-06 10:15:01 -04001152 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04001153 if (full_scan) {
1154 ret = -ENOSPC;
1155 goto error;
1156 }
1157 if (wrapped)
1158 full_scan = 1;
1159 else
1160 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04001161 }
Chris Mason5276aed2007-06-11 21:33:38 -04001162 block_group = btrfs_lookup_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04001163 cond_resched();
Chris Masonbe744172007-05-06 10:15:01 -04001164 if (!full_scan)
1165 block_group = btrfs_find_block_group(root, block_group,
Chris Masonde428b62007-05-18 13:28:27 -04001166 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04001167 goto check_failed;
1168
Chris Mason0f70abe2007-02-28 16:46:22 -05001169error:
Chris Mason5caf2a02007-04-02 11:20:42 -04001170 btrfs_release_path(root, path);
1171 btrfs_free_path(path);
Chris Mason0f70abe2007-02-28 16:46:22 -05001172 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001173}
Chris Masonfec577f2007-02-26 10:40:21 -05001174/*
Chris Masonfec577f2007-02-26 10:40:21 -05001175 * finds a free extent and does all the dirty work required for allocation
1176 * returns the key for the extent through ins, and a tree buffer for
1177 * the first block of the extent through buf.
1178 *
1179 * returns 0 if everything worked, non-zero otherwise.
1180 */
Chris Mason4d775672007-04-20 20:23:12 -04001181int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
1182 struct btrfs_root *root, u64 owner,
Chris Masonfbdc7622007-05-30 10:22:12 -04001183 u64 num_blocks, u64 hint_block,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001184 u64 search_end, struct btrfs_key *ins, int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001185{
1186 int ret;
1187 int pending_ret;
Chris Mason1261ec42007-03-20 20:35:03 -04001188 u64 super_blocks_used;
Chris Masonfbdc7622007-05-30 10:22:12 -04001189 u64 search_start = 0;
Chris Mason1261ec42007-03-20 20:35:03 -04001190 struct btrfs_fs_info *info = root->fs_info;
1191 struct btrfs_root *extent_root = info->extent_root;
Chris Mason234b63a2007-03-13 10:46:10 -04001192 struct btrfs_extent_item extent_item;
Chris Masonf2458e12007-04-25 15:52:25 -04001193 struct btrfs_key prealloc_key;
Chris Mason037e6392007-03-07 11:50:24 -05001194
Chris Masoncf27e1e2007-03-13 09:49:06 -04001195 btrfs_set_extent_refs(&extent_item, 1);
Chris Mason4d775672007-04-20 20:23:12 -04001196 btrfs_set_extent_owner(&extent_item, owner);
Chris Masonfec577f2007-02-26 10:40:21 -05001197
Chris Mason037e6392007-03-07 11:50:24 -05001198 if (root == extent_root) {
Chris Masonf2458e12007-04-25 15:52:25 -04001199 int nr;
1200 BUG_ON(info->extent_tree_prealloc_nr == 0);
Chris Mason037e6392007-03-07 11:50:24 -05001201 BUG_ON(num_blocks != 1);
Chris Mason037e6392007-03-07 11:50:24 -05001202 ins->offset = 1;
Chris Masonf2458e12007-04-25 15:52:25 -04001203 info->extent_tree_prealloc_nr--;
1204 nr = info->extent_tree_prealloc_nr;
1205 ins->objectid = info->extent_tree_prealloc[nr];
1206 info->extent_tree_insert[info->extent_tree_insert_nr++] =
1207 ins->objectid;
Chris Mason9078a3e2007-04-26 16:46:15 -04001208 ret = update_block_group(trans, root,
Chris Mason1e2677e2007-05-29 16:52:18 -04001209 ins->objectid, ins->offset, 1, 0, 0);
Chris Mason9078a3e2007-04-26 16:46:15 -04001210 BUG_ON(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05001211 return 0;
1212 }
Chris Masone37c9e62007-05-09 20:13:14 -04001213
1214 /*
1215 * if we're doing a data allocation, preallocate room in the
1216 * extent tree first. This way the extent tree blocks end up
1217 * in the correct block group.
1218 */
1219 if (data) {
Chris Masonde428b62007-05-18 13:28:27 -04001220 ret = find_free_extent(trans, root, 0, 0,
Chris Masonfbdc7622007-05-30 10:22:12 -04001221 search_end, 0, &prealloc_key, 0);
Chris Masone37c9e62007-05-09 20:13:14 -04001222 if (ret) {
1223 return ret;
1224 }
1225 if (prealloc_key.objectid + prealloc_key.offset >= search_end) {
1226 int nr = info->extent_tree_prealloc_nr;
1227 search_end = info->extent_tree_prealloc[nr - 1] - 1;
1228 } else {
1229 search_start = info->extent_tree_prealloc[0] + 1;
1230 }
1231 }
Chris Masonfbdc7622007-05-30 10:22:12 -04001232 if (hint_block < search_start)
1233 hint_block = search_start;
Chris Masonf2458e12007-04-25 15:52:25 -04001234 /* do the real allocation */
Chris Masone089f052007-03-16 16:20:31 -04001235 ret = find_free_extent(trans, root, num_blocks, search_start,
Chris Masonfbdc7622007-05-30 10:22:12 -04001236 search_end, hint_block, ins, data);
Chris Masone37c9e62007-05-09 20:13:14 -04001237 if (ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001238 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001239 }
Chris Masonfec577f2007-02-26 10:40:21 -05001240
Chris Masone37c9e62007-05-09 20:13:14 -04001241 /*
1242 * if we're doing a metadata allocation, preallocate space in the
1243 * extent tree second. This way, we don't create a tiny hole
1244 * in the allocation map between any unused preallocation blocks
1245 * and the metadata block we're actually allocating. On disk,
1246 * it'll go:
1247 * [block we've allocated], [used prealloc 1], [ unused prealloc ]
1248 * The unused prealloc will get reused the next time around.
1249 */
1250 if (!data) {
1251 if (ins->objectid + ins->offset >= search_end)
1252 search_end = ins->objectid - 1;
1253 else
1254 search_start = ins->objectid + ins->offset;
Chris Mason3e1ad542007-05-07 20:03:49 -04001255
Chris Masonfbdc7622007-05-30 10:22:12 -04001256 if (hint_block < search_start)
1257 hint_block = search_start;
1258
Chris Masone37c9e62007-05-09 20:13:14 -04001259 ret = find_free_extent(trans, root, 0, search_start,
Chris Masonfbdc7622007-05-30 10:22:12 -04001260 search_end, hint_block,
1261 &prealloc_key, 0);
Chris Masone37c9e62007-05-09 20:13:14 -04001262 if (ret) {
1263 return ret;
1264 }
1265 }
Chris Masonf2458e12007-04-25 15:52:25 -04001266
Chris Mason1261ec42007-03-20 20:35:03 -04001267 super_blocks_used = btrfs_super_blocks_used(info->disk_super);
1268 btrfs_set_super_blocks_used(info->disk_super, super_blocks_used +
1269 num_blocks);
Chris Masone089f052007-03-16 16:20:31 -04001270 ret = btrfs_insert_item(trans, extent_root, ins, &extent_item,
1271 sizeof(extent_item));
Chris Mason037e6392007-03-07 11:50:24 -05001272
Chris Masone089f052007-03-16 16:20:31 -04001273 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001274 pending_ret = del_pending_extents(trans, extent_root);
Chris Masone37c9e62007-05-09 20:13:14 -04001275 if (ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001276 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001277 }
1278 if (pending_ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001279 return pending_ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001280 }
Chris Mason1e2677e2007-05-29 16:52:18 -04001281 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0,
1282 data);
Chris Masonfabb5682007-06-07 22:13:21 -04001283 BUG_ON(ret);
Chris Mason037e6392007-03-07 11:50:24 -05001284 return 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001285}
1286
1287/*
1288 * helper function to allocate a block for a given tree
1289 * returns the tree buffer or NULL.
1290 */
Chris Masone20d96d2007-03-22 12:13:20 -04001291struct buffer_head *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Mason31f3c992007-04-30 15:25:45 -04001292 struct btrfs_root *root, u64 hint)
Chris Masonfec577f2007-02-26 10:40:21 -05001293{
Chris Masone2fa7222007-03-12 16:22:34 -04001294 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05001295 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001296 struct buffer_head *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05001297
Chris Mason4d775672007-04-20 20:23:12 -04001298 ret = btrfs_alloc_extent(trans, root, root->root_key.objectid,
Chris Masonde428b62007-05-18 13:28:27 -04001299 1, hint, (unsigned long)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05001300 if (ret) {
1301 BUG();
1302 return NULL;
1303 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001304 BUG_ON(ret);
Chris Masond98237b2007-03-28 13:57:48 -04001305 buf = btrfs_find_create_tree_block(root, ins.objectid);
Chris Masondf2ce342007-03-23 11:00:45 -04001306 set_buffer_uptodate(buf);
Chris Mason090d1872007-05-01 08:53:32 -04001307 set_buffer_checked(buf);
Chris Mason7c4452b2007-04-28 09:29:35 -04001308 set_radix_bit(&trans->transaction->dirty_pages, buf->b_page->index);
Chris Masonfec577f2007-02-26 10:40:21 -05001309 return buf;
1310}
Chris Masona28ec192007-03-06 20:08:01 -05001311
Chris Mason6407bf62007-03-27 06:33:00 -04001312static int drop_leaf_ref(struct btrfs_trans_handle *trans,
1313 struct btrfs_root *root, struct buffer_head *cur)
1314{
1315 struct btrfs_disk_key *key;
1316 struct btrfs_leaf *leaf;
1317 struct btrfs_file_extent_item *fi;
1318 int i;
1319 int nritems;
1320 int ret;
1321
1322 BUG_ON(!btrfs_is_leaf(btrfs_buffer_node(cur)));
1323 leaf = btrfs_buffer_leaf(cur);
1324 nritems = btrfs_header_nritems(&leaf->header);
1325 for (i = 0; i < nritems; i++) {
Chris Mason3a686372007-05-24 13:35:57 -04001326 u64 disk_blocknr;
Chris Mason6407bf62007-03-27 06:33:00 -04001327 key = &leaf->items[i].key;
1328 if (btrfs_disk_key_type(key) != BTRFS_EXTENT_DATA_KEY)
1329 continue;
1330 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason236454d2007-04-19 13:37:44 -04001331 if (btrfs_file_extent_type(fi) == BTRFS_FILE_EXTENT_INLINE)
1332 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04001333 /*
1334 * FIXME make sure to insert a trans record that
1335 * repeats the snapshot del on crash
1336 */
Chris Mason3a686372007-05-24 13:35:57 -04001337 disk_blocknr = btrfs_file_extent_disk_blocknr(fi);
1338 if (disk_blocknr == 0)
1339 continue;
1340 ret = btrfs_free_extent(trans, root, disk_blocknr,
Chris Mason6407bf62007-03-27 06:33:00 -04001341 btrfs_file_extent_disk_num_blocks(fi),
1342 0);
1343 BUG_ON(ret);
1344 }
1345 return 0;
1346}
1347
Chris Mason9aca1d52007-03-13 11:09:37 -04001348/*
1349 * helper function for drop_snapshot, this walks down the tree dropping ref
1350 * counts as it goes.
1351 */
Chris Masone089f052007-03-16 16:20:31 -04001352static int walk_down_tree(struct btrfs_trans_handle *trans, struct btrfs_root
1353 *root, struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05001354{
Chris Masone20d96d2007-03-22 12:13:20 -04001355 struct buffer_head *next;
1356 struct buffer_head *cur;
Chris Mason20524f02007-03-10 06:35:47 -05001357 u64 blocknr;
1358 int ret;
1359 u32 refs;
1360
Chris Mason5caf2a02007-04-02 11:20:42 -04001361 WARN_ON(*level < 0);
1362 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Masonb18c6682007-04-17 13:26:50 -04001363 ret = lookup_extent_ref(trans, root, bh_blocknr(path->nodes[*level]),
Chris Mason6407bf62007-03-27 06:33:00 -04001364 1, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05001365 BUG_ON(ret);
1366 if (refs > 1)
1367 goto out;
Chris Mason9aca1d52007-03-13 11:09:37 -04001368 /*
1369 * walk down to the last node level and free all the leaves
1370 */
Chris Mason6407bf62007-03-27 06:33:00 -04001371 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001372 WARN_ON(*level < 0);
1373 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05001374 cur = path->nodes[*level];
Chris Mason2c90e5d2007-04-02 10:50:19 -04001375 if (btrfs_header_level(btrfs_buffer_header(cur)) != *level)
1376 WARN_ON(1);
Chris Mason7518a232007-03-12 12:01:18 -04001377 if (path->slots[*level] >=
Chris Masone20d96d2007-03-22 12:13:20 -04001378 btrfs_header_nritems(btrfs_buffer_header(cur)))
Chris Mason20524f02007-03-10 06:35:47 -05001379 break;
Chris Mason6407bf62007-03-27 06:33:00 -04001380 if (*level == 0) {
1381 ret = drop_leaf_ref(trans, root, cur);
1382 BUG_ON(ret);
1383 break;
1384 }
Chris Masone20d96d2007-03-22 12:13:20 -04001385 blocknr = btrfs_node_blockptr(btrfs_buffer_node(cur),
1386 path->slots[*level]);
Chris Masonb18c6682007-04-17 13:26:50 -04001387 ret = lookup_extent_ref(trans, root, blocknr, 1, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04001388 BUG_ON(ret);
1389 if (refs != 1) {
Chris Mason20524f02007-03-10 06:35:47 -05001390 path->slots[*level]++;
Chris Masone089f052007-03-16 16:20:31 -04001391 ret = btrfs_free_extent(trans, root, blocknr, 1, 1);
Chris Mason20524f02007-03-10 06:35:47 -05001392 BUG_ON(ret);
1393 continue;
1394 }
Chris Mason20524f02007-03-10 06:35:47 -05001395 next = read_tree_block(root, blocknr);
Chris Mason5caf2a02007-04-02 11:20:42 -04001396 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04001397 if (path->nodes[*level-1])
Chris Mason234b63a2007-03-13 10:46:10 -04001398 btrfs_block_release(root, path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05001399 path->nodes[*level-1] = next;
Chris Masone20d96d2007-03-22 12:13:20 -04001400 *level = btrfs_header_level(btrfs_buffer_header(next));
Chris Mason20524f02007-03-10 06:35:47 -05001401 path->slots[*level] = 0;
1402 }
1403out:
Chris Mason5caf2a02007-04-02 11:20:42 -04001404 WARN_ON(*level < 0);
1405 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason6407bf62007-03-27 06:33:00 -04001406 ret = btrfs_free_extent(trans, root,
Chris Mason7eccb902007-04-11 15:53:25 -04001407 bh_blocknr(path->nodes[*level]), 1, 1);
Chris Mason234b63a2007-03-13 10:46:10 -04001408 btrfs_block_release(root, path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05001409 path->nodes[*level] = NULL;
1410 *level += 1;
1411 BUG_ON(ret);
1412 return 0;
1413}
1414
Chris Mason9aca1d52007-03-13 11:09:37 -04001415/*
1416 * helper for dropping snapshots. This walks back up the tree in the path
1417 * to find the first node higher up where we haven't yet gone through
1418 * all the slots
1419 */
Chris Masone089f052007-03-16 16:20:31 -04001420static int walk_up_tree(struct btrfs_trans_handle *trans, struct btrfs_root
1421 *root, struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05001422{
1423 int i;
1424 int slot;
1425 int ret;
Chris Mason234b63a2007-03-13 10:46:10 -04001426 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05001427 slot = path->slots[i];
Chris Masone20d96d2007-03-22 12:13:20 -04001428 if (slot < btrfs_header_nritems(
1429 btrfs_buffer_header(path->nodes[i])) - 1) {
Chris Mason20524f02007-03-10 06:35:47 -05001430 path->slots[i]++;
1431 *level = i;
1432 return 0;
1433 } else {
Chris Masone089f052007-03-16 16:20:31 -04001434 ret = btrfs_free_extent(trans, root,
Chris Mason7eccb902007-04-11 15:53:25 -04001435 bh_blocknr(path->nodes[*level]),
Chris Masone089f052007-03-16 16:20:31 -04001436 1, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04001437 BUG_ON(ret);
Chris Mason234b63a2007-03-13 10:46:10 -04001438 btrfs_block_release(root, path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04001439 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05001440 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05001441 }
1442 }
1443 return 1;
1444}
1445
Chris Mason9aca1d52007-03-13 11:09:37 -04001446/*
1447 * drop the reference count on the tree rooted at 'snap'. This traverses
1448 * the tree freeing any blocks that have a ref count of zero after being
1449 * decremented.
1450 */
Chris Masone089f052007-03-16 16:20:31 -04001451int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masone20d96d2007-03-22 12:13:20 -04001452 *root, struct buffer_head *snap)
Chris Mason20524f02007-03-10 06:35:47 -05001453{
Chris Mason3768f362007-03-13 16:47:54 -04001454 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04001455 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05001456 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04001457 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05001458 int i;
1459 int orig_level;
1460
Chris Mason5caf2a02007-04-02 11:20:42 -04001461 path = btrfs_alloc_path();
1462 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05001463
Chris Masone20d96d2007-03-22 12:13:20 -04001464 level = btrfs_header_level(btrfs_buffer_header(snap));
Chris Mason20524f02007-03-10 06:35:47 -05001465 orig_level = level;
Chris Mason5caf2a02007-04-02 11:20:42 -04001466 path->nodes[level] = snap;
1467 path->slots[level] = 0;
Chris Mason20524f02007-03-10 06:35:47 -05001468 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001469 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04001470 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05001471 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04001472 if (wret < 0)
1473 ret = wret;
1474
Chris Mason5caf2a02007-04-02 11:20:42 -04001475 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04001476 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05001477 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04001478 if (wret < 0)
1479 ret = wret;
Chris Mason20524f02007-03-10 06:35:47 -05001480 }
Chris Mason83e15a22007-03-12 09:03:27 -04001481 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001482 if (path->nodes[i]) {
1483 btrfs_block_release(root, path->nodes[i]);
Chris Mason83e15a22007-03-12 09:03:27 -04001484 }
Chris Mason20524f02007-03-10 06:35:47 -05001485 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001486 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04001487 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05001488}
Chris Mason9078a3e2007-04-26 16:46:15 -04001489
Chris Masonbe744172007-05-06 10:15:01 -04001490static int free_block_group_radix(struct radix_tree_root *radix)
Chris Mason9078a3e2007-04-26 16:46:15 -04001491{
1492 int ret;
1493 struct btrfs_block_group_cache *cache[8];
1494 int i;
1495
1496 while(1) {
Chris Masonbe744172007-05-06 10:15:01 -04001497 ret = radix_tree_gang_lookup(radix, (void **)cache, 0,
Chris Mason9078a3e2007-04-26 16:46:15 -04001498 ARRAY_SIZE(cache));
1499 if (!ret)
1500 break;
1501 for (i = 0; i < ret; i++) {
Chris Masonbe744172007-05-06 10:15:01 -04001502 radix_tree_delete(radix, cache[i]->key.objectid +
Chris Mason9078a3e2007-04-26 16:46:15 -04001503 cache[i]->key.offset - 1);
1504 kfree(cache[i]);
1505 }
1506 }
1507 return 0;
1508}
1509
Chris Masonbe744172007-05-06 10:15:01 -04001510int btrfs_free_block_groups(struct btrfs_fs_info *info)
1511{
1512 int ret;
1513 int ret2;
Chris Masone37c9e62007-05-09 20:13:14 -04001514 unsigned long gang[16];
1515 int i;
Chris Masonbe744172007-05-06 10:15:01 -04001516
1517 ret = free_block_group_radix(&info->block_group_radix);
1518 ret2 = free_block_group_radix(&info->block_group_data_radix);
1519 if (ret)
1520 return ret;
1521 if (ret2)
1522 return ret2;
Chris Masone37c9e62007-05-09 20:13:14 -04001523
1524 while(1) {
1525 ret = find_first_radix_bit(&info->extent_map_radix,
1526 gang, 0, ARRAY_SIZE(gang));
1527 if (!ret)
1528 break;
1529 for (i = 0; i < ret; i++) {
1530 clear_radix_bit(&info->extent_map_radix, gang[i]);
1531 }
1532 }
Chris Masonbe744172007-05-06 10:15:01 -04001533 return 0;
1534}
1535
Chris Mason9078a3e2007-04-26 16:46:15 -04001536int btrfs_read_block_groups(struct btrfs_root *root)
1537{
1538 struct btrfs_path *path;
1539 int ret;
1540 int err = 0;
1541 struct btrfs_block_group_item *bi;
1542 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04001543 struct btrfs_fs_info *info = root->fs_info;
1544 struct radix_tree_root *radix;
Chris Mason9078a3e2007-04-26 16:46:15 -04001545 struct btrfs_key key;
1546 struct btrfs_key found_key;
1547 struct btrfs_leaf *leaf;
Chris Mason84f54cf2007-06-12 07:43:08 -04001548 u64 group_size_blocks;
Chris Mason31f3c992007-04-30 15:25:45 -04001549 u64 used;
Chris Mason9078a3e2007-04-26 16:46:15 -04001550
Chris Mason84f54cf2007-06-12 07:43:08 -04001551 group_size_blocks = BTRFS_BLOCK_GROUP_SIZE >>
1552 root->fs_info->sb->s_blocksize_bits;
Chris Masonbe744172007-05-06 10:15:01 -04001553 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04001554 key.objectid = 0;
1555 key.offset = group_size_blocks;
1556 key.flags = 0;
1557 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
1558
1559 path = btrfs_alloc_path();
1560 if (!path)
1561 return -ENOMEM;
1562
1563 while(1) {
Chris Masonbe744172007-05-06 10:15:01 -04001564 ret = btrfs_search_slot(NULL, info->extent_root,
Chris Mason9078a3e2007-04-26 16:46:15 -04001565 &key, path, 0, 0);
1566 if (ret != 0) {
1567 err = ret;
1568 break;
1569 }
1570 leaf = btrfs_buffer_leaf(path->nodes[0]);
1571 btrfs_disk_key_to_cpu(&found_key,
1572 &leaf->items[path->slots[0]].key);
1573 cache = kmalloc(sizeof(*cache), GFP_NOFS);
1574 if (!cache) {
1575 err = -1;
1576 break;
1577 }
Chris Mason3e1ad542007-05-07 20:03:49 -04001578
Chris Mason9078a3e2007-04-26 16:46:15 -04001579 bi = btrfs_item_ptr(leaf, path->slots[0],
1580 struct btrfs_block_group_item);
Chris Mason1e2677e2007-05-29 16:52:18 -04001581 if (bi->flags & BTRFS_BLOCK_GROUP_DATA) {
1582 radix = &info->block_group_data_radix;
1583 cache->data = 1;
1584 } else {
1585 radix = &info->block_group_radix;
1586 cache->data = 0;
1587 }
1588
Chris Mason9078a3e2007-04-26 16:46:15 -04001589 memcpy(&cache->item, bi, sizeof(*bi));
1590 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason31f3c992007-04-30 15:25:45 -04001591 cache->last_alloc = cache->key.objectid;
1592 cache->first_free = cache->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -04001593 cache->last_prealloc = cache->key.objectid;
Chris Masonbe744172007-05-06 10:15:01 -04001594 cache->pinned = 0;
Chris Masone37c9e62007-05-09 20:13:14 -04001595 cache->cached = 0;
1596
Chris Mason3e1ad542007-05-07 20:03:49 -04001597 cache->radix = radix;
1598
Chris Mason9078a3e2007-04-26 16:46:15 -04001599 key.objectid = found_key.objectid + found_key.offset;
1600 btrfs_release_path(root, path);
Chris Masonbe744172007-05-06 10:15:01 -04001601 ret = radix_tree_insert(radix, found_key.objectid +
Chris Mason9078a3e2007-04-26 16:46:15 -04001602 found_key.offset - 1,
1603 (void *)cache);
1604 BUG_ON(ret);
Chris Mason31f3c992007-04-30 15:25:45 -04001605 used = btrfs_block_group_used(bi);
Chris Mason84f54cf2007-06-12 07:43:08 -04001606 if (used < div_factor(key.offset, 8)) {
Chris Masonbe744172007-05-06 10:15:01 -04001607 radix_tree_tag_set(radix, found_key.objectid +
Chris Mason31f3c992007-04-30 15:25:45 -04001608 found_key.offset - 1,
1609 BTRFS_BLOCK_GROUP_AVAIL);
1610 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001611 if (key.objectid >=
Chris Masonbe744172007-05-06 10:15:01 -04001612 btrfs_super_total_blocks(info->disk_super))
Chris Mason9078a3e2007-04-26 16:46:15 -04001613 break;
1614 }
1615
1616 btrfs_free_path(path);
1617 return 0;
1618}