blob: 74bcd48a9c43a6d0b25da1ee3915d1c6aade3dfa [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
896int btrfs_cross_ref_exists(struct btrfs_root *root,
897 struct btrfs_key *key, u64 bytenr)
898{
899 struct btrfs_trans_handle *trans;
900 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
911 BUG_ON(key->type != BTRFS_EXTENT_DATA_KEY);
912 ret = get_reference_status(root, bytenr, 0, key->objectid,
913 &min_generation, &ref_count);
914 if (ret)
915 return ret;
916
917 if (ref_count != 1)
918 return 1;
919
920 trans = btrfs_start_transaction(root, 0);
921 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);
976 btrfs_end_transaction(trans, root);
977 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -0500978}
Chris Masonc5739bb2007-04-10 09:27:04 -0400979
Chris Masone089f052007-03-16 16:20:31 -0400980int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Yan Zheng31153d82008-07-28 15:32:19 -0400981 struct extent_buffer *buf, int cache_ref)
Chris Mason02217ed2007-03-02 16:08:05 -0500982{
Chris Masondb945352007-10-15 16:15:53 -0400983 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400984 u32 nritems;
985 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -0400986 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -0500987 int i;
Chris Masondb945352007-10-15 16:15:53 -0400988 int level;
Chris Mason6407bf62007-03-27 06:33:00 -0400989 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400990 int faili;
Yan Zheng31153d82008-07-28 15:32:19 -0400991 int nr_file_extents = 0;
Chris Masona28ec192007-03-06 20:08:01 -0500992
Chris Mason3768f362007-03-13 16:47:54 -0400993 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500994 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400995
Chris Masondb945352007-10-15 16:15:53 -0400996 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400997 nritems = btrfs_header_nritems(buf);
998 for (i = 0; i < nritems; i++) {
Chris Masone34a5b42008-07-22 12:08:37 -0400999 cond_resched();
Chris Masondb945352007-10-15 16:15:53 -04001000 if (level == 0) {
1001 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001002 btrfs_item_key_to_cpu(buf, &key, i);
1003 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04001004 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001005 fi = btrfs_item_ptr(buf, i,
Chris Mason6407bf62007-03-27 06:33:00 -04001006 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001007 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason236454d2007-04-19 13:37:44 -04001008 BTRFS_FILE_EXTENT_INLINE)
1009 continue;
Chris Masondb945352007-10-15 16:15:53 -04001010 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
1011 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04001012 continue;
Chris Mason4a096752008-07-21 10:29:44 -04001013
Yan Zheng31153d82008-07-28 15:32:19 -04001014 if (buf != root->commit_root)
1015 nr_file_extents++;
1016
Chris Mason4a096752008-07-21 10:29:44 -04001017 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04001018 ret = __btrfs_inc_extent_ref(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001019 btrfs_file_extent_disk_num_bytes(buf, fi),
1020 root->root_key.objectid, trans->transid,
1021 key.objectid, key.offset);
Chris Mason4a096752008-07-21 10:29:44 -04001022 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason54aa1f42007-06-22 14:16:25 -04001023 if (ret) {
1024 faili = i;
Chris Mason4a096752008-07-21 10:29:44 -04001025 WARN_ON(1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001026 goto fail;
1027 }
Chris Mason6407bf62007-03-27 06:33:00 -04001028 } else {
Chris Masondb945352007-10-15 16:15:53 -04001029 bytenr = btrfs_node_blockptr(buf, i);
Chris Mason6caab482007-12-13 09:48:07 -05001030 btrfs_node_key_to_cpu(buf, &key, i);
Chris Mason4a096752008-07-21 10:29:44 -04001031
1032 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04001033 ret = __btrfs_inc_extent_ref(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001034 btrfs_level_size(root, level - 1),
1035 root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -05001036 trans->transid,
1037 level - 1, key.objectid);
Chris Mason4a096752008-07-21 10:29:44 -04001038 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason54aa1f42007-06-22 14:16:25 -04001039 if (ret) {
1040 faili = i;
Chris Mason4a096752008-07-21 10:29:44 -04001041 WARN_ON(1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001042 goto fail;
1043 }
Chris Mason6407bf62007-03-27 06:33:00 -04001044 }
Chris Mason02217ed2007-03-02 16:08:05 -05001045 }
Yan Zheng31153d82008-07-28 15:32:19 -04001046 /* cache orignal leaf block's references */
1047 if (level == 0 && cache_ref && buf != root->commit_root) {
1048 struct btrfs_leaf_ref *ref;
1049 struct btrfs_extent_info *info;
1050
Yanbcc63ab2008-07-30 16:29:20 -04001051 ref = btrfs_alloc_leaf_ref(root, nr_file_extents);
Yan Zheng31153d82008-07-28 15:32:19 -04001052 if (!ref) {
1053 WARN_ON(1);
1054 goto out;
1055 }
1056
Chris Mason47ac14f2008-07-31 09:46:18 -04001057 ref->root_gen = root->root_key.offset;
Yan Zheng31153d82008-07-28 15:32:19 -04001058 ref->bytenr = buf->start;
1059 ref->owner = btrfs_header_owner(buf);
1060 ref->generation = btrfs_header_generation(buf);
1061 ref->nritems = nr_file_extents;
1062 info = ref->extents;
Yanbcc63ab2008-07-30 16:29:20 -04001063
Yan Zheng31153d82008-07-28 15:32:19 -04001064 for (i = 0; nr_file_extents > 0 && i < nritems; i++) {
1065 u64 disk_bytenr;
1066 btrfs_item_key_to_cpu(buf, &key, i);
1067 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
1068 continue;
1069 fi = btrfs_item_ptr(buf, i,
1070 struct btrfs_file_extent_item);
1071 if (btrfs_file_extent_type(buf, fi) ==
1072 BTRFS_FILE_EXTENT_INLINE)
1073 continue;
1074 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
1075 if (disk_bytenr == 0)
1076 continue;
1077
1078 info->bytenr = disk_bytenr;
1079 info->num_bytes =
1080 btrfs_file_extent_disk_num_bytes(buf, fi);
1081 info->objectid = key.objectid;
1082 info->offset = key.offset;
1083 info++;
1084 }
1085
1086 BUG_ON(!root->ref_tree);
1087 ret = btrfs_add_leaf_ref(root, ref);
1088 WARN_ON(ret);
Yanbcc63ab2008-07-30 16:29:20 -04001089 btrfs_free_leaf_ref(root, ref);
Yan Zheng31153d82008-07-28 15:32:19 -04001090 }
1091out:
Chris Mason02217ed2007-03-02 16:08:05 -05001092 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04001093fail:
Chris Masonccd467d2007-06-28 15:57:36 -04001094 WARN_ON(1);
Chris Mason7bb86312007-12-11 09:25:06 -05001095#if 0
Chris Mason54aa1f42007-06-22 14:16:25 -04001096 for (i =0; i < faili; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001097 if (level == 0) {
1098 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001099 btrfs_item_key_to_cpu(buf, &key, i);
1100 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04001101 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001102 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04001103 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001104 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04001105 BTRFS_FILE_EXTENT_INLINE)
1106 continue;
Chris Masondb945352007-10-15 16:15:53 -04001107 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
1108 if (disk_bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04001109 continue;
Chris Masondb945352007-10-15 16:15:53 -04001110 err = btrfs_free_extent(trans, root, disk_bytenr,
1111 btrfs_file_extent_disk_num_bytes(buf,
Chris Mason5f39d392007-10-15 16:14:19 -04001112 fi), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001113 BUG_ON(err);
1114 } else {
Chris Masondb945352007-10-15 16:15:53 -04001115 bytenr = btrfs_node_blockptr(buf, i);
1116 err = btrfs_free_extent(trans, root, bytenr,
1117 btrfs_level_size(root, level - 1), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001118 BUG_ON(err);
1119 }
1120 }
Chris Mason7bb86312007-12-11 09:25:06 -05001121#endif
Chris Mason54aa1f42007-06-22 14:16:25 -04001122 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05001123}
1124
Chris Mason9078a3e2007-04-26 16:46:15 -04001125static int write_one_cache_group(struct btrfs_trans_handle *trans,
1126 struct btrfs_root *root,
1127 struct btrfs_path *path,
1128 struct btrfs_block_group_cache *cache)
1129{
1130 int ret;
1131 int pending_ret;
1132 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001133 unsigned long bi;
1134 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04001135
Chris Mason9078a3e2007-04-26 16:46:15 -04001136 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001137 if (ret < 0)
1138 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -04001139 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001140
1141 leaf = path->nodes[0];
1142 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
1143 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
1144 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -04001145 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -04001146fail:
Chris Mason9078a3e2007-04-26 16:46:15 -04001147 finish_current_insert(trans, extent_root);
1148 pending_ret = del_pending_extents(trans, extent_root);
1149 if (ret)
1150 return ret;
1151 if (pending_ret)
1152 return pending_ret;
1153 return 0;
1154
1155}
1156
Chris Mason96b51792007-10-15 16:15:19 -04001157int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1158 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04001159{
Chris Masond1310b22008-01-24 16:13:08 -05001160 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -04001161 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04001162 int ret;
1163 int err = 0;
1164 int werr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04001165 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04001166 u64 last = 0;
1167 u64 start;
1168 u64 end;
1169 u64 ptr;
Chris Mason9078a3e2007-04-26 16:46:15 -04001170
Chris Mason96b51792007-10-15 16:15:19 -04001171 block_group_cache = &root->fs_info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04001172 path = btrfs_alloc_path();
1173 if (!path)
1174 return -ENOMEM;
1175
Chris Mason925baed2008-06-25 16:01:30 -04001176 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason9078a3e2007-04-26 16:46:15 -04001177 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -04001178 ret = find_first_extent_bit(block_group_cache, last,
1179 &start, &end, BLOCK_GROUP_DIRTY);
1180 if (ret)
Chris Mason9078a3e2007-04-26 16:46:15 -04001181 break;
Chris Mason54aa1f42007-06-22 14:16:25 -04001182
Chris Mason96b51792007-10-15 16:15:19 -04001183 last = end + 1;
1184 ret = get_state_private(block_group_cache, start, &ptr);
1185 if (ret)
1186 break;
Jens Axboeae2f5412007-10-19 09:22:59 -04001187 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -04001188 err = write_one_cache_group(trans, root,
1189 path, cache);
1190 /*
1191 * if we fail to write the cache group, we want
1192 * to keep it marked dirty in hopes that a later
1193 * write will work
1194 */
1195 if (err) {
1196 werr = err;
1197 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04001198 }
Chris Mason96b51792007-10-15 16:15:19 -04001199 clear_extent_bits(block_group_cache, start, end,
1200 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001201 }
1202 btrfs_free_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04001203 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason9078a3e2007-04-26 16:46:15 -04001204 return werr;
1205}
1206
Chris Mason6324fbf2008-03-24 15:01:59 -04001207static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
1208 u64 flags)
1209{
1210 struct list_head *head = &info->space_info;
1211 struct list_head *cur;
1212 struct btrfs_space_info *found;
1213 list_for_each(cur, head) {
1214 found = list_entry(cur, struct btrfs_space_info, list);
1215 if (found->flags == flags)
1216 return found;
1217 }
1218 return NULL;
1219
1220}
1221
Chris Mason593060d2008-03-25 16:50:33 -04001222static int update_space_info(struct btrfs_fs_info *info, u64 flags,
1223 u64 total_bytes, u64 bytes_used,
1224 struct btrfs_space_info **space_info)
1225{
1226 struct btrfs_space_info *found;
1227
1228 found = __find_space_info(info, flags);
1229 if (found) {
1230 found->total_bytes += total_bytes;
1231 found->bytes_used += bytes_used;
Chris Mason8f18cf12008-04-25 16:53:30 -04001232 found->full = 0;
Chris Mason593060d2008-03-25 16:50:33 -04001233 WARN_ON(found->total_bytes < found->bytes_used);
1234 *space_info = found;
1235 return 0;
1236 }
1237 found = kmalloc(sizeof(*found), GFP_NOFS);
1238 if (!found)
1239 return -ENOMEM;
1240
1241 list_add(&found->list, &info->space_info);
1242 found->flags = flags;
1243 found->total_bytes = total_bytes;
1244 found->bytes_used = bytes_used;
1245 found->bytes_pinned = 0;
1246 found->full = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04001247 found->force_alloc = 0;
Chris Mason593060d2008-03-25 16:50:33 -04001248 *space_info = found;
1249 return 0;
1250}
1251
Chris Mason8790d502008-04-03 16:29:03 -04001252static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
1253{
1254 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
Chris Mason611f0e02008-04-03 16:29:03 -04001255 BTRFS_BLOCK_GROUP_RAID1 |
Chris Mason321aecc2008-04-16 10:49:51 -04001256 BTRFS_BLOCK_GROUP_RAID10 |
Chris Mason611f0e02008-04-03 16:29:03 -04001257 BTRFS_BLOCK_GROUP_DUP);
Chris Mason8790d502008-04-03 16:29:03 -04001258 if (extra_flags) {
1259 if (flags & BTRFS_BLOCK_GROUP_DATA)
1260 fs_info->avail_data_alloc_bits |= extra_flags;
1261 if (flags & BTRFS_BLOCK_GROUP_METADATA)
1262 fs_info->avail_metadata_alloc_bits |= extra_flags;
1263 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
1264 fs_info->avail_system_alloc_bits |= extra_flags;
1265 }
1266}
Chris Mason593060d2008-03-25 16:50:33 -04001267
Chris Masona061fc82008-05-07 11:43:44 -04001268static u64 reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04001269{
Chris Masona061fc82008-05-07 11:43:44 -04001270 u64 num_devices = root->fs_info->fs_devices->num_devices;
1271
1272 if (num_devices == 1)
1273 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0);
1274 if (num_devices < 4)
1275 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
1276
Chris Masonec44a352008-04-28 15:29:52 -04001277 if ((flags & BTRFS_BLOCK_GROUP_DUP) &&
1278 (flags & (BTRFS_BLOCK_GROUP_RAID1 |
Chris Masona061fc82008-05-07 11:43:44 -04001279 BTRFS_BLOCK_GROUP_RAID10))) {
Chris Masonec44a352008-04-28 15:29:52 -04001280 flags &= ~BTRFS_BLOCK_GROUP_DUP;
Chris Masona061fc82008-05-07 11:43:44 -04001281 }
Chris Masonec44a352008-04-28 15:29:52 -04001282
1283 if ((flags & BTRFS_BLOCK_GROUP_RAID1) &&
Chris Masona061fc82008-05-07 11:43:44 -04001284 (flags & BTRFS_BLOCK_GROUP_RAID10)) {
Chris Masonec44a352008-04-28 15:29:52 -04001285 flags &= ~BTRFS_BLOCK_GROUP_RAID1;
Chris Masona061fc82008-05-07 11:43:44 -04001286 }
Chris Masonec44a352008-04-28 15:29:52 -04001287
1288 if ((flags & BTRFS_BLOCK_GROUP_RAID0) &&
1289 ((flags & BTRFS_BLOCK_GROUP_RAID1) |
1290 (flags & BTRFS_BLOCK_GROUP_RAID10) |
1291 (flags & BTRFS_BLOCK_GROUP_DUP)))
1292 flags &= ~BTRFS_BLOCK_GROUP_RAID0;
1293 return flags;
1294}
1295
Chris Mason6324fbf2008-03-24 15:01:59 -04001296static int do_chunk_alloc(struct btrfs_trans_handle *trans,
1297 struct btrfs_root *extent_root, u64 alloc_bytes,
Chris Mason0ef3e662008-05-24 14:04:53 -04001298 u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04001299{
1300 struct btrfs_space_info *space_info;
1301 u64 thresh;
1302 u64 start;
1303 u64 num_bytes;
1304 int ret;
1305
Chris Masona061fc82008-05-07 11:43:44 -04001306 flags = reduce_alloc_profile(extent_root, flags);
Chris Masonec44a352008-04-28 15:29:52 -04001307
Chris Mason6324fbf2008-03-24 15:01:59 -04001308 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04001309 if (!space_info) {
1310 ret = update_space_info(extent_root->fs_info, flags,
1311 0, 0, &space_info);
1312 BUG_ON(ret);
1313 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001314 BUG_ON(!space_info);
1315
Chris Mason0ef3e662008-05-24 14:04:53 -04001316 if (space_info->force_alloc) {
1317 force = 1;
1318 space_info->force_alloc = 0;
1319 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001320 if (space_info->full)
Chris Mason925baed2008-06-25 16:01:30 -04001321 goto out;
Chris Mason6324fbf2008-03-24 15:01:59 -04001322
Chris Mason8790d502008-04-03 16:29:03 -04001323 thresh = div_factor(space_info->total_bytes, 6);
Chris Mason0ef3e662008-05-24 14:04:53 -04001324 if (!force &&
1325 (space_info->bytes_used + space_info->bytes_pinned + alloc_bytes) <
Chris Mason6324fbf2008-03-24 15:01:59 -04001326 thresh)
Chris Mason925baed2008-06-25 16:01:30 -04001327 goto out;
Chris Mason6324fbf2008-03-24 15:01:59 -04001328
Chris Mason925baed2008-06-25 16:01:30 -04001329 mutex_lock(&extent_root->fs_info->chunk_mutex);
Chris Mason6324fbf2008-03-24 15:01:59 -04001330 ret = btrfs_alloc_chunk(trans, extent_root, &start, &num_bytes, flags);
1331 if (ret == -ENOSPC) {
1332printk("space info full %Lu\n", flags);
1333 space_info->full = 1;
Chris Masona74a4b92008-06-25 16:01:31 -04001334 goto out_unlock;
Chris Mason6324fbf2008-03-24 15:01:59 -04001335 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001336 BUG_ON(ret);
1337
1338 ret = btrfs_make_block_group(trans, extent_root, 0, flags,
Chris Masone17cade2008-04-15 15:41:47 -04001339 BTRFS_FIRST_CHUNK_TREE_OBJECTID, start, num_bytes);
Chris Mason6324fbf2008-03-24 15:01:59 -04001340 BUG_ON(ret);
Chris Masona74a4b92008-06-25 16:01:31 -04001341out_unlock:
Chris Mason333db942008-06-25 16:01:30 -04001342 mutex_unlock(&extent_root->fs_info->chunk_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001343out:
Chris Mason6324fbf2008-03-24 15:01:59 -04001344 return 0;
1345}
1346
Chris Mason9078a3e2007-04-26 16:46:15 -04001347static int update_block_group(struct btrfs_trans_handle *trans,
1348 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -04001349 u64 bytenr, u64 num_bytes, int alloc,
Chris Mason0b86a832008-03-24 15:01:56 -04001350 int mark_free)
Chris Mason9078a3e2007-04-26 16:46:15 -04001351{
1352 struct btrfs_block_group_cache *cache;
1353 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001354 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001355 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04001356 u64 byte_in_group;
Chris Mason96b51792007-10-15 16:15:19 -04001357 u64 start;
1358 u64 end;
Chris Mason3e1ad542007-05-07 20:03:49 -04001359
Chris Mason7d9eb122008-07-08 14:19:17 -04001360 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Mason9078a3e2007-04-26 16:46:15 -04001361 while(total) {
Chris Masondb945352007-10-15 16:15:53 -04001362 cache = btrfs_lookup_block_group(info, bytenr);
Chris Mason3e1ad542007-05-07 20:03:49 -04001363 if (!cache) {
Chris Mason9078a3e2007-04-26 16:46:15 -04001364 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -04001365 }
Chris Masondb945352007-10-15 16:15:53 -04001366 byte_in_group = bytenr - cache->key.objectid;
1367 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason96b51792007-10-15 16:15:19 -04001368 start = cache->key.objectid;
1369 end = start + cache->key.offset - 1;
1370 set_extent_bits(&info->block_group_cache, start, end,
1371 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001372
Chris Masonc286ac42008-07-22 23:06:41 -04001373 spin_lock(&cache->lock);
Chris Mason9078a3e2007-04-26 16:46:15 -04001374 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04001375 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04001376 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04001377 old_val += num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001378 cache->space_info->bytes_used += num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04001379 btrfs_set_block_group_used(&cache->item, old_val);
1380 spin_unlock(&cache->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04001381 } else {
Chris Masondb945352007-10-15 16:15:53 -04001382 old_val -= num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001383 cache->space_info->bytes_used -= num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04001384 btrfs_set_block_group_used(&cache->item, old_val);
1385 spin_unlock(&cache->lock);
Chris Masonf510cfe2007-10-15 16:14:48 -04001386 if (mark_free) {
1387 set_extent_dirty(&info->free_space_cache,
Chris Masondb945352007-10-15 16:15:53 -04001388 bytenr, bytenr + num_bytes - 1,
Chris Masonf510cfe2007-10-15 16:14:48 -04001389 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04001390 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001391 }
Chris Masondb945352007-10-15 16:15:53 -04001392 total -= num_bytes;
1393 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001394 }
1395 return 0;
1396}
Chris Mason6324fbf2008-03-24 15:01:59 -04001397
Chris Masona061fc82008-05-07 11:43:44 -04001398static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
1399{
1400 u64 start;
1401 u64 end;
1402 int ret;
1403 ret = find_first_extent_bit(&root->fs_info->block_group_cache,
1404 search_start, &start, &end,
1405 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA |
1406 BLOCK_GROUP_SYSTEM);
1407 if (ret)
1408 return 0;
1409 return start;
1410}
1411
1412
Yan324ae4d2007-11-16 14:57:08 -05001413static int update_pinned_extents(struct btrfs_root *root,
1414 u64 bytenr, u64 num, int pin)
1415{
1416 u64 len;
1417 struct btrfs_block_group_cache *cache;
1418 struct btrfs_fs_info *fs_info = root->fs_info;
1419
Chris Mason7d9eb122008-07-08 14:19:17 -04001420 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Yan324ae4d2007-11-16 14:57:08 -05001421 if (pin) {
1422 set_extent_dirty(&fs_info->pinned_extents,
1423 bytenr, bytenr + num - 1, GFP_NOFS);
1424 } else {
1425 clear_extent_dirty(&fs_info->pinned_extents,
1426 bytenr, bytenr + num - 1, GFP_NOFS);
1427 }
1428 while (num > 0) {
1429 cache = btrfs_lookup_block_group(fs_info, bytenr);
Chris Masona061fc82008-05-07 11:43:44 -04001430 if (!cache) {
1431 u64 first = first_logical_byte(root, bytenr);
1432 WARN_ON(first < bytenr);
1433 len = min(first - bytenr, num);
1434 } else {
1435 len = min(num, cache->key.offset -
1436 (bytenr - cache->key.objectid));
1437 }
Yan324ae4d2007-11-16 14:57:08 -05001438 if (pin) {
Chris Masona061fc82008-05-07 11:43:44 -04001439 if (cache) {
Chris Masonc286ac42008-07-22 23:06:41 -04001440 spin_lock(&cache->lock);
Chris Masona061fc82008-05-07 11:43:44 -04001441 cache->pinned += len;
1442 cache->space_info->bytes_pinned += len;
Chris Masonc286ac42008-07-22 23:06:41 -04001443 spin_unlock(&cache->lock);
Chris Masona061fc82008-05-07 11:43:44 -04001444 }
Yan324ae4d2007-11-16 14:57:08 -05001445 fs_info->total_pinned += len;
1446 } else {
Chris Masona061fc82008-05-07 11:43:44 -04001447 if (cache) {
Chris Masonc286ac42008-07-22 23:06:41 -04001448 spin_lock(&cache->lock);
Chris Masona061fc82008-05-07 11:43:44 -04001449 cache->pinned -= len;
1450 cache->space_info->bytes_pinned -= len;
Chris Masonc286ac42008-07-22 23:06:41 -04001451 spin_unlock(&cache->lock);
Chris Masona061fc82008-05-07 11:43:44 -04001452 }
Yan324ae4d2007-11-16 14:57:08 -05001453 fs_info->total_pinned -= len;
1454 }
1455 bytenr += len;
1456 num -= len;
1457 }
1458 return 0;
1459}
Chris Mason9078a3e2007-04-26 16:46:15 -04001460
Chris Masond1310b22008-01-24 16:13:08 -05001461int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy)
Chris Masonccd467d2007-06-28 15:57:36 -04001462{
Chris Masonccd467d2007-06-28 15:57:36 -04001463 u64 last = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001464 u64 start;
1465 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001466 struct extent_io_tree *pinned_extents = &root->fs_info->pinned_extents;
Chris Masonccd467d2007-06-28 15:57:36 -04001467 int ret;
Chris Masonccd467d2007-06-28 15:57:36 -04001468
1469 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001470 ret = find_first_extent_bit(pinned_extents, last,
1471 &start, &end, EXTENT_DIRTY);
1472 if (ret)
Chris Masonccd467d2007-06-28 15:57:36 -04001473 break;
Chris Mason1a5bc162007-10-15 16:15:26 -04001474 set_extent_dirty(copy, start, end, GFP_NOFS);
1475 last = end + 1;
Chris Masonccd467d2007-06-28 15:57:36 -04001476 }
1477 return 0;
1478}
1479
1480int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1481 struct btrfs_root *root,
Chris Masond1310b22008-01-24 16:13:08 -05001482 struct extent_io_tree *unpin)
Chris Masona28ec192007-03-06 20:08:01 -05001483{
Chris Mason1a5bc162007-10-15 16:15:26 -04001484 u64 start;
1485 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05001486 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001487 struct extent_io_tree *free_space_cache;
Chris Masonf510cfe2007-10-15 16:14:48 -04001488 free_space_cache = &root->fs_info->free_space_cache;
Chris Masona28ec192007-03-06 20:08:01 -05001489
Chris Mason925baed2008-06-25 16:01:30 -04001490 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05001491 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001492 ret = find_first_extent_bit(unpin, 0, &start, &end,
1493 EXTENT_DIRTY);
1494 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05001495 break;
Yan324ae4d2007-11-16 14:57:08 -05001496 update_pinned_extents(root, start, end + 1 - start, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001497 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1498 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
Chris Masonc286ac42008-07-22 23:06:41 -04001499 if (need_resched()) {
1500 mutex_unlock(&root->fs_info->alloc_mutex);
1501 cond_resched();
1502 mutex_lock(&root->fs_info->alloc_mutex);
1503 }
Chris Masona28ec192007-03-06 20:08:01 -05001504 }
Chris Mason925baed2008-06-25 16:01:30 -04001505 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05001506 return 0;
1507}
1508
Chris Mason98ed5172008-01-03 10:01:48 -05001509static int finish_current_insert(struct btrfs_trans_handle *trans,
1510 struct btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -05001511{
Chris Mason7bb86312007-12-11 09:25:06 -05001512 u64 start;
1513 u64 end;
1514 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001515 struct extent_buffer *eb;
Chris Mason7bb86312007-12-11 09:25:06 -05001516 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001517 struct btrfs_key ins;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001518 struct btrfs_disk_key first;
Chris Mason234b63a2007-03-13 10:46:10 -04001519 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -05001520 int ret;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001521 int level;
Chris Mason1a5bc162007-10-15 16:15:26 -04001522 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001523
Chris Mason7d9eb122008-07-08 14:19:17 -04001524 WARN_ON(!mutex_is_locked(&extent_root->fs_info->alloc_mutex));
Chris Mason5f39d392007-10-15 16:14:19 -04001525 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason62e27492007-03-15 12:56:47 -04001526 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason7bb86312007-12-11 09:25:06 -05001527 path = btrfs_alloc_path();
Chris Mason037e6392007-03-07 11:50:24 -05001528
Chris Mason26b80032007-08-08 20:17:12 -04001529 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001530 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1531 &end, EXTENT_LOCKED);
1532 if (ret)
Chris Mason26b80032007-08-08 20:17:12 -04001533 break;
1534
Chris Mason1a5bc162007-10-15 16:15:26 -04001535 ins.objectid = start;
1536 ins.offset = end + 1 - start;
1537 err = btrfs_insert_item(trans, extent_root, &ins,
1538 &extent_item, sizeof(extent_item));
1539 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1540 GFP_NOFS);
Chris Masonc286ac42008-07-22 23:06:41 -04001541
1542 eb = btrfs_find_tree_block(extent_root, ins.objectid,
1543 ins.offset);
1544
1545 if (!btrfs_buffer_uptodate(eb, trans->transid)) {
1546 mutex_unlock(&extent_root->fs_info->alloc_mutex);
1547 btrfs_read_buffer(eb, trans->transid);
1548 mutex_lock(&extent_root->fs_info->alloc_mutex);
1549 }
1550
Chris Mason925baed2008-06-25 16:01:30 -04001551 btrfs_tree_lock(eb);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001552 level = btrfs_header_level(eb);
1553 if (level == 0) {
1554 btrfs_item_key(eb, &first, 0);
1555 } else {
1556 btrfs_node_key(eb, &first, 0);
1557 }
Chris Mason925baed2008-06-25 16:01:30 -04001558 btrfs_tree_unlock(eb);
1559 free_extent_buffer(eb);
1560 /*
1561 * the first key is just a hint, so the race we've created
1562 * against reading it is fine
1563 */
Chris Mason7bb86312007-12-11 09:25:06 -05001564 err = btrfs_insert_extent_backref(trans, extent_root, path,
1565 start, extent_root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -05001566 0, level,
1567 btrfs_disk_key_objectid(&first));
Chris Mason7bb86312007-12-11 09:25:06 -05001568 BUG_ON(err);
Chris Masonc286ac42008-07-22 23:06:41 -04001569 if (need_resched()) {
1570 mutex_unlock(&extent_root->fs_info->alloc_mutex);
1571 cond_resched();
1572 mutex_lock(&extent_root->fs_info->alloc_mutex);
1573 }
Chris Mason037e6392007-03-07 11:50:24 -05001574 }
Chris Mason7bb86312007-12-11 09:25:06 -05001575 btrfs_free_path(path);
Chris Mason037e6392007-03-07 11:50:24 -05001576 return 0;
1577}
1578
Chris Masondb945352007-10-15 16:15:53 -04001579static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
1580 int pending)
Chris Masone20d96d2007-03-22 12:13:20 -04001581{
Chris Mason1a5bc162007-10-15 16:15:26 -04001582 int err = 0;
Chris Mason78fae272007-03-25 11:35:08 -04001583
Chris Mason7d9eb122008-07-08 14:19:17 -04001584 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Masonf4b9aa82007-03-27 11:05:53 -04001585 if (!pending) {
Chris Mason925baed2008-06-25 16:01:30 -04001586 struct extent_buffer *buf;
Chris Masondb945352007-10-15 16:15:53 -04001587 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -04001588 if (buf) {
Yan974e35a2008-07-24 12:18:16 -04001589 if (btrfs_buffer_uptodate(buf, 0) &&
1590 btrfs_try_tree_lock(buf)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -04001591 u64 transid =
1592 root->fs_info->running_transaction->transid;
Chris Masondc17ff82008-01-08 15:46:30 -05001593 u64 header_transid =
1594 btrfs_header_generation(buf);
Chris Mason6bc34672008-04-04 15:40:00 -04001595 if (header_transid == transid &&
1596 !btrfs_header_flag(buf,
1597 BTRFS_HEADER_FLAG_WRITTEN)) {
Chris Mason55c69072008-01-09 15:55:33 -05001598 clean_tree_block(NULL, root, buf);
Chris Mason925baed2008-06-25 16:01:30 -04001599 btrfs_tree_unlock(buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001600 free_extent_buffer(buf);
Yanc5492282007-11-06 10:25:25 -05001601 return 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001602 }
Chris Mason925baed2008-06-25 16:01:30 -04001603 btrfs_tree_unlock(buf);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001604 }
Chris Mason5f39d392007-10-15 16:14:19 -04001605 free_extent_buffer(buf);
Chris Mason8ef97622007-03-26 10:15:30 -04001606 }
Yan324ae4d2007-11-16 14:57:08 -05001607 update_pinned_extents(root, bytenr, num_bytes, 1);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001608 } else {
Chris Mason1a5bc162007-10-15 16:15:26 -04001609 set_extent_bits(&root->fs_info->pending_del,
Chris Masondb945352007-10-15 16:15:53 -04001610 bytenr, bytenr + num_bytes - 1,
1611 EXTENT_LOCKED, GFP_NOFS);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001612 }
Chris Masonbe744172007-05-06 10:15:01 -04001613 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001614 return 0;
1615}
1616
Chris Masona28ec192007-03-06 20:08:01 -05001617/*
1618 * remove an extent from the root, returns 0 on success
1619 */
Chris Masone089f052007-03-16 16:20:31 -04001620static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001621 *root, u64 bytenr, u64 num_bytes,
1622 u64 root_objectid, u64 ref_generation,
1623 u64 owner_objectid, u64 owner_offset, int pin,
Chris Masone37c9e62007-05-09 20:13:14 -04001624 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -05001625{
Chris Mason5caf2a02007-04-02 11:20:42 -04001626 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001627 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -04001628 struct btrfs_fs_info *info = root->fs_info;
1629 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001630 struct extent_buffer *leaf;
Chris Masona28ec192007-03-06 20:08:01 -05001631 int ret;
Chris Mason952fcca2008-02-18 16:33:44 -05001632 int extent_slot = 0;
1633 int found_extent = 0;
1634 int num_to_del = 1;
Chris Mason234b63a2007-03-13 10:46:10 -04001635 struct btrfs_extent_item *ei;
Chris Masoncf27e1e2007-03-13 09:49:06 -04001636 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -05001637
Chris Mason7d9eb122008-07-08 14:19:17 -04001638 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Masondb945352007-10-15 16:15:53 -04001639 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -04001640 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -04001641 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001642 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001643 if (!path)
1644 return -ENOMEM;
1645
Chris Mason3c12ac72008-04-21 12:01:38 -04001646 path->reada = 1;
Chris Mason7bb86312007-12-11 09:25:06 -05001647 ret = lookup_extent_backref(trans, extent_root, path,
1648 bytenr, root_objectid,
1649 ref_generation,
1650 owner_objectid, owner_offset, 1);
1651 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05001652 struct btrfs_key found_key;
1653 extent_slot = path->slots[0];
1654 while(extent_slot > 0) {
1655 extent_slot--;
1656 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1657 extent_slot);
1658 if (found_key.objectid != bytenr)
1659 break;
1660 if (found_key.type == BTRFS_EXTENT_ITEM_KEY &&
1661 found_key.offset == num_bytes) {
1662 found_extent = 1;
1663 break;
1664 }
1665 if (path->slots[0] - extent_slot > 5)
1666 break;
1667 }
1668 if (!found_extent)
1669 ret = btrfs_del_item(trans, extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -05001670 } else {
1671 btrfs_print_leaf(extent_root, path->nodes[0]);
1672 WARN_ON(1);
1673 printk("Unable to find ref byte nr %Lu root %Lu "
1674 " gen %Lu owner %Lu offset %Lu\n", bytenr,
1675 root_objectid, ref_generation, owner_objectid,
1676 owner_offset);
1677 }
Chris Mason952fcca2008-02-18 16:33:44 -05001678 if (!found_extent) {
1679 btrfs_release_path(extent_root, path);
1680 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
1681 if (ret < 0)
1682 return ret;
1683 BUG_ON(ret);
1684 extent_slot = path->slots[0];
1685 }
Chris Mason5f39d392007-10-15 16:14:19 -04001686
1687 leaf = path->nodes[0];
Chris Mason952fcca2008-02-18 16:33:44 -05001688 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04001689 struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001690 refs = btrfs_extent_refs(leaf, ei);
1691 BUG_ON(refs == 0);
1692 refs -= 1;
1693 btrfs_set_extent_refs(leaf, ei, refs);
Chris Mason952fcca2008-02-18 16:33:44 -05001694
Chris Mason5f39d392007-10-15 16:14:19 -04001695 btrfs_mark_buffer_dirty(leaf);
1696
Chris Mason952fcca2008-02-18 16:33:44 -05001697 if (refs == 0 && found_extent && path->slots[0] == extent_slot + 1) {
1698 /* if the back ref and the extent are next to each other
1699 * they get deleted below in one shot
1700 */
1701 path->slots[0] = extent_slot;
1702 num_to_del = 2;
1703 } else if (found_extent) {
1704 /* otherwise delete the extent back ref */
1705 ret = btrfs_del_item(trans, extent_root, path);
1706 BUG_ON(ret);
1707 /* if refs are 0, we need to setup the path for deletion */
1708 if (refs == 0) {
1709 btrfs_release_path(extent_root, path);
1710 ret = btrfs_search_slot(trans, extent_root, &key, path,
1711 -1, 1);
1712 if (ret < 0)
1713 return ret;
1714 BUG_ON(ret);
1715 }
1716 }
1717
Chris Masoncf27e1e2007-03-13 09:49:06 -04001718 if (refs == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001719 u64 super_used;
1720 u64 root_used;
Chris Mason78fae272007-03-25 11:35:08 -04001721
1722 if (pin) {
Chris Masondb945352007-10-15 16:15:53 -04001723 ret = pin_down_bytes(root, bytenr, num_bytes, 0);
Yanc5492282007-11-06 10:25:25 -05001724 if (ret > 0)
1725 mark_free = 1;
1726 BUG_ON(ret < 0);
Chris Mason78fae272007-03-25 11:35:08 -04001727 }
1728
Josef Bacik58176a92007-08-29 15:47:34 -04001729 /* block accounting for super block */
Chris Masona2135012008-06-25 16:01:30 -04001730 spin_lock_irq(&info->delalloc_lock);
Chris Masondb945352007-10-15 16:15:53 -04001731 super_used = btrfs_super_bytes_used(&info->super_copy);
1732 btrfs_set_super_bytes_used(&info->super_copy,
1733 super_used - num_bytes);
Chris Masona2135012008-06-25 16:01:30 -04001734 spin_unlock_irq(&info->delalloc_lock);
Josef Bacik58176a92007-08-29 15:47:34 -04001735
1736 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001737 root_used = btrfs_root_used(&root->root_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001738 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -04001739 root_used - num_bytes);
Chris Mason952fcca2008-02-18 16:33:44 -05001740 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
1741 num_to_del);
Chris Mason54aa1f42007-06-22 14:16:25 -04001742 if (ret) {
1743 return ret;
1744 }
Chris Masondb945352007-10-15 16:15:53 -04001745 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001746 mark_free);
Chris Mason9078a3e2007-04-26 16:46:15 -04001747 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05001748 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001749 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001750 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -05001751 return ret;
1752}
1753
1754/*
Chris Masonfec577f2007-02-26 10:40:21 -05001755 * find all the blocks marked as pending in the radix tree and remove
1756 * them from the extent map
1757 */
Chris Masone089f052007-03-16 16:20:31 -04001758static int del_pending_extents(struct btrfs_trans_handle *trans, struct
1759 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -05001760{
1761 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001762 int err = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001763 u64 start;
1764 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001765 struct extent_io_tree *pending_del;
1766 struct extent_io_tree *pinned_extents;
Chris Mason8ef97622007-03-26 10:15:30 -04001767
Chris Mason7d9eb122008-07-08 14:19:17 -04001768 WARN_ON(!mutex_is_locked(&extent_root->fs_info->alloc_mutex));
Chris Mason1a5bc162007-10-15 16:15:26 -04001769 pending_del = &extent_root->fs_info->pending_del;
1770 pinned_extents = &extent_root->fs_info->pinned_extents;
Chris Masonfec577f2007-02-26 10:40:21 -05001771
1772 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001773 ret = find_first_extent_bit(pending_del, 0, &start, &end,
1774 EXTENT_LOCKED);
1775 if (ret)
Chris Masonfec577f2007-02-26 10:40:21 -05001776 break;
Chris Mason1a5bc162007-10-15 16:15:26 -04001777 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
1778 GFP_NOFS);
Chris Masonc286ac42008-07-22 23:06:41 -04001779 if (!test_range_bit(&extent_root->fs_info->extent_ins,
1780 start, end, EXTENT_LOCKED, 0)) {
1781 update_pinned_extents(extent_root, start,
1782 end + 1 - start, 1);
1783 ret = __free_extent(trans, extent_root,
1784 start, end + 1 - start,
1785 extent_root->root_key.objectid,
1786 0, 0, 0, 0, 0);
1787 } else {
1788 clear_extent_bits(&extent_root->fs_info->extent_ins,
1789 start, end, EXTENT_LOCKED, GFP_NOFS);
1790 }
Chris Mason1a5bc162007-10-15 16:15:26 -04001791 if (ret)
1792 err = ret;
Chris Masonc286ac42008-07-22 23:06:41 -04001793
1794 if (need_resched()) {
1795 mutex_unlock(&extent_root->fs_info->alloc_mutex);
1796 cond_resched();
1797 mutex_lock(&extent_root->fs_info->alloc_mutex);
1798 }
Chris Masonfec577f2007-02-26 10:40:21 -05001799 }
Chris Masone20d96d2007-03-22 12:13:20 -04001800 return err;
Chris Masonfec577f2007-02-26 10:40:21 -05001801}
1802
1803/*
1804 * remove an extent from the root, returns 0 on success
1805 */
Chris Mason925baed2008-06-25 16:01:30 -04001806static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
1807 struct btrfs_root *root, u64 bytenr,
1808 u64 num_bytes, u64 root_objectid,
1809 u64 ref_generation, u64 owner_objectid,
1810 u64 owner_offset, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -05001811{
Chris Mason9f5fae22007-03-20 14:38:32 -04001812 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -05001813 int pending_ret;
1814 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05001815
Chris Masondb945352007-10-15 16:15:53 -04001816 WARN_ON(num_bytes < root->sectorsize);
Chris Mason7bb86312007-12-11 09:25:06 -05001817 if (!root->ref_cows)
1818 ref_generation = 0;
1819
Chris Masona28ec192007-03-06 20:08:01 -05001820 if (root == extent_root) {
Chris Masondb945352007-10-15 16:15:53 -04001821 pin_down_bytes(root, bytenr, num_bytes, 1);
Chris Masona28ec192007-03-06 20:08:01 -05001822 return 0;
1823 }
Chris Mason7bb86312007-12-11 09:25:06 -05001824 ret = __free_extent(trans, root, bytenr, num_bytes, root_objectid,
1825 ref_generation, owner_objectid, owner_offset,
1826 pin, pin == 0);
Chris Masonee6e6502008-07-17 12:54:40 -04001827
1828 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001829 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -05001830 return ret ? ret : pending_ret;
1831}
1832
Chris Mason925baed2008-06-25 16:01:30 -04001833int btrfs_free_extent(struct btrfs_trans_handle *trans,
1834 struct btrfs_root *root, u64 bytenr,
1835 u64 num_bytes, u64 root_objectid,
1836 u64 ref_generation, u64 owner_objectid,
1837 u64 owner_offset, int pin)
1838{
1839 int ret;
1840
1841 maybe_lock_mutex(root);
1842 ret = __btrfs_free_extent(trans, root, bytenr, num_bytes,
1843 root_objectid, ref_generation,
1844 owner_objectid, owner_offset, pin);
1845 maybe_unlock_mutex(root);
1846 return ret;
1847}
1848
Chris Mason87ee04e2007-11-30 11:30:34 -05001849static u64 stripe_align(struct btrfs_root *root, u64 val)
1850{
1851 u64 mask = ((u64)root->stripesize - 1);
1852 u64 ret = (val + mask) & ~mask;
1853 return ret;
1854}
1855
Chris Masonfec577f2007-02-26 10:40:21 -05001856/*
1857 * walks the btree of allocated extents and find a hole of a given size.
1858 * The key ins is changed to record the hole:
1859 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04001860 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05001861 * ins->offset == number of blocks
1862 * Any available blocks before search_start are skipped.
1863 */
Chris Mason98ed5172008-01-03 10:01:48 -05001864static int noinline find_free_extent(struct btrfs_trans_handle *trans,
1865 struct btrfs_root *orig_root,
1866 u64 num_bytes, u64 empty_size,
1867 u64 search_start, u64 search_end,
1868 u64 hint_byte, struct btrfs_key *ins,
1869 u64 exclude_start, u64 exclude_nr,
1870 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001871{
Chris Mason87ee04e2007-11-30 11:30:34 -05001872 int ret;
Chris Masona061fc82008-05-07 11:43:44 -04001873 u64 orig_search_start;
Chris Mason9f5fae22007-03-20 14:38:32 -04001874 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -04001875 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001876 u64 total_needed = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04001877 u64 *last_ptr = NULL;
Chris Masonbe08c1b2007-05-03 09:06:49 -04001878 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -04001879 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -04001880 int wrapped = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04001881 int chunk_alloc_done = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001882 int empty_cluster = 2 * 1024 * 1024;
Chris Mason0ef3e662008-05-24 14:04:53 -04001883 int allowed_chunk_alloc = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001884
Chris Masondb945352007-10-15 16:15:53 -04001885 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04001886 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
1887
Chris Mason0ef3e662008-05-24 14:04:53 -04001888 if (orig_root->ref_cows || empty_size)
1889 allowed_chunk_alloc = 1;
1890
Chris Mason239b14b2008-03-24 15:02:07 -04001891 if (data & BTRFS_BLOCK_GROUP_METADATA) {
1892 last_ptr = &root->fs_info->last_alloc;
Chris Mason8790d502008-04-03 16:29:03 -04001893 empty_cluster = 256 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04001894 }
1895
1896 if ((data & BTRFS_BLOCK_GROUP_DATA) && btrfs_test_opt(root, SSD)) {
1897 last_ptr = &root->fs_info->last_data_alloc;
1898 }
1899
1900 if (last_ptr) {
1901 if (*last_ptr)
1902 hint_byte = *last_ptr;
1903 else {
1904 empty_size += empty_cluster;
1905 }
1906 }
1907
Chris Masona061fc82008-05-07 11:43:44 -04001908 search_start = max(search_start, first_logical_byte(root, 0));
1909 orig_search_start = search_start;
1910
Chris Mason7f93bf82008-03-24 15:01:28 -04001911 if (search_end == (u64)-1)
1912 search_end = btrfs_super_total_bytes(&info->super_copy);
Chris Mason0b86a832008-03-24 15:01:56 -04001913
Chris Masondb945352007-10-15 16:15:53 -04001914 if (hint_byte) {
Chris Mason0ef3e662008-05-24 14:04:53 -04001915 block_group = btrfs_lookup_first_block_group(info, hint_byte);
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001916 if (!block_group)
1917 hint_byte = search_start;
Chris Masonc286ac42008-07-22 23:06:41 -04001918 block_group = btrfs_find_block_group(root, block_group,
Chris Masondb945352007-10-15 16:15:53 -04001919 hint_byte, data, 1);
Chris Mason239b14b2008-03-24 15:02:07 -04001920 if (last_ptr && *last_ptr == 0 && block_group)
1921 hint_byte = block_group->key.objectid;
Chris Masonbe744172007-05-06 10:15:01 -04001922 } else {
Chris Masonc286ac42008-07-22 23:06:41 -04001923 block_group = btrfs_find_block_group(root,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001924 trans->block_group,
1925 search_start, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001926 }
Chris Mason239b14b2008-03-24 15:02:07 -04001927 search_start = max(search_start, hint_byte);
Chris Masonbe744172007-05-06 10:15:01 -04001928
Chris Mason6702ed42007-08-07 16:15:09 -04001929 total_needed += empty_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001930
Chris Masonbe744172007-05-06 10:15:01 -04001931check_failed:
Chris Mason70b043f2007-12-13 09:02:46 -05001932 if (!block_group) {
Chris Mason0ef3e662008-05-24 14:04:53 -04001933 block_group = btrfs_lookup_first_block_group(info,
1934 search_start);
Chris Mason70b043f2007-12-13 09:02:46 -05001935 if (!block_group)
Chris Mason0ef3e662008-05-24 14:04:53 -04001936 block_group = btrfs_lookup_first_block_group(info,
Chris Mason70b043f2007-12-13 09:02:46 -05001937 orig_search_start);
1938 }
Chris Mason0ef3e662008-05-24 14:04:53 -04001939 if (full_scan && !chunk_alloc_done) {
1940 if (allowed_chunk_alloc) {
1941 do_chunk_alloc(trans, root,
1942 num_bytes + 2 * 1024 * 1024, data, 1);
1943 allowed_chunk_alloc = 0;
1944 } else if (block_group && block_group_bits(block_group, data)) {
1945 block_group->space_info->force_alloc = 1;
1946 }
1947 chunk_alloc_done = 1;
1948 }
Chris Mason0b86a832008-03-24 15:01:56 -04001949 ret = find_search_start(root, &block_group, &search_start,
1950 total_needed, data);
Chris Mason239b14b2008-03-24 15:02:07 -04001951 if (ret == -ENOSPC && last_ptr && *last_ptr) {
1952 *last_ptr = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04001953 block_group = btrfs_lookup_first_block_group(info,
1954 orig_search_start);
Chris Mason239b14b2008-03-24 15:02:07 -04001955 search_start = orig_search_start;
1956 ret = find_search_start(root, &block_group, &search_start,
1957 total_needed, data);
1958 }
1959 if (ret == -ENOSPC)
1960 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001961 if (ret)
1962 goto error;
1963
Chris Mason239b14b2008-03-24 15:02:07 -04001964 if (last_ptr && *last_ptr && search_start != *last_ptr) {
1965 *last_ptr = 0;
1966 if (!empty_size) {
1967 empty_size += empty_cluster;
1968 total_needed += empty_size;
1969 }
Chris Mason0ef3e662008-05-24 14:04:53 -04001970 block_group = btrfs_lookup_first_block_group(info,
Chris Mason239b14b2008-03-24 15:02:07 -04001971 orig_search_start);
1972 search_start = orig_search_start;
1973 ret = find_search_start(root, &block_group,
1974 &search_start, total_needed, data);
1975 if (ret == -ENOSPC)
1976 goto enospc;
1977 if (ret)
1978 goto error;
1979 }
1980
Chris Mason87ee04e2007-11-30 11:30:34 -05001981 search_start = stripe_align(root, search_start);
Chris Masonfec577f2007-02-26 10:40:21 -05001982 ins->objectid = search_start;
Chris Mason0b86a832008-03-24 15:01:56 -04001983 ins->offset = num_bytes;
Chris Masone37c9e62007-05-09 20:13:14 -04001984
Chris Masondb945352007-10-15 16:15:53 -04001985 if (ins->objectid + num_bytes >= search_end)
Chris Masoncf675822007-09-17 11:00:51 -04001986 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001987
1988 if (ins->objectid + num_bytes >
1989 block_group->key.objectid + block_group->key.offset) {
Chris Masone19caa52007-10-15 16:17:44 -04001990 search_start = block_group->key.objectid +
1991 block_group->key.offset;
1992 goto new_group;
1993 }
Chris Mason0b86a832008-03-24 15:01:56 -04001994
Chris Mason1a5bc162007-10-15 16:15:26 -04001995 if (test_range_bit(&info->extent_ins, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001996 ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
1997 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001998 goto new_group;
1999 }
Chris Mason0b86a832008-03-24 15:01:56 -04002000
Chris Mason1a5bc162007-10-15 16:15:26 -04002001 if (test_range_bit(&info->pinned_extents, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04002002 ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
2003 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04002004 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05002005 }
Chris Mason0b86a832008-03-24 15:01:56 -04002006
Chris Masondb945352007-10-15 16:15:53 -04002007 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
Chris Masonf2654de2007-06-26 12:20:46 -04002008 ins->objectid < exclude_start + exclude_nr)) {
2009 search_start = exclude_start + exclude_nr;
2010 goto new_group;
2011 }
Chris Mason0b86a832008-03-24 15:01:56 -04002012
Chris Mason6324fbf2008-03-24 15:01:59 -04002013 if (!(data & BTRFS_BLOCK_GROUP_DATA)) {
Chris Mason5276aed2007-06-11 21:33:38 -04002014 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Mason26b80032007-08-08 20:17:12 -04002015 if (block_group)
2016 trans->block_group = block_group;
Chris Masoncd1bc462007-04-27 10:08:34 -04002017 }
Chris Masondb945352007-10-15 16:15:53 -04002018 ins->offset = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04002019 if (last_ptr) {
2020 *last_ptr = ins->objectid + ins->offset;
2021 if (*last_ptr ==
2022 btrfs_super_total_bytes(&root->fs_info->super_copy)) {
2023 *last_ptr = 0;
2024 }
2025 }
Chris Masonfec577f2007-02-26 10:40:21 -05002026 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04002027
2028new_group:
Chris Masondb945352007-10-15 16:15:53 -04002029 if (search_start + num_bytes >= search_end) {
Chris Masoncf675822007-09-17 11:00:51 -04002030enospc:
Chris Masonbe744172007-05-06 10:15:01 -04002031 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04002032 if (full_scan) {
2033 ret = -ENOSPC;
2034 goto error;
2035 }
Chris Mason6702ed42007-08-07 16:15:09 -04002036 if (wrapped) {
2037 if (!full_scan)
2038 total_needed -= empty_size;
Chris Masonfbdc7622007-05-30 10:22:12 -04002039 full_scan = 1;
Chris Mason6702ed42007-08-07 16:15:09 -04002040 } else
Chris Masonfbdc7622007-05-30 10:22:12 -04002041 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04002042 }
Chris Mason0ef3e662008-05-24 14:04:53 -04002043 block_group = btrfs_lookup_first_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04002044 cond_resched();
Chris Masonc286ac42008-07-22 23:06:41 -04002045 block_group = btrfs_find_block_group(root, block_group,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05002046 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04002047 goto check_failed;
2048
Chris Mason0f70abe2007-02-28 16:46:22 -05002049error:
Chris Mason0f70abe2007-02-28 16:46:22 -05002050 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05002051}
Chris Masonec44a352008-04-28 15:29:52 -04002052
Chris Masone6dcd2d2008-07-17 12:53:50 -04002053static int __btrfs_reserve_extent(struct btrfs_trans_handle *trans,
2054 struct btrfs_root *root,
2055 u64 num_bytes, u64 min_alloc_size,
2056 u64 empty_size, u64 hint_byte,
2057 u64 search_end, struct btrfs_key *ins,
2058 u64 data)
Chris Masonfec577f2007-02-26 10:40:21 -05002059{
2060 int ret;
Chris Masonfbdc7622007-05-30 10:22:12 -04002061 u64 search_start = 0;
Chris Mason8790d502008-04-03 16:29:03 -04002062 u64 alloc_profile;
Chris Mason1261ec42007-03-20 20:35:03 -04002063 struct btrfs_fs_info *info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04002064
Chris Mason6324fbf2008-03-24 15:01:59 -04002065 if (data) {
Chris Mason8790d502008-04-03 16:29:03 -04002066 alloc_profile = info->avail_data_alloc_bits &
2067 info->data_alloc_profile;
2068 data = BTRFS_BLOCK_GROUP_DATA | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04002069 } else if (root == root->fs_info->chunk_root) {
Chris Mason8790d502008-04-03 16:29:03 -04002070 alloc_profile = info->avail_system_alloc_bits &
2071 info->system_alloc_profile;
2072 data = BTRFS_BLOCK_GROUP_SYSTEM | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04002073 } else {
Chris Mason8790d502008-04-03 16:29:03 -04002074 alloc_profile = info->avail_metadata_alloc_bits &
2075 info->metadata_alloc_profile;
2076 data = BTRFS_BLOCK_GROUP_METADATA | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04002077 }
Chris Mason98d20f62008-04-14 09:46:10 -04002078again:
Chris Masona061fc82008-05-07 11:43:44 -04002079 data = reduce_alloc_profile(root, data);
Chris Mason0ef3e662008-05-24 14:04:53 -04002080 /*
2081 * the only place that sets empty_size is btrfs_realloc_node, which
2082 * is not called recursively on allocations
2083 */
2084 if (empty_size || root->ref_cows) {
Chris Mason593060d2008-03-25 16:50:33 -04002085 if (!(data & BTRFS_BLOCK_GROUP_METADATA)) {
Chris Mason6324fbf2008-03-24 15:01:59 -04002086 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0ef3e662008-05-24 14:04:53 -04002087 2 * 1024 * 1024,
2088 BTRFS_BLOCK_GROUP_METADATA |
2089 (info->metadata_alloc_profile &
2090 info->avail_metadata_alloc_bits), 0);
Chris Mason6324fbf2008-03-24 15:01:59 -04002091 BUG_ON(ret);
2092 }
2093 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0ef3e662008-05-24 14:04:53 -04002094 num_bytes + 2 * 1024 * 1024, data, 0);
Chris Mason6324fbf2008-03-24 15:01:59 -04002095 BUG_ON(ret);
2096 }
Chris Mason0b86a832008-03-24 15:01:56 -04002097
Chris Masondb945352007-10-15 16:15:53 -04002098 WARN_ON(num_bytes < root->sectorsize);
2099 ret = find_free_extent(trans, root, num_bytes, empty_size,
2100 search_start, search_end, hint_byte, ins,
Chris Mason26b80032007-08-08 20:17:12 -04002101 trans->alloc_exclude_start,
2102 trans->alloc_exclude_nr, data);
Chris Mason3b951512008-04-17 11:29:12 -04002103
Chris Mason98d20f62008-04-14 09:46:10 -04002104 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
2105 num_bytes = num_bytes >> 1;
2106 num_bytes = max(num_bytes, min_alloc_size);
Chris Mason0ef3e662008-05-24 14:04:53 -04002107 do_chunk_alloc(trans, root->fs_info->extent_root,
2108 num_bytes, data, 1);
Chris Mason98d20f62008-04-14 09:46:10 -04002109 goto again;
2110 }
Chris Masonec44a352008-04-28 15:29:52 -04002111 if (ret) {
2112 printk("allocation failed flags %Lu\n", data);
Chris Mason925baed2008-06-25 16:01:30 -04002113 BUG();
Chris Mason925baed2008-06-25 16:01:30 -04002114 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002115 clear_extent_dirty(&root->fs_info->free_space_cache,
2116 ins->objectid, ins->objectid + ins->offset - 1,
2117 GFP_NOFS);
2118 return 0;
2119}
2120
2121int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
2122 struct btrfs_root *root,
2123 u64 num_bytes, u64 min_alloc_size,
2124 u64 empty_size, u64 hint_byte,
2125 u64 search_end, struct btrfs_key *ins,
2126 u64 data)
2127{
2128 int ret;
2129 maybe_lock_mutex(root);
2130 ret = __btrfs_reserve_extent(trans, root, num_bytes, min_alloc_size,
2131 empty_size, hint_byte, search_end, ins,
2132 data);
2133 maybe_unlock_mutex(root);
2134 return ret;
2135}
2136
2137static int __btrfs_alloc_reserved_extent(struct btrfs_trans_handle *trans,
2138 struct btrfs_root *root,
2139 u64 root_objectid, u64 ref_generation,
2140 u64 owner, u64 owner_offset,
2141 struct btrfs_key *ins)
2142{
2143 int ret;
2144 int pending_ret;
2145 u64 super_used;
2146 u64 root_used;
2147 u64 num_bytes = ins->offset;
2148 u32 sizes[2];
2149 struct btrfs_fs_info *info = root->fs_info;
2150 struct btrfs_root *extent_root = info->extent_root;
2151 struct btrfs_extent_item *extent_item;
2152 struct btrfs_extent_ref *ref;
2153 struct btrfs_path *path;
2154 struct btrfs_key keys[2];
Chris Masonf2654de2007-06-26 12:20:46 -04002155
Josef Bacik58176a92007-08-29 15:47:34 -04002156 /* block accounting for super block */
Chris Masona2135012008-06-25 16:01:30 -04002157 spin_lock_irq(&info->delalloc_lock);
Chris Masondb945352007-10-15 16:15:53 -04002158 super_used = btrfs_super_bytes_used(&info->super_copy);
2159 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
Chris Masona2135012008-06-25 16:01:30 -04002160 spin_unlock_irq(&info->delalloc_lock);
Chris Mason26b80032007-08-08 20:17:12 -04002161
Josef Bacik58176a92007-08-29 15:47:34 -04002162 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04002163 root_used = btrfs_root_used(&root->root_item);
2164 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04002165
Chris Mason26b80032007-08-08 20:17:12 -04002166 if (root == extent_root) {
Chris Mason1a5bc162007-10-15 16:15:26 -04002167 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
2168 ins->objectid + ins->offset - 1,
2169 EXTENT_LOCKED, GFP_NOFS);
Chris Mason26b80032007-08-08 20:17:12 -04002170 goto update_block;
2171 }
2172
Chris Mason47e4bb92008-02-01 14:51:59 -05002173 memcpy(&keys[0], ins, sizeof(*ins));
2174 keys[1].offset = hash_extent_ref(root_objectid, ref_generation,
2175 owner, owner_offset);
2176 keys[1].objectid = ins->objectid;
2177 keys[1].type = BTRFS_EXTENT_REF_KEY;
2178 sizes[0] = sizeof(*extent_item);
2179 sizes[1] = sizeof(*ref);
Chris Mason7bb86312007-12-11 09:25:06 -05002180
2181 path = btrfs_alloc_path();
2182 BUG_ON(!path);
Chris Mason47e4bb92008-02-01 14:51:59 -05002183
2184 ret = btrfs_insert_empty_items(trans, extent_root, path, keys,
2185 sizes, 2);
Chris Mason26b80032007-08-08 20:17:12 -04002186
Chris Masonccd467d2007-06-28 15:57:36 -04002187 BUG_ON(ret);
Chris Mason47e4bb92008-02-01 14:51:59 -05002188 extent_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2189 struct btrfs_extent_item);
2190 btrfs_set_extent_refs(path->nodes[0], extent_item, 1);
2191 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
2192 struct btrfs_extent_ref);
2193
2194 btrfs_set_ref_root(path->nodes[0], ref, root_objectid);
2195 btrfs_set_ref_generation(path->nodes[0], ref, ref_generation);
2196 btrfs_set_ref_objectid(path->nodes[0], ref, owner);
2197 btrfs_set_ref_offset(path->nodes[0], ref, owner_offset);
2198
2199 btrfs_mark_buffer_dirty(path->nodes[0]);
2200
2201 trans->alloc_exclude_start = 0;
2202 trans->alloc_exclude_nr = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05002203 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04002204 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04002205 pending_ret = del_pending_extents(trans, extent_root);
Chris Masonf510cfe2007-10-15 16:14:48 -04002206
Chris Mason925baed2008-06-25 16:01:30 -04002207 if (ret)
2208 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -04002209 if (pending_ret) {
Chris Mason925baed2008-06-25 16:01:30 -04002210 ret = pending_ret;
2211 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -04002212 }
Chris Mason26b80032007-08-08 20:17:12 -04002213
2214update_block:
Chris Mason0b86a832008-03-24 15:01:56 -04002215 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0);
Chris Masonf5947062008-02-04 10:10:13 -05002216 if (ret) {
2217 printk("update block group failed for %Lu %Lu\n",
2218 ins->objectid, ins->offset);
2219 BUG();
2220 }
Chris Mason925baed2008-06-25 16:01:30 -04002221out:
Chris Masone6dcd2d2008-07-17 12:53:50 -04002222 return ret;
2223}
2224
2225int btrfs_alloc_reserved_extent(struct btrfs_trans_handle *trans,
2226 struct btrfs_root *root,
2227 u64 root_objectid, u64 ref_generation,
2228 u64 owner, u64 owner_offset,
2229 struct btrfs_key *ins)
2230{
2231 int ret;
2232 maybe_lock_mutex(root);
2233 ret = __btrfs_alloc_reserved_extent(trans, root, root_objectid,
2234 ref_generation, owner,
2235 owner_offset, ins);
2236 maybe_unlock_mutex(root);
2237 return ret;
2238}
2239/*
2240 * finds a free extent and does all the dirty work required for allocation
2241 * returns the key for the extent through ins, and a tree buffer for
2242 * the first block of the extent through buf.
2243 *
2244 * returns 0 if everything worked, non-zero otherwise.
2245 */
2246int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
2247 struct btrfs_root *root,
2248 u64 num_bytes, u64 min_alloc_size,
2249 u64 root_objectid, u64 ref_generation,
2250 u64 owner, u64 owner_offset,
2251 u64 empty_size, u64 hint_byte,
2252 u64 search_end, struct btrfs_key *ins, u64 data)
2253{
2254 int ret;
2255
2256 maybe_lock_mutex(root);
2257
2258 ret = __btrfs_reserve_extent(trans, root, num_bytes,
2259 min_alloc_size, empty_size, hint_byte,
2260 search_end, ins, data);
2261 BUG_ON(ret);
2262 ret = __btrfs_alloc_reserved_extent(trans, root, root_objectid,
2263 ref_generation, owner,
2264 owner_offset, ins);
2265 BUG_ON(ret);
2266
Chris Mason925baed2008-06-25 16:01:30 -04002267 maybe_unlock_mutex(root);
2268 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05002269}
Chris Masonfec577f2007-02-26 10:40:21 -05002270/*
2271 * helper function to allocate a block for a given tree
2272 * returns the tree buffer or NULL.
2273 */
Chris Mason5f39d392007-10-15 16:14:19 -04002274struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -04002275 struct btrfs_root *root,
Chris Mason7bb86312007-12-11 09:25:06 -05002276 u32 blocksize,
Chris Mason7bb86312007-12-11 09:25:06 -05002277 u64 root_objectid,
2278 u64 ref_generation,
2279 u64 first_objectid,
2280 int level,
2281 u64 hint,
Chris Mason5f39d392007-10-15 16:14:19 -04002282 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05002283{
Chris Masone2fa7222007-03-12 16:22:34 -04002284 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05002285 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04002286 struct extent_buffer *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05002287
Chris Mason98d20f62008-04-14 09:46:10 -04002288 ret = btrfs_alloc_extent(trans, root, blocksize, blocksize,
Chris Mason7bb86312007-12-11 09:25:06 -05002289 root_objectid, ref_generation,
Chris Masonf6dbff52007-12-13 11:13:32 -05002290 level, first_objectid, empty_size, hint,
Chris Masondb945352007-10-15 16:15:53 -04002291 (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05002292 if (ret) {
Chris Mason54aa1f42007-06-22 14:16:25 -04002293 BUG_ON(ret > 0);
2294 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05002295 }
Chris Masondb945352007-10-15 16:15:53 -04002296 buf = btrfs_find_create_tree_block(root, ins.objectid, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04002297 if (!buf) {
Chris Mason7bb86312007-12-11 09:25:06 -05002298 btrfs_free_extent(trans, root, ins.objectid, blocksize,
2299 root->root_key.objectid, ref_generation,
2300 0, 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04002301 return ERR_PTR(-ENOMEM);
2302 }
Chris Mason55c69072008-01-09 15:55:33 -05002303 btrfs_set_header_generation(buf, trans->transid);
Chris Mason925baed2008-06-25 16:01:30 -04002304 btrfs_tree_lock(buf);
Chris Mason55c69072008-01-09 15:55:33 -05002305 clean_tree_block(trans, root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04002306 btrfs_set_buffer_uptodate(buf);
Chris Mason55c69072008-01-09 15:55:33 -05002307
2308 if (PageDirty(buf->first_page)) {
2309 printk("page %lu dirty\n", buf->first_page->index);
2310 WARN_ON(1);
2311 }
2312
Chris Mason5f39d392007-10-15 16:14:19 -04002313 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
2314 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002315 trans->blocks_used++;
Chris Masonfec577f2007-02-26 10:40:21 -05002316 return buf;
2317}
Chris Masona28ec192007-03-06 20:08:01 -05002318
Yan Zheng31153d82008-07-28 15:32:19 -04002319static int noinline drop_leaf_ref_no_cache(struct btrfs_trans_handle *trans,
Yanbcc63ab2008-07-30 16:29:20 -04002320 struct btrfs_root *root,
Yan Zheng31153d82008-07-28 15:32:19 -04002321 struct extent_buffer *leaf)
Chris Mason6407bf62007-03-27 06:33:00 -04002322{
Chris Mason7bb86312007-12-11 09:25:06 -05002323 u64 leaf_owner;
2324 u64 leaf_generation;
Chris Mason5f39d392007-10-15 16:14:19 -04002325 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04002326 struct btrfs_file_extent_item *fi;
2327 int i;
2328 int nritems;
2329 int ret;
2330
Chris Mason5f39d392007-10-15 16:14:19 -04002331 BUG_ON(!btrfs_is_leaf(leaf));
2332 nritems = btrfs_header_nritems(leaf);
Chris Mason7bb86312007-12-11 09:25:06 -05002333 leaf_owner = btrfs_header_owner(leaf);
2334 leaf_generation = btrfs_header_generation(leaf);
2335
Chris Mason6407bf62007-03-27 06:33:00 -04002336 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04002337 u64 disk_bytenr;
Chris Masone34a5b42008-07-22 12:08:37 -04002338 cond_resched();
Chris Mason5f39d392007-10-15 16:14:19 -04002339
2340 btrfs_item_key_to_cpu(leaf, &key, i);
2341 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04002342 continue;
2343 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002344 if (btrfs_file_extent_type(leaf, fi) ==
2345 BTRFS_FILE_EXTENT_INLINE)
Chris Mason236454d2007-04-19 13:37:44 -04002346 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04002347 /*
2348 * FIXME make sure to insert a trans record that
2349 * repeats the snapshot del on crash
2350 */
Chris Masondb945352007-10-15 16:15:53 -04002351 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
2352 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04002353 continue;
Chris Mason4a096752008-07-21 10:29:44 -04002354
2355 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04002356 ret = __btrfs_free_extent(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002357 btrfs_file_extent_disk_num_bytes(leaf, fi),
2358 leaf_owner, leaf_generation,
2359 key.objectid, key.offset, 0);
Chris Mason4a096752008-07-21 10:29:44 -04002360 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason6407bf62007-03-27 06:33:00 -04002361 BUG_ON(ret);
2362 }
2363 return 0;
2364}
2365
Yan Zheng31153d82008-07-28 15:32:19 -04002366static int noinline drop_leaf_ref(struct btrfs_trans_handle *trans,
Yanbcc63ab2008-07-30 16:29:20 -04002367 struct btrfs_root *root,
Yan Zheng31153d82008-07-28 15:32:19 -04002368 struct btrfs_leaf_ref *ref)
2369{
2370 int i;
2371 int ret;
2372 struct btrfs_extent_info *info = ref->extents;
2373
Yan Zheng31153d82008-07-28 15:32:19 -04002374 for (i = 0; i < ref->nritems; i++) {
2375 mutex_lock(&root->fs_info->alloc_mutex);
2376 ret = __btrfs_free_extent(trans, root,
2377 info->bytenr, info->num_bytes,
2378 ref->owner, ref->generation,
2379 info->objectid, info->offset, 0);
2380 mutex_unlock(&root->fs_info->alloc_mutex);
2381 BUG_ON(ret);
2382 info++;
2383 }
Yan Zheng31153d82008-07-28 15:32:19 -04002384
2385 return 0;
2386}
2387
Chris Mason98ed5172008-01-03 10:01:48 -05002388static void noinline reada_walk_down(struct btrfs_root *root,
Chris Masonbea495e2008-01-24 16:13:14 -05002389 struct extent_buffer *node,
2390 int slot)
Chris Masone0115992007-06-19 16:23:05 -04002391{
Chris Masondb945352007-10-15 16:15:53 -04002392 u64 bytenr;
Chris Masonbea495e2008-01-24 16:13:14 -05002393 u64 last = 0;
2394 u32 nritems;
Chris Masone0115992007-06-19 16:23:05 -04002395 u32 refs;
Chris Masondb945352007-10-15 16:15:53 -04002396 u32 blocksize;
Chris Masonbea495e2008-01-24 16:13:14 -05002397 int ret;
2398 int i;
2399 int level;
2400 int skipped = 0;
Chris Masone0115992007-06-19 16:23:05 -04002401
Chris Mason5f39d392007-10-15 16:14:19 -04002402 nritems = btrfs_header_nritems(node);
Chris Masondb945352007-10-15 16:15:53 -04002403 level = btrfs_header_level(node);
Chris Masonbea495e2008-01-24 16:13:14 -05002404 if (level)
2405 return;
2406
2407 for (i = slot; i < nritems && skipped < 32; i++) {
Chris Masondb945352007-10-15 16:15:53 -04002408 bytenr = btrfs_node_blockptr(node, i);
Chris Masonbea495e2008-01-24 16:13:14 -05002409 if (last && ((bytenr > last && bytenr - last > 32 * 1024) ||
2410 (last > bytenr && last - bytenr > 32 * 1024))) {
2411 skipped++;
Chris Masone0115992007-06-19 16:23:05 -04002412 continue;
Chris Masonbea495e2008-01-24 16:13:14 -05002413 }
2414 blocksize = btrfs_level_size(root, level - 1);
2415 if (i != slot) {
2416 ret = lookup_extent_ref(NULL, root, bytenr,
2417 blocksize, &refs);
2418 BUG_ON(ret);
2419 if (refs != 1) {
2420 skipped++;
2421 continue;
2422 }
2423 }
Chris Masonca7a79a2008-05-12 12:59:19 -04002424 ret = readahead_tree_block(root, bytenr, blocksize,
2425 btrfs_node_ptr_generation(node, i));
Chris Masonbea495e2008-01-24 16:13:14 -05002426 last = bytenr + blocksize;
Chris Mason409eb952007-08-08 20:17:12 -04002427 cond_resched();
Chris Masone0115992007-06-19 16:23:05 -04002428 if (ret)
2429 break;
2430 }
2431}
2432
Chris Mason333db942008-06-25 16:01:30 -04002433int drop_snap_lookup_refcount(struct btrfs_root *root, u64 start, u64 len,
2434 u32 *refs)
2435{
Chris Mason017e5362008-07-28 15:32:51 -04002436 int ret;
Chris Masonf87f0572008-08-01 11:27:23 -04002437
Chris Mason017e5362008-07-28 15:32:51 -04002438 ret = lookup_extent_ref(NULL, root, start, len, refs);
Chris Masonf87f0572008-08-01 11:27:23 -04002439 BUG_ON(ret);
2440
2441#if 0 // some debugging code in case we see problems here
2442 /* if the refs count is one, it won't get increased again. But
2443 * if the ref count is > 1, someone may be decreasing it at
2444 * the same time we are.
2445 */
2446 if (*refs != 1) {
2447 struct extent_buffer *eb = NULL;
2448 eb = btrfs_find_create_tree_block(root, start, len);
2449 if (eb)
2450 btrfs_tree_lock(eb);
2451
2452 mutex_lock(&root->fs_info->alloc_mutex);
2453 ret = lookup_extent_ref(NULL, root, start, len, refs);
2454 BUG_ON(ret);
2455 mutex_unlock(&root->fs_info->alloc_mutex);
2456
2457 if (eb) {
2458 btrfs_tree_unlock(eb);
2459 free_extent_buffer(eb);
2460 }
2461 if (*refs == 1) {
2462 printk("block %llu went down to one during drop_snap\n",
2463 (unsigned long long)start);
2464 }
2465
2466 }
2467#endif
2468
Chris Masone7a84562008-06-25 16:01:31 -04002469 cond_resched();
Chris Mason017e5362008-07-28 15:32:51 -04002470 return ret;
Chris Mason333db942008-06-25 16:01:30 -04002471}
2472
2473/*
Chris Mason9aca1d52007-03-13 11:09:37 -04002474 * helper function for drop_snapshot, this walks down the tree dropping ref
2475 * counts as it goes.
2476 */
Chris Mason98ed5172008-01-03 10:01:48 -05002477static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
2478 struct btrfs_root *root,
2479 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002480{
Chris Mason7bb86312007-12-11 09:25:06 -05002481 u64 root_owner;
2482 u64 root_gen;
2483 u64 bytenr;
Chris Masonca7a79a2008-05-12 12:59:19 -04002484 u64 ptr_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04002485 struct extent_buffer *next;
2486 struct extent_buffer *cur;
Chris Mason7bb86312007-12-11 09:25:06 -05002487 struct extent_buffer *parent;
Yan Zheng31153d82008-07-28 15:32:19 -04002488 struct btrfs_leaf_ref *ref;
Chris Masondb945352007-10-15 16:15:53 -04002489 u32 blocksize;
Chris Mason20524f02007-03-10 06:35:47 -05002490 int ret;
2491 u32 refs;
2492
Chris Mason5caf2a02007-04-02 11:20:42 -04002493 WARN_ON(*level < 0);
2494 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason333db942008-06-25 16:01:30 -04002495 ret = drop_snap_lookup_refcount(root, path->nodes[*level]->start,
Chris Masondb945352007-10-15 16:15:53 -04002496 path->nodes[*level]->len, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05002497 BUG_ON(ret);
2498 if (refs > 1)
2499 goto out;
Chris Masone0115992007-06-19 16:23:05 -04002500
Chris Mason9aca1d52007-03-13 11:09:37 -04002501 /*
2502 * walk down to the last node level and free all the leaves
2503 */
Chris Mason6407bf62007-03-27 06:33:00 -04002504 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002505 WARN_ON(*level < 0);
2506 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05002507 cur = path->nodes[*level];
Chris Masone0115992007-06-19 16:23:05 -04002508
Chris Mason5f39d392007-10-15 16:14:19 -04002509 if (btrfs_header_level(cur) != *level)
Chris Mason2c90e5d2007-04-02 10:50:19 -04002510 WARN_ON(1);
Chris Masone0115992007-06-19 16:23:05 -04002511
Chris Mason7518a232007-03-12 12:01:18 -04002512 if (path->slots[*level] >=
Chris Mason5f39d392007-10-15 16:14:19 -04002513 btrfs_header_nritems(cur))
Chris Mason20524f02007-03-10 06:35:47 -05002514 break;
Chris Mason6407bf62007-03-27 06:33:00 -04002515 if (*level == 0) {
Yan Zheng31153d82008-07-28 15:32:19 -04002516 ret = drop_leaf_ref_no_cache(trans, root, cur);
Chris Mason6407bf62007-03-27 06:33:00 -04002517 BUG_ON(ret);
2518 break;
2519 }
Chris Masondb945352007-10-15 16:15:53 -04002520 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
Chris Masonca7a79a2008-05-12 12:59:19 -04002521 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
Chris Masondb945352007-10-15 16:15:53 -04002522 blocksize = btrfs_level_size(root, *level - 1);
Chris Mason925baed2008-06-25 16:01:30 -04002523
Chris Mason333db942008-06-25 16:01:30 -04002524 ret = drop_snap_lookup_refcount(root, bytenr, blocksize, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04002525 BUG_ON(ret);
2526 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002527 parent = path->nodes[*level];
2528 root_owner = btrfs_header_owner(parent);
2529 root_gen = btrfs_header_generation(parent);
Chris Mason20524f02007-03-10 06:35:47 -05002530 path->slots[*level]++;
Chris Masonf87f0572008-08-01 11:27:23 -04002531
2532 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04002533 ret = __btrfs_free_extent(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002534 blocksize, root_owner,
2535 root_gen, 0, 0, 1);
Chris Mason20524f02007-03-10 06:35:47 -05002536 BUG_ON(ret);
Chris Masonf87f0572008-08-01 11:27:23 -04002537 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason18e35e02008-08-01 13:11:41 -04002538
2539 atomic_inc(&root->fs_info->throttle_gen);
2540 wake_up(&root->fs_info->transaction_throttle);
2541
Chris Mason20524f02007-03-10 06:35:47 -05002542 continue;
2543 }
Chris Masonf87f0572008-08-01 11:27:23 -04002544 /*
2545 * at this point, we have a single ref, and since the
2546 * only place referencing this extent is a dead root
2547 * the reference count should never go higher.
2548 * So, we don't need to check it again
2549 */
Yan Zheng31153d82008-07-28 15:32:19 -04002550 if (*level == 1) {
2551 struct btrfs_key key;
2552 btrfs_node_key_to_cpu(cur, &key, path->slots[*level]);
Chris Mason017e5362008-07-28 15:32:51 -04002553 ref = btrfs_lookup_leaf_ref(root, bytenr);
Yan Zheng31153d82008-07-28 15:32:19 -04002554 if (ref) {
2555 ret = drop_leaf_ref(trans, root, ref);
2556 BUG_ON(ret);
2557 btrfs_remove_leaf_ref(root, ref);
Yanbcc63ab2008-07-30 16:29:20 -04002558 btrfs_free_leaf_ref(root, ref);
Yan Zheng31153d82008-07-28 15:32:19 -04002559 *level = 0;
2560 break;
2561 }
Chris Mason37d1aee2008-07-31 10:48:37 -04002562 if (printk_ratelimit())
2563 printk("leaf ref miss for bytenr %llu\n",
2564 (unsigned long long)bytenr);
Yan Zheng31153d82008-07-28 15:32:19 -04002565 }
Chris Masondb945352007-10-15 16:15:53 -04002566 next = btrfs_find_tree_block(root, bytenr, blocksize);
Chris Mason1259ab72008-05-12 13:39:03 -04002567 if (!next || !btrfs_buffer_uptodate(next, ptr_gen)) {
Chris Mason5f39d392007-10-15 16:14:19 -04002568 free_extent_buffer(next);
Chris Mason333db942008-06-25 16:01:30 -04002569
Chris Masona74a4b92008-06-25 16:01:31 -04002570 if (path->slots[*level] == 0)
2571 reada_walk_down(root, cur, path->slots[*level]);
Chris Masonca7a79a2008-05-12 12:59:19 -04002572 next = read_tree_block(root, bytenr, blocksize,
2573 ptr_gen);
Chris Masone7a84562008-06-25 16:01:31 -04002574 cond_resched();
Chris Masonf87f0572008-08-01 11:27:23 -04002575#if 0
2576 /*
2577 * this is a debugging check and can go away
2578 * the ref should never go all the way down to 1
2579 * at this point
2580 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04002581 ret = lookup_extent_ref(NULL, root, bytenr, blocksize,
2582 &refs);
Chris Masone9d0b132007-08-10 14:06:19 -04002583 BUG_ON(ret);
Chris Masonf87f0572008-08-01 11:27:23 -04002584 WARN_ON(refs != 1);
2585#endif
Chris Masone9d0b132007-08-10 14:06:19 -04002586 }
Chris Mason5caf2a02007-04-02 11:20:42 -04002587 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04002588 if (path->nodes[*level-1])
Chris Mason5f39d392007-10-15 16:14:19 -04002589 free_extent_buffer(path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05002590 path->nodes[*level-1] = next;
Chris Mason5f39d392007-10-15 16:14:19 -04002591 *level = btrfs_header_level(next);
Chris Mason20524f02007-03-10 06:35:47 -05002592 path->slots[*level] = 0;
2593 }
2594out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002595 WARN_ON(*level < 0);
2596 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason7bb86312007-12-11 09:25:06 -05002597
2598 if (path->nodes[*level] == root->node) {
Chris Mason7bb86312007-12-11 09:25:06 -05002599 parent = path->nodes[*level];
Yan Zheng31153d82008-07-28 15:32:19 -04002600 bytenr = path->nodes[*level]->start;
Chris Mason7bb86312007-12-11 09:25:06 -05002601 } else {
2602 parent = path->nodes[*level + 1];
Yan Zheng31153d82008-07-28 15:32:19 -04002603 bytenr = btrfs_node_blockptr(parent, path->slots[*level + 1]);
Chris Mason7bb86312007-12-11 09:25:06 -05002604 }
2605
Yan Zheng31153d82008-07-28 15:32:19 -04002606 blocksize = btrfs_level_size(root, *level);
2607 root_owner = btrfs_header_owner(parent);
Chris Mason7bb86312007-12-11 09:25:06 -05002608 root_gen = btrfs_header_generation(parent);
Yan Zheng31153d82008-07-28 15:32:19 -04002609
Chris Masonf87f0572008-08-01 11:27:23 -04002610 mutex_lock(&root->fs_info->alloc_mutex);
Yan Zheng31153d82008-07-28 15:32:19 -04002611 ret = __btrfs_free_extent(trans, root, bytenr, blocksize,
2612 root_owner, root_gen, 0, 0, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002613 free_extent_buffer(path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05002614 path->nodes[*level] = NULL;
2615 *level += 1;
2616 BUG_ON(ret);
Chris Mason925baed2008-06-25 16:01:30 -04002617 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonf87f0572008-08-01 11:27:23 -04002618
Chris Masone7a84562008-06-25 16:01:31 -04002619 cond_resched();
Chris Mason20524f02007-03-10 06:35:47 -05002620 return 0;
2621}
2622
Chris Mason9aca1d52007-03-13 11:09:37 -04002623/*
2624 * helper for dropping snapshots. This walks back up the tree in the path
2625 * to find the first node higher up where we haven't yet gone through
2626 * all the slots
2627 */
Chris Mason98ed5172008-01-03 10:01:48 -05002628static int noinline walk_up_tree(struct btrfs_trans_handle *trans,
2629 struct btrfs_root *root,
2630 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002631{
Chris Mason7bb86312007-12-11 09:25:06 -05002632 u64 root_owner;
2633 u64 root_gen;
2634 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002635 int i;
2636 int slot;
2637 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04002638
Chris Mason234b63a2007-03-13 10:46:10 -04002639 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05002640 slot = path->slots[i];
Chris Mason5f39d392007-10-15 16:14:19 -04002641 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
2642 struct extent_buffer *node;
2643 struct btrfs_disk_key disk_key;
2644 node = path->nodes[i];
Chris Mason20524f02007-03-10 06:35:47 -05002645 path->slots[i]++;
2646 *level = i;
Chris Mason9f3a7422007-08-07 15:52:19 -04002647 WARN_ON(*level == 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002648 btrfs_node_key(node, &disk_key, path->slots[i]);
Chris Mason9f3a7422007-08-07 15:52:19 -04002649 memcpy(&root_item->drop_progress,
Chris Mason5f39d392007-10-15 16:14:19 -04002650 &disk_key, sizeof(disk_key));
Chris Mason9f3a7422007-08-07 15:52:19 -04002651 root_item->drop_level = i;
Chris Mason20524f02007-03-10 06:35:47 -05002652 return 0;
2653 } else {
Chris Mason7bb86312007-12-11 09:25:06 -05002654 if (path->nodes[*level] == root->node) {
2655 root_owner = root->root_key.objectid;
2656 root_gen =
2657 btrfs_header_generation(path->nodes[*level]);
2658 } else {
2659 struct extent_buffer *node;
2660 node = path->nodes[*level + 1];
2661 root_owner = btrfs_header_owner(node);
2662 root_gen = btrfs_header_generation(node);
2663 }
Chris Masone089f052007-03-16 16:20:31 -04002664 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002665 path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002666 path->nodes[*level]->len,
2667 root_owner, root_gen, 0, 0, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04002668 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002669 free_extent_buffer(path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04002670 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05002671 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05002672 }
2673 }
2674 return 1;
2675}
2676
Chris Mason9aca1d52007-03-13 11:09:37 -04002677/*
2678 * drop the reference count on the tree rooted at 'snap'. This traverses
2679 * the tree freeing any blocks that have a ref count of zero after being
2680 * decremented.
2681 */
Chris Masone089f052007-03-16 16:20:31 -04002682int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04002683 *root)
Chris Mason20524f02007-03-10 06:35:47 -05002684{
Chris Mason3768f362007-03-13 16:47:54 -04002685 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04002686 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05002687 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04002688 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05002689 int i;
2690 int orig_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002691 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002692
Chris Masona2135012008-06-25 16:01:30 -04002693 WARN_ON(!mutex_is_locked(&root->fs_info->drop_mutex));
Chris Mason5caf2a02007-04-02 11:20:42 -04002694 path = btrfs_alloc_path();
2695 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05002696
Chris Mason5f39d392007-10-15 16:14:19 -04002697 level = btrfs_header_level(root->node);
Chris Mason20524f02007-03-10 06:35:47 -05002698 orig_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002699 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2700 path->nodes[level] = root->node;
Chris Masonf510cfe2007-10-15 16:14:48 -04002701 extent_buffer_get(root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -04002702 path->slots[level] = 0;
2703 } else {
2704 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002705 struct btrfs_disk_key found_key;
2706 struct extent_buffer *node;
Chris Mason6702ed42007-08-07 16:15:09 -04002707
Chris Mason9f3a7422007-08-07 15:52:19 -04002708 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Chris Mason6702ed42007-08-07 16:15:09 -04002709 level = root_item->drop_level;
2710 path->lowest_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002711 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason6702ed42007-08-07 16:15:09 -04002712 if (wret < 0) {
Chris Mason9f3a7422007-08-07 15:52:19 -04002713 ret = wret;
2714 goto out;
2715 }
Chris Mason5f39d392007-10-15 16:14:19 -04002716 node = path->nodes[level];
2717 btrfs_node_key(node, &found_key, path->slots[level]);
2718 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2719 sizeof(found_key)));
Chris Mason7d9eb122008-07-08 14:19:17 -04002720 /*
2721 * unlock our path, this is safe because only this
2722 * function is allowed to delete this snapshot
2723 */
Chris Mason925baed2008-06-25 16:01:30 -04002724 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
2725 if (path->nodes[i] && path->locks[i]) {
2726 path->locks[i] = 0;
2727 btrfs_tree_unlock(path->nodes[i]);
2728 }
2729 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002730 }
Chris Mason20524f02007-03-10 06:35:47 -05002731 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002732 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002733 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002734 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002735 if (wret < 0)
2736 ret = wret;
2737
Chris Mason5caf2a02007-04-02 11:20:42 -04002738 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002739 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002740 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002741 if (wret < 0)
2742 ret = wret;
Chris Masone7a84562008-06-25 16:01:31 -04002743 if (trans->transaction->in_commit) {
2744 ret = -EAGAIN;
2745 break;
2746 }
Chris Mason18e35e02008-08-01 13:11:41 -04002747 atomic_inc(&root->fs_info->throttle_gen);
Chris Mason017e5362008-07-28 15:32:51 -04002748 wake_up(&root->fs_info->transaction_throttle);
Chris Mason20524f02007-03-10 06:35:47 -05002749 }
Chris Mason83e15a22007-03-12 09:03:27 -04002750 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002751 if (path->nodes[i]) {
Chris Mason5f39d392007-10-15 16:14:19 -04002752 free_extent_buffer(path->nodes[i]);
Chris Mason0f827312007-10-15 16:18:56 -04002753 path->nodes[i] = NULL;
Chris Mason83e15a22007-03-12 09:03:27 -04002754 }
Chris Mason20524f02007-03-10 06:35:47 -05002755 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002756out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002757 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04002758 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05002759}
Chris Mason9078a3e2007-04-26 16:46:15 -04002760
Chris Masonbe744172007-05-06 10:15:01 -04002761int btrfs_free_block_groups(struct btrfs_fs_info *info)
2762{
Chris Masonf510cfe2007-10-15 16:14:48 -04002763 u64 start;
2764 u64 end;
Yanb97f9202007-11-01 11:28:41 -04002765 u64 ptr;
Chris Mason96b51792007-10-15 16:15:19 -04002766 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04002767
2768 mutex_lock(&info->alloc_mutex);
Chris Mason96b51792007-10-15 16:15:19 -04002769 while(1) {
2770 ret = find_first_extent_bit(&info->block_group_cache, 0,
2771 &start, &end, (unsigned int)-1);
2772 if (ret)
2773 break;
Yanb97f9202007-11-01 11:28:41 -04002774 ret = get_state_private(&info->block_group_cache, start, &ptr);
2775 if (!ret)
2776 kfree((void *)(unsigned long)ptr);
Chris Mason96b51792007-10-15 16:15:19 -04002777 clear_extent_bits(&info->block_group_cache, start,
2778 end, (unsigned int)-1, GFP_NOFS);
2779 }
Chris Masone37c9e62007-05-09 20:13:14 -04002780 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -04002781 ret = find_first_extent_bit(&info->free_space_cache, 0,
2782 &start, &end, EXTENT_DIRTY);
2783 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -04002784 break;
Chris Masonf510cfe2007-10-15 16:14:48 -04002785 clear_extent_dirty(&info->free_space_cache, start,
2786 end, GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04002787 }
Chris Mason925baed2008-06-25 16:01:30 -04002788 mutex_unlock(&info->alloc_mutex);
Chris Masonbe744172007-05-06 10:15:01 -04002789 return 0;
2790}
2791
Chris Mason8e7bf942008-04-28 09:02:36 -04002792static unsigned long calc_ra(unsigned long start, unsigned long last,
2793 unsigned long nr)
2794{
2795 return min(last, start + nr - 1);
2796}
2797
Chris Mason98ed5172008-01-03 10:01:48 -05002798static int noinline relocate_inode_pages(struct inode *inode, u64 start,
2799 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05002800{
2801 u64 page_start;
2802 u64 page_end;
Chris Masonedbd8d42007-12-21 16:27:24 -05002803 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05002804 unsigned long i;
2805 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05002806 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05002807 struct file_ra_state *ra;
Chris Mason8e7bf942008-04-28 09:02:36 -04002808 unsigned long total_read = 0;
2809 unsigned long ra_pages;
Chris Mason3eaa2882008-07-24 11:57:52 -04002810 struct btrfs_ordered_extent *ordered;
Chris Masona061fc82008-05-07 11:43:44 -04002811 struct btrfs_trans_handle *trans;
Chris Mason4313b392008-01-03 09:08:48 -05002812
2813 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002814
2815 mutex_lock(&inode->i_mutex);
Chris Mason4313b392008-01-03 09:08:48 -05002816 i = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05002817 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
2818
Chris Mason8e7bf942008-04-28 09:02:36 -04002819 ra_pages = BTRFS_I(inode)->root->fs_info->bdi.ra_pages;
2820
Chris Mason4313b392008-01-03 09:08:48 -05002821 file_ra_state_init(ra, inode->i_mapping);
Chris Masonedbd8d42007-12-21 16:27:24 -05002822
Chris Mason4313b392008-01-03 09:08:48 -05002823 for (; i <= last_index; i++) {
Chris Mason8e7bf942008-04-28 09:02:36 -04002824 if (total_read % ra_pages == 0) {
2825 btrfs_force_ra(inode->i_mapping, ra, NULL, i,
2826 calc_ra(i, last_index, ra_pages));
2827 }
2828 total_read++;
Chris Mason3eaa2882008-07-24 11:57:52 -04002829again:
2830 if (((u64)i << PAGE_CACHE_SHIFT) > i_size_read(inode))
Chris Masona061fc82008-05-07 11:43:44 -04002831 goto truncate_racing;
Chris Masonedbd8d42007-12-21 16:27:24 -05002832 page = grab_cache_page(inode->i_mapping, i);
Chris Masona061fc82008-05-07 11:43:44 -04002833 if (!page) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002834 goto out_unlock;
Chris Masona061fc82008-05-07 11:43:44 -04002835 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002836 if (!PageUptodate(page)) {
2837 btrfs_readpage(NULL, page);
2838 lock_page(page);
2839 if (!PageUptodate(page)) {
2840 unlock_page(page);
2841 page_cache_release(page);
2842 goto out_unlock;
2843 }
2844 }
Chris Masonec44a352008-04-28 15:29:52 -04002845 wait_on_page_writeback(page);
Chris Mason3eaa2882008-07-24 11:57:52 -04002846
Chris Masonedbd8d42007-12-21 16:27:24 -05002847 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2848 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002849 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002850
Chris Mason3eaa2882008-07-24 11:57:52 -04002851 ordered = btrfs_lookup_ordered_extent(inode, page_start);
2852 if (ordered) {
2853 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
2854 unlock_page(page);
2855 page_cache_release(page);
2856 btrfs_start_ordered_extent(inode, ordered, 1);
2857 btrfs_put_ordered_extent(ordered);
2858 goto again;
2859 }
2860 set_page_extent_mapped(page);
2861
Chris Masonf87f0572008-08-01 11:27:23 -04002862 /*
2863 * make sure page_mkwrite is called for this page if userland
2864 * wants to change it from mmap
2865 */
2866 clear_page_dirty_for_io(page);
Chris Mason3eaa2882008-07-24 11:57:52 -04002867
Chris Masond1310b22008-01-24 16:13:08 -05002868 set_extent_delalloc(io_tree, page_start,
Chris Masonedbd8d42007-12-21 16:27:24 -05002869 page_end, GFP_NOFS);
Chris Masona061fc82008-05-07 11:43:44 -04002870 set_page_dirty(page);
Chris Masonedbd8d42007-12-21 16:27:24 -05002871
Chris Masond1310b22008-01-24 16:13:08 -05002872 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002873 unlock_page(page);
2874 page_cache_release(page);
2875 }
2876
2877out_unlock:
Chris Mason3eaa2882008-07-24 11:57:52 -04002878 /* we have to start the IO in order to get the ordered extents
2879 * instantiated. This allows the relocation to code to wait
2880 * for all the ordered extents to hit the disk.
2881 *
2882 * Otherwise, it would constantly loop over the same extents
2883 * because the old ones don't get deleted until the IO is
2884 * started
2885 */
2886 btrfs_fdatawrite_range(inode->i_mapping, start, start + len - 1,
2887 WB_SYNC_NONE);
Chris Masonec44a352008-04-28 15:29:52 -04002888 kfree(ra);
Chris Masona061fc82008-05-07 11:43:44 -04002889 trans = btrfs_start_transaction(BTRFS_I(inode)->root, 1);
2890 if (trans) {
Chris Masona061fc82008-05-07 11:43:44 -04002891 btrfs_end_transaction(trans, BTRFS_I(inode)->root);
2892 mark_inode_dirty(inode);
2893 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002894 mutex_unlock(&inode->i_mutex);
2895 return 0;
Chris Masona061fc82008-05-07 11:43:44 -04002896
2897truncate_racing:
2898 vmtruncate(inode, inode->i_size);
2899 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
2900 total_read);
2901 goto out_unlock;
Chris Masonedbd8d42007-12-21 16:27:24 -05002902}
2903
Chris Mason4313b392008-01-03 09:08:48 -05002904/*
Chris Masonbf4ef672008-05-08 13:26:18 -04002905 * The back references tell us which tree holds a ref on a block,
2906 * but it is possible for the tree root field in the reference to
2907 * reflect the original root before a snapshot was made. In this
2908 * case we should search through all the children of a given root
2909 * to find potential holders of references on a block.
2910 *
2911 * Instead, we do something a little less fancy and just search
2912 * all the roots for a given key/block combination.
2913 */
2914static int find_root_for_ref(struct btrfs_root *root,
2915 struct btrfs_path *path,
2916 struct btrfs_key *key0,
2917 int level,
2918 int file_key,
2919 struct btrfs_root **found_root,
2920 u64 bytenr)
2921{
2922 struct btrfs_key root_location;
2923 struct btrfs_root *cur_root = *found_root;
2924 struct btrfs_file_extent_item *file_extent;
2925 u64 root_search_start = BTRFS_FS_TREE_OBJECTID;
2926 u64 found_bytenr;
2927 int ret;
Chris Masonbf4ef672008-05-08 13:26:18 -04002928
2929 root_location.offset = (u64)-1;
2930 root_location.type = BTRFS_ROOT_ITEM_KEY;
2931 path->lowest_level = level;
2932 path->reada = 0;
2933 while(1) {
2934 ret = btrfs_search_slot(NULL, cur_root, key0, path, 0, 0);
2935 found_bytenr = 0;
2936 if (ret == 0 && file_key) {
2937 struct extent_buffer *leaf = path->nodes[0];
2938 file_extent = btrfs_item_ptr(leaf, path->slots[0],
2939 struct btrfs_file_extent_item);
2940 if (btrfs_file_extent_type(leaf, file_extent) ==
2941 BTRFS_FILE_EXTENT_REG) {
2942 found_bytenr =
2943 btrfs_file_extent_disk_bytenr(leaf,
2944 file_extent);
2945 }
Chris Mason323da792008-05-09 11:46:48 -04002946 } else if (!file_key) {
Chris Masonbf4ef672008-05-08 13:26:18 -04002947 if (path->nodes[level])
2948 found_bytenr = path->nodes[level]->start;
2949 }
2950
Chris Masonbf4ef672008-05-08 13:26:18 -04002951 btrfs_release_path(cur_root, path);
2952
2953 if (found_bytenr == bytenr) {
2954 *found_root = cur_root;
2955 ret = 0;
2956 goto out;
2957 }
2958 ret = btrfs_search_root(root->fs_info->tree_root,
2959 root_search_start, &root_search_start);
2960 if (ret)
2961 break;
2962
2963 root_location.objectid = root_search_start;
2964 cur_root = btrfs_read_fs_root_no_name(root->fs_info,
2965 &root_location);
2966 if (!cur_root) {
2967 ret = 1;
2968 break;
2969 }
2970 }
2971out:
2972 path->lowest_level = 0;
2973 return ret;
2974}
2975
2976/*
Chris Mason4313b392008-01-03 09:08:48 -05002977 * note, this releases the path
2978 */
Chris Mason98ed5172008-01-03 10:01:48 -05002979static int noinline relocate_one_reference(struct btrfs_root *extent_root,
Chris Masonedbd8d42007-12-21 16:27:24 -05002980 struct btrfs_path *path,
Chris Mason0ef3e662008-05-24 14:04:53 -04002981 struct btrfs_key *extent_key,
2982 u64 *last_file_objectid,
2983 u64 *last_file_offset,
2984 u64 *last_file_root,
2985 u64 last_extent)
Chris Masonedbd8d42007-12-21 16:27:24 -05002986{
2987 struct inode *inode;
2988 struct btrfs_root *found_root;
Chris Masonbf4ef672008-05-08 13:26:18 -04002989 struct btrfs_key root_location;
2990 struct btrfs_key found_key;
Chris Mason4313b392008-01-03 09:08:48 -05002991 struct btrfs_extent_ref *ref;
2992 u64 ref_root;
2993 u64 ref_gen;
2994 u64 ref_objectid;
2995 u64 ref_offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05002996 int ret;
Chris Masonbf4ef672008-05-08 13:26:18 -04002997 int level;
Chris Masonedbd8d42007-12-21 16:27:24 -05002998
Chris Mason7d9eb122008-07-08 14:19:17 -04002999 WARN_ON(!mutex_is_locked(&extent_root->fs_info->alloc_mutex));
3000
Chris Mason4313b392008-01-03 09:08:48 -05003001 ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
3002 struct btrfs_extent_ref);
3003 ref_root = btrfs_ref_root(path->nodes[0], ref);
3004 ref_gen = btrfs_ref_generation(path->nodes[0], ref);
3005 ref_objectid = btrfs_ref_objectid(path->nodes[0], ref);
3006 ref_offset = btrfs_ref_offset(path->nodes[0], ref);
3007 btrfs_release_path(extent_root, path);
3008
Chris Masonbf4ef672008-05-08 13:26:18 -04003009 root_location.objectid = ref_root;
Chris Masonedbd8d42007-12-21 16:27:24 -05003010 if (ref_gen == 0)
Chris Masonbf4ef672008-05-08 13:26:18 -04003011 root_location.offset = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05003012 else
Chris Masonbf4ef672008-05-08 13:26:18 -04003013 root_location.offset = (u64)-1;
3014 root_location.type = BTRFS_ROOT_ITEM_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05003015
3016 found_root = btrfs_read_fs_root_no_name(extent_root->fs_info,
Chris Masonbf4ef672008-05-08 13:26:18 -04003017 &root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05003018 BUG_ON(!found_root);
Chris Mason7d9eb122008-07-08 14:19:17 -04003019 mutex_unlock(&extent_root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003020
3021 if (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
Chris Masonbf4ef672008-05-08 13:26:18 -04003022 found_key.objectid = ref_objectid;
3023 found_key.type = BTRFS_EXTENT_DATA_KEY;
3024 found_key.offset = ref_offset;
3025 level = 0;
3026
Chris Mason0ef3e662008-05-24 14:04:53 -04003027 if (last_extent == extent_key->objectid &&
3028 *last_file_objectid == ref_objectid &&
3029 *last_file_offset == ref_offset &&
3030 *last_file_root == ref_root)
3031 goto out;
3032
Chris Masonbf4ef672008-05-08 13:26:18 -04003033 ret = find_root_for_ref(extent_root, path, &found_key,
3034 level, 1, &found_root,
3035 extent_key->objectid);
3036
3037 if (ret)
3038 goto out;
3039
Chris Mason0ef3e662008-05-24 14:04:53 -04003040 if (last_extent == extent_key->objectid &&
3041 *last_file_objectid == ref_objectid &&
3042 *last_file_offset == ref_offset &&
3043 *last_file_root == ref_root)
3044 goto out;
3045
Chris Masonedbd8d42007-12-21 16:27:24 -05003046 inode = btrfs_iget_locked(extent_root->fs_info->sb,
3047 ref_objectid, found_root);
3048 if (inode->i_state & I_NEW) {
3049 /* the inode and parent dir are two different roots */
3050 BTRFS_I(inode)->root = found_root;
3051 BTRFS_I(inode)->location.objectid = ref_objectid;
3052 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
3053 BTRFS_I(inode)->location.offset = 0;
3054 btrfs_read_locked_inode(inode);
3055 unlock_new_inode(inode);
3056
3057 }
3058 /* this can happen if the reference is not against
3059 * the latest version of the tree root
3060 */
Chris Mason7d9eb122008-07-08 14:19:17 -04003061 if (is_bad_inode(inode))
Chris Masonedbd8d42007-12-21 16:27:24 -05003062 goto out;
Chris Mason7d9eb122008-07-08 14:19:17 -04003063
Chris Mason0ef3e662008-05-24 14:04:53 -04003064 *last_file_objectid = inode->i_ino;
3065 *last_file_root = found_root->root_key.objectid;
3066 *last_file_offset = ref_offset;
3067
Chris Masonedbd8d42007-12-21 16:27:24 -05003068 relocate_inode_pages(inode, ref_offset, extent_key->offset);
Chris Masonedbd8d42007-12-21 16:27:24 -05003069 iput(inode);
Chris Masonedbd8d42007-12-21 16:27:24 -05003070 } else {
3071 struct btrfs_trans_handle *trans;
Chris Masonedbd8d42007-12-21 16:27:24 -05003072 struct extent_buffer *eb;
Chris Mason7d9eb122008-07-08 14:19:17 -04003073 int needs_lock = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05003074
Chris Masonedbd8d42007-12-21 16:27:24 -05003075 eb = read_tree_block(found_root, extent_key->objectid,
Chris Masonca7a79a2008-05-12 12:59:19 -04003076 extent_key->offset, 0);
Chris Mason925baed2008-06-25 16:01:30 -04003077 btrfs_tree_lock(eb);
Chris Masonedbd8d42007-12-21 16:27:24 -05003078 level = btrfs_header_level(eb);
3079
3080 if (level == 0)
3081 btrfs_item_key_to_cpu(eb, &found_key, 0);
3082 else
3083 btrfs_node_key_to_cpu(eb, &found_key, 0);
3084
Chris Mason925baed2008-06-25 16:01:30 -04003085 btrfs_tree_unlock(eb);
Chris Masonedbd8d42007-12-21 16:27:24 -05003086 free_extent_buffer(eb);
3087
Chris Masonbf4ef672008-05-08 13:26:18 -04003088 ret = find_root_for_ref(extent_root, path, &found_key,
3089 level, 0, &found_root,
3090 extent_key->objectid);
3091
3092 if (ret)
3093 goto out;
3094
Chris Mason7d9eb122008-07-08 14:19:17 -04003095 /*
3096 * right here almost anything could happen to our key,
3097 * but that's ok. The cow below will either relocate it
3098 * or someone else will have relocated it. Either way,
3099 * it is in a different spot than it was before and
3100 * we're happy.
3101 */
3102
Chris Masonbf4ef672008-05-08 13:26:18 -04003103 trans = btrfs_start_transaction(found_root, 1);
3104
Chris Mason7d9eb122008-07-08 14:19:17 -04003105 if (found_root == extent_root->fs_info->extent_root ||
3106 found_root == extent_root->fs_info->chunk_root ||
3107 found_root == extent_root->fs_info->dev_root) {
3108 needs_lock = 1;
3109 mutex_lock(&extent_root->fs_info->alloc_mutex);
3110 }
3111
Chris Masonedbd8d42007-12-21 16:27:24 -05003112 path->lowest_level = level;
Chris Mason8f662a72008-01-02 10:01:11 -05003113 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05003114 ret = btrfs_search_slot(trans, found_root, &found_key, path,
3115 0, 1);
3116 path->lowest_level = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05003117 btrfs_release_path(found_root, path);
Chris Mason7d9eb122008-07-08 14:19:17 -04003118
Chris Mason0ef3e662008-05-24 14:04:53 -04003119 if (found_root == found_root->fs_info->extent_root)
3120 btrfs_extent_post_op(trans, found_root);
Chris Mason7d9eb122008-07-08 14:19:17 -04003121 if (needs_lock)
3122 mutex_unlock(&extent_root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003123
Chris Mason7d9eb122008-07-08 14:19:17 -04003124 btrfs_end_transaction(trans, found_root);
3125
3126 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003127out:
Chris Mason7d9eb122008-07-08 14:19:17 -04003128 mutex_lock(&extent_root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003129 return 0;
3130}
3131
Chris Masona061fc82008-05-07 11:43:44 -04003132static int noinline del_extent_zero(struct btrfs_root *extent_root,
3133 struct btrfs_path *path,
3134 struct btrfs_key *extent_key)
3135{
3136 int ret;
3137 struct btrfs_trans_handle *trans;
3138
3139 trans = btrfs_start_transaction(extent_root, 1);
3140 ret = btrfs_search_slot(trans, extent_root, extent_key, path, -1, 1);
3141 if (ret > 0) {
3142 ret = -EIO;
3143 goto out;
3144 }
3145 if (ret < 0)
3146 goto out;
3147 ret = btrfs_del_item(trans, extent_root, path);
3148out:
3149 btrfs_end_transaction(trans, extent_root);
3150 return ret;
3151}
3152
Chris Mason98ed5172008-01-03 10:01:48 -05003153static int noinline relocate_one_extent(struct btrfs_root *extent_root,
3154 struct btrfs_path *path,
3155 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05003156{
3157 struct btrfs_key key;
3158 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05003159 struct extent_buffer *leaf;
Chris Mason0ef3e662008-05-24 14:04:53 -04003160 u64 last_file_objectid = 0;
3161 u64 last_file_root = 0;
3162 u64 last_file_offset = (u64)-1;
3163 u64 last_extent = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05003164 u32 nritems;
3165 u32 item_size;
3166 int ret = 0;
3167
Chris Masona061fc82008-05-07 11:43:44 -04003168 if (extent_key->objectid == 0) {
3169 ret = del_extent_zero(extent_root, path, extent_key);
3170 goto out;
3171 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003172 key.objectid = extent_key->objectid;
3173 key.type = BTRFS_EXTENT_REF_KEY;
3174 key.offset = 0;
3175
3176 while(1) {
3177 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3178
Chris Masonedbd8d42007-12-21 16:27:24 -05003179 if (ret < 0)
3180 goto out;
3181
3182 ret = 0;
3183 leaf = path->nodes[0];
3184 nritems = btrfs_header_nritems(leaf);
Chris Masona061fc82008-05-07 11:43:44 -04003185 if (path->slots[0] == nritems) {
3186 ret = btrfs_next_leaf(extent_root, path);
3187 if (ret > 0) {
3188 ret = 0;
3189 goto out;
3190 }
3191 if (ret < 0)
3192 goto out;
Chris Masonbf4ef672008-05-08 13:26:18 -04003193 leaf = path->nodes[0];
Chris Masona061fc82008-05-07 11:43:44 -04003194 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003195
3196 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masona061fc82008-05-07 11:43:44 -04003197 if (found_key.objectid != extent_key->objectid) {
Chris Masonedbd8d42007-12-21 16:27:24 -05003198 break;
Chris Masona061fc82008-05-07 11:43:44 -04003199 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003200
Chris Masona061fc82008-05-07 11:43:44 -04003201 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
Chris Masonedbd8d42007-12-21 16:27:24 -05003202 break;
Chris Masona061fc82008-05-07 11:43:44 -04003203 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003204
3205 key.offset = found_key.offset + 1;
3206 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3207
Chris Mason0ef3e662008-05-24 14:04:53 -04003208 ret = relocate_one_reference(extent_root, path, extent_key,
3209 &last_file_objectid,
3210 &last_file_offset,
3211 &last_file_root, last_extent);
Chris Masonedbd8d42007-12-21 16:27:24 -05003212 if (ret)
3213 goto out;
Chris Mason0ef3e662008-05-24 14:04:53 -04003214 last_extent = extent_key->objectid;
Chris Masonedbd8d42007-12-21 16:27:24 -05003215 }
3216 ret = 0;
3217out:
3218 btrfs_release_path(extent_root, path);
3219 return ret;
3220}
3221
Chris Masonec44a352008-04-28 15:29:52 -04003222static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
3223{
3224 u64 num_devices;
3225 u64 stripped = BTRFS_BLOCK_GROUP_RAID0 |
3226 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
3227
Chris Masona061fc82008-05-07 11:43:44 -04003228 num_devices = root->fs_info->fs_devices->num_devices;
Chris Masonec44a352008-04-28 15:29:52 -04003229 if (num_devices == 1) {
3230 stripped |= BTRFS_BLOCK_GROUP_DUP;
3231 stripped = flags & ~stripped;
3232
3233 /* turn raid0 into single device chunks */
3234 if (flags & BTRFS_BLOCK_GROUP_RAID0)
3235 return stripped;
3236
3237 /* turn mirroring into duplication */
3238 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
3239 BTRFS_BLOCK_GROUP_RAID10))
3240 return stripped | BTRFS_BLOCK_GROUP_DUP;
3241 return flags;
3242 } else {
3243 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04003244 if (flags & stripped)
3245 return flags;
3246
3247 stripped |= BTRFS_BLOCK_GROUP_DUP;
3248 stripped = flags & ~stripped;
3249
3250 /* switch duplicated blocks with raid1 */
3251 if (flags & BTRFS_BLOCK_GROUP_DUP)
3252 return stripped | BTRFS_BLOCK_GROUP_RAID1;
3253
3254 /* turn single device chunks into raid0 */
3255 return stripped | BTRFS_BLOCK_GROUP_RAID0;
3256 }
3257 return flags;
3258}
3259
Chris Mason0ef3e662008-05-24 14:04:53 -04003260int __alloc_chunk_for_shrink(struct btrfs_root *root,
3261 struct btrfs_block_group_cache *shrink_block_group,
3262 int force)
3263{
3264 struct btrfs_trans_handle *trans;
3265 u64 new_alloc_flags;
3266 u64 calc;
3267
Chris Masonc286ac42008-07-22 23:06:41 -04003268 spin_lock(&shrink_block_group->lock);
Chris Mason0ef3e662008-05-24 14:04:53 -04003269 if (btrfs_block_group_used(&shrink_block_group->item) > 0) {
Chris Masonc286ac42008-07-22 23:06:41 -04003270 spin_unlock(&shrink_block_group->lock);
Chris Mason7d9eb122008-07-08 14:19:17 -04003271 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonc286ac42008-07-22 23:06:41 -04003272
Chris Mason0ef3e662008-05-24 14:04:53 -04003273 trans = btrfs_start_transaction(root, 1);
Chris Mason7d9eb122008-07-08 14:19:17 -04003274 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masonc286ac42008-07-22 23:06:41 -04003275 spin_lock(&shrink_block_group->lock);
Chris Mason7d9eb122008-07-08 14:19:17 -04003276
Chris Mason0ef3e662008-05-24 14:04:53 -04003277 new_alloc_flags = update_block_group_flags(root,
3278 shrink_block_group->flags);
3279 if (new_alloc_flags != shrink_block_group->flags) {
3280 calc =
3281 btrfs_block_group_used(&shrink_block_group->item);
3282 } else {
3283 calc = shrink_block_group->key.offset;
3284 }
Chris Masonc286ac42008-07-22 23:06:41 -04003285 spin_unlock(&shrink_block_group->lock);
3286
Chris Mason0ef3e662008-05-24 14:04:53 -04003287 do_chunk_alloc(trans, root->fs_info->extent_root,
3288 calc + 2 * 1024 * 1024, new_alloc_flags, force);
Chris Mason7d9eb122008-07-08 14:19:17 -04003289
3290 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason0ef3e662008-05-24 14:04:53 -04003291 btrfs_end_transaction(trans, root);
Chris Mason7d9eb122008-07-08 14:19:17 -04003292 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masonc286ac42008-07-22 23:06:41 -04003293 } else
3294 spin_unlock(&shrink_block_group->lock);
Chris Mason0ef3e662008-05-24 14:04:53 -04003295 return 0;
3296}
3297
Chris Mason8f18cf12008-04-25 16:53:30 -04003298int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 shrink_start)
Chris Masonedbd8d42007-12-21 16:27:24 -05003299{
3300 struct btrfs_trans_handle *trans;
3301 struct btrfs_root *tree_root = root->fs_info->tree_root;
3302 struct btrfs_path *path;
3303 u64 cur_byte;
3304 u64 total_found;
Chris Mason8f18cf12008-04-25 16:53:30 -04003305 u64 shrink_last_byte;
3306 struct btrfs_block_group_cache *shrink_block_group;
Chris Masonedbd8d42007-12-21 16:27:24 -05003307 struct btrfs_fs_info *info = root->fs_info;
Chris Masonedbd8d42007-12-21 16:27:24 -05003308 struct btrfs_key key;
Yan73e48b22008-01-03 14:14:39 -05003309 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05003310 struct extent_buffer *leaf;
3311 u32 nritems;
3312 int ret;
Chris Masona061fc82008-05-07 11:43:44 -04003313 int progress;
Chris Masonedbd8d42007-12-21 16:27:24 -05003314
Chris Mason925baed2008-06-25 16:01:30 -04003315 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04003316 shrink_block_group = btrfs_lookup_block_group(root->fs_info,
3317 shrink_start);
3318 BUG_ON(!shrink_block_group);
3319
Chris Mason0ef3e662008-05-24 14:04:53 -04003320 shrink_last_byte = shrink_block_group->key.objectid +
3321 shrink_block_group->key.offset;
Chris Mason8f18cf12008-04-25 16:53:30 -04003322
3323 shrink_block_group->space_info->total_bytes -=
3324 shrink_block_group->key.offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05003325 path = btrfs_alloc_path();
3326 root = root->fs_info->extent_root;
Chris Mason8f662a72008-01-02 10:01:11 -05003327 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05003328
Chris Mason323da792008-05-09 11:46:48 -04003329 printk("btrfs relocating block group %llu flags %llu\n",
3330 (unsigned long long)shrink_start,
3331 (unsigned long long)shrink_block_group->flags);
3332
Chris Mason0ef3e662008-05-24 14:04:53 -04003333 __alloc_chunk_for_shrink(root, shrink_block_group, 1);
Chris Mason323da792008-05-09 11:46:48 -04003334
Chris Mason0ef3e662008-05-24 14:04:53 -04003335again:
3336
Chris Mason8f18cf12008-04-25 16:53:30 -04003337 shrink_block_group->ro = 1;
3338
Chris Masonedbd8d42007-12-21 16:27:24 -05003339 total_found = 0;
Chris Masona061fc82008-05-07 11:43:44 -04003340 progress = 0;
Chris Mason8f18cf12008-04-25 16:53:30 -04003341 key.objectid = shrink_start;
Chris Masonedbd8d42007-12-21 16:27:24 -05003342 key.offset = 0;
3343 key.type = 0;
Yan73e48b22008-01-03 14:14:39 -05003344 cur_byte = key.objectid;
Chris Mason4313b392008-01-03 09:08:48 -05003345
Yan73e48b22008-01-03 14:14:39 -05003346 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3347 if (ret < 0)
3348 goto out;
3349
Chris Mason0b86a832008-03-24 15:01:56 -04003350 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
Yan73e48b22008-01-03 14:14:39 -05003351 if (ret < 0)
3352 goto out;
Chris Mason8f18cf12008-04-25 16:53:30 -04003353
Yan73e48b22008-01-03 14:14:39 -05003354 if (ret == 0) {
3355 leaf = path->nodes[0];
3356 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04003357 if (found_key.objectid + found_key.offset > shrink_start &&
3358 found_key.objectid < shrink_last_byte) {
Yan73e48b22008-01-03 14:14:39 -05003359 cur_byte = found_key.objectid;
3360 key.objectid = cur_byte;
3361 }
3362 }
3363 btrfs_release_path(root, path);
3364
3365 while(1) {
Chris Masonedbd8d42007-12-21 16:27:24 -05003366 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3367 if (ret < 0)
3368 goto out;
Yan73e48b22008-01-03 14:14:39 -05003369
Chris Mason7d9eb122008-07-08 14:19:17 -04003370next:
Chris Masonedbd8d42007-12-21 16:27:24 -05003371 leaf = path->nodes[0];
Chris Masonedbd8d42007-12-21 16:27:24 -05003372 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05003373 if (path->slots[0] >= nritems) {
3374 ret = btrfs_next_leaf(root, path);
3375 if (ret < 0)
3376 goto out;
3377 if (ret == 1) {
3378 ret = 0;
3379 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05003380 }
Yan73e48b22008-01-03 14:14:39 -05003381 leaf = path->nodes[0];
3382 nritems = btrfs_header_nritems(leaf);
3383 }
3384
3385 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason725c8462008-01-04 16:47:16 -05003386
Chris Mason8f18cf12008-04-25 16:53:30 -04003387 if (found_key.objectid >= shrink_last_byte)
3388 break;
3389
Chris Mason725c8462008-01-04 16:47:16 -05003390 if (progress && need_resched()) {
3391 memcpy(&key, &found_key, sizeof(key));
Chris Mason725c8462008-01-04 16:47:16 -05003392 cond_resched();
Chris Mason725c8462008-01-04 16:47:16 -05003393 btrfs_release_path(root, path);
3394 btrfs_search_slot(NULL, root, &key, path, 0, 0);
3395 progress = 0;
3396 goto next;
3397 }
3398 progress = 1;
3399
Yan73e48b22008-01-03 14:14:39 -05003400 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_ITEM_KEY ||
3401 found_key.objectid + found_key.offset <= cur_byte) {
Chris Mason0ef3e662008-05-24 14:04:53 -04003402 memcpy(&key, &found_key, sizeof(key));
3403 key.offset++;
Yan73e48b22008-01-03 14:14:39 -05003404 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05003405 goto next;
3406 }
Yan73e48b22008-01-03 14:14:39 -05003407
Chris Masonedbd8d42007-12-21 16:27:24 -05003408 total_found++;
3409 cur_byte = found_key.objectid + found_key.offset;
3410 key.objectid = cur_byte;
3411 btrfs_release_path(root, path);
3412 ret = relocate_one_extent(root, path, &found_key);
Chris Mason0ef3e662008-05-24 14:04:53 -04003413 __alloc_chunk_for_shrink(root, shrink_block_group, 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05003414 }
3415
3416 btrfs_release_path(root, path);
3417
3418 if (total_found > 0) {
Chris Mason323da792008-05-09 11:46:48 -04003419 printk("btrfs relocate found %llu last extent was %llu\n",
3420 (unsigned long long)total_found,
3421 (unsigned long long)found_key.objectid);
Chris Mason7d9eb122008-07-08 14:19:17 -04003422 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003423 trans = btrfs_start_transaction(tree_root, 1);
3424 btrfs_commit_transaction(trans, tree_root);
3425
Chris Masonedbd8d42007-12-21 16:27:24 -05003426 btrfs_clean_old_snapshots(tree_root);
Chris Masonedbd8d42007-12-21 16:27:24 -05003427
Chris Mason3eaa2882008-07-24 11:57:52 -04003428 btrfs_wait_ordered_extents(tree_root);
3429
Chris Masonedbd8d42007-12-21 16:27:24 -05003430 trans = btrfs_start_transaction(tree_root, 1);
3431 btrfs_commit_transaction(trans, tree_root);
Chris Mason7d9eb122008-07-08 14:19:17 -04003432 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003433 goto again;
3434 }
3435
Chris Mason8f18cf12008-04-25 16:53:30 -04003436 /*
3437 * we've freed all the extents, now remove the block
3438 * group item from the tree
3439 */
Chris Mason7d9eb122008-07-08 14:19:17 -04003440 mutex_unlock(&root->fs_info->alloc_mutex);
3441
Chris Masonedbd8d42007-12-21 16:27:24 -05003442 trans = btrfs_start_transaction(root, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04003443
Chris Mason7d9eb122008-07-08 14:19:17 -04003444 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04003445 memcpy(&key, &shrink_block_group->key, sizeof(key));
Chris Mason4313b392008-01-03 09:08:48 -05003446
Chris Mason8f18cf12008-04-25 16:53:30 -04003447 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3448 if (ret > 0)
3449 ret = -EIO;
Josef Bacik8e8a1e32008-07-24 12:17:14 -04003450 if (ret < 0) {
3451 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04003452 goto out;
Josef Bacik8e8a1e32008-07-24 12:17:14 -04003453 }
Yan73e48b22008-01-03 14:14:39 -05003454
Chris Mason0ef3e662008-05-24 14:04:53 -04003455 clear_extent_bits(&info->block_group_cache, key.objectid,
3456 key.objectid + key.offset - 1,
Chris Mason8f18cf12008-04-25 16:53:30 -04003457 (unsigned int)-1, GFP_NOFS);
Yan73e48b22008-01-03 14:14:39 -05003458
Chris Mason0ef3e662008-05-24 14:04:53 -04003459
3460 clear_extent_bits(&info->free_space_cache,
3461 key.objectid, key.objectid + key.offset - 1,
3462 (unsigned int)-1, GFP_NOFS);
3463
3464 memset(shrink_block_group, 0, sizeof(*shrink_block_group));
3465 kfree(shrink_block_group);
3466
Chris Mason8f18cf12008-04-25 16:53:30 -04003467 btrfs_del_item(trans, root, path);
Chris Mason7d9eb122008-07-08 14:19:17 -04003468 btrfs_release_path(root, path);
3469 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003470 btrfs_commit_transaction(trans, root);
Chris Mason0ef3e662008-05-24 14:04:53 -04003471
Chris Mason7d9eb122008-07-08 14:19:17 -04003472 mutex_lock(&root->fs_info->alloc_mutex);
3473
Chris Mason0ef3e662008-05-24 14:04:53 -04003474 /* the code to unpin extents might set a few bits in the free
3475 * space cache for this range again
3476 */
3477 clear_extent_bits(&info->free_space_cache,
3478 key.objectid, key.objectid + key.offset - 1,
3479 (unsigned int)-1, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05003480out:
3481 btrfs_free_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04003482 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003483 return ret;
3484}
3485
Chris Mason0b86a832008-03-24 15:01:56 -04003486int find_first_block_group(struct btrfs_root *root, struct btrfs_path *path,
3487 struct btrfs_key *key)
3488{
Chris Mason925baed2008-06-25 16:01:30 -04003489 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003490 struct btrfs_key found_key;
3491 struct extent_buffer *leaf;
3492 int slot;
3493
3494 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
3495 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04003496 goto out;
3497
Chris Mason0b86a832008-03-24 15:01:56 -04003498 while(1) {
3499 slot = path->slots[0];
3500 leaf = path->nodes[0];
3501 if (slot >= btrfs_header_nritems(leaf)) {
3502 ret = btrfs_next_leaf(root, path);
3503 if (ret == 0)
3504 continue;
3505 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04003506 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04003507 break;
3508 }
3509 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3510
3511 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04003512 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
3513 ret = 0;
3514 goto out;
3515 }
Chris Mason0b86a832008-03-24 15:01:56 -04003516 path->slots[0]++;
3517 }
3518 ret = -ENOENT;
Chris Mason925baed2008-06-25 16:01:30 -04003519out:
Chris Mason0b86a832008-03-24 15:01:56 -04003520 return ret;
3521}
3522
Chris Mason9078a3e2007-04-26 16:46:15 -04003523int btrfs_read_block_groups(struct btrfs_root *root)
3524{
3525 struct btrfs_path *path;
3526 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04003527 int bit;
Chris Mason9078a3e2007-04-26 16:46:15 -04003528 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04003529 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04003530 struct btrfs_space_info *space_info;
Chris Masond1310b22008-01-24 16:13:08 -05003531 struct extent_io_tree *block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04003532 struct btrfs_key key;
3533 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04003534 struct extent_buffer *leaf;
Chris Mason96b51792007-10-15 16:15:19 -04003535
3536 block_group_cache = &info->block_group_cache;
Chris Masonbe744172007-05-06 10:15:01 -04003537 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04003538 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003539 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003540 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04003541 path = btrfs_alloc_path();
3542 if (!path)
3543 return -ENOMEM;
3544
Chris Mason925baed2008-06-25 16:01:30 -04003545 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason9078a3e2007-04-26 16:46:15 -04003546 while(1) {
Chris Mason0b86a832008-03-24 15:01:56 -04003547 ret = find_first_block_group(root, path, &key);
3548 if (ret > 0) {
3549 ret = 0;
3550 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04003551 }
Chris Mason0b86a832008-03-24 15:01:56 -04003552 if (ret != 0)
3553 goto error;
3554
Chris Mason5f39d392007-10-15 16:14:19 -04003555 leaf = path->nodes[0];
3556 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04003557 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04003558 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04003559 ret = -ENOMEM;
Chris Mason9078a3e2007-04-26 16:46:15 -04003560 break;
3561 }
Chris Mason3e1ad542007-05-07 20:03:49 -04003562
Chris Masonc286ac42008-07-22 23:06:41 -04003563 spin_lock_init(&cache->lock);
Chris Mason5f39d392007-10-15 16:14:19 -04003564 read_extent_buffer(leaf, &cache->item,
3565 btrfs_item_ptr_offset(leaf, path->slots[0]),
3566 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04003567 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason0b86a832008-03-24 15:01:56 -04003568
Chris Mason9078a3e2007-04-26 16:46:15 -04003569 key.objectid = found_key.objectid + found_key.offset;
3570 btrfs_release_path(root, path);
Chris Mason0b86a832008-03-24 15:01:56 -04003571 cache->flags = btrfs_block_group_flags(&cache->item);
3572 bit = 0;
3573 if (cache->flags & BTRFS_BLOCK_GROUP_DATA) {
Chris Mason96b51792007-10-15 16:15:19 -04003574 bit = BLOCK_GROUP_DATA;
Chris Mason0b86a832008-03-24 15:01:56 -04003575 } else if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
3576 bit = BLOCK_GROUP_SYSTEM;
3577 } else if (cache->flags & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason96b51792007-10-15 16:15:19 -04003578 bit = BLOCK_GROUP_METADATA;
Chris Mason31f3c992007-04-30 15:25:45 -04003579 }
Chris Mason8790d502008-04-03 16:29:03 -04003580 set_avail_alloc_bits(info, cache->flags);
Chris Mason96b51792007-10-15 16:15:19 -04003581
Chris Mason6324fbf2008-03-24 15:01:59 -04003582 ret = update_space_info(info, cache->flags, found_key.offset,
3583 btrfs_block_group_used(&cache->item),
3584 &space_info);
3585 BUG_ON(ret);
3586 cache->space_info = space_info;
3587
Chris Mason96b51792007-10-15 16:15:19 -04003588 /* use EXTENT_LOCKED to prevent merging */
3589 set_extent_bits(block_group_cache, found_key.objectid,
3590 found_key.objectid + found_key.offset - 1,
Chris Masonc286ac42008-07-22 23:06:41 -04003591 EXTENT_LOCKED, GFP_NOFS);
Chris Mason96b51792007-10-15 16:15:19 -04003592 set_state_private(block_group_cache, found_key.objectid,
Jens Axboeae2f5412007-10-19 09:22:59 -04003593 (unsigned long)cache);
Chris Masonc286ac42008-07-22 23:06:41 -04003594 set_extent_bits(block_group_cache, found_key.objectid,
3595 found_key.objectid + found_key.offset - 1,
3596 bit | EXTENT_LOCKED, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04003597 if (key.objectid >=
Chris Masondb945352007-10-15 16:15:53 -04003598 btrfs_super_total_bytes(&info->super_copy))
Chris Mason9078a3e2007-04-26 16:46:15 -04003599 break;
3600 }
Chris Mason0b86a832008-03-24 15:01:56 -04003601 ret = 0;
3602error:
Chris Mason9078a3e2007-04-26 16:46:15 -04003603 btrfs_free_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04003604 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04003605 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003606}
Chris Mason6324fbf2008-03-24 15:01:59 -04003607
3608int btrfs_make_block_group(struct btrfs_trans_handle *trans,
3609 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04003610 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04003611 u64 size)
3612{
3613 int ret;
3614 int bit = 0;
3615 struct btrfs_root *extent_root;
3616 struct btrfs_block_group_cache *cache;
3617 struct extent_io_tree *block_group_cache;
3618
Chris Mason7d9eb122008-07-08 14:19:17 -04003619 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Mason6324fbf2008-03-24 15:01:59 -04003620 extent_root = root->fs_info->extent_root;
3621 block_group_cache = &root->fs_info->block_group_cache;
3622
Chris Mason8f18cf12008-04-25 16:53:30 -04003623 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason6324fbf2008-03-24 15:01:59 -04003624 BUG_ON(!cache);
Chris Masone17cade2008-04-15 15:41:47 -04003625 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04003626 cache->key.offset = size;
Chris Masonc286ac42008-07-22 23:06:41 -04003627 spin_lock_init(&cache->lock);
Chris Mason6324fbf2008-03-24 15:01:59 -04003628 btrfs_set_key_type(&cache->key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason0ef3e662008-05-24 14:04:53 -04003629
Chris Mason6324fbf2008-03-24 15:01:59 -04003630 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04003631 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
3632 cache->flags = type;
3633 btrfs_set_block_group_flags(&cache->item, type);
3634
3635 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
3636 &cache->space_info);
3637 BUG_ON(ret);
3638
Chris Masond18a2c42008-04-04 15:40:00 -04003639 bit = block_group_state_bits(type);
Chris Masone17cade2008-04-15 15:41:47 -04003640 set_extent_bits(block_group_cache, chunk_offset,
3641 chunk_offset + size - 1,
Chris Masonc286ac42008-07-22 23:06:41 -04003642 EXTENT_LOCKED, GFP_NOFS);
Chris Masone17cade2008-04-15 15:41:47 -04003643 set_state_private(block_group_cache, chunk_offset,
3644 (unsigned long)cache);
Chris Masonc286ac42008-07-22 23:06:41 -04003645 set_extent_bits(block_group_cache, chunk_offset,
3646 chunk_offset + size - 1,
3647 bit | EXTENT_LOCKED, GFP_NOFS);
3648
Chris Mason6324fbf2008-03-24 15:01:59 -04003649 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
3650 sizeof(cache->item));
3651 BUG_ON(ret);
3652
3653 finish_current_insert(trans, extent_root);
3654 ret = del_pending_extents(trans, extent_root);
3655 BUG_ON(ret);
Chris Masond18a2c42008-04-04 15:40:00 -04003656 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04003657
Chris Mason6324fbf2008-03-24 15:01:59 -04003658 return 0;
3659}