blob: 3c00f967eccb713d4fcb4ad8ce7e59f6c021bc5d [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
Zach Brownec6b9102007-07-11 10:00:37 -040019#include <linux/sched.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 Mason96b51792007-10-15 16:15:19 -040025#define BLOCK_GROUP_DATA EXTENT_WRITEBACK
26#define BLOCK_GROUP_METADATA EXTENT_UPTODATE
27#define BLOCK_GROUP_DIRTY EXTENT_DIRTY
28
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 Masone37c9e62007-05-09 20:13:14 -040034static int cache_block_group(struct btrfs_root *root,
35 struct btrfs_block_group_cache *block_group)
36{
37 struct btrfs_path *path;
38 int ret;
39 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -040040 struct extent_buffer *leaf;
Chris Masonf510cfe2007-10-15 16:14:48 -040041 struct extent_map_tree *free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040042 int slot;
Chris Masone37c9e62007-05-09 20:13:14 -040043 u64 last = 0;
44 u64 hole_size;
Yan7d7d6062007-09-14 16:15:28 -040045 u64 first_free;
Chris Masone37c9e62007-05-09 20:13:14 -040046 int found = 0;
47
48 root = root->fs_info->extent_root;
Chris Masonf510cfe2007-10-15 16:14:48 -040049 free_space_cache = &root->fs_info->free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040050
51 if (block_group->cached)
52 return 0;
Chris Masonf510cfe2007-10-15 16:14:48 -040053
Chris Masone37c9e62007-05-09 20:13:14 -040054 path = btrfs_alloc_path();
55 if (!path)
56 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -040057
Chris Mason2cc58cf2007-08-27 16:49:44 -040058 path->reada = 2;
Yan7d7d6062007-09-14 16:15:28 -040059 first_free = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040060 key.objectid = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040061 key.offset = 0;
Yan7d7d6062007-09-14 16:15:28 -040062
Chris Masone37c9e62007-05-09 20:13:14 -040063 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
64 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Yan7d7d6062007-09-14 16:15:28 -040065
Chris Masone37c9e62007-05-09 20:13:14 -040066 if (ret < 0)
67 return ret;
Yan7d7d6062007-09-14 16:15:28 -040068
Chris Masone37c9e62007-05-09 20:13:14 -040069 if (ret && path->slots[0] > 0)
70 path->slots[0]--;
Yan7d7d6062007-09-14 16:15:28 -040071
Chris Masone37c9e62007-05-09 20:13:14 -040072 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -040073 leaf = path->nodes[0];
Chris Masone37c9e62007-05-09 20:13:14 -040074 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -040075 if (slot >= btrfs_header_nritems(leaf)) {
Chris Masone37c9e62007-05-09 20:13:14 -040076 ret = btrfs_next_leaf(root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -040077 if (ret < 0)
78 goto err;
Chris Masonde428b62007-05-18 13:28:27 -040079 if (ret == 0) {
Chris Masone37c9e62007-05-09 20:13:14 -040080 continue;
Chris Masonde428b62007-05-18 13:28:27 -040081 } else {
Chris Masone37c9e62007-05-09 20:13:14 -040082 break;
83 }
84 }
Yan7d7d6062007-09-14 16:15:28 -040085
Chris Mason5f39d392007-10-15 16:14:19 -040086 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan7d7d6062007-09-14 16:15:28 -040087 if (key.objectid < block_group->key.objectid) {
88 if (key.objectid + key.offset > first_free)
89 first_free = key.objectid + key.offset;
90 goto next;
91 }
92
Chris Masone37c9e62007-05-09 20:13:14 -040093 if (key.objectid >= block_group->key.objectid +
94 block_group->key.offset) {
Yan7d7d6062007-09-14 16:15:28 -040095 break;
96 }
97
98 if (btrfs_key_type(&key) == BTRFS_EXTENT_ITEM_KEY) {
99 if (!found) {
100 last = first_free;
101 found = 1;
Chris Masone37c9e62007-05-09 20:13:14 -0400102 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400103 if (key.objectid > last) {
104 hole_size = key.objectid - last;
105 set_extent_dirty(free_space_cache, last,
106 last + hole_size - 1,
107 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -0400108 }
Yan7d7d6062007-09-14 16:15:28 -0400109 last = key.objectid + key.offset;
Chris Masone37c9e62007-05-09 20:13:14 -0400110 }
Yan7d7d6062007-09-14 16:15:28 -0400111next:
Chris Masone37c9e62007-05-09 20:13:14 -0400112 path->slots[0]++;
113 }
114
Yan7d7d6062007-09-14 16:15:28 -0400115 if (!found)
116 last = first_free;
117 if (block_group->key.objectid +
118 block_group->key.offset > last) {
119 hole_size = block_group->key.objectid +
120 block_group->key.offset - last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400121 set_extent_dirty(free_space_cache, last,
122 last + hole_size - 1, GFP_NOFS);
Yan7d7d6062007-09-14 16:15:28 -0400123 }
Chris Masone37c9e62007-05-09 20:13:14 -0400124 block_group->cached = 1;
Chris Mason54aa1f42007-06-22 14:16:25 -0400125err:
Chris Masone37c9e62007-05-09 20:13:14 -0400126 btrfs_free_path(path);
127 return 0;
128}
129
Chris Mason5276aed2007-06-11 21:33:38 -0400130struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
131 btrfs_fs_info *info,
Chris Masondb945352007-10-15 16:15:53 -0400132 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400133{
Chris Mason96b51792007-10-15 16:15:19 -0400134 struct extent_map_tree *block_group_cache;
135 struct btrfs_block_group_cache *block_group = NULL;
136 u64 ptr;
137 u64 start;
138 u64 end;
Chris Masonbe744172007-05-06 10:15:01 -0400139 int ret;
140
Chris Mason96b51792007-10-15 16:15:19 -0400141 block_group_cache = &info->block_group_cache;
142 ret = find_first_extent_bit(block_group_cache,
Chris Masondb945352007-10-15 16:15:53 -0400143 bytenr, &start, &end,
Chris Mason96b51792007-10-15 16:15:19 -0400144 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA);
Chris Masonbe744172007-05-06 10:15:01 -0400145 if (ret) {
Chris Mason96b51792007-10-15 16:15:19 -0400146 return NULL;
Chris Masonbe744172007-05-06 10:15:01 -0400147 }
Chris Mason96b51792007-10-15 16:15:19 -0400148 ret = get_state_private(block_group_cache, start, &ptr);
149 if (ret)
150 return NULL;
151
Jens Axboeae2f5412007-10-19 09:22:59 -0400152 block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Yan5cf66422007-11-16 14:57:09 -0500153 if (block_group->key.objectid <= bytenr && bytenr <
Chris Mason96b51792007-10-15 16:15:19 -0400154 block_group->key.objectid + block_group->key.offset)
155 return block_group;
Chris Masonbe744172007-05-06 10:15:01 -0400156 return NULL;
157}
Chris Masone37c9e62007-05-09 20:13:14 -0400158static u64 find_search_start(struct btrfs_root *root,
159 struct btrfs_block_group_cache **cache_ret,
Yan5e5745d2007-11-16 14:57:09 -0500160 u64 search_start, int num,
161 int data, int full_scan)
Chris Masone37c9e62007-05-09 20:13:14 -0400162{
Chris Masone37c9e62007-05-09 20:13:14 -0400163 int ret;
164 struct btrfs_block_group_cache *cache = *cache_ret;
Chris Masone19caa52007-10-15 16:17:44 -0400165 u64 last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400166 u64 start = 0;
167 u64 end = 0;
Chris Mason257d0ce2007-11-07 21:08:16 -0500168 u64 cache_miss = 0;
Chris Masonf84a8b32007-11-06 10:26:29 -0500169 int wrapped = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400170
Chris Masone37c9e62007-05-09 20:13:14 -0400171again:
Chris Mason54aa1f42007-06-22 14:16:25 -0400172 ret = cache_block_group(root, cache);
173 if (ret)
174 goto out;
Chris Masonf84a8b32007-11-06 10:26:29 -0500175
Chris Masone19caa52007-10-15 16:17:44 -0400176 last = max(search_start, cache->key.objectid);
177
Chris Masone37c9e62007-05-09 20:13:14 -0400178 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -0400179 ret = find_first_extent_bit(&root->fs_info->free_space_cache,
180 last, &start, &end, EXTENT_DIRTY);
Chris Masone19caa52007-10-15 16:17:44 -0400181 if (ret) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500182 if (!cache_miss)
183 cache_miss = last;
Chris Masone19caa52007-10-15 16:17:44 -0400184 goto new_group;
185 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400186
187 start = max(last, start);
188 last = end + 1;
Chris Mason257d0ce2007-11-07 21:08:16 -0500189 if (last - start < num) {
190 if (last == cache->key.objectid + cache->key.offset)
191 cache_miss = start;
Chris Masonf510cfe2007-10-15 16:14:48 -0400192 continue;
Chris Mason257d0ce2007-11-07 21:08:16 -0500193 }
194 if (data != BTRFS_BLOCK_GROUP_MIXED &&
Yan5cf66422007-11-16 14:57:09 -0500195 start + num > cache->key.objectid + cache->key.offset)
Chris Masone37c9e62007-05-09 20:13:14 -0400196 goto new_group;
Chris Masonf510cfe2007-10-15 16:14:48 -0400197 return start;
Chris Masone37c9e62007-05-09 20:13:14 -0400198 }
199out:
Chris Mason1a5bc162007-10-15 16:15:26 -0400200 return search_start;
Chris Masone37c9e62007-05-09 20:13:14 -0400201
202new_group:
Chris Masone19caa52007-10-15 16:17:44 -0400203 last = cache->key.objectid + cache->key.offset;
Chris Masonf84a8b32007-11-06 10:26:29 -0500204wrapped:
Chris Masone19caa52007-10-15 16:17:44 -0400205 cache = btrfs_lookup_block_group(root->fs_info, last);
Chris Masone37c9e62007-05-09 20:13:14 -0400206 if (!cache) {
Chris Mason0e4de582007-11-26 10:55:49 -0500207no_cache:
Chris Masonf84a8b32007-11-06 10:26:29 -0500208 if (!wrapped) {
209 wrapped = 1;
210 last = search_start;
211 data = BTRFS_BLOCK_GROUP_MIXED;
212 goto wrapped;
213 }
Chris Mason1a5bc162007-10-15 16:15:26 -0400214 return search_start;
Chris Masone37c9e62007-05-09 20:13:14 -0400215 }
Chris Mason257d0ce2007-11-07 21:08:16 -0500216 if (cache_miss && !cache->cached) {
217 cache_block_group(root, cache);
218 last = cache_miss;
Chris Mason257d0ce2007-11-07 21:08:16 -0500219 cache = btrfs_lookup_block_group(root->fs_info, last);
220 }
Yan5e5745d2007-11-16 14:57:09 -0500221 if (!full_scan)
222 cache = btrfs_find_block_group(root, cache, last, data, 0);
Chris Mason0e4de582007-11-26 10:55:49 -0500223 if (!cache)
224 goto no_cache;
Chris Masone37c9e62007-05-09 20:13:14 -0400225 *cache_ret = cache;
Chris Mason257d0ce2007-11-07 21:08:16 -0500226 cache_miss = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400227 goto again;
228}
229
Chris Mason84f54cf2007-06-12 07:43:08 -0400230static u64 div_factor(u64 num, int factor)
231{
Chris Mason257d0ce2007-11-07 21:08:16 -0500232 if (factor == 10)
233 return num;
Chris Mason84f54cf2007-06-12 07:43:08 -0400234 num *= factor;
235 do_div(num, 10);
236 return num;
237}
238
Chris Mason31f3c992007-04-30 15:25:45 -0400239struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
240 struct btrfs_block_group_cache
Chris Masonbe744172007-05-06 10:15:01 -0400241 *hint, u64 search_start,
Chris Masonde428b62007-05-18 13:28:27 -0400242 int data, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400243{
Chris Mason96b51792007-10-15 16:15:19 -0400244 struct btrfs_block_group_cache *cache;
245 struct extent_map_tree *block_group_cache;
Chris Mason31f3c992007-04-30 15:25:45 -0400246 struct btrfs_block_group_cache *found_group = NULL;
Chris Masoncd1bc462007-04-27 10:08:34 -0400247 struct btrfs_fs_info *info = root->fs_info;
248 u64 used;
Chris Mason31f3c992007-04-30 15:25:45 -0400249 u64 last = 0;
250 u64 hint_last;
Chris Mason96b51792007-10-15 16:15:19 -0400251 u64 start;
252 u64 end;
253 u64 free_check;
254 u64 ptr;
255 int bit;
Chris Masoncd1bc462007-04-27 10:08:34 -0400256 int ret;
Chris Mason31f3c992007-04-30 15:25:45 -0400257 int full_search = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400258 int factor = 8;
Chris Mason1e2677e2007-05-29 16:52:18 -0400259 int data_swap = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400260
Chris Mason96b51792007-10-15 16:15:19 -0400261 block_group_cache = &info->block_group_cache;
262
Chris Masonde428b62007-05-18 13:28:27 -0400263 if (!owner)
Chris Masonf84a8b32007-11-06 10:26:29 -0500264 factor = 8;
Chris Masonbe744172007-05-06 10:15:01 -0400265
Chris Mason257d0ce2007-11-07 21:08:16 -0500266 if (data == BTRFS_BLOCK_GROUP_MIXED) {
Chris Masonf84a8b32007-11-06 10:26:29 -0500267 bit = BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA;
Chris Mason257d0ce2007-11-07 21:08:16 -0500268 factor = 10;
269 } else if (data)
Chris Mason96b51792007-10-15 16:15:19 -0400270 bit = BLOCK_GROUP_DATA;
271 else
272 bit = BLOCK_GROUP_METADATA;
Chris Masonbe744172007-05-06 10:15:01 -0400273
274 if (search_start) {
275 struct btrfs_block_group_cache *shint;
Chris Mason5276aed2007-06-11 21:33:38 -0400276 shint = btrfs_lookup_block_group(info, search_start);
Chris Masonf84a8b32007-11-06 10:26:29 -0500277 if (shint && (shint->data == data ||
278 shint->data == BTRFS_BLOCK_GROUP_MIXED)) {
Chris Masonbe744172007-05-06 10:15:01 -0400279 used = btrfs_block_group_used(&shint->item);
Yan324ae4d2007-11-16 14:57:08 -0500280 if (used + shint->pinned <
281 div_factor(shint->key.offset, factor)) {
Chris Masonbe744172007-05-06 10:15:01 -0400282 return shint;
283 }
284 }
285 }
Chris Masonf84a8b32007-11-06 10:26:29 -0500286 if (hint && (hint->data == data ||
287 hint->data == BTRFS_BLOCK_GROUP_MIXED)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400288 used = btrfs_block_group_used(&hint->item);
Yan324ae4d2007-11-16 14:57:08 -0500289 if (used + hint->pinned <
290 div_factor(hint->key.offset, factor)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400291 return hint;
292 }
Chris Masone19caa52007-10-15 16:17:44 -0400293 last = hint->key.objectid + hint->key.offset;
Chris Mason31f3c992007-04-30 15:25:45 -0400294 hint_last = last;
295 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400296 if (hint)
297 hint_last = max(hint->key.objectid, search_start);
298 else
299 hint_last = search_start;
300
301 last = hint_last;
Chris Mason31f3c992007-04-30 15:25:45 -0400302 }
Chris Mason31f3c992007-04-30 15:25:45 -0400303again:
Chris Masoncd1bc462007-04-27 10:08:34 -0400304 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400305 ret = find_first_extent_bit(block_group_cache, last,
306 &start, &end, bit);
307 if (ret)
Chris Masoncd1bc462007-04-27 10:08:34 -0400308 break;
Chris Mason96b51792007-10-15 16:15:19 -0400309
310 ret = get_state_private(block_group_cache, start, &ptr);
311 if (ret)
312 break;
313
Jens Axboeae2f5412007-10-19 09:22:59 -0400314 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400315 last = cache->key.objectid + cache->key.offset;
316 used = btrfs_block_group_used(&cache->item);
317
318 if (full_search)
319 free_check = cache->key.offset;
320 else
321 free_check = div_factor(cache->key.offset, factor);
Yan324ae4d2007-11-16 14:57:08 -0500322 if (used + cache->pinned < free_check) {
Chris Mason96b51792007-10-15 16:15:19 -0400323 found_group = cache;
324 goto found;
Chris Masoncd1bc462007-04-27 10:08:34 -0400325 }
Chris Masonde428b62007-05-18 13:28:27 -0400326 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400327 }
Chris Mason31f3c992007-04-30 15:25:45 -0400328 if (!full_search) {
Chris Masonbe744172007-05-06 10:15:01 -0400329 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400330 full_search = 1;
331 goto again;
332 }
Chris Mason1e2677e2007-05-29 16:52:18 -0400333 if (!data_swap) {
Chris Mason1e2677e2007-05-29 16:52:18 -0400334 data_swap = 1;
Chris Mason96b51792007-10-15 16:15:19 -0400335 bit = BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA;
Chris Mason1e2677e2007-05-29 16:52:18 -0400336 last = search_start;
337 goto again;
338 }
Chris Masonbe744172007-05-06 10:15:01 -0400339found:
Chris Mason31f3c992007-04-30 15:25:45 -0400340 return found_group;
Chris Masoncd1bc462007-04-27 10:08:34 -0400341}
342
Chris Masonb18c6682007-04-17 13:26:50 -0400343int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
344 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -0400345 u64 bytenr, u64 num_bytes)
Chris Mason02217ed2007-03-02 16:08:05 -0500346{
Chris Mason5caf2a02007-04-02 11:20:42 -0400347 struct btrfs_path *path;
Chris Mason02217ed2007-03-02 16:08:05 -0500348 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400349 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400350 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400351 struct btrfs_extent_item *item;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400352 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500353
Chris Masondb945352007-10-15 16:15:53 -0400354 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400355 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400356 if (!path)
357 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -0400358
Chris Masondb945352007-10-15 16:15:53 -0400359 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -0400360 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -0400361 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -0400362 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400363 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400364 if (ret < 0)
365 return ret;
Chris Masona429e512007-04-18 16:15:28 -0400366 if (ret != 0) {
Chris Masona28ec192007-03-06 20:08:01 -0500367 BUG();
Chris Masona429e512007-04-18 16:15:28 -0400368 }
Chris Mason02217ed2007-03-02 16:08:05 -0500369 BUG_ON(ret != 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400370 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400371 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400372 refs = btrfs_extent_refs(l, item);
373 btrfs_set_extent_refs(l, item, refs + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -0400374 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masona28ec192007-03-06 20:08:01 -0500375
Chris Mason5caf2a02007-04-02 11:20:42 -0400376 btrfs_release_path(root->fs_info->extent_root, path);
377 btrfs_free_path(path);
Chris Mason9f5fae22007-03-20 14:38:32 -0400378 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400379 del_pending_extents(trans, root->fs_info->extent_root);
Chris Mason02217ed2007-03-02 16:08:05 -0500380 return 0;
381}
382
Chris Masone9d0b132007-08-10 14:06:19 -0400383int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
384 struct btrfs_root *root)
385{
386 finish_current_insert(trans, root->fs_info->extent_root);
387 del_pending_extents(trans, root->fs_info->extent_root);
388 return 0;
389}
390
Chris Masonb18c6682007-04-17 13:26:50 -0400391static int lookup_extent_ref(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -0400392 struct btrfs_root *root, u64 bytenr,
393 u64 num_bytes, u32 *refs)
Chris Masona28ec192007-03-06 20:08:01 -0500394{
Chris Mason5caf2a02007-04-02 11:20:42 -0400395 struct btrfs_path *path;
Chris Masona28ec192007-03-06 20:08:01 -0500396 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400397 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400398 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400399 struct btrfs_extent_item *item;
Chris Mason5caf2a02007-04-02 11:20:42 -0400400
Chris Masondb945352007-10-15 16:15:53 -0400401 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400402 path = btrfs_alloc_path();
Chris Masondb945352007-10-15 16:15:53 -0400403 key.objectid = bytenr;
404 key.offset = num_bytes;
Chris Mason62e27492007-03-15 12:56:47 -0400405 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5caf2a02007-04-02 11:20:42 -0400406 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400407 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400408 if (ret < 0)
409 goto out;
Chris Mason5f39d392007-10-15 16:14:19 -0400410 if (ret != 0) {
411 btrfs_print_leaf(root, path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400412 printk("failed to find block number %Lu\n", bytenr);
Chris Masona28ec192007-03-06 20:08:01 -0500413 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -0400414 }
415 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400416 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400417 *refs = btrfs_extent_refs(l, item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400418out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400419 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -0500420 return 0;
421}
422
Chris Masonc5739bb2007-04-10 09:27:04 -0400423int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
424 struct btrfs_root *root)
425{
Chris Masondb945352007-10-15 16:15:53 -0400426 return btrfs_inc_extent_ref(trans, root, root->node->start,
427 root->node->len);
Chris Masonc5739bb2007-04-10 09:27:04 -0400428}
429
Chris Masone089f052007-03-16 16:20:31 -0400430int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400431 struct extent_buffer *buf)
Chris Mason02217ed2007-03-02 16:08:05 -0500432{
Chris Masondb945352007-10-15 16:15:53 -0400433 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400434 u32 nritems;
435 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -0400436 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -0500437 int i;
Chris Masondb945352007-10-15 16:15:53 -0400438 int level;
Chris Mason6407bf62007-03-27 06:33:00 -0400439 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400440 int faili;
441 int err;
Chris Masona28ec192007-03-06 20:08:01 -0500442
Chris Mason3768f362007-03-13 16:47:54 -0400443 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500444 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400445
Chris Masondb945352007-10-15 16:15:53 -0400446 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400447 nritems = btrfs_header_nritems(buf);
448 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400449 if (level == 0) {
450 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400451 btrfs_item_key_to_cpu(buf, &key, i);
452 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -0400453 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400454 fi = btrfs_item_ptr(buf, i,
Chris Mason6407bf62007-03-27 06:33:00 -0400455 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400456 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason236454df2007-04-19 13:37:44 -0400457 BTRFS_FILE_EXTENT_INLINE)
458 continue;
Chris Masondb945352007-10-15 16:15:53 -0400459 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
460 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -0400461 continue;
Chris Masondb945352007-10-15 16:15:53 -0400462 ret = btrfs_inc_extent_ref(trans, root, disk_bytenr,
463 btrfs_file_extent_disk_num_bytes(buf, fi));
Chris Mason54aa1f42007-06-22 14:16:25 -0400464 if (ret) {
465 faili = i;
466 goto fail;
467 }
Chris Mason6407bf62007-03-27 06:33:00 -0400468 } else {
Chris Masondb945352007-10-15 16:15:53 -0400469 bytenr = btrfs_node_blockptr(buf, i);
470 ret = btrfs_inc_extent_ref(trans, root, bytenr,
471 btrfs_level_size(root, level - 1));
Chris Mason54aa1f42007-06-22 14:16:25 -0400472 if (ret) {
473 faili = i;
474 goto fail;
475 }
Chris Mason6407bf62007-03-27 06:33:00 -0400476 }
Chris Mason02217ed2007-03-02 16:08:05 -0500477 }
478 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400479fail:
Chris Masonccd467d2007-06-28 15:57:36 -0400480 WARN_ON(1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400481 for (i =0; i < faili; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400482 if (level == 0) {
483 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400484 btrfs_item_key_to_cpu(buf, &key, i);
485 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -0400486 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400487 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -0400488 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400489 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -0400490 BTRFS_FILE_EXTENT_INLINE)
491 continue;
Chris Masondb945352007-10-15 16:15:53 -0400492 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
493 if (disk_bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -0400494 continue;
Chris Masondb945352007-10-15 16:15:53 -0400495 err = btrfs_free_extent(trans, root, disk_bytenr,
496 btrfs_file_extent_disk_num_bytes(buf,
Chris Mason5f39d392007-10-15 16:14:19 -0400497 fi), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400498 BUG_ON(err);
499 } else {
Chris Masondb945352007-10-15 16:15:53 -0400500 bytenr = btrfs_node_blockptr(buf, i);
501 err = btrfs_free_extent(trans, root, bytenr,
502 btrfs_level_size(root, level - 1), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400503 BUG_ON(err);
504 }
505 }
506 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -0500507}
508
Chris Mason9078a3e2007-04-26 16:46:15 -0400509static int write_one_cache_group(struct btrfs_trans_handle *trans,
510 struct btrfs_root *root,
511 struct btrfs_path *path,
512 struct btrfs_block_group_cache *cache)
513{
514 int ret;
515 int pending_ret;
516 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400517 unsigned long bi;
518 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -0400519
Chris Mason9078a3e2007-04-26 16:46:15 -0400520 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400521 if (ret < 0)
522 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -0400523 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400524
525 leaf = path->nodes[0];
526 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
527 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
528 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -0400529 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400530fail:
Chris Mason9078a3e2007-04-26 16:46:15 -0400531 finish_current_insert(trans, extent_root);
532 pending_ret = del_pending_extents(trans, extent_root);
533 if (ret)
534 return ret;
535 if (pending_ret)
536 return pending_ret;
537 return 0;
538
539}
540
Chris Mason96b51792007-10-15 16:15:19 -0400541int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
542 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -0400543{
Chris Mason96b51792007-10-15 16:15:19 -0400544 struct extent_map_tree *block_group_cache;
545 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400546 int ret;
547 int err = 0;
548 int werr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -0400549 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -0400550 u64 last = 0;
551 u64 start;
552 u64 end;
553 u64 ptr;
Chris Mason9078a3e2007-04-26 16:46:15 -0400554
Chris Mason96b51792007-10-15 16:15:19 -0400555 block_group_cache = &root->fs_info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400556 path = btrfs_alloc_path();
557 if (!path)
558 return -ENOMEM;
559
560 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400561 ret = find_first_extent_bit(block_group_cache, last,
562 &start, &end, BLOCK_GROUP_DIRTY);
563 if (ret)
Chris Mason9078a3e2007-04-26 16:46:15 -0400564 break;
Chris Mason54aa1f42007-06-22 14:16:25 -0400565
Chris Mason96b51792007-10-15 16:15:19 -0400566 last = end + 1;
567 ret = get_state_private(block_group_cache, start, &ptr);
568 if (ret)
569 break;
570
Jens Axboeae2f5412007-10-19 09:22:59 -0400571 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400572 err = write_one_cache_group(trans, root,
573 path, cache);
574 /*
575 * if we fail to write the cache group, we want
576 * to keep it marked dirty in hopes that a later
577 * write will work
578 */
579 if (err) {
580 werr = err;
581 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -0400582 }
Chris Mason96b51792007-10-15 16:15:19 -0400583 clear_extent_bits(block_group_cache, start, end,
584 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -0400585 }
586 btrfs_free_path(path);
587 return werr;
588}
589
590static int update_block_group(struct btrfs_trans_handle *trans,
591 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -0400592 u64 bytenr, u64 num_bytes, int alloc,
593 int mark_free, int data)
Chris Mason9078a3e2007-04-26 16:46:15 -0400594{
595 struct btrfs_block_group_cache *cache;
596 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -0400597 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -0400598 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -0400599 u64 byte_in_group;
Chris Mason96b51792007-10-15 16:15:19 -0400600 u64 start;
601 u64 end;
Chris Mason3e1ad542007-05-07 20:03:49 -0400602
Chris Mason9078a3e2007-04-26 16:46:15 -0400603 while(total) {
Chris Masondb945352007-10-15 16:15:53 -0400604 cache = btrfs_lookup_block_group(info, bytenr);
Chris Mason3e1ad542007-05-07 20:03:49 -0400605 if (!cache) {
Chris Mason9078a3e2007-04-26 16:46:15 -0400606 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -0400607 }
Chris Masondb945352007-10-15 16:15:53 -0400608 byte_in_group = bytenr - cache->key.objectid;
609 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason96b51792007-10-15 16:15:19 -0400610 start = cache->key.objectid;
611 end = start + cache->key.offset - 1;
612 set_extent_bits(&info->block_group_cache, start, end,
613 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -0400614
615 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -0400616 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -0400617 if (alloc) {
Chris Mason1e2677e2007-05-29 16:52:18 -0400618 if (cache->data != data &&
Chris Mason84f54cf2007-06-12 07:43:08 -0400619 old_val < (cache->key.offset >> 1)) {
Chris Mason96b51792007-10-15 16:15:19 -0400620 int bit_to_clear;
621 int bit_to_set;
Chris Mason96b51792007-10-15 16:15:19 -0400622 cache->data = data;
Chris Mason1e2677e2007-05-29 16:52:18 -0400623 if (data) {
Yanb97f9202007-11-01 11:28:41 -0400624 bit_to_clear = BLOCK_GROUP_METADATA;
625 bit_to_set = BLOCK_GROUP_DATA;
Chris Masonf84a8b32007-11-06 10:26:29 -0500626 cache->item.flags &=
627 ~BTRFS_BLOCK_GROUP_MIXED;
Chris Mason1e2677e2007-05-29 16:52:18 -0400628 cache->item.flags |=
629 BTRFS_BLOCK_GROUP_DATA;
630 } else {
Yanb97f9202007-11-01 11:28:41 -0400631 bit_to_clear = BLOCK_GROUP_DATA;
632 bit_to_set = BLOCK_GROUP_METADATA;
Chris Mason1e2677e2007-05-29 16:52:18 -0400633 cache->item.flags &=
Chris Masonf84a8b32007-11-06 10:26:29 -0500634 ~BTRFS_BLOCK_GROUP_MIXED;
635 cache->item.flags &=
Chris Mason1e2677e2007-05-29 16:52:18 -0400636 ~BTRFS_BLOCK_GROUP_DATA;
637 }
Chris Mason96b51792007-10-15 16:15:19 -0400638 clear_extent_bits(&info->block_group_cache,
639 start, end, bit_to_clear,
640 GFP_NOFS);
641 set_extent_bits(&info->block_group_cache,
642 start, end, bit_to_set,
643 GFP_NOFS);
Chris Masonf84a8b32007-11-06 10:26:29 -0500644 } else if (cache->data != data &&
645 cache->data != BTRFS_BLOCK_GROUP_MIXED) {
646 cache->data = BTRFS_BLOCK_GROUP_MIXED;
647 set_extent_bits(&info->block_group_cache,
648 start, end,
649 BLOCK_GROUP_DATA |
650 BLOCK_GROUP_METADATA,
651 GFP_NOFS);
Chris Mason1e2677e2007-05-29 16:52:18 -0400652 }
Chris Masondb945352007-10-15 16:15:53 -0400653 old_val += num_bytes;
Chris Masoncd1bc462007-04-27 10:08:34 -0400654 } else {
Chris Masondb945352007-10-15 16:15:53 -0400655 old_val -= num_bytes;
Chris Masonf510cfe2007-10-15 16:14:48 -0400656 if (mark_free) {
657 set_extent_dirty(&info->free_space_cache,
Chris Masondb945352007-10-15 16:15:53 -0400658 bytenr, bytenr + num_bytes - 1,
Chris Masonf510cfe2007-10-15 16:14:48 -0400659 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -0400660 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400661 }
Chris Mason9078a3e2007-04-26 16:46:15 -0400662 btrfs_set_block_group_used(&cache->item, old_val);
Chris Masondb945352007-10-15 16:15:53 -0400663 total -= num_bytes;
664 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -0400665 }
666 return 0;
667}
Yan324ae4d2007-11-16 14:57:08 -0500668static int update_pinned_extents(struct btrfs_root *root,
669 u64 bytenr, u64 num, int pin)
670{
671 u64 len;
672 struct btrfs_block_group_cache *cache;
673 struct btrfs_fs_info *fs_info = root->fs_info;
674
675 if (pin) {
676 set_extent_dirty(&fs_info->pinned_extents,
677 bytenr, bytenr + num - 1, GFP_NOFS);
678 } else {
679 clear_extent_dirty(&fs_info->pinned_extents,
680 bytenr, bytenr + num - 1, GFP_NOFS);
681 }
682 while (num > 0) {
683 cache = btrfs_lookup_block_group(fs_info, bytenr);
684 WARN_ON(!cache);
685 len = min(num, cache->key.offset -
686 (bytenr - cache->key.objectid));
687 if (pin) {
688 cache->pinned += len;
689 fs_info->total_pinned += len;
690 } else {
691 cache->pinned -= len;
692 fs_info->total_pinned -= len;
693 }
694 bytenr += len;
695 num -= len;
696 }
697 return 0;
698}
Chris Mason9078a3e2007-04-26 16:46:15 -0400699
Chris Mason1a5bc162007-10-15 16:15:26 -0400700int btrfs_copy_pinned(struct btrfs_root *root, struct extent_map_tree *copy)
Chris Masonccd467d2007-06-28 15:57:36 -0400701{
Chris Masonccd467d2007-06-28 15:57:36 -0400702 u64 last = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -0400703 u64 start;
704 u64 end;
705 struct extent_map_tree *pinned_extents = &root->fs_info->pinned_extents;
Chris Masonccd467d2007-06-28 15:57:36 -0400706 int ret;
Chris Masonccd467d2007-06-28 15:57:36 -0400707
708 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -0400709 ret = find_first_extent_bit(pinned_extents, last,
710 &start, &end, EXTENT_DIRTY);
711 if (ret)
Chris Masonccd467d2007-06-28 15:57:36 -0400712 break;
Chris Mason1a5bc162007-10-15 16:15:26 -0400713 set_extent_dirty(copy, start, end, GFP_NOFS);
714 last = end + 1;
Chris Masonccd467d2007-06-28 15:57:36 -0400715 }
716 return 0;
717}
718
719int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
720 struct btrfs_root *root,
Chris Mason1a5bc162007-10-15 16:15:26 -0400721 struct extent_map_tree *unpin)
Chris Masona28ec192007-03-06 20:08:01 -0500722{
Chris Mason1a5bc162007-10-15 16:15:26 -0400723 u64 start;
724 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -0500725 int ret;
Chris Masonf510cfe2007-10-15 16:14:48 -0400726 struct extent_map_tree *free_space_cache;
Chris Masonf510cfe2007-10-15 16:14:48 -0400727 free_space_cache = &root->fs_info->free_space_cache;
Chris Masona28ec192007-03-06 20:08:01 -0500728
729 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -0400730 ret = find_first_extent_bit(unpin, 0, &start, &end,
731 EXTENT_DIRTY);
732 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -0500733 break;
Yan324ae4d2007-11-16 14:57:08 -0500734 update_pinned_extents(root, start, end + 1 - start, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -0400735 clear_extent_dirty(unpin, start, end, GFP_NOFS);
736 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
Chris Masona28ec192007-03-06 20:08:01 -0500737 }
738 return 0;
739}
740
Chris Masone089f052007-03-16 16:20:31 -0400741static int finish_current_insert(struct btrfs_trans_handle *trans, struct
742 btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -0500743{
Chris Masone2fa7222007-03-12 16:22:34 -0400744 struct btrfs_key ins;
Chris Mason234b63a2007-03-13 10:46:10 -0400745 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -0500746 int ret;
Chris Mason1a5bc162007-10-15 16:15:26 -0400747 int err = 0;
748 u64 start;
749 u64 end;
Chris Mason1261ec42007-03-20 20:35:03 -0400750 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Mason037e6392007-03-07 11:50:24 -0500751
Chris Mason5f39d392007-10-15 16:14:19 -0400752 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason62e27492007-03-15 12:56:47 -0400753 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5f39d392007-10-15 16:14:19 -0400754 btrfs_set_stack_extent_owner(&extent_item,
755 extent_root->root_key.objectid);
Chris Mason037e6392007-03-07 11:50:24 -0500756
Chris Mason26b80032007-08-08 20:17:12 -0400757 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -0400758 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
759 &end, EXTENT_LOCKED);
760 if (ret)
Chris Mason26b80032007-08-08 20:17:12 -0400761 break;
762
Chris Mason1a5bc162007-10-15 16:15:26 -0400763 ins.objectid = start;
764 ins.offset = end + 1 - start;
765 err = btrfs_insert_item(trans, extent_root, &ins,
766 &extent_item, sizeof(extent_item));
767 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
768 GFP_NOFS);
Chris Mason037e6392007-03-07 11:50:24 -0500769 }
Chris Mason037e6392007-03-07 11:50:24 -0500770 return 0;
771}
772
Chris Masondb945352007-10-15 16:15:53 -0400773static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
774 int pending)
Chris Masone20d96d2007-03-22 12:13:20 -0400775{
Chris Mason1a5bc162007-10-15 16:15:26 -0400776 int err = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400777 struct extent_buffer *buf;
Chris Mason78fae272007-03-25 11:35:08 -0400778
Chris Masonf4b9aa82007-03-27 11:05:53 -0400779 if (!pending) {
Chris Masondb945352007-10-15 16:15:53 -0400780 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -0400781 if (buf) {
782 if (btrfs_buffer_uptodate(buf)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -0400783 u64 transid =
784 root->fs_info->running_transaction->transid;
Chris Mason5f39d392007-10-15 16:14:19 -0400785 if (btrfs_header_generation(buf) == transid) {
786 free_extent_buffer(buf);
Yanc5492282007-11-06 10:25:25 -0500787 return 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400788 }
Chris Masonf4b9aa82007-03-27 11:05:53 -0400789 }
Chris Mason5f39d392007-10-15 16:14:19 -0400790 free_extent_buffer(buf);
Chris Mason8ef97622007-03-26 10:15:30 -0400791 }
Yan324ae4d2007-11-16 14:57:08 -0500792 update_pinned_extents(root, bytenr, num_bytes, 1);
Chris Masonf4b9aa82007-03-27 11:05:53 -0400793 } else {
Chris Mason1a5bc162007-10-15 16:15:26 -0400794 set_extent_bits(&root->fs_info->pending_del,
Chris Masondb945352007-10-15 16:15:53 -0400795 bytenr, bytenr + num_bytes - 1,
796 EXTENT_LOCKED, GFP_NOFS);
Chris Masonf4b9aa82007-03-27 11:05:53 -0400797 }
Chris Masonbe744172007-05-06 10:15:01 -0400798 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -0400799 return 0;
800}
801
Chris Masona28ec192007-03-06 20:08:01 -0500802/*
803 * remove an extent from the root, returns 0 on success
804 */
Chris Masone089f052007-03-16 16:20:31 -0400805static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masondb945352007-10-15 16:15:53 -0400806 *root, u64 bytenr, u64 num_bytes, int pin,
Chris Masone37c9e62007-05-09 20:13:14 -0400807 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -0500808{
Chris Mason5caf2a02007-04-02 11:20:42 -0400809 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -0400810 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -0400811 struct btrfs_fs_info *info = root->fs_info;
812 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400813 struct extent_buffer *leaf;
Chris Masona28ec192007-03-06 20:08:01 -0500814 int ret;
Chris Mason234b63a2007-03-13 10:46:10 -0400815 struct btrfs_extent_item *ei;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400816 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500817
Chris Masondb945352007-10-15 16:15:53 -0400818 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -0400819 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -0400820 key.offset = num_bytes;
Chris Masona28ec192007-03-06 20:08:01 -0500821
Chris Mason5caf2a02007-04-02 11:20:42 -0400822 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400823 if (!path)
824 return -ENOMEM;
825
Chris Mason5caf2a02007-04-02 11:20:42 -0400826 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400827 if (ret < 0)
828 return ret;
829 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400830
831 leaf = path->nodes[0];
832 ei = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason123abc82007-03-14 14:14:43 -0400833 struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400834 refs = btrfs_extent_refs(leaf, ei);
835 BUG_ON(refs == 0);
836 refs -= 1;
837 btrfs_set_extent_refs(leaf, ei, refs);
838 btrfs_mark_buffer_dirty(leaf);
839
Chris Masoncf27e1e2007-03-13 09:49:06 -0400840 if (refs == 0) {
Chris Masondb945352007-10-15 16:15:53 -0400841 u64 super_used;
842 u64 root_used;
Chris Mason78fae272007-03-25 11:35:08 -0400843
844 if (pin) {
Chris Masondb945352007-10-15 16:15:53 -0400845 ret = pin_down_bytes(root, bytenr, num_bytes, 0);
Yanc5492282007-11-06 10:25:25 -0500846 if (ret > 0)
847 mark_free = 1;
848 BUG_ON(ret < 0);
Chris Mason78fae272007-03-25 11:35:08 -0400849 }
850
Josef Bacik58176a92007-08-29 15:47:34 -0400851 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -0400852 super_used = btrfs_super_bytes_used(&info->super_copy);
853 btrfs_set_super_bytes_used(&info->super_copy,
854 super_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -0400855
856 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -0400857 root_used = btrfs_root_used(&root->root_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400858 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -0400859 root_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -0400860
Chris Mason5caf2a02007-04-02 11:20:42 -0400861 ret = btrfs_del_item(trans, extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400862 if (ret) {
863 return ret;
864 }
Chris Masondb945352007-10-15 16:15:53 -0400865 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
Chris Mason1e2677e2007-05-29 16:52:18 -0400866 mark_free, 0);
Chris Mason9078a3e2007-04-26 16:46:15 -0400867 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -0500868 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400869 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -0400870 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -0500871 return ret;
872}
873
874/*
Chris Masonfec577f2007-02-26 10:40:21 -0500875 * find all the blocks marked as pending in the radix tree and remove
876 * them from the extent map
877 */
Chris Masone089f052007-03-16 16:20:31 -0400878static int del_pending_extents(struct btrfs_trans_handle *trans, struct
879 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -0500880{
881 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -0400882 int err = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -0400883 u64 start;
884 u64 end;
885 struct extent_map_tree *pending_del;
886 struct extent_map_tree *pinned_extents;
Chris Mason8ef97622007-03-26 10:15:30 -0400887
Chris Mason1a5bc162007-10-15 16:15:26 -0400888 pending_del = &extent_root->fs_info->pending_del;
889 pinned_extents = &extent_root->fs_info->pinned_extents;
Chris Masonfec577f2007-02-26 10:40:21 -0500890
891 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -0400892 ret = find_first_extent_bit(pending_del, 0, &start, &end,
893 EXTENT_LOCKED);
894 if (ret)
Chris Masonfec577f2007-02-26 10:40:21 -0500895 break;
Yan324ae4d2007-11-16 14:57:08 -0500896 update_pinned_extents(extent_root, start, end + 1 - start, 1);
Chris Mason1a5bc162007-10-15 16:15:26 -0400897 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
898 GFP_NOFS);
899 ret = __free_extent(trans, extent_root,
900 start, end + 1 - start, 0, 0);
901 if (ret)
902 err = ret;
Chris Masonfec577f2007-02-26 10:40:21 -0500903 }
Chris Masone20d96d2007-03-22 12:13:20 -0400904 return err;
Chris Masonfec577f2007-02-26 10:40:21 -0500905}
906
907/*
908 * remove an extent from the root, returns 0 on success
909 */
Chris Masone089f052007-03-16 16:20:31 -0400910int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masondb945352007-10-15 16:15:53 -0400911 *root, u64 bytenr, u64 num_bytes, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -0500912{
Chris Mason9f5fae22007-03-20 14:38:32 -0400913 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -0500914 int pending_ret;
915 int ret;
Chris Masona28ec192007-03-06 20:08:01 -0500916
Chris Masondb945352007-10-15 16:15:53 -0400917 WARN_ON(num_bytes < root->sectorsize);
Chris Masona28ec192007-03-06 20:08:01 -0500918 if (root == extent_root) {
Chris Masondb945352007-10-15 16:15:53 -0400919 pin_down_bytes(root, bytenr, num_bytes, 1);
Chris Masona28ec192007-03-06 20:08:01 -0500920 return 0;
921 }
Chris Masondb945352007-10-15 16:15:53 -0400922 ret = __free_extent(trans, root, bytenr, num_bytes, pin, pin == 0);
Chris Masone20d96d2007-03-22 12:13:20 -0400923 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -0500924 return ret ? ret : pending_ret;
925}
926
927/*
928 * walks the btree of allocated extents and find a hole of a given size.
929 * The key ins is changed to record the hole:
930 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -0400931 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -0500932 * ins->offset == number of blocks
933 * Any available blocks before search_start are skipped.
934 */
Chris Masone089f052007-03-16 16:20:31 -0400935static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masondb945352007-10-15 16:15:53 -0400936 *orig_root, u64 num_bytes, u64 empty_size,
937 u64 search_start, u64 search_end, u64 hint_byte,
Chris Masonf2654de2007-06-26 12:20:46 -0400938 struct btrfs_key *ins, u64 exclude_start,
939 u64 exclude_nr, int data)
Chris Masonfec577f2007-02-26 10:40:21 -0500940{
Chris Mason5caf2a02007-04-02 11:20:42 -0400941 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -0400942 struct btrfs_key key;
Chris Masonfec577f2007-02-26 10:40:21 -0500943 int ret;
944 u64 hole_size = 0;
945 int slot = 0;
Chris Masondb945352007-10-15 16:15:53 -0400946 u64 last_byte = 0;
Chris Masonbe744172007-05-06 10:15:01 -0400947 u64 orig_search_start = search_start;
Chris Masonfec577f2007-02-26 10:40:21 -0500948 int start_found;
Chris Mason5f39d392007-10-15 16:14:19 -0400949 struct extent_buffer *l;
Chris Mason9f5fae22007-03-20 14:38:32 -0400950 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -0400951 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -0400952 u64 total_needed = num_bytes;
Chris Masone20d96d2007-03-22 12:13:20 -0400953 int level;
Chris Masonbe08c1b2007-05-03 09:06:49 -0400954 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -0400955 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -0400956 int wrapped = 0;
Chris Masonf84a8b32007-11-06 10:26:29 -0500957 u64 cached_start;
Chris Masonfec577f2007-02-26 10:40:21 -0500958
Chris Masondb945352007-10-15 16:15:53 -0400959 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -0400960 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
961
Chris Mason5f39d392007-10-15 16:14:19 -0400962 level = btrfs_header_level(root->node);
963
Chris Mason015a739c2007-11-26 16:15:16 -0800964 if (num_bytes >= 32 * 1024 * 1024 && hint_byte) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500965 data = BTRFS_BLOCK_GROUP_MIXED;
966 }
967
Chris Mason3e1ad542007-05-07 20:03:49 -0400968 if (search_end == (u64)-1)
Chris Masondb945352007-10-15 16:15:53 -0400969 search_end = btrfs_super_total_bytes(&info->super_copy);
970 if (hint_byte) {
971 block_group = btrfs_lookup_block_group(info, hint_byte);
Chris Masonbe744172007-05-06 10:15:01 -0400972 block_group = btrfs_find_block_group(root, block_group,
Chris Masondb945352007-10-15 16:15:53 -0400973 hint_byte, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -0400974 } else {
975 block_group = btrfs_find_block_group(root,
976 trans->block_group, 0,
Chris Masonde428b62007-05-18 13:28:27 -0400977 data, 1);
Chris Masonbe744172007-05-06 10:15:01 -0400978 }
979
Chris Mason6702ed42007-08-07 16:15:09 -0400980 total_needed += empty_size;
Chris Masone0115992007-06-19 16:23:05 -0400981 path = btrfs_alloc_path();
Chris Masonbe744172007-05-06 10:15:01 -0400982check_failed:
Yan5e5745d2007-11-16 14:57:09 -0500983 search_start = find_search_start(root, &block_group, search_start,
984 total_needed, data, full_scan);
Chris Masonf84a8b32007-11-06 10:26:29 -0500985 cached_start = search_start;
Chris Mason5caf2a02007-04-02 11:20:42 -0400986 btrfs_init_path(path);
Chris Masonfec577f2007-02-26 10:40:21 -0500987 ins->objectid = search_start;
988 ins->offset = 0;
Chris Masonfec577f2007-02-26 10:40:21 -0500989 start_found = 0;
Chris Mason2cc58cf2007-08-27 16:49:44 -0400990 path->reada = 2;
Chris Masone37c9e62007-05-09 20:13:14 -0400991
Chris Mason5caf2a02007-04-02 11:20:42 -0400992 ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
Chris Mason0f70abe2007-02-28 16:46:22 -0500993 if (ret < 0)
994 goto error;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500995
Chris Masone37c9e62007-05-09 20:13:14 -0400996 if (path->slots[0] > 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -0400997 path->slots[0]--;
Chris Masone37c9e62007-05-09 20:13:14 -0400998 }
999
Chris Mason5f39d392007-10-15 16:14:19 -04001000 l = path->nodes[0];
1001 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
1002
Chris Masone37c9e62007-05-09 20:13:14 -04001003 /*
1004 * a rare case, go back one key if we hit a block group item
1005 * instead of an extent item
1006 */
1007 if (btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY &&
1008 key.objectid + key.offset >= search_start) {
1009 ins->objectid = key.objectid;
1010 ins->offset = key.offset - 1;
1011 btrfs_release_path(root, path);
1012 ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
1013 if (ret < 0)
1014 goto error;
1015
1016 if (path->slots[0] > 0) {
1017 path->slots[0]--;
1018 }
1019 }
Chris Mason0579da42007-03-07 16:15:30 -05001020
Chris Masonfec577f2007-02-26 10:40:21 -05001021 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001022 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -04001023 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04001024 if (slot >= btrfs_header_nritems(l)) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001025 ret = btrfs_next_leaf(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -05001026 if (ret == 0)
1027 continue;
Chris Mason0f70abe2007-02-28 16:46:22 -05001028 if (ret < 0)
1029 goto error;
Chris Masone19caa52007-10-15 16:17:44 -04001030
1031 search_start = max(search_start,
1032 block_group->key.objectid);
Chris Masonfec577f2007-02-26 10:40:21 -05001033 if (!start_found) {
1034 ins->objectid = search_start;
Chris Mason3e1ad542007-05-07 20:03:49 -04001035 ins->offset = search_end - search_start;
Chris Masonfec577f2007-02-26 10:40:21 -05001036 start_found = 1;
1037 goto check_pending;
1038 }
Chris Masondb945352007-10-15 16:15:53 -04001039 ins->objectid = last_byte > search_start ?
1040 last_byte : search_start;
Chris Mason3e1ad542007-05-07 20:03:49 -04001041 ins->offset = search_end - ins->objectid;
Chris Masone19caa52007-10-15 16:17:44 -04001042 BUG_ON(ins->objectid >= search_end);
Chris Masonfec577f2007-02-26 10:40:21 -05001043 goto check_pending;
1044 }
Chris Mason5f39d392007-10-15 16:14:19 -04001045 btrfs_item_key_to_cpu(l, &key, slot);
Chris Mason96b51792007-10-15 16:15:19 -04001046
Chris Masondb945352007-10-15 16:15:53 -04001047 if (key.objectid >= search_start && key.objectid > last_byte &&
Chris Masone37c9e62007-05-09 20:13:14 -04001048 start_found) {
Chris Masondb945352007-10-15 16:15:53 -04001049 if (last_byte < search_start)
1050 last_byte = search_start;
1051 hole_size = key.objectid - last_byte;
1052 if (hole_size >= num_bytes) {
1053 ins->objectid = last_byte;
Chris Masone37c9e62007-05-09 20:13:14 -04001054 ins->offset = hole_size;
1055 goto check_pending;
Chris Mason0579da42007-03-07 16:15:30 -05001056 }
Chris Masonfec577f2007-02-26 10:40:21 -05001057 }
Chris Mason96b51792007-10-15 16:15:19 -04001058 if (btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY) {
1059 if (!start_found) {
Chris Masondb945352007-10-15 16:15:53 -04001060 last_byte = key.objectid;
Chris Mason96b51792007-10-15 16:15:19 -04001061 start_found = 1;
1062 }
Chris Masone37c9e62007-05-09 20:13:14 -04001063 goto next;
Chris Mason96b51792007-10-15 16:15:19 -04001064 }
1065
Chris Masone37c9e62007-05-09 20:13:14 -04001066
Chris Mason0579da42007-03-07 16:15:30 -05001067 start_found = 1;
Chris Masondb945352007-10-15 16:15:53 -04001068 last_byte = key.objectid + key.offset;
Chris Masonf510cfe2007-10-15 16:14:48 -04001069
Chris Mason257d0ce2007-11-07 21:08:16 -05001070 if (!full_scan && data != BTRFS_BLOCK_GROUP_MIXED &&
1071 last_byte >= block_group->key.objectid +
Chris Masonbe744172007-05-06 10:15:01 -04001072 block_group->key.offset) {
1073 btrfs_release_path(root, path);
1074 search_start = block_group->key.objectid +
Chris Masone19caa52007-10-15 16:17:44 -04001075 block_group->key.offset;
Chris Masonbe744172007-05-06 10:15:01 -04001076 goto new_group;
1077 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001078next:
Chris Mason5caf2a02007-04-02 11:20:42 -04001079 path->slots[0]++;
Chris Masonde428b62007-05-18 13:28:27 -04001080 cond_resched();
Chris Masonfec577f2007-02-26 10:40:21 -05001081 }
Chris Masonfec577f2007-02-26 10:40:21 -05001082check_pending:
1083 /* we have to make sure we didn't find an extent that has already
1084 * been allocated by the map tree or the original allocation
1085 */
Chris Mason5caf2a02007-04-02 11:20:42 -04001086 btrfs_release_path(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -05001087 BUG_ON(ins->objectid < search_start);
Chris Masone37c9e62007-05-09 20:13:14 -04001088
Chris Masondb945352007-10-15 16:15:53 -04001089 if (ins->objectid + num_bytes >= search_end)
Chris Masoncf675822007-09-17 11:00:51 -04001090 goto enospc;
Chris Mason257d0ce2007-11-07 21:08:16 -05001091 if (!full_scan && data != BTRFS_BLOCK_GROUP_MIXED &&
Yan5cf66422007-11-16 14:57:09 -05001092 ins->objectid + num_bytes > block_group->
Chris Masone19caa52007-10-15 16:17:44 -04001093 key.objectid + block_group->key.offset) {
1094 search_start = block_group->key.objectid +
1095 block_group->key.offset;
1096 goto new_group;
1097 }
Chris Mason1a5bc162007-10-15 16:15:26 -04001098 if (test_range_bit(&info->extent_ins, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001099 ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
1100 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001101 goto new_group;
1102 }
1103 if (test_range_bit(&info->pinned_extents, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001104 ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
1105 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001106 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05001107 }
Chris Masondb945352007-10-15 16:15:53 -04001108 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
Chris Masonf2654de2007-06-26 12:20:46 -04001109 ins->objectid < exclude_start + exclude_nr)) {
1110 search_start = exclude_start + exclude_nr;
1111 goto new_group;
1112 }
Chris Masone37c9e62007-05-09 20:13:14 -04001113 if (!data) {
Chris Mason5276aed2007-06-11 21:33:38 -04001114 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Mason26b80032007-08-08 20:17:12 -04001115 if (block_group)
1116 trans->block_group = block_group;
Chris Masoncd1bc462007-04-27 10:08:34 -04001117 }
Chris Masondb945352007-10-15 16:15:53 -04001118 ins->offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001119 btrfs_free_path(path);
Chris Masonfec577f2007-02-26 10:40:21 -05001120 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04001121
1122new_group:
Chris Masondb945352007-10-15 16:15:53 -04001123 if (search_start + num_bytes >= search_end) {
Chris Masoncf675822007-09-17 11:00:51 -04001124enospc:
Chris Masonbe744172007-05-06 10:15:01 -04001125 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04001126 if (full_scan) {
1127 ret = -ENOSPC;
1128 goto error;
1129 }
Chris Mason6702ed42007-08-07 16:15:09 -04001130 if (wrapped) {
1131 if (!full_scan)
1132 total_needed -= empty_size;
Chris Masonfbdc7622007-05-30 10:22:12 -04001133 full_scan = 1;
Chris Mason6702ed42007-08-07 16:15:09 -04001134 } else
Chris Masonfbdc7622007-05-30 10:22:12 -04001135 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04001136 }
Chris Mason5276aed2007-06-11 21:33:38 -04001137 block_group = btrfs_lookup_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04001138 cond_resched();
Chris Masonbe744172007-05-06 10:15:01 -04001139 if (!full_scan)
1140 block_group = btrfs_find_block_group(root, block_group,
Chris Masonde428b62007-05-18 13:28:27 -04001141 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04001142 goto check_failed;
1143
Chris Mason0f70abe2007-02-28 16:46:22 -05001144error:
Chris Mason5caf2a02007-04-02 11:20:42 -04001145 btrfs_release_path(root, path);
1146 btrfs_free_path(path);
Chris Mason0f70abe2007-02-28 16:46:22 -05001147 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001148}
Chris Masonfec577f2007-02-26 10:40:21 -05001149/*
Chris Masonfec577f2007-02-26 10:40:21 -05001150 * finds a free extent and does all the dirty work required for allocation
1151 * returns the key for the extent through ins, and a tree buffer for
1152 * the first block of the extent through buf.
1153 *
1154 * returns 0 if everything worked, non-zero otherwise.
1155 */
Chris Mason4d775672007-04-20 20:23:12 -04001156int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
1157 struct btrfs_root *root, u64 owner,
Chris Masondb945352007-10-15 16:15:53 -04001158 u64 num_bytes, u64 empty_size, u64 hint_byte,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001159 u64 search_end, struct btrfs_key *ins, int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001160{
1161 int ret;
1162 int pending_ret;
Chris Masondb945352007-10-15 16:15:53 -04001163 u64 super_used, root_used;
Chris Masonfbdc7622007-05-30 10:22:12 -04001164 u64 search_start = 0;
Chris Mason1261ec42007-03-20 20:35:03 -04001165 struct btrfs_fs_info *info = root->fs_info;
1166 struct btrfs_root *extent_root = info->extent_root;
Chris Mason234b63a2007-03-13 10:46:10 -04001167 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -05001168
Chris Mason5f39d392007-10-15 16:14:19 -04001169 btrfs_set_stack_extent_refs(&extent_item, 1);
1170 btrfs_set_stack_extent_owner(&extent_item, owner);
Chris Masonfec577f2007-02-26 10:40:21 -05001171
Chris Masondb945352007-10-15 16:15:53 -04001172 WARN_ON(num_bytes < root->sectorsize);
1173 ret = find_free_extent(trans, root, num_bytes, empty_size,
1174 search_start, search_end, hint_byte, ins,
Chris Mason26b80032007-08-08 20:17:12 -04001175 trans->alloc_exclude_start,
1176 trans->alloc_exclude_nr, data);
Chris Masonccd467d2007-06-28 15:57:36 -04001177 BUG_ON(ret);
Chris Masonf2654de2007-06-26 12:20:46 -04001178 if (ret)
1179 return ret;
1180
Josef Bacik58176a92007-08-29 15:47:34 -04001181 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001182 super_used = btrfs_super_bytes_used(&info->super_copy);
1183 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
Chris Mason26b80032007-08-08 20:17:12 -04001184
Josef Bacik58176a92007-08-29 15:47:34 -04001185 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001186 root_used = btrfs_root_used(&root->root_item);
1187 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001188
Chris Masonf510cfe2007-10-15 16:14:48 -04001189 clear_extent_dirty(&root->fs_info->free_space_cache,
1190 ins->objectid, ins->objectid + ins->offset - 1,
1191 GFP_NOFS);
1192
Chris Mason26b80032007-08-08 20:17:12 -04001193 if (root == extent_root) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001194 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
1195 ins->objectid + ins->offset - 1,
1196 EXTENT_LOCKED, GFP_NOFS);
Chris Masone19caa52007-10-15 16:17:44 -04001197 WARN_ON(data == 1);
Chris Mason26b80032007-08-08 20:17:12 -04001198 goto update_block;
1199 }
1200
1201 WARN_ON(trans->alloc_exclude_nr);
1202 trans->alloc_exclude_start = ins->objectid;
1203 trans->alloc_exclude_nr = ins->offset;
Chris Masone089f052007-03-16 16:20:31 -04001204 ret = btrfs_insert_item(trans, extent_root, ins, &extent_item,
1205 sizeof(extent_item));
Chris Mason037e6392007-03-07 11:50:24 -05001206
Chris Mason26b80032007-08-08 20:17:12 -04001207 trans->alloc_exclude_start = 0;
1208 trans->alloc_exclude_nr = 0;
1209
Chris Masonccd467d2007-06-28 15:57:36 -04001210 BUG_ON(ret);
Chris Masone089f052007-03-16 16:20:31 -04001211 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001212 pending_ret = del_pending_extents(trans, extent_root);
Chris Masonf510cfe2007-10-15 16:14:48 -04001213
Chris Masone37c9e62007-05-09 20:13:14 -04001214 if (ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001215 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001216 }
1217 if (pending_ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001218 return pending_ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001219 }
Chris Mason26b80032007-08-08 20:17:12 -04001220
1221update_block:
Chris Mason1e2677e2007-05-29 16:52:18 -04001222 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0,
1223 data);
Chris Masonfabb5682007-06-07 22:13:21 -04001224 BUG_ON(ret);
Chris Mason037e6392007-03-07 11:50:24 -05001225 return 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001226}
1227
1228/*
1229 * helper function to allocate a block for a given tree
1230 * returns the tree buffer or NULL.
1231 */
Chris Mason5f39d392007-10-15 16:14:19 -04001232struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -04001233 struct btrfs_root *root,
1234 u32 blocksize, u64 hint,
Chris Mason5f39d392007-10-15 16:14:19 -04001235 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05001236{
Chris Masone2fa7222007-03-12 16:22:34 -04001237 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05001238 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04001239 struct extent_buffer *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05001240
Chris Mason4d775672007-04-20 20:23:12 -04001241 ret = btrfs_alloc_extent(trans, root, root->root_key.objectid,
Chris Masondb945352007-10-15 16:15:53 -04001242 blocksize, empty_size, hint,
1243 (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05001244 if (ret) {
Chris Mason54aa1f42007-06-22 14:16:25 -04001245 BUG_ON(ret > 0);
1246 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05001247 }
Chris Masondb945352007-10-15 16:15:53 -04001248 buf = btrfs_find_create_tree_block(root, ins.objectid, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04001249 if (!buf) {
Chris Masondb945352007-10-15 16:15:53 -04001250 btrfs_free_extent(trans, root, ins.objectid, blocksize, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001251 return ERR_PTR(-ENOMEM);
1252 }
Chris Mason5f39d392007-10-15 16:14:19 -04001253 btrfs_set_buffer_uptodate(buf);
1254 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
1255 buf->start + buf->len - 1, GFP_NOFS);
Chris Mason19c00dd2007-10-15 16:19:22 -04001256 set_extent_bits(&BTRFS_I(root->fs_info->btree_inode)->extent_tree,
1257 buf->start, buf->start + buf->len - 1,
1258 EXTENT_CSUM, GFP_NOFS);
1259 buf->flags |= EXTENT_CSUM;
Chris Mason6b800532007-10-15 16:17:34 -04001260 btrfs_set_buffer_defrag(buf);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001261 trans->blocks_used++;
Chris Masonfec577f2007-02-26 10:40:21 -05001262 return buf;
1263}
Chris Masona28ec192007-03-06 20:08:01 -05001264
Chris Mason6407bf62007-03-27 06:33:00 -04001265static int drop_leaf_ref(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001266 struct btrfs_root *root, struct extent_buffer *leaf)
Chris Mason6407bf62007-03-27 06:33:00 -04001267{
Chris Mason5f39d392007-10-15 16:14:19 -04001268 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04001269 struct btrfs_file_extent_item *fi;
1270 int i;
1271 int nritems;
1272 int ret;
1273
Chris Mason5f39d392007-10-15 16:14:19 -04001274 BUG_ON(!btrfs_is_leaf(leaf));
1275 nritems = btrfs_header_nritems(leaf);
Chris Mason6407bf62007-03-27 06:33:00 -04001276 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001277 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001278
1279 btrfs_item_key_to_cpu(leaf, &key, i);
1280 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04001281 continue;
1282 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001283 if (btrfs_file_extent_type(leaf, fi) ==
1284 BTRFS_FILE_EXTENT_INLINE)
Chris Mason236454df2007-04-19 13:37:44 -04001285 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04001286 /*
1287 * FIXME make sure to insert a trans record that
1288 * repeats the snapshot del on crash
1289 */
Chris Masondb945352007-10-15 16:15:53 -04001290 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1291 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04001292 continue;
Chris Masondb945352007-10-15 16:15:53 -04001293 ret = btrfs_free_extent(trans, root, disk_bytenr,
1294 btrfs_file_extent_disk_num_bytes(leaf, fi), 0);
Chris Mason6407bf62007-03-27 06:33:00 -04001295 BUG_ON(ret);
1296 }
1297 return 0;
1298}
1299
Chris Masone0115992007-06-19 16:23:05 -04001300static void reada_walk_down(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -04001301 struct extent_buffer *node)
Chris Masone0115992007-06-19 16:23:05 -04001302{
1303 int i;
1304 u32 nritems;
Chris Masondb945352007-10-15 16:15:53 -04001305 u64 bytenr;
Chris Masone0115992007-06-19 16:23:05 -04001306 int ret;
1307 u32 refs;
Chris Masondb945352007-10-15 16:15:53 -04001308 int level;
1309 u32 blocksize;
Chris Masone0115992007-06-19 16:23:05 -04001310
Chris Mason5f39d392007-10-15 16:14:19 -04001311 nritems = btrfs_header_nritems(node);
Chris Masondb945352007-10-15 16:15:53 -04001312 level = btrfs_header_level(node);
Chris Masone0115992007-06-19 16:23:05 -04001313 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001314 bytenr = btrfs_node_blockptr(node, i);
1315 blocksize = btrfs_level_size(root, level - 1);
1316 ret = lookup_extent_ref(NULL, root, bytenr, blocksize, &refs);
Chris Masone0115992007-06-19 16:23:05 -04001317 BUG_ON(ret);
1318 if (refs != 1)
1319 continue;
Chris Mason409eb952007-08-08 20:17:12 -04001320 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -04001321 ret = readahead_tree_block(root, bytenr, blocksize);
Chris Mason409eb952007-08-08 20:17:12 -04001322 cond_resched();
1323 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone0115992007-06-19 16:23:05 -04001324 if (ret)
1325 break;
1326 }
1327}
1328
Chris Mason9aca1d52007-03-13 11:09:37 -04001329/*
1330 * helper function for drop_snapshot, this walks down the tree dropping ref
1331 * counts as it goes.
1332 */
Chris Masone089f052007-03-16 16:20:31 -04001333static int walk_down_tree(struct btrfs_trans_handle *trans, struct btrfs_root
1334 *root, struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05001335{
Chris Mason5f39d392007-10-15 16:14:19 -04001336 struct extent_buffer *next;
1337 struct extent_buffer *cur;
Chris Masondb945352007-10-15 16:15:53 -04001338 u64 bytenr;
1339 u32 blocksize;
Chris Mason20524f02007-03-10 06:35:47 -05001340 int ret;
1341 u32 refs;
1342
Chris Mason5caf2a02007-04-02 11:20:42 -04001343 WARN_ON(*level < 0);
1344 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason5f39d392007-10-15 16:14:19 -04001345 ret = lookup_extent_ref(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04001346 path->nodes[*level]->start,
1347 path->nodes[*level]->len, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05001348 BUG_ON(ret);
1349 if (refs > 1)
1350 goto out;
Chris Masone0115992007-06-19 16:23:05 -04001351
Chris Mason9aca1d52007-03-13 11:09:37 -04001352 /*
1353 * walk down to the last node level and free all the leaves
1354 */
Chris Mason6407bf62007-03-27 06:33:00 -04001355 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001356 WARN_ON(*level < 0);
1357 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05001358 cur = path->nodes[*level];
Chris Masone0115992007-06-19 16:23:05 -04001359
1360 if (*level > 0 && path->slots[*level] == 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001361 reada_walk_down(root, cur);
Chris Masone0115992007-06-19 16:23:05 -04001362
Chris Mason5f39d392007-10-15 16:14:19 -04001363 if (btrfs_header_level(cur) != *level)
Chris Mason2c90e5d2007-04-02 10:50:19 -04001364 WARN_ON(1);
Chris Masone0115992007-06-19 16:23:05 -04001365
Chris Mason7518a232007-03-12 12:01:18 -04001366 if (path->slots[*level] >=
Chris Mason5f39d392007-10-15 16:14:19 -04001367 btrfs_header_nritems(cur))
Chris Mason20524f02007-03-10 06:35:47 -05001368 break;
Chris Mason6407bf62007-03-27 06:33:00 -04001369 if (*level == 0) {
1370 ret = drop_leaf_ref(trans, root, cur);
1371 BUG_ON(ret);
1372 break;
1373 }
Chris Masondb945352007-10-15 16:15:53 -04001374 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
1375 blocksize = btrfs_level_size(root, *level - 1);
1376 ret = lookup_extent_ref(trans, root, bytenr, blocksize, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04001377 BUG_ON(ret);
1378 if (refs != 1) {
Chris Mason20524f02007-03-10 06:35:47 -05001379 path->slots[*level]++;
Chris Masondb945352007-10-15 16:15:53 -04001380 ret = btrfs_free_extent(trans, root, bytenr,
1381 blocksize, 1);
Chris Mason20524f02007-03-10 06:35:47 -05001382 BUG_ON(ret);
1383 continue;
1384 }
Chris Masondb945352007-10-15 16:15:53 -04001385 next = btrfs_find_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001386 if (!next || !btrfs_buffer_uptodate(next)) {
1387 free_extent_buffer(next);
Chris Masone9d0b132007-08-10 14:06:19 -04001388 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -04001389 next = read_tree_block(root, bytenr, blocksize);
Chris Masone9d0b132007-08-10 14:06:19 -04001390 mutex_lock(&root->fs_info->fs_mutex);
1391
1392 /* we dropped the lock, check one more time */
Chris Masondb945352007-10-15 16:15:53 -04001393 ret = lookup_extent_ref(trans, root, bytenr,
1394 blocksize, &refs);
Chris Masone9d0b132007-08-10 14:06:19 -04001395 BUG_ON(ret);
1396 if (refs != 1) {
1397 path->slots[*level]++;
Chris Mason5f39d392007-10-15 16:14:19 -04001398 free_extent_buffer(next);
Chris Masone9d0b132007-08-10 14:06:19 -04001399 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04001400 bytenr, blocksize, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04001401 BUG_ON(ret);
1402 continue;
1403 }
1404 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001405 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04001406 if (path->nodes[*level-1])
Chris Mason5f39d392007-10-15 16:14:19 -04001407 free_extent_buffer(path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05001408 path->nodes[*level-1] = next;
Chris Mason5f39d392007-10-15 16:14:19 -04001409 *level = btrfs_header_level(next);
Chris Mason20524f02007-03-10 06:35:47 -05001410 path->slots[*level] = 0;
1411 }
1412out:
Chris Mason5caf2a02007-04-02 11:20:42 -04001413 WARN_ON(*level < 0);
1414 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Masondb945352007-10-15 16:15:53 -04001415 ret = btrfs_free_extent(trans, root, path->nodes[*level]->start,
1416 path->nodes[*level]->len, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001417 free_extent_buffer(path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05001418 path->nodes[*level] = NULL;
1419 *level += 1;
1420 BUG_ON(ret);
1421 return 0;
1422}
1423
Chris Mason9aca1d52007-03-13 11:09:37 -04001424/*
1425 * helper for dropping snapshots. This walks back up the tree in the path
1426 * to find the first node higher up where we haven't yet gone through
1427 * all the slots
1428 */
Chris Masone089f052007-03-16 16:20:31 -04001429static int walk_up_tree(struct btrfs_trans_handle *trans, struct btrfs_root
1430 *root, struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05001431{
1432 int i;
1433 int slot;
1434 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04001435 struct btrfs_root_item *root_item = &root->root_item;
1436
Chris Mason234b63a2007-03-13 10:46:10 -04001437 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05001438 slot = path->slots[i];
Chris Mason5f39d392007-10-15 16:14:19 -04001439 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
1440 struct extent_buffer *node;
1441 struct btrfs_disk_key disk_key;
1442 node = path->nodes[i];
Chris Mason20524f02007-03-10 06:35:47 -05001443 path->slots[i]++;
1444 *level = i;
Chris Mason9f3a7422007-08-07 15:52:19 -04001445 WARN_ON(*level == 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001446 btrfs_node_key(node, &disk_key, path->slots[i]);
Chris Mason9f3a7422007-08-07 15:52:19 -04001447 memcpy(&root_item->drop_progress,
Chris Mason5f39d392007-10-15 16:14:19 -04001448 &disk_key, sizeof(disk_key));
Chris Mason9f3a7422007-08-07 15:52:19 -04001449 root_item->drop_level = i;
Chris Mason20524f02007-03-10 06:35:47 -05001450 return 0;
1451 } else {
Chris Masone089f052007-03-16 16:20:31 -04001452 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04001453 path->nodes[*level]->start,
1454 path->nodes[*level]->len, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04001455 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001456 free_extent_buffer(path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04001457 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05001458 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05001459 }
1460 }
1461 return 1;
1462}
1463
Chris Mason9aca1d52007-03-13 11:09:37 -04001464/*
1465 * drop the reference count on the tree rooted at 'snap'. This traverses
1466 * the tree freeing any blocks that have a ref count of zero after being
1467 * decremented.
1468 */
Chris Masone089f052007-03-16 16:20:31 -04001469int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04001470 *root)
Chris Mason20524f02007-03-10 06:35:47 -05001471{
Chris Mason3768f362007-03-13 16:47:54 -04001472 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04001473 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05001474 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04001475 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05001476 int i;
1477 int orig_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04001478 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05001479
Chris Mason5caf2a02007-04-02 11:20:42 -04001480 path = btrfs_alloc_path();
1481 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05001482
Chris Mason5f39d392007-10-15 16:14:19 -04001483 level = btrfs_header_level(root->node);
Chris Mason20524f02007-03-10 06:35:47 -05001484 orig_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04001485 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
1486 path->nodes[level] = root->node;
Chris Masonf510cfe2007-10-15 16:14:48 -04001487 extent_buffer_get(root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -04001488 path->slots[level] = 0;
1489 } else {
1490 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001491 struct btrfs_disk_key found_key;
1492 struct extent_buffer *node;
Chris Mason6702ed42007-08-07 16:15:09 -04001493
Chris Mason9f3a7422007-08-07 15:52:19 -04001494 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Chris Mason6702ed42007-08-07 16:15:09 -04001495 level = root_item->drop_level;
1496 path->lowest_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04001497 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason6702ed42007-08-07 16:15:09 -04001498 if (wret < 0) {
Chris Mason9f3a7422007-08-07 15:52:19 -04001499 ret = wret;
1500 goto out;
1501 }
Chris Mason5f39d392007-10-15 16:14:19 -04001502 node = path->nodes[level];
1503 btrfs_node_key(node, &found_key, path->slots[level]);
1504 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
1505 sizeof(found_key)));
Chris Mason9f3a7422007-08-07 15:52:19 -04001506 }
Chris Mason20524f02007-03-10 06:35:47 -05001507 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001508 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04001509 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05001510 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04001511 if (wret < 0)
1512 ret = wret;
1513
Chris Mason5caf2a02007-04-02 11:20:42 -04001514 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04001515 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05001516 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04001517 if (wret < 0)
1518 ret = wret;
Chris Mason409eb952007-08-08 20:17:12 -04001519 ret = -EAGAIN;
Chris Mason409eb952007-08-08 20:17:12 -04001520 break;
Chris Mason20524f02007-03-10 06:35:47 -05001521 }
Chris Mason83e15a22007-03-12 09:03:27 -04001522 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001523 if (path->nodes[i]) {
Chris Mason5f39d392007-10-15 16:14:19 -04001524 free_extent_buffer(path->nodes[i]);
Chris Mason0f827312007-10-15 16:18:56 -04001525 path->nodes[i] = NULL;
Chris Mason83e15a22007-03-12 09:03:27 -04001526 }
Chris Mason20524f02007-03-10 06:35:47 -05001527 }
Chris Mason9f3a7422007-08-07 15:52:19 -04001528out:
Chris Mason5caf2a02007-04-02 11:20:42 -04001529 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04001530 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05001531}
Chris Mason9078a3e2007-04-26 16:46:15 -04001532
Chris Masonbe744172007-05-06 10:15:01 -04001533int btrfs_free_block_groups(struct btrfs_fs_info *info)
1534{
Chris Masonf510cfe2007-10-15 16:14:48 -04001535 u64 start;
1536 u64 end;
Yanb97f9202007-11-01 11:28:41 -04001537 u64 ptr;
Chris Mason96b51792007-10-15 16:15:19 -04001538 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04001539 while(1) {
1540 ret = find_first_extent_bit(&info->block_group_cache, 0,
1541 &start, &end, (unsigned int)-1);
1542 if (ret)
1543 break;
Yanb97f9202007-11-01 11:28:41 -04001544 ret = get_state_private(&info->block_group_cache, start, &ptr);
1545 if (!ret)
1546 kfree((void *)(unsigned long)ptr);
Chris Mason96b51792007-10-15 16:15:19 -04001547 clear_extent_bits(&info->block_group_cache, start,
1548 end, (unsigned int)-1, GFP_NOFS);
1549 }
Chris Masone37c9e62007-05-09 20:13:14 -04001550 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -04001551 ret = find_first_extent_bit(&info->free_space_cache, 0,
1552 &start, &end, EXTENT_DIRTY);
1553 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -04001554 break;
Chris Masonf510cfe2007-10-15 16:14:48 -04001555 clear_extent_dirty(&info->free_space_cache, start,
1556 end, GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04001557 }
Chris Masonbe744172007-05-06 10:15:01 -04001558 return 0;
1559}
1560
Chris Mason9078a3e2007-04-26 16:46:15 -04001561int btrfs_read_block_groups(struct btrfs_root *root)
1562{
1563 struct btrfs_path *path;
1564 int ret;
1565 int err = 0;
Chris Mason96b51792007-10-15 16:15:19 -04001566 int bit;
Chris Mason9078a3e2007-04-26 16:46:15 -04001567 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04001568 struct btrfs_fs_info *info = root->fs_info;
Chris Mason96b51792007-10-15 16:15:19 -04001569 struct extent_map_tree *block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04001570 struct btrfs_key key;
1571 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04001572 struct extent_buffer *leaf;
Chris Mason96b51792007-10-15 16:15:19 -04001573
1574 block_group_cache = &info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04001575
Chris Masonbe744172007-05-06 10:15:01 -04001576 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04001577 key.objectid = 0;
Chris Masondb945352007-10-15 16:15:53 -04001578 key.offset = BTRFS_BLOCK_GROUP_SIZE;
Chris Mason9078a3e2007-04-26 16:46:15 -04001579 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
1580
1581 path = btrfs_alloc_path();
1582 if (!path)
1583 return -ENOMEM;
1584
1585 while(1) {
Chris Masonbe744172007-05-06 10:15:01 -04001586 ret = btrfs_search_slot(NULL, info->extent_root,
Chris Mason9078a3e2007-04-26 16:46:15 -04001587 &key, path, 0, 0);
1588 if (ret != 0) {
1589 err = ret;
1590 break;
1591 }
Chris Mason5f39d392007-10-15 16:14:19 -04001592 leaf = path->nodes[0];
1593 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason9078a3e2007-04-26 16:46:15 -04001594 cache = kmalloc(sizeof(*cache), GFP_NOFS);
1595 if (!cache) {
1596 err = -1;
1597 break;
1598 }
Chris Mason3e1ad542007-05-07 20:03:49 -04001599
Chris Mason5f39d392007-10-15 16:14:19 -04001600 read_extent_buffer(leaf, &cache->item,
1601 btrfs_item_ptr_offset(leaf, path->slots[0]),
1602 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04001603 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Masone37c9e62007-05-09 20:13:14 -04001604 cache->cached = 0;
Yan324ae4d2007-11-16 14:57:08 -05001605 cache->pinned = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04001606 key.objectid = found_key.objectid + found_key.offset;
1607 btrfs_release_path(root, path);
Chris Mason5f39d392007-10-15 16:14:19 -04001608
Chris Masonf84a8b32007-11-06 10:26:29 -05001609 if (cache->item.flags & BTRFS_BLOCK_GROUP_MIXED) {
1610 bit = BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA;
1611 cache->data = BTRFS_BLOCK_GROUP_MIXED;
1612 } else if (cache->item.flags & BTRFS_BLOCK_GROUP_DATA) {
Chris Mason96b51792007-10-15 16:15:19 -04001613 bit = BLOCK_GROUP_DATA;
Chris Masonf84a8b32007-11-06 10:26:29 -05001614 cache->data = BTRFS_BLOCK_GROUP_DATA;
Chris Mason96b51792007-10-15 16:15:19 -04001615 } else {
1616 bit = BLOCK_GROUP_METADATA;
1617 cache->data = 0;
Chris Mason31f3c992007-04-30 15:25:45 -04001618 }
Chris Mason96b51792007-10-15 16:15:19 -04001619
1620 /* use EXTENT_LOCKED to prevent merging */
1621 set_extent_bits(block_group_cache, found_key.objectid,
1622 found_key.objectid + found_key.offset - 1,
1623 bit | EXTENT_LOCKED, GFP_NOFS);
1624 set_state_private(block_group_cache, found_key.objectid,
Jens Axboeae2f5412007-10-19 09:22:59 -04001625 (unsigned long)cache);
Chris Mason96b51792007-10-15 16:15:19 -04001626
Chris Mason9078a3e2007-04-26 16:46:15 -04001627 if (key.objectid >=
Chris Masondb945352007-10-15 16:15:53 -04001628 btrfs_super_total_bytes(&info->super_copy))
Chris Mason9078a3e2007-04-26 16:46:15 -04001629 break;
1630 }
1631
1632 btrfs_free_path(path);
1633 return 0;
1634}