blob: d6243c2afc73da4c6e2b0002878f8388512299a1 [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 Mason7bb86312007-12-11 09:25:06 -050020#include <linux/crc32c.h>
Chris Masonedbd8d42007-12-21 16:27:24 -050021#include <linux/pagemap.h>
Chris Mason74493f72007-12-11 09:25:06 -050022#include "hash.h"
Chris Masonfec577f2007-02-26 10:40:21 -050023#include "ctree.h"
24#include "disk-io.h"
25#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040026#include "transaction.h"
Chris Masonfec577f2007-02-26 10:40:21 -050027
Chris Mason96b51792007-10-15 16:15:19 -040028#define BLOCK_GROUP_DATA EXTENT_WRITEBACK
29#define BLOCK_GROUP_METADATA EXTENT_UPTODATE
30#define BLOCK_GROUP_DIRTY EXTENT_DIRTY
31
Chris Masone089f052007-03-16 16:20:31 -040032static int finish_current_insert(struct btrfs_trans_handle *trans, struct
33 btrfs_root *extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -040034static int del_pending_extents(struct btrfs_trans_handle *trans, struct
35 btrfs_root *extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -050036
Chris Masone37c9e62007-05-09 20:13:14 -040037static int cache_block_group(struct btrfs_root *root,
38 struct btrfs_block_group_cache *block_group)
39{
40 struct btrfs_path *path;
41 int ret;
42 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -040043 struct extent_buffer *leaf;
Chris Masonf510cfe2007-10-15 16:14:48 -040044 struct extent_map_tree *free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040045 int slot;
Chris Masone37c9e62007-05-09 20:13:14 -040046 u64 last = 0;
47 u64 hole_size;
Yan7d7d6062007-09-14 16:15:28 -040048 u64 first_free;
Chris Masone37c9e62007-05-09 20:13:14 -040049 int found = 0;
50
Chris Mason00f5c792007-11-30 10:09:33 -050051 if (!block_group)
52 return 0;
53
Chris Masone37c9e62007-05-09 20:13:14 -040054 root = root->fs_info->extent_root;
Chris Masonf510cfe2007-10-15 16:14:48 -040055 free_space_cache = &root->fs_info->free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040056
57 if (block_group->cached)
58 return 0;
Chris Masonf510cfe2007-10-15 16:14:48 -040059
Chris Masone37c9e62007-05-09 20:13:14 -040060 path = btrfs_alloc_path();
61 if (!path)
62 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -040063
Chris Mason2cc58cf2007-08-27 16:49:44 -040064 path->reada = 2;
Yan7d7d6062007-09-14 16:15:28 -040065 first_free = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040066 key.objectid = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040067 key.offset = 0;
Yan7d7d6062007-09-14 16:15:28 -040068
Chris Masone37c9e62007-05-09 20:13:14 -040069 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
70 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Yan7d7d6062007-09-14 16:15:28 -040071
Chris Masone37c9e62007-05-09 20:13:14 -040072 if (ret < 0)
73 return ret;
Yan7d7d6062007-09-14 16:15:28 -040074
Chris Masone37c9e62007-05-09 20:13:14 -040075 if (ret && path->slots[0] > 0)
76 path->slots[0]--;
Yan7d7d6062007-09-14 16:15:28 -040077
Chris Masone37c9e62007-05-09 20:13:14 -040078 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -040079 leaf = path->nodes[0];
Chris Masone37c9e62007-05-09 20:13:14 -040080 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -040081 if (slot >= btrfs_header_nritems(leaf)) {
Chris Masone37c9e62007-05-09 20:13:14 -040082 ret = btrfs_next_leaf(root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -040083 if (ret < 0)
84 goto err;
Chris Masonde428b62007-05-18 13:28:27 -040085 if (ret == 0) {
Chris Masone37c9e62007-05-09 20:13:14 -040086 continue;
Chris Masonde428b62007-05-18 13:28:27 -040087 } else {
Chris Masone37c9e62007-05-09 20:13:14 -040088 break;
89 }
90 }
Yan7d7d6062007-09-14 16:15:28 -040091
Chris Mason5f39d392007-10-15 16:14:19 -040092 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan7d7d6062007-09-14 16:15:28 -040093 if (key.objectid < block_group->key.objectid) {
Chris Mason7bb86312007-12-11 09:25:06 -050094 if (btrfs_key_type(&key) != BTRFS_EXTENT_REF_KEY &&
95 key.objectid + key.offset > first_free)
Yan7d7d6062007-09-14 16:15:28 -040096 first_free = key.objectid + key.offset;
97 goto next;
98 }
99
Chris Masone37c9e62007-05-09 20:13:14 -0400100 if (key.objectid >= block_group->key.objectid +
101 block_group->key.offset) {
Yan7d7d6062007-09-14 16:15:28 -0400102 break;
103 }
104
105 if (btrfs_key_type(&key) == BTRFS_EXTENT_ITEM_KEY) {
106 if (!found) {
107 last = first_free;
108 found = 1;
Chris Masone37c9e62007-05-09 20:13:14 -0400109 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400110 if (key.objectid > last) {
111 hole_size = key.objectid - last;
112 set_extent_dirty(free_space_cache, last,
113 last + hole_size - 1,
114 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -0400115 }
Yan7d7d6062007-09-14 16:15:28 -0400116 last = key.objectid + key.offset;
Chris Masone37c9e62007-05-09 20:13:14 -0400117 }
Yan7d7d6062007-09-14 16:15:28 -0400118next:
Chris Masone37c9e62007-05-09 20:13:14 -0400119 path->slots[0]++;
120 }
121
Yan7d7d6062007-09-14 16:15:28 -0400122 if (!found)
123 last = first_free;
124 if (block_group->key.objectid +
125 block_group->key.offset > last) {
126 hole_size = block_group->key.objectid +
127 block_group->key.offset - last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400128 set_extent_dirty(free_space_cache, last,
129 last + hole_size - 1, GFP_NOFS);
Yan7d7d6062007-09-14 16:15:28 -0400130 }
Chris Masone37c9e62007-05-09 20:13:14 -0400131 block_group->cached = 1;
Chris Mason54aa1f42007-06-22 14:16:25 -0400132err:
Chris Masone37c9e62007-05-09 20:13:14 -0400133 btrfs_free_path(path);
134 return 0;
135}
136
Chris Mason5276aed2007-06-11 21:33:38 -0400137struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
138 btrfs_fs_info *info,
Chris Masondb945352007-10-15 16:15:53 -0400139 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400140{
Chris Mason96b51792007-10-15 16:15:19 -0400141 struct extent_map_tree *block_group_cache;
142 struct btrfs_block_group_cache *block_group = NULL;
143 u64 ptr;
144 u64 start;
145 u64 end;
Chris Masonbe744172007-05-06 10:15:01 -0400146 int ret;
147
Chris Mason96b51792007-10-15 16:15:19 -0400148 block_group_cache = &info->block_group_cache;
149 ret = find_first_extent_bit(block_group_cache,
Chris Masondb945352007-10-15 16:15:53 -0400150 bytenr, &start, &end,
Chris Mason96b51792007-10-15 16:15:19 -0400151 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA);
Chris Masonbe744172007-05-06 10:15:01 -0400152 if (ret) {
Chris Mason96b51792007-10-15 16:15:19 -0400153 return NULL;
Chris Masonbe744172007-05-06 10:15:01 -0400154 }
Chris Mason96b51792007-10-15 16:15:19 -0400155 ret = get_state_private(block_group_cache, start, &ptr);
156 if (ret)
157 return NULL;
158
Jens Axboeae2f5412007-10-19 09:22:59 -0400159 block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Yan5cf66422007-11-16 14:57:09 -0500160 if (block_group->key.objectid <= bytenr && bytenr <
Chris Mason96b51792007-10-15 16:15:19 -0400161 block_group->key.objectid + block_group->key.offset)
162 return block_group;
Chris Masonbe744172007-05-06 10:15:01 -0400163 return NULL;
164}
Chris Masone37c9e62007-05-09 20:13:14 -0400165static u64 find_search_start(struct btrfs_root *root,
166 struct btrfs_block_group_cache **cache_ret,
Yan5e5745d2007-11-16 14:57:09 -0500167 u64 search_start, int num,
168 int data, int full_scan)
Chris Masone37c9e62007-05-09 20:13:14 -0400169{
Chris Masone37c9e62007-05-09 20:13:14 -0400170 int ret;
171 struct btrfs_block_group_cache *cache = *cache_ret;
Chris Masone19caa52007-10-15 16:17:44 -0400172 u64 last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400173 u64 start = 0;
174 u64 end = 0;
Chris Mason257d0ce2007-11-07 21:08:16 -0500175 u64 cache_miss = 0;
Chris Masonf84a8b32007-11-06 10:26:29 -0500176 int wrapped = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400177
Chris Mason00f5c792007-11-30 10:09:33 -0500178 if (!cache) {
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500179 goto out;
Chris Mason00f5c792007-11-30 10:09:33 -0500180 }
Chris Masone37c9e62007-05-09 20:13:14 -0400181again:
Chris Mason54aa1f42007-06-22 14:16:25 -0400182 ret = cache_block_group(root, cache);
183 if (ret)
184 goto out;
Chris Masonf84a8b32007-11-06 10:26:29 -0500185
Chris Masone19caa52007-10-15 16:17:44 -0400186 last = max(search_start, cache->key.objectid);
187
Chris Masone37c9e62007-05-09 20:13:14 -0400188 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -0400189 ret = find_first_extent_bit(&root->fs_info->free_space_cache,
190 last, &start, &end, EXTENT_DIRTY);
Chris Masone19caa52007-10-15 16:17:44 -0400191 if (ret) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500192 if (!cache_miss)
193 cache_miss = last;
Chris Masone19caa52007-10-15 16:17:44 -0400194 goto new_group;
195 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400196
197 start = max(last, start);
198 last = end + 1;
Chris Mason257d0ce2007-11-07 21:08:16 -0500199 if (last - start < num) {
200 if (last == cache->key.objectid + cache->key.offset)
201 cache_miss = start;
Chris Masonf510cfe2007-10-15 16:14:48 -0400202 continue;
Chris Mason257d0ce2007-11-07 21:08:16 -0500203 }
204 if (data != BTRFS_BLOCK_GROUP_MIXED &&
Yan5cf66422007-11-16 14:57:09 -0500205 start + num > cache->key.objectid + cache->key.offset)
Chris Masone37c9e62007-05-09 20:13:14 -0400206 goto new_group;
Chris Masonf510cfe2007-10-15 16:14:48 -0400207 return start;
Chris Masone37c9e62007-05-09 20:13:14 -0400208 }
209out:
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500210 cache = btrfs_lookup_block_group(root->fs_info, search_start);
211 if (!cache) {
212 printk("Unable to find block group for %Lu\n",
213 search_start);
214 WARN_ON(1);
215 return search_start;
216 }
Chris Mason1a5bc162007-10-15 16:15:26 -0400217 return search_start;
Chris Masone37c9e62007-05-09 20:13:14 -0400218
219new_group:
Chris Masone19caa52007-10-15 16:17:44 -0400220 last = cache->key.objectid + cache->key.offset;
Chris Masonf84a8b32007-11-06 10:26:29 -0500221wrapped:
Chris Masone19caa52007-10-15 16:17:44 -0400222 cache = btrfs_lookup_block_group(root->fs_info, last);
Chris Masone37c9e62007-05-09 20:13:14 -0400223 if (!cache) {
Chris Mason0e4de582007-11-26 10:55:49 -0500224no_cache:
Chris Masonf84a8b32007-11-06 10:26:29 -0500225 if (!wrapped) {
226 wrapped = 1;
227 last = search_start;
228 data = BTRFS_BLOCK_GROUP_MIXED;
229 goto wrapped;
230 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500231 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -0400232 }
Chris Mason257d0ce2007-11-07 21:08:16 -0500233 if (cache_miss && !cache->cached) {
234 cache_block_group(root, cache);
235 last = cache_miss;
Chris Mason257d0ce2007-11-07 21:08:16 -0500236 cache = btrfs_lookup_block_group(root->fs_info, last);
237 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500238 cache = btrfs_find_block_group(root, cache, last, data, 0);
Chris Mason0e4de582007-11-26 10:55:49 -0500239 if (!cache)
240 goto no_cache;
Chris Masone37c9e62007-05-09 20:13:14 -0400241 *cache_ret = cache;
Chris Mason257d0ce2007-11-07 21:08:16 -0500242 cache_miss = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400243 goto again;
244}
245
Chris Mason84f54cf2007-06-12 07:43:08 -0400246static u64 div_factor(u64 num, int factor)
247{
Chris Mason257d0ce2007-11-07 21:08:16 -0500248 if (factor == 10)
249 return num;
Chris Mason84f54cf2007-06-12 07:43:08 -0400250 num *= factor;
251 do_div(num, 10);
252 return num;
253}
254
Chris Mason31f3c992007-04-30 15:25:45 -0400255struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
256 struct btrfs_block_group_cache
Chris Masonbe744172007-05-06 10:15:01 -0400257 *hint, u64 search_start,
Chris Masonde428b62007-05-18 13:28:27 -0400258 int data, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400259{
Chris Mason96b51792007-10-15 16:15:19 -0400260 struct btrfs_block_group_cache *cache;
261 struct extent_map_tree *block_group_cache;
Chris Mason31f3c992007-04-30 15:25:45 -0400262 struct btrfs_block_group_cache *found_group = NULL;
Chris Masoncd1bc462007-04-27 10:08:34 -0400263 struct btrfs_fs_info *info = root->fs_info;
264 u64 used;
Chris Mason31f3c992007-04-30 15:25:45 -0400265 u64 last = 0;
266 u64 hint_last;
Chris Mason96b51792007-10-15 16:15:19 -0400267 u64 start;
268 u64 end;
269 u64 free_check;
270 u64 ptr;
271 int bit;
Chris Masoncd1bc462007-04-27 10:08:34 -0400272 int ret;
Chris Mason31f3c992007-04-30 15:25:45 -0400273 int full_search = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400274 int factor = 8;
Chris Mason1e2677e2007-05-29 16:52:18 -0400275 int data_swap = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400276
Chris Mason96b51792007-10-15 16:15:19 -0400277 block_group_cache = &info->block_group_cache;
278
Chris Masonde428b62007-05-18 13:28:27 -0400279 if (!owner)
Chris Masonf84a8b32007-11-06 10:26:29 -0500280 factor = 8;
Chris Masonbe744172007-05-06 10:15:01 -0400281
Chris Mason257d0ce2007-11-07 21:08:16 -0500282 if (data == BTRFS_BLOCK_GROUP_MIXED) {
Chris Masonf84a8b32007-11-06 10:26:29 -0500283 bit = BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA;
Chris Mason257d0ce2007-11-07 21:08:16 -0500284 factor = 10;
285 } else if (data)
Chris Mason96b51792007-10-15 16:15:19 -0400286 bit = BLOCK_GROUP_DATA;
287 else
288 bit = BLOCK_GROUP_METADATA;
Chris Masonbe744172007-05-06 10:15:01 -0400289
290 if (search_start) {
291 struct btrfs_block_group_cache *shint;
Chris Mason5276aed2007-06-11 21:33:38 -0400292 shint = btrfs_lookup_block_group(info, search_start);
Chris Masonf84a8b32007-11-06 10:26:29 -0500293 if (shint && (shint->data == data ||
294 shint->data == BTRFS_BLOCK_GROUP_MIXED)) {
Chris Masonbe744172007-05-06 10:15:01 -0400295 used = btrfs_block_group_used(&shint->item);
Yan324ae4d2007-11-16 14:57:08 -0500296 if (used + shint->pinned <
297 div_factor(shint->key.offset, factor)) {
Chris Masonbe744172007-05-06 10:15:01 -0400298 return shint;
299 }
300 }
301 }
Chris Masonf84a8b32007-11-06 10:26:29 -0500302 if (hint && (hint->data == data ||
303 hint->data == BTRFS_BLOCK_GROUP_MIXED)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400304 used = btrfs_block_group_used(&hint->item);
Yan324ae4d2007-11-16 14:57:08 -0500305 if (used + hint->pinned <
306 div_factor(hint->key.offset, factor)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400307 return hint;
308 }
Chris Masone19caa52007-10-15 16:17:44 -0400309 last = hint->key.objectid + hint->key.offset;
Chris Mason31f3c992007-04-30 15:25:45 -0400310 hint_last = last;
311 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400312 if (hint)
313 hint_last = max(hint->key.objectid, search_start);
314 else
315 hint_last = search_start;
316
317 last = hint_last;
Chris Mason31f3c992007-04-30 15:25:45 -0400318 }
Chris Mason31f3c992007-04-30 15:25:45 -0400319again:
Chris Masoncd1bc462007-04-27 10:08:34 -0400320 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400321 ret = find_first_extent_bit(block_group_cache, last,
322 &start, &end, bit);
323 if (ret)
Chris Masoncd1bc462007-04-27 10:08:34 -0400324 break;
Chris Mason96b51792007-10-15 16:15:19 -0400325
326 ret = get_state_private(block_group_cache, start, &ptr);
327 if (ret)
328 break;
329
Jens Axboeae2f5412007-10-19 09:22:59 -0400330 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400331 last = cache->key.objectid + cache->key.offset;
332 used = btrfs_block_group_used(&cache->item);
333
334 if (full_search)
335 free_check = cache->key.offset;
336 else
337 free_check = div_factor(cache->key.offset, factor);
Yan324ae4d2007-11-16 14:57:08 -0500338 if (used + cache->pinned < free_check) {
Chris Mason96b51792007-10-15 16:15:19 -0400339 found_group = cache;
340 goto found;
Chris Masoncd1bc462007-04-27 10:08:34 -0400341 }
Chris Masonde428b62007-05-18 13:28:27 -0400342 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400343 }
Chris Mason31f3c992007-04-30 15:25:45 -0400344 if (!full_search) {
Chris Masonbe744172007-05-06 10:15:01 -0400345 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400346 full_search = 1;
347 goto again;
348 }
Chris Mason1e2677e2007-05-29 16:52:18 -0400349 if (!data_swap) {
Chris Mason1e2677e2007-05-29 16:52:18 -0400350 data_swap = 1;
Chris Mason96b51792007-10-15 16:15:19 -0400351 bit = BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA;
Chris Mason1e2677e2007-05-29 16:52:18 -0400352 last = search_start;
353 goto again;
354 }
Chris Masonbe744172007-05-06 10:15:01 -0400355found:
Chris Mason31f3c992007-04-30 15:25:45 -0400356 return found_group;
Chris Masoncd1bc462007-04-27 10:08:34 -0400357}
358
Chris Mason7bb86312007-12-11 09:25:06 -0500359static u64 hash_extent_ref(u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500360 u64 owner, u64 owner_offset)
361{
362 u32 high_crc = ~(u32)0;
363 u32 low_crc = ~(u32)0;
364 __le64 lenum;
365
366 lenum = cpu_to_le64(root_objectid);
367 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Chris Mason7bb86312007-12-11 09:25:06 -0500368 lenum = cpu_to_le64(ref_generation);
369 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason74493f72007-12-11 09:25:06 -0500370
Chris Mason7bb86312007-12-11 09:25:06 -0500371#if 0
Chris Mason74493f72007-12-11 09:25:06 -0500372 lenum = cpu_to_le64(owner);
373 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason74493f72007-12-11 09:25:06 -0500374 lenum = cpu_to_le64(owner_offset);
375 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason7bb86312007-12-11 09:25:06 -0500376#endif
Chris Mason74493f72007-12-11 09:25:06 -0500377 return ((u64)high_crc << 32) | (u64)low_crc;
378}
379
Chris Mason7bb86312007-12-11 09:25:06 -0500380static int match_extent_ref(struct extent_buffer *leaf,
381 struct btrfs_extent_ref *disk_ref,
382 struct btrfs_extent_ref *cpu_ref)
383{
384 int ret;
385 int len;
386
387 if (cpu_ref->objectid)
388 len = sizeof(*cpu_ref);
389 else
390 len = 2 * sizeof(u64);
391 ret = memcmp_extent_buffer(leaf, cpu_ref, (unsigned long)disk_ref,
392 len);
393 return ret == 0;
394}
395
396static int lookup_extent_backref(struct btrfs_trans_handle *trans,
397 struct btrfs_root *root,
398 struct btrfs_path *path, u64 bytenr,
399 u64 root_objectid, u64 ref_generation,
400 u64 owner, u64 owner_offset, int del)
401{
402 u64 hash;
403 struct btrfs_key key;
404 struct btrfs_key found_key;
405 struct btrfs_extent_ref ref;
406 struct extent_buffer *leaf;
407 struct btrfs_extent_ref *disk_ref;
408 int ret;
409 int ret2;
410
411 btrfs_set_stack_ref_root(&ref, root_objectid);
412 btrfs_set_stack_ref_generation(&ref, ref_generation);
413 btrfs_set_stack_ref_objectid(&ref, owner);
414 btrfs_set_stack_ref_offset(&ref, owner_offset);
415
416 hash = hash_extent_ref(root_objectid, ref_generation, owner,
417 owner_offset);
418 key.offset = hash;
419 key.objectid = bytenr;
420 key.type = BTRFS_EXTENT_REF_KEY;
421
422 while (1) {
423 ret = btrfs_search_slot(trans, root, &key, path,
424 del ? -1 : 0, del);
425 if (ret < 0)
426 goto out;
427 leaf = path->nodes[0];
428 if (ret != 0) {
429 u32 nritems = btrfs_header_nritems(leaf);
430 if (path->slots[0] >= nritems) {
431 ret2 = btrfs_next_leaf(root, path);
432 if (ret2)
433 goto out;
434 leaf = path->nodes[0];
435 }
436 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
437 if (found_key.objectid != bytenr ||
438 found_key.type != BTRFS_EXTENT_REF_KEY)
439 goto out;
440 key.offset = found_key.offset;
441 if (del) {
442 btrfs_release_path(root, path);
443 continue;
444 }
445 }
446 disk_ref = btrfs_item_ptr(path->nodes[0],
447 path->slots[0],
448 struct btrfs_extent_ref);
449 if (match_extent_ref(path->nodes[0], disk_ref, &ref)) {
450 ret = 0;
451 goto out;
452 }
453 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
454 key.offset = found_key.offset + 1;
455 btrfs_release_path(root, path);
456 }
457out:
458 return ret;
459}
460
Chris Masond8d5f3e2007-12-11 12:42:00 -0500461/*
462 * Back reference rules. Back refs have three main goals:
463 *
464 * 1) differentiate between all holders of references to an extent so that
465 * when a reference is dropped we can make sure it was a valid reference
466 * before freeing the extent.
467 *
468 * 2) Provide enough information to quickly find the holders of an extent
469 * if we notice a given block is corrupted or bad.
470 *
471 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
472 * maintenance. This is actually the same as #2, but with a slightly
473 * different use case.
474 *
475 * File extents can be referenced by:
476 *
477 * - multiple snapshots, subvolumes, or different generations in one subvol
478 * - different files inside a single subvolume (in theory, not implemented yet)
479 * - different offsets inside a file (bookend extents in file.c)
480 *
481 * The extent ref structure has fields for:
482 *
483 * - Objectid of the subvolume root
484 * - Generation number of the tree holding the reference
485 * - objectid of the file holding the reference
486 * - offset in the file corresponding to the key holding the reference
487 *
488 * When a file extent is allocated the fields are filled in:
489 * (root_key.objectid, trans->transid, inode objectid, offset in file)
490 *
491 * When a leaf is cow'd new references are added for every file extent found
492 * in the leaf. It looks the same as the create case, but trans->transid
493 * will be different when the block is cow'd.
494 *
495 * (root_key.objectid, trans->transid, inode objectid, offset in file)
496 *
497 * When a file extent is removed either during snapshot deletion or file
498 * truncation, the corresponding back reference is found
499 * by searching for:
500 *
501 * (btrfs_header_owner(leaf), btrfs_header_generation(leaf),
502 * inode objectid, offset in file)
503 *
504 * Btree extents can be referenced by:
505 *
506 * - Different subvolumes
507 * - Different generations of the same subvolume
508 *
509 * Storing sufficient information for a full reverse mapping of a btree
510 * block would require storing the lowest key of the block in the backref,
511 * and it would require updating that lowest key either before write out or
512 * every time it changed. Instead, the objectid of the lowest key is stored
513 * along with the level of the tree block. This provides a hint
514 * about where in the btree the block can be found. Searches through the
515 * btree only need to look for a pointer to that block, so they stop one
516 * level higher than the level recorded in the backref.
517 *
518 * Some btrees do not do reference counting on their extents. These
519 * include the extent tree and the tree of tree roots. Backrefs for these
520 * trees always have a generation of zero.
521 *
522 * When a tree block is created, back references are inserted:
523 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500524 * (root->root_key.objectid, trans->transid or zero, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500525 *
526 * When a tree block is cow'd in a reference counted root,
527 * new back references are added for all the blocks it points to.
528 * These are of the form (trans->transid will have increased since creation):
529 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500530 * (root->root_key.objectid, trans->transid, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500531 *
532 * Because the lowest_key_objectid and the level are just hints
533 * they are not used when backrefs are deleted. When a backref is deleted:
534 *
535 * if backref was for a tree root:
536 * root_objectid = root->root_key.objectid
537 * else
538 * root_objectid = btrfs_header_owner(parent)
539 *
540 * (root_objectid, btrfs_header_generation(parent) or zero, 0, 0)
541 *
542 * Back Reference Key hashing:
543 *
544 * Back references have four fields, each 64 bits long. Unfortunately,
545 * This is hashed into a single 64 bit number and placed into the key offset.
546 * The key objectid corresponds to the first byte in the extent, and the
547 * key type is set to BTRFS_EXTENT_REF_KEY
548 */
Chris Mason7bb86312007-12-11 09:25:06 -0500549int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
550 struct btrfs_root *root,
551 struct btrfs_path *path, u64 bytenr,
552 u64 root_objectid, u64 ref_generation,
553 u64 owner, u64 owner_offset)
Chris Mason74493f72007-12-11 09:25:06 -0500554{
555 u64 hash;
556 struct btrfs_key key;
557 struct btrfs_extent_ref ref;
Chris Mason7bb86312007-12-11 09:25:06 -0500558 struct btrfs_extent_ref *disk_ref;
Chris Mason74493f72007-12-11 09:25:06 -0500559 int ret;
560
561 btrfs_set_stack_ref_root(&ref, root_objectid);
Chris Mason7bb86312007-12-11 09:25:06 -0500562 btrfs_set_stack_ref_generation(&ref, ref_generation);
Chris Mason74493f72007-12-11 09:25:06 -0500563 btrfs_set_stack_ref_objectid(&ref, owner);
564 btrfs_set_stack_ref_offset(&ref, owner_offset);
565
Chris Mason7bb86312007-12-11 09:25:06 -0500566 hash = hash_extent_ref(root_objectid, ref_generation, owner,
567 owner_offset);
Chris Mason74493f72007-12-11 09:25:06 -0500568 key.offset = hash;
569 key.objectid = bytenr;
570 key.type = BTRFS_EXTENT_REF_KEY;
571
572 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(ref));
573 while (ret == -EEXIST) {
Chris Mason7bb86312007-12-11 09:25:06 -0500574 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
575 struct btrfs_extent_ref);
576 if (match_extent_ref(path->nodes[0], disk_ref, &ref))
577 goto out;
578 key.offset++;
579 btrfs_release_path(root, path);
580 ret = btrfs_insert_empty_item(trans, root, path, &key,
581 sizeof(ref));
Chris Mason74493f72007-12-11 09:25:06 -0500582 }
Chris Mason7bb86312007-12-11 09:25:06 -0500583 if (ret)
584 goto out;
585 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
586 struct btrfs_extent_ref);
587 write_extent_buffer(path->nodes[0], &ref, (unsigned long)disk_ref,
588 sizeof(ref));
589 btrfs_mark_buffer_dirty(path->nodes[0]);
590out:
591 btrfs_release_path(root, path);
592 return ret;
Chris Mason74493f72007-12-11 09:25:06 -0500593}
594
Chris Masonb18c6682007-04-17 13:26:50 -0400595int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
596 struct btrfs_root *root,
Chris Mason74493f72007-12-11 09:25:06 -0500597 u64 bytenr, u64 num_bytes,
Chris Mason7bb86312007-12-11 09:25:06 -0500598 u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500599 u64 owner, u64 owner_offset)
Chris Mason02217ed2007-03-02 16:08:05 -0500600{
Chris Mason5caf2a02007-04-02 11:20:42 -0400601 struct btrfs_path *path;
Chris Mason02217ed2007-03-02 16:08:05 -0500602 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400603 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400604 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400605 struct btrfs_extent_item *item;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400606 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500607
Chris Masondb945352007-10-15 16:15:53 -0400608 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400609 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400610 if (!path)
611 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -0400612
Chris Masondb945352007-10-15 16:15:53 -0400613 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -0400614 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -0400615 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -0400616 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400617 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400618 if (ret < 0)
619 return ret;
Chris Masona429e512007-04-18 16:15:28 -0400620 if (ret != 0) {
Chris Masona28ec192007-03-06 20:08:01 -0500621 BUG();
Chris Masona429e512007-04-18 16:15:28 -0400622 }
Chris Mason02217ed2007-03-02 16:08:05 -0500623 BUG_ON(ret != 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400624 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400625 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400626 refs = btrfs_extent_refs(l, item);
627 btrfs_set_extent_refs(l, item, refs + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -0400628 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masona28ec192007-03-06 20:08:01 -0500629
Chris Mason5caf2a02007-04-02 11:20:42 -0400630 btrfs_release_path(root->fs_info->extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -0500631
632 ret = btrfs_insert_extent_backref(trans, root->fs_info->extent_root,
633 path, bytenr, root_objectid,
634 ref_generation, owner, owner_offset);
635 BUG_ON(ret);
Chris Mason9f5fae22007-03-20 14:38:32 -0400636 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400637 del_pending_extents(trans, root->fs_info->extent_root);
Chris Mason74493f72007-12-11 09:25:06 -0500638
639 btrfs_free_path(path);
Chris Mason02217ed2007-03-02 16:08:05 -0500640 return 0;
641}
642
Chris Masone9d0b132007-08-10 14:06:19 -0400643int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
644 struct btrfs_root *root)
645{
646 finish_current_insert(trans, root->fs_info->extent_root);
647 del_pending_extents(trans, root->fs_info->extent_root);
648 return 0;
649}
650
Chris Masonb18c6682007-04-17 13:26:50 -0400651static int lookup_extent_ref(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -0400652 struct btrfs_root *root, u64 bytenr,
653 u64 num_bytes, u32 *refs)
Chris Masona28ec192007-03-06 20:08:01 -0500654{
Chris Mason5caf2a02007-04-02 11:20:42 -0400655 struct btrfs_path *path;
Chris Masona28ec192007-03-06 20:08:01 -0500656 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400657 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400658 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400659 struct btrfs_extent_item *item;
Chris Mason5caf2a02007-04-02 11:20:42 -0400660
Chris Masondb945352007-10-15 16:15:53 -0400661 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400662 path = btrfs_alloc_path();
Chris Masondb945352007-10-15 16:15:53 -0400663 key.objectid = bytenr;
664 key.offset = num_bytes;
Chris Mason62e27492007-03-15 12:56:47 -0400665 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5caf2a02007-04-02 11:20:42 -0400666 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400667 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400668 if (ret < 0)
669 goto out;
Chris Mason5f39d392007-10-15 16:14:19 -0400670 if (ret != 0) {
671 btrfs_print_leaf(root, path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400672 printk("failed to find block number %Lu\n", bytenr);
Chris Masona28ec192007-03-06 20:08:01 -0500673 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -0400674 }
675 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400676 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400677 *refs = btrfs_extent_refs(l, item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400678out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400679 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -0500680 return 0;
681}
682
Chris Masonbe20aa92007-12-17 20:14:01 -0500683u32 btrfs_count_snapshots_in_path(struct btrfs_root *root,
684 struct btrfs_path *count_path,
685 u64 first_extent)
686{
687 struct btrfs_root *extent_root = root->fs_info->extent_root;
688 struct btrfs_path *path;
689 u64 bytenr;
690 u64 found_objectid;
691 u64 root_objectid = 0;
692 u32 total_count = 0;
693 u32 cur_count;
694 u32 refs;
695 u32 nritems;
696 int ret;
697 struct btrfs_key key;
698 struct btrfs_key found_key;
699 struct extent_buffer *l;
700 struct btrfs_extent_item *item;
701 struct btrfs_extent_ref *ref_item;
702 int level = -1;
703
704 path = btrfs_alloc_path();
705again:
706 if (level == -1)
707 bytenr = first_extent;
708 else
709 bytenr = count_path->nodes[level]->start;
710
711 cur_count = 0;
712 key.objectid = bytenr;
713 key.offset = 0;
714
715 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
716 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
717 if (ret < 0)
718 goto out;
719 BUG_ON(ret == 0);
720
721 l = path->nodes[0];
722 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
723
724 if (found_key.objectid != bytenr ||
725 found_key.type != BTRFS_EXTENT_ITEM_KEY) {
726 goto out;
727 }
728
729 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
730 refs = btrfs_extent_refs(l, item);
731 while (1) {
732 nritems = btrfs_header_nritems(l);
733 if (path->slots[0] >= nritems) {
734 ret = btrfs_next_leaf(extent_root, path);
735 if (ret == 0)
736 continue;
737 break;
738 }
739 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
740 if (found_key.objectid != bytenr)
741 break;
742 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
743 path->slots[0]++;
744 continue;
745 }
746
747 cur_count++;
748 ref_item = btrfs_item_ptr(l, path->slots[0],
749 struct btrfs_extent_ref);
750 found_objectid = btrfs_ref_root(l, ref_item);
751
752 if (found_objectid != root_objectid)
753 total_count++;
754
755 if (total_count > 1)
756 goto out;
757
758 if (root_objectid == 0)
759 root_objectid = found_objectid;
760
761 path->slots[0]++;
762 }
763 if (cur_count == 0) {
764 total_count = 0;
765 goto out;
766 }
767 if (total_count > 1)
768 goto out;
769 if (level >= 0 && root->node == count_path->nodes[level])
770 goto out;
771 level++;
772 btrfs_release_path(root, path);
773 goto again;
774
775out:
776 btrfs_free_path(path);
777 return total_count;
778
779}
780
Chris Masonc5739bb2007-04-10 09:27:04 -0400781int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -0500782 struct btrfs_root *root, u64 owner_objectid)
Chris Masonc5739bb2007-04-10 09:27:04 -0400783{
Chris Mason7bb86312007-12-11 09:25:06 -0500784 u64 generation;
785 u64 key_objectid;
786 u64 level;
787 u32 nritems;
788 struct btrfs_disk_key disk_key;
789
790 level = btrfs_header_level(root->node);
791 generation = trans->transid;
792 nritems = btrfs_header_nritems(root->node);
793 if (nritems > 0) {
794 if (level == 0)
795 btrfs_item_key(root->node, &disk_key, 0);
796 else
797 btrfs_node_key(root->node, &disk_key, 0);
798 key_objectid = btrfs_disk_key_objectid(&disk_key);
799 } else {
800 key_objectid = 0;
801 }
Chris Masondb945352007-10-15 16:15:53 -0400802 return btrfs_inc_extent_ref(trans, root, root->node->start,
Chris Mason7bb86312007-12-11 09:25:06 -0500803 root->node->len, owner_objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500804 generation, level, key_objectid);
Chris Masonc5739bb2007-04-10 09:27:04 -0400805}
806
Chris Masone089f052007-03-16 16:20:31 -0400807int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400808 struct extent_buffer *buf)
Chris Mason02217ed2007-03-02 16:08:05 -0500809{
Chris Masondb945352007-10-15 16:15:53 -0400810 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400811 u32 nritems;
812 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -0400813 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -0500814 int i;
Chris Masondb945352007-10-15 16:15:53 -0400815 int level;
Chris Mason6407bf62007-03-27 06:33:00 -0400816 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400817 int faili;
Chris Masona28ec192007-03-06 20:08:01 -0500818
Chris Mason3768f362007-03-13 16:47:54 -0400819 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500820 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400821
Chris Masondb945352007-10-15 16:15:53 -0400822 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400823 nritems = btrfs_header_nritems(buf);
824 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400825 if (level == 0) {
826 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400827 btrfs_item_key_to_cpu(buf, &key, i);
828 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -0400829 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400830 fi = btrfs_item_ptr(buf, i,
Chris Mason6407bf62007-03-27 06:33:00 -0400831 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400832 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason236454df2007-04-19 13:37:44 -0400833 BTRFS_FILE_EXTENT_INLINE)
834 continue;
Chris Masondb945352007-10-15 16:15:53 -0400835 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
836 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -0400837 continue;
Chris Masondb945352007-10-15 16:15:53 -0400838 ret = btrfs_inc_extent_ref(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500839 btrfs_file_extent_disk_num_bytes(buf, fi),
840 root->root_key.objectid, trans->transid,
841 key.objectid, key.offset);
Chris Mason54aa1f42007-06-22 14:16:25 -0400842 if (ret) {
843 faili = i;
844 goto fail;
845 }
Chris Mason6407bf62007-03-27 06:33:00 -0400846 } else {
Chris Masondb945352007-10-15 16:15:53 -0400847 bytenr = btrfs_node_blockptr(buf, i);
Chris Mason6caab482007-12-13 09:48:07 -0500848 btrfs_node_key_to_cpu(buf, &key, i);
Chris Masondb945352007-10-15 16:15:53 -0400849 ret = btrfs_inc_extent_ref(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500850 btrfs_level_size(root, level - 1),
851 root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500852 trans->transid,
853 level - 1, key.objectid);
Chris Mason54aa1f42007-06-22 14:16:25 -0400854 if (ret) {
855 faili = i;
856 goto fail;
857 }
Chris Mason6407bf62007-03-27 06:33:00 -0400858 }
Chris Mason02217ed2007-03-02 16:08:05 -0500859 }
860 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400861fail:
Chris Masonccd467d2007-06-28 15:57:36 -0400862 WARN_ON(1);
Chris Mason7bb86312007-12-11 09:25:06 -0500863#if 0
Chris Mason54aa1f42007-06-22 14:16:25 -0400864 for (i =0; i < faili; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400865 if (level == 0) {
866 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400867 btrfs_item_key_to_cpu(buf, &key, i);
868 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -0400869 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400870 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -0400871 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400872 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -0400873 BTRFS_FILE_EXTENT_INLINE)
874 continue;
Chris Masondb945352007-10-15 16:15:53 -0400875 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
876 if (disk_bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -0400877 continue;
Chris Masondb945352007-10-15 16:15:53 -0400878 err = btrfs_free_extent(trans, root, disk_bytenr,
879 btrfs_file_extent_disk_num_bytes(buf,
Chris Mason5f39d392007-10-15 16:14:19 -0400880 fi), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400881 BUG_ON(err);
882 } else {
Chris Masondb945352007-10-15 16:15:53 -0400883 bytenr = btrfs_node_blockptr(buf, i);
884 err = btrfs_free_extent(trans, root, bytenr,
885 btrfs_level_size(root, level - 1), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400886 BUG_ON(err);
887 }
888 }
Chris Mason7bb86312007-12-11 09:25:06 -0500889#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400890 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -0500891}
892
Chris Mason9078a3e2007-04-26 16:46:15 -0400893static int write_one_cache_group(struct btrfs_trans_handle *trans,
894 struct btrfs_root *root,
895 struct btrfs_path *path,
896 struct btrfs_block_group_cache *cache)
897{
898 int ret;
899 int pending_ret;
900 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400901 unsigned long bi;
902 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -0400903
Chris Mason9078a3e2007-04-26 16:46:15 -0400904 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400905 if (ret < 0)
906 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -0400907 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400908
909 leaf = path->nodes[0];
910 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
911 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
912 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -0400913 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400914fail:
Chris Mason9078a3e2007-04-26 16:46:15 -0400915 finish_current_insert(trans, extent_root);
916 pending_ret = del_pending_extents(trans, extent_root);
917 if (ret)
918 return ret;
919 if (pending_ret)
920 return pending_ret;
921 return 0;
922
923}
924
Chris Mason96b51792007-10-15 16:15:19 -0400925int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
926 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -0400927{
Chris Mason96b51792007-10-15 16:15:19 -0400928 struct extent_map_tree *block_group_cache;
929 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400930 int ret;
931 int err = 0;
932 int werr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -0400933 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -0400934 u64 last = 0;
935 u64 start;
936 u64 end;
937 u64 ptr;
Chris Mason9078a3e2007-04-26 16:46:15 -0400938
Chris Mason96b51792007-10-15 16:15:19 -0400939 block_group_cache = &root->fs_info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400940 path = btrfs_alloc_path();
941 if (!path)
942 return -ENOMEM;
943
944 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400945 ret = find_first_extent_bit(block_group_cache, last,
946 &start, &end, BLOCK_GROUP_DIRTY);
947 if (ret)
Chris Mason9078a3e2007-04-26 16:46:15 -0400948 break;
Chris Mason54aa1f42007-06-22 14:16:25 -0400949
Chris Mason96b51792007-10-15 16:15:19 -0400950 last = end + 1;
951 ret = get_state_private(block_group_cache, start, &ptr);
952 if (ret)
953 break;
954
Jens Axboeae2f5412007-10-19 09:22:59 -0400955 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400956 err = write_one_cache_group(trans, root,
957 path, cache);
958 /*
959 * if we fail to write the cache group, we want
960 * to keep it marked dirty in hopes that a later
961 * write will work
962 */
963 if (err) {
964 werr = err;
965 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -0400966 }
Chris Mason96b51792007-10-15 16:15:19 -0400967 clear_extent_bits(block_group_cache, start, end,
968 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -0400969 }
970 btrfs_free_path(path);
971 return werr;
972}
973
974static int update_block_group(struct btrfs_trans_handle *trans,
975 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -0400976 u64 bytenr, u64 num_bytes, int alloc,
977 int mark_free, int data)
Chris Mason9078a3e2007-04-26 16:46:15 -0400978{
979 struct btrfs_block_group_cache *cache;
980 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -0400981 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -0400982 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -0400983 u64 byte_in_group;
Chris Mason96b51792007-10-15 16:15:19 -0400984 u64 start;
985 u64 end;
Chris Mason3e1ad542007-05-07 20:03:49 -0400986
Chris Mason9078a3e2007-04-26 16:46:15 -0400987 while(total) {
Chris Masondb945352007-10-15 16:15:53 -0400988 cache = btrfs_lookup_block_group(info, bytenr);
Chris Mason3e1ad542007-05-07 20:03:49 -0400989 if (!cache) {
Chris Mason9078a3e2007-04-26 16:46:15 -0400990 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -0400991 }
Chris Masondb945352007-10-15 16:15:53 -0400992 byte_in_group = bytenr - cache->key.objectid;
993 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason96b51792007-10-15 16:15:19 -0400994 start = cache->key.objectid;
995 end = start + cache->key.offset - 1;
996 set_extent_bits(&info->block_group_cache, start, end,
997 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -0400998
999 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04001000 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04001001 if (alloc) {
Chris Mason1e2677e2007-05-29 16:52:18 -04001002 if (cache->data != data &&
Chris Mason84f54cf2007-06-12 07:43:08 -04001003 old_val < (cache->key.offset >> 1)) {
Chris Mason96b51792007-10-15 16:15:19 -04001004 int bit_to_clear;
1005 int bit_to_set;
Chris Mason96b51792007-10-15 16:15:19 -04001006 cache->data = data;
Chris Mason1e2677e2007-05-29 16:52:18 -04001007 if (data) {
Yanb97f9202007-11-01 11:28:41 -04001008 bit_to_clear = BLOCK_GROUP_METADATA;
1009 bit_to_set = BLOCK_GROUP_DATA;
Chris Masonf84a8b32007-11-06 10:26:29 -05001010 cache->item.flags &=
1011 ~BTRFS_BLOCK_GROUP_MIXED;
Chris Mason1e2677e2007-05-29 16:52:18 -04001012 cache->item.flags |=
1013 BTRFS_BLOCK_GROUP_DATA;
1014 } else {
Yanb97f9202007-11-01 11:28:41 -04001015 bit_to_clear = BLOCK_GROUP_DATA;
1016 bit_to_set = BLOCK_GROUP_METADATA;
Chris Mason1e2677e2007-05-29 16:52:18 -04001017 cache->item.flags &=
Chris Masonf84a8b32007-11-06 10:26:29 -05001018 ~BTRFS_BLOCK_GROUP_MIXED;
1019 cache->item.flags &=
Chris Mason1e2677e2007-05-29 16:52:18 -04001020 ~BTRFS_BLOCK_GROUP_DATA;
1021 }
Chris Mason96b51792007-10-15 16:15:19 -04001022 clear_extent_bits(&info->block_group_cache,
1023 start, end, bit_to_clear,
1024 GFP_NOFS);
1025 set_extent_bits(&info->block_group_cache,
1026 start, end, bit_to_set,
1027 GFP_NOFS);
Chris Masonf84a8b32007-11-06 10:26:29 -05001028 } else if (cache->data != data &&
1029 cache->data != BTRFS_BLOCK_GROUP_MIXED) {
1030 cache->data = BTRFS_BLOCK_GROUP_MIXED;
1031 set_extent_bits(&info->block_group_cache,
1032 start, end,
1033 BLOCK_GROUP_DATA |
1034 BLOCK_GROUP_METADATA,
1035 GFP_NOFS);
Chris Mason1e2677e2007-05-29 16:52:18 -04001036 }
Chris Masondb945352007-10-15 16:15:53 -04001037 old_val += num_bytes;
Chris Masoncd1bc462007-04-27 10:08:34 -04001038 } else {
Chris Masondb945352007-10-15 16:15:53 -04001039 old_val -= num_bytes;
Chris Masonf510cfe2007-10-15 16:14:48 -04001040 if (mark_free) {
1041 set_extent_dirty(&info->free_space_cache,
Chris Masondb945352007-10-15 16:15:53 -04001042 bytenr, bytenr + num_bytes - 1,
Chris Masonf510cfe2007-10-15 16:14:48 -04001043 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04001044 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001045 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001046 btrfs_set_block_group_used(&cache->item, old_val);
Chris Masondb945352007-10-15 16:15:53 -04001047 total -= num_bytes;
1048 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001049 }
1050 return 0;
1051}
Yan324ae4d2007-11-16 14:57:08 -05001052static int update_pinned_extents(struct btrfs_root *root,
1053 u64 bytenr, u64 num, int pin)
1054{
1055 u64 len;
1056 struct btrfs_block_group_cache *cache;
1057 struct btrfs_fs_info *fs_info = root->fs_info;
1058
1059 if (pin) {
1060 set_extent_dirty(&fs_info->pinned_extents,
1061 bytenr, bytenr + num - 1, GFP_NOFS);
1062 } else {
1063 clear_extent_dirty(&fs_info->pinned_extents,
1064 bytenr, bytenr + num - 1, GFP_NOFS);
1065 }
1066 while (num > 0) {
1067 cache = btrfs_lookup_block_group(fs_info, bytenr);
1068 WARN_ON(!cache);
1069 len = min(num, cache->key.offset -
1070 (bytenr - cache->key.objectid));
1071 if (pin) {
1072 cache->pinned += len;
1073 fs_info->total_pinned += len;
1074 } else {
1075 cache->pinned -= len;
1076 fs_info->total_pinned -= len;
1077 }
1078 bytenr += len;
1079 num -= len;
1080 }
1081 return 0;
1082}
Chris Mason9078a3e2007-04-26 16:46:15 -04001083
Chris Mason1a5bc162007-10-15 16:15:26 -04001084int btrfs_copy_pinned(struct btrfs_root *root, struct extent_map_tree *copy)
Chris Masonccd467d2007-06-28 15:57:36 -04001085{
Chris Masonccd467d2007-06-28 15:57:36 -04001086 u64 last = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001087 u64 start;
1088 u64 end;
1089 struct extent_map_tree *pinned_extents = &root->fs_info->pinned_extents;
Chris Masonccd467d2007-06-28 15:57:36 -04001090 int ret;
Chris Masonccd467d2007-06-28 15:57:36 -04001091
1092 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001093 ret = find_first_extent_bit(pinned_extents, last,
1094 &start, &end, EXTENT_DIRTY);
1095 if (ret)
Chris Masonccd467d2007-06-28 15:57:36 -04001096 break;
Chris Mason1a5bc162007-10-15 16:15:26 -04001097 set_extent_dirty(copy, start, end, GFP_NOFS);
1098 last = end + 1;
Chris Masonccd467d2007-06-28 15:57:36 -04001099 }
1100 return 0;
1101}
1102
1103int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1104 struct btrfs_root *root,
Chris Mason1a5bc162007-10-15 16:15:26 -04001105 struct extent_map_tree *unpin)
Chris Masona28ec192007-03-06 20:08:01 -05001106{
Chris Mason1a5bc162007-10-15 16:15:26 -04001107 u64 start;
1108 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05001109 int ret;
Chris Masonf510cfe2007-10-15 16:14:48 -04001110 struct extent_map_tree *free_space_cache;
Chris Masonf510cfe2007-10-15 16:14:48 -04001111 free_space_cache = &root->fs_info->free_space_cache;
Chris Masona28ec192007-03-06 20:08:01 -05001112
1113 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001114 ret = find_first_extent_bit(unpin, 0, &start, &end,
1115 EXTENT_DIRTY);
1116 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05001117 break;
Yan324ae4d2007-11-16 14:57:08 -05001118 update_pinned_extents(root, start, end + 1 - start, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001119 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1120 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
Chris Masona28ec192007-03-06 20:08:01 -05001121 }
1122 return 0;
1123}
1124
Chris Masone089f052007-03-16 16:20:31 -04001125static int finish_current_insert(struct btrfs_trans_handle *trans, struct
1126 btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -05001127{
Chris Mason7bb86312007-12-11 09:25:06 -05001128 u64 start;
1129 u64 end;
1130 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001131 struct extent_buffer *eb;
Chris Mason7bb86312007-12-11 09:25:06 -05001132 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001133 struct btrfs_key ins;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001134 struct btrfs_disk_key first;
Chris Mason234b63a2007-03-13 10:46:10 -04001135 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -05001136 int ret;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001137 int level;
Chris Mason1a5bc162007-10-15 16:15:26 -04001138 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001139
Chris Mason5f39d392007-10-15 16:14:19 -04001140 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason62e27492007-03-15 12:56:47 -04001141 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason7bb86312007-12-11 09:25:06 -05001142 path = btrfs_alloc_path();
Chris Mason037e6392007-03-07 11:50:24 -05001143
Chris Mason26b80032007-08-08 20:17:12 -04001144 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001145 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1146 &end, EXTENT_LOCKED);
1147 if (ret)
Chris Mason26b80032007-08-08 20:17:12 -04001148 break;
1149
Chris Mason1a5bc162007-10-15 16:15:26 -04001150 ins.objectid = start;
1151 ins.offset = end + 1 - start;
1152 err = btrfs_insert_item(trans, extent_root, &ins,
1153 &extent_item, sizeof(extent_item));
1154 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1155 GFP_NOFS);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001156 eb = read_tree_block(extent_root, ins.objectid, ins.offset);
1157 level = btrfs_header_level(eb);
1158 if (level == 0) {
1159 btrfs_item_key(eb, &first, 0);
1160 } else {
1161 btrfs_node_key(eb, &first, 0);
1162 }
Chris Mason7bb86312007-12-11 09:25:06 -05001163 err = btrfs_insert_extent_backref(trans, extent_root, path,
1164 start, extent_root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -05001165 0, level,
1166 btrfs_disk_key_objectid(&first));
Chris Mason7bb86312007-12-11 09:25:06 -05001167 BUG_ON(err);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001168 free_extent_buffer(eb);
Chris Mason037e6392007-03-07 11:50:24 -05001169 }
Chris Mason7bb86312007-12-11 09:25:06 -05001170 btrfs_free_path(path);
Chris Mason037e6392007-03-07 11:50:24 -05001171 return 0;
1172}
1173
Chris Masondb945352007-10-15 16:15:53 -04001174static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
1175 int pending)
Chris Masone20d96d2007-03-22 12:13:20 -04001176{
Chris Mason1a5bc162007-10-15 16:15:26 -04001177 int err = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001178 struct extent_buffer *buf;
Chris Mason78fae272007-03-25 11:35:08 -04001179
Chris Masonf4b9aa82007-03-27 11:05:53 -04001180 if (!pending) {
Chris Masondb945352007-10-15 16:15:53 -04001181 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -04001182 if (buf) {
1183 if (btrfs_buffer_uptodate(buf)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -04001184 u64 transid =
1185 root->fs_info->running_transaction->transid;
Chris Mason5f39d392007-10-15 16:14:19 -04001186 if (btrfs_header_generation(buf) == transid) {
1187 free_extent_buffer(buf);
Yanc5492282007-11-06 10:25:25 -05001188 return 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001189 }
Chris Masonf4b9aa82007-03-27 11:05:53 -04001190 }
Chris Mason5f39d392007-10-15 16:14:19 -04001191 free_extent_buffer(buf);
Chris Mason8ef97622007-03-26 10:15:30 -04001192 }
Yan324ae4d2007-11-16 14:57:08 -05001193 update_pinned_extents(root, bytenr, num_bytes, 1);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001194 } else {
Chris Mason1a5bc162007-10-15 16:15:26 -04001195 set_extent_bits(&root->fs_info->pending_del,
Chris Masondb945352007-10-15 16:15:53 -04001196 bytenr, bytenr + num_bytes - 1,
1197 EXTENT_LOCKED, GFP_NOFS);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001198 }
Chris Masonbe744172007-05-06 10:15:01 -04001199 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001200 return 0;
1201}
1202
Chris Masona28ec192007-03-06 20:08:01 -05001203/*
1204 * remove an extent from the root, returns 0 on success
1205 */
Chris Masone089f052007-03-16 16:20:31 -04001206static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001207 *root, u64 bytenr, u64 num_bytes,
1208 u64 root_objectid, u64 ref_generation,
1209 u64 owner_objectid, u64 owner_offset, int pin,
Chris Masone37c9e62007-05-09 20:13:14 -04001210 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -05001211{
Chris Mason5caf2a02007-04-02 11:20:42 -04001212 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001213 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -04001214 struct btrfs_fs_info *info = root->fs_info;
1215 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001216 struct extent_buffer *leaf;
Chris Masona28ec192007-03-06 20:08:01 -05001217 int ret;
Chris Mason234b63a2007-03-13 10:46:10 -04001218 struct btrfs_extent_item *ei;
Chris Masoncf27e1e2007-03-13 09:49:06 -04001219 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -05001220
Chris Masondb945352007-10-15 16:15:53 -04001221 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -04001222 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -04001223 key.offset = num_bytes;
Chris Masona28ec192007-03-06 20:08:01 -05001224
Chris Mason5caf2a02007-04-02 11:20:42 -04001225 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001226 if (!path)
1227 return -ENOMEM;
1228
Chris Mason7bb86312007-12-11 09:25:06 -05001229 ret = lookup_extent_backref(trans, extent_root, path,
1230 bytenr, root_objectid,
1231 ref_generation,
1232 owner_objectid, owner_offset, 1);
1233 if (ret == 0) {
1234 ret = btrfs_del_item(trans, extent_root, path);
1235 } else {
1236 btrfs_print_leaf(extent_root, path->nodes[0]);
1237 WARN_ON(1);
1238 printk("Unable to find ref byte nr %Lu root %Lu "
1239 " gen %Lu owner %Lu offset %Lu\n", bytenr,
1240 root_objectid, ref_generation, owner_objectid,
1241 owner_offset);
1242 }
1243 btrfs_release_path(extent_root, path);
Chris Mason5caf2a02007-04-02 11:20:42 -04001244 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001245 if (ret < 0)
1246 return ret;
1247 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001248
1249 leaf = path->nodes[0];
1250 ei = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason123abc82007-03-14 14:14:43 -04001251 struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001252 refs = btrfs_extent_refs(leaf, ei);
1253 BUG_ON(refs == 0);
1254 refs -= 1;
1255 btrfs_set_extent_refs(leaf, ei, refs);
1256 btrfs_mark_buffer_dirty(leaf);
1257
Chris Masoncf27e1e2007-03-13 09:49:06 -04001258 if (refs == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001259 u64 super_used;
1260 u64 root_used;
Chris Mason78fae272007-03-25 11:35:08 -04001261
1262 if (pin) {
Chris Masondb945352007-10-15 16:15:53 -04001263 ret = pin_down_bytes(root, bytenr, num_bytes, 0);
Yanc5492282007-11-06 10:25:25 -05001264 if (ret > 0)
1265 mark_free = 1;
1266 BUG_ON(ret < 0);
Chris Mason78fae272007-03-25 11:35:08 -04001267 }
1268
Josef Bacik58176a92007-08-29 15:47:34 -04001269 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001270 super_used = btrfs_super_bytes_used(&info->super_copy);
1271 btrfs_set_super_bytes_used(&info->super_copy,
1272 super_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001273
1274 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001275 root_used = btrfs_root_used(&root->root_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001276 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -04001277 root_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001278
Chris Mason5caf2a02007-04-02 11:20:42 -04001279 ret = btrfs_del_item(trans, extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -04001280 if (ret) {
1281 return ret;
1282 }
Chris Masondb945352007-10-15 16:15:53 -04001283 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
Chris Mason1e2677e2007-05-29 16:52:18 -04001284 mark_free, 0);
Chris Mason9078a3e2007-04-26 16:46:15 -04001285 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05001286 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001287 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001288 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -05001289 return ret;
1290}
1291
1292/*
Chris Masonfec577f2007-02-26 10:40:21 -05001293 * find all the blocks marked as pending in the radix tree and remove
1294 * them from the extent map
1295 */
Chris Masone089f052007-03-16 16:20:31 -04001296static int del_pending_extents(struct btrfs_trans_handle *trans, struct
1297 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -05001298{
1299 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001300 int err = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001301 u64 start;
1302 u64 end;
1303 struct extent_map_tree *pending_del;
1304 struct extent_map_tree *pinned_extents;
Chris Mason8ef97622007-03-26 10:15:30 -04001305
Chris Mason1a5bc162007-10-15 16:15:26 -04001306 pending_del = &extent_root->fs_info->pending_del;
1307 pinned_extents = &extent_root->fs_info->pinned_extents;
Chris Masonfec577f2007-02-26 10:40:21 -05001308
1309 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001310 ret = find_first_extent_bit(pending_del, 0, &start, &end,
1311 EXTENT_LOCKED);
1312 if (ret)
Chris Masonfec577f2007-02-26 10:40:21 -05001313 break;
Yan324ae4d2007-11-16 14:57:08 -05001314 update_pinned_extents(extent_root, start, end + 1 - start, 1);
Chris Mason1a5bc162007-10-15 16:15:26 -04001315 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
1316 GFP_NOFS);
1317 ret = __free_extent(trans, extent_root,
Chris Mason7bb86312007-12-11 09:25:06 -05001318 start, end + 1 - start,
1319 extent_root->root_key.objectid,
1320 0, 0, 0, 0, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001321 if (ret)
1322 err = ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001323 }
Chris Masone20d96d2007-03-22 12:13:20 -04001324 return err;
Chris Masonfec577f2007-02-26 10:40:21 -05001325}
1326
1327/*
1328 * remove an extent from the root, returns 0 on success
1329 */
Chris Masone089f052007-03-16 16:20:31 -04001330int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001331 *root, u64 bytenr, u64 num_bytes,
1332 u64 root_objectid, u64 ref_generation,
1333 u64 owner_objectid, u64 owner_offset, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -05001334{
Chris Mason9f5fae22007-03-20 14:38:32 -04001335 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -05001336 int pending_ret;
1337 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05001338
Chris Masondb945352007-10-15 16:15:53 -04001339 WARN_ON(num_bytes < root->sectorsize);
Chris Mason7bb86312007-12-11 09:25:06 -05001340 if (!root->ref_cows)
1341 ref_generation = 0;
1342
Chris Masona28ec192007-03-06 20:08:01 -05001343 if (root == extent_root) {
Chris Masondb945352007-10-15 16:15:53 -04001344 pin_down_bytes(root, bytenr, num_bytes, 1);
Chris Masona28ec192007-03-06 20:08:01 -05001345 return 0;
1346 }
Chris Mason7bb86312007-12-11 09:25:06 -05001347 ret = __free_extent(trans, root, bytenr, num_bytes, root_objectid,
1348 ref_generation, owner_objectid, owner_offset,
1349 pin, pin == 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001350 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -05001351 return ret ? ret : pending_ret;
1352}
1353
Chris Mason87ee04e2007-11-30 11:30:34 -05001354static u64 stripe_align(struct btrfs_root *root, u64 val)
1355{
1356 u64 mask = ((u64)root->stripesize - 1);
1357 u64 ret = (val + mask) & ~mask;
1358 return ret;
1359}
1360
Chris Masonfec577f2007-02-26 10:40:21 -05001361/*
1362 * walks the btree of allocated extents and find a hole of a given size.
1363 * The key ins is changed to record the hole:
1364 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04001365 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05001366 * ins->offset == number of blocks
1367 * Any available blocks before search_start are skipped.
1368 */
Chris Masone089f052007-03-16 16:20:31 -04001369static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masondb945352007-10-15 16:15:53 -04001370 *orig_root, u64 num_bytes, u64 empty_size,
1371 u64 search_start, u64 search_end, u64 hint_byte,
Chris Masonf2654de2007-06-26 12:20:46 -04001372 struct btrfs_key *ins, u64 exclude_start,
1373 u64 exclude_nr, int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001374{
Chris Mason5caf2a02007-04-02 11:20:42 -04001375 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001376 struct btrfs_key key;
Chris Masonfec577f2007-02-26 10:40:21 -05001377 u64 hole_size = 0;
Chris Mason87ee04e2007-11-30 11:30:34 -05001378 u64 aligned;
1379 int ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001380 int slot = 0;
Chris Masondb945352007-10-15 16:15:53 -04001381 u64 last_byte = 0;
Chris Masonbe744172007-05-06 10:15:01 -04001382 u64 orig_search_start = search_start;
Chris Masonfec577f2007-02-26 10:40:21 -05001383 int start_found;
Chris Mason5f39d392007-10-15 16:14:19 -04001384 struct extent_buffer *l;
Chris Mason9f5fae22007-03-20 14:38:32 -04001385 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -04001386 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001387 u64 total_needed = num_bytes;
Chris Masone20d96d2007-03-22 12:13:20 -04001388 int level;
Chris Masonbe08c1b2007-05-03 09:06:49 -04001389 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -04001390 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -04001391 int wrapped = 0;
Chris Masonf84a8b32007-11-06 10:26:29 -05001392 u64 cached_start;
Chris Masonfec577f2007-02-26 10:40:21 -05001393
Chris Masondb945352007-10-15 16:15:53 -04001394 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04001395 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
1396
Chris Mason5f39d392007-10-15 16:14:19 -04001397 level = btrfs_header_level(root->node);
1398
Chris Mason015a739c2007-11-26 16:15:16 -08001399 if (num_bytes >= 32 * 1024 * 1024 && hint_byte) {
Chris Mason257d0ce2007-11-07 21:08:16 -05001400 data = BTRFS_BLOCK_GROUP_MIXED;
1401 }
1402
Chris Mason3e1ad542007-05-07 20:03:49 -04001403 if (search_end == (u64)-1)
Chris Masondb945352007-10-15 16:15:53 -04001404 search_end = btrfs_super_total_bytes(&info->super_copy);
1405 if (hint_byte) {
1406 block_group = btrfs_lookup_block_group(info, hint_byte);
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001407 if (!block_group)
1408 hint_byte = search_start;
Chris Masonbe744172007-05-06 10:15:01 -04001409 block_group = btrfs_find_block_group(root, block_group,
Chris Masondb945352007-10-15 16:15:53 -04001410 hint_byte, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001411 } else {
1412 block_group = btrfs_find_block_group(root,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001413 trans->block_group,
1414 search_start, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001415 }
1416
Chris Mason6702ed42007-08-07 16:15:09 -04001417 total_needed += empty_size;
Chris Masone0115992007-06-19 16:23:05 -04001418 path = btrfs_alloc_path();
Chris Masonbe744172007-05-06 10:15:01 -04001419check_failed:
Chris Mason70b043f2007-12-13 09:02:46 -05001420 if (!block_group) {
1421 block_group = btrfs_lookup_block_group(info, search_start);
1422 if (!block_group)
1423 block_group = btrfs_lookup_block_group(info,
1424 orig_search_start);
1425 }
Yan5e5745d2007-11-16 14:57:09 -05001426 search_start = find_search_start(root, &block_group, search_start,
1427 total_needed, data, full_scan);
Chris Mason87ee04e2007-11-30 11:30:34 -05001428 search_start = stripe_align(root, search_start);
Chris Masonf84a8b32007-11-06 10:26:29 -05001429 cached_start = search_start;
Chris Mason5caf2a02007-04-02 11:20:42 -04001430 btrfs_init_path(path);
Chris Masonfec577f2007-02-26 10:40:21 -05001431 ins->objectid = search_start;
1432 ins->offset = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001433 start_found = 0;
Chris Mason2cc58cf2007-08-27 16:49:44 -04001434 path->reada = 2;
Chris Masone37c9e62007-05-09 20:13:14 -04001435
Chris Mason5caf2a02007-04-02 11:20:42 -04001436 ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
Chris Mason0f70abe2007-02-28 16:46:22 -05001437 if (ret < 0)
1438 goto error;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001439
Chris Masone37c9e62007-05-09 20:13:14 -04001440 if (path->slots[0] > 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001441 path->slots[0]--;
Chris Masone37c9e62007-05-09 20:13:14 -04001442 }
1443
Chris Mason5f39d392007-10-15 16:14:19 -04001444 l = path->nodes[0];
1445 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
1446
Chris Masone37c9e62007-05-09 20:13:14 -04001447 /*
Chris Mason7bb86312007-12-11 09:25:06 -05001448 * walk backwards to find the first extent item key
Chris Masone37c9e62007-05-09 20:13:14 -04001449 */
Chris Mason7bb86312007-12-11 09:25:06 -05001450 while(btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY) {
1451 if (path->slots[0] == 0) {
1452 ret = btrfs_prev_leaf(root, path);
1453 if (ret != 0) {
1454 ret = btrfs_search_slot(trans, root, ins,
1455 path, 0, 0);
1456 if (ret < 0)
1457 goto error;
1458 if (path->slots[0] > 0)
1459 path->slots[0]--;
1460 break;
1461 }
1462 } else {
Chris Masone37c9e62007-05-09 20:13:14 -04001463 path->slots[0]--;
1464 }
Chris Mason7bb86312007-12-11 09:25:06 -05001465 l = path->nodes[0];
1466 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
Chris Masone37c9e62007-05-09 20:13:14 -04001467 }
Chris Masonfec577f2007-02-26 10:40:21 -05001468 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001469 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -04001470 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04001471 if (slot >= btrfs_header_nritems(l)) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001472 ret = btrfs_next_leaf(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -05001473 if (ret == 0)
1474 continue;
Chris Mason0f70abe2007-02-28 16:46:22 -05001475 if (ret < 0)
1476 goto error;
Chris Masone19caa52007-10-15 16:17:44 -04001477
1478 search_start = max(search_start,
1479 block_group->key.objectid);
Chris Masonfec577f2007-02-26 10:40:21 -05001480 if (!start_found) {
Chris Mason87ee04e2007-11-30 11:30:34 -05001481 aligned = stripe_align(root, search_start);
1482 ins->objectid = aligned;
1483 if (aligned >= search_end) {
1484 ret = -ENOSPC;
1485 goto error;
1486 }
1487 ins->offset = search_end - aligned;
Chris Masonfec577f2007-02-26 10:40:21 -05001488 start_found = 1;
1489 goto check_pending;
1490 }
Chris Mason87ee04e2007-11-30 11:30:34 -05001491 ins->objectid = stripe_align(root,
1492 last_byte > search_start ?
1493 last_byte : search_start);
1494 if (search_end <= ins->objectid) {
1495 ret = -ENOSPC;
1496 goto error;
1497 }
Chris Mason3e1ad542007-05-07 20:03:49 -04001498 ins->offset = search_end - ins->objectid;
Chris Masone19caa52007-10-15 16:17:44 -04001499 BUG_ON(ins->objectid >= search_end);
Chris Masonfec577f2007-02-26 10:40:21 -05001500 goto check_pending;
1501 }
Chris Mason5f39d392007-10-15 16:14:19 -04001502 btrfs_item_key_to_cpu(l, &key, slot);
Chris Mason96b51792007-10-15 16:15:19 -04001503
Chris Masondb945352007-10-15 16:15:53 -04001504 if (key.objectid >= search_start && key.objectid > last_byte &&
Chris Masone37c9e62007-05-09 20:13:14 -04001505 start_found) {
Chris Masondb945352007-10-15 16:15:53 -04001506 if (last_byte < search_start)
1507 last_byte = search_start;
Chris Mason87ee04e2007-11-30 11:30:34 -05001508 aligned = stripe_align(root, last_byte);
1509 hole_size = key.objectid - aligned;
1510 if (key.objectid > aligned && hole_size >= num_bytes) {
1511 ins->objectid = aligned;
Chris Masone37c9e62007-05-09 20:13:14 -04001512 ins->offset = hole_size;
1513 goto check_pending;
Chris Mason0579da42007-03-07 16:15:30 -05001514 }
Chris Masonfec577f2007-02-26 10:40:21 -05001515 }
Chris Mason96b51792007-10-15 16:15:19 -04001516 if (btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY) {
Chris Mason7bb86312007-12-11 09:25:06 -05001517 if (!start_found && btrfs_key_type(&key) ==
1518 BTRFS_BLOCK_GROUP_ITEM_KEY) {
Chris Masondb945352007-10-15 16:15:53 -04001519 last_byte = key.objectid;
Chris Mason96b51792007-10-15 16:15:19 -04001520 start_found = 1;
1521 }
Chris Masone37c9e62007-05-09 20:13:14 -04001522 goto next;
Chris Mason96b51792007-10-15 16:15:19 -04001523 }
1524
Chris Masone37c9e62007-05-09 20:13:14 -04001525
Chris Mason0579da42007-03-07 16:15:30 -05001526 start_found = 1;
Chris Masondb945352007-10-15 16:15:53 -04001527 last_byte = key.objectid + key.offset;
Chris Masonf510cfe2007-10-15 16:14:48 -04001528
Chris Mason257d0ce2007-11-07 21:08:16 -05001529 if (!full_scan && data != BTRFS_BLOCK_GROUP_MIXED &&
1530 last_byte >= block_group->key.objectid +
Chris Masonbe744172007-05-06 10:15:01 -04001531 block_group->key.offset) {
1532 btrfs_release_path(root, path);
1533 search_start = block_group->key.objectid +
Chris Masone19caa52007-10-15 16:17:44 -04001534 block_group->key.offset;
Chris Masonbe744172007-05-06 10:15:01 -04001535 goto new_group;
1536 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001537next:
Chris Mason5caf2a02007-04-02 11:20:42 -04001538 path->slots[0]++;
Chris Masonde428b62007-05-18 13:28:27 -04001539 cond_resched();
Chris Masonfec577f2007-02-26 10:40:21 -05001540 }
Chris Masonfec577f2007-02-26 10:40:21 -05001541check_pending:
1542 /* we have to make sure we didn't find an extent that has already
1543 * been allocated by the map tree or the original allocation
1544 */
Chris Mason5caf2a02007-04-02 11:20:42 -04001545 btrfs_release_path(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -05001546 BUG_ON(ins->objectid < search_start);
Chris Masone37c9e62007-05-09 20:13:14 -04001547
Chris Masondb945352007-10-15 16:15:53 -04001548 if (ins->objectid + num_bytes >= search_end)
Chris Masoncf675822007-09-17 11:00:51 -04001549 goto enospc;
Chris Mason257d0ce2007-11-07 21:08:16 -05001550 if (!full_scan && data != BTRFS_BLOCK_GROUP_MIXED &&
Yan5cf66422007-11-16 14:57:09 -05001551 ins->objectid + num_bytes > block_group->
Chris Masone19caa52007-10-15 16:17:44 -04001552 key.objectid + block_group->key.offset) {
1553 search_start = block_group->key.objectid +
1554 block_group->key.offset;
1555 goto new_group;
1556 }
Chris Mason1a5bc162007-10-15 16:15:26 -04001557 if (test_range_bit(&info->extent_ins, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001558 ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
1559 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001560 goto new_group;
1561 }
1562 if (test_range_bit(&info->pinned_extents, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001563 ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
1564 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001565 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05001566 }
Chris Masondb945352007-10-15 16:15:53 -04001567 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
Chris Masonf2654de2007-06-26 12:20:46 -04001568 ins->objectid < exclude_start + exclude_nr)) {
1569 search_start = exclude_start + exclude_nr;
1570 goto new_group;
1571 }
Chris Masone37c9e62007-05-09 20:13:14 -04001572 if (!data) {
Chris Mason5276aed2007-06-11 21:33:38 -04001573 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Mason26b80032007-08-08 20:17:12 -04001574 if (block_group)
1575 trans->block_group = block_group;
Chris Masoncd1bc462007-04-27 10:08:34 -04001576 }
Chris Masondb945352007-10-15 16:15:53 -04001577 ins->offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001578 btrfs_free_path(path);
Chris Masonfec577f2007-02-26 10:40:21 -05001579 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04001580
1581new_group:
Chris Masondb945352007-10-15 16:15:53 -04001582 if (search_start + num_bytes >= search_end) {
Chris Masoncf675822007-09-17 11:00:51 -04001583enospc:
Chris Masonbe744172007-05-06 10:15:01 -04001584 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04001585 if (full_scan) {
1586 ret = -ENOSPC;
1587 goto error;
1588 }
Chris Mason6702ed42007-08-07 16:15:09 -04001589 if (wrapped) {
1590 if (!full_scan)
1591 total_needed -= empty_size;
Chris Masonfbdc7622007-05-30 10:22:12 -04001592 full_scan = 1;
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001593 data = BTRFS_BLOCK_GROUP_MIXED;
Chris Mason6702ed42007-08-07 16:15:09 -04001594 } else
Chris Masonfbdc7622007-05-30 10:22:12 -04001595 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04001596 }
Chris Mason5276aed2007-06-11 21:33:38 -04001597 block_group = btrfs_lookup_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04001598 cond_resched();
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001599 block_group = btrfs_find_block_group(root, block_group,
1600 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04001601 goto check_failed;
1602
Chris Mason0f70abe2007-02-28 16:46:22 -05001603error:
Chris Mason5caf2a02007-04-02 11:20:42 -04001604 btrfs_release_path(root, path);
1605 btrfs_free_path(path);
Chris Mason0f70abe2007-02-28 16:46:22 -05001606 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001607}
Chris Masonfec577f2007-02-26 10:40:21 -05001608/*
Chris Masonfec577f2007-02-26 10:40:21 -05001609 * finds a free extent and does all the dirty work required for allocation
1610 * returns the key for the extent through ins, and a tree buffer for
1611 * the first block of the extent through buf.
1612 *
1613 * returns 0 if everything worked, non-zero otherwise.
1614 */
Chris Mason4d775672007-04-20 20:23:12 -04001615int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -05001616 struct btrfs_root *root,
1617 u64 num_bytes, u64 root_objectid, u64 ref_generation,
1618 u64 owner, u64 owner_offset,
1619 u64 empty_size, u64 hint_byte,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001620 u64 search_end, struct btrfs_key *ins, int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001621{
1622 int ret;
1623 int pending_ret;
Chris Masondb945352007-10-15 16:15:53 -04001624 u64 super_used, root_used;
Chris Masonfbdc7622007-05-30 10:22:12 -04001625 u64 search_start = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05001626 u64 new_hint;
Chris Mason1261ec42007-03-20 20:35:03 -04001627 struct btrfs_fs_info *info = root->fs_info;
1628 struct btrfs_root *extent_root = info->extent_root;
Chris Mason234b63a2007-03-13 10:46:10 -04001629 struct btrfs_extent_item extent_item;
Chris Mason7bb86312007-12-11 09:25:06 -05001630 struct btrfs_path *path;
Chris Mason037e6392007-03-07 11:50:24 -05001631
Chris Mason5f39d392007-10-15 16:14:19 -04001632 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason8f662a72008-01-02 10:01:11 -05001633
1634 new_hint = max(hint_byte, root->fs_info->alloc_start);
Chris Masonedbd8d42007-12-21 16:27:24 -05001635 if (new_hint < btrfs_super_total_bytes(&info->super_copy))
1636 hint_byte = new_hint;
Chris Mason8f662a72008-01-02 10:01:11 -05001637
Chris Masondb945352007-10-15 16:15:53 -04001638 WARN_ON(num_bytes < root->sectorsize);
1639 ret = find_free_extent(trans, root, num_bytes, empty_size,
1640 search_start, search_end, hint_byte, ins,
Chris Mason26b80032007-08-08 20:17:12 -04001641 trans->alloc_exclude_start,
1642 trans->alloc_exclude_nr, data);
Chris Masonccd467d2007-06-28 15:57:36 -04001643 BUG_ON(ret);
Chris Masonf2654de2007-06-26 12:20:46 -04001644 if (ret)
1645 return ret;
1646
Josef Bacik58176a92007-08-29 15:47:34 -04001647 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001648 super_used = btrfs_super_bytes_used(&info->super_copy);
1649 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
Chris Mason26b80032007-08-08 20:17:12 -04001650
Josef Bacik58176a92007-08-29 15:47:34 -04001651 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001652 root_used = btrfs_root_used(&root->root_item);
1653 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001654
Chris Masonf510cfe2007-10-15 16:14:48 -04001655 clear_extent_dirty(&root->fs_info->free_space_cache,
1656 ins->objectid, ins->objectid + ins->offset - 1,
1657 GFP_NOFS);
1658
Chris Mason26b80032007-08-08 20:17:12 -04001659 if (root == extent_root) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001660 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
1661 ins->objectid + ins->offset - 1,
1662 EXTENT_LOCKED, GFP_NOFS);
Chris Masone19caa52007-10-15 16:17:44 -04001663 WARN_ON(data == 1);
Chris Mason26b80032007-08-08 20:17:12 -04001664 goto update_block;
1665 }
1666
1667 WARN_ON(trans->alloc_exclude_nr);
1668 trans->alloc_exclude_start = ins->objectid;
1669 trans->alloc_exclude_nr = ins->offset;
Chris Masone089f052007-03-16 16:20:31 -04001670 ret = btrfs_insert_item(trans, extent_root, ins, &extent_item,
1671 sizeof(extent_item));
Chris Mason037e6392007-03-07 11:50:24 -05001672
Chris Mason26b80032007-08-08 20:17:12 -04001673 trans->alloc_exclude_start = 0;
1674 trans->alloc_exclude_nr = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001675 BUG_ON(ret);
1676
1677 path = btrfs_alloc_path();
1678 BUG_ON(!path);
1679 ret = btrfs_insert_extent_backref(trans, extent_root, path,
1680 ins->objectid, root_objectid,
1681 ref_generation, owner, owner_offset);
Chris Mason26b80032007-08-08 20:17:12 -04001682
Chris Masonccd467d2007-06-28 15:57:36 -04001683 BUG_ON(ret);
Chris Mason7bb86312007-12-11 09:25:06 -05001684 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001685 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001686 pending_ret = del_pending_extents(trans, extent_root);
Chris Masonf510cfe2007-10-15 16:14:48 -04001687
Chris Masone37c9e62007-05-09 20:13:14 -04001688 if (ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001689 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001690 }
1691 if (pending_ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001692 return pending_ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001693 }
Chris Mason26b80032007-08-08 20:17:12 -04001694
1695update_block:
Chris Mason1e2677e2007-05-29 16:52:18 -04001696 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0,
1697 data);
Chris Masonfabb5682007-06-07 22:13:21 -04001698 BUG_ON(ret);
Chris Mason037e6392007-03-07 11:50:24 -05001699 return 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001700}
1701
1702/*
1703 * helper function to allocate a block for a given tree
1704 * returns the tree buffer or NULL.
1705 */
Chris Mason5f39d392007-10-15 16:14:19 -04001706struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -04001707 struct btrfs_root *root,
Chris Mason7bb86312007-12-11 09:25:06 -05001708 u32 blocksize,
1709 u64 root_objectid, u64 hint,
1710 u64 empty_size)
1711{
1712 u64 ref_generation;
1713
1714 if (root->ref_cows)
1715 ref_generation = trans->transid;
1716 else
1717 ref_generation = 0;
1718
1719
1720 return __btrfs_alloc_free_block(trans, root, blocksize, root_objectid,
1721 ref_generation, 0, 0, hint, empty_size);
1722}
1723
1724/*
1725 * helper function to allocate a block for a given tree
1726 * returns the tree buffer or NULL.
1727 */
1728struct extent_buffer *__btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1729 struct btrfs_root *root,
1730 u32 blocksize,
1731 u64 root_objectid,
1732 u64 ref_generation,
1733 u64 first_objectid,
1734 int level,
1735 u64 hint,
Chris Mason5f39d392007-10-15 16:14:19 -04001736 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05001737{
Chris Masone2fa7222007-03-12 16:22:34 -04001738 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05001739 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04001740 struct extent_buffer *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05001741
Chris Mason7bb86312007-12-11 09:25:06 -05001742 ret = btrfs_alloc_extent(trans, root, blocksize,
1743 root_objectid, ref_generation,
Chris Masonf6dbff52007-12-13 11:13:32 -05001744 level, first_objectid, empty_size, hint,
Chris Masondb945352007-10-15 16:15:53 -04001745 (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05001746 if (ret) {
Chris Mason54aa1f42007-06-22 14:16:25 -04001747 BUG_ON(ret > 0);
1748 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05001749 }
Chris Masondb945352007-10-15 16:15:53 -04001750 buf = btrfs_find_create_tree_block(root, ins.objectid, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04001751 if (!buf) {
Chris Mason7bb86312007-12-11 09:25:06 -05001752 btrfs_free_extent(trans, root, ins.objectid, blocksize,
1753 root->root_key.objectid, ref_generation,
1754 0, 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001755 return ERR_PTR(-ENOMEM);
1756 }
Chris Mason5f39d392007-10-15 16:14:19 -04001757 btrfs_set_buffer_uptodate(buf);
1758 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
1759 buf->start + buf->len - 1, GFP_NOFS);
Chris Mason19c00dd2007-10-15 16:19:22 -04001760 set_extent_bits(&BTRFS_I(root->fs_info->btree_inode)->extent_tree,
1761 buf->start, buf->start + buf->len - 1,
1762 EXTENT_CSUM, GFP_NOFS);
1763 buf->flags |= EXTENT_CSUM;
Chris Mason6b800532007-10-15 16:17:34 -04001764 btrfs_set_buffer_defrag(buf);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001765 trans->blocks_used++;
Chris Masonfec577f2007-02-26 10:40:21 -05001766 return buf;
1767}
Chris Masona28ec192007-03-06 20:08:01 -05001768
Chris Mason6407bf62007-03-27 06:33:00 -04001769static int drop_leaf_ref(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001770 struct btrfs_root *root, struct extent_buffer *leaf)
Chris Mason6407bf62007-03-27 06:33:00 -04001771{
Chris Mason7bb86312007-12-11 09:25:06 -05001772 u64 leaf_owner;
1773 u64 leaf_generation;
Chris Mason5f39d392007-10-15 16:14:19 -04001774 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04001775 struct btrfs_file_extent_item *fi;
1776 int i;
1777 int nritems;
1778 int ret;
1779
Chris Mason5f39d392007-10-15 16:14:19 -04001780 BUG_ON(!btrfs_is_leaf(leaf));
1781 nritems = btrfs_header_nritems(leaf);
Chris Mason7bb86312007-12-11 09:25:06 -05001782 leaf_owner = btrfs_header_owner(leaf);
1783 leaf_generation = btrfs_header_generation(leaf);
1784
Chris Mason6407bf62007-03-27 06:33:00 -04001785 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001786 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001787
1788 btrfs_item_key_to_cpu(leaf, &key, i);
1789 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04001790 continue;
1791 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001792 if (btrfs_file_extent_type(leaf, fi) ==
1793 BTRFS_FILE_EXTENT_INLINE)
Chris Mason236454df2007-04-19 13:37:44 -04001794 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04001795 /*
1796 * FIXME make sure to insert a trans record that
1797 * repeats the snapshot del on crash
1798 */
Chris Masondb945352007-10-15 16:15:53 -04001799 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1800 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04001801 continue;
Chris Masondb945352007-10-15 16:15:53 -04001802 ret = btrfs_free_extent(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001803 btrfs_file_extent_disk_num_bytes(leaf, fi),
1804 leaf_owner, leaf_generation,
1805 key.objectid, key.offset, 0);
Chris Mason6407bf62007-03-27 06:33:00 -04001806 BUG_ON(ret);
1807 }
1808 return 0;
1809}
1810
Chris Masone0115992007-06-19 16:23:05 -04001811static void reada_walk_down(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -04001812 struct extent_buffer *node)
Chris Masone0115992007-06-19 16:23:05 -04001813{
1814 int i;
1815 u32 nritems;
Chris Masondb945352007-10-15 16:15:53 -04001816 u64 bytenr;
Chris Masone0115992007-06-19 16:23:05 -04001817 int ret;
1818 u32 refs;
Chris Masondb945352007-10-15 16:15:53 -04001819 int level;
1820 u32 blocksize;
Chris Masone0115992007-06-19 16:23:05 -04001821
Chris Mason5f39d392007-10-15 16:14:19 -04001822 nritems = btrfs_header_nritems(node);
Chris Masondb945352007-10-15 16:15:53 -04001823 level = btrfs_header_level(node);
Chris Masone0115992007-06-19 16:23:05 -04001824 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001825 bytenr = btrfs_node_blockptr(node, i);
1826 blocksize = btrfs_level_size(root, level - 1);
1827 ret = lookup_extent_ref(NULL, root, bytenr, blocksize, &refs);
Chris Masone0115992007-06-19 16:23:05 -04001828 BUG_ON(ret);
1829 if (refs != 1)
1830 continue;
Chris Mason409eb952007-08-08 20:17:12 -04001831 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -04001832 ret = readahead_tree_block(root, bytenr, blocksize);
Chris Mason409eb952007-08-08 20:17:12 -04001833 cond_resched();
1834 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone0115992007-06-19 16:23:05 -04001835 if (ret)
1836 break;
1837 }
1838}
1839
Chris Mason9aca1d52007-03-13 11:09:37 -04001840/*
1841 * helper function for drop_snapshot, this walks down the tree dropping ref
1842 * counts as it goes.
1843 */
Chris Masone089f052007-03-16 16:20:31 -04001844static int walk_down_tree(struct btrfs_trans_handle *trans, struct btrfs_root
1845 *root, struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05001846{
Chris Mason7bb86312007-12-11 09:25:06 -05001847 u64 root_owner;
1848 u64 root_gen;
1849 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001850 struct extent_buffer *next;
1851 struct extent_buffer *cur;
Chris Mason7bb86312007-12-11 09:25:06 -05001852 struct extent_buffer *parent;
Chris Masondb945352007-10-15 16:15:53 -04001853 u32 blocksize;
Chris Mason20524f02007-03-10 06:35:47 -05001854 int ret;
1855 u32 refs;
1856
Chris Mason5caf2a02007-04-02 11:20:42 -04001857 WARN_ON(*level < 0);
1858 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason5f39d392007-10-15 16:14:19 -04001859 ret = lookup_extent_ref(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04001860 path->nodes[*level]->start,
1861 path->nodes[*level]->len, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05001862 BUG_ON(ret);
1863 if (refs > 1)
1864 goto out;
Chris Masone0115992007-06-19 16:23:05 -04001865
Chris Mason9aca1d52007-03-13 11:09:37 -04001866 /*
1867 * walk down to the last node level and free all the leaves
1868 */
Chris Mason6407bf62007-03-27 06:33:00 -04001869 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001870 WARN_ON(*level < 0);
1871 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05001872 cur = path->nodes[*level];
Chris Masone0115992007-06-19 16:23:05 -04001873
1874 if (*level > 0 && path->slots[*level] == 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001875 reada_walk_down(root, cur);
Chris Masone0115992007-06-19 16:23:05 -04001876
Chris Mason5f39d392007-10-15 16:14:19 -04001877 if (btrfs_header_level(cur) != *level)
Chris Mason2c90e5d2007-04-02 10:50:19 -04001878 WARN_ON(1);
Chris Masone0115992007-06-19 16:23:05 -04001879
Chris Mason7518a232007-03-12 12:01:18 -04001880 if (path->slots[*level] >=
Chris Mason5f39d392007-10-15 16:14:19 -04001881 btrfs_header_nritems(cur))
Chris Mason20524f02007-03-10 06:35:47 -05001882 break;
Chris Mason6407bf62007-03-27 06:33:00 -04001883 if (*level == 0) {
1884 ret = drop_leaf_ref(trans, root, cur);
1885 BUG_ON(ret);
1886 break;
1887 }
Chris Masondb945352007-10-15 16:15:53 -04001888 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
1889 blocksize = btrfs_level_size(root, *level - 1);
1890 ret = lookup_extent_ref(trans, root, bytenr, blocksize, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04001891 BUG_ON(ret);
1892 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05001893 parent = path->nodes[*level];
1894 root_owner = btrfs_header_owner(parent);
1895 root_gen = btrfs_header_generation(parent);
Chris Mason20524f02007-03-10 06:35:47 -05001896 path->slots[*level]++;
Chris Masondb945352007-10-15 16:15:53 -04001897 ret = btrfs_free_extent(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001898 blocksize, root_owner,
1899 root_gen, 0, 0, 1);
Chris Mason20524f02007-03-10 06:35:47 -05001900 BUG_ON(ret);
1901 continue;
1902 }
Chris Masondb945352007-10-15 16:15:53 -04001903 next = btrfs_find_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001904 if (!next || !btrfs_buffer_uptodate(next)) {
1905 free_extent_buffer(next);
Chris Masone9d0b132007-08-10 14:06:19 -04001906 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -04001907 next = read_tree_block(root, bytenr, blocksize);
Chris Masone9d0b132007-08-10 14:06:19 -04001908 mutex_lock(&root->fs_info->fs_mutex);
1909
1910 /* we dropped the lock, check one more time */
Chris Masondb945352007-10-15 16:15:53 -04001911 ret = lookup_extent_ref(trans, root, bytenr,
1912 blocksize, &refs);
Chris Masone9d0b132007-08-10 14:06:19 -04001913 BUG_ON(ret);
1914 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05001915 parent = path->nodes[*level];
1916 root_owner = btrfs_header_owner(parent);
1917 root_gen = btrfs_header_generation(parent);
1918
Chris Masone9d0b132007-08-10 14:06:19 -04001919 path->slots[*level]++;
Chris Mason5f39d392007-10-15 16:14:19 -04001920 free_extent_buffer(next);
Chris Mason7bb86312007-12-11 09:25:06 -05001921 ret = btrfs_free_extent(trans, root, bytenr,
1922 blocksize,
1923 root_owner,
1924 root_gen, 0, 0, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04001925 BUG_ON(ret);
1926 continue;
1927 }
1928 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001929 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04001930 if (path->nodes[*level-1])
Chris Mason5f39d392007-10-15 16:14:19 -04001931 free_extent_buffer(path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05001932 path->nodes[*level-1] = next;
Chris Mason5f39d392007-10-15 16:14:19 -04001933 *level = btrfs_header_level(next);
Chris Mason20524f02007-03-10 06:35:47 -05001934 path->slots[*level] = 0;
1935 }
1936out:
Chris Mason5caf2a02007-04-02 11:20:42 -04001937 WARN_ON(*level < 0);
1938 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason7bb86312007-12-11 09:25:06 -05001939
1940 if (path->nodes[*level] == root->node) {
1941 root_owner = root->root_key.objectid;
1942 parent = path->nodes[*level];
1943 } else {
1944 parent = path->nodes[*level + 1];
1945 root_owner = btrfs_header_owner(parent);
1946 }
1947
1948 root_gen = btrfs_header_generation(parent);
Chris Masondb945352007-10-15 16:15:53 -04001949 ret = btrfs_free_extent(trans, root, path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05001950 path->nodes[*level]->len,
1951 root_owner, root_gen, 0, 0, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001952 free_extent_buffer(path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05001953 path->nodes[*level] = NULL;
1954 *level += 1;
1955 BUG_ON(ret);
1956 return 0;
1957}
1958
Chris Mason9aca1d52007-03-13 11:09:37 -04001959/*
1960 * helper for dropping snapshots. This walks back up the tree in the path
1961 * to find the first node higher up where we haven't yet gone through
1962 * all the slots
1963 */
Chris Masone089f052007-03-16 16:20:31 -04001964static int walk_up_tree(struct btrfs_trans_handle *trans, struct btrfs_root
1965 *root, struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05001966{
Chris Mason7bb86312007-12-11 09:25:06 -05001967 u64 root_owner;
1968 u64 root_gen;
1969 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05001970 int i;
1971 int slot;
1972 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04001973
Chris Mason234b63a2007-03-13 10:46:10 -04001974 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05001975 slot = path->slots[i];
Chris Mason5f39d392007-10-15 16:14:19 -04001976 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
1977 struct extent_buffer *node;
1978 struct btrfs_disk_key disk_key;
1979 node = path->nodes[i];
Chris Mason20524f02007-03-10 06:35:47 -05001980 path->slots[i]++;
1981 *level = i;
Chris Mason9f3a7422007-08-07 15:52:19 -04001982 WARN_ON(*level == 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001983 btrfs_node_key(node, &disk_key, path->slots[i]);
Chris Mason9f3a7422007-08-07 15:52:19 -04001984 memcpy(&root_item->drop_progress,
Chris Mason5f39d392007-10-15 16:14:19 -04001985 &disk_key, sizeof(disk_key));
Chris Mason9f3a7422007-08-07 15:52:19 -04001986 root_item->drop_level = i;
Chris Mason20524f02007-03-10 06:35:47 -05001987 return 0;
1988 } else {
Chris Mason7bb86312007-12-11 09:25:06 -05001989 if (path->nodes[*level] == root->node) {
1990 root_owner = root->root_key.objectid;
1991 root_gen =
1992 btrfs_header_generation(path->nodes[*level]);
1993 } else {
1994 struct extent_buffer *node;
1995 node = path->nodes[*level + 1];
1996 root_owner = btrfs_header_owner(node);
1997 root_gen = btrfs_header_generation(node);
1998 }
Chris Masone089f052007-03-16 16:20:31 -04001999 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002000 path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002001 path->nodes[*level]->len,
2002 root_owner, root_gen, 0, 0, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04002003 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002004 free_extent_buffer(path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04002005 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05002006 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05002007 }
2008 }
2009 return 1;
2010}
2011
Chris Mason9aca1d52007-03-13 11:09:37 -04002012/*
2013 * drop the reference count on the tree rooted at 'snap'. This traverses
2014 * the tree freeing any blocks that have a ref count of zero after being
2015 * decremented.
2016 */
Chris Masone089f052007-03-16 16:20:31 -04002017int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04002018 *root)
Chris Mason20524f02007-03-10 06:35:47 -05002019{
Chris Mason3768f362007-03-13 16:47:54 -04002020 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04002021 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05002022 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04002023 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05002024 int i;
2025 int orig_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002026 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002027
Chris Mason5caf2a02007-04-02 11:20:42 -04002028 path = btrfs_alloc_path();
2029 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05002030
Chris Mason5f39d392007-10-15 16:14:19 -04002031 level = btrfs_header_level(root->node);
Chris Mason20524f02007-03-10 06:35:47 -05002032 orig_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002033 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2034 path->nodes[level] = root->node;
Chris Masonf510cfe2007-10-15 16:14:48 -04002035 extent_buffer_get(root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -04002036 path->slots[level] = 0;
2037 } else {
2038 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002039 struct btrfs_disk_key found_key;
2040 struct extent_buffer *node;
Chris Mason6702ed42007-08-07 16:15:09 -04002041
Chris Mason9f3a7422007-08-07 15:52:19 -04002042 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Chris Mason6702ed42007-08-07 16:15:09 -04002043 level = root_item->drop_level;
2044 path->lowest_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002045 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason6702ed42007-08-07 16:15:09 -04002046 if (wret < 0) {
Chris Mason9f3a7422007-08-07 15:52:19 -04002047 ret = wret;
2048 goto out;
2049 }
Chris Mason5f39d392007-10-15 16:14:19 -04002050 node = path->nodes[level];
2051 btrfs_node_key(node, &found_key, path->slots[level]);
2052 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2053 sizeof(found_key)));
Chris Mason9f3a7422007-08-07 15:52:19 -04002054 }
Chris Mason20524f02007-03-10 06:35:47 -05002055 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002056 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002057 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002058 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002059 if (wret < 0)
2060 ret = wret;
2061
Chris Mason5caf2a02007-04-02 11:20:42 -04002062 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002063 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002064 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002065 if (wret < 0)
2066 ret = wret;
Chris Mason409eb952007-08-08 20:17:12 -04002067 ret = -EAGAIN;
Chris Mason409eb952007-08-08 20:17:12 -04002068 break;
Chris Mason20524f02007-03-10 06:35:47 -05002069 }
Chris Mason83e15a22007-03-12 09:03:27 -04002070 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002071 if (path->nodes[i]) {
Chris Mason5f39d392007-10-15 16:14:19 -04002072 free_extent_buffer(path->nodes[i]);
Chris Mason0f827312007-10-15 16:18:56 -04002073 path->nodes[i] = NULL;
Chris Mason83e15a22007-03-12 09:03:27 -04002074 }
Chris Mason20524f02007-03-10 06:35:47 -05002075 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002076out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002077 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04002078 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05002079}
Chris Mason9078a3e2007-04-26 16:46:15 -04002080
Chris Masonbe744172007-05-06 10:15:01 -04002081int btrfs_free_block_groups(struct btrfs_fs_info *info)
2082{
Chris Masonf510cfe2007-10-15 16:14:48 -04002083 u64 start;
2084 u64 end;
Yanb97f9202007-11-01 11:28:41 -04002085 u64 ptr;
Chris Mason96b51792007-10-15 16:15:19 -04002086 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04002087 while(1) {
2088 ret = find_first_extent_bit(&info->block_group_cache, 0,
2089 &start, &end, (unsigned int)-1);
2090 if (ret)
2091 break;
Yanb97f9202007-11-01 11:28:41 -04002092 ret = get_state_private(&info->block_group_cache, start, &ptr);
2093 if (!ret)
2094 kfree((void *)(unsigned long)ptr);
Chris Mason96b51792007-10-15 16:15:19 -04002095 clear_extent_bits(&info->block_group_cache, start,
2096 end, (unsigned int)-1, GFP_NOFS);
2097 }
Chris Masone37c9e62007-05-09 20:13:14 -04002098 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -04002099 ret = find_first_extent_bit(&info->free_space_cache, 0,
2100 &start, &end, EXTENT_DIRTY);
2101 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -04002102 break;
Chris Masonf510cfe2007-10-15 16:14:48 -04002103 clear_extent_dirty(&info->free_space_cache, start,
2104 end, GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04002105 }
Chris Masonbe744172007-05-06 10:15:01 -04002106 return 0;
2107}
2108
Chris Masonedbd8d42007-12-21 16:27:24 -05002109static int relocate_inode_pages(struct inode *inode, u64 start, u64 len)
2110{
2111 u64 page_start;
2112 u64 page_end;
2113 u64 delalloc_start;
2114 u64 existing_delalloc;
2115 unsigned long last_index;
2116 unsigned long first_index;
2117 unsigned long i;
2118 struct page *page;
2119 struct btrfs_root *root = BTRFS_I(inode)->root;
2120 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2121 struct file_ra_state ra;
2122
2123 mutex_lock(&inode->i_mutex);
2124 first_index = start >> PAGE_CACHE_SHIFT;
2125 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
2126
2127 memset(&ra, 0, sizeof(ra));
2128 file_ra_state_init(&ra, inode->i_mapping);
2129 btrfs_force_ra(inode->i_mapping, &ra, NULL, first_index, last_index);
2130
2131 for (i = first_index; i <= last_index; i++) {
2132 page = grab_cache_page(inode->i_mapping, i);
2133 if (!page)
2134 goto out_unlock;
2135 if (!PageUptodate(page)) {
2136 btrfs_readpage(NULL, page);
2137 lock_page(page);
2138 if (!PageUptodate(page)) {
2139 unlock_page(page);
2140 page_cache_release(page);
2141 goto out_unlock;
2142 }
2143 }
2144 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2145 page_end = page_start + PAGE_CACHE_SIZE - 1;
2146
2147 lock_extent(em_tree, page_start, page_end, GFP_NOFS);
2148
2149 delalloc_start = page_start;
2150 existing_delalloc =
2151 count_range_bits(&BTRFS_I(inode)->extent_tree,
2152 &delalloc_start, page_end,
2153 PAGE_CACHE_SIZE, EXTENT_DELALLOC);
2154
2155 set_extent_delalloc(em_tree, page_start,
2156 page_end, GFP_NOFS);
2157
2158 spin_lock(&root->fs_info->delalloc_lock);
2159 root->fs_info->delalloc_bytes += PAGE_CACHE_SIZE -
2160 existing_delalloc;
2161 spin_unlock(&root->fs_info->delalloc_lock);
2162
2163 unlock_extent(em_tree, page_start, page_end, GFP_NOFS);
2164 set_page_dirty(page);
2165 unlock_page(page);
2166 page_cache_release(page);
2167 }
2168
2169out_unlock:
2170 mutex_unlock(&inode->i_mutex);
2171 return 0;
2172}
2173
2174static int relocate_one_reference(struct btrfs_root *extent_root,
2175 struct btrfs_path *path,
2176 struct btrfs_key *extent_key,
2177 u64 ref_root, u64 ref_gen, u64 ref_objectid,
2178 u64 ref_offset)
2179{
2180 struct inode *inode;
2181 struct btrfs_root *found_root;
2182 struct btrfs_key root_location;
2183 int ret;
2184
2185 root_location.objectid = ref_root;
2186 if (ref_gen == 0)
2187 root_location.offset = 0;
2188 else
2189 root_location.offset = (u64)-1;
2190 root_location.type = BTRFS_ROOT_ITEM_KEY;
2191
2192 found_root = btrfs_read_fs_root_no_name(extent_root->fs_info,
2193 &root_location);
2194 BUG_ON(!found_root);
2195
2196 if (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
2197 mutex_unlock(&extent_root->fs_info->fs_mutex);
2198 inode = btrfs_iget_locked(extent_root->fs_info->sb,
2199 ref_objectid, found_root);
2200 if (inode->i_state & I_NEW) {
2201 /* the inode and parent dir are two different roots */
2202 BTRFS_I(inode)->root = found_root;
2203 BTRFS_I(inode)->location.objectid = ref_objectid;
2204 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
2205 BTRFS_I(inode)->location.offset = 0;
2206 btrfs_read_locked_inode(inode);
2207 unlock_new_inode(inode);
2208
2209 }
2210 /* this can happen if the reference is not against
2211 * the latest version of the tree root
2212 */
2213 if (is_bad_inode(inode)) {
2214 mutex_lock(&extent_root->fs_info->fs_mutex);
2215 goto out;
2216 }
2217 relocate_inode_pages(inode, ref_offset, extent_key->offset);
2218 /* FIXME, data=ordered will help get rid of this */
2219 filemap_fdatawrite(inode->i_mapping);
2220 iput(inode);
2221 mutex_lock(&extent_root->fs_info->fs_mutex);
2222 } else {
2223 struct btrfs_trans_handle *trans;
2224 struct btrfs_key found_key;
2225 struct extent_buffer *eb;
2226 int level;
2227 int i;
2228
2229 trans = btrfs_start_transaction(found_root, 1);
2230 eb = read_tree_block(found_root, extent_key->objectid,
2231 extent_key->offset);
2232 level = btrfs_header_level(eb);
2233
2234 if (level == 0)
2235 btrfs_item_key_to_cpu(eb, &found_key, 0);
2236 else
2237 btrfs_node_key_to_cpu(eb, &found_key, 0);
2238
2239 free_extent_buffer(eb);
2240
2241 path->lowest_level = level;
Chris Mason8f662a72008-01-02 10:01:11 -05002242 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002243 ret = btrfs_search_slot(trans, found_root, &found_key, path,
2244 0, 1);
2245 path->lowest_level = 0;
2246 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2247 if (!path->nodes[i])
2248 break;
2249 free_extent_buffer(path->nodes[i]);
2250 path->nodes[i] = NULL;
2251 }
2252 btrfs_release_path(found_root, path);
2253 btrfs_end_transaction(trans, found_root);
2254 }
2255
2256out:
2257 return 0;
2258}
2259
2260static int relocate_one_extent(struct btrfs_root *extent_root,
2261 struct btrfs_path *path,
2262 struct btrfs_key *extent_key)
2263{
2264 struct btrfs_key key;
2265 struct btrfs_key found_key;
2266 struct btrfs_extent_ref *ref;
2267 struct extent_buffer *leaf;
2268 u64 ref_root;
2269 u64 ref_gen;
2270 u64 ref_objectid;
2271 u64 ref_offset;
2272 u32 nritems;
2273 u32 item_size;
2274 int ret = 0;
2275
2276 key.objectid = extent_key->objectid;
2277 key.type = BTRFS_EXTENT_REF_KEY;
2278 key.offset = 0;
2279
2280 while(1) {
2281 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2282
2283 BUG_ON(ret == 0);
2284
2285 if (ret < 0)
2286 goto out;
2287
2288 ret = 0;
2289 leaf = path->nodes[0];
2290 nritems = btrfs_header_nritems(leaf);
2291 if (path->slots[0] == nritems)
2292 goto out;
2293
2294 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2295 if (found_key.objectid != extent_key->objectid)
2296 break;
2297
2298 if (found_key.type != BTRFS_EXTENT_REF_KEY)
2299 break;
2300
2301 key.offset = found_key.offset + 1;
2302 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2303
2304 ref = btrfs_item_ptr(leaf, path->slots[0],
2305 struct btrfs_extent_ref);
2306 ref_root = btrfs_ref_root(leaf, ref);
2307 ref_gen = btrfs_ref_generation(leaf, ref);
2308 ref_objectid = btrfs_ref_objectid(leaf, ref);
2309 ref_offset = btrfs_ref_offset(leaf, ref);
2310 btrfs_release_path(extent_root, path);
2311
2312 ret = relocate_one_reference(extent_root, path,
2313 extent_key, ref_root, ref_gen,
2314 ref_objectid, ref_offset);
2315 if (ret)
2316 goto out;
2317 }
2318 ret = 0;
2319out:
2320 btrfs_release_path(extent_root, path);
2321 return ret;
2322}
2323
2324static int find_overlapping_extent(struct btrfs_root *root,
2325 struct btrfs_path *path, u64 new_size)
2326{
2327 struct btrfs_key found_key;
2328 struct extent_buffer *leaf;
2329 int ret;
2330
2331 while(1) {
2332 if (path->slots[0] == 0) {
2333 ret = btrfs_prev_leaf(root, path);
2334 if (ret == 1) {
2335 return 1;
2336 }
2337 if (ret < 0)
2338 return ret;
2339 } else {
2340 path->slots[0]--;
2341 }
2342 leaf = path->nodes[0];
2343 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2344 if (found_key.type == BTRFS_EXTENT_ITEM_KEY) {
2345 if (found_key.objectid + found_key.offset > new_size)
2346 return 0;
2347 else
2348 return 1;
2349 }
2350 }
2351 return 1;
2352}
2353
2354int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 new_size)
2355{
2356 struct btrfs_trans_handle *trans;
2357 struct btrfs_root *tree_root = root->fs_info->tree_root;
2358 struct btrfs_path *path;
2359 u64 cur_byte;
2360 u64 total_found;
2361 u64 ptr;
2362 struct btrfs_fs_info *info = root->fs_info;
2363 struct extent_map_tree *block_group_cache;
2364 struct btrfs_key key;
2365 struct btrfs_key found_key = { 0, 0, 0 };
2366 struct extent_buffer *leaf;
2367 u32 nritems;
2368 int ret;
2369 int slot;
2370
2371 btrfs_set_super_total_bytes(&info->super_copy, new_size);
2372 block_group_cache = &info->block_group_cache;
2373 path = btrfs_alloc_path();
2374 root = root->fs_info->extent_root;
Chris Mason8f662a72008-01-02 10:01:11 -05002375 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002376
2377again:
2378 total_found = 0;
2379 key.objectid = new_size;
2380 cur_byte = key.objectid;
2381 key.offset = 0;
2382 key.type = 0;
2383 while(1) {
2384 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2385 if (ret < 0)
2386 goto out;
2387next:
2388 leaf = path->nodes[0];
2389 if (key.objectid == new_size - 1) {
2390 ret = find_overlapping_extent(root, path, new_size);
2391 if (ret != 0) {
2392 btrfs_release_path(root, path);
2393 ret = btrfs_search_slot(NULL, root, &key,
2394 path, 0, 0);
2395 if (ret < 0)
2396 goto out;
2397 }
2398 }
2399 nritems = btrfs_header_nritems(leaf);
2400 ret = 0;
2401 slot = path->slots[0];
2402 if (slot < nritems)
2403 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2404 if (slot == nritems ||
2405 btrfs_key_type(&found_key) != BTRFS_EXTENT_ITEM_KEY) {
2406 path->slots[0]++;
2407 if (path->slots[0] >= nritems) {
2408 ret = btrfs_next_leaf(root, path);
2409 if (ret < 0)
2410 goto out;
2411 if (ret == 1) {
2412 ret = 0;
2413 break;
2414 }
2415 }
2416 goto next;
2417 }
2418 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2419 if (found_key.objectid + found_key.offset <= cur_byte)
2420 continue;
2421 total_found++;
2422 cur_byte = found_key.objectid + found_key.offset;
2423 key.objectid = cur_byte;
2424 btrfs_release_path(root, path);
2425 ret = relocate_one_extent(root, path, &found_key);
2426 }
2427
2428 btrfs_release_path(root, path);
2429
2430 if (total_found > 0) {
2431 trans = btrfs_start_transaction(tree_root, 1);
2432 btrfs_commit_transaction(trans, tree_root);
2433
2434 mutex_unlock(&root->fs_info->fs_mutex);
2435 btrfs_clean_old_snapshots(tree_root);
2436 mutex_lock(&root->fs_info->fs_mutex);
2437
2438 trans = btrfs_start_transaction(tree_root, 1);
2439 btrfs_commit_transaction(trans, tree_root);
2440 goto again;
2441 }
2442
2443 trans = btrfs_start_transaction(root, 1);
2444 key.objectid = new_size;
2445 key.offset = 0;
2446 key.type = 0;
2447 while(1) {
2448 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2449 if (ret < 0)
2450 goto out;
2451bg_next:
2452 leaf = path->nodes[0];
2453 nritems = btrfs_header_nritems(leaf);
2454 ret = 0;
2455 slot = path->slots[0];
2456 if (slot < nritems)
2457 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2458 if (slot == nritems ||
2459 btrfs_key_type(&found_key) != BTRFS_BLOCK_GROUP_ITEM_KEY) {
2460 if (slot < nritems) {
2461 printk("shrinker found key %Lu %u %Lu\n",
2462 found_key.objectid, found_key.type,
2463 found_key.offset);
2464 path->slots[0]++;
2465 }
2466 if (path->slots[0] >= nritems) {
2467 ret = btrfs_next_leaf(root, path);
2468 if (ret < 0)
2469 break;
2470 if (ret == 1) {
2471 ret = 0;
2472 break;
2473 }
2474 }
2475 goto bg_next;
2476 }
2477 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2478 ret = get_state_private(&info->block_group_cache,
2479 found_key.objectid, &ptr);
2480 if (!ret)
2481 kfree((void *)(unsigned long)ptr);
2482
2483 clear_extent_bits(&info->block_group_cache, found_key.objectid,
2484 found_key.objectid + found_key.offset - 1,
2485 (unsigned int)-1, GFP_NOFS);
2486
2487 key.objectid = found_key.objectid + 1;
2488 btrfs_del_item(trans, root, path);
2489 btrfs_release_path(root, path);
2490 }
2491 clear_extent_dirty(&info->free_space_cache, new_size, (u64)-1,
2492 GFP_NOFS);
2493 btrfs_commit_transaction(trans, root);
2494out:
2495 btrfs_free_path(path);
2496 return ret;
2497}
2498
2499int btrfs_grow_extent_tree(struct btrfs_trans_handle *trans,
2500 struct btrfs_root *root, u64 new_size)
2501{
2502 struct btrfs_path *path;
2503 u64 nr = 0;
2504 u64 cur_byte;
2505 u64 old_size;
2506 struct btrfs_block_group_cache *cache;
2507 struct btrfs_block_group_item *item;
2508 struct btrfs_fs_info *info = root->fs_info;
2509 struct extent_map_tree *block_group_cache;
2510 struct btrfs_key key;
2511 struct extent_buffer *leaf;
2512 int ret;
2513 int bit;
2514
2515 old_size = btrfs_super_total_bytes(&info->super_copy);
2516 block_group_cache = &info->block_group_cache;
2517
2518 root = info->extent_root;
2519
2520 cache = btrfs_lookup_block_group(root->fs_info, old_size - 1);
2521
2522 cur_byte = cache->key.objectid + cache->key.offset;
2523 if (cur_byte >= new_size)
2524 goto set_size;
2525
2526 key.offset = BTRFS_BLOCK_GROUP_SIZE;
2527 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
2528
2529 path = btrfs_alloc_path();
2530 if (!path)
2531 return -ENOMEM;
2532
2533 while(cur_byte < new_size) {
2534 key.objectid = cur_byte;
2535 ret = btrfs_insert_empty_item(trans, root, path, &key,
2536 sizeof(struct btrfs_block_group_item));
2537 BUG_ON(ret);
2538 leaf = path->nodes[0];
2539 item = btrfs_item_ptr(leaf, path->slots[0],
2540 struct btrfs_block_group_item);
2541
2542 btrfs_set_disk_block_group_used(leaf, item, 0);
2543 if (nr % 3) {
2544 btrfs_set_disk_block_group_flags(leaf, item,
2545 BTRFS_BLOCK_GROUP_DATA);
2546 } else {
2547 btrfs_set_disk_block_group_flags(leaf, item, 0);
2548 }
2549 nr++;
2550
2551 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2552 BUG_ON(!cache);
2553
2554 read_extent_buffer(leaf, &cache->item, (unsigned long)item,
2555 sizeof(cache->item));
2556
2557 memcpy(&cache->key, &key, sizeof(key));
2558 cache->cached = 0;
2559 cache->pinned = 0;
2560 cur_byte = key.objectid + key.offset;
2561 btrfs_release_path(root, path);
2562
2563 if (cache->item.flags & BTRFS_BLOCK_GROUP_DATA) {
2564 bit = BLOCK_GROUP_DATA;
2565 cache->data = BTRFS_BLOCK_GROUP_DATA;
2566 } else {
2567 bit = BLOCK_GROUP_METADATA;
2568 cache->data = 0;
2569 }
2570
2571 /* use EXTENT_LOCKED to prevent merging */
2572 set_extent_bits(block_group_cache, key.objectid,
2573 key.objectid + key.offset - 1,
2574 bit | EXTENT_LOCKED, GFP_NOFS);
2575 set_state_private(block_group_cache, key.objectid,
2576 (unsigned long)cache);
2577 }
2578 btrfs_free_path(path);
2579set_size:
2580 btrfs_set_super_total_bytes(&info->super_copy, new_size);
2581 return 0;
2582}
2583
Chris Mason9078a3e2007-04-26 16:46:15 -04002584int btrfs_read_block_groups(struct btrfs_root *root)
2585{
2586 struct btrfs_path *path;
2587 int ret;
2588 int err = 0;
Chris Mason96b51792007-10-15 16:15:19 -04002589 int bit;
Chris Mason9078a3e2007-04-26 16:46:15 -04002590 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04002591 struct btrfs_fs_info *info = root->fs_info;
Chris Mason96b51792007-10-15 16:15:19 -04002592 struct extent_map_tree *block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002593 struct btrfs_key key;
2594 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04002595 struct extent_buffer *leaf;
Chris Mason96b51792007-10-15 16:15:19 -04002596
2597 block_group_cache = &info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002598
Chris Masonbe744172007-05-06 10:15:01 -04002599 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04002600 key.objectid = 0;
Chris Masondb945352007-10-15 16:15:53 -04002601 key.offset = BTRFS_BLOCK_GROUP_SIZE;
Chris Mason9078a3e2007-04-26 16:46:15 -04002602 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
2603
2604 path = btrfs_alloc_path();
2605 if (!path)
2606 return -ENOMEM;
2607
2608 while(1) {
Chris Masonbe744172007-05-06 10:15:01 -04002609 ret = btrfs_search_slot(NULL, info->extent_root,
Chris Mason9078a3e2007-04-26 16:46:15 -04002610 &key, path, 0, 0);
2611 if (ret != 0) {
2612 err = ret;
2613 break;
2614 }
Chris Mason5f39d392007-10-15 16:14:19 -04002615 leaf = path->nodes[0];
2616 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason9078a3e2007-04-26 16:46:15 -04002617 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2618 if (!cache) {
2619 err = -1;
2620 break;
2621 }
Chris Mason3e1ad542007-05-07 20:03:49 -04002622
Chris Mason5f39d392007-10-15 16:14:19 -04002623 read_extent_buffer(leaf, &cache->item,
2624 btrfs_item_ptr_offset(leaf, path->slots[0]),
2625 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04002626 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Masone37c9e62007-05-09 20:13:14 -04002627 cache->cached = 0;
Yan324ae4d2007-11-16 14:57:08 -05002628 cache->pinned = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002629 key.objectid = found_key.objectid + found_key.offset;
2630 btrfs_release_path(root, path);
Chris Mason5f39d392007-10-15 16:14:19 -04002631
Chris Masonf84a8b32007-11-06 10:26:29 -05002632 if (cache->item.flags & BTRFS_BLOCK_GROUP_MIXED) {
2633 bit = BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA;
2634 cache->data = BTRFS_BLOCK_GROUP_MIXED;
2635 } else if (cache->item.flags & BTRFS_BLOCK_GROUP_DATA) {
Chris Mason96b51792007-10-15 16:15:19 -04002636 bit = BLOCK_GROUP_DATA;
Chris Masonf84a8b32007-11-06 10:26:29 -05002637 cache->data = BTRFS_BLOCK_GROUP_DATA;
Chris Mason96b51792007-10-15 16:15:19 -04002638 } else {
2639 bit = BLOCK_GROUP_METADATA;
2640 cache->data = 0;
Chris Mason31f3c992007-04-30 15:25:45 -04002641 }
Chris Mason96b51792007-10-15 16:15:19 -04002642
2643 /* use EXTENT_LOCKED to prevent merging */
2644 set_extent_bits(block_group_cache, found_key.objectid,
2645 found_key.objectid + found_key.offset - 1,
2646 bit | EXTENT_LOCKED, GFP_NOFS);
2647 set_state_private(block_group_cache, found_key.objectid,
Jens Axboeae2f5412007-10-19 09:22:59 -04002648 (unsigned long)cache);
Chris Mason96b51792007-10-15 16:15:19 -04002649
Chris Mason9078a3e2007-04-26 16:46:15 -04002650 if (key.objectid >=
Chris Masondb945352007-10-15 16:15:53 -04002651 btrfs_super_total_bytes(&info->super_copy))
Chris Mason9078a3e2007-04-26 16:46:15 -04002652 break;
2653 }
2654
2655 btrfs_free_path(path);
2656 return 0;
2657}