blob: fff219ed61d9a7be5d76cbb8cff7771341fa5c3b [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
Yan Zhengf321e492008-07-30 09:26:11 -0400805
806static int get_reference_status(struct btrfs_root *root, u64 bytenr,
807 u64 parent_gen, u64 ref_objectid,
808 u64 *min_generation, u32 *ref_count)
Chris Masonbe20aa92007-12-17 20:14:01 -0500809{
810 struct btrfs_root *extent_root = root->fs_info->extent_root;
811 struct btrfs_path *path;
Yan Zhengf321e492008-07-30 09:26:11 -0400812 struct extent_buffer *leaf;
813 struct btrfs_extent_ref *ref_item;
Chris Masonbe20aa92007-12-17 20:14:01 -0500814 struct btrfs_key key;
815 struct btrfs_key found_key;
Yan Zhengf321e492008-07-30 09:26:11 -0400816 u64 root_objectid = root->root_key.objectid;
817 u64 ref_generation;
818 u32 nritems;
819 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -0500820
Chris Masonbe20aa92007-12-17 20:14:01 -0500821 key.objectid = bytenr;
822 key.offset = 0;
Yan Zhengf321e492008-07-30 09:26:11 -0400823 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -0500824
Yan Zhengf321e492008-07-30 09:26:11 -0400825 path = btrfs_alloc_path();
826 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masonbe20aa92007-12-17 20:14:01 -0500827 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
828 if (ret < 0)
829 goto out;
830 BUG_ON(ret == 0);
831
Yan Zhengf321e492008-07-30 09:26:11 -0400832 leaf = path->nodes[0];
833 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -0500834
835 if (found_key.objectid != bytenr ||
836 found_key.type != BTRFS_EXTENT_ITEM_KEY) {
Yan Zhengf321e492008-07-30 09:26:11 -0400837 ret = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500838 goto out;
839 }
840
Yan Zhengf321e492008-07-30 09:26:11 -0400841 *ref_count = 0;
842 *min_generation = (u64)-1;
843
Chris Masonbe20aa92007-12-17 20:14:01 -0500844 while (1) {
Yan Zhengf321e492008-07-30 09:26:11 -0400845 leaf = path->nodes[0];
846 nritems = btrfs_header_nritems(leaf);
Chris Masonbe20aa92007-12-17 20:14:01 -0500847 if (path->slots[0] >= nritems) {
848 ret = btrfs_next_leaf(extent_root, path);
Yan Zhengf321e492008-07-30 09:26:11 -0400849 if (ret < 0)
850 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -0500851 if (ret == 0)
852 continue;
853 break;
854 }
Yan Zhengf321e492008-07-30 09:26:11 -0400855 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -0500856 if (found_key.objectid != bytenr)
857 break;
Chris Masonbd098352008-01-03 13:23:19 -0500858
Chris Masonbe20aa92007-12-17 20:14:01 -0500859 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
860 path->slots[0]++;
861 continue;
862 }
863
Yan Zhengf321e492008-07-30 09:26:11 -0400864 ref_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masonbe20aa92007-12-17 20:14:01 -0500865 struct btrfs_extent_ref);
Yan Zhengf321e492008-07-30 09:26:11 -0400866 ref_generation = btrfs_ref_generation(leaf, ref_item);
867 /*
868 * For (parent_gen > 0 && parent_gen > ref_gen):
869 *
Yanbcc63ab2008-07-30 16:29:20 -0400870 * we reach here through the oldest root, therefore
871 * all other reference from same snapshot should have
Yan Zhengf321e492008-07-30 09:26:11 -0400872 * a larger generation.
873 */
874 if ((root_objectid != btrfs_ref_root(leaf, ref_item)) ||
875 (parent_gen > 0 && parent_gen > ref_generation) ||
876 (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID &&
877 ref_objectid != btrfs_ref_objectid(leaf, ref_item))) {
878 if (ref_count)
879 *ref_count = 2;
880 break;
881 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500882
Yan Zhengf321e492008-07-30 09:26:11 -0400883 *ref_count = 1;
884 if (*min_generation > ref_generation)
885 *min_generation = ref_generation;
886
Chris Masonbe20aa92007-12-17 20:14:01 -0500887 path->slots[0]++;
888 }
Yan Zhengf321e492008-07-30 09:26:11 -0400889 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500890out:
Chris Mason925baed2008-06-25 16:01:30 -0400891 mutex_unlock(&root->fs_info->alloc_mutex);
Yan Zhengf321e492008-07-30 09:26:11 -0400892 btrfs_free_path(path);
893 return ret;
894}
895
Yan Zheng7ea394f2008-08-05 13:05:02 -0400896int btrfs_cross_ref_exists(struct btrfs_trans_handle *trans,
897 struct btrfs_root *root,
Yan Zhengf321e492008-07-30 09:26:11 -0400898 struct btrfs_key *key, u64 bytenr)
899{
Yan Zhengf321e492008-07-30 09:26:11 -0400900 struct btrfs_root *old_root;
901 struct btrfs_path *path = NULL;
902 struct extent_buffer *eb;
903 struct btrfs_file_extent_item *item;
904 u64 ref_generation;
905 u64 min_generation;
906 u64 extent_start;
907 u32 ref_count;
908 int level;
909 int ret;
910
Yan Zheng7ea394f2008-08-05 13:05:02 -0400911 BUG_ON(trans == NULL);
Yan Zhengf321e492008-07-30 09:26:11 -0400912 BUG_ON(key->type != BTRFS_EXTENT_DATA_KEY);
913 ret = get_reference_status(root, bytenr, 0, key->objectid,
914 &min_generation, &ref_count);
915 if (ret)
916 return ret;
917
918 if (ref_count != 1)
919 return 1;
920
Yan Zhengf321e492008-07-30 09:26:11 -0400921 old_root = root->dirty_root->root;
922 ref_generation = old_root->root_key.offset;
923
924 /* all references are created in running transaction */
925 if (min_generation > ref_generation) {
926 ret = 0;
927 goto out;
928 }
929
930 path = btrfs_alloc_path();
931 if (!path) {
932 ret = -ENOMEM;
933 goto out;
934 }
935
936 path->skip_locking = 1;
937 /* if no item found, the extent is referenced by other snapshot */
938 ret = btrfs_search_slot(NULL, old_root, key, path, 0, 0);
939 if (ret)
940 goto out;
941
942 eb = path->nodes[0];
943 item = btrfs_item_ptr(eb, path->slots[0],
944 struct btrfs_file_extent_item);
945 if (btrfs_file_extent_type(eb, item) != BTRFS_FILE_EXTENT_REG ||
946 btrfs_file_extent_disk_bytenr(eb, item) != bytenr) {
947 ret = 1;
948 goto out;
949 }
950
951 for (level = BTRFS_MAX_LEVEL - 1; level >= -1; level--) {
952 if (level >= 0) {
953 eb = path->nodes[level];
954 if (!eb)
955 continue;
956 extent_start = eb->start;
Yanbcc63ab2008-07-30 16:29:20 -0400957 } else
Yan Zhengf321e492008-07-30 09:26:11 -0400958 extent_start = bytenr;
959
960 ret = get_reference_status(root, extent_start, ref_generation,
961 0, &min_generation, &ref_count);
962 if (ret)
963 goto out;
964
965 if (ref_count != 1) {
966 ret = 1;
967 goto out;
968 }
969 if (level >= 0)
970 ref_generation = btrfs_header_generation(eb);
971 }
972 ret = 0;
973out:
974 if (path)
975 btrfs_free_path(path);
Yan Zhengf321e492008-07-30 09:26:11 -0400976 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -0500977}
Chris Masonc5739bb2007-04-10 09:27:04 -0400978
Chris Masone089f052007-03-16 16:20:31 -0400979int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Yan Zheng31153d82008-07-28 15:32:19 -0400980 struct extent_buffer *buf, int cache_ref)
Chris Mason02217ed2007-03-02 16:08:05 -0500981{
Chris Masondb945352007-10-15 16:15:53 -0400982 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400983 u32 nritems;
984 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -0400985 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -0500986 int i;
Chris Masondb945352007-10-15 16:15:53 -0400987 int level;
Chris Mason6407bf62007-03-27 06:33:00 -0400988 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400989 int faili;
Yan Zheng31153d82008-07-28 15:32:19 -0400990 int nr_file_extents = 0;
Chris Masona28ec192007-03-06 20:08:01 -0500991
Chris Mason3768f362007-03-13 16:47:54 -0400992 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500993 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400994
Chris Masondb945352007-10-15 16:15:53 -0400995 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400996 nritems = btrfs_header_nritems(buf);
997 for (i = 0; i < nritems; i++) {
Chris Masone34a5b42008-07-22 12:08:37 -0400998 cond_resched();
Chris Masondb945352007-10-15 16:15:53 -0400999 if (level == 0) {
1000 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001001 btrfs_item_key_to_cpu(buf, &key, i);
1002 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04001003 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001004 fi = btrfs_item_ptr(buf, i,
Chris Mason6407bf62007-03-27 06:33:00 -04001005 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001006 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason236454d2007-04-19 13:37:44 -04001007 BTRFS_FILE_EXTENT_INLINE)
1008 continue;
Chris Masondb945352007-10-15 16:15:53 -04001009 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
1010 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04001011 continue;
Chris Mason4a096752008-07-21 10:29:44 -04001012
Yan Zheng31153d82008-07-28 15:32:19 -04001013 if (buf != root->commit_root)
1014 nr_file_extents++;
1015
Chris Mason4a096752008-07-21 10:29:44 -04001016 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04001017 ret = __btrfs_inc_extent_ref(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001018 btrfs_file_extent_disk_num_bytes(buf, fi),
1019 root->root_key.objectid, trans->transid,
1020 key.objectid, key.offset);
Chris Mason4a096752008-07-21 10:29:44 -04001021 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason54aa1f42007-06-22 14:16:25 -04001022 if (ret) {
1023 faili = i;
Chris Mason4a096752008-07-21 10:29:44 -04001024 WARN_ON(1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001025 goto fail;
1026 }
Chris Mason6407bf62007-03-27 06:33:00 -04001027 } else {
Chris Masondb945352007-10-15 16:15:53 -04001028 bytenr = btrfs_node_blockptr(buf, i);
Chris Mason6caab482007-12-13 09:48:07 -05001029 btrfs_node_key_to_cpu(buf, &key, i);
Chris Mason4a096752008-07-21 10:29:44 -04001030
1031 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04001032 ret = __btrfs_inc_extent_ref(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001033 btrfs_level_size(root, level - 1),
1034 root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -05001035 trans->transid,
1036 level - 1, key.objectid);
Chris Mason4a096752008-07-21 10:29:44 -04001037 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason54aa1f42007-06-22 14:16:25 -04001038 if (ret) {
1039 faili = i;
Chris Mason4a096752008-07-21 10:29:44 -04001040 WARN_ON(1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001041 goto fail;
1042 }
Chris Mason6407bf62007-03-27 06:33:00 -04001043 }
Chris Mason02217ed2007-03-02 16:08:05 -05001044 }
Yan Zheng31153d82008-07-28 15:32:19 -04001045 /* cache orignal leaf block's references */
1046 if (level == 0 && cache_ref && buf != root->commit_root) {
1047 struct btrfs_leaf_ref *ref;
1048 struct btrfs_extent_info *info;
1049
Yanbcc63ab2008-07-30 16:29:20 -04001050 ref = btrfs_alloc_leaf_ref(root, nr_file_extents);
Yan Zheng31153d82008-07-28 15:32:19 -04001051 if (!ref) {
1052 WARN_ON(1);
1053 goto out;
1054 }
1055
Chris Mason47ac14f2008-07-31 09:46:18 -04001056 ref->root_gen = root->root_key.offset;
Yan Zheng31153d82008-07-28 15:32:19 -04001057 ref->bytenr = buf->start;
1058 ref->owner = btrfs_header_owner(buf);
1059 ref->generation = btrfs_header_generation(buf);
1060 ref->nritems = nr_file_extents;
1061 info = ref->extents;
Yanbcc63ab2008-07-30 16:29:20 -04001062
Yan Zheng31153d82008-07-28 15:32:19 -04001063 for (i = 0; nr_file_extents > 0 && i < nritems; i++) {
1064 u64 disk_bytenr;
1065 btrfs_item_key_to_cpu(buf, &key, i);
1066 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
1067 continue;
1068 fi = btrfs_item_ptr(buf, i,
1069 struct btrfs_file_extent_item);
1070 if (btrfs_file_extent_type(buf, fi) ==
1071 BTRFS_FILE_EXTENT_INLINE)
1072 continue;
1073 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
1074 if (disk_bytenr == 0)
1075 continue;
1076
1077 info->bytenr = disk_bytenr;
1078 info->num_bytes =
1079 btrfs_file_extent_disk_num_bytes(buf, fi);
1080 info->objectid = key.objectid;
1081 info->offset = key.offset;
1082 info++;
1083 }
1084
1085 BUG_ON(!root->ref_tree);
1086 ret = btrfs_add_leaf_ref(root, ref);
1087 WARN_ON(ret);
Yanbcc63ab2008-07-30 16:29:20 -04001088 btrfs_free_leaf_ref(root, ref);
Yan Zheng31153d82008-07-28 15:32:19 -04001089 }
1090out:
Chris Mason02217ed2007-03-02 16:08:05 -05001091 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04001092fail:
Chris Masonccd467d2007-06-28 15:57:36 -04001093 WARN_ON(1);
Chris Mason7bb86312007-12-11 09:25:06 -05001094#if 0
Chris Mason54aa1f42007-06-22 14:16:25 -04001095 for (i =0; i < faili; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001096 if (level == 0) {
1097 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001098 btrfs_item_key_to_cpu(buf, &key, i);
1099 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04001100 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001101 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04001102 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001103 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04001104 BTRFS_FILE_EXTENT_INLINE)
1105 continue;
Chris Masondb945352007-10-15 16:15:53 -04001106 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
1107 if (disk_bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04001108 continue;
Chris Masondb945352007-10-15 16:15:53 -04001109 err = btrfs_free_extent(trans, root, disk_bytenr,
1110 btrfs_file_extent_disk_num_bytes(buf,
Chris Mason5f39d392007-10-15 16:14:19 -04001111 fi), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001112 BUG_ON(err);
1113 } else {
Chris Masondb945352007-10-15 16:15:53 -04001114 bytenr = btrfs_node_blockptr(buf, i);
1115 err = btrfs_free_extent(trans, root, bytenr,
1116 btrfs_level_size(root, level - 1), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001117 BUG_ON(err);
1118 }
1119 }
Chris Mason7bb86312007-12-11 09:25:06 -05001120#endif
Chris Mason54aa1f42007-06-22 14:16:25 -04001121 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05001122}
1123
Chris Mason9078a3e2007-04-26 16:46:15 -04001124static int write_one_cache_group(struct btrfs_trans_handle *trans,
1125 struct btrfs_root *root,
1126 struct btrfs_path *path,
1127 struct btrfs_block_group_cache *cache)
1128{
1129 int ret;
1130 int pending_ret;
1131 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001132 unsigned long bi;
1133 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04001134
Chris Mason9078a3e2007-04-26 16:46:15 -04001135 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001136 if (ret < 0)
1137 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -04001138 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001139
1140 leaf = path->nodes[0];
1141 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
1142 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
1143 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -04001144 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -04001145fail:
Chris Mason9078a3e2007-04-26 16:46:15 -04001146 finish_current_insert(trans, extent_root);
1147 pending_ret = del_pending_extents(trans, extent_root);
1148 if (ret)
1149 return ret;
1150 if (pending_ret)
1151 return pending_ret;
1152 return 0;
1153
1154}
1155
Chris Mason96b51792007-10-15 16:15:19 -04001156int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1157 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04001158{
Chris Masond1310b22008-01-24 16:13:08 -05001159 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -04001160 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04001161 int ret;
1162 int err = 0;
1163 int werr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04001164 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04001165 u64 last = 0;
1166 u64 start;
1167 u64 end;
1168 u64 ptr;
Chris Mason9078a3e2007-04-26 16:46:15 -04001169
Chris Mason96b51792007-10-15 16:15:19 -04001170 block_group_cache = &root->fs_info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04001171 path = btrfs_alloc_path();
1172 if (!path)
1173 return -ENOMEM;
1174
Chris Mason925baed2008-06-25 16:01:30 -04001175 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason9078a3e2007-04-26 16:46:15 -04001176 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -04001177 ret = find_first_extent_bit(block_group_cache, last,
1178 &start, &end, BLOCK_GROUP_DIRTY);
1179 if (ret)
Chris Mason9078a3e2007-04-26 16:46:15 -04001180 break;
Chris Mason54aa1f42007-06-22 14:16:25 -04001181
Chris Mason96b51792007-10-15 16:15:19 -04001182 last = end + 1;
1183 ret = get_state_private(block_group_cache, start, &ptr);
1184 if (ret)
1185 break;
Jens Axboeae2f5412007-10-19 09:22:59 -04001186 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -04001187 err = write_one_cache_group(trans, root,
1188 path, cache);
1189 /*
1190 * if we fail to write the cache group, we want
1191 * to keep it marked dirty in hopes that a later
1192 * write will work
1193 */
1194 if (err) {
1195 werr = err;
1196 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04001197 }
Chris Mason96b51792007-10-15 16:15:19 -04001198 clear_extent_bits(block_group_cache, start, end,
1199 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001200 }
1201 btrfs_free_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04001202 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason9078a3e2007-04-26 16:46:15 -04001203 return werr;
1204}
1205
Chris Mason6324fbf2008-03-24 15:01:59 -04001206static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
1207 u64 flags)
1208{
1209 struct list_head *head = &info->space_info;
1210 struct list_head *cur;
1211 struct btrfs_space_info *found;
1212 list_for_each(cur, head) {
1213 found = list_entry(cur, struct btrfs_space_info, list);
1214 if (found->flags == flags)
1215 return found;
1216 }
1217 return NULL;
1218
1219}
1220
Chris Mason593060d2008-03-25 16:50:33 -04001221static int update_space_info(struct btrfs_fs_info *info, u64 flags,
1222 u64 total_bytes, u64 bytes_used,
1223 struct btrfs_space_info **space_info)
1224{
1225 struct btrfs_space_info *found;
1226
1227 found = __find_space_info(info, flags);
1228 if (found) {
1229 found->total_bytes += total_bytes;
1230 found->bytes_used += bytes_used;
Chris Mason8f18cf12008-04-25 16:53:30 -04001231 found->full = 0;
Chris Mason593060d2008-03-25 16:50:33 -04001232 *space_info = found;
1233 return 0;
1234 }
1235 found = kmalloc(sizeof(*found), GFP_NOFS);
1236 if (!found)
1237 return -ENOMEM;
1238
1239 list_add(&found->list, &info->space_info);
1240 found->flags = flags;
1241 found->total_bytes = total_bytes;
1242 found->bytes_used = bytes_used;
1243 found->bytes_pinned = 0;
1244 found->full = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04001245 found->force_alloc = 0;
Chris Mason593060d2008-03-25 16:50:33 -04001246 *space_info = found;
1247 return 0;
1248}
1249
Chris Mason8790d502008-04-03 16:29:03 -04001250static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
1251{
1252 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
Chris Mason611f0e02008-04-03 16:29:03 -04001253 BTRFS_BLOCK_GROUP_RAID1 |
Chris Mason321aecc2008-04-16 10:49:51 -04001254 BTRFS_BLOCK_GROUP_RAID10 |
Chris Mason611f0e02008-04-03 16:29:03 -04001255 BTRFS_BLOCK_GROUP_DUP);
Chris Mason8790d502008-04-03 16:29:03 -04001256 if (extra_flags) {
1257 if (flags & BTRFS_BLOCK_GROUP_DATA)
1258 fs_info->avail_data_alloc_bits |= extra_flags;
1259 if (flags & BTRFS_BLOCK_GROUP_METADATA)
1260 fs_info->avail_metadata_alloc_bits |= extra_flags;
1261 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
1262 fs_info->avail_system_alloc_bits |= extra_flags;
1263 }
1264}
Chris Mason593060d2008-03-25 16:50:33 -04001265
Chris Masona061fc82008-05-07 11:43:44 -04001266static u64 reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04001267{
Chris Masona061fc82008-05-07 11:43:44 -04001268 u64 num_devices = root->fs_info->fs_devices->num_devices;
1269
1270 if (num_devices == 1)
1271 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0);
1272 if (num_devices < 4)
1273 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
1274
Chris Masonec44a352008-04-28 15:29:52 -04001275 if ((flags & BTRFS_BLOCK_GROUP_DUP) &&
1276 (flags & (BTRFS_BLOCK_GROUP_RAID1 |
Chris Masona061fc82008-05-07 11:43:44 -04001277 BTRFS_BLOCK_GROUP_RAID10))) {
Chris Masonec44a352008-04-28 15:29:52 -04001278 flags &= ~BTRFS_BLOCK_GROUP_DUP;
Chris Masona061fc82008-05-07 11:43:44 -04001279 }
Chris Masonec44a352008-04-28 15:29:52 -04001280
1281 if ((flags & BTRFS_BLOCK_GROUP_RAID1) &&
Chris Masona061fc82008-05-07 11:43:44 -04001282 (flags & BTRFS_BLOCK_GROUP_RAID10)) {
Chris Masonec44a352008-04-28 15:29:52 -04001283 flags &= ~BTRFS_BLOCK_GROUP_RAID1;
Chris Masona061fc82008-05-07 11:43:44 -04001284 }
Chris Masonec44a352008-04-28 15:29:52 -04001285
1286 if ((flags & BTRFS_BLOCK_GROUP_RAID0) &&
1287 ((flags & BTRFS_BLOCK_GROUP_RAID1) |
1288 (flags & BTRFS_BLOCK_GROUP_RAID10) |
1289 (flags & BTRFS_BLOCK_GROUP_DUP)))
1290 flags &= ~BTRFS_BLOCK_GROUP_RAID0;
1291 return flags;
1292}
1293
Chris Mason6324fbf2008-03-24 15:01:59 -04001294static int do_chunk_alloc(struct btrfs_trans_handle *trans,
1295 struct btrfs_root *extent_root, u64 alloc_bytes,
Chris Mason0ef3e662008-05-24 14:04:53 -04001296 u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04001297{
1298 struct btrfs_space_info *space_info;
1299 u64 thresh;
1300 u64 start;
1301 u64 num_bytes;
1302 int ret;
1303
Chris Masona061fc82008-05-07 11:43:44 -04001304 flags = reduce_alloc_profile(extent_root, flags);
Chris Masonec44a352008-04-28 15:29:52 -04001305
Chris Mason6324fbf2008-03-24 15:01:59 -04001306 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04001307 if (!space_info) {
1308 ret = update_space_info(extent_root->fs_info, flags,
1309 0, 0, &space_info);
1310 BUG_ON(ret);
1311 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001312 BUG_ON(!space_info);
1313
Chris Mason0ef3e662008-05-24 14:04:53 -04001314 if (space_info->force_alloc) {
1315 force = 1;
1316 space_info->force_alloc = 0;
1317 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001318 if (space_info->full)
Chris Mason925baed2008-06-25 16:01:30 -04001319 goto out;
Chris Mason6324fbf2008-03-24 15:01:59 -04001320
Chris Mason8790d502008-04-03 16:29:03 -04001321 thresh = div_factor(space_info->total_bytes, 6);
Chris Mason0ef3e662008-05-24 14:04:53 -04001322 if (!force &&
1323 (space_info->bytes_used + space_info->bytes_pinned + alloc_bytes) <
Chris Mason6324fbf2008-03-24 15:01:59 -04001324 thresh)
Chris Mason925baed2008-06-25 16:01:30 -04001325 goto out;
Chris Mason6324fbf2008-03-24 15:01:59 -04001326
Chris Mason925baed2008-06-25 16:01:30 -04001327 mutex_lock(&extent_root->fs_info->chunk_mutex);
Chris Mason6324fbf2008-03-24 15:01:59 -04001328 ret = btrfs_alloc_chunk(trans, extent_root, &start, &num_bytes, flags);
1329 if (ret == -ENOSPC) {
1330printk("space info full %Lu\n", flags);
1331 space_info->full = 1;
Chris Masona74a4b92008-06-25 16:01:31 -04001332 goto out_unlock;
Chris Mason6324fbf2008-03-24 15:01:59 -04001333 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001334 BUG_ON(ret);
1335
1336 ret = btrfs_make_block_group(trans, extent_root, 0, flags,
Chris Masone17cade2008-04-15 15:41:47 -04001337 BTRFS_FIRST_CHUNK_TREE_OBJECTID, start, num_bytes);
Chris Mason6324fbf2008-03-24 15:01:59 -04001338 BUG_ON(ret);
Chris Masona74a4b92008-06-25 16:01:31 -04001339out_unlock:
Chris Mason333db942008-06-25 16:01:30 -04001340 mutex_unlock(&extent_root->fs_info->chunk_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001341out:
Chris Mason6324fbf2008-03-24 15:01:59 -04001342 return 0;
1343}
1344
Chris Mason9078a3e2007-04-26 16:46:15 -04001345static int update_block_group(struct btrfs_trans_handle *trans,
1346 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -04001347 u64 bytenr, u64 num_bytes, int alloc,
Chris Mason0b86a832008-03-24 15:01:56 -04001348 int mark_free)
Chris Mason9078a3e2007-04-26 16:46:15 -04001349{
1350 struct btrfs_block_group_cache *cache;
1351 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001352 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001353 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04001354 u64 byte_in_group;
Chris Mason96b51792007-10-15 16:15:19 -04001355 u64 start;
1356 u64 end;
Chris Mason3e1ad542007-05-07 20:03:49 -04001357
Chris Mason7d9eb122008-07-08 14:19:17 -04001358 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Mason9078a3e2007-04-26 16:46:15 -04001359 while(total) {
Chris Masondb945352007-10-15 16:15:53 -04001360 cache = btrfs_lookup_block_group(info, bytenr);
Chris Mason3e1ad542007-05-07 20:03:49 -04001361 if (!cache) {
Chris Mason9078a3e2007-04-26 16:46:15 -04001362 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -04001363 }
Chris Masondb945352007-10-15 16:15:53 -04001364 byte_in_group = bytenr - cache->key.objectid;
1365 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason96b51792007-10-15 16:15:19 -04001366 start = cache->key.objectid;
1367 end = start + cache->key.offset - 1;
1368 set_extent_bits(&info->block_group_cache, start, end,
1369 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001370
Chris Masonc286ac42008-07-22 23:06:41 -04001371 spin_lock(&cache->lock);
Chris Mason9078a3e2007-04-26 16:46:15 -04001372 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04001373 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04001374 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04001375 old_val += num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001376 cache->space_info->bytes_used += num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04001377 btrfs_set_block_group_used(&cache->item, old_val);
1378 spin_unlock(&cache->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04001379 } else {
Chris Masondb945352007-10-15 16:15:53 -04001380 old_val -= num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001381 cache->space_info->bytes_used -= num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04001382 btrfs_set_block_group_used(&cache->item, old_val);
1383 spin_unlock(&cache->lock);
Chris Masonf510cfe2007-10-15 16:14:48 -04001384 if (mark_free) {
1385 set_extent_dirty(&info->free_space_cache,
Chris Masondb945352007-10-15 16:15:53 -04001386 bytenr, bytenr + num_bytes - 1,
Chris Masonf510cfe2007-10-15 16:14:48 -04001387 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04001388 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001389 }
Chris Masondb945352007-10-15 16:15:53 -04001390 total -= num_bytes;
1391 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001392 }
1393 return 0;
1394}
Chris Mason6324fbf2008-03-24 15:01:59 -04001395
Chris Masona061fc82008-05-07 11:43:44 -04001396static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
1397{
1398 u64 start;
1399 u64 end;
1400 int ret;
1401 ret = find_first_extent_bit(&root->fs_info->block_group_cache,
1402 search_start, &start, &end,
1403 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA |
1404 BLOCK_GROUP_SYSTEM);
1405 if (ret)
1406 return 0;
1407 return start;
1408}
1409
1410
Yan324ae4d2007-11-16 14:57:08 -05001411static int update_pinned_extents(struct btrfs_root *root,
1412 u64 bytenr, u64 num, int pin)
1413{
1414 u64 len;
1415 struct btrfs_block_group_cache *cache;
1416 struct btrfs_fs_info *fs_info = root->fs_info;
1417
Chris Mason7d9eb122008-07-08 14:19:17 -04001418 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Yan324ae4d2007-11-16 14:57:08 -05001419 if (pin) {
1420 set_extent_dirty(&fs_info->pinned_extents,
1421 bytenr, bytenr + num - 1, GFP_NOFS);
1422 } else {
1423 clear_extent_dirty(&fs_info->pinned_extents,
1424 bytenr, bytenr + num - 1, GFP_NOFS);
1425 }
1426 while (num > 0) {
1427 cache = btrfs_lookup_block_group(fs_info, bytenr);
Chris Masona061fc82008-05-07 11:43:44 -04001428 if (!cache) {
1429 u64 first = first_logical_byte(root, bytenr);
1430 WARN_ON(first < bytenr);
1431 len = min(first - bytenr, num);
1432 } else {
1433 len = min(num, cache->key.offset -
1434 (bytenr - cache->key.objectid));
1435 }
Yan324ae4d2007-11-16 14:57:08 -05001436 if (pin) {
Chris Masona061fc82008-05-07 11:43:44 -04001437 if (cache) {
Chris Masonc286ac42008-07-22 23:06:41 -04001438 spin_lock(&cache->lock);
Chris Masona061fc82008-05-07 11:43:44 -04001439 cache->pinned += len;
1440 cache->space_info->bytes_pinned += len;
Chris Masonc286ac42008-07-22 23:06:41 -04001441 spin_unlock(&cache->lock);
Chris Masona061fc82008-05-07 11:43:44 -04001442 }
Yan324ae4d2007-11-16 14:57:08 -05001443 fs_info->total_pinned += len;
1444 } else {
Chris Masona061fc82008-05-07 11:43:44 -04001445 if (cache) {
Chris Masonc286ac42008-07-22 23:06:41 -04001446 spin_lock(&cache->lock);
Chris Masona061fc82008-05-07 11:43:44 -04001447 cache->pinned -= len;
1448 cache->space_info->bytes_pinned -= len;
Chris Masonc286ac42008-07-22 23:06:41 -04001449 spin_unlock(&cache->lock);
Chris Masona061fc82008-05-07 11:43:44 -04001450 }
Yan324ae4d2007-11-16 14:57:08 -05001451 fs_info->total_pinned -= len;
1452 }
1453 bytenr += len;
1454 num -= len;
1455 }
1456 return 0;
1457}
Chris Mason9078a3e2007-04-26 16:46:15 -04001458
Chris Masond1310b22008-01-24 16:13:08 -05001459int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy)
Chris Masonccd467d2007-06-28 15:57:36 -04001460{
Chris Masonccd467d2007-06-28 15:57:36 -04001461 u64 last = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001462 u64 start;
1463 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001464 struct extent_io_tree *pinned_extents = &root->fs_info->pinned_extents;
Chris Masonccd467d2007-06-28 15:57:36 -04001465 int ret;
Chris Masonccd467d2007-06-28 15:57:36 -04001466
1467 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001468 ret = find_first_extent_bit(pinned_extents, last,
1469 &start, &end, EXTENT_DIRTY);
1470 if (ret)
Chris Masonccd467d2007-06-28 15:57:36 -04001471 break;
Chris Mason1a5bc162007-10-15 16:15:26 -04001472 set_extent_dirty(copy, start, end, GFP_NOFS);
1473 last = end + 1;
Chris Masonccd467d2007-06-28 15:57:36 -04001474 }
1475 return 0;
1476}
1477
1478int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1479 struct btrfs_root *root,
Chris Masond1310b22008-01-24 16:13:08 -05001480 struct extent_io_tree *unpin)
Chris Masona28ec192007-03-06 20:08:01 -05001481{
Chris Mason1a5bc162007-10-15 16:15:26 -04001482 u64 start;
1483 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05001484 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001485 struct extent_io_tree *free_space_cache;
Chris Masonf510cfe2007-10-15 16:14:48 -04001486 free_space_cache = &root->fs_info->free_space_cache;
Chris Masona28ec192007-03-06 20:08:01 -05001487
Chris Mason925baed2008-06-25 16:01:30 -04001488 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05001489 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001490 ret = find_first_extent_bit(unpin, 0, &start, &end,
1491 EXTENT_DIRTY);
1492 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05001493 break;
Yan324ae4d2007-11-16 14:57:08 -05001494 update_pinned_extents(root, start, end + 1 - start, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001495 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1496 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
Chris Masonc286ac42008-07-22 23:06:41 -04001497 if (need_resched()) {
1498 mutex_unlock(&root->fs_info->alloc_mutex);
1499 cond_resched();
1500 mutex_lock(&root->fs_info->alloc_mutex);
1501 }
Chris Masona28ec192007-03-06 20:08:01 -05001502 }
Chris Mason925baed2008-06-25 16:01:30 -04001503 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05001504 return 0;
1505}
1506
Chris Mason98ed5172008-01-03 10:01:48 -05001507static int finish_current_insert(struct btrfs_trans_handle *trans,
1508 struct btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -05001509{
Chris Mason7bb86312007-12-11 09:25:06 -05001510 u64 start;
1511 u64 end;
1512 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001513 struct extent_buffer *eb;
Chris Mason7bb86312007-12-11 09:25:06 -05001514 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001515 struct btrfs_key ins;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001516 struct btrfs_disk_key first;
Chris Mason234b63a2007-03-13 10:46:10 -04001517 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -05001518 int ret;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001519 int level;
Chris Mason1a5bc162007-10-15 16:15:26 -04001520 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001521
Chris Mason7d9eb122008-07-08 14:19:17 -04001522 WARN_ON(!mutex_is_locked(&extent_root->fs_info->alloc_mutex));
Chris Mason5f39d392007-10-15 16:14:19 -04001523 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason62e27492007-03-15 12:56:47 -04001524 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason7bb86312007-12-11 09:25:06 -05001525 path = btrfs_alloc_path();
Chris Mason037e6392007-03-07 11:50:24 -05001526
Chris Mason26b80032007-08-08 20:17:12 -04001527 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001528 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1529 &end, EXTENT_LOCKED);
1530 if (ret)
Chris Mason26b80032007-08-08 20:17:12 -04001531 break;
1532
Chris Mason1a5bc162007-10-15 16:15:26 -04001533 ins.objectid = start;
1534 ins.offset = end + 1 - start;
1535 err = btrfs_insert_item(trans, extent_root, &ins,
1536 &extent_item, sizeof(extent_item));
1537 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1538 GFP_NOFS);
Chris Masonc286ac42008-07-22 23:06:41 -04001539
1540 eb = btrfs_find_tree_block(extent_root, ins.objectid,
1541 ins.offset);
1542
1543 if (!btrfs_buffer_uptodate(eb, trans->transid)) {
1544 mutex_unlock(&extent_root->fs_info->alloc_mutex);
1545 btrfs_read_buffer(eb, trans->transid);
1546 mutex_lock(&extent_root->fs_info->alloc_mutex);
1547 }
1548
Chris Mason925baed2008-06-25 16:01:30 -04001549 btrfs_tree_lock(eb);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001550 level = btrfs_header_level(eb);
1551 if (level == 0) {
1552 btrfs_item_key(eb, &first, 0);
1553 } else {
1554 btrfs_node_key(eb, &first, 0);
1555 }
Chris Mason925baed2008-06-25 16:01:30 -04001556 btrfs_tree_unlock(eb);
1557 free_extent_buffer(eb);
1558 /*
1559 * the first key is just a hint, so the race we've created
1560 * against reading it is fine
1561 */
Chris Mason7bb86312007-12-11 09:25:06 -05001562 err = btrfs_insert_extent_backref(trans, extent_root, path,
1563 start, extent_root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -05001564 0, level,
1565 btrfs_disk_key_objectid(&first));
Chris Mason7bb86312007-12-11 09:25:06 -05001566 BUG_ON(err);
Chris Masonc286ac42008-07-22 23:06:41 -04001567 if (need_resched()) {
1568 mutex_unlock(&extent_root->fs_info->alloc_mutex);
1569 cond_resched();
1570 mutex_lock(&extent_root->fs_info->alloc_mutex);
1571 }
Chris Mason037e6392007-03-07 11:50:24 -05001572 }
Chris Mason7bb86312007-12-11 09:25:06 -05001573 btrfs_free_path(path);
Chris Mason037e6392007-03-07 11:50:24 -05001574 return 0;
1575}
1576
Chris Masondb945352007-10-15 16:15:53 -04001577static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
1578 int pending)
Chris Masone20d96d2007-03-22 12:13:20 -04001579{
Chris Mason1a5bc162007-10-15 16:15:26 -04001580 int err = 0;
Chris Mason78fae272007-03-25 11:35:08 -04001581
Chris Mason7d9eb122008-07-08 14:19:17 -04001582 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Masonf4b9aa82007-03-27 11:05:53 -04001583 if (!pending) {
Chris Mason925baed2008-06-25 16:01:30 -04001584 struct extent_buffer *buf;
Chris Masondb945352007-10-15 16:15:53 -04001585 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -04001586 if (buf) {
Yan974e35a2008-07-24 12:18:16 -04001587 if (btrfs_buffer_uptodate(buf, 0) &&
1588 btrfs_try_tree_lock(buf)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -04001589 u64 transid =
1590 root->fs_info->running_transaction->transid;
Chris Masondc17ff82008-01-08 15:46:30 -05001591 u64 header_transid =
1592 btrfs_header_generation(buf);
Chris Mason6bc34672008-04-04 15:40:00 -04001593 if (header_transid == transid &&
1594 !btrfs_header_flag(buf,
1595 BTRFS_HEADER_FLAG_WRITTEN)) {
Chris Mason55c69072008-01-09 15:55:33 -05001596 clean_tree_block(NULL, root, buf);
Chris Mason925baed2008-06-25 16:01:30 -04001597 btrfs_tree_unlock(buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001598 free_extent_buffer(buf);
Yanc5492282007-11-06 10:25:25 -05001599 return 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001600 }
Chris Mason925baed2008-06-25 16:01:30 -04001601 btrfs_tree_unlock(buf);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001602 }
Chris Mason5f39d392007-10-15 16:14:19 -04001603 free_extent_buffer(buf);
Chris Mason8ef97622007-03-26 10:15:30 -04001604 }
Yan324ae4d2007-11-16 14:57:08 -05001605 update_pinned_extents(root, bytenr, num_bytes, 1);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001606 } else {
Chris Mason1a5bc162007-10-15 16:15:26 -04001607 set_extent_bits(&root->fs_info->pending_del,
Chris Masondb945352007-10-15 16:15:53 -04001608 bytenr, bytenr + num_bytes - 1,
1609 EXTENT_LOCKED, GFP_NOFS);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001610 }
Chris Masonbe744172007-05-06 10:15:01 -04001611 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001612 return 0;
1613}
1614
Chris Masona28ec192007-03-06 20:08:01 -05001615/*
1616 * remove an extent from the root, returns 0 on success
1617 */
Chris Masone089f052007-03-16 16:20:31 -04001618static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001619 *root, u64 bytenr, u64 num_bytes,
1620 u64 root_objectid, u64 ref_generation,
1621 u64 owner_objectid, u64 owner_offset, int pin,
Chris Masone37c9e62007-05-09 20:13:14 -04001622 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -05001623{
Chris Mason5caf2a02007-04-02 11:20:42 -04001624 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001625 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -04001626 struct btrfs_fs_info *info = root->fs_info;
1627 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001628 struct extent_buffer *leaf;
Chris Masona28ec192007-03-06 20:08:01 -05001629 int ret;
Chris Mason952fcca2008-02-18 16:33:44 -05001630 int extent_slot = 0;
1631 int found_extent = 0;
1632 int num_to_del = 1;
Chris Mason234b63a2007-03-13 10:46:10 -04001633 struct btrfs_extent_item *ei;
Chris Masoncf27e1e2007-03-13 09:49:06 -04001634 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -05001635
Chris Mason7d9eb122008-07-08 14:19:17 -04001636 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Masondb945352007-10-15 16:15:53 -04001637 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -04001638 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -04001639 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001640 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001641 if (!path)
1642 return -ENOMEM;
1643
Chris Mason3c12ac72008-04-21 12:01:38 -04001644 path->reada = 1;
Chris Mason7bb86312007-12-11 09:25:06 -05001645 ret = lookup_extent_backref(trans, extent_root, path,
1646 bytenr, root_objectid,
1647 ref_generation,
1648 owner_objectid, owner_offset, 1);
1649 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05001650 struct btrfs_key found_key;
1651 extent_slot = path->slots[0];
1652 while(extent_slot > 0) {
1653 extent_slot--;
1654 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1655 extent_slot);
1656 if (found_key.objectid != bytenr)
1657 break;
1658 if (found_key.type == BTRFS_EXTENT_ITEM_KEY &&
1659 found_key.offset == num_bytes) {
1660 found_extent = 1;
1661 break;
1662 }
1663 if (path->slots[0] - extent_slot > 5)
1664 break;
1665 }
1666 if (!found_extent)
1667 ret = btrfs_del_item(trans, extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -05001668 } else {
1669 btrfs_print_leaf(extent_root, path->nodes[0]);
1670 WARN_ON(1);
1671 printk("Unable to find ref byte nr %Lu root %Lu "
1672 " gen %Lu owner %Lu offset %Lu\n", bytenr,
1673 root_objectid, ref_generation, owner_objectid,
1674 owner_offset);
1675 }
Chris Mason952fcca2008-02-18 16:33:44 -05001676 if (!found_extent) {
1677 btrfs_release_path(extent_root, path);
1678 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
1679 if (ret < 0)
1680 return ret;
1681 BUG_ON(ret);
1682 extent_slot = path->slots[0];
1683 }
Chris Mason5f39d392007-10-15 16:14:19 -04001684
1685 leaf = path->nodes[0];
Chris Mason952fcca2008-02-18 16:33:44 -05001686 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04001687 struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001688 refs = btrfs_extent_refs(leaf, ei);
1689 BUG_ON(refs == 0);
1690 refs -= 1;
1691 btrfs_set_extent_refs(leaf, ei, refs);
Chris Mason952fcca2008-02-18 16:33:44 -05001692
Chris Mason5f39d392007-10-15 16:14:19 -04001693 btrfs_mark_buffer_dirty(leaf);
1694
Chris Mason952fcca2008-02-18 16:33:44 -05001695 if (refs == 0 && found_extent && path->slots[0] == extent_slot + 1) {
1696 /* if the back ref and the extent are next to each other
1697 * they get deleted below in one shot
1698 */
1699 path->slots[0] = extent_slot;
1700 num_to_del = 2;
1701 } else if (found_extent) {
1702 /* otherwise delete the extent back ref */
1703 ret = btrfs_del_item(trans, extent_root, path);
1704 BUG_ON(ret);
1705 /* if refs are 0, we need to setup the path for deletion */
1706 if (refs == 0) {
1707 btrfs_release_path(extent_root, path);
1708 ret = btrfs_search_slot(trans, extent_root, &key, path,
1709 -1, 1);
1710 if (ret < 0)
1711 return ret;
1712 BUG_ON(ret);
1713 }
1714 }
1715
Chris Masoncf27e1e2007-03-13 09:49:06 -04001716 if (refs == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001717 u64 super_used;
1718 u64 root_used;
Chris Mason78fae272007-03-25 11:35:08 -04001719
1720 if (pin) {
Chris Masondb945352007-10-15 16:15:53 -04001721 ret = pin_down_bytes(root, bytenr, num_bytes, 0);
Yanc5492282007-11-06 10:25:25 -05001722 if (ret > 0)
1723 mark_free = 1;
1724 BUG_ON(ret < 0);
Chris Mason78fae272007-03-25 11:35:08 -04001725 }
1726
Josef Bacik58176a92007-08-29 15:47:34 -04001727 /* block accounting for super block */
Chris Masona2135012008-06-25 16:01:30 -04001728 spin_lock_irq(&info->delalloc_lock);
Chris Masondb945352007-10-15 16:15:53 -04001729 super_used = btrfs_super_bytes_used(&info->super_copy);
1730 btrfs_set_super_bytes_used(&info->super_copy,
1731 super_used - num_bytes);
Chris Masona2135012008-06-25 16:01:30 -04001732 spin_unlock_irq(&info->delalloc_lock);
Josef Bacik58176a92007-08-29 15:47:34 -04001733
1734 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001735 root_used = btrfs_root_used(&root->root_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001736 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -04001737 root_used - num_bytes);
Chris Mason952fcca2008-02-18 16:33:44 -05001738 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
1739 num_to_del);
Chris Mason54aa1f42007-06-22 14:16:25 -04001740 if (ret) {
1741 return ret;
1742 }
Chris Masondb945352007-10-15 16:15:53 -04001743 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001744 mark_free);
Chris Mason9078a3e2007-04-26 16:46:15 -04001745 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05001746 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001747 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001748 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -05001749 return ret;
1750}
1751
1752/*
Chris Masonfec577f2007-02-26 10:40:21 -05001753 * find all the blocks marked as pending in the radix tree and remove
1754 * them from the extent map
1755 */
Chris Masone089f052007-03-16 16:20:31 -04001756static int del_pending_extents(struct btrfs_trans_handle *trans, struct
1757 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -05001758{
1759 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001760 int err = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001761 u64 start;
1762 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001763 struct extent_io_tree *pending_del;
1764 struct extent_io_tree *pinned_extents;
Chris Mason8ef97622007-03-26 10:15:30 -04001765
Chris Mason7d9eb122008-07-08 14:19:17 -04001766 WARN_ON(!mutex_is_locked(&extent_root->fs_info->alloc_mutex));
Chris Mason1a5bc162007-10-15 16:15:26 -04001767 pending_del = &extent_root->fs_info->pending_del;
1768 pinned_extents = &extent_root->fs_info->pinned_extents;
Chris Masonfec577f2007-02-26 10:40:21 -05001769
1770 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001771 ret = find_first_extent_bit(pending_del, 0, &start, &end,
1772 EXTENT_LOCKED);
1773 if (ret)
Chris Masonfec577f2007-02-26 10:40:21 -05001774 break;
Chris Mason1a5bc162007-10-15 16:15:26 -04001775 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
1776 GFP_NOFS);
Chris Masonc286ac42008-07-22 23:06:41 -04001777 if (!test_range_bit(&extent_root->fs_info->extent_ins,
1778 start, end, EXTENT_LOCKED, 0)) {
1779 update_pinned_extents(extent_root, start,
1780 end + 1 - start, 1);
1781 ret = __free_extent(trans, extent_root,
1782 start, end + 1 - start,
1783 extent_root->root_key.objectid,
1784 0, 0, 0, 0, 0);
1785 } else {
1786 clear_extent_bits(&extent_root->fs_info->extent_ins,
1787 start, end, EXTENT_LOCKED, GFP_NOFS);
1788 }
Chris Mason1a5bc162007-10-15 16:15:26 -04001789 if (ret)
1790 err = ret;
Chris Masonc286ac42008-07-22 23:06:41 -04001791
1792 if (need_resched()) {
1793 mutex_unlock(&extent_root->fs_info->alloc_mutex);
1794 cond_resched();
1795 mutex_lock(&extent_root->fs_info->alloc_mutex);
1796 }
Chris Masonfec577f2007-02-26 10:40:21 -05001797 }
Chris Masone20d96d2007-03-22 12:13:20 -04001798 return err;
Chris Masonfec577f2007-02-26 10:40:21 -05001799}
1800
1801/*
1802 * remove an extent from the root, returns 0 on success
1803 */
Chris Mason925baed2008-06-25 16:01:30 -04001804static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
1805 struct btrfs_root *root, u64 bytenr,
1806 u64 num_bytes, u64 root_objectid,
1807 u64 ref_generation, u64 owner_objectid,
1808 u64 owner_offset, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -05001809{
Chris Mason9f5fae22007-03-20 14:38:32 -04001810 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -05001811 int pending_ret;
1812 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05001813
Chris Masondb945352007-10-15 16:15:53 -04001814 WARN_ON(num_bytes < root->sectorsize);
Chris Mason7bb86312007-12-11 09:25:06 -05001815 if (!root->ref_cows)
1816 ref_generation = 0;
1817
Chris Masona28ec192007-03-06 20:08:01 -05001818 if (root == extent_root) {
Chris Masondb945352007-10-15 16:15:53 -04001819 pin_down_bytes(root, bytenr, num_bytes, 1);
Chris Masona28ec192007-03-06 20:08:01 -05001820 return 0;
1821 }
Chris Mason7bb86312007-12-11 09:25:06 -05001822 ret = __free_extent(trans, root, bytenr, num_bytes, root_objectid,
1823 ref_generation, owner_objectid, owner_offset,
1824 pin, pin == 0);
Chris Masonee6e6502008-07-17 12:54:40 -04001825
1826 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001827 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -05001828 return ret ? ret : pending_ret;
1829}
1830
Chris Mason925baed2008-06-25 16:01:30 -04001831int btrfs_free_extent(struct btrfs_trans_handle *trans,
1832 struct btrfs_root *root, u64 bytenr,
1833 u64 num_bytes, u64 root_objectid,
1834 u64 ref_generation, u64 owner_objectid,
1835 u64 owner_offset, int pin)
1836{
1837 int ret;
1838
1839 maybe_lock_mutex(root);
1840 ret = __btrfs_free_extent(trans, root, bytenr, num_bytes,
1841 root_objectid, ref_generation,
1842 owner_objectid, owner_offset, pin);
1843 maybe_unlock_mutex(root);
1844 return ret;
1845}
1846
Chris Mason87ee04e2007-11-30 11:30:34 -05001847static u64 stripe_align(struct btrfs_root *root, u64 val)
1848{
1849 u64 mask = ((u64)root->stripesize - 1);
1850 u64 ret = (val + mask) & ~mask;
1851 return ret;
1852}
1853
Chris Masonfec577f2007-02-26 10:40:21 -05001854/*
1855 * walks the btree of allocated extents and find a hole of a given size.
1856 * The key ins is changed to record the hole:
1857 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04001858 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05001859 * ins->offset == number of blocks
1860 * Any available blocks before search_start are skipped.
1861 */
Chris Mason98ed5172008-01-03 10:01:48 -05001862static int noinline find_free_extent(struct btrfs_trans_handle *trans,
1863 struct btrfs_root *orig_root,
1864 u64 num_bytes, u64 empty_size,
1865 u64 search_start, u64 search_end,
1866 u64 hint_byte, struct btrfs_key *ins,
1867 u64 exclude_start, u64 exclude_nr,
1868 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001869{
Chris Mason87ee04e2007-11-30 11:30:34 -05001870 int ret;
Chris Masona061fc82008-05-07 11:43:44 -04001871 u64 orig_search_start;
Chris Mason9f5fae22007-03-20 14:38:32 -04001872 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -04001873 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001874 u64 total_needed = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04001875 u64 *last_ptr = NULL;
Chris Masonbe08c1b2007-05-03 09:06:49 -04001876 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -04001877 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -04001878 int wrapped = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04001879 int chunk_alloc_done = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001880 int empty_cluster = 2 * 1024 * 1024;
Chris Mason0ef3e662008-05-24 14:04:53 -04001881 int allowed_chunk_alloc = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001882
Chris Masondb945352007-10-15 16:15:53 -04001883 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04001884 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
1885
Chris Mason0ef3e662008-05-24 14:04:53 -04001886 if (orig_root->ref_cows || empty_size)
1887 allowed_chunk_alloc = 1;
1888
Chris Mason239b14b2008-03-24 15:02:07 -04001889 if (data & BTRFS_BLOCK_GROUP_METADATA) {
1890 last_ptr = &root->fs_info->last_alloc;
Chris Mason8790d502008-04-03 16:29:03 -04001891 empty_cluster = 256 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04001892 }
1893
1894 if ((data & BTRFS_BLOCK_GROUP_DATA) && btrfs_test_opt(root, SSD)) {
1895 last_ptr = &root->fs_info->last_data_alloc;
1896 }
1897
1898 if (last_ptr) {
1899 if (*last_ptr)
1900 hint_byte = *last_ptr;
1901 else {
1902 empty_size += empty_cluster;
1903 }
1904 }
1905
Chris Masona061fc82008-05-07 11:43:44 -04001906 search_start = max(search_start, first_logical_byte(root, 0));
1907 orig_search_start = search_start;
1908
Chris Mason7f93bf82008-03-24 15:01:28 -04001909 if (search_end == (u64)-1)
1910 search_end = btrfs_super_total_bytes(&info->super_copy);
Chris Mason0b86a832008-03-24 15:01:56 -04001911
Chris Masondb945352007-10-15 16:15:53 -04001912 if (hint_byte) {
Chris Mason0ef3e662008-05-24 14:04:53 -04001913 block_group = btrfs_lookup_first_block_group(info, hint_byte);
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001914 if (!block_group)
1915 hint_byte = search_start;
Chris Masonc286ac42008-07-22 23:06:41 -04001916 block_group = btrfs_find_block_group(root, block_group,
Chris Masondb945352007-10-15 16:15:53 -04001917 hint_byte, data, 1);
Chris Mason239b14b2008-03-24 15:02:07 -04001918 if (last_ptr && *last_ptr == 0 && block_group)
1919 hint_byte = block_group->key.objectid;
Chris Masonbe744172007-05-06 10:15:01 -04001920 } else {
Chris Masonc286ac42008-07-22 23:06:41 -04001921 block_group = btrfs_find_block_group(root,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001922 trans->block_group,
1923 search_start, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001924 }
Chris Mason239b14b2008-03-24 15:02:07 -04001925 search_start = max(search_start, hint_byte);
Chris Masonbe744172007-05-06 10:15:01 -04001926
Chris Mason6702ed42007-08-07 16:15:09 -04001927 total_needed += empty_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001928
Chris Masonbe744172007-05-06 10:15:01 -04001929check_failed:
Chris Mason70b043f2007-12-13 09:02:46 -05001930 if (!block_group) {
Chris Mason0ef3e662008-05-24 14:04:53 -04001931 block_group = btrfs_lookup_first_block_group(info,
1932 search_start);
Chris Mason70b043f2007-12-13 09:02:46 -05001933 if (!block_group)
Chris Mason0ef3e662008-05-24 14:04:53 -04001934 block_group = btrfs_lookup_first_block_group(info,
Chris Mason70b043f2007-12-13 09:02:46 -05001935 orig_search_start);
1936 }
Chris Mason0ef3e662008-05-24 14:04:53 -04001937 if (full_scan && !chunk_alloc_done) {
1938 if (allowed_chunk_alloc) {
1939 do_chunk_alloc(trans, root,
1940 num_bytes + 2 * 1024 * 1024, data, 1);
1941 allowed_chunk_alloc = 0;
1942 } else if (block_group && block_group_bits(block_group, data)) {
1943 block_group->space_info->force_alloc = 1;
1944 }
1945 chunk_alloc_done = 1;
1946 }
Chris Mason0b86a832008-03-24 15:01:56 -04001947 ret = find_search_start(root, &block_group, &search_start,
1948 total_needed, data);
Chris Mason239b14b2008-03-24 15:02:07 -04001949 if (ret == -ENOSPC && last_ptr && *last_ptr) {
1950 *last_ptr = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04001951 block_group = btrfs_lookup_first_block_group(info,
1952 orig_search_start);
Chris Mason239b14b2008-03-24 15:02:07 -04001953 search_start = orig_search_start;
1954 ret = find_search_start(root, &block_group, &search_start,
1955 total_needed, data);
1956 }
1957 if (ret == -ENOSPC)
1958 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001959 if (ret)
1960 goto error;
1961
Chris Mason239b14b2008-03-24 15:02:07 -04001962 if (last_ptr && *last_ptr && search_start != *last_ptr) {
1963 *last_ptr = 0;
1964 if (!empty_size) {
1965 empty_size += empty_cluster;
1966 total_needed += empty_size;
1967 }
Chris Mason0ef3e662008-05-24 14:04:53 -04001968 block_group = btrfs_lookup_first_block_group(info,
Chris Mason239b14b2008-03-24 15:02:07 -04001969 orig_search_start);
1970 search_start = orig_search_start;
1971 ret = find_search_start(root, &block_group,
1972 &search_start, total_needed, data);
1973 if (ret == -ENOSPC)
1974 goto enospc;
1975 if (ret)
1976 goto error;
1977 }
1978
Chris Mason87ee04e2007-11-30 11:30:34 -05001979 search_start = stripe_align(root, search_start);
Chris Masonfec577f2007-02-26 10:40:21 -05001980 ins->objectid = search_start;
Chris Mason0b86a832008-03-24 15:01:56 -04001981 ins->offset = num_bytes;
Chris Masone37c9e62007-05-09 20:13:14 -04001982
Chris Masondb945352007-10-15 16:15:53 -04001983 if (ins->objectid + num_bytes >= search_end)
Chris Masoncf675822007-09-17 11:00:51 -04001984 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001985
1986 if (ins->objectid + num_bytes >
1987 block_group->key.objectid + block_group->key.offset) {
Chris Masone19caa52007-10-15 16:17:44 -04001988 search_start = block_group->key.objectid +
1989 block_group->key.offset;
1990 goto new_group;
1991 }
Chris Mason0b86a832008-03-24 15:01:56 -04001992
Chris Mason1a5bc162007-10-15 16:15:26 -04001993 if (test_range_bit(&info->extent_ins, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001994 ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
1995 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001996 goto new_group;
1997 }
Chris Mason0b86a832008-03-24 15:01:56 -04001998
Chris Mason1a5bc162007-10-15 16:15:26 -04001999 if (test_range_bit(&info->pinned_extents, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04002000 ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
2001 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04002002 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05002003 }
Chris Mason0b86a832008-03-24 15:01:56 -04002004
Chris Masondb945352007-10-15 16:15:53 -04002005 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
Chris Masonf2654de2007-06-26 12:20:46 -04002006 ins->objectid < exclude_start + exclude_nr)) {
2007 search_start = exclude_start + exclude_nr;
2008 goto new_group;
2009 }
Chris Mason0b86a832008-03-24 15:01:56 -04002010
Chris Mason6324fbf2008-03-24 15:01:59 -04002011 if (!(data & BTRFS_BLOCK_GROUP_DATA)) {
Chris Mason5276aed2007-06-11 21:33:38 -04002012 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Mason26b80032007-08-08 20:17:12 -04002013 if (block_group)
2014 trans->block_group = block_group;
Chris Masoncd1bc462007-04-27 10:08:34 -04002015 }
Chris Masondb945352007-10-15 16:15:53 -04002016 ins->offset = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04002017 if (last_ptr) {
2018 *last_ptr = ins->objectid + ins->offset;
2019 if (*last_ptr ==
2020 btrfs_super_total_bytes(&root->fs_info->super_copy)) {
2021 *last_ptr = 0;
2022 }
2023 }
Chris Masonfec577f2007-02-26 10:40:21 -05002024 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04002025
2026new_group:
Chris Masondb945352007-10-15 16:15:53 -04002027 if (search_start + num_bytes >= search_end) {
Chris Masoncf675822007-09-17 11:00:51 -04002028enospc:
Chris Masonbe744172007-05-06 10:15:01 -04002029 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04002030 if (full_scan) {
2031 ret = -ENOSPC;
2032 goto error;
2033 }
Chris Mason6702ed42007-08-07 16:15:09 -04002034 if (wrapped) {
2035 if (!full_scan)
2036 total_needed -= empty_size;
Chris Masonfbdc7622007-05-30 10:22:12 -04002037 full_scan = 1;
Chris Mason6702ed42007-08-07 16:15:09 -04002038 } else
Chris Masonfbdc7622007-05-30 10:22:12 -04002039 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04002040 }
Chris Mason0ef3e662008-05-24 14:04:53 -04002041 block_group = btrfs_lookup_first_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04002042 cond_resched();
Chris Masonc286ac42008-07-22 23:06:41 -04002043 block_group = btrfs_find_block_group(root, block_group,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05002044 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04002045 goto check_failed;
2046
Chris Mason0f70abe2007-02-28 16:46:22 -05002047error:
Chris Mason0f70abe2007-02-28 16:46:22 -05002048 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05002049}
Chris Masonec44a352008-04-28 15:29:52 -04002050
Chris Masone6dcd2d2008-07-17 12:53:50 -04002051static int __btrfs_reserve_extent(struct btrfs_trans_handle *trans,
2052 struct btrfs_root *root,
2053 u64 num_bytes, u64 min_alloc_size,
2054 u64 empty_size, u64 hint_byte,
2055 u64 search_end, struct btrfs_key *ins,
2056 u64 data)
Chris Masonfec577f2007-02-26 10:40:21 -05002057{
2058 int ret;
Chris Masonfbdc7622007-05-30 10:22:12 -04002059 u64 search_start = 0;
Chris Mason8790d502008-04-03 16:29:03 -04002060 u64 alloc_profile;
Chris Mason1261ec42007-03-20 20:35:03 -04002061 struct btrfs_fs_info *info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04002062
Chris Mason6324fbf2008-03-24 15:01:59 -04002063 if (data) {
Chris Mason8790d502008-04-03 16:29:03 -04002064 alloc_profile = info->avail_data_alloc_bits &
2065 info->data_alloc_profile;
2066 data = BTRFS_BLOCK_GROUP_DATA | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04002067 } else if (root == root->fs_info->chunk_root) {
Chris Mason8790d502008-04-03 16:29:03 -04002068 alloc_profile = info->avail_system_alloc_bits &
2069 info->system_alloc_profile;
2070 data = BTRFS_BLOCK_GROUP_SYSTEM | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04002071 } else {
Chris Mason8790d502008-04-03 16:29:03 -04002072 alloc_profile = info->avail_metadata_alloc_bits &
2073 info->metadata_alloc_profile;
2074 data = BTRFS_BLOCK_GROUP_METADATA | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04002075 }
Chris Mason98d20f62008-04-14 09:46:10 -04002076again:
Chris Masona061fc82008-05-07 11:43:44 -04002077 data = reduce_alloc_profile(root, data);
Chris Mason0ef3e662008-05-24 14:04:53 -04002078 /*
2079 * the only place that sets empty_size is btrfs_realloc_node, which
2080 * is not called recursively on allocations
2081 */
2082 if (empty_size || root->ref_cows) {
Chris Mason593060d2008-03-25 16:50:33 -04002083 if (!(data & BTRFS_BLOCK_GROUP_METADATA)) {
Chris Mason6324fbf2008-03-24 15:01:59 -04002084 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0ef3e662008-05-24 14:04:53 -04002085 2 * 1024 * 1024,
2086 BTRFS_BLOCK_GROUP_METADATA |
2087 (info->metadata_alloc_profile &
2088 info->avail_metadata_alloc_bits), 0);
Chris Mason6324fbf2008-03-24 15:01:59 -04002089 BUG_ON(ret);
2090 }
2091 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0ef3e662008-05-24 14:04:53 -04002092 num_bytes + 2 * 1024 * 1024, data, 0);
Chris Mason6324fbf2008-03-24 15:01:59 -04002093 BUG_ON(ret);
2094 }
Chris Mason0b86a832008-03-24 15:01:56 -04002095
Chris Masondb945352007-10-15 16:15:53 -04002096 WARN_ON(num_bytes < root->sectorsize);
2097 ret = find_free_extent(trans, root, num_bytes, empty_size,
2098 search_start, search_end, hint_byte, ins,
Chris Mason26b80032007-08-08 20:17:12 -04002099 trans->alloc_exclude_start,
2100 trans->alloc_exclude_nr, data);
Chris Mason3b951512008-04-17 11:29:12 -04002101
Chris Mason98d20f62008-04-14 09:46:10 -04002102 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
2103 num_bytes = num_bytes >> 1;
2104 num_bytes = max(num_bytes, min_alloc_size);
Chris Mason0ef3e662008-05-24 14:04:53 -04002105 do_chunk_alloc(trans, root->fs_info->extent_root,
2106 num_bytes, data, 1);
Chris Mason98d20f62008-04-14 09:46:10 -04002107 goto again;
2108 }
Chris Masonec44a352008-04-28 15:29:52 -04002109 if (ret) {
2110 printk("allocation failed flags %Lu\n", data);
Chris Mason925baed2008-06-25 16:01:30 -04002111 BUG();
Chris Mason925baed2008-06-25 16:01:30 -04002112 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002113 clear_extent_dirty(&root->fs_info->free_space_cache,
2114 ins->objectid, ins->objectid + ins->offset - 1,
2115 GFP_NOFS);
2116 return 0;
2117}
2118
Chris Mason65b51a02008-08-01 15:11:20 -04002119int btrfs_free_reserved_extent(struct btrfs_root *root, u64 start, u64 len)
2120{
2121 maybe_lock_mutex(root);
2122 set_extent_dirty(&root->fs_info->free_space_cache,
2123 start, start + len - 1, GFP_NOFS);
2124 maybe_unlock_mutex(root);
2125 return 0;
2126}
2127
Chris Masone6dcd2d2008-07-17 12:53:50 -04002128int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
2129 struct btrfs_root *root,
2130 u64 num_bytes, u64 min_alloc_size,
2131 u64 empty_size, u64 hint_byte,
2132 u64 search_end, struct btrfs_key *ins,
2133 u64 data)
2134{
2135 int ret;
2136 maybe_lock_mutex(root);
2137 ret = __btrfs_reserve_extent(trans, root, num_bytes, min_alloc_size,
2138 empty_size, hint_byte, search_end, ins,
2139 data);
2140 maybe_unlock_mutex(root);
2141 return ret;
2142}
2143
2144static int __btrfs_alloc_reserved_extent(struct btrfs_trans_handle *trans,
2145 struct btrfs_root *root,
2146 u64 root_objectid, u64 ref_generation,
2147 u64 owner, u64 owner_offset,
2148 struct btrfs_key *ins)
2149{
2150 int ret;
2151 int pending_ret;
2152 u64 super_used;
2153 u64 root_used;
2154 u64 num_bytes = ins->offset;
2155 u32 sizes[2];
2156 struct btrfs_fs_info *info = root->fs_info;
2157 struct btrfs_root *extent_root = info->extent_root;
2158 struct btrfs_extent_item *extent_item;
2159 struct btrfs_extent_ref *ref;
2160 struct btrfs_path *path;
2161 struct btrfs_key keys[2];
Chris Masonf2654de2007-06-26 12:20:46 -04002162
Josef Bacik58176a92007-08-29 15:47:34 -04002163 /* block accounting for super block */
Chris Masona2135012008-06-25 16:01:30 -04002164 spin_lock_irq(&info->delalloc_lock);
Chris Masondb945352007-10-15 16:15:53 -04002165 super_used = btrfs_super_bytes_used(&info->super_copy);
2166 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
Chris Masona2135012008-06-25 16:01:30 -04002167 spin_unlock_irq(&info->delalloc_lock);
Chris Mason26b80032007-08-08 20:17:12 -04002168
Josef Bacik58176a92007-08-29 15:47:34 -04002169 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04002170 root_used = btrfs_root_used(&root->root_item);
2171 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04002172
Chris Mason26b80032007-08-08 20:17:12 -04002173 if (root == extent_root) {
Chris Mason1a5bc162007-10-15 16:15:26 -04002174 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
2175 ins->objectid + ins->offset - 1,
2176 EXTENT_LOCKED, GFP_NOFS);
Chris Mason26b80032007-08-08 20:17:12 -04002177 goto update_block;
2178 }
2179
Chris Mason47e4bb92008-02-01 14:51:59 -05002180 memcpy(&keys[0], ins, sizeof(*ins));
2181 keys[1].offset = hash_extent_ref(root_objectid, ref_generation,
2182 owner, owner_offset);
2183 keys[1].objectid = ins->objectid;
2184 keys[1].type = BTRFS_EXTENT_REF_KEY;
2185 sizes[0] = sizeof(*extent_item);
2186 sizes[1] = sizeof(*ref);
Chris Mason7bb86312007-12-11 09:25:06 -05002187
2188 path = btrfs_alloc_path();
2189 BUG_ON(!path);
Chris Mason47e4bb92008-02-01 14:51:59 -05002190
2191 ret = btrfs_insert_empty_items(trans, extent_root, path, keys,
2192 sizes, 2);
Chris Mason26b80032007-08-08 20:17:12 -04002193
Chris Masonccd467d2007-06-28 15:57:36 -04002194 BUG_ON(ret);
Chris Mason47e4bb92008-02-01 14:51:59 -05002195 extent_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2196 struct btrfs_extent_item);
2197 btrfs_set_extent_refs(path->nodes[0], extent_item, 1);
2198 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
2199 struct btrfs_extent_ref);
2200
2201 btrfs_set_ref_root(path->nodes[0], ref, root_objectid);
2202 btrfs_set_ref_generation(path->nodes[0], ref, ref_generation);
2203 btrfs_set_ref_objectid(path->nodes[0], ref, owner);
2204 btrfs_set_ref_offset(path->nodes[0], ref, owner_offset);
2205
2206 btrfs_mark_buffer_dirty(path->nodes[0]);
2207
2208 trans->alloc_exclude_start = 0;
2209 trans->alloc_exclude_nr = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05002210 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04002211 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04002212 pending_ret = del_pending_extents(trans, extent_root);
Chris Masonf510cfe2007-10-15 16:14:48 -04002213
Chris Mason925baed2008-06-25 16:01:30 -04002214 if (ret)
2215 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -04002216 if (pending_ret) {
Chris Mason925baed2008-06-25 16:01:30 -04002217 ret = pending_ret;
2218 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -04002219 }
Chris Mason26b80032007-08-08 20:17:12 -04002220
2221update_block:
Chris Mason0b86a832008-03-24 15:01:56 -04002222 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0);
Chris Masonf5947062008-02-04 10:10:13 -05002223 if (ret) {
2224 printk("update block group failed for %Lu %Lu\n",
2225 ins->objectid, ins->offset);
2226 BUG();
2227 }
Chris Mason925baed2008-06-25 16:01:30 -04002228out:
Chris Masone6dcd2d2008-07-17 12:53:50 -04002229 return ret;
2230}
2231
2232int btrfs_alloc_reserved_extent(struct btrfs_trans_handle *trans,
2233 struct btrfs_root *root,
2234 u64 root_objectid, u64 ref_generation,
2235 u64 owner, u64 owner_offset,
2236 struct btrfs_key *ins)
2237{
2238 int ret;
2239 maybe_lock_mutex(root);
2240 ret = __btrfs_alloc_reserved_extent(trans, root, root_objectid,
2241 ref_generation, owner,
2242 owner_offset, ins);
2243 maybe_unlock_mutex(root);
2244 return ret;
2245}
2246/*
2247 * finds a free extent and does all the dirty work required for allocation
2248 * returns the key for the extent through ins, and a tree buffer for
2249 * the first block of the extent through buf.
2250 *
2251 * returns 0 if everything worked, non-zero otherwise.
2252 */
2253int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
2254 struct btrfs_root *root,
2255 u64 num_bytes, u64 min_alloc_size,
2256 u64 root_objectid, u64 ref_generation,
2257 u64 owner, u64 owner_offset,
2258 u64 empty_size, u64 hint_byte,
2259 u64 search_end, struct btrfs_key *ins, u64 data)
2260{
2261 int ret;
2262
2263 maybe_lock_mutex(root);
2264
2265 ret = __btrfs_reserve_extent(trans, root, num_bytes,
2266 min_alloc_size, empty_size, hint_byte,
2267 search_end, ins, data);
2268 BUG_ON(ret);
2269 ret = __btrfs_alloc_reserved_extent(trans, root, root_objectid,
2270 ref_generation, owner,
2271 owner_offset, ins);
2272 BUG_ON(ret);
2273
Chris Mason925baed2008-06-25 16:01:30 -04002274 maybe_unlock_mutex(root);
2275 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05002276}
Chris Mason65b51a02008-08-01 15:11:20 -04002277
2278struct extent_buffer *btrfs_init_new_buffer(struct btrfs_trans_handle *trans,
2279 struct btrfs_root *root,
2280 u64 bytenr, u32 blocksize)
2281{
2282 struct extent_buffer *buf;
2283
2284 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
2285 if (!buf)
2286 return ERR_PTR(-ENOMEM);
2287 btrfs_set_header_generation(buf, trans->transid);
2288 btrfs_tree_lock(buf);
2289 clean_tree_block(trans, root, buf);
2290 btrfs_set_buffer_uptodate(buf);
2291 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
2292 buf->start + buf->len - 1, GFP_NOFS);
2293 trans->blocks_used++;
2294 return buf;
2295}
2296
Chris Masonfec577f2007-02-26 10:40:21 -05002297/*
2298 * helper function to allocate a block for a given tree
2299 * returns the tree buffer or NULL.
2300 */
Chris Mason5f39d392007-10-15 16:14:19 -04002301struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -04002302 struct btrfs_root *root,
Chris Mason7bb86312007-12-11 09:25:06 -05002303 u32 blocksize,
Chris Mason7bb86312007-12-11 09:25:06 -05002304 u64 root_objectid,
2305 u64 ref_generation,
2306 u64 first_objectid,
2307 int level,
2308 u64 hint,
Chris Mason5f39d392007-10-15 16:14:19 -04002309 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05002310{
Chris Masone2fa7222007-03-12 16:22:34 -04002311 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05002312 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04002313 struct extent_buffer *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05002314
Chris Mason98d20f62008-04-14 09:46:10 -04002315 ret = btrfs_alloc_extent(trans, root, blocksize, blocksize,
Chris Mason7bb86312007-12-11 09:25:06 -05002316 root_objectid, ref_generation,
Chris Masonf6dbff52007-12-13 11:13:32 -05002317 level, first_objectid, empty_size, hint,
Chris Masondb945352007-10-15 16:15:53 -04002318 (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05002319 if (ret) {
Chris Mason54aa1f42007-06-22 14:16:25 -04002320 BUG_ON(ret > 0);
2321 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05002322 }
Chris Mason55c69072008-01-09 15:55:33 -05002323
Chris Mason65b51a02008-08-01 15:11:20 -04002324 buf = btrfs_init_new_buffer(trans, root, ins.objectid, blocksize);
Chris Masonfec577f2007-02-26 10:40:21 -05002325 return buf;
2326}
Chris Masona28ec192007-03-06 20:08:01 -05002327
Yan Zheng31153d82008-07-28 15:32:19 -04002328static int noinline drop_leaf_ref_no_cache(struct btrfs_trans_handle *trans,
Yanbcc63ab2008-07-30 16:29:20 -04002329 struct btrfs_root *root,
Yan Zheng31153d82008-07-28 15:32:19 -04002330 struct extent_buffer *leaf)
Chris Mason6407bf62007-03-27 06:33:00 -04002331{
Chris Mason7bb86312007-12-11 09:25:06 -05002332 u64 leaf_owner;
2333 u64 leaf_generation;
Chris Mason5f39d392007-10-15 16:14:19 -04002334 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04002335 struct btrfs_file_extent_item *fi;
2336 int i;
2337 int nritems;
2338 int ret;
2339
Chris Mason5f39d392007-10-15 16:14:19 -04002340 BUG_ON(!btrfs_is_leaf(leaf));
2341 nritems = btrfs_header_nritems(leaf);
Chris Mason7bb86312007-12-11 09:25:06 -05002342 leaf_owner = btrfs_header_owner(leaf);
2343 leaf_generation = btrfs_header_generation(leaf);
2344
Chris Mason6407bf62007-03-27 06:33:00 -04002345 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04002346 u64 disk_bytenr;
Chris Masone34a5b42008-07-22 12:08:37 -04002347 cond_resched();
Chris Mason5f39d392007-10-15 16:14:19 -04002348
2349 btrfs_item_key_to_cpu(leaf, &key, i);
2350 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04002351 continue;
2352 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002353 if (btrfs_file_extent_type(leaf, fi) ==
2354 BTRFS_FILE_EXTENT_INLINE)
Chris Mason236454d2007-04-19 13:37:44 -04002355 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04002356 /*
2357 * FIXME make sure to insert a trans record that
2358 * repeats the snapshot del on crash
2359 */
Chris Masondb945352007-10-15 16:15:53 -04002360 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
2361 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04002362 continue;
Chris Mason4a096752008-07-21 10:29:44 -04002363
2364 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04002365 ret = __btrfs_free_extent(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002366 btrfs_file_extent_disk_num_bytes(leaf, fi),
2367 leaf_owner, leaf_generation,
2368 key.objectid, key.offset, 0);
Chris Mason4a096752008-07-21 10:29:44 -04002369 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason2dd3e672008-08-04 08:20:15 -04002370
2371 atomic_inc(&root->fs_info->throttle_gen);
2372 wake_up(&root->fs_info->transaction_throttle);
2373 cond_resched();
2374
Chris Mason6407bf62007-03-27 06:33:00 -04002375 BUG_ON(ret);
2376 }
2377 return 0;
2378}
2379
Yan Zheng31153d82008-07-28 15:32:19 -04002380static int noinline drop_leaf_ref(struct btrfs_trans_handle *trans,
Yanbcc63ab2008-07-30 16:29:20 -04002381 struct btrfs_root *root,
Yan Zheng31153d82008-07-28 15:32:19 -04002382 struct btrfs_leaf_ref *ref)
2383{
2384 int i;
2385 int ret;
2386 struct btrfs_extent_info *info = ref->extents;
2387
Yan Zheng31153d82008-07-28 15:32:19 -04002388 for (i = 0; i < ref->nritems; i++) {
2389 mutex_lock(&root->fs_info->alloc_mutex);
2390 ret = __btrfs_free_extent(trans, root,
2391 info->bytenr, info->num_bytes,
2392 ref->owner, ref->generation,
2393 info->objectid, info->offset, 0);
2394 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason2dd3e672008-08-04 08:20:15 -04002395
2396 atomic_inc(&root->fs_info->throttle_gen);
2397 wake_up(&root->fs_info->transaction_throttle);
2398 cond_resched();
2399
Yan Zheng31153d82008-07-28 15:32:19 -04002400 BUG_ON(ret);
2401 info++;
2402 }
Yan Zheng31153d82008-07-28 15:32:19 -04002403
2404 return 0;
2405}
2406
Chris Mason333db942008-06-25 16:01:30 -04002407int drop_snap_lookup_refcount(struct btrfs_root *root, u64 start, u64 len,
2408 u32 *refs)
2409{
Chris Mason017e5362008-07-28 15:32:51 -04002410 int ret;
Chris Masonf87f0572008-08-01 11:27:23 -04002411
Chris Mason017e5362008-07-28 15:32:51 -04002412 ret = lookup_extent_ref(NULL, root, start, len, refs);
Chris Masonf87f0572008-08-01 11:27:23 -04002413 BUG_ON(ret);
2414
2415#if 0 // some debugging code in case we see problems here
2416 /* if the refs count is one, it won't get increased again. But
2417 * if the ref count is > 1, someone may be decreasing it at
2418 * the same time we are.
2419 */
2420 if (*refs != 1) {
2421 struct extent_buffer *eb = NULL;
2422 eb = btrfs_find_create_tree_block(root, start, len);
2423 if (eb)
2424 btrfs_tree_lock(eb);
2425
2426 mutex_lock(&root->fs_info->alloc_mutex);
2427 ret = lookup_extent_ref(NULL, root, start, len, refs);
2428 BUG_ON(ret);
2429 mutex_unlock(&root->fs_info->alloc_mutex);
2430
2431 if (eb) {
2432 btrfs_tree_unlock(eb);
2433 free_extent_buffer(eb);
2434 }
2435 if (*refs == 1) {
2436 printk("block %llu went down to one during drop_snap\n",
2437 (unsigned long long)start);
2438 }
2439
2440 }
2441#endif
2442
Chris Masone7a84562008-06-25 16:01:31 -04002443 cond_resched();
Chris Mason017e5362008-07-28 15:32:51 -04002444 return ret;
Chris Mason333db942008-06-25 16:01:30 -04002445}
2446
2447/*
Chris Mason9aca1d52007-03-13 11:09:37 -04002448 * helper function for drop_snapshot, this walks down the tree dropping ref
2449 * counts as it goes.
2450 */
Chris Mason98ed5172008-01-03 10:01:48 -05002451static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
2452 struct btrfs_root *root,
2453 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002454{
Chris Mason7bb86312007-12-11 09:25:06 -05002455 u64 root_owner;
2456 u64 root_gen;
2457 u64 bytenr;
Chris Masonca7a79a2008-05-12 12:59:19 -04002458 u64 ptr_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04002459 struct extent_buffer *next;
2460 struct extent_buffer *cur;
Chris Mason7bb86312007-12-11 09:25:06 -05002461 struct extent_buffer *parent;
Yan Zheng31153d82008-07-28 15:32:19 -04002462 struct btrfs_leaf_ref *ref;
Chris Masondb945352007-10-15 16:15:53 -04002463 u32 blocksize;
Chris Mason20524f02007-03-10 06:35:47 -05002464 int ret;
2465 u32 refs;
2466
Chris Mason5caf2a02007-04-02 11:20:42 -04002467 WARN_ON(*level < 0);
2468 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason333db942008-06-25 16:01:30 -04002469 ret = drop_snap_lookup_refcount(root, path->nodes[*level]->start,
Chris Masondb945352007-10-15 16:15:53 -04002470 path->nodes[*level]->len, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05002471 BUG_ON(ret);
2472 if (refs > 1)
2473 goto out;
Chris Masone0115992007-06-19 16:23:05 -04002474
Chris Mason9aca1d52007-03-13 11:09:37 -04002475 /*
2476 * walk down to the last node level and free all the leaves
2477 */
Chris Mason6407bf62007-03-27 06:33:00 -04002478 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002479 WARN_ON(*level < 0);
2480 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05002481 cur = path->nodes[*level];
Chris Masone0115992007-06-19 16:23:05 -04002482
Chris Mason5f39d392007-10-15 16:14:19 -04002483 if (btrfs_header_level(cur) != *level)
Chris Mason2c90e5d2007-04-02 10:50:19 -04002484 WARN_ON(1);
Chris Masone0115992007-06-19 16:23:05 -04002485
Chris Mason7518a232007-03-12 12:01:18 -04002486 if (path->slots[*level] >=
Chris Mason5f39d392007-10-15 16:14:19 -04002487 btrfs_header_nritems(cur))
Chris Mason20524f02007-03-10 06:35:47 -05002488 break;
Chris Mason6407bf62007-03-27 06:33:00 -04002489 if (*level == 0) {
Yan Zheng31153d82008-07-28 15:32:19 -04002490 ret = drop_leaf_ref_no_cache(trans, root, cur);
Chris Mason6407bf62007-03-27 06:33:00 -04002491 BUG_ON(ret);
2492 break;
2493 }
Chris Masondb945352007-10-15 16:15:53 -04002494 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
Chris Masonca7a79a2008-05-12 12:59:19 -04002495 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
Chris Masondb945352007-10-15 16:15:53 -04002496 blocksize = btrfs_level_size(root, *level - 1);
Chris Mason925baed2008-06-25 16:01:30 -04002497
Chris Mason333db942008-06-25 16:01:30 -04002498 ret = drop_snap_lookup_refcount(root, bytenr, blocksize, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04002499 BUG_ON(ret);
2500 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002501 parent = path->nodes[*level];
2502 root_owner = btrfs_header_owner(parent);
2503 root_gen = btrfs_header_generation(parent);
Chris Mason20524f02007-03-10 06:35:47 -05002504 path->slots[*level]++;
Chris Masonf87f0572008-08-01 11:27:23 -04002505
2506 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04002507 ret = __btrfs_free_extent(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002508 blocksize, root_owner,
2509 root_gen, 0, 0, 1);
Chris Mason20524f02007-03-10 06:35:47 -05002510 BUG_ON(ret);
Chris Masonf87f0572008-08-01 11:27:23 -04002511 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason18e35e02008-08-01 13:11:41 -04002512
2513 atomic_inc(&root->fs_info->throttle_gen);
2514 wake_up(&root->fs_info->transaction_throttle);
Chris Mason2dd3e672008-08-04 08:20:15 -04002515 cond_resched();
Chris Mason18e35e02008-08-01 13:11:41 -04002516
Chris Mason20524f02007-03-10 06:35:47 -05002517 continue;
2518 }
Chris Masonf87f0572008-08-01 11:27:23 -04002519 /*
2520 * at this point, we have a single ref, and since the
2521 * only place referencing this extent is a dead root
2522 * the reference count should never go higher.
2523 * So, we don't need to check it again
2524 */
Yan Zheng31153d82008-07-28 15:32:19 -04002525 if (*level == 1) {
2526 struct btrfs_key key;
2527 btrfs_node_key_to_cpu(cur, &key, path->slots[*level]);
Chris Mason017e5362008-07-28 15:32:51 -04002528 ref = btrfs_lookup_leaf_ref(root, bytenr);
Yan Zheng31153d82008-07-28 15:32:19 -04002529 if (ref) {
2530 ret = drop_leaf_ref(trans, root, ref);
2531 BUG_ON(ret);
2532 btrfs_remove_leaf_ref(root, ref);
Yanbcc63ab2008-07-30 16:29:20 -04002533 btrfs_free_leaf_ref(root, ref);
Yan Zheng31153d82008-07-28 15:32:19 -04002534 *level = 0;
2535 break;
2536 }
Chris Mason37d1aee2008-07-31 10:48:37 -04002537 if (printk_ratelimit())
2538 printk("leaf ref miss for bytenr %llu\n",
2539 (unsigned long long)bytenr);
Yan Zheng31153d82008-07-28 15:32:19 -04002540 }
Chris Masondb945352007-10-15 16:15:53 -04002541 next = btrfs_find_tree_block(root, bytenr, blocksize);
Chris Mason1259ab72008-05-12 13:39:03 -04002542 if (!next || !btrfs_buffer_uptodate(next, ptr_gen)) {
Chris Mason5f39d392007-10-15 16:14:19 -04002543 free_extent_buffer(next);
Chris Mason333db942008-06-25 16:01:30 -04002544
Chris Masonca7a79a2008-05-12 12:59:19 -04002545 next = read_tree_block(root, bytenr, blocksize,
2546 ptr_gen);
Chris Masone7a84562008-06-25 16:01:31 -04002547 cond_resched();
Chris Masonf87f0572008-08-01 11:27:23 -04002548#if 0
2549 /*
2550 * this is a debugging check and can go away
2551 * the ref should never go all the way down to 1
2552 * at this point
2553 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04002554 ret = lookup_extent_ref(NULL, root, bytenr, blocksize,
2555 &refs);
Chris Masone9d0b132007-08-10 14:06:19 -04002556 BUG_ON(ret);
Chris Masonf87f0572008-08-01 11:27:23 -04002557 WARN_ON(refs != 1);
2558#endif
Chris Masone9d0b132007-08-10 14:06:19 -04002559 }
Chris Mason5caf2a02007-04-02 11:20:42 -04002560 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04002561 if (path->nodes[*level-1])
Chris Mason5f39d392007-10-15 16:14:19 -04002562 free_extent_buffer(path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05002563 path->nodes[*level-1] = next;
Chris Mason5f39d392007-10-15 16:14:19 -04002564 *level = btrfs_header_level(next);
Chris Mason20524f02007-03-10 06:35:47 -05002565 path->slots[*level] = 0;
Chris Mason2dd3e672008-08-04 08:20:15 -04002566 cond_resched();
Chris Mason20524f02007-03-10 06:35:47 -05002567 }
2568out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002569 WARN_ON(*level < 0);
2570 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason7bb86312007-12-11 09:25:06 -05002571
2572 if (path->nodes[*level] == root->node) {
Chris Mason7bb86312007-12-11 09:25:06 -05002573 parent = path->nodes[*level];
Yan Zheng31153d82008-07-28 15:32:19 -04002574 bytenr = path->nodes[*level]->start;
Chris Mason7bb86312007-12-11 09:25:06 -05002575 } else {
2576 parent = path->nodes[*level + 1];
Yan Zheng31153d82008-07-28 15:32:19 -04002577 bytenr = btrfs_node_blockptr(parent, path->slots[*level + 1]);
Chris Mason7bb86312007-12-11 09:25:06 -05002578 }
2579
Yan Zheng31153d82008-07-28 15:32:19 -04002580 blocksize = btrfs_level_size(root, *level);
2581 root_owner = btrfs_header_owner(parent);
Chris Mason7bb86312007-12-11 09:25:06 -05002582 root_gen = btrfs_header_generation(parent);
Yan Zheng31153d82008-07-28 15:32:19 -04002583
Chris Masonf87f0572008-08-01 11:27:23 -04002584 mutex_lock(&root->fs_info->alloc_mutex);
Yan Zheng31153d82008-07-28 15:32:19 -04002585 ret = __btrfs_free_extent(trans, root, bytenr, blocksize,
2586 root_owner, root_gen, 0, 0, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002587 free_extent_buffer(path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05002588 path->nodes[*level] = NULL;
2589 *level += 1;
2590 BUG_ON(ret);
Chris Mason925baed2008-06-25 16:01:30 -04002591 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonf87f0572008-08-01 11:27:23 -04002592
Chris Masone7a84562008-06-25 16:01:31 -04002593 cond_resched();
Chris Mason20524f02007-03-10 06:35:47 -05002594 return 0;
2595}
2596
Chris Mason9aca1d52007-03-13 11:09:37 -04002597/*
2598 * helper for dropping snapshots. This walks back up the tree in the path
2599 * to find the first node higher up where we haven't yet gone through
2600 * all the slots
2601 */
Chris Mason98ed5172008-01-03 10:01:48 -05002602static int noinline walk_up_tree(struct btrfs_trans_handle *trans,
2603 struct btrfs_root *root,
2604 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002605{
Chris Mason7bb86312007-12-11 09:25:06 -05002606 u64 root_owner;
2607 u64 root_gen;
2608 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002609 int i;
2610 int slot;
2611 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04002612
Chris Mason234b63a2007-03-13 10:46:10 -04002613 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05002614 slot = path->slots[i];
Chris Mason5f39d392007-10-15 16:14:19 -04002615 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
2616 struct extent_buffer *node;
2617 struct btrfs_disk_key disk_key;
2618 node = path->nodes[i];
Chris Mason20524f02007-03-10 06:35:47 -05002619 path->slots[i]++;
2620 *level = i;
Chris Mason9f3a7422007-08-07 15:52:19 -04002621 WARN_ON(*level == 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002622 btrfs_node_key(node, &disk_key, path->slots[i]);
Chris Mason9f3a7422007-08-07 15:52:19 -04002623 memcpy(&root_item->drop_progress,
Chris Mason5f39d392007-10-15 16:14:19 -04002624 &disk_key, sizeof(disk_key));
Chris Mason9f3a7422007-08-07 15:52:19 -04002625 root_item->drop_level = i;
Chris Mason20524f02007-03-10 06:35:47 -05002626 return 0;
2627 } else {
Chris Mason7bb86312007-12-11 09:25:06 -05002628 if (path->nodes[*level] == root->node) {
2629 root_owner = root->root_key.objectid;
2630 root_gen =
2631 btrfs_header_generation(path->nodes[*level]);
2632 } else {
2633 struct extent_buffer *node;
2634 node = path->nodes[*level + 1];
2635 root_owner = btrfs_header_owner(node);
2636 root_gen = btrfs_header_generation(node);
2637 }
Chris Masone089f052007-03-16 16:20:31 -04002638 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002639 path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002640 path->nodes[*level]->len,
2641 root_owner, root_gen, 0, 0, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04002642 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002643 free_extent_buffer(path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04002644 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05002645 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05002646 }
2647 }
2648 return 1;
2649}
2650
Chris Mason9aca1d52007-03-13 11:09:37 -04002651/*
2652 * drop the reference count on the tree rooted at 'snap'. This traverses
2653 * the tree freeing any blocks that have a ref count of zero after being
2654 * decremented.
2655 */
Chris Masone089f052007-03-16 16:20:31 -04002656int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04002657 *root)
Chris Mason20524f02007-03-10 06:35:47 -05002658{
Chris Mason3768f362007-03-13 16:47:54 -04002659 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04002660 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05002661 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04002662 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05002663 int i;
2664 int orig_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002665 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002666
Chris Masona2135012008-06-25 16:01:30 -04002667 WARN_ON(!mutex_is_locked(&root->fs_info->drop_mutex));
Chris Mason5caf2a02007-04-02 11:20:42 -04002668 path = btrfs_alloc_path();
2669 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05002670
Chris Mason5f39d392007-10-15 16:14:19 -04002671 level = btrfs_header_level(root->node);
Chris Mason20524f02007-03-10 06:35:47 -05002672 orig_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002673 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2674 path->nodes[level] = root->node;
Chris Masonf510cfe2007-10-15 16:14:48 -04002675 extent_buffer_get(root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -04002676 path->slots[level] = 0;
2677 } else {
2678 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002679 struct btrfs_disk_key found_key;
2680 struct extent_buffer *node;
Chris Mason6702ed42007-08-07 16:15:09 -04002681
Chris Mason9f3a7422007-08-07 15:52:19 -04002682 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Chris Mason6702ed42007-08-07 16:15:09 -04002683 level = root_item->drop_level;
2684 path->lowest_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002685 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason6702ed42007-08-07 16:15:09 -04002686 if (wret < 0) {
Chris Mason9f3a7422007-08-07 15:52:19 -04002687 ret = wret;
2688 goto out;
2689 }
Chris Mason5f39d392007-10-15 16:14:19 -04002690 node = path->nodes[level];
2691 btrfs_node_key(node, &found_key, path->slots[level]);
2692 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2693 sizeof(found_key)));
Chris Mason7d9eb122008-07-08 14:19:17 -04002694 /*
2695 * unlock our path, this is safe because only this
2696 * function is allowed to delete this snapshot
2697 */
Chris Mason925baed2008-06-25 16:01:30 -04002698 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
2699 if (path->nodes[i] && path->locks[i]) {
2700 path->locks[i] = 0;
2701 btrfs_tree_unlock(path->nodes[i]);
2702 }
2703 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002704 }
Chris Mason20524f02007-03-10 06:35:47 -05002705 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002706 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002707 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002708 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002709 if (wret < 0)
2710 ret = wret;
2711
Chris Mason5caf2a02007-04-02 11:20:42 -04002712 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002713 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002714 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002715 if (wret < 0)
2716 ret = wret;
Chris Masone7a84562008-06-25 16:01:31 -04002717 if (trans->transaction->in_commit) {
2718 ret = -EAGAIN;
2719 break;
2720 }
Chris Mason18e35e02008-08-01 13:11:41 -04002721 atomic_inc(&root->fs_info->throttle_gen);
Chris Mason017e5362008-07-28 15:32:51 -04002722 wake_up(&root->fs_info->transaction_throttle);
Chris Mason20524f02007-03-10 06:35:47 -05002723 }
Chris Mason83e15a22007-03-12 09:03:27 -04002724 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002725 if (path->nodes[i]) {
Chris Mason5f39d392007-10-15 16:14:19 -04002726 free_extent_buffer(path->nodes[i]);
Chris Mason0f827312007-10-15 16:18:56 -04002727 path->nodes[i] = NULL;
Chris Mason83e15a22007-03-12 09:03:27 -04002728 }
Chris Mason20524f02007-03-10 06:35:47 -05002729 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002730out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002731 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04002732 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05002733}
Chris Mason9078a3e2007-04-26 16:46:15 -04002734
Chris Masonbe744172007-05-06 10:15:01 -04002735int btrfs_free_block_groups(struct btrfs_fs_info *info)
2736{
Chris Masonf510cfe2007-10-15 16:14:48 -04002737 u64 start;
2738 u64 end;
Yanb97f9202007-11-01 11:28:41 -04002739 u64 ptr;
Chris Mason96b51792007-10-15 16:15:19 -04002740 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04002741
2742 mutex_lock(&info->alloc_mutex);
Chris Mason96b51792007-10-15 16:15:19 -04002743 while(1) {
2744 ret = find_first_extent_bit(&info->block_group_cache, 0,
2745 &start, &end, (unsigned int)-1);
2746 if (ret)
2747 break;
Yanb97f9202007-11-01 11:28:41 -04002748 ret = get_state_private(&info->block_group_cache, start, &ptr);
2749 if (!ret)
2750 kfree((void *)(unsigned long)ptr);
Chris Mason96b51792007-10-15 16:15:19 -04002751 clear_extent_bits(&info->block_group_cache, start,
2752 end, (unsigned int)-1, GFP_NOFS);
2753 }
Chris Masone37c9e62007-05-09 20:13:14 -04002754 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -04002755 ret = find_first_extent_bit(&info->free_space_cache, 0,
2756 &start, &end, EXTENT_DIRTY);
2757 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -04002758 break;
Chris Masonf510cfe2007-10-15 16:14:48 -04002759 clear_extent_dirty(&info->free_space_cache, start,
2760 end, GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04002761 }
Chris Mason925baed2008-06-25 16:01:30 -04002762 mutex_unlock(&info->alloc_mutex);
Chris Masonbe744172007-05-06 10:15:01 -04002763 return 0;
2764}
2765
Chris Mason8e7bf942008-04-28 09:02:36 -04002766static unsigned long calc_ra(unsigned long start, unsigned long last,
2767 unsigned long nr)
2768{
2769 return min(last, start + nr - 1);
2770}
2771
Chris Mason98ed5172008-01-03 10:01:48 -05002772static int noinline relocate_inode_pages(struct inode *inode, u64 start,
2773 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05002774{
2775 u64 page_start;
2776 u64 page_end;
Chris Masonedbd8d42007-12-21 16:27:24 -05002777 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05002778 unsigned long i;
2779 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05002780 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05002781 struct file_ra_state *ra;
Chris Mason8e7bf942008-04-28 09:02:36 -04002782 unsigned long total_read = 0;
2783 unsigned long ra_pages;
Chris Mason3eaa2882008-07-24 11:57:52 -04002784 struct btrfs_ordered_extent *ordered;
Chris Masona061fc82008-05-07 11:43:44 -04002785 struct btrfs_trans_handle *trans;
Chris Mason4313b392008-01-03 09:08:48 -05002786
2787 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002788
2789 mutex_lock(&inode->i_mutex);
Chris Mason4313b392008-01-03 09:08:48 -05002790 i = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05002791 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
2792
Chris Mason8e7bf942008-04-28 09:02:36 -04002793 ra_pages = BTRFS_I(inode)->root->fs_info->bdi.ra_pages;
2794
Chris Mason4313b392008-01-03 09:08:48 -05002795 file_ra_state_init(ra, inode->i_mapping);
Chris Masonedbd8d42007-12-21 16:27:24 -05002796
Chris Mason4313b392008-01-03 09:08:48 -05002797 for (; i <= last_index; i++) {
Chris Mason8e7bf942008-04-28 09:02:36 -04002798 if (total_read % ra_pages == 0) {
2799 btrfs_force_ra(inode->i_mapping, ra, NULL, i,
2800 calc_ra(i, last_index, ra_pages));
2801 }
2802 total_read++;
Chris Mason3eaa2882008-07-24 11:57:52 -04002803again:
2804 if (((u64)i << PAGE_CACHE_SHIFT) > i_size_read(inode))
Chris Masona061fc82008-05-07 11:43:44 -04002805 goto truncate_racing;
Chris Masonedbd8d42007-12-21 16:27:24 -05002806 page = grab_cache_page(inode->i_mapping, i);
Chris Masona061fc82008-05-07 11:43:44 -04002807 if (!page) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002808 goto out_unlock;
Chris Masona061fc82008-05-07 11:43:44 -04002809 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002810 if (!PageUptodate(page)) {
2811 btrfs_readpage(NULL, page);
2812 lock_page(page);
2813 if (!PageUptodate(page)) {
2814 unlock_page(page);
2815 page_cache_release(page);
2816 goto out_unlock;
2817 }
2818 }
Chris Masonec44a352008-04-28 15:29:52 -04002819 wait_on_page_writeback(page);
Chris Mason3eaa2882008-07-24 11:57:52 -04002820
Chris Masonedbd8d42007-12-21 16:27:24 -05002821 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2822 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002823 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002824
Chris Mason3eaa2882008-07-24 11:57:52 -04002825 ordered = btrfs_lookup_ordered_extent(inode, page_start);
2826 if (ordered) {
2827 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
2828 unlock_page(page);
2829 page_cache_release(page);
2830 btrfs_start_ordered_extent(inode, ordered, 1);
2831 btrfs_put_ordered_extent(ordered);
2832 goto again;
2833 }
2834 set_page_extent_mapped(page);
2835
Chris Masonf87f0572008-08-01 11:27:23 -04002836 /*
2837 * make sure page_mkwrite is called for this page if userland
2838 * wants to change it from mmap
2839 */
2840 clear_page_dirty_for_io(page);
Chris Mason3eaa2882008-07-24 11:57:52 -04002841
Chris Masonea8c2812008-08-04 23:17:27 -04002842 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masona061fc82008-05-07 11:43:44 -04002843 set_page_dirty(page);
Chris Masonedbd8d42007-12-21 16:27:24 -05002844
Chris Masond1310b22008-01-24 16:13:08 -05002845 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002846 unlock_page(page);
2847 page_cache_release(page);
2848 }
2849
2850out_unlock:
Chris Mason3eaa2882008-07-24 11:57:52 -04002851 /* we have to start the IO in order to get the ordered extents
2852 * instantiated. This allows the relocation to code to wait
2853 * for all the ordered extents to hit the disk.
2854 *
2855 * Otherwise, it would constantly loop over the same extents
2856 * because the old ones don't get deleted until the IO is
2857 * started
2858 */
2859 btrfs_fdatawrite_range(inode->i_mapping, start, start + len - 1,
2860 WB_SYNC_NONE);
Chris Masonec44a352008-04-28 15:29:52 -04002861 kfree(ra);
Chris Masona061fc82008-05-07 11:43:44 -04002862 trans = btrfs_start_transaction(BTRFS_I(inode)->root, 1);
2863 if (trans) {
Chris Masona061fc82008-05-07 11:43:44 -04002864 btrfs_end_transaction(trans, BTRFS_I(inode)->root);
2865 mark_inode_dirty(inode);
2866 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002867 mutex_unlock(&inode->i_mutex);
2868 return 0;
Chris Masona061fc82008-05-07 11:43:44 -04002869
2870truncate_racing:
2871 vmtruncate(inode, inode->i_size);
2872 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
2873 total_read);
2874 goto out_unlock;
Chris Masonedbd8d42007-12-21 16:27:24 -05002875}
2876
Chris Mason4313b392008-01-03 09:08:48 -05002877/*
Chris Masonbf4ef672008-05-08 13:26:18 -04002878 * The back references tell us which tree holds a ref on a block,
2879 * but it is possible for the tree root field in the reference to
2880 * reflect the original root before a snapshot was made. In this
2881 * case we should search through all the children of a given root
2882 * to find potential holders of references on a block.
2883 *
2884 * Instead, we do something a little less fancy and just search
2885 * all the roots for a given key/block combination.
2886 */
2887static int find_root_for_ref(struct btrfs_root *root,
2888 struct btrfs_path *path,
2889 struct btrfs_key *key0,
2890 int level,
2891 int file_key,
2892 struct btrfs_root **found_root,
2893 u64 bytenr)
2894{
2895 struct btrfs_key root_location;
2896 struct btrfs_root *cur_root = *found_root;
2897 struct btrfs_file_extent_item *file_extent;
2898 u64 root_search_start = BTRFS_FS_TREE_OBJECTID;
2899 u64 found_bytenr;
2900 int ret;
Chris Masonbf4ef672008-05-08 13:26:18 -04002901
2902 root_location.offset = (u64)-1;
2903 root_location.type = BTRFS_ROOT_ITEM_KEY;
2904 path->lowest_level = level;
2905 path->reada = 0;
2906 while(1) {
2907 ret = btrfs_search_slot(NULL, cur_root, key0, path, 0, 0);
2908 found_bytenr = 0;
2909 if (ret == 0 && file_key) {
2910 struct extent_buffer *leaf = path->nodes[0];
2911 file_extent = btrfs_item_ptr(leaf, path->slots[0],
2912 struct btrfs_file_extent_item);
2913 if (btrfs_file_extent_type(leaf, file_extent) ==
2914 BTRFS_FILE_EXTENT_REG) {
2915 found_bytenr =
2916 btrfs_file_extent_disk_bytenr(leaf,
2917 file_extent);
2918 }
Chris Mason323da792008-05-09 11:46:48 -04002919 } else if (!file_key) {
Chris Masonbf4ef672008-05-08 13:26:18 -04002920 if (path->nodes[level])
2921 found_bytenr = path->nodes[level]->start;
2922 }
2923
Chris Masonbf4ef672008-05-08 13:26:18 -04002924 btrfs_release_path(cur_root, path);
2925
2926 if (found_bytenr == bytenr) {
2927 *found_root = cur_root;
2928 ret = 0;
2929 goto out;
2930 }
2931 ret = btrfs_search_root(root->fs_info->tree_root,
2932 root_search_start, &root_search_start);
2933 if (ret)
2934 break;
2935
2936 root_location.objectid = root_search_start;
2937 cur_root = btrfs_read_fs_root_no_name(root->fs_info,
2938 &root_location);
2939 if (!cur_root) {
2940 ret = 1;
2941 break;
2942 }
2943 }
2944out:
2945 path->lowest_level = 0;
2946 return ret;
2947}
2948
2949/*
Chris Mason4313b392008-01-03 09:08:48 -05002950 * note, this releases the path
2951 */
Chris Mason98ed5172008-01-03 10:01:48 -05002952static int noinline relocate_one_reference(struct btrfs_root *extent_root,
Chris Masonedbd8d42007-12-21 16:27:24 -05002953 struct btrfs_path *path,
Chris Mason0ef3e662008-05-24 14:04:53 -04002954 struct btrfs_key *extent_key,
2955 u64 *last_file_objectid,
2956 u64 *last_file_offset,
2957 u64 *last_file_root,
2958 u64 last_extent)
Chris Masonedbd8d42007-12-21 16:27:24 -05002959{
2960 struct inode *inode;
2961 struct btrfs_root *found_root;
Chris Masonbf4ef672008-05-08 13:26:18 -04002962 struct btrfs_key root_location;
2963 struct btrfs_key found_key;
Chris Mason4313b392008-01-03 09:08:48 -05002964 struct btrfs_extent_ref *ref;
2965 u64 ref_root;
2966 u64 ref_gen;
2967 u64 ref_objectid;
2968 u64 ref_offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05002969 int ret;
Chris Masonbf4ef672008-05-08 13:26:18 -04002970 int level;
Chris Masonedbd8d42007-12-21 16:27:24 -05002971
Chris Mason7d9eb122008-07-08 14:19:17 -04002972 WARN_ON(!mutex_is_locked(&extent_root->fs_info->alloc_mutex));
2973
Chris Mason4313b392008-01-03 09:08:48 -05002974 ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
2975 struct btrfs_extent_ref);
2976 ref_root = btrfs_ref_root(path->nodes[0], ref);
2977 ref_gen = btrfs_ref_generation(path->nodes[0], ref);
2978 ref_objectid = btrfs_ref_objectid(path->nodes[0], ref);
2979 ref_offset = btrfs_ref_offset(path->nodes[0], ref);
2980 btrfs_release_path(extent_root, path);
2981
Chris Masonbf4ef672008-05-08 13:26:18 -04002982 root_location.objectid = ref_root;
Chris Masonedbd8d42007-12-21 16:27:24 -05002983 if (ref_gen == 0)
Chris Masonbf4ef672008-05-08 13:26:18 -04002984 root_location.offset = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002985 else
Chris Masonbf4ef672008-05-08 13:26:18 -04002986 root_location.offset = (u64)-1;
2987 root_location.type = BTRFS_ROOT_ITEM_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05002988
2989 found_root = btrfs_read_fs_root_no_name(extent_root->fs_info,
Chris Masonbf4ef672008-05-08 13:26:18 -04002990 &root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002991 BUG_ON(!found_root);
Chris Mason7d9eb122008-07-08 14:19:17 -04002992 mutex_unlock(&extent_root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05002993
2994 if (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
Chris Masonbf4ef672008-05-08 13:26:18 -04002995 found_key.objectid = ref_objectid;
2996 found_key.type = BTRFS_EXTENT_DATA_KEY;
2997 found_key.offset = ref_offset;
2998 level = 0;
2999
Chris Mason0ef3e662008-05-24 14:04:53 -04003000 if (last_extent == extent_key->objectid &&
3001 *last_file_objectid == ref_objectid &&
3002 *last_file_offset == ref_offset &&
3003 *last_file_root == ref_root)
3004 goto out;
3005
Chris Masonbf4ef672008-05-08 13:26:18 -04003006 ret = find_root_for_ref(extent_root, path, &found_key,
3007 level, 1, &found_root,
3008 extent_key->objectid);
3009
3010 if (ret)
3011 goto out;
3012
Chris Mason0ef3e662008-05-24 14:04:53 -04003013 if (last_extent == extent_key->objectid &&
3014 *last_file_objectid == ref_objectid &&
3015 *last_file_offset == ref_offset &&
3016 *last_file_root == ref_root)
3017 goto out;
3018
Chris Masonedbd8d42007-12-21 16:27:24 -05003019 inode = btrfs_iget_locked(extent_root->fs_info->sb,
3020 ref_objectid, found_root);
3021 if (inode->i_state & I_NEW) {
3022 /* the inode and parent dir are two different roots */
3023 BTRFS_I(inode)->root = found_root;
3024 BTRFS_I(inode)->location.objectid = ref_objectid;
3025 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
3026 BTRFS_I(inode)->location.offset = 0;
3027 btrfs_read_locked_inode(inode);
3028 unlock_new_inode(inode);
3029
3030 }
3031 /* this can happen if the reference is not against
3032 * the latest version of the tree root
3033 */
Chris Mason7d9eb122008-07-08 14:19:17 -04003034 if (is_bad_inode(inode))
Chris Masonedbd8d42007-12-21 16:27:24 -05003035 goto out;
Chris Mason7d9eb122008-07-08 14:19:17 -04003036
Chris Mason0ef3e662008-05-24 14:04:53 -04003037 *last_file_objectid = inode->i_ino;
3038 *last_file_root = found_root->root_key.objectid;
3039 *last_file_offset = ref_offset;
3040
Chris Masonedbd8d42007-12-21 16:27:24 -05003041 relocate_inode_pages(inode, ref_offset, extent_key->offset);
Chris Masonedbd8d42007-12-21 16:27:24 -05003042 iput(inode);
Chris Masonedbd8d42007-12-21 16:27:24 -05003043 } else {
3044 struct btrfs_trans_handle *trans;
Chris Masonedbd8d42007-12-21 16:27:24 -05003045 struct extent_buffer *eb;
Chris Mason7d9eb122008-07-08 14:19:17 -04003046 int needs_lock = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05003047
Chris Masonedbd8d42007-12-21 16:27:24 -05003048 eb = read_tree_block(found_root, extent_key->objectid,
Chris Masonca7a79a2008-05-12 12:59:19 -04003049 extent_key->offset, 0);
Chris Mason925baed2008-06-25 16:01:30 -04003050 btrfs_tree_lock(eb);
Chris Masonedbd8d42007-12-21 16:27:24 -05003051 level = btrfs_header_level(eb);
3052
3053 if (level == 0)
3054 btrfs_item_key_to_cpu(eb, &found_key, 0);
3055 else
3056 btrfs_node_key_to_cpu(eb, &found_key, 0);
3057
Chris Mason925baed2008-06-25 16:01:30 -04003058 btrfs_tree_unlock(eb);
Chris Masonedbd8d42007-12-21 16:27:24 -05003059 free_extent_buffer(eb);
3060
Chris Masonbf4ef672008-05-08 13:26:18 -04003061 ret = find_root_for_ref(extent_root, path, &found_key,
3062 level, 0, &found_root,
3063 extent_key->objectid);
3064
3065 if (ret)
3066 goto out;
3067
Chris Mason7d9eb122008-07-08 14:19:17 -04003068 /*
3069 * right here almost anything could happen to our key,
3070 * but that's ok. The cow below will either relocate it
3071 * or someone else will have relocated it. Either way,
3072 * it is in a different spot than it was before and
3073 * we're happy.
3074 */
3075
Chris Masonbf4ef672008-05-08 13:26:18 -04003076 trans = btrfs_start_transaction(found_root, 1);
3077
Chris Mason7d9eb122008-07-08 14:19:17 -04003078 if (found_root == extent_root->fs_info->extent_root ||
3079 found_root == extent_root->fs_info->chunk_root ||
3080 found_root == extent_root->fs_info->dev_root) {
3081 needs_lock = 1;
3082 mutex_lock(&extent_root->fs_info->alloc_mutex);
3083 }
3084
Chris Masonedbd8d42007-12-21 16:27:24 -05003085 path->lowest_level = level;
Chris Mason8f662a72008-01-02 10:01:11 -05003086 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05003087 ret = btrfs_search_slot(trans, found_root, &found_key, path,
3088 0, 1);
3089 path->lowest_level = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05003090 btrfs_release_path(found_root, path);
Chris Mason7d9eb122008-07-08 14:19:17 -04003091
Chris Mason0ef3e662008-05-24 14:04:53 -04003092 if (found_root == found_root->fs_info->extent_root)
3093 btrfs_extent_post_op(trans, found_root);
Chris Mason7d9eb122008-07-08 14:19:17 -04003094 if (needs_lock)
3095 mutex_unlock(&extent_root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003096
Chris Mason7d9eb122008-07-08 14:19:17 -04003097 btrfs_end_transaction(trans, found_root);
3098
3099 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003100out:
Chris Mason7d9eb122008-07-08 14:19:17 -04003101 mutex_lock(&extent_root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003102 return 0;
3103}
3104
Chris Masona061fc82008-05-07 11:43:44 -04003105static int noinline del_extent_zero(struct btrfs_root *extent_root,
3106 struct btrfs_path *path,
3107 struct btrfs_key *extent_key)
3108{
3109 int ret;
3110 struct btrfs_trans_handle *trans;
3111
3112 trans = btrfs_start_transaction(extent_root, 1);
3113 ret = btrfs_search_slot(trans, extent_root, extent_key, path, -1, 1);
3114 if (ret > 0) {
3115 ret = -EIO;
3116 goto out;
3117 }
3118 if (ret < 0)
3119 goto out;
3120 ret = btrfs_del_item(trans, extent_root, path);
3121out:
3122 btrfs_end_transaction(trans, extent_root);
3123 return ret;
3124}
3125
Chris Mason98ed5172008-01-03 10:01:48 -05003126static int noinline relocate_one_extent(struct btrfs_root *extent_root,
3127 struct btrfs_path *path,
3128 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05003129{
3130 struct btrfs_key key;
3131 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05003132 struct extent_buffer *leaf;
Chris Mason0ef3e662008-05-24 14:04:53 -04003133 u64 last_file_objectid = 0;
3134 u64 last_file_root = 0;
3135 u64 last_file_offset = (u64)-1;
3136 u64 last_extent = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05003137 u32 nritems;
3138 u32 item_size;
3139 int ret = 0;
3140
Chris Masona061fc82008-05-07 11:43:44 -04003141 if (extent_key->objectid == 0) {
3142 ret = del_extent_zero(extent_root, path, extent_key);
3143 goto out;
3144 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003145 key.objectid = extent_key->objectid;
3146 key.type = BTRFS_EXTENT_REF_KEY;
3147 key.offset = 0;
3148
3149 while(1) {
3150 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3151
Chris Masonedbd8d42007-12-21 16:27:24 -05003152 if (ret < 0)
3153 goto out;
3154
3155 ret = 0;
3156 leaf = path->nodes[0];
3157 nritems = btrfs_header_nritems(leaf);
Chris Masona061fc82008-05-07 11:43:44 -04003158 if (path->slots[0] == nritems) {
3159 ret = btrfs_next_leaf(extent_root, path);
3160 if (ret > 0) {
3161 ret = 0;
3162 goto out;
3163 }
3164 if (ret < 0)
3165 goto out;
Chris Masonbf4ef672008-05-08 13:26:18 -04003166 leaf = path->nodes[0];
Chris Masona061fc82008-05-07 11:43:44 -04003167 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003168
3169 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masona061fc82008-05-07 11:43:44 -04003170 if (found_key.objectid != extent_key->objectid) {
Chris Masonedbd8d42007-12-21 16:27:24 -05003171 break;
Chris Masona061fc82008-05-07 11:43:44 -04003172 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003173
Chris Masona061fc82008-05-07 11:43:44 -04003174 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
Chris Masonedbd8d42007-12-21 16:27:24 -05003175 break;
Chris Masona061fc82008-05-07 11:43:44 -04003176 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003177
3178 key.offset = found_key.offset + 1;
3179 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3180
Chris Mason0ef3e662008-05-24 14:04:53 -04003181 ret = relocate_one_reference(extent_root, path, extent_key,
3182 &last_file_objectid,
3183 &last_file_offset,
3184 &last_file_root, last_extent);
Chris Masonedbd8d42007-12-21 16:27:24 -05003185 if (ret)
3186 goto out;
Chris Mason0ef3e662008-05-24 14:04:53 -04003187 last_extent = extent_key->objectid;
Chris Masonedbd8d42007-12-21 16:27:24 -05003188 }
3189 ret = 0;
3190out:
3191 btrfs_release_path(extent_root, path);
3192 return ret;
3193}
3194
Chris Masonec44a352008-04-28 15:29:52 -04003195static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
3196{
3197 u64 num_devices;
3198 u64 stripped = BTRFS_BLOCK_GROUP_RAID0 |
3199 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
3200
Chris Masona061fc82008-05-07 11:43:44 -04003201 num_devices = root->fs_info->fs_devices->num_devices;
Chris Masonec44a352008-04-28 15:29:52 -04003202 if (num_devices == 1) {
3203 stripped |= BTRFS_BLOCK_GROUP_DUP;
3204 stripped = flags & ~stripped;
3205
3206 /* turn raid0 into single device chunks */
3207 if (flags & BTRFS_BLOCK_GROUP_RAID0)
3208 return stripped;
3209
3210 /* turn mirroring into duplication */
3211 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
3212 BTRFS_BLOCK_GROUP_RAID10))
3213 return stripped | BTRFS_BLOCK_GROUP_DUP;
3214 return flags;
3215 } else {
3216 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04003217 if (flags & stripped)
3218 return flags;
3219
3220 stripped |= BTRFS_BLOCK_GROUP_DUP;
3221 stripped = flags & ~stripped;
3222
3223 /* switch duplicated blocks with raid1 */
3224 if (flags & BTRFS_BLOCK_GROUP_DUP)
3225 return stripped | BTRFS_BLOCK_GROUP_RAID1;
3226
3227 /* turn single device chunks into raid0 */
3228 return stripped | BTRFS_BLOCK_GROUP_RAID0;
3229 }
3230 return flags;
3231}
3232
Chris Mason0ef3e662008-05-24 14:04:53 -04003233int __alloc_chunk_for_shrink(struct btrfs_root *root,
3234 struct btrfs_block_group_cache *shrink_block_group,
3235 int force)
3236{
3237 struct btrfs_trans_handle *trans;
3238 u64 new_alloc_flags;
3239 u64 calc;
3240
Chris Masonc286ac42008-07-22 23:06:41 -04003241 spin_lock(&shrink_block_group->lock);
Chris Mason0ef3e662008-05-24 14:04:53 -04003242 if (btrfs_block_group_used(&shrink_block_group->item) > 0) {
Chris Masonc286ac42008-07-22 23:06:41 -04003243 spin_unlock(&shrink_block_group->lock);
Chris Mason7d9eb122008-07-08 14:19:17 -04003244 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonc286ac42008-07-22 23:06:41 -04003245
Chris Mason0ef3e662008-05-24 14:04:53 -04003246 trans = btrfs_start_transaction(root, 1);
Chris Mason7d9eb122008-07-08 14:19:17 -04003247 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masonc286ac42008-07-22 23:06:41 -04003248 spin_lock(&shrink_block_group->lock);
Chris Mason7d9eb122008-07-08 14:19:17 -04003249
Chris Mason0ef3e662008-05-24 14:04:53 -04003250 new_alloc_flags = update_block_group_flags(root,
3251 shrink_block_group->flags);
3252 if (new_alloc_flags != shrink_block_group->flags) {
3253 calc =
3254 btrfs_block_group_used(&shrink_block_group->item);
3255 } else {
3256 calc = shrink_block_group->key.offset;
3257 }
Chris Masonc286ac42008-07-22 23:06:41 -04003258 spin_unlock(&shrink_block_group->lock);
3259
Chris Mason0ef3e662008-05-24 14:04:53 -04003260 do_chunk_alloc(trans, root->fs_info->extent_root,
3261 calc + 2 * 1024 * 1024, new_alloc_flags, force);
Chris Mason7d9eb122008-07-08 14:19:17 -04003262
3263 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason0ef3e662008-05-24 14:04:53 -04003264 btrfs_end_transaction(trans, root);
Chris Mason7d9eb122008-07-08 14:19:17 -04003265 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masonc286ac42008-07-22 23:06:41 -04003266 } else
3267 spin_unlock(&shrink_block_group->lock);
Chris Mason0ef3e662008-05-24 14:04:53 -04003268 return 0;
3269}
3270
Chris Mason8f18cf12008-04-25 16:53:30 -04003271int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 shrink_start)
Chris Masonedbd8d42007-12-21 16:27:24 -05003272{
3273 struct btrfs_trans_handle *trans;
3274 struct btrfs_root *tree_root = root->fs_info->tree_root;
3275 struct btrfs_path *path;
3276 u64 cur_byte;
3277 u64 total_found;
Chris Mason8f18cf12008-04-25 16:53:30 -04003278 u64 shrink_last_byte;
3279 struct btrfs_block_group_cache *shrink_block_group;
Chris Masonedbd8d42007-12-21 16:27:24 -05003280 struct btrfs_fs_info *info = root->fs_info;
Chris Masonedbd8d42007-12-21 16:27:24 -05003281 struct btrfs_key key;
Yan73e48b22008-01-03 14:14:39 -05003282 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05003283 struct extent_buffer *leaf;
3284 u32 nritems;
3285 int ret;
Chris Masona061fc82008-05-07 11:43:44 -04003286 int progress;
Chris Masonedbd8d42007-12-21 16:27:24 -05003287
Chris Mason925baed2008-06-25 16:01:30 -04003288 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04003289 shrink_block_group = btrfs_lookup_block_group(root->fs_info,
3290 shrink_start);
3291 BUG_ON(!shrink_block_group);
3292
Chris Mason0ef3e662008-05-24 14:04:53 -04003293 shrink_last_byte = shrink_block_group->key.objectid +
3294 shrink_block_group->key.offset;
Chris Mason8f18cf12008-04-25 16:53:30 -04003295
3296 shrink_block_group->space_info->total_bytes -=
3297 shrink_block_group->key.offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05003298 path = btrfs_alloc_path();
3299 root = root->fs_info->extent_root;
Chris Mason8f662a72008-01-02 10:01:11 -05003300 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05003301
Chris Mason323da792008-05-09 11:46:48 -04003302 printk("btrfs relocating block group %llu flags %llu\n",
3303 (unsigned long long)shrink_start,
3304 (unsigned long long)shrink_block_group->flags);
3305
Chris Mason0ef3e662008-05-24 14:04:53 -04003306 __alloc_chunk_for_shrink(root, shrink_block_group, 1);
Chris Mason323da792008-05-09 11:46:48 -04003307
Chris Mason0ef3e662008-05-24 14:04:53 -04003308again:
3309
Chris Mason8f18cf12008-04-25 16:53:30 -04003310 shrink_block_group->ro = 1;
3311
Chris Masonedbd8d42007-12-21 16:27:24 -05003312 total_found = 0;
Chris Masona061fc82008-05-07 11:43:44 -04003313 progress = 0;
Chris Mason8f18cf12008-04-25 16:53:30 -04003314 key.objectid = shrink_start;
Chris Masonedbd8d42007-12-21 16:27:24 -05003315 key.offset = 0;
3316 key.type = 0;
Yan73e48b22008-01-03 14:14:39 -05003317 cur_byte = key.objectid;
Chris Mason4313b392008-01-03 09:08:48 -05003318
Chris Masonea8c2812008-08-04 23:17:27 -04003319 mutex_unlock(&root->fs_info->alloc_mutex);
3320
3321 btrfs_start_delalloc_inodes(root);
Yan Zheng7ea394f2008-08-05 13:05:02 -04003322 btrfs_wait_ordered_extents(tree_root, 0);
Chris Masonea8c2812008-08-04 23:17:27 -04003323
3324 mutex_lock(&root->fs_info->alloc_mutex);
3325
Yan73e48b22008-01-03 14:14:39 -05003326 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3327 if (ret < 0)
3328 goto out;
3329
Chris Mason0b86a832008-03-24 15:01:56 -04003330 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
Yan73e48b22008-01-03 14:14:39 -05003331 if (ret < 0)
3332 goto out;
Chris Mason8f18cf12008-04-25 16:53:30 -04003333
Yan73e48b22008-01-03 14:14:39 -05003334 if (ret == 0) {
3335 leaf = path->nodes[0];
3336 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04003337 if (found_key.objectid + found_key.offset > shrink_start &&
3338 found_key.objectid < shrink_last_byte) {
Yan73e48b22008-01-03 14:14:39 -05003339 cur_byte = found_key.objectid;
3340 key.objectid = cur_byte;
3341 }
3342 }
3343 btrfs_release_path(root, path);
3344
3345 while(1) {
Chris Masonedbd8d42007-12-21 16:27:24 -05003346 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3347 if (ret < 0)
3348 goto out;
Yan73e48b22008-01-03 14:14:39 -05003349
Chris Mason7d9eb122008-07-08 14:19:17 -04003350next:
Chris Masonedbd8d42007-12-21 16:27:24 -05003351 leaf = path->nodes[0];
Chris Masonedbd8d42007-12-21 16:27:24 -05003352 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05003353 if (path->slots[0] >= nritems) {
3354 ret = btrfs_next_leaf(root, path);
3355 if (ret < 0)
3356 goto out;
3357 if (ret == 1) {
3358 ret = 0;
3359 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05003360 }
Yan73e48b22008-01-03 14:14:39 -05003361 leaf = path->nodes[0];
3362 nritems = btrfs_header_nritems(leaf);
3363 }
3364
3365 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason725c8462008-01-04 16:47:16 -05003366
Chris Mason8f18cf12008-04-25 16:53:30 -04003367 if (found_key.objectid >= shrink_last_byte)
3368 break;
3369
Chris Mason725c8462008-01-04 16:47:16 -05003370 if (progress && need_resched()) {
3371 memcpy(&key, &found_key, sizeof(key));
Chris Mason725c8462008-01-04 16:47:16 -05003372 cond_resched();
Chris Mason725c8462008-01-04 16:47:16 -05003373 btrfs_release_path(root, path);
3374 btrfs_search_slot(NULL, root, &key, path, 0, 0);
3375 progress = 0;
3376 goto next;
3377 }
3378 progress = 1;
3379
Yan73e48b22008-01-03 14:14:39 -05003380 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_ITEM_KEY ||
3381 found_key.objectid + found_key.offset <= cur_byte) {
Chris Mason0ef3e662008-05-24 14:04:53 -04003382 memcpy(&key, &found_key, sizeof(key));
3383 key.offset++;
Yan73e48b22008-01-03 14:14:39 -05003384 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05003385 goto next;
3386 }
Yan73e48b22008-01-03 14:14:39 -05003387
Chris Masonedbd8d42007-12-21 16:27:24 -05003388 total_found++;
3389 cur_byte = found_key.objectid + found_key.offset;
3390 key.objectid = cur_byte;
3391 btrfs_release_path(root, path);
3392 ret = relocate_one_extent(root, path, &found_key);
Chris Mason0ef3e662008-05-24 14:04:53 -04003393 __alloc_chunk_for_shrink(root, shrink_block_group, 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05003394 }
3395
3396 btrfs_release_path(root, path);
3397
3398 if (total_found > 0) {
Chris Mason323da792008-05-09 11:46:48 -04003399 printk("btrfs relocate found %llu last extent was %llu\n",
3400 (unsigned long long)total_found,
3401 (unsigned long long)found_key.objectid);
Chris Mason7d9eb122008-07-08 14:19:17 -04003402 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003403 trans = btrfs_start_transaction(tree_root, 1);
3404 btrfs_commit_transaction(trans, tree_root);
3405
Chris Masonedbd8d42007-12-21 16:27:24 -05003406 btrfs_clean_old_snapshots(tree_root);
Chris Masonedbd8d42007-12-21 16:27:24 -05003407
Chris Masonea8c2812008-08-04 23:17:27 -04003408 btrfs_start_delalloc_inodes(root);
Yan Zheng7ea394f2008-08-05 13:05:02 -04003409 btrfs_wait_ordered_extents(tree_root, 0);
Chris Mason3eaa2882008-07-24 11:57:52 -04003410
Chris Masonedbd8d42007-12-21 16:27:24 -05003411 trans = btrfs_start_transaction(tree_root, 1);
3412 btrfs_commit_transaction(trans, tree_root);
Chris Mason7d9eb122008-07-08 14:19:17 -04003413 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003414 goto again;
3415 }
3416
Chris Mason8f18cf12008-04-25 16:53:30 -04003417 /*
3418 * we've freed all the extents, now remove the block
3419 * group item from the tree
3420 */
Chris Mason7d9eb122008-07-08 14:19:17 -04003421 mutex_unlock(&root->fs_info->alloc_mutex);
3422
Chris Masonedbd8d42007-12-21 16:27:24 -05003423 trans = btrfs_start_transaction(root, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04003424
Chris Mason7d9eb122008-07-08 14:19:17 -04003425 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04003426 memcpy(&key, &shrink_block_group->key, sizeof(key));
Chris Mason4313b392008-01-03 09:08:48 -05003427
Chris Mason8f18cf12008-04-25 16:53:30 -04003428 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3429 if (ret > 0)
3430 ret = -EIO;
Josef Bacik8e8a1e32008-07-24 12:17:14 -04003431 if (ret < 0) {
3432 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04003433 goto out;
Josef Bacik8e8a1e32008-07-24 12:17:14 -04003434 }
Yan73e48b22008-01-03 14:14:39 -05003435
Chris Mason0ef3e662008-05-24 14:04:53 -04003436 clear_extent_bits(&info->block_group_cache, key.objectid,
3437 key.objectid + key.offset - 1,
Chris Mason8f18cf12008-04-25 16:53:30 -04003438 (unsigned int)-1, GFP_NOFS);
Yan73e48b22008-01-03 14:14:39 -05003439
Chris Mason0ef3e662008-05-24 14:04:53 -04003440
3441 clear_extent_bits(&info->free_space_cache,
3442 key.objectid, key.objectid + key.offset - 1,
3443 (unsigned int)-1, GFP_NOFS);
3444
Chris Masond7a029a2008-08-04 23:17:26 -04003445 /*
Chris Mason0ef3e662008-05-24 14:04:53 -04003446 memset(shrink_block_group, 0, sizeof(*shrink_block_group));
3447 kfree(shrink_block_group);
Chris Masond7a029a2008-08-04 23:17:26 -04003448 */
Chris Mason0ef3e662008-05-24 14:04:53 -04003449
Chris Mason8f18cf12008-04-25 16:53:30 -04003450 btrfs_del_item(trans, root, path);
Chris Mason7d9eb122008-07-08 14:19:17 -04003451 btrfs_release_path(root, path);
3452 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003453 btrfs_commit_transaction(trans, root);
Chris Mason0ef3e662008-05-24 14:04:53 -04003454
Chris Mason7d9eb122008-07-08 14:19:17 -04003455 mutex_lock(&root->fs_info->alloc_mutex);
3456
Chris Mason0ef3e662008-05-24 14:04:53 -04003457 /* the code to unpin extents might set a few bits in the free
3458 * space cache for this range again
3459 */
3460 clear_extent_bits(&info->free_space_cache,
3461 key.objectid, key.objectid + key.offset - 1,
3462 (unsigned int)-1, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05003463out:
3464 btrfs_free_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04003465 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003466 return ret;
3467}
3468
Chris Mason0b86a832008-03-24 15:01:56 -04003469int find_first_block_group(struct btrfs_root *root, struct btrfs_path *path,
3470 struct btrfs_key *key)
3471{
Chris Mason925baed2008-06-25 16:01:30 -04003472 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003473 struct btrfs_key found_key;
3474 struct extent_buffer *leaf;
3475 int slot;
3476
3477 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
3478 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04003479 goto out;
3480
Chris Mason0b86a832008-03-24 15:01:56 -04003481 while(1) {
3482 slot = path->slots[0];
3483 leaf = path->nodes[0];
3484 if (slot >= btrfs_header_nritems(leaf)) {
3485 ret = btrfs_next_leaf(root, path);
3486 if (ret == 0)
3487 continue;
3488 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04003489 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04003490 break;
3491 }
3492 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3493
3494 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04003495 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
3496 ret = 0;
3497 goto out;
3498 }
Chris Mason0b86a832008-03-24 15:01:56 -04003499 path->slots[0]++;
3500 }
3501 ret = -ENOENT;
Chris Mason925baed2008-06-25 16:01:30 -04003502out:
Chris Mason0b86a832008-03-24 15:01:56 -04003503 return ret;
3504}
3505
Chris Mason9078a3e2007-04-26 16:46:15 -04003506int btrfs_read_block_groups(struct btrfs_root *root)
3507{
3508 struct btrfs_path *path;
3509 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04003510 int bit;
Chris Mason9078a3e2007-04-26 16:46:15 -04003511 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04003512 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04003513 struct btrfs_space_info *space_info;
Chris Masond1310b22008-01-24 16:13:08 -05003514 struct extent_io_tree *block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04003515 struct btrfs_key key;
3516 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04003517 struct extent_buffer *leaf;
Chris Mason96b51792007-10-15 16:15:19 -04003518
3519 block_group_cache = &info->block_group_cache;
Chris Masonbe744172007-05-06 10:15:01 -04003520 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04003521 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003522 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003523 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04003524 path = btrfs_alloc_path();
3525 if (!path)
3526 return -ENOMEM;
3527
Chris Mason925baed2008-06-25 16:01:30 -04003528 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason9078a3e2007-04-26 16:46:15 -04003529 while(1) {
Chris Mason0b86a832008-03-24 15:01:56 -04003530 ret = find_first_block_group(root, path, &key);
3531 if (ret > 0) {
3532 ret = 0;
3533 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04003534 }
Chris Mason0b86a832008-03-24 15:01:56 -04003535 if (ret != 0)
3536 goto error;
3537
Chris Mason5f39d392007-10-15 16:14:19 -04003538 leaf = path->nodes[0];
3539 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04003540 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04003541 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04003542 ret = -ENOMEM;
Chris Mason9078a3e2007-04-26 16:46:15 -04003543 break;
3544 }
Chris Mason3e1ad542007-05-07 20:03:49 -04003545
Chris Masonc286ac42008-07-22 23:06:41 -04003546 spin_lock_init(&cache->lock);
Chris Mason5f39d392007-10-15 16:14:19 -04003547 read_extent_buffer(leaf, &cache->item,
3548 btrfs_item_ptr_offset(leaf, path->slots[0]),
3549 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04003550 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason0b86a832008-03-24 15:01:56 -04003551
Chris Mason9078a3e2007-04-26 16:46:15 -04003552 key.objectid = found_key.objectid + found_key.offset;
3553 btrfs_release_path(root, path);
Chris Mason0b86a832008-03-24 15:01:56 -04003554 cache->flags = btrfs_block_group_flags(&cache->item);
3555 bit = 0;
3556 if (cache->flags & BTRFS_BLOCK_GROUP_DATA) {
Chris Mason96b51792007-10-15 16:15:19 -04003557 bit = BLOCK_GROUP_DATA;
Chris Mason0b86a832008-03-24 15:01:56 -04003558 } else if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
3559 bit = BLOCK_GROUP_SYSTEM;
3560 } else if (cache->flags & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason96b51792007-10-15 16:15:19 -04003561 bit = BLOCK_GROUP_METADATA;
Chris Mason31f3c992007-04-30 15:25:45 -04003562 }
Chris Mason8790d502008-04-03 16:29:03 -04003563 set_avail_alloc_bits(info, cache->flags);
Chris Mason96b51792007-10-15 16:15:19 -04003564
Chris Mason6324fbf2008-03-24 15:01:59 -04003565 ret = update_space_info(info, cache->flags, found_key.offset,
3566 btrfs_block_group_used(&cache->item),
3567 &space_info);
3568 BUG_ON(ret);
3569 cache->space_info = space_info;
3570
Chris Mason96b51792007-10-15 16:15:19 -04003571 /* use EXTENT_LOCKED to prevent merging */
3572 set_extent_bits(block_group_cache, found_key.objectid,
3573 found_key.objectid + found_key.offset - 1,
Chris Masonc286ac42008-07-22 23:06:41 -04003574 EXTENT_LOCKED, GFP_NOFS);
Chris Mason96b51792007-10-15 16:15:19 -04003575 set_state_private(block_group_cache, found_key.objectid,
Jens Axboeae2f5412007-10-19 09:22:59 -04003576 (unsigned long)cache);
Chris Masonc286ac42008-07-22 23:06:41 -04003577 set_extent_bits(block_group_cache, found_key.objectid,
3578 found_key.objectid + found_key.offset - 1,
3579 bit | EXTENT_LOCKED, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04003580 if (key.objectid >=
Chris Masondb945352007-10-15 16:15:53 -04003581 btrfs_super_total_bytes(&info->super_copy))
Chris Mason9078a3e2007-04-26 16:46:15 -04003582 break;
3583 }
Chris Mason0b86a832008-03-24 15:01:56 -04003584 ret = 0;
3585error:
Chris Mason9078a3e2007-04-26 16:46:15 -04003586 btrfs_free_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04003587 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04003588 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003589}
Chris Mason6324fbf2008-03-24 15:01:59 -04003590
3591int btrfs_make_block_group(struct btrfs_trans_handle *trans,
3592 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04003593 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04003594 u64 size)
3595{
3596 int ret;
3597 int bit = 0;
3598 struct btrfs_root *extent_root;
3599 struct btrfs_block_group_cache *cache;
3600 struct extent_io_tree *block_group_cache;
3601
Chris Mason7d9eb122008-07-08 14:19:17 -04003602 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Mason6324fbf2008-03-24 15:01:59 -04003603 extent_root = root->fs_info->extent_root;
3604 block_group_cache = &root->fs_info->block_group_cache;
3605
Chris Mason8f18cf12008-04-25 16:53:30 -04003606 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason6324fbf2008-03-24 15:01:59 -04003607 BUG_ON(!cache);
Chris Masone17cade2008-04-15 15:41:47 -04003608 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04003609 cache->key.offset = size;
Chris Masonc286ac42008-07-22 23:06:41 -04003610 spin_lock_init(&cache->lock);
Chris Mason6324fbf2008-03-24 15:01:59 -04003611 btrfs_set_key_type(&cache->key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason0ef3e662008-05-24 14:04:53 -04003612
Chris Mason6324fbf2008-03-24 15:01:59 -04003613 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04003614 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
3615 cache->flags = type;
3616 btrfs_set_block_group_flags(&cache->item, type);
3617
3618 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
3619 &cache->space_info);
3620 BUG_ON(ret);
3621
Chris Masond18a2c42008-04-04 15:40:00 -04003622 bit = block_group_state_bits(type);
Chris Masone17cade2008-04-15 15:41:47 -04003623 set_extent_bits(block_group_cache, chunk_offset,
3624 chunk_offset + size - 1,
Chris Masonc286ac42008-07-22 23:06:41 -04003625 EXTENT_LOCKED, GFP_NOFS);
Chris Masone17cade2008-04-15 15:41:47 -04003626 set_state_private(block_group_cache, chunk_offset,
3627 (unsigned long)cache);
Chris Masonc286ac42008-07-22 23:06:41 -04003628 set_extent_bits(block_group_cache, chunk_offset,
3629 chunk_offset + size - 1,
3630 bit | EXTENT_LOCKED, GFP_NOFS);
3631
Chris Mason6324fbf2008-03-24 15:01:59 -04003632 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
3633 sizeof(cache->item));
3634 BUG_ON(ret);
3635
3636 finish_current_insert(trans, extent_root);
3637 ret = del_pending_extents(trans, extent_root);
3638 BUG_ON(ret);
Chris Masond18a2c42008-04-04 15:40:00 -04003639 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04003640
Chris Mason6324fbf2008-03-24 15:01:59 -04003641 return 0;
3642}