blob: 0e294cfaa60c16873e437421e7c1660fa6ba98ec [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 */
Zach Brownec6b9102007-07-11 10:00:37 -040018#include <linux/sched.h>
Chris Masonedbd8d42007-12-21 16:27:24 -050019#include <linux/pagemap.h>
Chris Masonec44a352008-04-28 15:29:52 -040020#include <linux/writeback.h>
Chris Mason74493f72007-12-11 09:25:06 -050021#include "hash.h"
Miguela5eb62e2008-04-11 15:45:51 -040022#include "crc32c.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 Mason0b86a832008-03-24 15:01:56 -040027#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040028#include "locking.h"
Yan Zheng31153d82008-07-28 15:32:19 -040029#include "ref-cache.h"
Chris Masonfec577f2007-02-26 10:40:21 -050030
Chris Mason0b86a832008-03-24 15:01:56 -040031#define BLOCK_GROUP_DATA EXTENT_WRITEBACK
Chris Mason96b51792007-10-15 16:15:19 -040032#define BLOCK_GROUP_METADATA EXTENT_UPTODATE
Chris Mason0b86a832008-03-24 15:01:56 -040033#define BLOCK_GROUP_SYSTEM EXTENT_NEW
34
Chris Mason96b51792007-10-15 16:15:19 -040035#define BLOCK_GROUP_DIRTY EXTENT_DIRTY
36
Chris Masone089f052007-03-16 16:20:31 -040037static int finish_current_insert(struct btrfs_trans_handle *trans, struct
38 btrfs_root *extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -040039static int del_pending_extents(struct btrfs_trans_handle *trans, struct
40 btrfs_root *extent_root);
Chris Mason925baed2008-06-25 16:01:30 -040041static struct btrfs_block_group_cache *
42__btrfs_find_block_group(struct btrfs_root *root,
43 struct btrfs_block_group_cache *hint,
44 u64 search_start, int data, int owner);
Yand548ee52008-01-03 13:56:30 -050045
Chris Mason925baed2008-06-25 16:01:30 -040046void maybe_lock_mutex(struct btrfs_root *root)
47{
48 if (root != root->fs_info->extent_root &&
49 root != root->fs_info->chunk_root &&
50 root != root->fs_info->dev_root) {
51 mutex_lock(&root->fs_info->alloc_mutex);
52 }
53}
54
55void maybe_unlock_mutex(struct btrfs_root *root)
56{
57 if (root != root->fs_info->extent_root &&
58 root != root->fs_info->chunk_root &&
59 root != root->fs_info->dev_root) {
60 mutex_unlock(&root->fs_info->alloc_mutex);
61 }
62}
Chris Masonfec577f2007-02-26 10:40:21 -050063
Chris Masone37c9e62007-05-09 20:13:14 -040064static int cache_block_group(struct btrfs_root *root,
65 struct btrfs_block_group_cache *block_group)
66{
67 struct btrfs_path *path;
68 int ret;
69 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -040070 struct extent_buffer *leaf;
Chris Masond1310b22008-01-24 16:13:08 -050071 struct extent_io_tree *free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040072 int slot;
Chris Masone37c9e62007-05-09 20:13:14 -040073 u64 last = 0;
74 u64 hole_size;
Yan7d7d6062007-09-14 16:15:28 -040075 u64 first_free;
Chris Masone37c9e62007-05-09 20:13:14 -040076 int found = 0;
77
Chris Mason00f5c792007-11-30 10:09:33 -050078 if (!block_group)
79 return 0;
80
Chris Masone37c9e62007-05-09 20:13:14 -040081 root = root->fs_info->extent_root;
Chris Masonf510cfe2007-10-15 16:14:48 -040082 free_space_cache = &root->fs_info->free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040083
84 if (block_group->cached)
85 return 0;
Chris Masonf510cfe2007-10-15 16:14:48 -040086
Chris Masone37c9e62007-05-09 20:13:14 -040087 path = btrfs_alloc_path();
88 if (!path)
89 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -040090
Chris Mason2cc58cf2007-08-27 16:49:44 -040091 path->reada = 2;
Chris Mason5cd57b22008-06-25 16:01:30 -040092 /*
93 * we get into deadlocks with paths held by callers of this function.
94 * since the alloc_mutex is protecting things right now, just
95 * skip the locking here
96 */
97 path->skip_locking = 1;
Yan7d7d6062007-09-14 16:15:28 -040098 first_free = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040099 key.objectid = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -0400100 key.offset = 0;
101 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
102 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
103 if (ret < 0)
104 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -0400105 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
Yand548ee52008-01-03 13:56:30 -0500106 if (ret < 0)
107 return ret;
108 if (ret == 0) {
109 leaf = path->nodes[0];
110 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
111 if (key.objectid + key.offset > first_free)
112 first_free = key.objectid + key.offset;
113 }
Chris Masone37c9e62007-05-09 20:13:14 -0400114 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400115 leaf = path->nodes[0];
Chris Masone37c9e62007-05-09 20:13:14 -0400116 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -0400117 if (slot >= btrfs_header_nritems(leaf)) {
Chris Masone37c9e62007-05-09 20:13:14 -0400118 ret = btrfs_next_leaf(root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400119 if (ret < 0)
120 goto err;
Chris Masonde428b62007-05-18 13:28:27 -0400121 if (ret == 0) {
Chris Masone37c9e62007-05-09 20:13:14 -0400122 continue;
Chris Masonde428b62007-05-18 13:28:27 -0400123 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400124 break;
125 }
126 }
Chris Mason5f39d392007-10-15 16:14:19 -0400127 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan7d7d6062007-09-14 16:15:28 -0400128 if (key.objectid < block_group->key.objectid) {
Yan7d7d6062007-09-14 16:15:28 -0400129 goto next;
130 }
Chris Masone37c9e62007-05-09 20:13:14 -0400131 if (key.objectid >= block_group->key.objectid +
132 block_group->key.offset) {
Yan7d7d6062007-09-14 16:15:28 -0400133 break;
134 }
135
136 if (btrfs_key_type(&key) == BTRFS_EXTENT_ITEM_KEY) {
137 if (!found) {
138 last = first_free;
139 found = 1;
Chris Masone37c9e62007-05-09 20:13:14 -0400140 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400141 if (key.objectid > last) {
142 hole_size = key.objectid - last;
143 set_extent_dirty(free_space_cache, last,
144 last + hole_size - 1,
145 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -0400146 }
Yan7d7d6062007-09-14 16:15:28 -0400147 last = key.objectid + key.offset;
Chris Masone37c9e62007-05-09 20:13:14 -0400148 }
Yan7d7d6062007-09-14 16:15:28 -0400149next:
Chris Masone37c9e62007-05-09 20:13:14 -0400150 path->slots[0]++;
151 }
152
Yan7d7d6062007-09-14 16:15:28 -0400153 if (!found)
154 last = first_free;
155 if (block_group->key.objectid +
156 block_group->key.offset > last) {
157 hole_size = block_group->key.objectid +
158 block_group->key.offset - last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400159 set_extent_dirty(free_space_cache, last,
160 last + hole_size - 1, GFP_NOFS);
Yan7d7d6062007-09-14 16:15:28 -0400161 }
Chris Masone37c9e62007-05-09 20:13:14 -0400162 block_group->cached = 1;
Chris Mason54aa1f42007-06-22 14:16:25 -0400163err:
Chris Masone37c9e62007-05-09 20:13:14 -0400164 btrfs_free_path(path);
165 return 0;
166}
167
Chris Mason0ef3e662008-05-24 14:04:53 -0400168struct btrfs_block_group_cache *btrfs_lookup_first_block_group(struct
169 btrfs_fs_info *info,
170 u64 bytenr)
171{
172 struct extent_io_tree *block_group_cache;
173 struct btrfs_block_group_cache *block_group = NULL;
174 u64 ptr;
175 u64 start;
176 u64 end;
177 int ret;
178
179 bytenr = max_t(u64, bytenr,
180 BTRFS_SUPER_INFO_OFFSET + BTRFS_SUPER_INFO_SIZE);
181 block_group_cache = &info->block_group_cache;
182 ret = find_first_extent_bit(block_group_cache,
183 bytenr, &start, &end,
184 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA |
185 BLOCK_GROUP_SYSTEM);
186 if (ret) {
187 return NULL;
188 }
189 ret = get_state_private(block_group_cache, start, &ptr);
190 if (ret)
191 return NULL;
192
193 block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
194 return block_group;
195}
196
Chris Mason5276aed2007-06-11 21:33:38 -0400197struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
198 btrfs_fs_info *info,
Chris Masondb945352007-10-15 16:15:53 -0400199 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400200{
Chris Masond1310b22008-01-24 16:13:08 -0500201 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -0400202 struct btrfs_block_group_cache *block_group = NULL;
203 u64 ptr;
204 u64 start;
205 u64 end;
Chris Masonbe744172007-05-06 10:15:01 -0400206 int ret;
207
Chris Masona061fc82008-05-07 11:43:44 -0400208 bytenr = max_t(u64, bytenr,
209 BTRFS_SUPER_INFO_OFFSET + BTRFS_SUPER_INFO_SIZE);
Chris Mason96b51792007-10-15 16:15:19 -0400210 block_group_cache = &info->block_group_cache;
211 ret = find_first_extent_bit(block_group_cache,
Chris Masondb945352007-10-15 16:15:53 -0400212 bytenr, &start, &end,
Chris Mason0b86a832008-03-24 15:01:56 -0400213 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA |
214 BLOCK_GROUP_SYSTEM);
Chris Masonbe744172007-05-06 10:15:01 -0400215 if (ret) {
Chris Mason96b51792007-10-15 16:15:19 -0400216 return NULL;
Chris Masonbe744172007-05-06 10:15:01 -0400217 }
Chris Mason96b51792007-10-15 16:15:19 -0400218 ret = get_state_private(block_group_cache, start, &ptr);
219 if (ret)
220 return NULL;
221
Jens Axboeae2f5412007-10-19 09:22:59 -0400222 block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Yan5cf66422007-11-16 14:57:09 -0500223 if (block_group->key.objectid <= bytenr && bytenr <
Chris Mason96b51792007-10-15 16:15:19 -0400224 block_group->key.objectid + block_group->key.offset)
225 return block_group;
Chris Masonbe744172007-05-06 10:15:01 -0400226 return NULL;
227}
Chris Mason0b86a832008-03-24 15:01:56 -0400228
229static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
230{
Chris Mason593060d2008-03-25 16:50:33 -0400231 return (cache->flags & bits) == bits;
Chris Mason0b86a832008-03-24 15:01:56 -0400232}
233
234static int noinline find_search_start(struct btrfs_root *root,
Chris Mason98ed5172008-01-03 10:01:48 -0500235 struct btrfs_block_group_cache **cache_ret,
Chris Mason0ef3e662008-05-24 14:04:53 -0400236 u64 *start_ret, u64 num, int data)
Chris Masone37c9e62007-05-09 20:13:14 -0400237{
Chris Masone37c9e62007-05-09 20:13:14 -0400238 int ret;
239 struct btrfs_block_group_cache *cache = *cache_ret;
Chris Masond7fc6402008-02-18 12:12:38 -0500240 struct extent_io_tree *free_space_cache;
Chris Mason7d1660d2008-03-24 15:02:03 -0400241 struct extent_state *state;
Chris Masone19caa52007-10-15 16:17:44 -0400242 u64 last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400243 u64 start = 0;
Chris Mason257d0ce2007-11-07 21:08:16 -0500244 u64 cache_miss = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500245 u64 total_fs_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -0400246 u64 search_start = *start_ret;
Chris Masonf84a8b32007-11-06 10:26:29 -0500247 int wrapped = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400248
Chris Mason7d9eb122008-07-08 14:19:17 -0400249 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Masonc31f8832008-01-08 15:46:31 -0500250 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masond7fc6402008-02-18 12:12:38 -0500251 free_space_cache = &root->fs_info->free_space_cache;
252
Chris Mason0ef3e662008-05-24 14:04:53 -0400253 if (!cache)
Chris Mason54aa1f42007-06-22 14:16:25 -0400254 goto out;
Chris Masonf84a8b32007-11-06 10:26:29 -0500255
Chris Mason0ef3e662008-05-24 14:04:53 -0400256again:
257 ret = cache_block_group(root, cache);
258 if (ret) {
259 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -0400260 }
Chris Masone19caa52007-10-15 16:17:44 -0400261
Chris Mason0ef3e662008-05-24 14:04:53 -0400262 last = max(search_start, cache->key.objectid);
263 if (!block_group_bits(cache, data) || cache->ro)
264 goto new_group;
265
Chris Mason7d1660d2008-03-24 15:02:03 -0400266 spin_lock_irq(&free_space_cache->lock);
267 state = find_first_extent_bit_state(free_space_cache, last, EXTENT_DIRTY);
Chris Masone37c9e62007-05-09 20:13:14 -0400268 while(1) {
Chris Mason7d1660d2008-03-24 15:02:03 -0400269 if (!state) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500270 if (!cache_miss)
271 cache_miss = last;
Chris Mason7d1660d2008-03-24 15:02:03 -0400272 spin_unlock_irq(&free_space_cache->lock);
Chris Masone19caa52007-10-15 16:17:44 -0400273 goto new_group;
274 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400275
Chris Mason7d1660d2008-03-24 15:02:03 -0400276 start = max(last, state->start);
277 last = state->end + 1;
Chris Mason257d0ce2007-11-07 21:08:16 -0500278 if (last - start < num) {
Chris Mason7d1660d2008-03-24 15:02:03 -0400279 do {
280 state = extent_state_next(state);
281 } while(state && !(state->state & EXTENT_DIRTY));
Chris Masonf510cfe2007-10-15 16:14:48 -0400282 continue;
Chris Mason257d0ce2007-11-07 21:08:16 -0500283 }
Chris Mason7d1660d2008-03-24 15:02:03 -0400284 spin_unlock_irq(&free_space_cache->lock);
Chris Mason0ef3e662008-05-24 14:04:53 -0400285 if (cache->ro) {
Chris Mason8f18cf12008-04-25 16:53:30 -0400286 goto new_group;
Chris Mason0ef3e662008-05-24 14:04:53 -0400287 }
Chris Mason0b86a832008-03-24 15:01:56 -0400288 if (start + num > cache->key.objectid + cache->key.offset)
Chris Masone37c9e62007-05-09 20:13:14 -0400289 goto new_group;
Chris Mason8790d502008-04-03 16:29:03 -0400290 if (!block_group_bits(cache, data)) {
Chris Mason611f0e02008-04-03 16:29:03 -0400291 printk("block group bits don't match %Lu %d\n", cache->flags, data);
Chris Mason8790d502008-04-03 16:29:03 -0400292 }
Chris Mason0b86a832008-03-24 15:01:56 -0400293 *start_ret = start;
294 return 0;
Chris Mason8790d502008-04-03 16:29:03 -0400295 }
296out:
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500297 cache = btrfs_lookup_block_group(root->fs_info, search_start);
298 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -0400299 printk("Unable to find block group for %Lu\n", search_start);
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500300 WARN_ON(1);
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500301 }
Chris Mason0b86a832008-03-24 15:01:56 -0400302 return -ENOSPC;
Chris Masone37c9e62007-05-09 20:13:14 -0400303
304new_group:
Chris Masone19caa52007-10-15 16:17:44 -0400305 last = cache->key.objectid + cache->key.offset;
Chris Masonf84a8b32007-11-06 10:26:29 -0500306wrapped:
Chris Mason0ef3e662008-05-24 14:04:53 -0400307 cache = btrfs_lookup_first_block_group(root->fs_info, last);
Chris Masonc31f8832008-01-08 15:46:31 -0500308 if (!cache || cache->key.objectid >= total_fs_bytes) {
Chris Mason0e4de582007-11-26 10:55:49 -0500309no_cache:
Chris Masonf84a8b32007-11-06 10:26:29 -0500310 if (!wrapped) {
311 wrapped = 1;
312 last = search_start;
Chris Masonf84a8b32007-11-06 10:26:29 -0500313 goto wrapped;
314 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500315 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -0400316 }
Chris Mason257d0ce2007-11-07 21:08:16 -0500317 if (cache_miss && !cache->cached) {
318 cache_block_group(root, cache);
319 last = cache_miss;
Chris Mason0ef3e662008-05-24 14:04:53 -0400320 cache = btrfs_lookup_first_block_group(root->fs_info, last);
Chris Mason257d0ce2007-11-07 21:08:16 -0500321 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400322 cache_miss = 0;
Chris Masonc286ac42008-07-22 23:06:41 -0400323 cache = btrfs_find_block_group(root, cache, last, data, 0);
Chris Mason0e4de582007-11-26 10:55:49 -0500324 if (!cache)
325 goto no_cache;
Chris Masone37c9e62007-05-09 20:13:14 -0400326 *cache_ret = cache;
327 goto again;
328}
329
Chris Mason84f54cf2007-06-12 07:43:08 -0400330static u64 div_factor(u64 num, int factor)
331{
Chris Mason257d0ce2007-11-07 21:08:16 -0500332 if (factor == 10)
333 return num;
Chris Mason84f54cf2007-06-12 07:43:08 -0400334 num *= factor;
335 do_div(num, 10);
336 return num;
337}
338
Chris Mason6324fbf2008-03-24 15:01:59 -0400339static int block_group_state_bits(u64 flags)
340{
341 int bits = 0;
342 if (flags & BTRFS_BLOCK_GROUP_DATA)
343 bits |= BLOCK_GROUP_DATA;
344 if (flags & BTRFS_BLOCK_GROUP_METADATA)
345 bits |= BLOCK_GROUP_METADATA;
346 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
347 bits |= BLOCK_GROUP_SYSTEM;
348 return bits;
349}
350
Chris Mason925baed2008-06-25 16:01:30 -0400351static struct btrfs_block_group_cache *
352__btrfs_find_block_group(struct btrfs_root *root,
353 struct btrfs_block_group_cache *hint,
354 u64 search_start, int data, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400355{
Chris Mason96b51792007-10-15 16:15:19 -0400356 struct btrfs_block_group_cache *cache;
Chris Masond1310b22008-01-24 16:13:08 -0500357 struct extent_io_tree *block_group_cache;
Chris Mason31f3c992007-04-30 15:25:45 -0400358 struct btrfs_block_group_cache *found_group = NULL;
Chris Masoncd1bc462007-04-27 10:08:34 -0400359 struct btrfs_fs_info *info = root->fs_info;
360 u64 used;
Chris Mason31f3c992007-04-30 15:25:45 -0400361 u64 last = 0;
Chris Mason96b51792007-10-15 16:15:19 -0400362 u64 start;
363 u64 end;
364 u64 free_check;
365 u64 ptr;
366 int bit;
Chris Masoncd1bc462007-04-27 10:08:34 -0400367 int ret;
Chris Mason31f3c992007-04-30 15:25:45 -0400368 int full_search = 0;
Chris Masonbce4eae2008-04-24 14:42:46 -0400369 int factor = 10;
Chris Mason0ef3e662008-05-24 14:04:53 -0400370 int wrapped = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400371
Chris Mason96b51792007-10-15 16:15:19 -0400372 block_group_cache = &info->block_group_cache;
373
Chris Masona236aed2008-04-29 09:38:00 -0400374 if (data & BTRFS_BLOCK_GROUP_METADATA)
375 factor = 9;
Chris Masonbe744172007-05-06 10:15:01 -0400376
Chris Mason6324fbf2008-03-24 15:01:59 -0400377 bit = block_group_state_bits(data);
Chris Masonbe744172007-05-06 10:15:01 -0400378
Chris Mason0ef3e662008-05-24 14:04:53 -0400379 if (search_start) {
Chris Masonbe744172007-05-06 10:15:01 -0400380 struct btrfs_block_group_cache *shint;
Chris Mason0ef3e662008-05-24 14:04:53 -0400381 shint = btrfs_lookup_first_block_group(info, search_start);
Chris Mason8f18cf12008-04-25 16:53:30 -0400382 if (shint && block_group_bits(shint, data) && !shint->ro) {
Chris Masonc286ac42008-07-22 23:06:41 -0400383 spin_lock(&shint->lock);
Chris Masonbe744172007-05-06 10:15:01 -0400384 used = btrfs_block_group_used(&shint->item);
Yan324ae4d2007-11-16 14:57:08 -0500385 if (used + shint->pinned <
386 div_factor(shint->key.offset, factor)) {
Chris Masonc286ac42008-07-22 23:06:41 -0400387 spin_unlock(&shint->lock);
Chris Masonbe744172007-05-06 10:15:01 -0400388 return shint;
389 }
Chris Masonc286ac42008-07-22 23:06:41 -0400390 spin_unlock(&shint->lock);
Chris Masonbe744172007-05-06 10:15:01 -0400391 }
392 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400393 if (hint && !hint->ro && block_group_bits(hint, data)) {
Chris Masonc286ac42008-07-22 23:06:41 -0400394 spin_lock(&hint->lock);
Chris Mason31f3c992007-04-30 15:25:45 -0400395 used = btrfs_block_group_used(&hint->item);
Yan324ae4d2007-11-16 14:57:08 -0500396 if (used + hint->pinned <
397 div_factor(hint->key.offset, factor)) {
Chris Masonc286ac42008-07-22 23:06:41 -0400398 spin_unlock(&hint->lock);
Chris Mason31f3c992007-04-30 15:25:45 -0400399 return hint;
400 }
Chris Masonc286ac42008-07-22 23:06:41 -0400401 spin_unlock(&hint->lock);
Chris Masone19caa52007-10-15 16:17:44 -0400402 last = hint->key.objectid + hint->key.offset;
Chris Mason31f3c992007-04-30 15:25:45 -0400403 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400404 if (hint)
Chris Mason0ef3e662008-05-24 14:04:53 -0400405 last = max(hint->key.objectid, search_start);
Chris Masone37c9e62007-05-09 20:13:14 -0400406 else
Chris Mason0ef3e662008-05-24 14:04:53 -0400407 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400408 }
Chris Mason31f3c992007-04-30 15:25:45 -0400409again:
Chris Masoncd1bc462007-04-27 10:08:34 -0400410 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400411 ret = find_first_extent_bit(block_group_cache, last,
412 &start, &end, bit);
413 if (ret)
Chris Masoncd1bc462007-04-27 10:08:34 -0400414 break;
Chris Mason96b51792007-10-15 16:15:19 -0400415
416 ret = get_state_private(block_group_cache, start, &ptr);
Chris Mason0ef3e662008-05-24 14:04:53 -0400417 if (ret) {
418 last = end + 1;
419 continue;
420 }
Chris Mason96b51792007-10-15 16:15:19 -0400421
Jens Axboeae2f5412007-10-19 09:22:59 -0400422 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Masonc286ac42008-07-22 23:06:41 -0400423 spin_lock(&cache->lock);
Chris Mason96b51792007-10-15 16:15:19 -0400424 last = cache->key.objectid + cache->key.offset;
425 used = btrfs_block_group_used(&cache->item);
426
Chris Mason8f18cf12008-04-25 16:53:30 -0400427 if (!cache->ro && block_group_bits(cache, data)) {
Chris Mason0ef3e662008-05-24 14:04:53 -0400428 free_check = div_factor(cache->key.offset, factor);
Chris Mason8790d502008-04-03 16:29:03 -0400429 if (used + cache->pinned < free_check) {
430 found_group = cache;
Chris Masonc286ac42008-07-22 23:06:41 -0400431 spin_unlock(&cache->lock);
Chris Mason8790d502008-04-03 16:29:03 -0400432 goto found;
433 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400434 }
Chris Masonc286ac42008-07-22 23:06:41 -0400435 spin_unlock(&cache->lock);
Chris Masonde428b62007-05-18 13:28:27 -0400436 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400437 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400438 if (!wrapped) {
439 last = search_start;
440 wrapped = 1;
441 goto again;
442 }
443 if (!full_search && factor < 10) {
Chris Masonbe744172007-05-06 10:15:01 -0400444 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400445 full_search = 1;
Chris Mason0ef3e662008-05-24 14:04:53 -0400446 factor = 10;
Chris Mason31f3c992007-04-30 15:25:45 -0400447 goto again;
448 }
Chris Masonbe744172007-05-06 10:15:01 -0400449found:
Chris Mason31f3c992007-04-30 15:25:45 -0400450 return found_group;
Chris Masoncd1bc462007-04-27 10:08:34 -0400451}
452
Chris Mason925baed2008-06-25 16:01:30 -0400453struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
454 struct btrfs_block_group_cache
455 *hint, u64 search_start,
456 int data, int owner)
457{
458
459 struct btrfs_block_group_cache *ret;
Chris Mason925baed2008-06-25 16:01:30 -0400460 ret = __btrfs_find_block_group(root, hint, search_start, data, owner);
Chris Mason925baed2008-06-25 16:01:30 -0400461 return ret;
462}
Chris Mason7bb86312007-12-11 09:25:06 -0500463static u64 hash_extent_ref(u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500464 u64 owner, u64 owner_offset)
465{
466 u32 high_crc = ~(u32)0;
467 u32 low_crc = ~(u32)0;
468 __le64 lenum;
Chris Mason74493f72007-12-11 09:25:06 -0500469 lenum = cpu_to_le64(root_objectid);
Miguela5eb62e2008-04-11 15:45:51 -0400470 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
Chris Mason7bb86312007-12-11 09:25:06 -0500471 lenum = cpu_to_le64(ref_generation);
Miguela5eb62e2008-04-11 15:45:51 -0400472 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500473 if (owner >= BTRFS_FIRST_FREE_OBJECTID) {
474 lenum = cpu_to_le64(owner);
Miguela5eb62e2008-04-11 15:45:51 -0400475 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500476 lenum = cpu_to_le64(owner_offset);
Miguela5eb62e2008-04-11 15:45:51 -0400477 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500478 }
Chris Mason74493f72007-12-11 09:25:06 -0500479 return ((u64)high_crc << 32) | (u64)low_crc;
480}
481
Chris Mason7bb86312007-12-11 09:25:06 -0500482static int match_extent_ref(struct extent_buffer *leaf,
483 struct btrfs_extent_ref *disk_ref,
484 struct btrfs_extent_ref *cpu_ref)
485{
486 int ret;
487 int len;
488
489 if (cpu_ref->objectid)
490 len = sizeof(*cpu_ref);
491 else
492 len = 2 * sizeof(u64);
493 ret = memcmp_extent_buffer(leaf, cpu_ref, (unsigned long)disk_ref,
494 len);
495 return ret == 0;
496}
497
Chris Mason98ed5172008-01-03 10:01:48 -0500498static int noinline lookup_extent_backref(struct btrfs_trans_handle *trans,
499 struct btrfs_root *root,
500 struct btrfs_path *path, u64 bytenr,
501 u64 root_objectid,
502 u64 ref_generation, u64 owner,
503 u64 owner_offset, int del)
Chris Mason7bb86312007-12-11 09:25:06 -0500504{
505 u64 hash;
506 struct btrfs_key key;
507 struct btrfs_key found_key;
508 struct btrfs_extent_ref ref;
509 struct extent_buffer *leaf;
510 struct btrfs_extent_ref *disk_ref;
511 int ret;
512 int ret2;
513
514 btrfs_set_stack_ref_root(&ref, root_objectid);
515 btrfs_set_stack_ref_generation(&ref, ref_generation);
516 btrfs_set_stack_ref_objectid(&ref, owner);
517 btrfs_set_stack_ref_offset(&ref, owner_offset);
518
519 hash = hash_extent_ref(root_objectid, ref_generation, owner,
520 owner_offset);
521 key.offset = hash;
522 key.objectid = bytenr;
523 key.type = BTRFS_EXTENT_REF_KEY;
524
525 while (1) {
526 ret = btrfs_search_slot(trans, root, &key, path,
527 del ? -1 : 0, del);
528 if (ret < 0)
529 goto out;
530 leaf = path->nodes[0];
531 if (ret != 0) {
532 u32 nritems = btrfs_header_nritems(leaf);
533 if (path->slots[0] >= nritems) {
534 ret2 = btrfs_next_leaf(root, path);
535 if (ret2)
536 goto out;
537 leaf = path->nodes[0];
538 }
539 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
540 if (found_key.objectid != bytenr ||
541 found_key.type != BTRFS_EXTENT_REF_KEY)
542 goto out;
543 key.offset = found_key.offset;
544 if (del) {
545 btrfs_release_path(root, path);
546 continue;
547 }
548 }
549 disk_ref = btrfs_item_ptr(path->nodes[0],
550 path->slots[0],
551 struct btrfs_extent_ref);
552 if (match_extent_ref(path->nodes[0], disk_ref, &ref)) {
553 ret = 0;
554 goto out;
555 }
556 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
557 key.offset = found_key.offset + 1;
558 btrfs_release_path(root, path);
559 }
560out:
561 return ret;
562}
563
Chris Masond8d5f3e2007-12-11 12:42:00 -0500564/*
565 * Back reference rules. Back refs have three main goals:
566 *
567 * 1) differentiate between all holders of references to an extent so that
568 * when a reference is dropped we can make sure it was a valid reference
569 * before freeing the extent.
570 *
571 * 2) Provide enough information to quickly find the holders of an extent
572 * if we notice a given block is corrupted or bad.
573 *
574 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
575 * maintenance. This is actually the same as #2, but with a slightly
576 * different use case.
577 *
578 * File extents can be referenced by:
579 *
580 * - multiple snapshots, subvolumes, or different generations in one subvol
581 * - different files inside a single subvolume (in theory, not implemented yet)
582 * - different offsets inside a file (bookend extents in file.c)
583 *
584 * The extent ref structure has fields for:
585 *
586 * - Objectid of the subvolume root
587 * - Generation number of the tree holding the reference
588 * - objectid of the file holding the reference
589 * - offset in the file corresponding to the key holding the reference
590 *
591 * When a file extent is allocated the fields are filled in:
592 * (root_key.objectid, trans->transid, inode objectid, offset in file)
593 *
594 * When a leaf is cow'd new references are added for every file extent found
595 * in the leaf. It looks the same as the create case, but trans->transid
596 * will be different when the block is cow'd.
597 *
598 * (root_key.objectid, trans->transid, inode objectid, offset in file)
599 *
600 * When a file extent is removed either during snapshot deletion or file
601 * truncation, the corresponding back reference is found
602 * by searching for:
603 *
604 * (btrfs_header_owner(leaf), btrfs_header_generation(leaf),
605 * inode objectid, offset in file)
606 *
607 * Btree extents can be referenced by:
608 *
609 * - Different subvolumes
610 * - Different generations of the same subvolume
611 *
612 * Storing sufficient information for a full reverse mapping of a btree
613 * block would require storing the lowest key of the block in the backref,
614 * and it would require updating that lowest key either before write out or
615 * every time it changed. Instead, the objectid of the lowest key is stored
616 * along with the level of the tree block. This provides a hint
617 * about where in the btree the block can be found. Searches through the
618 * btree only need to look for a pointer to that block, so they stop one
619 * level higher than the level recorded in the backref.
620 *
621 * Some btrees do not do reference counting on their extents. These
622 * include the extent tree and the tree of tree roots. Backrefs for these
623 * trees always have a generation of zero.
624 *
625 * When a tree block is created, back references are inserted:
626 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500627 * (root->root_key.objectid, trans->transid or zero, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500628 *
629 * When a tree block is cow'd in a reference counted root,
630 * new back references are added for all the blocks it points to.
631 * These are of the form (trans->transid will have increased since creation):
632 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500633 * (root->root_key.objectid, trans->transid, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500634 *
635 * Because the lowest_key_objectid and the level are just hints
636 * they are not used when backrefs are deleted. When a backref is deleted:
637 *
638 * if backref was for a tree root:
639 * root_objectid = root->root_key.objectid
640 * else
641 * root_objectid = btrfs_header_owner(parent)
642 *
643 * (root_objectid, btrfs_header_generation(parent) or zero, 0, 0)
644 *
645 * Back Reference Key hashing:
646 *
647 * Back references have four fields, each 64 bits long. Unfortunately,
648 * This is hashed into a single 64 bit number and placed into the key offset.
649 * The key objectid corresponds to the first byte in the extent, and the
650 * key type is set to BTRFS_EXTENT_REF_KEY
651 */
Chris Mason7bb86312007-12-11 09:25:06 -0500652int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
653 struct btrfs_root *root,
654 struct btrfs_path *path, u64 bytenr,
655 u64 root_objectid, u64 ref_generation,
656 u64 owner, u64 owner_offset)
Chris Mason74493f72007-12-11 09:25:06 -0500657{
658 u64 hash;
659 struct btrfs_key key;
660 struct btrfs_extent_ref ref;
Chris Mason7bb86312007-12-11 09:25:06 -0500661 struct btrfs_extent_ref *disk_ref;
Chris Mason74493f72007-12-11 09:25:06 -0500662 int ret;
663
664 btrfs_set_stack_ref_root(&ref, root_objectid);
Chris Mason7bb86312007-12-11 09:25:06 -0500665 btrfs_set_stack_ref_generation(&ref, ref_generation);
Chris Mason74493f72007-12-11 09:25:06 -0500666 btrfs_set_stack_ref_objectid(&ref, owner);
667 btrfs_set_stack_ref_offset(&ref, owner_offset);
668
Chris Mason7bb86312007-12-11 09:25:06 -0500669 hash = hash_extent_ref(root_objectid, ref_generation, owner,
670 owner_offset);
Chris Mason74493f72007-12-11 09:25:06 -0500671 key.offset = hash;
672 key.objectid = bytenr;
673 key.type = BTRFS_EXTENT_REF_KEY;
674
675 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(ref));
676 while (ret == -EEXIST) {
Chris Mason7bb86312007-12-11 09:25:06 -0500677 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
678 struct btrfs_extent_ref);
679 if (match_extent_ref(path->nodes[0], disk_ref, &ref))
680 goto out;
681 key.offset++;
682 btrfs_release_path(root, path);
683 ret = btrfs_insert_empty_item(trans, root, path, &key,
684 sizeof(ref));
Chris Mason74493f72007-12-11 09:25:06 -0500685 }
Chris Mason7bb86312007-12-11 09:25:06 -0500686 if (ret)
687 goto out;
688 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
689 struct btrfs_extent_ref);
690 write_extent_buffer(path->nodes[0], &ref, (unsigned long)disk_ref,
691 sizeof(ref));
692 btrfs_mark_buffer_dirty(path->nodes[0]);
693out:
694 btrfs_release_path(root, path);
695 return ret;
Chris Mason74493f72007-12-11 09:25:06 -0500696}
697
Chris Mason925baed2008-06-25 16:01:30 -0400698static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Chris Masonb18c6682007-04-17 13:26:50 -0400699 struct btrfs_root *root,
Chris Mason74493f72007-12-11 09:25:06 -0500700 u64 bytenr, u64 num_bytes,
Chris Mason7bb86312007-12-11 09:25:06 -0500701 u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500702 u64 owner, u64 owner_offset)
Chris Mason02217ed2007-03-02 16:08:05 -0500703{
Chris Mason5caf2a02007-04-02 11:20:42 -0400704 struct btrfs_path *path;
Chris Mason02217ed2007-03-02 16:08:05 -0500705 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400706 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400707 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400708 struct btrfs_extent_item *item;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400709 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500710
Chris Masondb945352007-10-15 16:15:53 -0400711 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400712 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400713 if (!path)
714 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -0400715
Chris Mason3c12ac72008-04-21 12:01:38 -0400716 path->reada = 1;
Chris Masondb945352007-10-15 16:15:53 -0400717 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -0400718 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -0400719 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -0400720 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400721 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400722 if (ret < 0)
723 return ret;
Chris Masona429e512007-04-18 16:15:28 -0400724 if (ret != 0) {
Chris Masona28ec192007-03-06 20:08:01 -0500725 BUG();
Chris Masona429e512007-04-18 16:15:28 -0400726 }
Chris Mason02217ed2007-03-02 16:08:05 -0500727 BUG_ON(ret != 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400728 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400729 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400730 refs = btrfs_extent_refs(l, item);
731 btrfs_set_extent_refs(l, item, refs + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -0400732 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masona28ec192007-03-06 20:08:01 -0500733
Chris Mason5caf2a02007-04-02 11:20:42 -0400734 btrfs_release_path(root->fs_info->extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -0500735
Chris Mason3c12ac72008-04-21 12:01:38 -0400736 path->reada = 1;
Chris Mason7bb86312007-12-11 09:25:06 -0500737 ret = btrfs_insert_extent_backref(trans, root->fs_info->extent_root,
738 path, bytenr, root_objectid,
739 ref_generation, owner, owner_offset);
740 BUG_ON(ret);
Chris Mason9f5fae22007-03-20 14:38:32 -0400741 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400742 del_pending_extents(trans, root->fs_info->extent_root);
Chris Mason74493f72007-12-11 09:25:06 -0500743
744 btrfs_free_path(path);
Chris Mason02217ed2007-03-02 16:08:05 -0500745 return 0;
746}
747
Chris Mason925baed2008-06-25 16:01:30 -0400748int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
749 struct btrfs_root *root,
750 u64 bytenr, u64 num_bytes,
751 u64 root_objectid, u64 ref_generation,
752 u64 owner, u64 owner_offset)
753{
754 int ret;
755
756 mutex_lock(&root->fs_info->alloc_mutex);
757 ret = __btrfs_inc_extent_ref(trans, root, bytenr, num_bytes,
758 root_objectid, ref_generation,
759 owner, owner_offset);
760 mutex_unlock(&root->fs_info->alloc_mutex);
761 return ret;
762}
763
Chris Masone9d0b132007-08-10 14:06:19 -0400764int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
765 struct btrfs_root *root)
766{
767 finish_current_insert(trans, root->fs_info->extent_root);
768 del_pending_extents(trans, root->fs_info->extent_root);
769 return 0;
770}
771
Chris Masonb18c6682007-04-17 13:26:50 -0400772static int lookup_extent_ref(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -0400773 struct btrfs_root *root, u64 bytenr,
774 u64 num_bytes, u32 *refs)
Chris Masona28ec192007-03-06 20:08:01 -0500775{
Chris Mason5caf2a02007-04-02 11:20:42 -0400776 struct btrfs_path *path;
Chris Masona28ec192007-03-06 20:08:01 -0500777 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400778 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400779 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400780 struct btrfs_extent_item *item;
Chris Mason5caf2a02007-04-02 11:20:42 -0400781
Chris Masondb945352007-10-15 16:15:53 -0400782 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400783 path = btrfs_alloc_path();
Chris Mason3c12ac72008-04-21 12:01:38 -0400784 path->reada = 1;
Chris Masondb945352007-10-15 16:15:53 -0400785 key.objectid = bytenr;
786 key.offset = num_bytes;
Chris Mason62e27492007-03-15 12:56:47 -0400787 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5caf2a02007-04-02 11:20:42 -0400788 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400789 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400790 if (ret < 0)
791 goto out;
Chris Mason5f39d392007-10-15 16:14:19 -0400792 if (ret != 0) {
793 btrfs_print_leaf(root, path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400794 printk("failed to find block number %Lu\n", bytenr);
Chris Masona28ec192007-03-06 20:08:01 -0500795 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -0400796 }
797 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400798 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400799 *refs = btrfs_extent_refs(l, item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400800out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400801 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -0500802 return 0;
803}
804
Chris Masonbe20aa92007-12-17 20:14:01 -0500805u32 btrfs_count_snapshots_in_path(struct btrfs_root *root,
806 struct btrfs_path *count_path,
Chris Masona68d5932008-05-08 14:11:56 -0400807 u64 expected_owner,
Chris Masonbe20aa92007-12-17 20:14:01 -0500808 u64 first_extent)
809{
810 struct btrfs_root *extent_root = root->fs_info->extent_root;
811 struct btrfs_path *path;
812 u64 bytenr;
813 u64 found_objectid;
Chris Masona68d5932008-05-08 14:11:56 -0400814 u64 found_owner;
Chris Mason56b453c2008-01-03 09:08:27 -0500815 u64 root_objectid = root->root_key.objectid;
Chris Masonbe20aa92007-12-17 20:14:01 -0500816 u32 total_count = 0;
Chris Masonbbaf5492008-05-08 16:31:21 -0400817 u32 extent_refs;
Chris Masonbe20aa92007-12-17 20:14:01 -0500818 u32 cur_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500819 u32 nritems;
820 int ret;
821 struct btrfs_key key;
822 struct btrfs_key found_key;
823 struct extent_buffer *l;
824 struct btrfs_extent_item *item;
825 struct btrfs_extent_ref *ref_item;
826 int level = -1;
827
Chris Mason925baed2008-06-25 16:01:30 -0400828 /* FIXME, needs locking */
829 BUG();
830
831 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masonbe20aa92007-12-17 20:14:01 -0500832 path = btrfs_alloc_path();
833again:
834 if (level == -1)
835 bytenr = first_extent;
836 else
837 bytenr = count_path->nodes[level]->start;
838
839 cur_count = 0;
840 key.objectid = bytenr;
841 key.offset = 0;
842
843 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
844 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
845 if (ret < 0)
846 goto out;
847 BUG_ON(ret == 0);
848
849 l = path->nodes[0];
850 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
851
852 if (found_key.objectid != bytenr ||
853 found_key.type != BTRFS_EXTENT_ITEM_KEY) {
854 goto out;
855 }
856
857 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Masonbbaf5492008-05-08 16:31:21 -0400858 extent_refs = btrfs_extent_refs(l, item);
Chris Masonbe20aa92007-12-17 20:14:01 -0500859 while (1) {
Chris Masonbd098352008-01-03 13:23:19 -0500860 l = path->nodes[0];
Chris Masonbe20aa92007-12-17 20:14:01 -0500861 nritems = btrfs_header_nritems(l);
862 if (path->slots[0] >= nritems) {
863 ret = btrfs_next_leaf(extent_root, path);
864 if (ret == 0)
865 continue;
866 break;
867 }
868 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
869 if (found_key.objectid != bytenr)
870 break;
Chris Masonbd098352008-01-03 13:23:19 -0500871
Chris Masonbe20aa92007-12-17 20:14:01 -0500872 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
873 path->slots[0]++;
874 continue;
875 }
876
877 cur_count++;
878 ref_item = btrfs_item_ptr(l, path->slots[0],
879 struct btrfs_extent_ref);
880 found_objectid = btrfs_ref_root(l, ref_item);
881
Chris Mason56b453c2008-01-03 09:08:27 -0500882 if (found_objectid != root_objectid) {
883 total_count = 2;
Chris Mason4313b392008-01-03 09:08:48 -0500884 goto out;
Chris Mason56b453c2008-01-03 09:08:27 -0500885 }
Chris Masona68d5932008-05-08 14:11:56 -0400886 if (level == -1) {
887 found_owner = btrfs_ref_objectid(l, ref_item);
888 if (found_owner != expected_owner) {
889 total_count = 2;
890 goto out;
891 }
Chris Masonbbaf5492008-05-08 16:31:21 -0400892 /*
893 * nasty. we don't count a reference held by
894 * the running transaction. This allows nodatacow
895 * to avoid cow most of the time
896 */
897 if (found_owner >= BTRFS_FIRST_FREE_OBJECTID &&
898 btrfs_ref_generation(l, ref_item) ==
899 root->fs_info->generation) {
900 extent_refs--;
901 }
Chris Masona68d5932008-05-08 14:11:56 -0400902 }
Chris Mason56b453c2008-01-03 09:08:27 -0500903 total_count = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500904 path->slots[0]++;
905 }
Chris Masonbbaf5492008-05-08 16:31:21 -0400906 /*
907 * if there is more than one reference against a data extent,
908 * we have to assume the other ref is another snapshot
909 */
910 if (level == -1 && extent_refs > 1) {
911 total_count = 2;
912 goto out;
913 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500914 if (cur_count == 0) {
915 total_count = 0;
916 goto out;
917 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500918 if (level >= 0 && root->node == count_path->nodes[level])
919 goto out;
920 level++;
921 btrfs_release_path(root, path);
922 goto again;
923
924out:
925 btrfs_free_path(path);
Chris Mason925baed2008-06-25 16:01:30 -0400926 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonbe20aa92007-12-17 20:14:01 -0500927 return total_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500928}
Chris Masonc5739bb2007-04-10 09:27:04 -0400929
Chris Masone089f052007-03-16 16:20:31 -0400930int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Yan Zheng31153d82008-07-28 15:32:19 -0400931 struct extent_buffer *buf, int cache_ref)
Chris Mason02217ed2007-03-02 16:08:05 -0500932{
Chris Masondb945352007-10-15 16:15:53 -0400933 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400934 u32 nritems;
935 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -0400936 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -0500937 int i;
Chris Masondb945352007-10-15 16:15:53 -0400938 int level;
Chris Mason6407bf62007-03-27 06:33:00 -0400939 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400940 int faili;
Yan Zheng31153d82008-07-28 15:32:19 -0400941 int nr_file_extents = 0;
Chris Masona28ec192007-03-06 20:08:01 -0500942
Chris Mason3768f362007-03-13 16:47:54 -0400943 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500944 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400945
Chris Masondb945352007-10-15 16:15:53 -0400946 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400947 nritems = btrfs_header_nritems(buf);
948 for (i = 0; i < nritems; i++) {
Chris Masone34a5b42008-07-22 12:08:37 -0400949 cond_resched();
Chris Masondb945352007-10-15 16:15:53 -0400950 if (level == 0) {
951 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400952 btrfs_item_key_to_cpu(buf, &key, i);
953 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -0400954 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400955 fi = btrfs_item_ptr(buf, i,
Chris Mason6407bf62007-03-27 06:33:00 -0400956 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400957 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason236454d2007-04-19 13:37:44 -0400958 BTRFS_FILE_EXTENT_INLINE)
959 continue;
Chris Masondb945352007-10-15 16:15:53 -0400960 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
961 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -0400962 continue;
Chris Mason4a096752008-07-21 10:29:44 -0400963
Yan Zheng31153d82008-07-28 15:32:19 -0400964 if (buf != root->commit_root)
965 nr_file_extents++;
966
Chris Mason4a096752008-07-21 10:29:44 -0400967 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason925baed2008-06-25 16:01:30 -0400968 ret = __btrfs_inc_extent_ref(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500969 btrfs_file_extent_disk_num_bytes(buf, fi),
970 root->root_key.objectid, trans->transid,
971 key.objectid, key.offset);
Chris Mason4a096752008-07-21 10:29:44 -0400972 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason54aa1f42007-06-22 14:16:25 -0400973 if (ret) {
974 faili = i;
Chris Mason4a096752008-07-21 10:29:44 -0400975 WARN_ON(1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400976 goto fail;
977 }
Chris Mason6407bf62007-03-27 06:33:00 -0400978 } else {
Chris Masondb945352007-10-15 16:15:53 -0400979 bytenr = btrfs_node_blockptr(buf, i);
Chris Mason6caab482007-12-13 09:48:07 -0500980 btrfs_node_key_to_cpu(buf, &key, i);
Chris Mason4a096752008-07-21 10:29:44 -0400981
982 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason925baed2008-06-25 16:01:30 -0400983 ret = __btrfs_inc_extent_ref(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500984 btrfs_level_size(root, level - 1),
985 root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500986 trans->transid,
987 level - 1, key.objectid);
Chris Mason4a096752008-07-21 10:29:44 -0400988 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason54aa1f42007-06-22 14:16:25 -0400989 if (ret) {
990 faili = i;
Chris Mason4a096752008-07-21 10:29:44 -0400991 WARN_ON(1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400992 goto fail;
993 }
Chris Mason6407bf62007-03-27 06:33:00 -0400994 }
Chris Mason02217ed2007-03-02 16:08:05 -0500995 }
Yan Zheng31153d82008-07-28 15:32:19 -0400996 /* cache orignal leaf block's references */
997 if (level == 0 && cache_ref && buf != root->commit_root) {
998 struct btrfs_leaf_ref *ref;
999 struct btrfs_extent_info *info;
1000
1001 ref = btrfs_alloc_leaf_ref(nr_file_extents);
1002 if (!ref) {
1003 WARN_ON(1);
1004 goto out;
1005 }
1006
Yan Zheng31153d82008-07-28 15:32:19 -04001007 ref->bytenr = buf->start;
1008 ref->owner = btrfs_header_owner(buf);
1009 ref->generation = btrfs_header_generation(buf);
1010 ref->nritems = nr_file_extents;
1011 info = ref->extents;
1012
1013 for (i = 0; nr_file_extents > 0 && i < nritems; i++) {
1014 u64 disk_bytenr;
1015 btrfs_item_key_to_cpu(buf, &key, i);
1016 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
1017 continue;
1018 fi = btrfs_item_ptr(buf, i,
1019 struct btrfs_file_extent_item);
1020 if (btrfs_file_extent_type(buf, fi) ==
1021 BTRFS_FILE_EXTENT_INLINE)
1022 continue;
1023 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
1024 if (disk_bytenr == 0)
1025 continue;
1026
1027 info->bytenr = disk_bytenr;
1028 info->num_bytes =
1029 btrfs_file_extent_disk_num_bytes(buf, fi);
1030 info->objectid = key.objectid;
1031 info->offset = key.offset;
1032 info++;
1033 }
1034
1035 BUG_ON(!root->ref_tree);
1036 ret = btrfs_add_leaf_ref(root, ref);
1037 WARN_ON(ret);
1038 btrfs_free_leaf_ref(ref);
1039 }
1040out:
Chris Mason02217ed2007-03-02 16:08:05 -05001041 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04001042fail:
Chris Masonccd467d2007-06-28 15:57:36 -04001043 WARN_ON(1);
Chris Mason7bb86312007-12-11 09:25:06 -05001044#if 0
Chris Mason54aa1f42007-06-22 14:16:25 -04001045 for (i =0; i < faili; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001046 if (level == 0) {
1047 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001048 btrfs_item_key_to_cpu(buf, &key, i);
1049 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04001050 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001051 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04001052 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001053 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04001054 BTRFS_FILE_EXTENT_INLINE)
1055 continue;
Chris Masondb945352007-10-15 16:15:53 -04001056 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
1057 if (disk_bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04001058 continue;
Chris Masondb945352007-10-15 16:15:53 -04001059 err = btrfs_free_extent(trans, root, disk_bytenr,
1060 btrfs_file_extent_disk_num_bytes(buf,
Chris Mason5f39d392007-10-15 16:14:19 -04001061 fi), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001062 BUG_ON(err);
1063 } else {
Chris Masondb945352007-10-15 16:15:53 -04001064 bytenr = btrfs_node_blockptr(buf, i);
1065 err = btrfs_free_extent(trans, root, bytenr,
1066 btrfs_level_size(root, level - 1), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001067 BUG_ON(err);
1068 }
1069 }
Chris Mason7bb86312007-12-11 09:25:06 -05001070#endif
Chris Mason54aa1f42007-06-22 14:16:25 -04001071 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05001072}
1073
Chris Mason9078a3e2007-04-26 16:46:15 -04001074static int write_one_cache_group(struct btrfs_trans_handle *trans,
1075 struct btrfs_root *root,
1076 struct btrfs_path *path,
1077 struct btrfs_block_group_cache *cache)
1078{
1079 int ret;
1080 int pending_ret;
1081 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001082 unsigned long bi;
1083 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04001084
Chris Mason9078a3e2007-04-26 16:46:15 -04001085 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001086 if (ret < 0)
1087 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -04001088 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001089
1090 leaf = path->nodes[0];
1091 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
1092 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
1093 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -04001094 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -04001095fail:
Chris Mason9078a3e2007-04-26 16:46:15 -04001096 finish_current_insert(trans, extent_root);
1097 pending_ret = del_pending_extents(trans, extent_root);
1098 if (ret)
1099 return ret;
1100 if (pending_ret)
1101 return pending_ret;
1102 return 0;
1103
1104}
1105
Chris Mason96b51792007-10-15 16:15:19 -04001106int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1107 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04001108{
Chris Masond1310b22008-01-24 16:13:08 -05001109 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -04001110 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04001111 int ret;
1112 int err = 0;
1113 int werr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04001114 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04001115 u64 last = 0;
1116 u64 start;
1117 u64 end;
1118 u64 ptr;
Chris Mason9078a3e2007-04-26 16:46:15 -04001119
Chris Mason96b51792007-10-15 16:15:19 -04001120 block_group_cache = &root->fs_info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04001121 path = btrfs_alloc_path();
1122 if (!path)
1123 return -ENOMEM;
1124
Chris Mason925baed2008-06-25 16:01:30 -04001125 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason9078a3e2007-04-26 16:46:15 -04001126 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -04001127 ret = find_first_extent_bit(block_group_cache, last,
1128 &start, &end, BLOCK_GROUP_DIRTY);
1129 if (ret)
Chris Mason9078a3e2007-04-26 16:46:15 -04001130 break;
Chris Mason54aa1f42007-06-22 14:16:25 -04001131
Chris Mason96b51792007-10-15 16:15:19 -04001132 last = end + 1;
1133 ret = get_state_private(block_group_cache, start, &ptr);
1134 if (ret)
1135 break;
Jens Axboeae2f5412007-10-19 09:22:59 -04001136 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -04001137 err = write_one_cache_group(trans, root,
1138 path, cache);
1139 /*
1140 * if we fail to write the cache group, we want
1141 * to keep it marked dirty in hopes that a later
1142 * write will work
1143 */
1144 if (err) {
1145 werr = err;
1146 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04001147 }
Chris Mason96b51792007-10-15 16:15:19 -04001148 clear_extent_bits(block_group_cache, start, end,
1149 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001150 }
1151 btrfs_free_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04001152 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason9078a3e2007-04-26 16:46:15 -04001153 return werr;
1154}
1155
Chris Mason6324fbf2008-03-24 15:01:59 -04001156static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
1157 u64 flags)
1158{
1159 struct list_head *head = &info->space_info;
1160 struct list_head *cur;
1161 struct btrfs_space_info *found;
1162 list_for_each(cur, head) {
1163 found = list_entry(cur, struct btrfs_space_info, list);
1164 if (found->flags == flags)
1165 return found;
1166 }
1167 return NULL;
1168
1169}
1170
Chris Mason593060d2008-03-25 16:50:33 -04001171static int update_space_info(struct btrfs_fs_info *info, u64 flags,
1172 u64 total_bytes, u64 bytes_used,
1173 struct btrfs_space_info **space_info)
1174{
1175 struct btrfs_space_info *found;
1176
1177 found = __find_space_info(info, flags);
1178 if (found) {
1179 found->total_bytes += total_bytes;
1180 found->bytes_used += bytes_used;
Chris Mason8f18cf12008-04-25 16:53:30 -04001181 found->full = 0;
Chris Mason593060d2008-03-25 16:50:33 -04001182 WARN_ON(found->total_bytes < found->bytes_used);
1183 *space_info = found;
1184 return 0;
1185 }
1186 found = kmalloc(sizeof(*found), GFP_NOFS);
1187 if (!found)
1188 return -ENOMEM;
1189
1190 list_add(&found->list, &info->space_info);
1191 found->flags = flags;
1192 found->total_bytes = total_bytes;
1193 found->bytes_used = bytes_used;
1194 found->bytes_pinned = 0;
1195 found->full = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04001196 found->force_alloc = 0;
Chris Mason593060d2008-03-25 16:50:33 -04001197 *space_info = found;
1198 return 0;
1199}
1200
Chris Mason8790d502008-04-03 16:29:03 -04001201static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
1202{
1203 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
Chris Mason611f0e02008-04-03 16:29:03 -04001204 BTRFS_BLOCK_GROUP_RAID1 |
Chris Mason321aecc2008-04-16 10:49:51 -04001205 BTRFS_BLOCK_GROUP_RAID10 |
Chris Mason611f0e02008-04-03 16:29:03 -04001206 BTRFS_BLOCK_GROUP_DUP);
Chris Mason8790d502008-04-03 16:29:03 -04001207 if (extra_flags) {
1208 if (flags & BTRFS_BLOCK_GROUP_DATA)
1209 fs_info->avail_data_alloc_bits |= extra_flags;
1210 if (flags & BTRFS_BLOCK_GROUP_METADATA)
1211 fs_info->avail_metadata_alloc_bits |= extra_flags;
1212 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
1213 fs_info->avail_system_alloc_bits |= extra_flags;
1214 }
1215}
Chris Mason593060d2008-03-25 16:50:33 -04001216
Chris Masona061fc82008-05-07 11:43:44 -04001217static u64 reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04001218{
Chris Masona061fc82008-05-07 11:43:44 -04001219 u64 num_devices = root->fs_info->fs_devices->num_devices;
1220
1221 if (num_devices == 1)
1222 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0);
1223 if (num_devices < 4)
1224 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
1225
Chris Masonec44a352008-04-28 15:29:52 -04001226 if ((flags & BTRFS_BLOCK_GROUP_DUP) &&
1227 (flags & (BTRFS_BLOCK_GROUP_RAID1 |
Chris Masona061fc82008-05-07 11:43:44 -04001228 BTRFS_BLOCK_GROUP_RAID10))) {
Chris Masonec44a352008-04-28 15:29:52 -04001229 flags &= ~BTRFS_BLOCK_GROUP_DUP;
Chris Masona061fc82008-05-07 11:43:44 -04001230 }
Chris Masonec44a352008-04-28 15:29:52 -04001231
1232 if ((flags & BTRFS_BLOCK_GROUP_RAID1) &&
Chris Masona061fc82008-05-07 11:43:44 -04001233 (flags & BTRFS_BLOCK_GROUP_RAID10)) {
Chris Masonec44a352008-04-28 15:29:52 -04001234 flags &= ~BTRFS_BLOCK_GROUP_RAID1;
Chris Masona061fc82008-05-07 11:43:44 -04001235 }
Chris Masonec44a352008-04-28 15:29:52 -04001236
1237 if ((flags & BTRFS_BLOCK_GROUP_RAID0) &&
1238 ((flags & BTRFS_BLOCK_GROUP_RAID1) |
1239 (flags & BTRFS_BLOCK_GROUP_RAID10) |
1240 (flags & BTRFS_BLOCK_GROUP_DUP)))
1241 flags &= ~BTRFS_BLOCK_GROUP_RAID0;
1242 return flags;
1243}
1244
Chris Mason6324fbf2008-03-24 15:01:59 -04001245static int do_chunk_alloc(struct btrfs_trans_handle *trans,
1246 struct btrfs_root *extent_root, u64 alloc_bytes,
Chris Mason0ef3e662008-05-24 14:04:53 -04001247 u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04001248{
1249 struct btrfs_space_info *space_info;
1250 u64 thresh;
1251 u64 start;
1252 u64 num_bytes;
1253 int ret;
1254
Chris Masona061fc82008-05-07 11:43:44 -04001255 flags = reduce_alloc_profile(extent_root, flags);
Chris Masonec44a352008-04-28 15:29:52 -04001256
Chris Mason6324fbf2008-03-24 15:01:59 -04001257 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04001258 if (!space_info) {
1259 ret = update_space_info(extent_root->fs_info, flags,
1260 0, 0, &space_info);
1261 BUG_ON(ret);
1262 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001263 BUG_ON(!space_info);
1264
Chris Mason0ef3e662008-05-24 14:04:53 -04001265 if (space_info->force_alloc) {
1266 force = 1;
1267 space_info->force_alloc = 0;
1268 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001269 if (space_info->full)
Chris Mason925baed2008-06-25 16:01:30 -04001270 goto out;
Chris Mason6324fbf2008-03-24 15:01:59 -04001271
Chris Mason8790d502008-04-03 16:29:03 -04001272 thresh = div_factor(space_info->total_bytes, 6);
Chris Mason0ef3e662008-05-24 14:04:53 -04001273 if (!force &&
1274 (space_info->bytes_used + space_info->bytes_pinned + alloc_bytes) <
Chris Mason6324fbf2008-03-24 15:01:59 -04001275 thresh)
Chris Mason925baed2008-06-25 16:01:30 -04001276 goto out;
Chris Mason6324fbf2008-03-24 15:01:59 -04001277
Chris Mason925baed2008-06-25 16:01:30 -04001278 mutex_lock(&extent_root->fs_info->chunk_mutex);
Chris Mason6324fbf2008-03-24 15:01:59 -04001279 ret = btrfs_alloc_chunk(trans, extent_root, &start, &num_bytes, flags);
1280 if (ret == -ENOSPC) {
1281printk("space info full %Lu\n", flags);
1282 space_info->full = 1;
Chris Masona74a4b92008-06-25 16:01:31 -04001283 goto out_unlock;
Chris Mason6324fbf2008-03-24 15:01:59 -04001284 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001285 BUG_ON(ret);
1286
1287 ret = btrfs_make_block_group(trans, extent_root, 0, flags,
Chris Masone17cade2008-04-15 15:41:47 -04001288 BTRFS_FIRST_CHUNK_TREE_OBJECTID, start, num_bytes);
Chris Mason6324fbf2008-03-24 15:01:59 -04001289 BUG_ON(ret);
Chris Masona74a4b92008-06-25 16:01:31 -04001290out_unlock:
Chris Mason333db942008-06-25 16:01:30 -04001291 mutex_unlock(&extent_root->fs_info->chunk_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001292out:
Chris Mason6324fbf2008-03-24 15:01:59 -04001293 return 0;
1294}
1295
Chris Mason9078a3e2007-04-26 16:46:15 -04001296static int update_block_group(struct btrfs_trans_handle *trans,
1297 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -04001298 u64 bytenr, u64 num_bytes, int alloc,
Chris Mason0b86a832008-03-24 15:01:56 -04001299 int mark_free)
Chris Mason9078a3e2007-04-26 16:46:15 -04001300{
1301 struct btrfs_block_group_cache *cache;
1302 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001303 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001304 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04001305 u64 byte_in_group;
Chris Mason96b51792007-10-15 16:15:19 -04001306 u64 start;
1307 u64 end;
Chris Mason3e1ad542007-05-07 20:03:49 -04001308
Chris Mason7d9eb122008-07-08 14:19:17 -04001309 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Mason9078a3e2007-04-26 16:46:15 -04001310 while(total) {
Chris Masondb945352007-10-15 16:15:53 -04001311 cache = btrfs_lookup_block_group(info, bytenr);
Chris Mason3e1ad542007-05-07 20:03:49 -04001312 if (!cache) {
Chris Mason9078a3e2007-04-26 16:46:15 -04001313 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -04001314 }
Chris Masondb945352007-10-15 16:15:53 -04001315 byte_in_group = bytenr - cache->key.objectid;
1316 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason96b51792007-10-15 16:15:19 -04001317 start = cache->key.objectid;
1318 end = start + cache->key.offset - 1;
1319 set_extent_bits(&info->block_group_cache, start, end,
1320 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001321
Chris Masonc286ac42008-07-22 23:06:41 -04001322 spin_lock(&cache->lock);
Chris Mason9078a3e2007-04-26 16:46:15 -04001323 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04001324 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04001325 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04001326 old_val += num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001327 cache->space_info->bytes_used += num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04001328 btrfs_set_block_group_used(&cache->item, old_val);
1329 spin_unlock(&cache->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04001330 } else {
Chris Masondb945352007-10-15 16:15:53 -04001331 old_val -= num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001332 cache->space_info->bytes_used -= num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04001333 btrfs_set_block_group_used(&cache->item, old_val);
1334 spin_unlock(&cache->lock);
Chris Masonf510cfe2007-10-15 16:14:48 -04001335 if (mark_free) {
1336 set_extent_dirty(&info->free_space_cache,
Chris Masondb945352007-10-15 16:15:53 -04001337 bytenr, bytenr + num_bytes - 1,
Chris Masonf510cfe2007-10-15 16:14:48 -04001338 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04001339 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001340 }
Chris Masondb945352007-10-15 16:15:53 -04001341 total -= num_bytes;
1342 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001343 }
1344 return 0;
1345}
Chris Mason6324fbf2008-03-24 15:01:59 -04001346
Chris Masona061fc82008-05-07 11:43:44 -04001347static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
1348{
1349 u64 start;
1350 u64 end;
1351 int ret;
1352 ret = find_first_extent_bit(&root->fs_info->block_group_cache,
1353 search_start, &start, &end,
1354 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA |
1355 BLOCK_GROUP_SYSTEM);
1356 if (ret)
1357 return 0;
1358 return start;
1359}
1360
1361
Yan324ae4d2007-11-16 14:57:08 -05001362static int update_pinned_extents(struct btrfs_root *root,
1363 u64 bytenr, u64 num, int pin)
1364{
1365 u64 len;
1366 struct btrfs_block_group_cache *cache;
1367 struct btrfs_fs_info *fs_info = root->fs_info;
1368
Chris Mason7d9eb122008-07-08 14:19:17 -04001369 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Yan324ae4d2007-11-16 14:57:08 -05001370 if (pin) {
1371 set_extent_dirty(&fs_info->pinned_extents,
1372 bytenr, bytenr + num - 1, GFP_NOFS);
1373 } else {
1374 clear_extent_dirty(&fs_info->pinned_extents,
1375 bytenr, bytenr + num - 1, GFP_NOFS);
1376 }
1377 while (num > 0) {
1378 cache = btrfs_lookup_block_group(fs_info, bytenr);
Chris Masona061fc82008-05-07 11:43:44 -04001379 if (!cache) {
1380 u64 first = first_logical_byte(root, bytenr);
1381 WARN_ON(first < bytenr);
1382 len = min(first - bytenr, num);
1383 } else {
1384 len = min(num, cache->key.offset -
1385 (bytenr - cache->key.objectid));
1386 }
Yan324ae4d2007-11-16 14:57:08 -05001387 if (pin) {
Chris Masona061fc82008-05-07 11:43:44 -04001388 if (cache) {
Chris Masonc286ac42008-07-22 23:06:41 -04001389 spin_lock(&cache->lock);
Chris Masona061fc82008-05-07 11:43:44 -04001390 cache->pinned += len;
1391 cache->space_info->bytes_pinned += len;
Chris Masonc286ac42008-07-22 23:06:41 -04001392 spin_unlock(&cache->lock);
Chris Masona061fc82008-05-07 11:43:44 -04001393 }
Yan324ae4d2007-11-16 14:57:08 -05001394 fs_info->total_pinned += len;
1395 } else {
Chris Masona061fc82008-05-07 11:43:44 -04001396 if (cache) {
Chris Masonc286ac42008-07-22 23:06:41 -04001397 spin_lock(&cache->lock);
Chris Masona061fc82008-05-07 11:43:44 -04001398 cache->pinned -= len;
1399 cache->space_info->bytes_pinned -= len;
Chris Masonc286ac42008-07-22 23:06:41 -04001400 spin_unlock(&cache->lock);
Chris Masona061fc82008-05-07 11:43:44 -04001401 }
Yan324ae4d2007-11-16 14:57:08 -05001402 fs_info->total_pinned -= len;
1403 }
1404 bytenr += len;
1405 num -= len;
1406 }
1407 return 0;
1408}
Chris Mason9078a3e2007-04-26 16:46:15 -04001409
Chris Masond1310b22008-01-24 16:13:08 -05001410int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy)
Chris Masonccd467d2007-06-28 15:57:36 -04001411{
Chris Masonccd467d2007-06-28 15:57:36 -04001412 u64 last = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001413 u64 start;
1414 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001415 struct extent_io_tree *pinned_extents = &root->fs_info->pinned_extents;
Chris Masonccd467d2007-06-28 15:57:36 -04001416 int ret;
Chris Masonccd467d2007-06-28 15:57:36 -04001417
1418 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001419 ret = find_first_extent_bit(pinned_extents, last,
1420 &start, &end, EXTENT_DIRTY);
1421 if (ret)
Chris Masonccd467d2007-06-28 15:57:36 -04001422 break;
Chris Mason1a5bc162007-10-15 16:15:26 -04001423 set_extent_dirty(copy, start, end, GFP_NOFS);
1424 last = end + 1;
Chris Masonccd467d2007-06-28 15:57:36 -04001425 }
1426 return 0;
1427}
1428
1429int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1430 struct btrfs_root *root,
Chris Masond1310b22008-01-24 16:13:08 -05001431 struct extent_io_tree *unpin)
Chris Masona28ec192007-03-06 20:08:01 -05001432{
Chris Mason1a5bc162007-10-15 16:15:26 -04001433 u64 start;
1434 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05001435 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001436 struct extent_io_tree *free_space_cache;
Chris Masonf510cfe2007-10-15 16:14:48 -04001437 free_space_cache = &root->fs_info->free_space_cache;
Chris Masona28ec192007-03-06 20:08:01 -05001438
Chris Mason925baed2008-06-25 16:01:30 -04001439 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05001440 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001441 ret = find_first_extent_bit(unpin, 0, &start, &end,
1442 EXTENT_DIRTY);
1443 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05001444 break;
Yan324ae4d2007-11-16 14:57:08 -05001445 update_pinned_extents(root, start, end + 1 - start, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001446 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1447 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
Chris Masonc286ac42008-07-22 23:06:41 -04001448 if (need_resched()) {
1449 mutex_unlock(&root->fs_info->alloc_mutex);
1450 cond_resched();
1451 mutex_lock(&root->fs_info->alloc_mutex);
1452 }
Chris Masona28ec192007-03-06 20:08:01 -05001453 }
Chris Mason925baed2008-06-25 16:01:30 -04001454 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05001455 return 0;
1456}
1457
Chris Mason98ed5172008-01-03 10:01:48 -05001458static int finish_current_insert(struct btrfs_trans_handle *trans,
1459 struct btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -05001460{
Chris Mason7bb86312007-12-11 09:25:06 -05001461 u64 start;
1462 u64 end;
1463 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001464 struct extent_buffer *eb;
Chris Mason7bb86312007-12-11 09:25:06 -05001465 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001466 struct btrfs_key ins;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001467 struct btrfs_disk_key first;
Chris Mason234b63a2007-03-13 10:46:10 -04001468 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -05001469 int ret;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001470 int level;
Chris Mason1a5bc162007-10-15 16:15:26 -04001471 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001472
Chris Mason7d9eb122008-07-08 14:19:17 -04001473 WARN_ON(!mutex_is_locked(&extent_root->fs_info->alloc_mutex));
Chris Mason5f39d392007-10-15 16:14:19 -04001474 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason62e27492007-03-15 12:56:47 -04001475 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason7bb86312007-12-11 09:25:06 -05001476 path = btrfs_alloc_path();
Chris Mason037e6392007-03-07 11:50:24 -05001477
Chris Mason26b80032007-08-08 20:17:12 -04001478 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001479 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1480 &end, EXTENT_LOCKED);
1481 if (ret)
Chris Mason26b80032007-08-08 20:17:12 -04001482 break;
1483
Chris Mason1a5bc162007-10-15 16:15:26 -04001484 ins.objectid = start;
1485 ins.offset = end + 1 - start;
1486 err = btrfs_insert_item(trans, extent_root, &ins,
1487 &extent_item, sizeof(extent_item));
1488 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1489 GFP_NOFS);
Chris Masonc286ac42008-07-22 23:06:41 -04001490
1491 eb = btrfs_find_tree_block(extent_root, ins.objectid,
1492 ins.offset);
1493
1494 if (!btrfs_buffer_uptodate(eb, trans->transid)) {
1495 mutex_unlock(&extent_root->fs_info->alloc_mutex);
1496 btrfs_read_buffer(eb, trans->transid);
1497 mutex_lock(&extent_root->fs_info->alloc_mutex);
1498 }
1499
Chris Mason925baed2008-06-25 16:01:30 -04001500 btrfs_tree_lock(eb);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001501 level = btrfs_header_level(eb);
1502 if (level == 0) {
1503 btrfs_item_key(eb, &first, 0);
1504 } else {
1505 btrfs_node_key(eb, &first, 0);
1506 }
Chris Mason925baed2008-06-25 16:01:30 -04001507 btrfs_tree_unlock(eb);
1508 free_extent_buffer(eb);
1509 /*
1510 * the first key is just a hint, so the race we've created
1511 * against reading it is fine
1512 */
Chris Mason7bb86312007-12-11 09:25:06 -05001513 err = btrfs_insert_extent_backref(trans, extent_root, path,
1514 start, extent_root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -05001515 0, level,
1516 btrfs_disk_key_objectid(&first));
Chris Mason7bb86312007-12-11 09:25:06 -05001517 BUG_ON(err);
Chris Masonc286ac42008-07-22 23:06:41 -04001518 if (need_resched()) {
1519 mutex_unlock(&extent_root->fs_info->alloc_mutex);
1520 cond_resched();
1521 mutex_lock(&extent_root->fs_info->alloc_mutex);
1522 }
Chris Mason037e6392007-03-07 11:50:24 -05001523 }
Chris Mason7bb86312007-12-11 09:25:06 -05001524 btrfs_free_path(path);
Chris Mason037e6392007-03-07 11:50:24 -05001525 return 0;
1526}
1527
Chris Masondb945352007-10-15 16:15:53 -04001528static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
1529 int pending)
Chris Masone20d96d2007-03-22 12:13:20 -04001530{
Chris Mason1a5bc162007-10-15 16:15:26 -04001531 int err = 0;
Chris Mason78fae272007-03-25 11:35:08 -04001532
Chris Mason7d9eb122008-07-08 14:19:17 -04001533 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Masonf4b9aa82007-03-27 11:05:53 -04001534 if (!pending) {
Chris Mason925baed2008-06-25 16:01:30 -04001535 struct extent_buffer *buf;
Chris Masondb945352007-10-15 16:15:53 -04001536 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -04001537 if (buf) {
Yan974e35a2008-07-24 12:18:16 -04001538 if (btrfs_buffer_uptodate(buf, 0) &&
1539 btrfs_try_tree_lock(buf)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -04001540 u64 transid =
1541 root->fs_info->running_transaction->transid;
Chris Masondc17ff82008-01-08 15:46:30 -05001542 u64 header_transid =
1543 btrfs_header_generation(buf);
Chris Mason6bc34672008-04-04 15:40:00 -04001544 if (header_transid == transid &&
1545 !btrfs_header_flag(buf,
1546 BTRFS_HEADER_FLAG_WRITTEN)) {
Chris Mason55c69072008-01-09 15:55:33 -05001547 clean_tree_block(NULL, root, buf);
Chris Mason925baed2008-06-25 16:01:30 -04001548 btrfs_tree_unlock(buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001549 free_extent_buffer(buf);
Yanc5492282007-11-06 10:25:25 -05001550 return 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001551 }
Chris Mason925baed2008-06-25 16:01:30 -04001552 btrfs_tree_unlock(buf);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001553 }
Chris Mason5f39d392007-10-15 16:14:19 -04001554 free_extent_buffer(buf);
Chris Mason8ef97622007-03-26 10:15:30 -04001555 }
Yan324ae4d2007-11-16 14:57:08 -05001556 update_pinned_extents(root, bytenr, num_bytes, 1);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001557 } else {
Chris Mason1a5bc162007-10-15 16:15:26 -04001558 set_extent_bits(&root->fs_info->pending_del,
Chris Masondb945352007-10-15 16:15:53 -04001559 bytenr, bytenr + num_bytes - 1,
1560 EXTENT_LOCKED, GFP_NOFS);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001561 }
Chris Masonbe744172007-05-06 10:15:01 -04001562 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001563 return 0;
1564}
1565
Chris Masona28ec192007-03-06 20:08:01 -05001566/*
1567 * remove an extent from the root, returns 0 on success
1568 */
Chris Masone089f052007-03-16 16:20:31 -04001569static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001570 *root, u64 bytenr, u64 num_bytes,
1571 u64 root_objectid, u64 ref_generation,
1572 u64 owner_objectid, u64 owner_offset, int pin,
Chris Masone37c9e62007-05-09 20:13:14 -04001573 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -05001574{
Chris Mason5caf2a02007-04-02 11:20:42 -04001575 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001576 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -04001577 struct btrfs_fs_info *info = root->fs_info;
1578 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001579 struct extent_buffer *leaf;
Chris Masona28ec192007-03-06 20:08:01 -05001580 int ret;
Chris Mason952fcca2008-02-18 16:33:44 -05001581 int extent_slot = 0;
1582 int found_extent = 0;
1583 int num_to_del = 1;
Chris Mason234b63a2007-03-13 10:46:10 -04001584 struct btrfs_extent_item *ei;
Chris Masoncf27e1e2007-03-13 09:49:06 -04001585 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -05001586
Chris Mason7d9eb122008-07-08 14:19:17 -04001587 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Masondb945352007-10-15 16:15:53 -04001588 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -04001589 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -04001590 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001591 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001592 if (!path)
1593 return -ENOMEM;
1594
Chris Mason3c12ac72008-04-21 12:01:38 -04001595 path->reada = 1;
Chris Mason7bb86312007-12-11 09:25:06 -05001596 ret = lookup_extent_backref(trans, extent_root, path,
1597 bytenr, root_objectid,
1598 ref_generation,
1599 owner_objectid, owner_offset, 1);
1600 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05001601 struct btrfs_key found_key;
1602 extent_slot = path->slots[0];
1603 while(extent_slot > 0) {
1604 extent_slot--;
1605 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1606 extent_slot);
1607 if (found_key.objectid != bytenr)
1608 break;
1609 if (found_key.type == BTRFS_EXTENT_ITEM_KEY &&
1610 found_key.offset == num_bytes) {
1611 found_extent = 1;
1612 break;
1613 }
1614 if (path->slots[0] - extent_slot > 5)
1615 break;
1616 }
1617 if (!found_extent)
1618 ret = btrfs_del_item(trans, extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -05001619 } else {
1620 btrfs_print_leaf(extent_root, path->nodes[0]);
1621 WARN_ON(1);
1622 printk("Unable to find ref byte nr %Lu root %Lu "
1623 " gen %Lu owner %Lu offset %Lu\n", bytenr,
1624 root_objectid, ref_generation, owner_objectid,
1625 owner_offset);
1626 }
Chris Mason952fcca2008-02-18 16:33:44 -05001627 if (!found_extent) {
1628 btrfs_release_path(extent_root, path);
1629 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
1630 if (ret < 0)
1631 return ret;
1632 BUG_ON(ret);
1633 extent_slot = path->slots[0];
1634 }
Chris Mason5f39d392007-10-15 16:14:19 -04001635
1636 leaf = path->nodes[0];
Chris Mason952fcca2008-02-18 16:33:44 -05001637 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04001638 struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001639 refs = btrfs_extent_refs(leaf, ei);
1640 BUG_ON(refs == 0);
1641 refs -= 1;
1642 btrfs_set_extent_refs(leaf, ei, refs);
Chris Mason952fcca2008-02-18 16:33:44 -05001643
Chris Mason5f39d392007-10-15 16:14:19 -04001644 btrfs_mark_buffer_dirty(leaf);
1645
Chris Mason952fcca2008-02-18 16:33:44 -05001646 if (refs == 0 && found_extent && path->slots[0] == extent_slot + 1) {
1647 /* if the back ref and the extent are next to each other
1648 * they get deleted below in one shot
1649 */
1650 path->slots[0] = extent_slot;
1651 num_to_del = 2;
1652 } else if (found_extent) {
1653 /* otherwise delete the extent back ref */
1654 ret = btrfs_del_item(trans, extent_root, path);
1655 BUG_ON(ret);
1656 /* if refs are 0, we need to setup the path for deletion */
1657 if (refs == 0) {
1658 btrfs_release_path(extent_root, path);
1659 ret = btrfs_search_slot(trans, extent_root, &key, path,
1660 -1, 1);
1661 if (ret < 0)
1662 return ret;
1663 BUG_ON(ret);
1664 }
1665 }
1666
Chris Masoncf27e1e2007-03-13 09:49:06 -04001667 if (refs == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001668 u64 super_used;
1669 u64 root_used;
Chris Mason78fae272007-03-25 11:35:08 -04001670
1671 if (pin) {
Chris Masondb945352007-10-15 16:15:53 -04001672 ret = pin_down_bytes(root, bytenr, num_bytes, 0);
Yanc5492282007-11-06 10:25:25 -05001673 if (ret > 0)
1674 mark_free = 1;
1675 BUG_ON(ret < 0);
Chris Mason78fae272007-03-25 11:35:08 -04001676 }
1677
Josef Bacik58176a92007-08-29 15:47:34 -04001678 /* block accounting for super block */
Chris Masona2135012008-06-25 16:01:30 -04001679 spin_lock_irq(&info->delalloc_lock);
Chris Masondb945352007-10-15 16:15:53 -04001680 super_used = btrfs_super_bytes_used(&info->super_copy);
1681 btrfs_set_super_bytes_used(&info->super_copy,
1682 super_used - num_bytes);
Chris Masona2135012008-06-25 16:01:30 -04001683 spin_unlock_irq(&info->delalloc_lock);
Josef Bacik58176a92007-08-29 15:47:34 -04001684
1685 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001686 root_used = btrfs_root_used(&root->root_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001687 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -04001688 root_used - num_bytes);
Chris Mason952fcca2008-02-18 16:33:44 -05001689 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
1690 num_to_del);
Chris Mason54aa1f42007-06-22 14:16:25 -04001691 if (ret) {
1692 return ret;
1693 }
Chris Masondb945352007-10-15 16:15:53 -04001694 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001695 mark_free);
Chris Mason9078a3e2007-04-26 16:46:15 -04001696 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05001697 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001698 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001699 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -05001700 return ret;
1701}
1702
1703/*
Chris Masonfec577f2007-02-26 10:40:21 -05001704 * find all the blocks marked as pending in the radix tree and remove
1705 * them from the extent map
1706 */
Chris Masone089f052007-03-16 16:20:31 -04001707static int del_pending_extents(struct btrfs_trans_handle *trans, struct
1708 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -05001709{
1710 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001711 int err = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001712 u64 start;
1713 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001714 struct extent_io_tree *pending_del;
1715 struct extent_io_tree *pinned_extents;
Chris Mason8ef97622007-03-26 10:15:30 -04001716
Chris Mason7d9eb122008-07-08 14:19:17 -04001717 WARN_ON(!mutex_is_locked(&extent_root->fs_info->alloc_mutex));
Chris Mason1a5bc162007-10-15 16:15:26 -04001718 pending_del = &extent_root->fs_info->pending_del;
1719 pinned_extents = &extent_root->fs_info->pinned_extents;
Chris Masonfec577f2007-02-26 10:40:21 -05001720
1721 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001722 ret = find_first_extent_bit(pending_del, 0, &start, &end,
1723 EXTENT_LOCKED);
1724 if (ret)
Chris Masonfec577f2007-02-26 10:40:21 -05001725 break;
Chris Mason1a5bc162007-10-15 16:15:26 -04001726 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
1727 GFP_NOFS);
Chris Masonc286ac42008-07-22 23:06:41 -04001728 if (!test_range_bit(&extent_root->fs_info->extent_ins,
1729 start, end, EXTENT_LOCKED, 0)) {
1730 update_pinned_extents(extent_root, start,
1731 end + 1 - start, 1);
1732 ret = __free_extent(trans, extent_root,
1733 start, end + 1 - start,
1734 extent_root->root_key.objectid,
1735 0, 0, 0, 0, 0);
1736 } else {
1737 clear_extent_bits(&extent_root->fs_info->extent_ins,
1738 start, end, EXTENT_LOCKED, GFP_NOFS);
1739 }
Chris Mason1a5bc162007-10-15 16:15:26 -04001740 if (ret)
1741 err = ret;
Chris Masonc286ac42008-07-22 23:06:41 -04001742
1743 if (need_resched()) {
1744 mutex_unlock(&extent_root->fs_info->alloc_mutex);
1745 cond_resched();
1746 mutex_lock(&extent_root->fs_info->alloc_mutex);
1747 }
Chris Masonfec577f2007-02-26 10:40:21 -05001748 }
Chris Masone20d96d2007-03-22 12:13:20 -04001749 return err;
Chris Masonfec577f2007-02-26 10:40:21 -05001750}
1751
1752/*
1753 * remove an extent from the root, returns 0 on success
1754 */
Chris Mason925baed2008-06-25 16:01:30 -04001755static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
1756 struct btrfs_root *root, u64 bytenr,
1757 u64 num_bytes, u64 root_objectid,
1758 u64 ref_generation, u64 owner_objectid,
1759 u64 owner_offset, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -05001760{
Chris Mason9f5fae22007-03-20 14:38:32 -04001761 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -05001762 int pending_ret;
1763 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05001764
Chris Masondb945352007-10-15 16:15:53 -04001765 WARN_ON(num_bytes < root->sectorsize);
Chris Mason7bb86312007-12-11 09:25:06 -05001766 if (!root->ref_cows)
1767 ref_generation = 0;
1768
Chris Masona28ec192007-03-06 20:08:01 -05001769 if (root == extent_root) {
Chris Masondb945352007-10-15 16:15:53 -04001770 pin_down_bytes(root, bytenr, num_bytes, 1);
Chris Masona28ec192007-03-06 20:08:01 -05001771 return 0;
1772 }
Chris Mason7bb86312007-12-11 09:25:06 -05001773 ret = __free_extent(trans, root, bytenr, num_bytes, root_objectid,
1774 ref_generation, owner_objectid, owner_offset,
1775 pin, pin == 0);
Chris Masonee6e6502008-07-17 12:54:40 -04001776
1777 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001778 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -05001779 return ret ? ret : pending_ret;
1780}
1781
Chris Mason925baed2008-06-25 16:01:30 -04001782int btrfs_free_extent(struct btrfs_trans_handle *trans,
1783 struct btrfs_root *root, u64 bytenr,
1784 u64 num_bytes, u64 root_objectid,
1785 u64 ref_generation, u64 owner_objectid,
1786 u64 owner_offset, int pin)
1787{
1788 int ret;
1789
1790 maybe_lock_mutex(root);
1791 ret = __btrfs_free_extent(trans, root, bytenr, num_bytes,
1792 root_objectid, ref_generation,
1793 owner_objectid, owner_offset, pin);
1794 maybe_unlock_mutex(root);
1795 return ret;
1796}
1797
Chris Mason87ee04e2007-11-30 11:30:34 -05001798static u64 stripe_align(struct btrfs_root *root, u64 val)
1799{
1800 u64 mask = ((u64)root->stripesize - 1);
1801 u64 ret = (val + mask) & ~mask;
1802 return ret;
1803}
1804
Chris Masonfec577f2007-02-26 10:40:21 -05001805/*
1806 * walks the btree of allocated extents and find a hole of a given size.
1807 * The key ins is changed to record the hole:
1808 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04001809 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05001810 * ins->offset == number of blocks
1811 * Any available blocks before search_start are skipped.
1812 */
Chris Mason98ed5172008-01-03 10:01:48 -05001813static int noinline find_free_extent(struct btrfs_trans_handle *trans,
1814 struct btrfs_root *orig_root,
1815 u64 num_bytes, u64 empty_size,
1816 u64 search_start, u64 search_end,
1817 u64 hint_byte, struct btrfs_key *ins,
1818 u64 exclude_start, u64 exclude_nr,
1819 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001820{
Chris Mason87ee04e2007-11-30 11:30:34 -05001821 int ret;
Chris Masona061fc82008-05-07 11:43:44 -04001822 u64 orig_search_start;
Chris Mason9f5fae22007-03-20 14:38:32 -04001823 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -04001824 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001825 u64 total_needed = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04001826 u64 *last_ptr = NULL;
Chris Masonbe08c1b2007-05-03 09:06:49 -04001827 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -04001828 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -04001829 int wrapped = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04001830 int chunk_alloc_done = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001831 int empty_cluster = 2 * 1024 * 1024;
Chris Mason0ef3e662008-05-24 14:04:53 -04001832 int allowed_chunk_alloc = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001833
Chris Masondb945352007-10-15 16:15:53 -04001834 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04001835 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
1836
Chris Mason0ef3e662008-05-24 14:04:53 -04001837 if (orig_root->ref_cows || empty_size)
1838 allowed_chunk_alloc = 1;
1839
Chris Mason239b14b2008-03-24 15:02:07 -04001840 if (data & BTRFS_BLOCK_GROUP_METADATA) {
1841 last_ptr = &root->fs_info->last_alloc;
Chris Mason8790d502008-04-03 16:29:03 -04001842 empty_cluster = 256 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04001843 }
1844
1845 if ((data & BTRFS_BLOCK_GROUP_DATA) && btrfs_test_opt(root, SSD)) {
1846 last_ptr = &root->fs_info->last_data_alloc;
1847 }
1848
1849 if (last_ptr) {
1850 if (*last_ptr)
1851 hint_byte = *last_ptr;
1852 else {
1853 empty_size += empty_cluster;
1854 }
1855 }
1856
Chris Masona061fc82008-05-07 11:43:44 -04001857 search_start = max(search_start, first_logical_byte(root, 0));
1858 orig_search_start = search_start;
1859
Chris Mason7f93bf82008-03-24 15:01:28 -04001860 if (search_end == (u64)-1)
1861 search_end = btrfs_super_total_bytes(&info->super_copy);
Chris Mason0b86a832008-03-24 15:01:56 -04001862
Chris Masondb945352007-10-15 16:15:53 -04001863 if (hint_byte) {
Chris Mason0ef3e662008-05-24 14:04:53 -04001864 block_group = btrfs_lookup_first_block_group(info, hint_byte);
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001865 if (!block_group)
1866 hint_byte = search_start;
Chris Masonc286ac42008-07-22 23:06:41 -04001867 block_group = btrfs_find_block_group(root, block_group,
Chris Masondb945352007-10-15 16:15:53 -04001868 hint_byte, data, 1);
Chris Mason239b14b2008-03-24 15:02:07 -04001869 if (last_ptr && *last_ptr == 0 && block_group)
1870 hint_byte = block_group->key.objectid;
Chris Masonbe744172007-05-06 10:15:01 -04001871 } else {
Chris Masonc286ac42008-07-22 23:06:41 -04001872 block_group = btrfs_find_block_group(root,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001873 trans->block_group,
1874 search_start, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001875 }
Chris Mason239b14b2008-03-24 15:02:07 -04001876 search_start = max(search_start, hint_byte);
Chris Masonbe744172007-05-06 10:15:01 -04001877
Chris Mason6702ed42007-08-07 16:15:09 -04001878 total_needed += empty_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001879
Chris Masonbe744172007-05-06 10:15:01 -04001880check_failed:
Chris Mason70b043f2007-12-13 09:02:46 -05001881 if (!block_group) {
Chris Mason0ef3e662008-05-24 14:04:53 -04001882 block_group = btrfs_lookup_first_block_group(info,
1883 search_start);
Chris Mason70b043f2007-12-13 09:02:46 -05001884 if (!block_group)
Chris Mason0ef3e662008-05-24 14:04:53 -04001885 block_group = btrfs_lookup_first_block_group(info,
Chris Mason70b043f2007-12-13 09:02:46 -05001886 orig_search_start);
1887 }
Chris Mason0ef3e662008-05-24 14:04:53 -04001888 if (full_scan && !chunk_alloc_done) {
1889 if (allowed_chunk_alloc) {
1890 do_chunk_alloc(trans, root,
1891 num_bytes + 2 * 1024 * 1024, data, 1);
1892 allowed_chunk_alloc = 0;
1893 } else if (block_group && block_group_bits(block_group, data)) {
1894 block_group->space_info->force_alloc = 1;
1895 }
1896 chunk_alloc_done = 1;
1897 }
Chris Mason0b86a832008-03-24 15:01:56 -04001898 ret = find_search_start(root, &block_group, &search_start,
1899 total_needed, data);
Chris Mason239b14b2008-03-24 15:02:07 -04001900 if (ret == -ENOSPC && last_ptr && *last_ptr) {
1901 *last_ptr = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04001902 block_group = btrfs_lookup_first_block_group(info,
1903 orig_search_start);
Chris Mason239b14b2008-03-24 15:02:07 -04001904 search_start = orig_search_start;
1905 ret = find_search_start(root, &block_group, &search_start,
1906 total_needed, data);
1907 }
1908 if (ret == -ENOSPC)
1909 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001910 if (ret)
1911 goto error;
1912
Chris Mason239b14b2008-03-24 15:02:07 -04001913 if (last_ptr && *last_ptr && search_start != *last_ptr) {
1914 *last_ptr = 0;
1915 if (!empty_size) {
1916 empty_size += empty_cluster;
1917 total_needed += empty_size;
1918 }
Chris Mason0ef3e662008-05-24 14:04:53 -04001919 block_group = btrfs_lookup_first_block_group(info,
Chris Mason239b14b2008-03-24 15:02:07 -04001920 orig_search_start);
1921 search_start = orig_search_start;
1922 ret = find_search_start(root, &block_group,
1923 &search_start, total_needed, data);
1924 if (ret == -ENOSPC)
1925 goto enospc;
1926 if (ret)
1927 goto error;
1928 }
1929
Chris Mason87ee04e2007-11-30 11:30:34 -05001930 search_start = stripe_align(root, search_start);
Chris Masonfec577f2007-02-26 10:40:21 -05001931 ins->objectid = search_start;
Chris Mason0b86a832008-03-24 15:01:56 -04001932 ins->offset = num_bytes;
Chris Masone37c9e62007-05-09 20:13:14 -04001933
Chris Masondb945352007-10-15 16:15:53 -04001934 if (ins->objectid + num_bytes >= search_end)
Chris Masoncf675822007-09-17 11:00:51 -04001935 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001936
1937 if (ins->objectid + num_bytes >
1938 block_group->key.objectid + block_group->key.offset) {
Chris Masone19caa52007-10-15 16:17:44 -04001939 search_start = block_group->key.objectid +
1940 block_group->key.offset;
1941 goto new_group;
1942 }
Chris Mason0b86a832008-03-24 15:01:56 -04001943
Chris Mason1a5bc162007-10-15 16:15:26 -04001944 if (test_range_bit(&info->extent_ins, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001945 ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
1946 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001947 goto new_group;
1948 }
Chris Mason0b86a832008-03-24 15:01:56 -04001949
Chris Mason1a5bc162007-10-15 16:15:26 -04001950 if (test_range_bit(&info->pinned_extents, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001951 ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
1952 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001953 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05001954 }
Chris Mason0b86a832008-03-24 15:01:56 -04001955
Chris Masondb945352007-10-15 16:15:53 -04001956 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
Chris Masonf2654de2007-06-26 12:20:46 -04001957 ins->objectid < exclude_start + exclude_nr)) {
1958 search_start = exclude_start + exclude_nr;
1959 goto new_group;
1960 }
Chris Mason0b86a832008-03-24 15:01:56 -04001961
Chris Mason6324fbf2008-03-24 15:01:59 -04001962 if (!(data & BTRFS_BLOCK_GROUP_DATA)) {
Chris Mason5276aed2007-06-11 21:33:38 -04001963 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Mason26b80032007-08-08 20:17:12 -04001964 if (block_group)
1965 trans->block_group = block_group;
Chris Masoncd1bc462007-04-27 10:08:34 -04001966 }
Chris Masondb945352007-10-15 16:15:53 -04001967 ins->offset = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04001968 if (last_ptr) {
1969 *last_ptr = ins->objectid + ins->offset;
1970 if (*last_ptr ==
1971 btrfs_super_total_bytes(&root->fs_info->super_copy)) {
1972 *last_ptr = 0;
1973 }
1974 }
Chris Masonfec577f2007-02-26 10:40:21 -05001975 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04001976
1977new_group:
Chris Masondb945352007-10-15 16:15:53 -04001978 if (search_start + num_bytes >= search_end) {
Chris Masoncf675822007-09-17 11:00:51 -04001979enospc:
Chris Masonbe744172007-05-06 10:15:01 -04001980 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04001981 if (full_scan) {
1982 ret = -ENOSPC;
1983 goto error;
1984 }
Chris Mason6702ed42007-08-07 16:15:09 -04001985 if (wrapped) {
1986 if (!full_scan)
1987 total_needed -= empty_size;
Chris Masonfbdc7622007-05-30 10:22:12 -04001988 full_scan = 1;
Chris Mason6702ed42007-08-07 16:15:09 -04001989 } else
Chris Masonfbdc7622007-05-30 10:22:12 -04001990 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04001991 }
Chris Mason0ef3e662008-05-24 14:04:53 -04001992 block_group = btrfs_lookup_first_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04001993 cond_resched();
Chris Masonc286ac42008-07-22 23:06:41 -04001994 block_group = btrfs_find_block_group(root, block_group,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001995 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04001996 goto check_failed;
1997
Chris Mason0f70abe2007-02-28 16:46:22 -05001998error:
Chris Mason0f70abe2007-02-28 16:46:22 -05001999 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05002000}
Chris Masonec44a352008-04-28 15:29:52 -04002001
Chris Masone6dcd2d2008-07-17 12:53:50 -04002002static int __btrfs_reserve_extent(struct btrfs_trans_handle *trans,
2003 struct btrfs_root *root,
2004 u64 num_bytes, u64 min_alloc_size,
2005 u64 empty_size, u64 hint_byte,
2006 u64 search_end, struct btrfs_key *ins,
2007 u64 data)
Chris Masonfec577f2007-02-26 10:40:21 -05002008{
2009 int ret;
Chris Masonfbdc7622007-05-30 10:22:12 -04002010 u64 search_start = 0;
Chris Mason8790d502008-04-03 16:29:03 -04002011 u64 alloc_profile;
Chris Mason1261ec42007-03-20 20:35:03 -04002012 struct btrfs_fs_info *info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04002013
Chris Mason6324fbf2008-03-24 15:01:59 -04002014 if (data) {
Chris Mason8790d502008-04-03 16:29:03 -04002015 alloc_profile = info->avail_data_alloc_bits &
2016 info->data_alloc_profile;
2017 data = BTRFS_BLOCK_GROUP_DATA | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04002018 } else if (root == root->fs_info->chunk_root) {
Chris Mason8790d502008-04-03 16:29:03 -04002019 alloc_profile = info->avail_system_alloc_bits &
2020 info->system_alloc_profile;
2021 data = BTRFS_BLOCK_GROUP_SYSTEM | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04002022 } else {
Chris Mason8790d502008-04-03 16:29:03 -04002023 alloc_profile = info->avail_metadata_alloc_bits &
2024 info->metadata_alloc_profile;
2025 data = BTRFS_BLOCK_GROUP_METADATA | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04002026 }
Chris Mason98d20f62008-04-14 09:46:10 -04002027again:
Chris Masona061fc82008-05-07 11:43:44 -04002028 data = reduce_alloc_profile(root, data);
Chris Mason0ef3e662008-05-24 14:04:53 -04002029 /*
2030 * the only place that sets empty_size is btrfs_realloc_node, which
2031 * is not called recursively on allocations
2032 */
2033 if (empty_size || root->ref_cows) {
Chris Mason593060d2008-03-25 16:50:33 -04002034 if (!(data & BTRFS_BLOCK_GROUP_METADATA)) {
Chris Mason6324fbf2008-03-24 15:01:59 -04002035 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0ef3e662008-05-24 14:04:53 -04002036 2 * 1024 * 1024,
2037 BTRFS_BLOCK_GROUP_METADATA |
2038 (info->metadata_alloc_profile &
2039 info->avail_metadata_alloc_bits), 0);
Chris Mason6324fbf2008-03-24 15:01:59 -04002040 BUG_ON(ret);
2041 }
2042 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0ef3e662008-05-24 14:04:53 -04002043 num_bytes + 2 * 1024 * 1024, data, 0);
Chris Mason6324fbf2008-03-24 15:01:59 -04002044 BUG_ON(ret);
2045 }
Chris Mason0b86a832008-03-24 15:01:56 -04002046
Chris Masondb945352007-10-15 16:15:53 -04002047 WARN_ON(num_bytes < root->sectorsize);
2048 ret = find_free_extent(trans, root, num_bytes, empty_size,
2049 search_start, search_end, hint_byte, ins,
Chris Mason26b80032007-08-08 20:17:12 -04002050 trans->alloc_exclude_start,
2051 trans->alloc_exclude_nr, data);
Chris Mason3b951512008-04-17 11:29:12 -04002052
Chris Mason98d20f62008-04-14 09:46:10 -04002053 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
2054 num_bytes = num_bytes >> 1;
2055 num_bytes = max(num_bytes, min_alloc_size);
Chris Mason0ef3e662008-05-24 14:04:53 -04002056 do_chunk_alloc(trans, root->fs_info->extent_root,
2057 num_bytes, data, 1);
Chris Mason98d20f62008-04-14 09:46:10 -04002058 goto again;
2059 }
Chris Masonec44a352008-04-28 15:29:52 -04002060 if (ret) {
2061 printk("allocation failed flags %Lu\n", data);
Chris Mason925baed2008-06-25 16:01:30 -04002062 BUG();
Chris Mason925baed2008-06-25 16:01:30 -04002063 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002064 clear_extent_dirty(&root->fs_info->free_space_cache,
2065 ins->objectid, ins->objectid + ins->offset - 1,
2066 GFP_NOFS);
2067 return 0;
2068}
2069
2070int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
2071 struct btrfs_root *root,
2072 u64 num_bytes, u64 min_alloc_size,
2073 u64 empty_size, u64 hint_byte,
2074 u64 search_end, struct btrfs_key *ins,
2075 u64 data)
2076{
2077 int ret;
2078 maybe_lock_mutex(root);
2079 ret = __btrfs_reserve_extent(trans, root, num_bytes, min_alloc_size,
2080 empty_size, hint_byte, search_end, ins,
2081 data);
2082 maybe_unlock_mutex(root);
2083 return ret;
2084}
2085
2086static int __btrfs_alloc_reserved_extent(struct btrfs_trans_handle *trans,
2087 struct btrfs_root *root,
2088 u64 root_objectid, u64 ref_generation,
2089 u64 owner, u64 owner_offset,
2090 struct btrfs_key *ins)
2091{
2092 int ret;
2093 int pending_ret;
2094 u64 super_used;
2095 u64 root_used;
2096 u64 num_bytes = ins->offset;
2097 u32 sizes[2];
2098 struct btrfs_fs_info *info = root->fs_info;
2099 struct btrfs_root *extent_root = info->extent_root;
2100 struct btrfs_extent_item *extent_item;
2101 struct btrfs_extent_ref *ref;
2102 struct btrfs_path *path;
2103 struct btrfs_key keys[2];
Chris Masonf2654de2007-06-26 12:20:46 -04002104
Josef Bacik58176a92007-08-29 15:47:34 -04002105 /* block accounting for super block */
Chris Masona2135012008-06-25 16:01:30 -04002106 spin_lock_irq(&info->delalloc_lock);
Chris Masondb945352007-10-15 16:15:53 -04002107 super_used = btrfs_super_bytes_used(&info->super_copy);
2108 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
Chris Masona2135012008-06-25 16:01:30 -04002109 spin_unlock_irq(&info->delalloc_lock);
Chris Mason26b80032007-08-08 20:17:12 -04002110
Josef Bacik58176a92007-08-29 15:47:34 -04002111 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04002112 root_used = btrfs_root_used(&root->root_item);
2113 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04002114
Chris Mason26b80032007-08-08 20:17:12 -04002115 if (root == extent_root) {
Chris Mason1a5bc162007-10-15 16:15:26 -04002116 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
2117 ins->objectid + ins->offset - 1,
2118 EXTENT_LOCKED, GFP_NOFS);
Chris Mason26b80032007-08-08 20:17:12 -04002119 goto update_block;
2120 }
2121
Chris Mason47e4bb92008-02-01 14:51:59 -05002122 memcpy(&keys[0], ins, sizeof(*ins));
2123 keys[1].offset = hash_extent_ref(root_objectid, ref_generation,
2124 owner, owner_offset);
2125 keys[1].objectid = ins->objectid;
2126 keys[1].type = BTRFS_EXTENT_REF_KEY;
2127 sizes[0] = sizeof(*extent_item);
2128 sizes[1] = sizeof(*ref);
Chris Mason7bb86312007-12-11 09:25:06 -05002129
2130 path = btrfs_alloc_path();
2131 BUG_ON(!path);
Chris Mason47e4bb92008-02-01 14:51:59 -05002132
2133 ret = btrfs_insert_empty_items(trans, extent_root, path, keys,
2134 sizes, 2);
Chris Mason26b80032007-08-08 20:17:12 -04002135
Chris Masonccd467d2007-06-28 15:57:36 -04002136 BUG_ON(ret);
Chris Mason47e4bb92008-02-01 14:51:59 -05002137 extent_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2138 struct btrfs_extent_item);
2139 btrfs_set_extent_refs(path->nodes[0], extent_item, 1);
2140 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
2141 struct btrfs_extent_ref);
2142
2143 btrfs_set_ref_root(path->nodes[0], ref, root_objectid);
2144 btrfs_set_ref_generation(path->nodes[0], ref, ref_generation);
2145 btrfs_set_ref_objectid(path->nodes[0], ref, owner);
2146 btrfs_set_ref_offset(path->nodes[0], ref, owner_offset);
2147
2148 btrfs_mark_buffer_dirty(path->nodes[0]);
2149
2150 trans->alloc_exclude_start = 0;
2151 trans->alloc_exclude_nr = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05002152 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04002153 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04002154 pending_ret = del_pending_extents(trans, extent_root);
Chris Masonf510cfe2007-10-15 16:14:48 -04002155
Chris Mason925baed2008-06-25 16:01:30 -04002156 if (ret)
2157 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -04002158 if (pending_ret) {
Chris Mason925baed2008-06-25 16:01:30 -04002159 ret = pending_ret;
2160 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -04002161 }
Chris Mason26b80032007-08-08 20:17:12 -04002162
2163update_block:
Chris Mason0b86a832008-03-24 15:01:56 -04002164 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0);
Chris Masonf5947062008-02-04 10:10:13 -05002165 if (ret) {
2166 printk("update block group failed for %Lu %Lu\n",
2167 ins->objectid, ins->offset);
2168 BUG();
2169 }
Chris Mason925baed2008-06-25 16:01:30 -04002170out:
Chris Masone6dcd2d2008-07-17 12:53:50 -04002171 return ret;
2172}
2173
2174int btrfs_alloc_reserved_extent(struct btrfs_trans_handle *trans,
2175 struct btrfs_root *root,
2176 u64 root_objectid, u64 ref_generation,
2177 u64 owner, u64 owner_offset,
2178 struct btrfs_key *ins)
2179{
2180 int ret;
2181 maybe_lock_mutex(root);
2182 ret = __btrfs_alloc_reserved_extent(trans, root, root_objectid,
2183 ref_generation, owner,
2184 owner_offset, ins);
2185 maybe_unlock_mutex(root);
2186 return ret;
2187}
2188/*
2189 * finds a free extent and does all the dirty work required for allocation
2190 * returns the key for the extent through ins, and a tree buffer for
2191 * the first block of the extent through buf.
2192 *
2193 * returns 0 if everything worked, non-zero otherwise.
2194 */
2195int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
2196 struct btrfs_root *root,
2197 u64 num_bytes, u64 min_alloc_size,
2198 u64 root_objectid, u64 ref_generation,
2199 u64 owner, u64 owner_offset,
2200 u64 empty_size, u64 hint_byte,
2201 u64 search_end, struct btrfs_key *ins, u64 data)
2202{
2203 int ret;
2204
2205 maybe_lock_mutex(root);
2206
2207 ret = __btrfs_reserve_extent(trans, root, num_bytes,
2208 min_alloc_size, empty_size, hint_byte,
2209 search_end, ins, data);
2210 BUG_ON(ret);
2211 ret = __btrfs_alloc_reserved_extent(trans, root, root_objectid,
2212 ref_generation, owner,
2213 owner_offset, ins);
2214 BUG_ON(ret);
2215
Chris Mason925baed2008-06-25 16:01:30 -04002216 maybe_unlock_mutex(root);
2217 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05002218}
Chris Masonfec577f2007-02-26 10:40:21 -05002219/*
2220 * helper function to allocate a block for a given tree
2221 * returns the tree buffer or NULL.
2222 */
Chris Mason5f39d392007-10-15 16:14:19 -04002223struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -04002224 struct btrfs_root *root,
Chris Mason7bb86312007-12-11 09:25:06 -05002225 u32 blocksize,
Chris Mason7bb86312007-12-11 09:25:06 -05002226 u64 root_objectid,
2227 u64 ref_generation,
2228 u64 first_objectid,
2229 int level,
2230 u64 hint,
Chris Mason5f39d392007-10-15 16:14:19 -04002231 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05002232{
Chris Masone2fa7222007-03-12 16:22:34 -04002233 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05002234 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04002235 struct extent_buffer *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05002236
Chris Mason98d20f62008-04-14 09:46:10 -04002237 ret = btrfs_alloc_extent(trans, root, blocksize, blocksize,
Chris Mason7bb86312007-12-11 09:25:06 -05002238 root_objectid, ref_generation,
Chris Masonf6dbff52007-12-13 11:13:32 -05002239 level, first_objectid, empty_size, hint,
Chris Masondb945352007-10-15 16:15:53 -04002240 (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05002241 if (ret) {
Chris Mason54aa1f42007-06-22 14:16:25 -04002242 BUG_ON(ret > 0);
2243 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05002244 }
Chris Masondb945352007-10-15 16:15:53 -04002245 buf = btrfs_find_create_tree_block(root, ins.objectid, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04002246 if (!buf) {
Chris Mason7bb86312007-12-11 09:25:06 -05002247 btrfs_free_extent(trans, root, ins.objectid, blocksize,
2248 root->root_key.objectid, ref_generation,
2249 0, 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04002250 return ERR_PTR(-ENOMEM);
2251 }
Chris Mason55c69072008-01-09 15:55:33 -05002252 btrfs_set_header_generation(buf, trans->transid);
Chris Mason925baed2008-06-25 16:01:30 -04002253 btrfs_tree_lock(buf);
Chris Mason55c69072008-01-09 15:55:33 -05002254 clean_tree_block(trans, root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04002255 btrfs_set_buffer_uptodate(buf);
Chris Mason55c69072008-01-09 15:55:33 -05002256
2257 if (PageDirty(buf->first_page)) {
2258 printk("page %lu dirty\n", buf->first_page->index);
2259 WARN_ON(1);
2260 }
2261
Chris Mason5f39d392007-10-15 16:14:19 -04002262 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
2263 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002264 trans->blocks_used++;
Chris Masonfec577f2007-02-26 10:40:21 -05002265 return buf;
2266}
Chris Masona28ec192007-03-06 20:08:01 -05002267
Yan Zheng31153d82008-07-28 15:32:19 -04002268static int noinline drop_leaf_ref_no_cache(struct btrfs_trans_handle *trans,
2269 struct btrfs_root *root,
2270 struct extent_buffer *leaf)
Chris Mason6407bf62007-03-27 06:33:00 -04002271{
Chris Mason7bb86312007-12-11 09:25:06 -05002272 u64 leaf_owner;
2273 u64 leaf_generation;
Chris Mason5f39d392007-10-15 16:14:19 -04002274 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04002275 struct btrfs_file_extent_item *fi;
2276 int i;
2277 int nritems;
2278 int ret;
2279
Chris Mason5f39d392007-10-15 16:14:19 -04002280 BUG_ON(!btrfs_is_leaf(leaf));
2281 nritems = btrfs_header_nritems(leaf);
Chris Mason7bb86312007-12-11 09:25:06 -05002282 leaf_owner = btrfs_header_owner(leaf);
2283 leaf_generation = btrfs_header_generation(leaf);
2284
Chris Mason4a096752008-07-21 10:29:44 -04002285 mutex_unlock(&root->fs_info->alloc_mutex);
2286
Chris Mason6407bf62007-03-27 06:33:00 -04002287 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04002288 u64 disk_bytenr;
Chris Masone34a5b42008-07-22 12:08:37 -04002289 cond_resched();
Chris Mason5f39d392007-10-15 16:14:19 -04002290
2291 btrfs_item_key_to_cpu(leaf, &key, i);
2292 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04002293 continue;
2294 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002295 if (btrfs_file_extent_type(leaf, fi) ==
2296 BTRFS_FILE_EXTENT_INLINE)
Chris Mason236454d2007-04-19 13:37:44 -04002297 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04002298 /*
2299 * FIXME make sure to insert a trans record that
2300 * repeats the snapshot del on crash
2301 */
Chris Masondb945352007-10-15 16:15:53 -04002302 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
2303 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04002304 continue;
Chris Mason4a096752008-07-21 10:29:44 -04002305
2306 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04002307 ret = __btrfs_free_extent(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002308 btrfs_file_extent_disk_num_bytes(leaf, fi),
2309 leaf_owner, leaf_generation,
2310 key.objectid, key.offset, 0);
Chris Mason4a096752008-07-21 10:29:44 -04002311 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason6407bf62007-03-27 06:33:00 -04002312 BUG_ON(ret);
2313 }
Chris Mason4a096752008-07-21 10:29:44 -04002314
2315 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason6407bf62007-03-27 06:33:00 -04002316 return 0;
2317}
2318
Yan Zheng31153d82008-07-28 15:32:19 -04002319static int noinline drop_leaf_ref(struct btrfs_trans_handle *trans,
2320 struct btrfs_root *root,
2321 struct btrfs_leaf_ref *ref)
2322{
2323 int i;
2324 int ret;
2325 struct btrfs_extent_info *info = ref->extents;
2326
2327 mutex_unlock(&root->fs_info->alloc_mutex);
2328 for (i = 0; i < ref->nritems; i++) {
2329 mutex_lock(&root->fs_info->alloc_mutex);
2330 ret = __btrfs_free_extent(trans, root,
2331 info->bytenr, info->num_bytes,
2332 ref->owner, ref->generation,
2333 info->objectid, info->offset, 0);
2334 mutex_unlock(&root->fs_info->alloc_mutex);
2335 BUG_ON(ret);
2336 info++;
2337 }
2338 mutex_lock(&root->fs_info->alloc_mutex);
2339
2340 return 0;
2341}
2342
Chris Mason98ed5172008-01-03 10:01:48 -05002343static void noinline reada_walk_down(struct btrfs_root *root,
Chris Masonbea495e2008-01-24 16:13:14 -05002344 struct extent_buffer *node,
2345 int slot)
Chris Masone0115992007-06-19 16:23:05 -04002346{
Chris Masondb945352007-10-15 16:15:53 -04002347 u64 bytenr;
Chris Masonbea495e2008-01-24 16:13:14 -05002348 u64 last = 0;
2349 u32 nritems;
Chris Masone0115992007-06-19 16:23:05 -04002350 u32 refs;
Chris Masondb945352007-10-15 16:15:53 -04002351 u32 blocksize;
Chris Masonbea495e2008-01-24 16:13:14 -05002352 int ret;
2353 int i;
2354 int level;
2355 int skipped = 0;
Chris Masone0115992007-06-19 16:23:05 -04002356
Chris Mason5f39d392007-10-15 16:14:19 -04002357 nritems = btrfs_header_nritems(node);
Chris Masondb945352007-10-15 16:15:53 -04002358 level = btrfs_header_level(node);
Chris Masonbea495e2008-01-24 16:13:14 -05002359 if (level)
2360 return;
2361
2362 for (i = slot; i < nritems && skipped < 32; i++) {
Chris Masondb945352007-10-15 16:15:53 -04002363 bytenr = btrfs_node_blockptr(node, i);
Chris Masonbea495e2008-01-24 16:13:14 -05002364 if (last && ((bytenr > last && bytenr - last > 32 * 1024) ||
2365 (last > bytenr && last - bytenr > 32 * 1024))) {
2366 skipped++;
Chris Masone0115992007-06-19 16:23:05 -04002367 continue;
Chris Masonbea495e2008-01-24 16:13:14 -05002368 }
2369 blocksize = btrfs_level_size(root, level - 1);
2370 if (i != slot) {
2371 ret = lookup_extent_ref(NULL, root, bytenr,
2372 blocksize, &refs);
2373 BUG_ON(ret);
2374 if (refs != 1) {
2375 skipped++;
2376 continue;
2377 }
2378 }
Chris Masonca7a79a2008-05-12 12:59:19 -04002379 ret = readahead_tree_block(root, bytenr, blocksize,
2380 btrfs_node_ptr_generation(node, i));
Chris Masonbea495e2008-01-24 16:13:14 -05002381 last = bytenr + blocksize;
Chris Mason409eb952007-08-08 20:17:12 -04002382 cond_resched();
Chris Masone0115992007-06-19 16:23:05 -04002383 if (ret)
2384 break;
2385 }
2386}
2387
Chris Mason333db942008-06-25 16:01:30 -04002388int drop_snap_lookup_refcount(struct btrfs_root *root, u64 start, u64 len,
2389 u32 *refs)
2390{
Chris Mason017e5362008-07-28 15:32:51 -04002391 int ret;
Chris Mason333db942008-06-25 16:01:30 -04002392 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason017e5362008-07-28 15:32:51 -04002393 ret = lookup_extent_ref(NULL, root, start, len, refs);
Chris Masone7a84562008-06-25 16:01:31 -04002394 cond_resched();
Chris Mason333db942008-06-25 16:01:30 -04002395 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason017e5362008-07-28 15:32:51 -04002396 return ret;
Chris Mason333db942008-06-25 16:01:30 -04002397}
2398
2399/*
Chris Mason9aca1d52007-03-13 11:09:37 -04002400 * helper function for drop_snapshot, this walks down the tree dropping ref
2401 * counts as it goes.
2402 */
Chris Mason98ed5172008-01-03 10:01:48 -05002403static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
2404 struct btrfs_root *root,
2405 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002406{
Chris Mason7bb86312007-12-11 09:25:06 -05002407 u64 root_owner;
2408 u64 root_gen;
2409 u64 bytenr;
Chris Masonca7a79a2008-05-12 12:59:19 -04002410 u64 ptr_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04002411 struct extent_buffer *next;
2412 struct extent_buffer *cur;
Chris Mason7bb86312007-12-11 09:25:06 -05002413 struct extent_buffer *parent;
Yan Zheng31153d82008-07-28 15:32:19 -04002414 struct btrfs_leaf_ref *ref;
Chris Masondb945352007-10-15 16:15:53 -04002415 u32 blocksize;
Chris Mason20524f02007-03-10 06:35:47 -05002416 int ret;
2417 u32 refs;
2418
Chris Mason925baed2008-06-25 16:01:30 -04002419 mutex_lock(&root->fs_info->alloc_mutex);
2420
Chris Mason5caf2a02007-04-02 11:20:42 -04002421 WARN_ON(*level < 0);
2422 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason333db942008-06-25 16:01:30 -04002423 ret = drop_snap_lookup_refcount(root, path->nodes[*level]->start,
Chris Masondb945352007-10-15 16:15:53 -04002424 path->nodes[*level]->len, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05002425 BUG_ON(ret);
2426 if (refs > 1)
2427 goto out;
Chris Masone0115992007-06-19 16:23:05 -04002428
Chris Mason9aca1d52007-03-13 11:09:37 -04002429 /*
2430 * walk down to the last node level and free all the leaves
2431 */
Chris Mason6407bf62007-03-27 06:33:00 -04002432 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002433 WARN_ON(*level < 0);
2434 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05002435 cur = path->nodes[*level];
Chris Masone0115992007-06-19 16:23:05 -04002436
Chris Mason5f39d392007-10-15 16:14:19 -04002437 if (btrfs_header_level(cur) != *level)
Chris Mason2c90e5d2007-04-02 10:50:19 -04002438 WARN_ON(1);
Chris Masone0115992007-06-19 16:23:05 -04002439
Chris Mason7518a232007-03-12 12:01:18 -04002440 if (path->slots[*level] >=
Chris Mason5f39d392007-10-15 16:14:19 -04002441 btrfs_header_nritems(cur))
Chris Mason20524f02007-03-10 06:35:47 -05002442 break;
Chris Mason6407bf62007-03-27 06:33:00 -04002443 if (*level == 0) {
Yan Zheng31153d82008-07-28 15:32:19 -04002444 ret = drop_leaf_ref_no_cache(trans, root, cur);
Chris Mason6407bf62007-03-27 06:33:00 -04002445 BUG_ON(ret);
2446 break;
2447 }
Chris Masondb945352007-10-15 16:15:53 -04002448 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
Chris Masonca7a79a2008-05-12 12:59:19 -04002449 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
Chris Masondb945352007-10-15 16:15:53 -04002450 blocksize = btrfs_level_size(root, *level - 1);
Chris Mason925baed2008-06-25 16:01:30 -04002451
Chris Mason333db942008-06-25 16:01:30 -04002452 ret = drop_snap_lookup_refcount(root, bytenr, blocksize, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04002453 BUG_ON(ret);
2454 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002455 parent = path->nodes[*level];
2456 root_owner = btrfs_header_owner(parent);
2457 root_gen = btrfs_header_generation(parent);
Chris Mason20524f02007-03-10 06:35:47 -05002458 path->slots[*level]++;
Chris Mason925baed2008-06-25 16:01:30 -04002459 ret = __btrfs_free_extent(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002460 blocksize, root_owner,
2461 root_gen, 0, 0, 1);
Chris Mason20524f02007-03-10 06:35:47 -05002462 BUG_ON(ret);
2463 continue;
2464 }
Chris Mason017e5362008-07-28 15:32:51 -04002465
Yan Zheng31153d82008-07-28 15:32:19 -04002466 if (*level == 1) {
2467 struct btrfs_key key;
2468 btrfs_node_key_to_cpu(cur, &key, path->slots[*level]);
Chris Mason017e5362008-07-28 15:32:51 -04002469 ref = btrfs_lookup_leaf_ref(root, bytenr);
Yan Zheng31153d82008-07-28 15:32:19 -04002470 if (ref) {
2471 ret = drop_leaf_ref(trans, root, ref);
2472 BUG_ON(ret);
2473 btrfs_remove_leaf_ref(root, ref);
2474 btrfs_free_leaf_ref(ref);
2475 *level = 0;
2476 break;
2477 }
2478 }
Chris Masondb945352007-10-15 16:15:53 -04002479 next = btrfs_find_tree_block(root, bytenr, blocksize);
Chris Mason1259ab72008-05-12 13:39:03 -04002480 if (!next || !btrfs_buffer_uptodate(next, ptr_gen)) {
Chris Mason5f39d392007-10-15 16:14:19 -04002481 free_extent_buffer(next);
Chris Mason333db942008-06-25 16:01:30 -04002482 mutex_unlock(&root->fs_info->alloc_mutex);
2483
Chris Masona74a4b92008-06-25 16:01:31 -04002484 if (path->slots[*level] == 0)
2485 reada_walk_down(root, cur, path->slots[*level]);
Chris Masonca7a79a2008-05-12 12:59:19 -04002486 next = read_tree_block(root, bytenr, blocksize,
2487 ptr_gen);
Chris Masone7a84562008-06-25 16:01:31 -04002488 cond_resched();
Chris Mason925baed2008-06-25 16:01:30 -04002489 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason8790d502008-04-03 16:29:03 -04002490
2491 /* we've dropped the lock, double check */
Chris Masone6dcd2d2008-07-17 12:53:50 -04002492 ret = lookup_extent_ref(NULL, root, bytenr, blocksize,
2493 &refs);
Chris Masone9d0b132007-08-10 14:06:19 -04002494 BUG_ON(ret);
2495 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002496 parent = path->nodes[*level];
2497 root_owner = btrfs_header_owner(parent);
2498 root_gen = btrfs_header_generation(parent);
2499
Chris Masone9d0b132007-08-10 14:06:19 -04002500 path->slots[*level]++;
Chris Mason5f39d392007-10-15 16:14:19 -04002501 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04002502 ret = __btrfs_free_extent(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002503 blocksize,
2504 root_owner,
2505 root_gen, 0, 0, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04002506 BUG_ON(ret);
2507 continue;
2508 }
2509 }
Chris Mason5caf2a02007-04-02 11:20:42 -04002510 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04002511 if (path->nodes[*level-1])
Chris Mason5f39d392007-10-15 16:14:19 -04002512 free_extent_buffer(path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05002513 path->nodes[*level-1] = next;
Chris Mason5f39d392007-10-15 16:14:19 -04002514 *level = btrfs_header_level(next);
Chris Mason20524f02007-03-10 06:35:47 -05002515 path->slots[*level] = 0;
2516 }
2517out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002518 WARN_ON(*level < 0);
2519 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason7bb86312007-12-11 09:25:06 -05002520
2521 if (path->nodes[*level] == root->node) {
Chris Mason7bb86312007-12-11 09:25:06 -05002522 parent = path->nodes[*level];
Yan Zheng31153d82008-07-28 15:32:19 -04002523 bytenr = path->nodes[*level]->start;
Chris Mason7bb86312007-12-11 09:25:06 -05002524 } else {
2525 parent = path->nodes[*level + 1];
Yan Zheng31153d82008-07-28 15:32:19 -04002526 bytenr = btrfs_node_blockptr(parent, path->slots[*level + 1]);
Chris Mason7bb86312007-12-11 09:25:06 -05002527 }
2528
Yan Zheng31153d82008-07-28 15:32:19 -04002529 blocksize = btrfs_level_size(root, *level);
2530 root_owner = btrfs_header_owner(parent);
Chris Mason7bb86312007-12-11 09:25:06 -05002531 root_gen = btrfs_header_generation(parent);
Yan Zheng31153d82008-07-28 15:32:19 -04002532
2533 ret = __btrfs_free_extent(trans, root, bytenr, blocksize,
2534 root_owner, root_gen, 0, 0, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002535 free_extent_buffer(path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05002536 path->nodes[*level] = NULL;
2537 *level += 1;
2538 BUG_ON(ret);
Chris Mason925baed2008-06-25 16:01:30 -04002539 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masone7a84562008-06-25 16:01:31 -04002540 cond_resched();
Chris Mason20524f02007-03-10 06:35:47 -05002541 return 0;
2542}
2543
Chris Mason9aca1d52007-03-13 11:09:37 -04002544/*
2545 * helper for dropping snapshots. This walks back up the tree in the path
2546 * to find the first node higher up where we haven't yet gone through
2547 * all the slots
2548 */
Chris Mason98ed5172008-01-03 10:01:48 -05002549static int noinline walk_up_tree(struct btrfs_trans_handle *trans,
2550 struct btrfs_root *root,
2551 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002552{
Chris Mason7bb86312007-12-11 09:25:06 -05002553 u64 root_owner;
2554 u64 root_gen;
2555 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002556 int i;
2557 int slot;
2558 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04002559
Chris Mason234b63a2007-03-13 10:46:10 -04002560 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05002561 slot = path->slots[i];
Chris Mason5f39d392007-10-15 16:14:19 -04002562 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
2563 struct extent_buffer *node;
2564 struct btrfs_disk_key disk_key;
2565 node = path->nodes[i];
Chris Mason20524f02007-03-10 06:35:47 -05002566 path->slots[i]++;
2567 *level = i;
Chris Mason9f3a7422007-08-07 15:52:19 -04002568 WARN_ON(*level == 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002569 btrfs_node_key(node, &disk_key, path->slots[i]);
Chris Mason9f3a7422007-08-07 15:52:19 -04002570 memcpy(&root_item->drop_progress,
Chris Mason5f39d392007-10-15 16:14:19 -04002571 &disk_key, sizeof(disk_key));
Chris Mason9f3a7422007-08-07 15:52:19 -04002572 root_item->drop_level = i;
Chris Mason20524f02007-03-10 06:35:47 -05002573 return 0;
2574 } else {
Chris Mason7bb86312007-12-11 09:25:06 -05002575 if (path->nodes[*level] == root->node) {
2576 root_owner = root->root_key.objectid;
2577 root_gen =
2578 btrfs_header_generation(path->nodes[*level]);
2579 } else {
2580 struct extent_buffer *node;
2581 node = path->nodes[*level + 1];
2582 root_owner = btrfs_header_owner(node);
2583 root_gen = btrfs_header_generation(node);
2584 }
Chris Masone089f052007-03-16 16:20:31 -04002585 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002586 path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002587 path->nodes[*level]->len,
2588 root_owner, root_gen, 0, 0, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04002589 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002590 free_extent_buffer(path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04002591 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05002592 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05002593 }
2594 }
2595 return 1;
2596}
2597
Chris Mason9aca1d52007-03-13 11:09:37 -04002598/*
2599 * drop the reference count on the tree rooted at 'snap'. This traverses
2600 * the tree freeing any blocks that have a ref count of zero after being
2601 * decremented.
2602 */
Chris Masone089f052007-03-16 16:20:31 -04002603int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04002604 *root)
Chris Mason20524f02007-03-10 06:35:47 -05002605{
Chris Mason3768f362007-03-13 16:47:54 -04002606 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04002607 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05002608 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04002609 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05002610 int i;
2611 int orig_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002612 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002613
Chris Masona2135012008-06-25 16:01:30 -04002614 WARN_ON(!mutex_is_locked(&root->fs_info->drop_mutex));
Chris Mason5caf2a02007-04-02 11:20:42 -04002615 path = btrfs_alloc_path();
2616 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05002617
Chris Mason5f39d392007-10-15 16:14:19 -04002618 level = btrfs_header_level(root->node);
Chris Mason20524f02007-03-10 06:35:47 -05002619 orig_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002620 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2621 path->nodes[level] = root->node;
Chris Masonf510cfe2007-10-15 16:14:48 -04002622 extent_buffer_get(root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -04002623 path->slots[level] = 0;
2624 } else {
2625 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002626 struct btrfs_disk_key found_key;
2627 struct extent_buffer *node;
Chris Mason6702ed42007-08-07 16:15:09 -04002628
Chris Mason9f3a7422007-08-07 15:52:19 -04002629 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Chris Mason6702ed42007-08-07 16:15:09 -04002630 level = root_item->drop_level;
2631 path->lowest_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002632 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason6702ed42007-08-07 16:15:09 -04002633 if (wret < 0) {
Chris Mason9f3a7422007-08-07 15:52:19 -04002634 ret = wret;
2635 goto out;
2636 }
Chris Mason5f39d392007-10-15 16:14:19 -04002637 node = path->nodes[level];
2638 btrfs_node_key(node, &found_key, path->slots[level]);
2639 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2640 sizeof(found_key)));
Chris Mason7d9eb122008-07-08 14:19:17 -04002641 /*
2642 * unlock our path, this is safe because only this
2643 * function is allowed to delete this snapshot
2644 */
Chris Mason925baed2008-06-25 16:01:30 -04002645 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
2646 if (path->nodes[i] && path->locks[i]) {
2647 path->locks[i] = 0;
2648 btrfs_tree_unlock(path->nodes[i]);
2649 }
2650 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002651 }
Chris Mason20524f02007-03-10 06:35:47 -05002652 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002653 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002654 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002655 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002656 if (wret < 0)
2657 ret = wret;
2658
Chris Mason5caf2a02007-04-02 11:20:42 -04002659 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002660 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002661 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002662 if (wret < 0)
2663 ret = wret;
Chris Masone7a84562008-06-25 16:01:31 -04002664 if (trans->transaction->in_commit) {
2665 ret = -EAGAIN;
2666 break;
2667 }
Chris Mason017e5362008-07-28 15:32:51 -04002668 wake_up(&root->fs_info->transaction_throttle);
Chris Mason20524f02007-03-10 06:35:47 -05002669 }
Chris Mason83e15a22007-03-12 09:03:27 -04002670 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002671 if (path->nodes[i]) {
Chris Mason5f39d392007-10-15 16:14:19 -04002672 free_extent_buffer(path->nodes[i]);
Chris Mason0f827312007-10-15 16:18:56 -04002673 path->nodes[i] = NULL;
Chris Mason83e15a22007-03-12 09:03:27 -04002674 }
Chris Mason20524f02007-03-10 06:35:47 -05002675 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002676out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002677 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04002678 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05002679}
Chris Mason9078a3e2007-04-26 16:46:15 -04002680
Chris Masonbe744172007-05-06 10:15:01 -04002681int btrfs_free_block_groups(struct btrfs_fs_info *info)
2682{
Chris Masonf510cfe2007-10-15 16:14:48 -04002683 u64 start;
2684 u64 end;
Yanb97f9202007-11-01 11:28:41 -04002685 u64 ptr;
Chris Mason96b51792007-10-15 16:15:19 -04002686 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04002687
2688 mutex_lock(&info->alloc_mutex);
Chris Mason96b51792007-10-15 16:15:19 -04002689 while(1) {
2690 ret = find_first_extent_bit(&info->block_group_cache, 0,
2691 &start, &end, (unsigned int)-1);
2692 if (ret)
2693 break;
Yanb97f9202007-11-01 11:28:41 -04002694 ret = get_state_private(&info->block_group_cache, start, &ptr);
2695 if (!ret)
2696 kfree((void *)(unsigned long)ptr);
Chris Mason96b51792007-10-15 16:15:19 -04002697 clear_extent_bits(&info->block_group_cache, start,
2698 end, (unsigned int)-1, GFP_NOFS);
2699 }
Chris Masone37c9e62007-05-09 20:13:14 -04002700 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -04002701 ret = find_first_extent_bit(&info->free_space_cache, 0,
2702 &start, &end, EXTENT_DIRTY);
2703 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -04002704 break;
Chris Masonf510cfe2007-10-15 16:14:48 -04002705 clear_extent_dirty(&info->free_space_cache, start,
2706 end, GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04002707 }
Chris Mason925baed2008-06-25 16:01:30 -04002708 mutex_unlock(&info->alloc_mutex);
Chris Masonbe744172007-05-06 10:15:01 -04002709 return 0;
2710}
2711
Chris Mason8e7bf942008-04-28 09:02:36 -04002712static unsigned long calc_ra(unsigned long start, unsigned long last,
2713 unsigned long nr)
2714{
2715 return min(last, start + nr - 1);
2716}
2717
Chris Mason98ed5172008-01-03 10:01:48 -05002718static int noinline relocate_inode_pages(struct inode *inode, u64 start,
2719 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05002720{
2721 u64 page_start;
2722 u64 page_end;
Chris Masonedbd8d42007-12-21 16:27:24 -05002723 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05002724 unsigned long i;
2725 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05002726 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05002727 struct file_ra_state *ra;
Chris Mason8e7bf942008-04-28 09:02:36 -04002728 unsigned long total_read = 0;
2729 unsigned long ra_pages;
Chris Mason3eaa2882008-07-24 11:57:52 -04002730 struct btrfs_ordered_extent *ordered;
Chris Masona061fc82008-05-07 11:43:44 -04002731 struct btrfs_trans_handle *trans;
Chris Mason4313b392008-01-03 09:08:48 -05002732
2733 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002734
2735 mutex_lock(&inode->i_mutex);
Chris Mason4313b392008-01-03 09:08:48 -05002736 i = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05002737 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
2738
Chris Mason8e7bf942008-04-28 09:02:36 -04002739 ra_pages = BTRFS_I(inode)->root->fs_info->bdi.ra_pages;
2740
Chris Mason4313b392008-01-03 09:08:48 -05002741 file_ra_state_init(ra, inode->i_mapping);
Chris Masonedbd8d42007-12-21 16:27:24 -05002742
Chris Mason4313b392008-01-03 09:08:48 -05002743 for (; i <= last_index; i++) {
Chris Mason8e7bf942008-04-28 09:02:36 -04002744 if (total_read % ra_pages == 0) {
2745 btrfs_force_ra(inode->i_mapping, ra, NULL, i,
2746 calc_ra(i, last_index, ra_pages));
2747 }
2748 total_read++;
Chris Mason3eaa2882008-07-24 11:57:52 -04002749again:
2750 if (((u64)i << PAGE_CACHE_SHIFT) > i_size_read(inode))
Chris Masona061fc82008-05-07 11:43:44 -04002751 goto truncate_racing;
Chris Masonedbd8d42007-12-21 16:27:24 -05002752 page = grab_cache_page(inode->i_mapping, i);
Chris Masona061fc82008-05-07 11:43:44 -04002753 if (!page) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002754 goto out_unlock;
Chris Masona061fc82008-05-07 11:43:44 -04002755 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002756 if (!PageUptodate(page)) {
2757 btrfs_readpage(NULL, page);
2758 lock_page(page);
2759 if (!PageUptodate(page)) {
2760 unlock_page(page);
2761 page_cache_release(page);
2762 goto out_unlock;
2763 }
2764 }
Chris Masonec44a352008-04-28 15:29:52 -04002765 wait_on_page_writeback(page);
Chris Mason3eaa2882008-07-24 11:57:52 -04002766
Chris Masonedbd8d42007-12-21 16:27:24 -05002767 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2768 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002769 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002770
Chris Mason3eaa2882008-07-24 11:57:52 -04002771 ordered = btrfs_lookup_ordered_extent(inode, page_start);
2772 if (ordered) {
2773 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
2774 unlock_page(page);
2775 page_cache_release(page);
2776 btrfs_start_ordered_extent(inode, ordered, 1);
2777 btrfs_put_ordered_extent(ordered);
2778 goto again;
2779 }
2780 set_page_extent_mapped(page);
2781
2782
Chris Masond1310b22008-01-24 16:13:08 -05002783 set_extent_delalloc(io_tree, page_start,
Chris Masonedbd8d42007-12-21 16:27:24 -05002784 page_end, GFP_NOFS);
Chris Masona061fc82008-05-07 11:43:44 -04002785 set_page_dirty(page);
Chris Masonedbd8d42007-12-21 16:27:24 -05002786
Chris Masond1310b22008-01-24 16:13:08 -05002787 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002788 unlock_page(page);
2789 page_cache_release(page);
2790 }
2791
2792out_unlock:
Chris Mason3eaa2882008-07-24 11:57:52 -04002793 /* we have to start the IO in order to get the ordered extents
2794 * instantiated. This allows the relocation to code to wait
2795 * for all the ordered extents to hit the disk.
2796 *
2797 * Otherwise, it would constantly loop over the same extents
2798 * because the old ones don't get deleted until the IO is
2799 * started
2800 */
2801 btrfs_fdatawrite_range(inode->i_mapping, start, start + len - 1,
2802 WB_SYNC_NONE);
Chris Masonec44a352008-04-28 15:29:52 -04002803 kfree(ra);
Chris Masona061fc82008-05-07 11:43:44 -04002804 trans = btrfs_start_transaction(BTRFS_I(inode)->root, 1);
2805 if (trans) {
Chris Masona061fc82008-05-07 11:43:44 -04002806 btrfs_end_transaction(trans, BTRFS_I(inode)->root);
2807 mark_inode_dirty(inode);
2808 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002809 mutex_unlock(&inode->i_mutex);
2810 return 0;
Chris Masona061fc82008-05-07 11:43:44 -04002811
2812truncate_racing:
2813 vmtruncate(inode, inode->i_size);
2814 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
2815 total_read);
2816 goto out_unlock;
Chris Masonedbd8d42007-12-21 16:27:24 -05002817}
2818
Chris Mason4313b392008-01-03 09:08:48 -05002819/*
Chris Masonbf4ef672008-05-08 13:26:18 -04002820 * The back references tell us which tree holds a ref on a block,
2821 * but it is possible for the tree root field in the reference to
2822 * reflect the original root before a snapshot was made. In this
2823 * case we should search through all the children of a given root
2824 * to find potential holders of references on a block.
2825 *
2826 * Instead, we do something a little less fancy and just search
2827 * all the roots for a given key/block combination.
2828 */
2829static int find_root_for_ref(struct btrfs_root *root,
2830 struct btrfs_path *path,
2831 struct btrfs_key *key0,
2832 int level,
2833 int file_key,
2834 struct btrfs_root **found_root,
2835 u64 bytenr)
2836{
2837 struct btrfs_key root_location;
2838 struct btrfs_root *cur_root = *found_root;
2839 struct btrfs_file_extent_item *file_extent;
2840 u64 root_search_start = BTRFS_FS_TREE_OBJECTID;
2841 u64 found_bytenr;
2842 int ret;
Chris Masonbf4ef672008-05-08 13:26:18 -04002843
2844 root_location.offset = (u64)-1;
2845 root_location.type = BTRFS_ROOT_ITEM_KEY;
2846 path->lowest_level = level;
2847 path->reada = 0;
2848 while(1) {
2849 ret = btrfs_search_slot(NULL, cur_root, key0, path, 0, 0);
2850 found_bytenr = 0;
2851 if (ret == 0 && file_key) {
2852 struct extent_buffer *leaf = path->nodes[0];
2853 file_extent = btrfs_item_ptr(leaf, path->slots[0],
2854 struct btrfs_file_extent_item);
2855 if (btrfs_file_extent_type(leaf, file_extent) ==
2856 BTRFS_FILE_EXTENT_REG) {
2857 found_bytenr =
2858 btrfs_file_extent_disk_bytenr(leaf,
2859 file_extent);
2860 }
Chris Mason323da792008-05-09 11:46:48 -04002861 } else if (!file_key) {
Chris Masonbf4ef672008-05-08 13:26:18 -04002862 if (path->nodes[level])
2863 found_bytenr = path->nodes[level]->start;
2864 }
2865
Chris Masonbf4ef672008-05-08 13:26:18 -04002866 btrfs_release_path(cur_root, path);
2867
2868 if (found_bytenr == bytenr) {
2869 *found_root = cur_root;
2870 ret = 0;
2871 goto out;
2872 }
2873 ret = btrfs_search_root(root->fs_info->tree_root,
2874 root_search_start, &root_search_start);
2875 if (ret)
2876 break;
2877
2878 root_location.objectid = root_search_start;
2879 cur_root = btrfs_read_fs_root_no_name(root->fs_info,
2880 &root_location);
2881 if (!cur_root) {
2882 ret = 1;
2883 break;
2884 }
2885 }
2886out:
2887 path->lowest_level = 0;
2888 return ret;
2889}
2890
2891/*
Chris Mason4313b392008-01-03 09:08:48 -05002892 * note, this releases the path
2893 */
Chris Mason98ed5172008-01-03 10:01:48 -05002894static int noinline relocate_one_reference(struct btrfs_root *extent_root,
Chris Masonedbd8d42007-12-21 16:27:24 -05002895 struct btrfs_path *path,
Chris Mason0ef3e662008-05-24 14:04:53 -04002896 struct btrfs_key *extent_key,
2897 u64 *last_file_objectid,
2898 u64 *last_file_offset,
2899 u64 *last_file_root,
2900 u64 last_extent)
Chris Masonedbd8d42007-12-21 16:27:24 -05002901{
2902 struct inode *inode;
2903 struct btrfs_root *found_root;
Chris Masonbf4ef672008-05-08 13:26:18 -04002904 struct btrfs_key root_location;
2905 struct btrfs_key found_key;
Chris Mason4313b392008-01-03 09:08:48 -05002906 struct btrfs_extent_ref *ref;
2907 u64 ref_root;
2908 u64 ref_gen;
2909 u64 ref_objectid;
2910 u64 ref_offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05002911 int ret;
Chris Masonbf4ef672008-05-08 13:26:18 -04002912 int level;
Chris Masonedbd8d42007-12-21 16:27:24 -05002913
Chris Mason7d9eb122008-07-08 14:19:17 -04002914 WARN_ON(!mutex_is_locked(&extent_root->fs_info->alloc_mutex));
2915
Chris Mason4313b392008-01-03 09:08:48 -05002916 ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
2917 struct btrfs_extent_ref);
2918 ref_root = btrfs_ref_root(path->nodes[0], ref);
2919 ref_gen = btrfs_ref_generation(path->nodes[0], ref);
2920 ref_objectid = btrfs_ref_objectid(path->nodes[0], ref);
2921 ref_offset = btrfs_ref_offset(path->nodes[0], ref);
2922 btrfs_release_path(extent_root, path);
2923
Chris Masonbf4ef672008-05-08 13:26:18 -04002924 root_location.objectid = ref_root;
Chris Masonedbd8d42007-12-21 16:27:24 -05002925 if (ref_gen == 0)
Chris Masonbf4ef672008-05-08 13:26:18 -04002926 root_location.offset = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002927 else
Chris Masonbf4ef672008-05-08 13:26:18 -04002928 root_location.offset = (u64)-1;
2929 root_location.type = BTRFS_ROOT_ITEM_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05002930
2931 found_root = btrfs_read_fs_root_no_name(extent_root->fs_info,
Chris Masonbf4ef672008-05-08 13:26:18 -04002932 &root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002933 BUG_ON(!found_root);
Chris Mason7d9eb122008-07-08 14:19:17 -04002934 mutex_unlock(&extent_root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05002935
2936 if (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
Chris Masonbf4ef672008-05-08 13:26:18 -04002937 found_key.objectid = ref_objectid;
2938 found_key.type = BTRFS_EXTENT_DATA_KEY;
2939 found_key.offset = ref_offset;
2940 level = 0;
2941
Chris Mason0ef3e662008-05-24 14:04:53 -04002942 if (last_extent == extent_key->objectid &&
2943 *last_file_objectid == ref_objectid &&
2944 *last_file_offset == ref_offset &&
2945 *last_file_root == ref_root)
2946 goto out;
2947
Chris Masonbf4ef672008-05-08 13:26:18 -04002948 ret = find_root_for_ref(extent_root, path, &found_key,
2949 level, 1, &found_root,
2950 extent_key->objectid);
2951
2952 if (ret)
2953 goto out;
2954
Chris Mason0ef3e662008-05-24 14:04:53 -04002955 if (last_extent == extent_key->objectid &&
2956 *last_file_objectid == ref_objectid &&
2957 *last_file_offset == ref_offset &&
2958 *last_file_root == ref_root)
2959 goto out;
2960
Chris Masonedbd8d42007-12-21 16:27:24 -05002961 inode = btrfs_iget_locked(extent_root->fs_info->sb,
2962 ref_objectid, found_root);
2963 if (inode->i_state & I_NEW) {
2964 /* the inode and parent dir are two different roots */
2965 BTRFS_I(inode)->root = found_root;
2966 BTRFS_I(inode)->location.objectid = ref_objectid;
2967 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
2968 BTRFS_I(inode)->location.offset = 0;
2969 btrfs_read_locked_inode(inode);
2970 unlock_new_inode(inode);
2971
2972 }
2973 /* this can happen if the reference is not against
2974 * the latest version of the tree root
2975 */
Chris Mason7d9eb122008-07-08 14:19:17 -04002976 if (is_bad_inode(inode))
Chris Masonedbd8d42007-12-21 16:27:24 -05002977 goto out;
Chris Mason7d9eb122008-07-08 14:19:17 -04002978
Chris Mason0ef3e662008-05-24 14:04:53 -04002979 *last_file_objectid = inode->i_ino;
2980 *last_file_root = found_root->root_key.objectid;
2981 *last_file_offset = ref_offset;
2982
Chris Masonedbd8d42007-12-21 16:27:24 -05002983 relocate_inode_pages(inode, ref_offset, extent_key->offset);
Chris Masonedbd8d42007-12-21 16:27:24 -05002984 iput(inode);
Chris Masonedbd8d42007-12-21 16:27:24 -05002985 } else {
2986 struct btrfs_trans_handle *trans;
Chris Masonedbd8d42007-12-21 16:27:24 -05002987 struct extent_buffer *eb;
Chris Mason7d9eb122008-07-08 14:19:17 -04002988 int needs_lock = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002989
Chris Masonedbd8d42007-12-21 16:27:24 -05002990 eb = read_tree_block(found_root, extent_key->objectid,
Chris Masonca7a79a2008-05-12 12:59:19 -04002991 extent_key->offset, 0);
Chris Mason925baed2008-06-25 16:01:30 -04002992 btrfs_tree_lock(eb);
Chris Masonedbd8d42007-12-21 16:27:24 -05002993 level = btrfs_header_level(eb);
2994
2995 if (level == 0)
2996 btrfs_item_key_to_cpu(eb, &found_key, 0);
2997 else
2998 btrfs_node_key_to_cpu(eb, &found_key, 0);
2999
Chris Mason925baed2008-06-25 16:01:30 -04003000 btrfs_tree_unlock(eb);
Chris Masonedbd8d42007-12-21 16:27:24 -05003001 free_extent_buffer(eb);
3002
Chris Masonbf4ef672008-05-08 13:26:18 -04003003 ret = find_root_for_ref(extent_root, path, &found_key,
3004 level, 0, &found_root,
3005 extent_key->objectid);
3006
3007 if (ret)
3008 goto out;
3009
Chris Mason7d9eb122008-07-08 14:19:17 -04003010 /*
3011 * right here almost anything could happen to our key,
3012 * but that's ok. The cow below will either relocate it
3013 * or someone else will have relocated it. Either way,
3014 * it is in a different spot than it was before and
3015 * we're happy.
3016 */
3017
Chris Masonbf4ef672008-05-08 13:26:18 -04003018 trans = btrfs_start_transaction(found_root, 1);
3019
Chris Mason7d9eb122008-07-08 14:19:17 -04003020 if (found_root == extent_root->fs_info->extent_root ||
3021 found_root == extent_root->fs_info->chunk_root ||
3022 found_root == extent_root->fs_info->dev_root) {
3023 needs_lock = 1;
3024 mutex_lock(&extent_root->fs_info->alloc_mutex);
3025 }
3026
Chris Masonedbd8d42007-12-21 16:27:24 -05003027 path->lowest_level = level;
Chris Mason8f662a72008-01-02 10:01:11 -05003028 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05003029 ret = btrfs_search_slot(trans, found_root, &found_key, path,
3030 0, 1);
3031 path->lowest_level = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05003032 btrfs_release_path(found_root, path);
Chris Mason7d9eb122008-07-08 14:19:17 -04003033
Chris Mason0ef3e662008-05-24 14:04:53 -04003034 if (found_root == found_root->fs_info->extent_root)
3035 btrfs_extent_post_op(trans, found_root);
Chris Mason7d9eb122008-07-08 14:19:17 -04003036 if (needs_lock)
3037 mutex_unlock(&extent_root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003038
Chris Mason7d9eb122008-07-08 14:19:17 -04003039 btrfs_end_transaction(trans, found_root);
3040
3041 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003042out:
Chris Mason7d9eb122008-07-08 14:19:17 -04003043 mutex_lock(&extent_root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003044 return 0;
3045}
3046
Chris Masona061fc82008-05-07 11:43:44 -04003047static int noinline del_extent_zero(struct btrfs_root *extent_root,
3048 struct btrfs_path *path,
3049 struct btrfs_key *extent_key)
3050{
3051 int ret;
3052 struct btrfs_trans_handle *trans;
3053
3054 trans = btrfs_start_transaction(extent_root, 1);
3055 ret = btrfs_search_slot(trans, extent_root, extent_key, path, -1, 1);
3056 if (ret > 0) {
3057 ret = -EIO;
3058 goto out;
3059 }
3060 if (ret < 0)
3061 goto out;
3062 ret = btrfs_del_item(trans, extent_root, path);
3063out:
3064 btrfs_end_transaction(trans, extent_root);
3065 return ret;
3066}
3067
Chris Mason98ed5172008-01-03 10:01:48 -05003068static int noinline relocate_one_extent(struct btrfs_root *extent_root,
3069 struct btrfs_path *path,
3070 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05003071{
3072 struct btrfs_key key;
3073 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05003074 struct extent_buffer *leaf;
Chris Mason0ef3e662008-05-24 14:04:53 -04003075 u64 last_file_objectid = 0;
3076 u64 last_file_root = 0;
3077 u64 last_file_offset = (u64)-1;
3078 u64 last_extent = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05003079 u32 nritems;
3080 u32 item_size;
3081 int ret = 0;
3082
Chris Masona061fc82008-05-07 11:43:44 -04003083 if (extent_key->objectid == 0) {
3084 ret = del_extent_zero(extent_root, path, extent_key);
3085 goto out;
3086 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003087 key.objectid = extent_key->objectid;
3088 key.type = BTRFS_EXTENT_REF_KEY;
3089 key.offset = 0;
3090
3091 while(1) {
3092 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3093
Chris Masonedbd8d42007-12-21 16:27:24 -05003094 if (ret < 0)
3095 goto out;
3096
3097 ret = 0;
3098 leaf = path->nodes[0];
3099 nritems = btrfs_header_nritems(leaf);
Chris Masona061fc82008-05-07 11:43:44 -04003100 if (path->slots[0] == nritems) {
3101 ret = btrfs_next_leaf(extent_root, path);
3102 if (ret > 0) {
3103 ret = 0;
3104 goto out;
3105 }
3106 if (ret < 0)
3107 goto out;
Chris Masonbf4ef672008-05-08 13:26:18 -04003108 leaf = path->nodes[0];
Chris Masona061fc82008-05-07 11:43:44 -04003109 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003110
3111 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masona061fc82008-05-07 11:43:44 -04003112 if (found_key.objectid != extent_key->objectid) {
Chris Masonedbd8d42007-12-21 16:27:24 -05003113 break;
Chris Masona061fc82008-05-07 11:43:44 -04003114 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003115
Chris Masona061fc82008-05-07 11:43:44 -04003116 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
Chris Masonedbd8d42007-12-21 16:27:24 -05003117 break;
Chris Masona061fc82008-05-07 11:43:44 -04003118 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003119
3120 key.offset = found_key.offset + 1;
3121 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3122
Chris Mason0ef3e662008-05-24 14:04:53 -04003123 ret = relocate_one_reference(extent_root, path, extent_key,
3124 &last_file_objectid,
3125 &last_file_offset,
3126 &last_file_root, last_extent);
Chris Masonedbd8d42007-12-21 16:27:24 -05003127 if (ret)
3128 goto out;
Chris Mason0ef3e662008-05-24 14:04:53 -04003129 last_extent = extent_key->objectid;
Chris Masonedbd8d42007-12-21 16:27:24 -05003130 }
3131 ret = 0;
3132out:
3133 btrfs_release_path(extent_root, path);
3134 return ret;
3135}
3136
Chris Masonec44a352008-04-28 15:29:52 -04003137static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
3138{
3139 u64 num_devices;
3140 u64 stripped = BTRFS_BLOCK_GROUP_RAID0 |
3141 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
3142
Chris Masona061fc82008-05-07 11:43:44 -04003143 num_devices = root->fs_info->fs_devices->num_devices;
Chris Masonec44a352008-04-28 15:29:52 -04003144 if (num_devices == 1) {
3145 stripped |= BTRFS_BLOCK_GROUP_DUP;
3146 stripped = flags & ~stripped;
3147
3148 /* turn raid0 into single device chunks */
3149 if (flags & BTRFS_BLOCK_GROUP_RAID0)
3150 return stripped;
3151
3152 /* turn mirroring into duplication */
3153 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
3154 BTRFS_BLOCK_GROUP_RAID10))
3155 return stripped | BTRFS_BLOCK_GROUP_DUP;
3156 return flags;
3157 } else {
3158 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04003159 if (flags & stripped)
3160 return flags;
3161
3162 stripped |= BTRFS_BLOCK_GROUP_DUP;
3163 stripped = flags & ~stripped;
3164
3165 /* switch duplicated blocks with raid1 */
3166 if (flags & BTRFS_BLOCK_GROUP_DUP)
3167 return stripped | BTRFS_BLOCK_GROUP_RAID1;
3168
3169 /* turn single device chunks into raid0 */
3170 return stripped | BTRFS_BLOCK_GROUP_RAID0;
3171 }
3172 return flags;
3173}
3174
Chris Mason0ef3e662008-05-24 14:04:53 -04003175int __alloc_chunk_for_shrink(struct btrfs_root *root,
3176 struct btrfs_block_group_cache *shrink_block_group,
3177 int force)
3178{
3179 struct btrfs_trans_handle *trans;
3180 u64 new_alloc_flags;
3181 u64 calc;
3182
Chris Masonc286ac42008-07-22 23:06:41 -04003183 spin_lock(&shrink_block_group->lock);
Chris Mason0ef3e662008-05-24 14:04:53 -04003184 if (btrfs_block_group_used(&shrink_block_group->item) > 0) {
Chris Masonc286ac42008-07-22 23:06:41 -04003185 spin_unlock(&shrink_block_group->lock);
Chris Mason7d9eb122008-07-08 14:19:17 -04003186 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonc286ac42008-07-22 23:06:41 -04003187
Chris Mason0ef3e662008-05-24 14:04:53 -04003188 trans = btrfs_start_transaction(root, 1);
Chris Mason7d9eb122008-07-08 14:19:17 -04003189 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masonc286ac42008-07-22 23:06:41 -04003190 spin_lock(&shrink_block_group->lock);
Chris Mason7d9eb122008-07-08 14:19:17 -04003191
Chris Mason0ef3e662008-05-24 14:04:53 -04003192 new_alloc_flags = update_block_group_flags(root,
3193 shrink_block_group->flags);
3194 if (new_alloc_flags != shrink_block_group->flags) {
3195 calc =
3196 btrfs_block_group_used(&shrink_block_group->item);
3197 } else {
3198 calc = shrink_block_group->key.offset;
3199 }
Chris Masonc286ac42008-07-22 23:06:41 -04003200 spin_unlock(&shrink_block_group->lock);
3201
Chris Mason0ef3e662008-05-24 14:04:53 -04003202 do_chunk_alloc(trans, root->fs_info->extent_root,
3203 calc + 2 * 1024 * 1024, new_alloc_flags, force);
Chris Mason7d9eb122008-07-08 14:19:17 -04003204
3205 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason0ef3e662008-05-24 14:04:53 -04003206 btrfs_end_transaction(trans, root);
Chris Mason7d9eb122008-07-08 14:19:17 -04003207 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masonc286ac42008-07-22 23:06:41 -04003208 } else
3209 spin_unlock(&shrink_block_group->lock);
Chris Mason0ef3e662008-05-24 14:04:53 -04003210 return 0;
3211}
3212
Chris Mason8f18cf12008-04-25 16:53:30 -04003213int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 shrink_start)
Chris Masonedbd8d42007-12-21 16:27:24 -05003214{
3215 struct btrfs_trans_handle *trans;
3216 struct btrfs_root *tree_root = root->fs_info->tree_root;
3217 struct btrfs_path *path;
3218 u64 cur_byte;
3219 u64 total_found;
Chris Mason8f18cf12008-04-25 16:53:30 -04003220 u64 shrink_last_byte;
3221 struct btrfs_block_group_cache *shrink_block_group;
Chris Masonedbd8d42007-12-21 16:27:24 -05003222 struct btrfs_fs_info *info = root->fs_info;
Chris Masonedbd8d42007-12-21 16:27:24 -05003223 struct btrfs_key key;
Yan73e48b22008-01-03 14:14:39 -05003224 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05003225 struct extent_buffer *leaf;
3226 u32 nritems;
3227 int ret;
Chris Masona061fc82008-05-07 11:43:44 -04003228 int progress;
Chris Masonedbd8d42007-12-21 16:27:24 -05003229
Chris Mason925baed2008-06-25 16:01:30 -04003230 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04003231 shrink_block_group = btrfs_lookup_block_group(root->fs_info,
3232 shrink_start);
3233 BUG_ON(!shrink_block_group);
3234
Chris Mason0ef3e662008-05-24 14:04:53 -04003235 shrink_last_byte = shrink_block_group->key.objectid +
3236 shrink_block_group->key.offset;
Chris Mason8f18cf12008-04-25 16:53:30 -04003237
3238 shrink_block_group->space_info->total_bytes -=
3239 shrink_block_group->key.offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05003240 path = btrfs_alloc_path();
3241 root = root->fs_info->extent_root;
Chris Mason8f662a72008-01-02 10:01:11 -05003242 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05003243
Chris Mason323da792008-05-09 11:46:48 -04003244 printk("btrfs relocating block group %llu flags %llu\n",
3245 (unsigned long long)shrink_start,
3246 (unsigned long long)shrink_block_group->flags);
3247
Chris Mason0ef3e662008-05-24 14:04:53 -04003248 __alloc_chunk_for_shrink(root, shrink_block_group, 1);
Chris Mason323da792008-05-09 11:46:48 -04003249
Chris Mason0ef3e662008-05-24 14:04:53 -04003250again:
3251
Chris Mason8f18cf12008-04-25 16:53:30 -04003252 shrink_block_group->ro = 1;
3253
Chris Masonedbd8d42007-12-21 16:27:24 -05003254 total_found = 0;
Chris Masona061fc82008-05-07 11:43:44 -04003255 progress = 0;
Chris Mason8f18cf12008-04-25 16:53:30 -04003256 key.objectid = shrink_start;
Chris Masonedbd8d42007-12-21 16:27:24 -05003257 key.offset = 0;
3258 key.type = 0;
Yan73e48b22008-01-03 14:14:39 -05003259 cur_byte = key.objectid;
Chris Mason4313b392008-01-03 09:08:48 -05003260
Yan73e48b22008-01-03 14:14:39 -05003261 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3262 if (ret < 0)
3263 goto out;
3264
Chris Mason0b86a832008-03-24 15:01:56 -04003265 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
Yan73e48b22008-01-03 14:14:39 -05003266 if (ret < 0)
3267 goto out;
Chris Mason8f18cf12008-04-25 16:53:30 -04003268
Yan73e48b22008-01-03 14:14:39 -05003269 if (ret == 0) {
3270 leaf = path->nodes[0];
3271 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04003272 if (found_key.objectid + found_key.offset > shrink_start &&
3273 found_key.objectid < shrink_last_byte) {
Yan73e48b22008-01-03 14:14:39 -05003274 cur_byte = found_key.objectid;
3275 key.objectid = cur_byte;
3276 }
3277 }
3278 btrfs_release_path(root, path);
3279
3280 while(1) {
Chris Masonedbd8d42007-12-21 16:27:24 -05003281 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3282 if (ret < 0)
3283 goto out;
Yan73e48b22008-01-03 14:14:39 -05003284
Chris Mason7d9eb122008-07-08 14:19:17 -04003285next:
Chris Masonedbd8d42007-12-21 16:27:24 -05003286 leaf = path->nodes[0];
Chris Masonedbd8d42007-12-21 16:27:24 -05003287 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05003288 if (path->slots[0] >= nritems) {
3289 ret = btrfs_next_leaf(root, path);
3290 if (ret < 0)
3291 goto out;
3292 if (ret == 1) {
3293 ret = 0;
3294 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05003295 }
Yan73e48b22008-01-03 14:14:39 -05003296 leaf = path->nodes[0];
3297 nritems = btrfs_header_nritems(leaf);
3298 }
3299
3300 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason725c8462008-01-04 16:47:16 -05003301
Chris Mason8f18cf12008-04-25 16:53:30 -04003302 if (found_key.objectid >= shrink_last_byte)
3303 break;
3304
Chris Mason725c8462008-01-04 16:47:16 -05003305 if (progress && need_resched()) {
3306 memcpy(&key, &found_key, sizeof(key));
Chris Mason725c8462008-01-04 16:47:16 -05003307 cond_resched();
Chris Mason725c8462008-01-04 16:47:16 -05003308 btrfs_release_path(root, path);
3309 btrfs_search_slot(NULL, root, &key, path, 0, 0);
3310 progress = 0;
3311 goto next;
3312 }
3313 progress = 1;
3314
Yan73e48b22008-01-03 14:14:39 -05003315 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_ITEM_KEY ||
3316 found_key.objectid + found_key.offset <= cur_byte) {
Chris Mason0ef3e662008-05-24 14:04:53 -04003317 memcpy(&key, &found_key, sizeof(key));
3318 key.offset++;
Yan73e48b22008-01-03 14:14:39 -05003319 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05003320 goto next;
3321 }
Yan73e48b22008-01-03 14:14:39 -05003322
Chris Masonedbd8d42007-12-21 16:27:24 -05003323 total_found++;
3324 cur_byte = found_key.objectid + found_key.offset;
3325 key.objectid = cur_byte;
3326 btrfs_release_path(root, path);
3327 ret = relocate_one_extent(root, path, &found_key);
Chris Mason0ef3e662008-05-24 14:04:53 -04003328 __alloc_chunk_for_shrink(root, shrink_block_group, 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05003329 }
3330
3331 btrfs_release_path(root, path);
3332
3333 if (total_found > 0) {
Chris Mason323da792008-05-09 11:46:48 -04003334 printk("btrfs relocate found %llu last extent was %llu\n",
3335 (unsigned long long)total_found,
3336 (unsigned long long)found_key.objectid);
Chris Mason7d9eb122008-07-08 14:19:17 -04003337 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003338 trans = btrfs_start_transaction(tree_root, 1);
3339 btrfs_commit_transaction(trans, tree_root);
3340
Chris Masonedbd8d42007-12-21 16:27:24 -05003341 btrfs_clean_old_snapshots(tree_root);
Chris Masonedbd8d42007-12-21 16:27:24 -05003342
Chris Mason3eaa2882008-07-24 11:57:52 -04003343 btrfs_wait_ordered_extents(tree_root);
3344
Chris Masonedbd8d42007-12-21 16:27:24 -05003345 trans = btrfs_start_transaction(tree_root, 1);
3346 btrfs_commit_transaction(trans, tree_root);
Chris Mason7d9eb122008-07-08 14:19:17 -04003347 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003348 goto again;
3349 }
3350
Chris Mason8f18cf12008-04-25 16:53:30 -04003351 /*
3352 * we've freed all the extents, now remove the block
3353 * group item from the tree
3354 */
Chris Mason7d9eb122008-07-08 14:19:17 -04003355 mutex_unlock(&root->fs_info->alloc_mutex);
3356
Chris Masonedbd8d42007-12-21 16:27:24 -05003357 trans = btrfs_start_transaction(root, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04003358
Chris Mason7d9eb122008-07-08 14:19:17 -04003359 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04003360 memcpy(&key, &shrink_block_group->key, sizeof(key));
Chris Mason4313b392008-01-03 09:08:48 -05003361
Chris Mason8f18cf12008-04-25 16:53:30 -04003362 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3363 if (ret > 0)
3364 ret = -EIO;
Josef Bacik8e8a1e32008-07-24 12:17:14 -04003365 if (ret < 0) {
3366 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04003367 goto out;
Josef Bacik8e8a1e32008-07-24 12:17:14 -04003368 }
Yan73e48b22008-01-03 14:14:39 -05003369
Chris Mason0ef3e662008-05-24 14:04:53 -04003370 clear_extent_bits(&info->block_group_cache, key.objectid,
3371 key.objectid + key.offset - 1,
Chris Mason8f18cf12008-04-25 16:53:30 -04003372 (unsigned int)-1, GFP_NOFS);
Yan73e48b22008-01-03 14:14:39 -05003373
Chris Mason0ef3e662008-05-24 14:04:53 -04003374
3375 clear_extent_bits(&info->free_space_cache,
3376 key.objectid, key.objectid + key.offset - 1,
3377 (unsigned int)-1, GFP_NOFS);
3378
3379 memset(shrink_block_group, 0, sizeof(*shrink_block_group));
3380 kfree(shrink_block_group);
3381
Chris Mason8f18cf12008-04-25 16:53:30 -04003382 btrfs_del_item(trans, root, path);
Chris Mason7d9eb122008-07-08 14:19:17 -04003383 btrfs_release_path(root, path);
3384 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003385 btrfs_commit_transaction(trans, root);
Chris Mason0ef3e662008-05-24 14:04:53 -04003386
Chris Mason7d9eb122008-07-08 14:19:17 -04003387 mutex_lock(&root->fs_info->alloc_mutex);
3388
Chris Mason0ef3e662008-05-24 14:04:53 -04003389 /* the code to unpin extents might set a few bits in the free
3390 * space cache for this range again
3391 */
3392 clear_extent_bits(&info->free_space_cache,
3393 key.objectid, key.objectid + key.offset - 1,
3394 (unsigned int)-1, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05003395out:
3396 btrfs_free_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04003397 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003398 return ret;
3399}
3400
Chris Mason0b86a832008-03-24 15:01:56 -04003401int find_first_block_group(struct btrfs_root *root, struct btrfs_path *path,
3402 struct btrfs_key *key)
3403{
Chris Mason925baed2008-06-25 16:01:30 -04003404 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003405 struct btrfs_key found_key;
3406 struct extent_buffer *leaf;
3407 int slot;
3408
3409 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
3410 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04003411 goto out;
3412
Chris Mason0b86a832008-03-24 15:01:56 -04003413 while(1) {
3414 slot = path->slots[0];
3415 leaf = path->nodes[0];
3416 if (slot >= btrfs_header_nritems(leaf)) {
3417 ret = btrfs_next_leaf(root, path);
3418 if (ret == 0)
3419 continue;
3420 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04003421 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04003422 break;
3423 }
3424 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3425
3426 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04003427 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
3428 ret = 0;
3429 goto out;
3430 }
Chris Mason0b86a832008-03-24 15:01:56 -04003431 path->slots[0]++;
3432 }
3433 ret = -ENOENT;
Chris Mason925baed2008-06-25 16:01:30 -04003434out:
Chris Mason0b86a832008-03-24 15:01:56 -04003435 return ret;
3436}
3437
Chris Mason9078a3e2007-04-26 16:46:15 -04003438int btrfs_read_block_groups(struct btrfs_root *root)
3439{
3440 struct btrfs_path *path;
3441 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04003442 int bit;
Chris Mason9078a3e2007-04-26 16:46:15 -04003443 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04003444 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04003445 struct btrfs_space_info *space_info;
Chris Masond1310b22008-01-24 16:13:08 -05003446 struct extent_io_tree *block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04003447 struct btrfs_key key;
3448 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04003449 struct extent_buffer *leaf;
Chris Mason96b51792007-10-15 16:15:19 -04003450
3451 block_group_cache = &info->block_group_cache;
Chris Masonbe744172007-05-06 10:15:01 -04003452 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04003453 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003454 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003455 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04003456 path = btrfs_alloc_path();
3457 if (!path)
3458 return -ENOMEM;
3459
Chris Mason925baed2008-06-25 16:01:30 -04003460 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason9078a3e2007-04-26 16:46:15 -04003461 while(1) {
Chris Mason0b86a832008-03-24 15:01:56 -04003462 ret = find_first_block_group(root, path, &key);
3463 if (ret > 0) {
3464 ret = 0;
3465 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04003466 }
Chris Mason0b86a832008-03-24 15:01:56 -04003467 if (ret != 0)
3468 goto error;
3469
Chris Mason5f39d392007-10-15 16:14:19 -04003470 leaf = path->nodes[0];
3471 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04003472 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04003473 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04003474 ret = -ENOMEM;
Chris Mason9078a3e2007-04-26 16:46:15 -04003475 break;
3476 }
Chris Mason3e1ad542007-05-07 20:03:49 -04003477
Chris Masonc286ac42008-07-22 23:06:41 -04003478 spin_lock_init(&cache->lock);
Chris Mason5f39d392007-10-15 16:14:19 -04003479 read_extent_buffer(leaf, &cache->item,
3480 btrfs_item_ptr_offset(leaf, path->slots[0]),
3481 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04003482 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason0b86a832008-03-24 15:01:56 -04003483
Chris Mason9078a3e2007-04-26 16:46:15 -04003484 key.objectid = found_key.objectid + found_key.offset;
3485 btrfs_release_path(root, path);
Chris Mason0b86a832008-03-24 15:01:56 -04003486 cache->flags = btrfs_block_group_flags(&cache->item);
3487 bit = 0;
3488 if (cache->flags & BTRFS_BLOCK_GROUP_DATA) {
Chris Mason96b51792007-10-15 16:15:19 -04003489 bit = BLOCK_GROUP_DATA;
Chris Mason0b86a832008-03-24 15:01:56 -04003490 } else if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
3491 bit = BLOCK_GROUP_SYSTEM;
3492 } else if (cache->flags & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason96b51792007-10-15 16:15:19 -04003493 bit = BLOCK_GROUP_METADATA;
Chris Mason31f3c992007-04-30 15:25:45 -04003494 }
Chris Mason8790d502008-04-03 16:29:03 -04003495 set_avail_alloc_bits(info, cache->flags);
Chris Mason96b51792007-10-15 16:15:19 -04003496
Chris Mason6324fbf2008-03-24 15:01:59 -04003497 ret = update_space_info(info, cache->flags, found_key.offset,
3498 btrfs_block_group_used(&cache->item),
3499 &space_info);
3500 BUG_ON(ret);
3501 cache->space_info = space_info;
3502
Chris Mason96b51792007-10-15 16:15:19 -04003503 /* use EXTENT_LOCKED to prevent merging */
3504 set_extent_bits(block_group_cache, found_key.objectid,
3505 found_key.objectid + found_key.offset - 1,
Chris Masonc286ac42008-07-22 23:06:41 -04003506 EXTENT_LOCKED, GFP_NOFS);
Chris Mason96b51792007-10-15 16:15:19 -04003507 set_state_private(block_group_cache, found_key.objectid,
Jens Axboeae2f5412007-10-19 09:22:59 -04003508 (unsigned long)cache);
Chris Masonc286ac42008-07-22 23:06:41 -04003509 set_extent_bits(block_group_cache, found_key.objectid,
3510 found_key.objectid + found_key.offset - 1,
3511 bit | EXTENT_LOCKED, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04003512 if (key.objectid >=
Chris Masondb945352007-10-15 16:15:53 -04003513 btrfs_super_total_bytes(&info->super_copy))
Chris Mason9078a3e2007-04-26 16:46:15 -04003514 break;
3515 }
Chris Mason0b86a832008-03-24 15:01:56 -04003516 ret = 0;
3517error:
Chris Mason9078a3e2007-04-26 16:46:15 -04003518 btrfs_free_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04003519 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04003520 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003521}
Chris Mason6324fbf2008-03-24 15:01:59 -04003522
3523int btrfs_make_block_group(struct btrfs_trans_handle *trans,
3524 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04003525 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04003526 u64 size)
3527{
3528 int ret;
3529 int bit = 0;
3530 struct btrfs_root *extent_root;
3531 struct btrfs_block_group_cache *cache;
3532 struct extent_io_tree *block_group_cache;
3533
Chris Mason7d9eb122008-07-08 14:19:17 -04003534 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Mason6324fbf2008-03-24 15:01:59 -04003535 extent_root = root->fs_info->extent_root;
3536 block_group_cache = &root->fs_info->block_group_cache;
3537
Chris Mason8f18cf12008-04-25 16:53:30 -04003538 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason6324fbf2008-03-24 15:01:59 -04003539 BUG_ON(!cache);
Chris Masone17cade2008-04-15 15:41:47 -04003540 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04003541 cache->key.offset = size;
Chris Masonc286ac42008-07-22 23:06:41 -04003542 spin_lock_init(&cache->lock);
Chris Mason6324fbf2008-03-24 15:01:59 -04003543 btrfs_set_key_type(&cache->key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason0ef3e662008-05-24 14:04:53 -04003544
Chris Mason6324fbf2008-03-24 15:01:59 -04003545 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04003546 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
3547 cache->flags = type;
3548 btrfs_set_block_group_flags(&cache->item, type);
3549
3550 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
3551 &cache->space_info);
3552 BUG_ON(ret);
3553
Chris Masond18a2c42008-04-04 15:40:00 -04003554 bit = block_group_state_bits(type);
Chris Masone17cade2008-04-15 15:41:47 -04003555 set_extent_bits(block_group_cache, chunk_offset,
3556 chunk_offset + size - 1,
Chris Masonc286ac42008-07-22 23:06:41 -04003557 EXTENT_LOCKED, GFP_NOFS);
Chris Masone17cade2008-04-15 15:41:47 -04003558 set_state_private(block_group_cache, chunk_offset,
3559 (unsigned long)cache);
Chris Masonc286ac42008-07-22 23:06:41 -04003560 set_extent_bits(block_group_cache, chunk_offset,
3561 chunk_offset + size - 1,
3562 bit | EXTENT_LOCKED, GFP_NOFS);
3563
Chris Mason6324fbf2008-03-24 15:01:59 -04003564 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
3565 sizeof(cache->item));
3566 BUG_ON(ret);
3567
3568 finish_current_insert(trans, extent_root);
3569 ret = del_pending_extents(trans, extent_root);
3570 BUG_ON(ret);
Chris Masond18a2c42008-04-04 15:40:00 -04003571 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04003572
Chris Mason6324fbf2008-03-24 15:01:59 -04003573 return 0;
3574}