blob: e63b3b4bed7c7a76e73c8bea7c778adf29e4a88b [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>
David Woodhouse21af8042008-08-12 14:13:26 +010021#include <linux/blkdev.h>
Chris Mason74493f72007-12-11 09:25:06 -050022#include "hash.h"
Miguela5eb62e2008-04-11 15:45:51 -040023#include "crc32c.h"
Chris Masonfec577f2007-02-26 10:40:21 -050024#include "ctree.h"
25#include "disk-io.h"
26#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040027#include "transaction.h"
Chris Mason0b86a832008-03-24 15:01:56 -040028#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040029#include "locking.h"
Yan Zheng31153d82008-07-28 15:32:19 -040030#include "ref-cache.h"
Chris Masonfec577f2007-02-26 10:40:21 -050031
Chris Mason0b86a832008-03-24 15:01:56 -040032#define BLOCK_GROUP_DATA EXTENT_WRITEBACK
Chris Mason96b51792007-10-15 16:15:19 -040033#define BLOCK_GROUP_METADATA EXTENT_UPTODATE
Chris Mason0b86a832008-03-24 15:01:56 -040034#define BLOCK_GROUP_SYSTEM EXTENT_NEW
35
Chris Mason96b51792007-10-15 16:15:19 -040036#define BLOCK_GROUP_DIRTY EXTENT_DIRTY
37
Chris Masone089f052007-03-16 16:20:31 -040038static int finish_current_insert(struct btrfs_trans_handle *trans, struct
39 btrfs_root *extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -040040static int del_pending_extents(struct btrfs_trans_handle *trans, struct
41 btrfs_root *extent_root);
Chris Mason925baed2008-06-25 16:01:30 -040042static struct btrfs_block_group_cache *
43__btrfs_find_block_group(struct btrfs_root *root,
44 struct btrfs_block_group_cache *hint,
45 u64 search_start, int data, int owner);
Yand548ee52008-01-03 13:56:30 -050046
Chris Mason925baed2008-06-25 16:01:30 -040047void maybe_lock_mutex(struct btrfs_root *root)
48{
49 if (root != root->fs_info->extent_root &&
50 root != root->fs_info->chunk_root &&
51 root != root->fs_info->dev_root) {
52 mutex_lock(&root->fs_info->alloc_mutex);
53 }
54}
55
56void maybe_unlock_mutex(struct btrfs_root *root)
57{
58 if (root != root->fs_info->extent_root &&
59 root != root->fs_info->chunk_root &&
60 root != root->fs_info->dev_root) {
61 mutex_unlock(&root->fs_info->alloc_mutex);
62 }
63}
Chris Masonfec577f2007-02-26 10:40:21 -050064
Chris Masone37c9e62007-05-09 20:13:14 -040065static int cache_block_group(struct btrfs_root *root,
66 struct btrfs_block_group_cache *block_group)
67{
68 struct btrfs_path *path;
69 int ret;
70 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -040071 struct extent_buffer *leaf;
Chris Masond1310b22008-01-24 16:13:08 -050072 struct extent_io_tree *free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040073 int slot;
Chris Masone37c9e62007-05-09 20:13:14 -040074 u64 last = 0;
75 u64 hole_size;
Yan7d7d6062007-09-14 16:15:28 -040076 u64 first_free;
Chris Masone37c9e62007-05-09 20:13:14 -040077 int found = 0;
78
Chris Mason00f5c792007-11-30 10:09:33 -050079 if (!block_group)
80 return 0;
81
Chris Masone37c9e62007-05-09 20:13:14 -040082 root = root->fs_info->extent_root;
Chris Masonf510cfe2007-10-15 16:14:48 -040083 free_space_cache = &root->fs_info->free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040084
85 if (block_group->cached)
86 return 0;
Chris Masonf510cfe2007-10-15 16:14:48 -040087
Chris Masone37c9e62007-05-09 20:13:14 -040088 path = btrfs_alloc_path();
89 if (!path)
90 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -040091
Chris Mason2cc58cf2007-08-27 16:49:44 -040092 path->reada = 2;
Chris Mason5cd57b22008-06-25 16:01:30 -040093 /*
94 * we get into deadlocks with paths held by callers of this function.
95 * since the alloc_mutex is protecting things right now, just
96 * skip the locking here
97 */
98 path->skip_locking = 1;
Yan7d7d6062007-09-14 16:15:28 -040099 first_free = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -0400100 key.objectid = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -0400101 key.offset = 0;
102 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
103 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
104 if (ret < 0)
105 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -0400106 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
Yand548ee52008-01-03 13:56:30 -0500107 if (ret < 0)
108 return ret;
109 if (ret == 0) {
110 leaf = path->nodes[0];
111 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
112 if (key.objectid + key.offset > first_free)
113 first_free = key.objectid + key.offset;
114 }
Chris Masone37c9e62007-05-09 20:13:14 -0400115 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400116 leaf = path->nodes[0];
Chris Masone37c9e62007-05-09 20:13:14 -0400117 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -0400118 if (slot >= btrfs_header_nritems(leaf)) {
Chris Masone37c9e62007-05-09 20:13:14 -0400119 ret = btrfs_next_leaf(root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400120 if (ret < 0)
121 goto err;
Chris Masonde428b62007-05-18 13:28:27 -0400122 if (ret == 0) {
Chris Masone37c9e62007-05-09 20:13:14 -0400123 continue;
Chris Masonde428b62007-05-18 13:28:27 -0400124 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400125 break;
126 }
127 }
Chris Mason5f39d392007-10-15 16:14:19 -0400128 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan7d7d6062007-09-14 16:15:28 -0400129 if (key.objectid < block_group->key.objectid) {
Yan7d7d6062007-09-14 16:15:28 -0400130 goto next;
131 }
Chris Masone37c9e62007-05-09 20:13:14 -0400132 if (key.objectid >= block_group->key.objectid +
133 block_group->key.offset) {
Yan7d7d6062007-09-14 16:15:28 -0400134 break;
135 }
136
137 if (btrfs_key_type(&key) == BTRFS_EXTENT_ITEM_KEY) {
138 if (!found) {
139 last = first_free;
140 found = 1;
Chris Masone37c9e62007-05-09 20:13:14 -0400141 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400142 if (key.objectid > last) {
143 hole_size = key.objectid - last;
144 set_extent_dirty(free_space_cache, last,
145 last + hole_size - 1,
146 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -0400147 }
Yan7d7d6062007-09-14 16:15:28 -0400148 last = key.objectid + key.offset;
Chris Masone37c9e62007-05-09 20:13:14 -0400149 }
Yan7d7d6062007-09-14 16:15:28 -0400150next:
Chris Masone37c9e62007-05-09 20:13:14 -0400151 path->slots[0]++;
152 }
153
Yan7d7d6062007-09-14 16:15:28 -0400154 if (!found)
155 last = first_free;
156 if (block_group->key.objectid +
157 block_group->key.offset > last) {
158 hole_size = block_group->key.objectid +
159 block_group->key.offset - last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400160 set_extent_dirty(free_space_cache, last,
161 last + hole_size - 1, GFP_NOFS);
Yan7d7d6062007-09-14 16:15:28 -0400162 }
Chris Masone37c9e62007-05-09 20:13:14 -0400163 block_group->cached = 1;
Chris Mason54aa1f42007-06-22 14:16:25 -0400164err:
Chris Masone37c9e62007-05-09 20:13:14 -0400165 btrfs_free_path(path);
166 return 0;
167}
168
Chris Mason0ef3e662008-05-24 14:04:53 -0400169struct btrfs_block_group_cache *btrfs_lookup_first_block_group(struct
170 btrfs_fs_info *info,
171 u64 bytenr)
172{
173 struct extent_io_tree *block_group_cache;
174 struct btrfs_block_group_cache *block_group = NULL;
175 u64 ptr;
176 u64 start;
177 u64 end;
178 int ret;
179
180 bytenr = max_t(u64, bytenr,
181 BTRFS_SUPER_INFO_OFFSET + BTRFS_SUPER_INFO_SIZE);
182 block_group_cache = &info->block_group_cache;
183 ret = find_first_extent_bit(block_group_cache,
184 bytenr, &start, &end,
185 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA |
186 BLOCK_GROUP_SYSTEM);
187 if (ret) {
188 return NULL;
189 }
190 ret = get_state_private(block_group_cache, start, &ptr);
191 if (ret)
192 return NULL;
193
194 block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
195 return block_group;
196}
197
Chris Mason5276aed2007-06-11 21:33:38 -0400198struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
199 btrfs_fs_info *info,
Chris Masondb945352007-10-15 16:15:53 -0400200 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400201{
Chris Masond1310b22008-01-24 16:13:08 -0500202 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -0400203 struct btrfs_block_group_cache *block_group = NULL;
204 u64 ptr;
205 u64 start;
206 u64 end;
Chris Masonbe744172007-05-06 10:15:01 -0400207 int ret;
208
Chris Masona061fc82008-05-07 11:43:44 -0400209 bytenr = max_t(u64, bytenr,
210 BTRFS_SUPER_INFO_OFFSET + BTRFS_SUPER_INFO_SIZE);
Chris Mason96b51792007-10-15 16:15:19 -0400211 block_group_cache = &info->block_group_cache;
212 ret = find_first_extent_bit(block_group_cache,
Chris Masondb945352007-10-15 16:15:53 -0400213 bytenr, &start, &end,
Chris Mason0b86a832008-03-24 15:01:56 -0400214 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA |
215 BLOCK_GROUP_SYSTEM);
Chris Masonbe744172007-05-06 10:15:01 -0400216 if (ret) {
Chris Mason96b51792007-10-15 16:15:19 -0400217 return NULL;
Chris Masonbe744172007-05-06 10:15:01 -0400218 }
Chris Mason96b51792007-10-15 16:15:19 -0400219 ret = get_state_private(block_group_cache, start, &ptr);
220 if (ret)
221 return NULL;
222
Jens Axboeae2f5412007-10-19 09:22:59 -0400223 block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Yan5cf66422007-11-16 14:57:09 -0500224 if (block_group->key.objectid <= bytenr && bytenr <
Chris Mason96b51792007-10-15 16:15:19 -0400225 block_group->key.objectid + block_group->key.offset)
226 return block_group;
Chris Masonbe744172007-05-06 10:15:01 -0400227 return NULL;
228}
Chris Mason0b86a832008-03-24 15:01:56 -0400229
230static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
231{
Chris Mason593060d2008-03-25 16:50:33 -0400232 return (cache->flags & bits) == bits;
Chris Mason0b86a832008-03-24 15:01:56 -0400233}
234
235static int noinline find_search_start(struct btrfs_root *root,
Chris Mason98ed5172008-01-03 10:01:48 -0500236 struct btrfs_block_group_cache **cache_ret,
Chris Mason0ef3e662008-05-24 14:04:53 -0400237 u64 *start_ret, u64 num, int data)
Chris Masone37c9e62007-05-09 20:13:14 -0400238{
Chris Masone37c9e62007-05-09 20:13:14 -0400239 int ret;
240 struct btrfs_block_group_cache *cache = *cache_ret;
Chris Masond7fc6402008-02-18 12:12:38 -0500241 struct extent_io_tree *free_space_cache;
Chris Mason7d1660d2008-03-24 15:02:03 -0400242 struct extent_state *state;
Chris Masone19caa52007-10-15 16:17:44 -0400243 u64 last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400244 u64 start = 0;
Chris Mason257d0ce2007-11-07 21:08:16 -0500245 u64 cache_miss = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500246 u64 total_fs_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -0400247 u64 search_start = *start_ret;
Chris Masonf84a8b32007-11-06 10:26:29 -0500248 int wrapped = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400249
Chris Mason7d9eb122008-07-08 14:19:17 -0400250 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Masonc31f8832008-01-08 15:46:31 -0500251 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masond7fc6402008-02-18 12:12:38 -0500252 free_space_cache = &root->fs_info->free_space_cache;
253
Chris Mason0ef3e662008-05-24 14:04:53 -0400254 if (!cache)
Chris Mason54aa1f42007-06-22 14:16:25 -0400255 goto out;
Chris Masonf84a8b32007-11-06 10:26:29 -0500256
Chris Mason0ef3e662008-05-24 14:04:53 -0400257again:
258 ret = cache_block_group(root, cache);
259 if (ret) {
260 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -0400261 }
Chris Masone19caa52007-10-15 16:17:44 -0400262
Chris Mason0ef3e662008-05-24 14:04:53 -0400263 last = max(search_start, cache->key.objectid);
264 if (!block_group_bits(cache, data) || cache->ro)
265 goto new_group;
266
Chris Mason7d1660d2008-03-24 15:02:03 -0400267 spin_lock_irq(&free_space_cache->lock);
268 state = find_first_extent_bit_state(free_space_cache, last, EXTENT_DIRTY);
Chris Masone37c9e62007-05-09 20:13:14 -0400269 while(1) {
Chris Mason7d1660d2008-03-24 15:02:03 -0400270 if (!state) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500271 if (!cache_miss)
272 cache_miss = last;
Chris Mason7d1660d2008-03-24 15:02:03 -0400273 spin_unlock_irq(&free_space_cache->lock);
Chris Masone19caa52007-10-15 16:17:44 -0400274 goto new_group;
275 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400276
Chris Mason7d1660d2008-03-24 15:02:03 -0400277 start = max(last, state->start);
278 last = state->end + 1;
Chris Mason257d0ce2007-11-07 21:08:16 -0500279 if (last - start < num) {
Chris Mason7d1660d2008-03-24 15:02:03 -0400280 do {
281 state = extent_state_next(state);
282 } while(state && !(state->state & EXTENT_DIRTY));
Chris Masonf510cfe2007-10-15 16:14:48 -0400283 continue;
Chris Mason257d0ce2007-11-07 21:08:16 -0500284 }
Chris Mason7d1660d2008-03-24 15:02:03 -0400285 spin_unlock_irq(&free_space_cache->lock);
Chris Mason0ef3e662008-05-24 14:04:53 -0400286 if (cache->ro) {
Chris Mason8f18cf12008-04-25 16:53:30 -0400287 goto new_group;
Chris Mason0ef3e662008-05-24 14:04:53 -0400288 }
Chris Mason0b86a832008-03-24 15:01:56 -0400289 if (start + num > cache->key.objectid + cache->key.offset)
Chris Masone37c9e62007-05-09 20:13:14 -0400290 goto new_group;
Chris Mason8790d502008-04-03 16:29:03 -0400291 if (!block_group_bits(cache, data)) {
Chris Mason611f0e02008-04-03 16:29:03 -0400292 printk("block group bits don't match %Lu %d\n", cache->flags, data);
Chris Mason8790d502008-04-03 16:29:03 -0400293 }
Chris Mason0b86a832008-03-24 15:01:56 -0400294 *start_ret = start;
295 return 0;
Chris Mason8790d502008-04-03 16:29:03 -0400296 }
297out:
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500298 cache = btrfs_lookup_block_group(root->fs_info, search_start);
299 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -0400300 printk("Unable to find block group for %Lu\n", search_start);
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500301 WARN_ON(1);
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500302 }
Chris Mason0b86a832008-03-24 15:01:56 -0400303 return -ENOSPC;
Chris Masone37c9e62007-05-09 20:13:14 -0400304
305new_group:
Chris Masone19caa52007-10-15 16:17:44 -0400306 last = cache->key.objectid + cache->key.offset;
Chris Masonf84a8b32007-11-06 10:26:29 -0500307wrapped:
Chris Mason0ef3e662008-05-24 14:04:53 -0400308 cache = btrfs_lookup_first_block_group(root->fs_info, last);
Chris Masonc31f8832008-01-08 15:46:31 -0500309 if (!cache || cache->key.objectid >= total_fs_bytes) {
Chris Mason0e4de582007-11-26 10:55:49 -0500310no_cache:
Chris Masonf84a8b32007-11-06 10:26:29 -0500311 if (!wrapped) {
312 wrapped = 1;
313 last = search_start;
Chris Masonf84a8b32007-11-06 10:26:29 -0500314 goto wrapped;
315 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500316 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -0400317 }
Chris Mason257d0ce2007-11-07 21:08:16 -0500318 if (cache_miss && !cache->cached) {
319 cache_block_group(root, cache);
320 last = cache_miss;
Chris Mason0ef3e662008-05-24 14:04:53 -0400321 cache = btrfs_lookup_first_block_group(root->fs_info, last);
Chris Mason257d0ce2007-11-07 21:08:16 -0500322 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400323 cache_miss = 0;
Chris Masonc286ac42008-07-22 23:06:41 -0400324 cache = btrfs_find_block_group(root, cache, last, data, 0);
Chris Mason0e4de582007-11-26 10:55:49 -0500325 if (!cache)
326 goto no_cache;
Chris Masone37c9e62007-05-09 20:13:14 -0400327 *cache_ret = cache;
328 goto again;
329}
330
Chris Mason84f54cf2007-06-12 07:43:08 -0400331static u64 div_factor(u64 num, int factor)
332{
Chris Mason257d0ce2007-11-07 21:08:16 -0500333 if (factor == 10)
334 return num;
Chris Mason84f54cf2007-06-12 07:43:08 -0400335 num *= factor;
336 do_div(num, 10);
337 return num;
338}
339
Chris Mason6324fbf2008-03-24 15:01:59 -0400340static int block_group_state_bits(u64 flags)
341{
342 int bits = 0;
343 if (flags & BTRFS_BLOCK_GROUP_DATA)
344 bits |= BLOCK_GROUP_DATA;
345 if (flags & BTRFS_BLOCK_GROUP_METADATA)
346 bits |= BLOCK_GROUP_METADATA;
347 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
348 bits |= BLOCK_GROUP_SYSTEM;
349 return bits;
350}
351
Chris Mason925baed2008-06-25 16:01:30 -0400352static struct btrfs_block_group_cache *
353__btrfs_find_block_group(struct btrfs_root *root,
354 struct btrfs_block_group_cache *hint,
355 u64 search_start, int data, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400356{
Chris Mason96b51792007-10-15 16:15:19 -0400357 struct btrfs_block_group_cache *cache;
Chris Masond1310b22008-01-24 16:13:08 -0500358 struct extent_io_tree *block_group_cache;
Chris Mason31f3c992007-04-30 15:25:45 -0400359 struct btrfs_block_group_cache *found_group = NULL;
Chris Masoncd1bc462007-04-27 10:08:34 -0400360 struct btrfs_fs_info *info = root->fs_info;
361 u64 used;
Chris Mason31f3c992007-04-30 15:25:45 -0400362 u64 last = 0;
Chris Mason96b51792007-10-15 16:15:19 -0400363 u64 start;
364 u64 end;
365 u64 free_check;
366 u64 ptr;
367 int bit;
Chris Masoncd1bc462007-04-27 10:08:34 -0400368 int ret;
Chris Mason31f3c992007-04-30 15:25:45 -0400369 int full_search = 0;
Chris Masonbce4eae2008-04-24 14:42:46 -0400370 int factor = 10;
Chris Mason0ef3e662008-05-24 14:04:53 -0400371 int wrapped = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400372
Chris Mason96b51792007-10-15 16:15:19 -0400373 block_group_cache = &info->block_group_cache;
374
Chris Masona236aed2008-04-29 09:38:00 -0400375 if (data & BTRFS_BLOCK_GROUP_METADATA)
376 factor = 9;
Chris Masonbe744172007-05-06 10:15:01 -0400377
Chris Mason6324fbf2008-03-24 15:01:59 -0400378 bit = block_group_state_bits(data);
Chris Masonbe744172007-05-06 10:15:01 -0400379
Chris Mason0ef3e662008-05-24 14:04:53 -0400380 if (search_start) {
Chris Masonbe744172007-05-06 10:15:01 -0400381 struct btrfs_block_group_cache *shint;
Chris Mason0ef3e662008-05-24 14:04:53 -0400382 shint = btrfs_lookup_first_block_group(info, search_start);
Chris Mason8f18cf12008-04-25 16:53:30 -0400383 if (shint && block_group_bits(shint, data) && !shint->ro) {
Chris Masonc286ac42008-07-22 23:06:41 -0400384 spin_lock(&shint->lock);
Chris Masonbe744172007-05-06 10:15:01 -0400385 used = btrfs_block_group_used(&shint->item);
Yan324ae4d2007-11-16 14:57:08 -0500386 if (used + shint->pinned <
387 div_factor(shint->key.offset, factor)) {
Chris Masonc286ac42008-07-22 23:06:41 -0400388 spin_unlock(&shint->lock);
Chris Masonbe744172007-05-06 10:15:01 -0400389 return shint;
390 }
Chris Masonc286ac42008-07-22 23:06:41 -0400391 spin_unlock(&shint->lock);
Chris Masonbe744172007-05-06 10:15:01 -0400392 }
393 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400394 if (hint && !hint->ro && block_group_bits(hint, data)) {
Chris Masonc286ac42008-07-22 23:06:41 -0400395 spin_lock(&hint->lock);
Chris Mason31f3c992007-04-30 15:25:45 -0400396 used = btrfs_block_group_used(&hint->item);
Yan324ae4d2007-11-16 14:57:08 -0500397 if (used + hint->pinned <
398 div_factor(hint->key.offset, factor)) {
Chris Masonc286ac42008-07-22 23:06:41 -0400399 spin_unlock(&hint->lock);
Chris Mason31f3c992007-04-30 15:25:45 -0400400 return hint;
401 }
Chris Masonc286ac42008-07-22 23:06:41 -0400402 spin_unlock(&hint->lock);
Chris Masone19caa52007-10-15 16:17:44 -0400403 last = hint->key.objectid + hint->key.offset;
Chris Mason31f3c992007-04-30 15:25:45 -0400404 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400405 if (hint)
Chris Mason0ef3e662008-05-24 14:04:53 -0400406 last = max(hint->key.objectid, search_start);
Chris Masone37c9e62007-05-09 20:13:14 -0400407 else
Chris Mason0ef3e662008-05-24 14:04:53 -0400408 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400409 }
Chris Mason31f3c992007-04-30 15:25:45 -0400410again:
Chris Masoncd1bc462007-04-27 10:08:34 -0400411 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400412 ret = find_first_extent_bit(block_group_cache, last,
413 &start, &end, bit);
414 if (ret)
Chris Masoncd1bc462007-04-27 10:08:34 -0400415 break;
Chris Mason96b51792007-10-15 16:15:19 -0400416
417 ret = get_state_private(block_group_cache, start, &ptr);
Chris Mason0ef3e662008-05-24 14:04:53 -0400418 if (ret) {
419 last = end + 1;
420 continue;
421 }
Chris Mason96b51792007-10-15 16:15:19 -0400422
Jens Axboeae2f5412007-10-19 09:22:59 -0400423 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Masonc286ac42008-07-22 23:06:41 -0400424 spin_lock(&cache->lock);
Chris Mason96b51792007-10-15 16:15:19 -0400425 last = cache->key.objectid + cache->key.offset;
426 used = btrfs_block_group_used(&cache->item);
427
Chris Mason8f18cf12008-04-25 16:53:30 -0400428 if (!cache->ro && block_group_bits(cache, data)) {
Chris Mason0ef3e662008-05-24 14:04:53 -0400429 free_check = div_factor(cache->key.offset, factor);
Chris Mason8790d502008-04-03 16:29:03 -0400430 if (used + cache->pinned < free_check) {
431 found_group = cache;
Chris Masonc286ac42008-07-22 23:06:41 -0400432 spin_unlock(&cache->lock);
Chris Mason8790d502008-04-03 16:29:03 -0400433 goto found;
434 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400435 }
Chris Masonc286ac42008-07-22 23:06:41 -0400436 spin_unlock(&cache->lock);
Chris Masonde428b62007-05-18 13:28:27 -0400437 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400438 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400439 if (!wrapped) {
440 last = search_start;
441 wrapped = 1;
442 goto again;
443 }
444 if (!full_search && factor < 10) {
Chris Masonbe744172007-05-06 10:15:01 -0400445 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400446 full_search = 1;
Chris Mason0ef3e662008-05-24 14:04:53 -0400447 factor = 10;
Chris Mason31f3c992007-04-30 15:25:45 -0400448 goto again;
449 }
Chris Masonbe744172007-05-06 10:15:01 -0400450found:
Chris Mason31f3c992007-04-30 15:25:45 -0400451 return found_group;
Chris Masoncd1bc462007-04-27 10:08:34 -0400452}
453
Chris Mason925baed2008-06-25 16:01:30 -0400454struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
455 struct btrfs_block_group_cache
456 *hint, u64 search_start,
457 int data, int owner)
458{
459
460 struct btrfs_block_group_cache *ret;
Chris Mason925baed2008-06-25 16:01:30 -0400461 ret = __btrfs_find_block_group(root, hint, search_start, data, owner);
Chris Mason925baed2008-06-25 16:01:30 -0400462 return ret;
463}
Chris Mason7bb86312007-12-11 09:25:06 -0500464static u64 hash_extent_ref(u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500465 u64 owner, u64 owner_offset)
466{
467 u32 high_crc = ~(u32)0;
468 u32 low_crc = ~(u32)0;
469 __le64 lenum;
Chris Mason74493f72007-12-11 09:25:06 -0500470 lenum = cpu_to_le64(root_objectid);
Miguela5eb62e2008-04-11 15:45:51 -0400471 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
Chris Mason7bb86312007-12-11 09:25:06 -0500472 lenum = cpu_to_le64(ref_generation);
Miguela5eb62e2008-04-11 15:45:51 -0400473 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500474 if (owner >= BTRFS_FIRST_FREE_OBJECTID) {
475 lenum = cpu_to_le64(owner);
Miguela5eb62e2008-04-11 15:45:51 -0400476 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500477 lenum = cpu_to_le64(owner_offset);
Miguela5eb62e2008-04-11 15:45:51 -0400478 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500479 }
Chris Mason74493f72007-12-11 09:25:06 -0500480 return ((u64)high_crc << 32) | (u64)low_crc;
481}
482
Chris Mason7bb86312007-12-11 09:25:06 -0500483static int match_extent_ref(struct extent_buffer *leaf,
484 struct btrfs_extent_ref *disk_ref,
485 struct btrfs_extent_ref *cpu_ref)
486{
487 int ret;
488 int len;
489
490 if (cpu_ref->objectid)
491 len = sizeof(*cpu_ref);
492 else
493 len = 2 * sizeof(u64);
494 ret = memcmp_extent_buffer(leaf, cpu_ref, (unsigned long)disk_ref,
495 len);
496 return ret == 0;
497}
498
Chris Mason98ed5172008-01-03 10:01:48 -0500499static int noinline lookup_extent_backref(struct btrfs_trans_handle *trans,
500 struct btrfs_root *root,
501 struct btrfs_path *path, u64 bytenr,
502 u64 root_objectid,
503 u64 ref_generation, u64 owner,
504 u64 owner_offset, int del)
Chris Mason7bb86312007-12-11 09:25:06 -0500505{
506 u64 hash;
507 struct btrfs_key key;
508 struct btrfs_key found_key;
509 struct btrfs_extent_ref ref;
510 struct extent_buffer *leaf;
511 struct btrfs_extent_ref *disk_ref;
512 int ret;
513 int ret2;
514
515 btrfs_set_stack_ref_root(&ref, root_objectid);
516 btrfs_set_stack_ref_generation(&ref, ref_generation);
517 btrfs_set_stack_ref_objectid(&ref, owner);
518 btrfs_set_stack_ref_offset(&ref, owner_offset);
519
520 hash = hash_extent_ref(root_objectid, ref_generation, owner,
521 owner_offset);
522 key.offset = hash;
523 key.objectid = bytenr;
524 key.type = BTRFS_EXTENT_REF_KEY;
525
526 while (1) {
527 ret = btrfs_search_slot(trans, root, &key, path,
528 del ? -1 : 0, del);
529 if (ret < 0)
530 goto out;
531 leaf = path->nodes[0];
532 if (ret != 0) {
533 u32 nritems = btrfs_header_nritems(leaf);
534 if (path->slots[0] >= nritems) {
535 ret2 = btrfs_next_leaf(root, path);
536 if (ret2)
537 goto out;
538 leaf = path->nodes[0];
539 }
540 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
541 if (found_key.objectid != bytenr ||
542 found_key.type != BTRFS_EXTENT_REF_KEY)
543 goto out;
544 key.offset = found_key.offset;
545 if (del) {
546 btrfs_release_path(root, path);
547 continue;
548 }
549 }
550 disk_ref = btrfs_item_ptr(path->nodes[0],
551 path->slots[0],
552 struct btrfs_extent_ref);
553 if (match_extent_ref(path->nodes[0], disk_ref, &ref)) {
554 ret = 0;
555 goto out;
556 }
557 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
558 key.offset = found_key.offset + 1;
559 btrfs_release_path(root, path);
560 }
561out:
562 return ret;
563}
564
Chris Masond8d5f3e2007-12-11 12:42:00 -0500565/*
566 * Back reference rules. Back refs have three main goals:
567 *
568 * 1) differentiate between all holders of references to an extent so that
569 * when a reference is dropped we can make sure it was a valid reference
570 * before freeing the extent.
571 *
572 * 2) Provide enough information to quickly find the holders of an extent
573 * if we notice a given block is corrupted or bad.
574 *
575 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
576 * maintenance. This is actually the same as #2, but with a slightly
577 * different use case.
578 *
579 * File extents can be referenced by:
580 *
581 * - multiple snapshots, subvolumes, or different generations in one subvol
582 * - different files inside a single subvolume (in theory, not implemented yet)
583 * - different offsets inside a file (bookend extents in file.c)
584 *
585 * The extent ref structure has fields for:
586 *
587 * - Objectid of the subvolume root
588 * - Generation number of the tree holding the reference
589 * - objectid of the file holding the reference
590 * - offset in the file corresponding to the key holding the reference
591 *
592 * When a file extent is allocated the fields are filled in:
593 * (root_key.objectid, trans->transid, inode objectid, offset in file)
594 *
595 * When a leaf is cow'd new references are added for every file extent found
596 * in the leaf. It looks the same as the create case, but trans->transid
597 * will be different when the block is cow'd.
598 *
599 * (root_key.objectid, trans->transid, inode objectid, offset in file)
600 *
601 * When a file extent is removed either during snapshot deletion or file
602 * truncation, the corresponding back reference is found
603 * by searching for:
604 *
605 * (btrfs_header_owner(leaf), btrfs_header_generation(leaf),
606 * inode objectid, offset in file)
607 *
608 * Btree extents can be referenced by:
609 *
610 * - Different subvolumes
611 * - Different generations of the same subvolume
612 *
613 * Storing sufficient information for a full reverse mapping of a btree
614 * block would require storing the lowest key of the block in the backref,
615 * and it would require updating that lowest key either before write out or
616 * every time it changed. Instead, the objectid of the lowest key is stored
617 * along with the level of the tree block. This provides a hint
618 * about where in the btree the block can be found. Searches through the
619 * btree only need to look for a pointer to that block, so they stop one
620 * level higher than the level recorded in the backref.
621 *
622 * Some btrees do not do reference counting on their extents. These
623 * include the extent tree and the tree of tree roots. Backrefs for these
624 * trees always have a generation of zero.
625 *
626 * When a tree block is created, back references are inserted:
627 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500628 * (root->root_key.objectid, trans->transid or zero, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500629 *
630 * When a tree block is cow'd in a reference counted root,
631 * new back references are added for all the blocks it points to.
632 * These are of the form (trans->transid will have increased since creation):
633 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500634 * (root->root_key.objectid, trans->transid, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500635 *
636 * Because the lowest_key_objectid and the level are just hints
637 * they are not used when backrefs are deleted. When a backref is deleted:
638 *
639 * if backref was for a tree root:
640 * root_objectid = root->root_key.objectid
641 * else
642 * root_objectid = btrfs_header_owner(parent)
643 *
644 * (root_objectid, btrfs_header_generation(parent) or zero, 0, 0)
645 *
646 * Back Reference Key hashing:
647 *
648 * Back references have four fields, each 64 bits long. Unfortunately,
649 * This is hashed into a single 64 bit number and placed into the key offset.
650 * The key objectid corresponds to the first byte in the extent, and the
651 * key type is set to BTRFS_EXTENT_REF_KEY
652 */
Chris Mason7bb86312007-12-11 09:25:06 -0500653int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
654 struct btrfs_root *root,
655 struct btrfs_path *path, u64 bytenr,
656 u64 root_objectid, u64 ref_generation,
657 u64 owner, u64 owner_offset)
Chris Mason74493f72007-12-11 09:25:06 -0500658{
659 u64 hash;
660 struct btrfs_key key;
661 struct btrfs_extent_ref ref;
Chris Mason7bb86312007-12-11 09:25:06 -0500662 struct btrfs_extent_ref *disk_ref;
Chris Mason74493f72007-12-11 09:25:06 -0500663 int ret;
664
665 btrfs_set_stack_ref_root(&ref, root_objectid);
Chris Mason7bb86312007-12-11 09:25:06 -0500666 btrfs_set_stack_ref_generation(&ref, ref_generation);
Chris Mason74493f72007-12-11 09:25:06 -0500667 btrfs_set_stack_ref_objectid(&ref, owner);
668 btrfs_set_stack_ref_offset(&ref, owner_offset);
669
Chris Mason7bb86312007-12-11 09:25:06 -0500670 hash = hash_extent_ref(root_objectid, ref_generation, owner,
671 owner_offset);
Chris Mason74493f72007-12-11 09:25:06 -0500672 key.offset = hash;
673 key.objectid = bytenr;
674 key.type = BTRFS_EXTENT_REF_KEY;
675
676 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(ref));
677 while (ret == -EEXIST) {
Chris Mason7bb86312007-12-11 09:25:06 -0500678 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
679 struct btrfs_extent_ref);
680 if (match_extent_ref(path->nodes[0], disk_ref, &ref))
681 goto out;
682 key.offset++;
683 btrfs_release_path(root, path);
684 ret = btrfs_insert_empty_item(trans, root, path, &key,
685 sizeof(ref));
Chris Mason74493f72007-12-11 09:25:06 -0500686 }
Chris Mason7bb86312007-12-11 09:25:06 -0500687 if (ret)
688 goto out;
689 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
690 struct btrfs_extent_ref);
691 write_extent_buffer(path->nodes[0], &ref, (unsigned long)disk_ref,
692 sizeof(ref));
693 btrfs_mark_buffer_dirty(path->nodes[0]);
694out:
695 btrfs_release_path(root, path);
696 return ret;
Chris Mason74493f72007-12-11 09:25:06 -0500697}
698
Chris Mason925baed2008-06-25 16:01:30 -0400699static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Chris Masonb18c6682007-04-17 13:26:50 -0400700 struct btrfs_root *root,
Chris Mason74493f72007-12-11 09:25:06 -0500701 u64 bytenr, u64 num_bytes,
Chris Mason7bb86312007-12-11 09:25:06 -0500702 u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500703 u64 owner, u64 owner_offset)
Chris Mason02217ed2007-03-02 16:08:05 -0500704{
Chris Mason5caf2a02007-04-02 11:20:42 -0400705 struct btrfs_path *path;
Chris Mason02217ed2007-03-02 16:08:05 -0500706 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400707 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400708 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400709 struct btrfs_extent_item *item;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400710 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500711
Chris Masondb945352007-10-15 16:15:53 -0400712 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400713 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400714 if (!path)
715 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -0400716
Chris Mason3c12ac72008-04-21 12:01:38 -0400717 path->reada = 1;
Chris Masondb945352007-10-15 16:15:53 -0400718 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -0400719 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -0400720 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -0400721 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400722 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400723 if (ret < 0)
724 return ret;
Chris Masona429e512007-04-18 16:15:28 -0400725 if (ret != 0) {
Chris Masona28ec192007-03-06 20:08:01 -0500726 BUG();
Chris Masona429e512007-04-18 16:15:28 -0400727 }
Chris Mason02217ed2007-03-02 16:08:05 -0500728 BUG_ON(ret != 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400729 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400730 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400731 refs = btrfs_extent_refs(l, item);
732 btrfs_set_extent_refs(l, item, refs + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -0400733 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masona28ec192007-03-06 20:08:01 -0500734
Chris Mason5caf2a02007-04-02 11:20:42 -0400735 btrfs_release_path(root->fs_info->extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -0500736
Chris Mason3c12ac72008-04-21 12:01:38 -0400737 path->reada = 1;
Chris Mason7bb86312007-12-11 09:25:06 -0500738 ret = btrfs_insert_extent_backref(trans, root->fs_info->extent_root,
739 path, bytenr, root_objectid,
740 ref_generation, owner, owner_offset);
741 BUG_ON(ret);
Chris Mason9f5fae22007-03-20 14:38:32 -0400742 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400743 del_pending_extents(trans, root->fs_info->extent_root);
Chris Mason74493f72007-12-11 09:25:06 -0500744
745 btrfs_free_path(path);
Chris Mason02217ed2007-03-02 16:08:05 -0500746 return 0;
747}
748
Chris Mason925baed2008-06-25 16:01:30 -0400749int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
750 struct btrfs_root *root,
751 u64 bytenr, u64 num_bytes,
752 u64 root_objectid, u64 ref_generation,
753 u64 owner, u64 owner_offset)
754{
755 int ret;
756
757 mutex_lock(&root->fs_info->alloc_mutex);
758 ret = __btrfs_inc_extent_ref(trans, root, bytenr, num_bytes,
759 root_objectid, ref_generation,
760 owner, owner_offset);
761 mutex_unlock(&root->fs_info->alloc_mutex);
762 return ret;
763}
764
Chris Masone9d0b132007-08-10 14:06:19 -0400765int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
766 struct btrfs_root *root)
767{
768 finish_current_insert(trans, root->fs_info->extent_root);
769 del_pending_extents(trans, root->fs_info->extent_root);
770 return 0;
771}
772
Chris Masonb18c6682007-04-17 13:26:50 -0400773static int lookup_extent_ref(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -0400774 struct btrfs_root *root, u64 bytenr,
775 u64 num_bytes, u32 *refs)
Chris Masona28ec192007-03-06 20:08:01 -0500776{
Chris Mason5caf2a02007-04-02 11:20:42 -0400777 struct btrfs_path *path;
Chris Masona28ec192007-03-06 20:08:01 -0500778 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400779 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400780 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400781 struct btrfs_extent_item *item;
Chris Mason5caf2a02007-04-02 11:20:42 -0400782
Chris Masondb945352007-10-15 16:15:53 -0400783 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400784 path = btrfs_alloc_path();
Chris Mason3c12ac72008-04-21 12:01:38 -0400785 path->reada = 1;
Chris Masondb945352007-10-15 16:15:53 -0400786 key.objectid = bytenr;
787 key.offset = num_bytes;
Chris Mason62e27492007-03-15 12:56:47 -0400788 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5caf2a02007-04-02 11:20:42 -0400789 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400790 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400791 if (ret < 0)
792 goto out;
Chris Mason5f39d392007-10-15 16:14:19 -0400793 if (ret != 0) {
794 btrfs_print_leaf(root, path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400795 printk("failed to find block number %Lu\n", bytenr);
Chris Masona28ec192007-03-06 20:08:01 -0500796 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -0400797 }
798 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400799 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400800 *refs = btrfs_extent_refs(l, item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400801out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400802 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -0500803 return 0;
804}
805
Yan Zhengf321e492008-07-30 09:26:11 -0400806
807static int get_reference_status(struct btrfs_root *root, u64 bytenr,
808 u64 parent_gen, u64 ref_objectid,
809 u64 *min_generation, u32 *ref_count)
Chris Masonbe20aa92007-12-17 20:14:01 -0500810{
811 struct btrfs_root *extent_root = root->fs_info->extent_root;
812 struct btrfs_path *path;
Yan Zhengf321e492008-07-30 09:26:11 -0400813 struct extent_buffer *leaf;
814 struct btrfs_extent_ref *ref_item;
Chris Masonbe20aa92007-12-17 20:14:01 -0500815 struct btrfs_key key;
816 struct btrfs_key found_key;
Yan Zhengf321e492008-07-30 09:26:11 -0400817 u64 root_objectid = root->root_key.objectid;
818 u64 ref_generation;
819 u32 nritems;
820 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -0500821
Chris Masonbe20aa92007-12-17 20:14:01 -0500822 key.objectid = bytenr;
823 key.offset = 0;
Yan Zhengf321e492008-07-30 09:26:11 -0400824 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -0500825
Yan Zhengf321e492008-07-30 09:26:11 -0400826 path = btrfs_alloc_path();
827 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masonbe20aa92007-12-17 20:14:01 -0500828 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
829 if (ret < 0)
830 goto out;
831 BUG_ON(ret == 0);
832
Yan Zhengf321e492008-07-30 09:26:11 -0400833 leaf = path->nodes[0];
834 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -0500835
836 if (found_key.objectid != bytenr ||
837 found_key.type != BTRFS_EXTENT_ITEM_KEY) {
Yan Zhengf321e492008-07-30 09:26:11 -0400838 ret = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500839 goto out;
840 }
841
Yan Zhengf321e492008-07-30 09:26:11 -0400842 *ref_count = 0;
843 *min_generation = (u64)-1;
844
Chris Masonbe20aa92007-12-17 20:14:01 -0500845 while (1) {
Yan Zhengf321e492008-07-30 09:26:11 -0400846 leaf = path->nodes[0];
847 nritems = btrfs_header_nritems(leaf);
Chris Masonbe20aa92007-12-17 20:14:01 -0500848 if (path->slots[0] >= nritems) {
849 ret = btrfs_next_leaf(extent_root, path);
Yan Zhengf321e492008-07-30 09:26:11 -0400850 if (ret < 0)
851 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -0500852 if (ret == 0)
853 continue;
854 break;
855 }
Yan Zhengf321e492008-07-30 09:26:11 -0400856 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -0500857 if (found_key.objectid != bytenr)
858 break;
Chris Masonbd098352008-01-03 13:23:19 -0500859
Chris Masonbe20aa92007-12-17 20:14:01 -0500860 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
861 path->slots[0]++;
862 continue;
863 }
864
Yan Zhengf321e492008-07-30 09:26:11 -0400865 ref_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masonbe20aa92007-12-17 20:14:01 -0500866 struct btrfs_extent_ref);
Yan Zhengf321e492008-07-30 09:26:11 -0400867 ref_generation = btrfs_ref_generation(leaf, ref_item);
868 /*
869 * For (parent_gen > 0 && parent_gen > ref_gen):
870 *
Yanbcc63ab2008-07-30 16:29:20 -0400871 * we reach here through the oldest root, therefore
872 * all other reference from same snapshot should have
Yan Zhengf321e492008-07-30 09:26:11 -0400873 * a larger generation.
874 */
875 if ((root_objectid != btrfs_ref_root(leaf, ref_item)) ||
876 (parent_gen > 0 && parent_gen > ref_generation) ||
877 (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID &&
878 ref_objectid != btrfs_ref_objectid(leaf, ref_item))) {
879 if (ref_count)
880 *ref_count = 2;
881 break;
882 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500883
Yan Zhengf321e492008-07-30 09:26:11 -0400884 *ref_count = 1;
885 if (*min_generation > ref_generation)
886 *min_generation = ref_generation;
887
Chris Masonbe20aa92007-12-17 20:14:01 -0500888 path->slots[0]++;
889 }
Yan Zhengf321e492008-07-30 09:26:11 -0400890 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500891out:
Chris Mason925baed2008-06-25 16:01:30 -0400892 mutex_unlock(&root->fs_info->alloc_mutex);
Yan Zhengf321e492008-07-30 09:26:11 -0400893 btrfs_free_path(path);
894 return ret;
895}
896
Yan Zheng7ea394f2008-08-05 13:05:02 -0400897int btrfs_cross_ref_exists(struct btrfs_trans_handle *trans,
898 struct btrfs_root *root,
Yan Zhengf321e492008-07-30 09:26:11 -0400899 struct btrfs_key *key, u64 bytenr)
900{
Yan Zhengf321e492008-07-30 09:26:11 -0400901 struct btrfs_root *old_root;
902 struct btrfs_path *path = NULL;
903 struct extent_buffer *eb;
904 struct btrfs_file_extent_item *item;
905 u64 ref_generation;
906 u64 min_generation;
907 u64 extent_start;
908 u32 ref_count;
909 int level;
910 int ret;
911
Yan Zheng7ea394f2008-08-05 13:05:02 -0400912 BUG_ON(trans == NULL);
Yan Zhengf321e492008-07-30 09:26:11 -0400913 BUG_ON(key->type != BTRFS_EXTENT_DATA_KEY);
914 ret = get_reference_status(root, bytenr, 0, key->objectid,
915 &min_generation, &ref_count);
916 if (ret)
917 return ret;
918
919 if (ref_count != 1)
920 return 1;
921
Yan Zhengf321e492008-07-30 09:26:11 -0400922 old_root = root->dirty_root->root;
923 ref_generation = old_root->root_key.offset;
924
925 /* all references are created in running transaction */
926 if (min_generation > ref_generation) {
927 ret = 0;
928 goto out;
929 }
930
931 path = btrfs_alloc_path();
932 if (!path) {
933 ret = -ENOMEM;
934 goto out;
935 }
936
937 path->skip_locking = 1;
938 /* if no item found, the extent is referenced by other snapshot */
939 ret = btrfs_search_slot(NULL, old_root, key, path, 0, 0);
940 if (ret)
941 goto out;
942
943 eb = path->nodes[0];
944 item = btrfs_item_ptr(eb, path->slots[0],
945 struct btrfs_file_extent_item);
946 if (btrfs_file_extent_type(eb, item) != BTRFS_FILE_EXTENT_REG ||
947 btrfs_file_extent_disk_bytenr(eb, item) != bytenr) {
948 ret = 1;
949 goto out;
950 }
951
952 for (level = BTRFS_MAX_LEVEL - 1; level >= -1; level--) {
953 if (level >= 0) {
954 eb = path->nodes[level];
955 if (!eb)
956 continue;
957 extent_start = eb->start;
Yanbcc63ab2008-07-30 16:29:20 -0400958 } else
Yan Zhengf321e492008-07-30 09:26:11 -0400959 extent_start = bytenr;
960
961 ret = get_reference_status(root, extent_start, ref_generation,
962 0, &min_generation, &ref_count);
963 if (ret)
964 goto out;
965
966 if (ref_count != 1) {
967 ret = 1;
968 goto out;
969 }
970 if (level >= 0)
971 ref_generation = btrfs_header_generation(eb);
972 }
973 ret = 0;
974out:
975 if (path)
976 btrfs_free_path(path);
Yan Zhengf321e492008-07-30 09:26:11 -0400977 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 Mason236454df2007-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 *space_info = found;
1234 return 0;
1235 }
1236 found = kmalloc(sizeof(*found), GFP_NOFS);
1237 if (!found)
1238 return -ENOMEM;
1239
1240 list_add(&found->list, &info->space_info);
1241 found->flags = flags;
1242 found->total_bytes = total_bytes;
1243 found->bytes_used = bytes_used;
1244 found->bytes_pinned = 0;
1245 found->full = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04001246 found->force_alloc = 0;
Chris Mason593060d2008-03-25 16:50:33 -04001247 *space_info = found;
1248 return 0;
1249}
1250
Chris Mason8790d502008-04-03 16:29:03 -04001251static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
1252{
1253 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
Chris Mason611f0e02008-04-03 16:29:03 -04001254 BTRFS_BLOCK_GROUP_RAID1 |
Chris Mason321aecc2008-04-16 10:49:51 -04001255 BTRFS_BLOCK_GROUP_RAID10 |
Chris Mason611f0e02008-04-03 16:29:03 -04001256 BTRFS_BLOCK_GROUP_DUP);
Chris Mason8790d502008-04-03 16:29:03 -04001257 if (extra_flags) {
1258 if (flags & BTRFS_BLOCK_GROUP_DATA)
1259 fs_info->avail_data_alloc_bits |= extra_flags;
1260 if (flags & BTRFS_BLOCK_GROUP_METADATA)
1261 fs_info->avail_metadata_alloc_bits |= extra_flags;
1262 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
1263 fs_info->avail_system_alloc_bits |= extra_flags;
1264 }
1265}
Chris Mason593060d2008-03-25 16:50:33 -04001266
Chris Masona061fc82008-05-07 11:43:44 -04001267static u64 reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04001268{
Chris Masona061fc82008-05-07 11:43:44 -04001269 u64 num_devices = root->fs_info->fs_devices->num_devices;
1270
1271 if (num_devices == 1)
1272 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0);
1273 if (num_devices < 4)
1274 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
1275
Chris Masonec44a352008-04-28 15:29:52 -04001276 if ((flags & BTRFS_BLOCK_GROUP_DUP) &&
1277 (flags & (BTRFS_BLOCK_GROUP_RAID1 |
Chris Masona061fc82008-05-07 11:43:44 -04001278 BTRFS_BLOCK_GROUP_RAID10))) {
Chris Masonec44a352008-04-28 15:29:52 -04001279 flags &= ~BTRFS_BLOCK_GROUP_DUP;
Chris Masona061fc82008-05-07 11:43:44 -04001280 }
Chris Masonec44a352008-04-28 15:29:52 -04001281
1282 if ((flags & BTRFS_BLOCK_GROUP_RAID1) &&
Chris Masona061fc82008-05-07 11:43:44 -04001283 (flags & BTRFS_BLOCK_GROUP_RAID10)) {
Chris Masonec44a352008-04-28 15:29:52 -04001284 flags &= ~BTRFS_BLOCK_GROUP_RAID1;
Chris Masona061fc82008-05-07 11:43:44 -04001285 }
Chris Masonec44a352008-04-28 15:29:52 -04001286
1287 if ((flags & BTRFS_BLOCK_GROUP_RAID0) &&
1288 ((flags & BTRFS_BLOCK_GROUP_RAID1) |
1289 (flags & BTRFS_BLOCK_GROUP_RAID10) |
1290 (flags & BTRFS_BLOCK_GROUP_DUP)))
1291 flags &= ~BTRFS_BLOCK_GROUP_RAID0;
1292 return flags;
1293}
1294
Chris Mason6324fbf2008-03-24 15:01:59 -04001295static int do_chunk_alloc(struct btrfs_trans_handle *trans,
1296 struct btrfs_root *extent_root, u64 alloc_bytes,
Chris Mason0ef3e662008-05-24 14:04:53 -04001297 u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04001298{
1299 struct btrfs_space_info *space_info;
1300 u64 thresh;
1301 u64 start;
1302 u64 num_bytes;
1303 int ret;
1304
Chris Masona061fc82008-05-07 11:43:44 -04001305 flags = reduce_alloc_profile(extent_root, flags);
Chris Masonec44a352008-04-28 15:29:52 -04001306
Chris Mason6324fbf2008-03-24 15:01:59 -04001307 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04001308 if (!space_info) {
1309 ret = update_space_info(extent_root->fs_info, flags,
1310 0, 0, &space_info);
1311 BUG_ON(ret);
1312 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001313 BUG_ON(!space_info);
1314
Chris Mason0ef3e662008-05-24 14:04:53 -04001315 if (space_info->force_alloc) {
1316 force = 1;
1317 space_info->force_alloc = 0;
1318 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001319 if (space_info->full)
Chris Mason925baed2008-06-25 16:01:30 -04001320 goto out;
Chris Mason6324fbf2008-03-24 15:01:59 -04001321
Chris Mason8790d502008-04-03 16:29:03 -04001322 thresh = div_factor(space_info->total_bytes, 6);
Chris Mason0ef3e662008-05-24 14:04:53 -04001323 if (!force &&
1324 (space_info->bytes_used + space_info->bytes_pinned + alloc_bytes) <
Chris Mason6324fbf2008-03-24 15:01:59 -04001325 thresh)
Chris Mason925baed2008-06-25 16:01:30 -04001326 goto out;
Chris Mason6324fbf2008-03-24 15:01:59 -04001327
Chris Mason925baed2008-06-25 16:01:30 -04001328 mutex_lock(&extent_root->fs_info->chunk_mutex);
Chris Mason6324fbf2008-03-24 15:01:59 -04001329 ret = btrfs_alloc_chunk(trans, extent_root, &start, &num_bytes, flags);
1330 if (ret == -ENOSPC) {
1331printk("space info full %Lu\n", flags);
1332 space_info->full = 1;
Chris Masona74a4b92008-06-25 16:01:31 -04001333 goto out_unlock;
Chris Mason6324fbf2008-03-24 15:01:59 -04001334 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001335 BUG_ON(ret);
1336
1337 ret = btrfs_make_block_group(trans, extent_root, 0, flags,
Chris Masone17cade2008-04-15 15:41:47 -04001338 BTRFS_FIRST_CHUNK_TREE_OBJECTID, start, num_bytes);
Chris Mason6324fbf2008-03-24 15:01:59 -04001339 BUG_ON(ret);
Chris Masona74a4b92008-06-25 16:01:31 -04001340out_unlock:
Chris Mason333db942008-06-25 16:01:30 -04001341 mutex_unlock(&extent_root->fs_info->chunk_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001342out:
Chris Mason6324fbf2008-03-24 15:01:59 -04001343 return 0;
1344}
1345
Chris Mason9078a3e2007-04-26 16:46:15 -04001346static int update_block_group(struct btrfs_trans_handle *trans,
1347 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -04001348 u64 bytenr, u64 num_bytes, int alloc,
Chris Mason0b86a832008-03-24 15:01:56 -04001349 int mark_free)
Chris Mason9078a3e2007-04-26 16:46:15 -04001350{
1351 struct btrfs_block_group_cache *cache;
1352 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001353 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001354 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04001355 u64 byte_in_group;
Chris Mason96b51792007-10-15 16:15:19 -04001356 u64 start;
1357 u64 end;
Chris Mason3e1ad542007-05-07 20:03:49 -04001358
Chris Mason7d9eb122008-07-08 14:19:17 -04001359 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Mason9078a3e2007-04-26 16:46:15 -04001360 while(total) {
Chris Masondb945352007-10-15 16:15:53 -04001361 cache = btrfs_lookup_block_group(info, bytenr);
Chris Mason3e1ad542007-05-07 20:03:49 -04001362 if (!cache) {
Chris Mason9078a3e2007-04-26 16:46:15 -04001363 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -04001364 }
Chris Masondb945352007-10-15 16:15:53 -04001365 byte_in_group = bytenr - cache->key.objectid;
1366 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason96b51792007-10-15 16:15:19 -04001367 start = cache->key.objectid;
1368 end = start + cache->key.offset - 1;
1369 set_extent_bits(&info->block_group_cache, start, end,
1370 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001371
Chris Masonc286ac42008-07-22 23:06:41 -04001372 spin_lock(&cache->lock);
Chris Mason9078a3e2007-04-26 16:46:15 -04001373 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04001374 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04001375 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04001376 old_val += num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001377 cache->space_info->bytes_used += num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04001378 btrfs_set_block_group_used(&cache->item, old_val);
1379 spin_unlock(&cache->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04001380 } else {
Chris Masondb945352007-10-15 16:15:53 -04001381 old_val -= num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001382 cache->space_info->bytes_used -= num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04001383 btrfs_set_block_group_used(&cache->item, old_val);
1384 spin_unlock(&cache->lock);
Chris Masonf510cfe2007-10-15 16:14:48 -04001385 if (mark_free) {
1386 set_extent_dirty(&info->free_space_cache,
Chris Masondb945352007-10-15 16:15:53 -04001387 bytenr, bytenr + num_bytes - 1,
Chris Masonf510cfe2007-10-15 16:14:48 -04001388 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04001389 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001390 }
Chris Masondb945352007-10-15 16:15:53 -04001391 total -= num_bytes;
1392 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001393 }
1394 return 0;
1395}
Chris Mason6324fbf2008-03-24 15:01:59 -04001396
Chris Masona061fc82008-05-07 11:43:44 -04001397static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
1398{
1399 u64 start;
1400 u64 end;
1401 int ret;
1402 ret = find_first_extent_bit(&root->fs_info->block_group_cache,
1403 search_start, &start, &end,
1404 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA |
1405 BLOCK_GROUP_SYSTEM);
1406 if (ret)
1407 return 0;
1408 return start;
1409}
1410
1411
Yan324ae4d2007-11-16 14:57:08 -05001412static int update_pinned_extents(struct btrfs_root *root,
1413 u64 bytenr, u64 num, int pin)
1414{
1415 u64 len;
1416 struct btrfs_block_group_cache *cache;
1417 struct btrfs_fs_info *fs_info = root->fs_info;
1418
Chris Mason7d9eb122008-07-08 14:19:17 -04001419 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Yan324ae4d2007-11-16 14:57:08 -05001420 if (pin) {
1421 set_extent_dirty(&fs_info->pinned_extents,
1422 bytenr, bytenr + num - 1, GFP_NOFS);
1423 } else {
1424 clear_extent_dirty(&fs_info->pinned_extents,
1425 bytenr, bytenr + num - 1, GFP_NOFS);
1426 }
1427 while (num > 0) {
1428 cache = btrfs_lookup_block_group(fs_info, bytenr);
Chris Masona061fc82008-05-07 11:43:44 -04001429 if (!cache) {
1430 u64 first = first_logical_byte(root, bytenr);
1431 WARN_ON(first < bytenr);
1432 len = min(first - bytenr, num);
1433 } else {
1434 len = min(num, cache->key.offset -
1435 (bytenr - cache->key.objectid));
1436 }
Yan324ae4d2007-11-16 14:57:08 -05001437 if (pin) {
Chris Masona061fc82008-05-07 11:43:44 -04001438 if (cache) {
Chris Masonc286ac42008-07-22 23:06:41 -04001439 spin_lock(&cache->lock);
Chris Masona061fc82008-05-07 11:43:44 -04001440 cache->pinned += len;
1441 cache->space_info->bytes_pinned += len;
Chris Masonc286ac42008-07-22 23:06:41 -04001442 spin_unlock(&cache->lock);
Chris Masona061fc82008-05-07 11:43:44 -04001443 }
Yan324ae4d2007-11-16 14:57:08 -05001444 fs_info->total_pinned += len;
1445 } else {
Chris Masona061fc82008-05-07 11:43:44 -04001446 if (cache) {
Chris Masonc286ac42008-07-22 23:06:41 -04001447 spin_lock(&cache->lock);
Chris Masona061fc82008-05-07 11:43:44 -04001448 cache->pinned -= len;
1449 cache->space_info->bytes_pinned -= len;
Chris Masonc286ac42008-07-22 23:06:41 -04001450 spin_unlock(&cache->lock);
Chris Masona061fc82008-05-07 11:43:44 -04001451 }
Yan324ae4d2007-11-16 14:57:08 -05001452 fs_info->total_pinned -= len;
1453 }
1454 bytenr += len;
1455 num -= len;
1456 }
1457 return 0;
1458}
Chris Mason9078a3e2007-04-26 16:46:15 -04001459
Chris Masond1310b22008-01-24 16:13:08 -05001460int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy)
Chris Masonccd467d2007-06-28 15:57:36 -04001461{
Chris Masonccd467d2007-06-28 15:57:36 -04001462 u64 last = 0;
Chris Mason1a5bc1672007-10-15 16:15:26 -04001463 u64 start;
1464 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001465 struct extent_io_tree *pinned_extents = &root->fs_info->pinned_extents;
Chris Masonccd467d2007-06-28 15:57:36 -04001466 int ret;
Chris Masonccd467d2007-06-28 15:57:36 -04001467
1468 while(1) {
Chris Mason1a5bc1672007-10-15 16:15:26 -04001469 ret = find_first_extent_bit(pinned_extents, last,
1470 &start, &end, EXTENT_DIRTY);
1471 if (ret)
Chris Masonccd467d2007-06-28 15:57:36 -04001472 break;
Chris Mason1a5bc1672007-10-15 16:15:26 -04001473 set_extent_dirty(copy, start, end, GFP_NOFS);
1474 last = end + 1;
Chris Masonccd467d2007-06-28 15:57:36 -04001475 }
1476 return 0;
1477}
1478
1479int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1480 struct btrfs_root *root,
Chris Masond1310b22008-01-24 16:13:08 -05001481 struct extent_io_tree *unpin)
Chris Masona28ec192007-03-06 20:08:01 -05001482{
Chris Mason1a5bc1672007-10-15 16:15:26 -04001483 u64 start;
1484 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05001485 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001486 struct extent_io_tree *free_space_cache;
Chris Masonf510cfe2007-10-15 16:14:48 -04001487 free_space_cache = &root->fs_info->free_space_cache;
Chris Masona28ec192007-03-06 20:08:01 -05001488
Chris Mason925baed2008-06-25 16:01:30 -04001489 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05001490 while(1) {
Chris Mason1a5bc1672007-10-15 16:15:26 -04001491 ret = find_first_extent_bit(unpin, 0, &start, &end,
1492 EXTENT_DIRTY);
1493 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05001494 break;
Yan324ae4d2007-11-16 14:57:08 -05001495 update_pinned_extents(root, start, end + 1 - start, 0);
Chris Mason1a5bc1672007-10-15 16:15:26 -04001496 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1497 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
Chris Masonc286ac42008-07-22 23:06:41 -04001498 if (need_resched()) {
1499 mutex_unlock(&root->fs_info->alloc_mutex);
1500 cond_resched();
1501 mutex_lock(&root->fs_info->alloc_mutex);
1502 }
Chris Masona28ec192007-03-06 20:08:01 -05001503 }
Chris Mason925baed2008-06-25 16:01:30 -04001504 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05001505 return 0;
1506}
1507
Chris Mason98ed5172008-01-03 10:01:48 -05001508static int finish_current_insert(struct btrfs_trans_handle *trans,
1509 struct btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -05001510{
Chris Mason7bb86312007-12-11 09:25:06 -05001511 u64 start;
1512 u64 end;
1513 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001514 struct extent_buffer *eb;
Chris Mason7bb86312007-12-11 09:25:06 -05001515 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001516 struct btrfs_key ins;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001517 struct btrfs_disk_key first;
Chris Mason234b63a2007-03-13 10:46:10 -04001518 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -05001519 int ret;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001520 int level;
Chris Mason1a5bc1672007-10-15 16:15:26 -04001521 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001522
Chris Mason7d9eb122008-07-08 14:19:17 -04001523 WARN_ON(!mutex_is_locked(&extent_root->fs_info->alloc_mutex));
Chris Mason5f39d392007-10-15 16:14:19 -04001524 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason62e27492007-03-15 12:56:47 -04001525 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason7bb86312007-12-11 09:25:06 -05001526 path = btrfs_alloc_path();
Chris Mason037e6392007-03-07 11:50:24 -05001527
Chris Mason26b80032007-08-08 20:17:12 -04001528 while(1) {
Chris Mason1a5bc1672007-10-15 16:15:26 -04001529 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1530 &end, EXTENT_LOCKED);
1531 if (ret)
Chris Mason26b80032007-08-08 20:17:12 -04001532 break;
1533
Chris Mason1a5bc1672007-10-15 16:15:26 -04001534 ins.objectid = start;
1535 ins.offset = end + 1 - start;
1536 err = btrfs_insert_item(trans, extent_root, &ins,
1537 &extent_item, sizeof(extent_item));
1538 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1539 GFP_NOFS);
Chris Masonc286ac42008-07-22 23:06:41 -04001540
1541 eb = btrfs_find_tree_block(extent_root, ins.objectid,
1542 ins.offset);
1543
1544 if (!btrfs_buffer_uptodate(eb, trans->transid)) {
1545 mutex_unlock(&extent_root->fs_info->alloc_mutex);
1546 btrfs_read_buffer(eb, trans->transid);
1547 mutex_lock(&extent_root->fs_info->alloc_mutex);
1548 }
1549
Chris Mason925baed2008-06-25 16:01:30 -04001550 btrfs_tree_lock(eb);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001551 level = btrfs_header_level(eb);
1552 if (level == 0) {
1553 btrfs_item_key(eb, &first, 0);
1554 } else {
1555 btrfs_node_key(eb, &first, 0);
1556 }
Chris Mason925baed2008-06-25 16:01:30 -04001557 btrfs_tree_unlock(eb);
1558 free_extent_buffer(eb);
1559 /*
1560 * the first key is just a hint, so the race we've created
1561 * against reading it is fine
1562 */
Chris Mason7bb86312007-12-11 09:25:06 -05001563 err = btrfs_insert_extent_backref(trans, extent_root, path,
1564 start, extent_root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -05001565 0, level,
1566 btrfs_disk_key_objectid(&first));
Chris Mason7bb86312007-12-11 09:25:06 -05001567 BUG_ON(err);
Chris Masonc286ac42008-07-22 23:06:41 -04001568 if (need_resched()) {
1569 mutex_unlock(&extent_root->fs_info->alloc_mutex);
1570 cond_resched();
1571 mutex_lock(&extent_root->fs_info->alloc_mutex);
1572 }
Chris Mason037e6392007-03-07 11:50:24 -05001573 }
Chris Mason7bb86312007-12-11 09:25:06 -05001574 btrfs_free_path(path);
Chris Mason037e6392007-03-07 11:50:24 -05001575 return 0;
1576}
1577
Chris Masondb945352007-10-15 16:15:53 -04001578static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
1579 int pending)
Chris Masone20d96d2007-03-22 12:13:20 -04001580{
Chris Mason1a5bc1672007-10-15 16:15:26 -04001581 int err = 0;
Chris Mason78fae272007-03-25 11:35:08 -04001582
Chris Mason7d9eb122008-07-08 14:19:17 -04001583 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Masonf4b9aa82007-03-27 11:05:53 -04001584 if (!pending) {
Chris Mason925baed2008-06-25 16:01:30 -04001585 struct extent_buffer *buf;
Chris Masondb945352007-10-15 16:15:53 -04001586 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -04001587 if (buf) {
Yan974e35a2008-07-24 12:18:16 -04001588 if (btrfs_buffer_uptodate(buf, 0) &&
1589 btrfs_try_tree_lock(buf)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -04001590 u64 transid =
1591 root->fs_info->running_transaction->transid;
Chris Masondc17ff82008-01-08 15:46:30 -05001592 u64 header_transid =
1593 btrfs_header_generation(buf);
Chris Mason6bc34672008-04-04 15:40:00 -04001594 if (header_transid == transid &&
1595 !btrfs_header_flag(buf,
1596 BTRFS_HEADER_FLAG_WRITTEN)) {
Chris Mason55c69072008-01-09 15:55:33 -05001597 clean_tree_block(NULL, root, buf);
Chris Mason925baed2008-06-25 16:01:30 -04001598 btrfs_tree_unlock(buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001599 free_extent_buffer(buf);
Yanc5492282007-11-06 10:25:25 -05001600 return 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001601 }
Chris Mason925baed2008-06-25 16:01:30 -04001602 btrfs_tree_unlock(buf);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001603 }
Chris Mason5f39d392007-10-15 16:14:19 -04001604 free_extent_buffer(buf);
Chris Mason8ef97622007-03-26 10:15:30 -04001605 }
Yan324ae4d2007-11-16 14:57:08 -05001606 update_pinned_extents(root, bytenr, num_bytes, 1);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001607 } else {
Chris Mason1a5bc1672007-10-15 16:15:26 -04001608 set_extent_bits(&root->fs_info->pending_del,
Chris Masondb945352007-10-15 16:15:53 -04001609 bytenr, bytenr + num_bytes - 1,
1610 EXTENT_LOCKED, GFP_NOFS);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001611 }
Chris Masonbe744172007-05-06 10:15:01 -04001612 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001613 return 0;
1614}
1615
Chris Masona28ec192007-03-06 20:08:01 -05001616/*
1617 * remove an extent from the root, returns 0 on success
1618 */
Chris Masone089f052007-03-16 16:20:31 -04001619static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001620 *root, u64 bytenr, u64 num_bytes,
1621 u64 root_objectid, u64 ref_generation,
1622 u64 owner_objectid, u64 owner_offset, int pin,
Chris Masone37c9e62007-05-09 20:13:14 -04001623 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -05001624{
Chris Mason5caf2a02007-04-02 11:20:42 -04001625 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001626 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -04001627 struct btrfs_fs_info *info = root->fs_info;
1628 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001629 struct extent_buffer *leaf;
Chris Masona28ec192007-03-06 20:08:01 -05001630 int ret;
Chris Mason952fcca2008-02-18 16:33:44 -05001631 int extent_slot = 0;
1632 int found_extent = 0;
1633 int num_to_del = 1;
Chris Mason234b63a2007-03-13 10:46:10 -04001634 struct btrfs_extent_item *ei;
Chris Masoncf27e1e2007-03-13 09:49:06 -04001635 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -05001636
Chris Mason7d9eb122008-07-08 14:19:17 -04001637 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Masondb945352007-10-15 16:15:53 -04001638 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -04001639 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -04001640 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001641 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001642 if (!path)
1643 return -ENOMEM;
1644
Chris Mason3c12ac72008-04-21 12:01:38 -04001645 path->reada = 1;
Chris Mason7bb86312007-12-11 09:25:06 -05001646 ret = lookup_extent_backref(trans, extent_root, path,
1647 bytenr, root_objectid,
1648 ref_generation,
1649 owner_objectid, owner_offset, 1);
1650 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05001651 struct btrfs_key found_key;
1652 extent_slot = path->slots[0];
1653 while(extent_slot > 0) {
1654 extent_slot--;
1655 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1656 extent_slot);
1657 if (found_key.objectid != bytenr)
1658 break;
1659 if (found_key.type == BTRFS_EXTENT_ITEM_KEY &&
1660 found_key.offset == num_bytes) {
1661 found_extent = 1;
1662 break;
1663 }
1664 if (path->slots[0] - extent_slot > 5)
1665 break;
1666 }
1667 if (!found_extent)
1668 ret = btrfs_del_item(trans, extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -05001669 } else {
1670 btrfs_print_leaf(extent_root, path->nodes[0]);
1671 WARN_ON(1);
1672 printk("Unable to find ref byte nr %Lu root %Lu "
1673 " gen %Lu owner %Lu offset %Lu\n", bytenr,
1674 root_objectid, ref_generation, owner_objectid,
1675 owner_offset);
1676 }
Chris Mason952fcca2008-02-18 16:33:44 -05001677 if (!found_extent) {
1678 btrfs_release_path(extent_root, path);
1679 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
1680 if (ret < 0)
1681 return ret;
1682 BUG_ON(ret);
1683 extent_slot = path->slots[0];
1684 }
Chris Mason5f39d392007-10-15 16:14:19 -04001685
1686 leaf = path->nodes[0];
Chris Mason952fcca2008-02-18 16:33:44 -05001687 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04001688 struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001689 refs = btrfs_extent_refs(leaf, ei);
1690 BUG_ON(refs == 0);
1691 refs -= 1;
1692 btrfs_set_extent_refs(leaf, ei, refs);
Chris Mason952fcca2008-02-18 16:33:44 -05001693
Chris Mason5f39d392007-10-15 16:14:19 -04001694 btrfs_mark_buffer_dirty(leaf);
1695
Chris Mason952fcca2008-02-18 16:33:44 -05001696 if (refs == 0 && found_extent && path->slots[0] == extent_slot + 1) {
1697 /* if the back ref and the extent are next to each other
1698 * they get deleted below in one shot
1699 */
1700 path->slots[0] = extent_slot;
1701 num_to_del = 2;
1702 } else if (found_extent) {
1703 /* otherwise delete the extent back ref */
1704 ret = btrfs_del_item(trans, extent_root, path);
1705 BUG_ON(ret);
1706 /* if refs are 0, we need to setup the path for deletion */
1707 if (refs == 0) {
1708 btrfs_release_path(extent_root, path);
1709 ret = btrfs_search_slot(trans, extent_root, &key, path,
1710 -1, 1);
1711 if (ret < 0)
1712 return ret;
1713 BUG_ON(ret);
1714 }
1715 }
1716
Chris Masoncf27e1e2007-03-13 09:49:06 -04001717 if (refs == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001718 u64 super_used;
1719 u64 root_used;
David Woodhouse21af8042008-08-12 14:13:26 +01001720#ifdef BIO_RW_DISCARD
1721 u64 map_length = num_bytes;
1722 struct btrfs_multi_bio *multi = NULL;
1723#endif
Chris Mason78fae272007-03-25 11:35:08 -04001724
1725 if (pin) {
Chris Masondb945352007-10-15 16:15:53 -04001726 ret = pin_down_bytes(root, bytenr, num_bytes, 0);
Yanc5492282007-11-06 10:25:25 -05001727 if (ret > 0)
1728 mark_free = 1;
1729 BUG_ON(ret < 0);
Chris Mason78fae272007-03-25 11:35:08 -04001730 }
1731
Josef Bacik58176a92007-08-29 15:47:34 -04001732 /* block accounting for super block */
Chris Masona2135012008-06-25 16:01:30 -04001733 spin_lock_irq(&info->delalloc_lock);
Chris Masondb945352007-10-15 16:15:53 -04001734 super_used = btrfs_super_bytes_used(&info->super_copy);
1735 btrfs_set_super_bytes_used(&info->super_copy,
1736 super_used - num_bytes);
Chris Masona2135012008-06-25 16:01:30 -04001737 spin_unlock_irq(&info->delalloc_lock);
Josef Bacik58176a92007-08-29 15:47:34 -04001738
1739 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001740 root_used = btrfs_root_used(&root->root_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001741 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -04001742 root_used - num_bytes);
Chris Mason952fcca2008-02-18 16:33:44 -05001743 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
1744 num_to_del);
Chris Mason54aa1f42007-06-22 14:16:25 -04001745 if (ret) {
1746 return ret;
1747 }
Chris Masondb945352007-10-15 16:15:53 -04001748 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001749 mark_free);
Chris Mason9078a3e2007-04-26 16:46:15 -04001750 BUG_ON(ret);
David Woodhouse21af8042008-08-12 14:13:26 +01001751
1752#ifdef BIO_RW_DISCARD
1753 /* Tell the block device(s) that the sectors can be discarded */
1754 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
1755 bytenr, &map_length, &multi, 0);
1756 if (!ret) {
1757 struct btrfs_bio_stripe *stripe = multi->stripes;
1758 int i;
1759
1760 if (map_length > num_bytes)
1761 map_length = num_bytes;
1762
1763 for (i = 0; i < multi->num_stripes; i++, stripe++) {
1764 blkdev_issue_discard(stripe->dev->bdev,
1765 stripe->physical >> 9,
1766 map_length >> 9);
1767 }
1768 kfree(multi);
1769 }
1770#endif
Chris Masona28ec192007-03-06 20:08:01 -05001771 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001772 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001773 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -05001774 return ret;
1775}
1776
1777/*
Chris Masonfec577f2007-02-26 10:40:21 -05001778 * find all the blocks marked as pending in the radix tree and remove
1779 * them from the extent map
1780 */
Chris Masone089f052007-03-16 16:20:31 -04001781static int del_pending_extents(struct btrfs_trans_handle *trans, struct
1782 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -05001783{
1784 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001785 int err = 0;
Chris Mason1a5bc1672007-10-15 16:15:26 -04001786 u64 start;
1787 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001788 struct extent_io_tree *pending_del;
1789 struct extent_io_tree *pinned_extents;
Chris Mason8ef97622007-03-26 10:15:30 -04001790
Chris Mason7d9eb122008-07-08 14:19:17 -04001791 WARN_ON(!mutex_is_locked(&extent_root->fs_info->alloc_mutex));
Chris Mason1a5bc1672007-10-15 16:15:26 -04001792 pending_del = &extent_root->fs_info->pending_del;
1793 pinned_extents = &extent_root->fs_info->pinned_extents;
Chris Masonfec577f2007-02-26 10:40:21 -05001794
1795 while(1) {
Chris Mason1a5bc1672007-10-15 16:15:26 -04001796 ret = find_first_extent_bit(pending_del, 0, &start, &end,
1797 EXTENT_LOCKED);
1798 if (ret)
Chris Masonfec577f2007-02-26 10:40:21 -05001799 break;
Chris Mason1a5bc1672007-10-15 16:15:26 -04001800 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
1801 GFP_NOFS);
Chris Masonc286ac42008-07-22 23:06:41 -04001802 if (!test_range_bit(&extent_root->fs_info->extent_ins,
1803 start, end, EXTENT_LOCKED, 0)) {
1804 update_pinned_extents(extent_root, start,
1805 end + 1 - start, 1);
1806 ret = __free_extent(trans, extent_root,
1807 start, end + 1 - start,
1808 extent_root->root_key.objectid,
1809 0, 0, 0, 0, 0);
1810 } else {
1811 clear_extent_bits(&extent_root->fs_info->extent_ins,
1812 start, end, EXTENT_LOCKED, GFP_NOFS);
1813 }
Chris Mason1a5bc1672007-10-15 16:15:26 -04001814 if (ret)
1815 err = ret;
Chris Masonc286ac42008-07-22 23:06:41 -04001816
1817 if (need_resched()) {
1818 mutex_unlock(&extent_root->fs_info->alloc_mutex);
1819 cond_resched();
1820 mutex_lock(&extent_root->fs_info->alloc_mutex);
1821 }
Chris Masonfec577f2007-02-26 10:40:21 -05001822 }
Chris Masone20d96d2007-03-22 12:13:20 -04001823 return err;
Chris Masonfec577f2007-02-26 10:40:21 -05001824}
1825
1826/*
1827 * remove an extent from the root, returns 0 on success
1828 */
Chris Mason925baed2008-06-25 16:01:30 -04001829static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
1830 struct btrfs_root *root, u64 bytenr,
1831 u64 num_bytes, u64 root_objectid,
1832 u64 ref_generation, u64 owner_objectid,
1833 u64 owner_offset, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -05001834{
Chris Mason9f5fae22007-03-20 14:38:32 -04001835 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -05001836 int pending_ret;
1837 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05001838
Chris Masondb945352007-10-15 16:15:53 -04001839 WARN_ON(num_bytes < root->sectorsize);
Chris Mason7bb86312007-12-11 09:25:06 -05001840 if (!root->ref_cows)
1841 ref_generation = 0;
1842
Chris Masona28ec192007-03-06 20:08:01 -05001843 if (root == extent_root) {
Chris Masondb945352007-10-15 16:15:53 -04001844 pin_down_bytes(root, bytenr, num_bytes, 1);
Chris Masona28ec192007-03-06 20:08:01 -05001845 return 0;
1846 }
Chris Mason7bb86312007-12-11 09:25:06 -05001847 ret = __free_extent(trans, root, bytenr, num_bytes, root_objectid,
1848 ref_generation, owner_objectid, owner_offset,
1849 pin, pin == 0);
Chris Masonee6e6502008-07-17 12:54:40 -04001850
1851 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001852 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -05001853 return ret ? ret : pending_ret;
1854}
1855
Chris Mason925baed2008-06-25 16:01:30 -04001856int btrfs_free_extent(struct btrfs_trans_handle *trans,
1857 struct btrfs_root *root, u64 bytenr,
1858 u64 num_bytes, u64 root_objectid,
1859 u64 ref_generation, u64 owner_objectid,
1860 u64 owner_offset, int pin)
1861{
1862 int ret;
1863
1864 maybe_lock_mutex(root);
1865 ret = __btrfs_free_extent(trans, root, bytenr, num_bytes,
1866 root_objectid, ref_generation,
1867 owner_objectid, owner_offset, pin);
1868 maybe_unlock_mutex(root);
1869 return ret;
1870}
1871
Chris Mason87ee04e2007-11-30 11:30:34 -05001872static u64 stripe_align(struct btrfs_root *root, u64 val)
1873{
1874 u64 mask = ((u64)root->stripesize - 1);
1875 u64 ret = (val + mask) & ~mask;
1876 return ret;
1877}
1878
Chris Masonfec577f2007-02-26 10:40:21 -05001879/*
1880 * walks the btree of allocated extents and find a hole of a given size.
1881 * The key ins is changed to record the hole:
1882 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04001883 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05001884 * ins->offset == number of blocks
1885 * Any available blocks before search_start are skipped.
1886 */
Chris Mason98ed5172008-01-03 10:01:48 -05001887static int noinline find_free_extent(struct btrfs_trans_handle *trans,
1888 struct btrfs_root *orig_root,
1889 u64 num_bytes, u64 empty_size,
1890 u64 search_start, u64 search_end,
1891 u64 hint_byte, struct btrfs_key *ins,
1892 u64 exclude_start, u64 exclude_nr,
1893 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001894{
Chris Mason87ee04e2007-11-30 11:30:34 -05001895 int ret;
Chris Masona061fc82008-05-07 11:43:44 -04001896 u64 orig_search_start;
Chris Mason9f5fae22007-03-20 14:38:32 -04001897 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -04001898 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001899 u64 total_needed = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04001900 u64 *last_ptr = NULL;
Chris Masonbe08c1b2007-05-03 09:06:49 -04001901 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -04001902 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -04001903 int wrapped = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04001904 int chunk_alloc_done = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001905 int empty_cluster = 2 * 1024 * 1024;
Chris Mason0ef3e662008-05-24 14:04:53 -04001906 int allowed_chunk_alloc = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001907
Chris Masondb945352007-10-15 16:15:53 -04001908 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04001909 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
1910
Chris Mason0ef3e662008-05-24 14:04:53 -04001911 if (orig_root->ref_cows || empty_size)
1912 allowed_chunk_alloc = 1;
1913
Chris Mason239b14b2008-03-24 15:02:07 -04001914 if (data & BTRFS_BLOCK_GROUP_METADATA) {
1915 last_ptr = &root->fs_info->last_alloc;
Chris Mason8790d502008-04-03 16:29:03 -04001916 empty_cluster = 256 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04001917 }
1918
1919 if ((data & BTRFS_BLOCK_GROUP_DATA) && btrfs_test_opt(root, SSD)) {
1920 last_ptr = &root->fs_info->last_data_alloc;
1921 }
1922
1923 if (last_ptr) {
1924 if (*last_ptr)
1925 hint_byte = *last_ptr;
1926 else {
1927 empty_size += empty_cluster;
1928 }
1929 }
1930
Chris Masona061fc82008-05-07 11:43:44 -04001931 search_start = max(search_start, first_logical_byte(root, 0));
1932 orig_search_start = search_start;
1933
Chris Mason7f93bf82008-03-24 15:01:28 -04001934 if (search_end == (u64)-1)
1935 search_end = btrfs_super_total_bytes(&info->super_copy);
Chris Mason0b86a832008-03-24 15:01:56 -04001936
Chris Masondb945352007-10-15 16:15:53 -04001937 if (hint_byte) {
Chris Mason0ef3e662008-05-24 14:04:53 -04001938 block_group = btrfs_lookup_first_block_group(info, hint_byte);
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001939 if (!block_group)
1940 hint_byte = search_start;
Chris Masonc286ac42008-07-22 23:06:41 -04001941 block_group = btrfs_find_block_group(root, block_group,
Chris Masondb945352007-10-15 16:15:53 -04001942 hint_byte, data, 1);
Chris Mason239b14b2008-03-24 15:02:07 -04001943 if (last_ptr && *last_ptr == 0 && block_group)
1944 hint_byte = block_group->key.objectid;
Chris Masonbe744172007-05-06 10:15:01 -04001945 } else {
Chris Masonc286ac42008-07-22 23:06:41 -04001946 block_group = btrfs_find_block_group(root,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001947 trans->block_group,
1948 search_start, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001949 }
Chris Mason239b14b2008-03-24 15:02:07 -04001950 search_start = max(search_start, hint_byte);
Chris Masonbe744172007-05-06 10:15:01 -04001951
Chris Mason6702ed42007-08-07 16:15:09 -04001952 total_needed += empty_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001953
Chris Masonbe744172007-05-06 10:15:01 -04001954check_failed:
Chris Mason70b043f2007-12-13 09:02:46 -05001955 if (!block_group) {
Chris Mason0ef3e662008-05-24 14:04:53 -04001956 block_group = btrfs_lookup_first_block_group(info,
1957 search_start);
Chris Mason70b043f2007-12-13 09:02:46 -05001958 if (!block_group)
Chris Mason0ef3e662008-05-24 14:04:53 -04001959 block_group = btrfs_lookup_first_block_group(info,
Chris Mason70b043f2007-12-13 09:02:46 -05001960 orig_search_start);
1961 }
Chris Mason0ef3e662008-05-24 14:04:53 -04001962 if (full_scan && !chunk_alloc_done) {
1963 if (allowed_chunk_alloc) {
1964 do_chunk_alloc(trans, root,
1965 num_bytes + 2 * 1024 * 1024, data, 1);
1966 allowed_chunk_alloc = 0;
1967 } else if (block_group && block_group_bits(block_group, data)) {
1968 block_group->space_info->force_alloc = 1;
1969 }
1970 chunk_alloc_done = 1;
1971 }
Chris Mason0b86a832008-03-24 15:01:56 -04001972 ret = find_search_start(root, &block_group, &search_start,
1973 total_needed, data);
Chris Mason239b14b2008-03-24 15:02:07 -04001974 if (ret == -ENOSPC && last_ptr && *last_ptr) {
1975 *last_ptr = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04001976 block_group = btrfs_lookup_first_block_group(info,
1977 orig_search_start);
Chris Mason239b14b2008-03-24 15:02:07 -04001978 search_start = orig_search_start;
1979 ret = find_search_start(root, &block_group, &search_start,
1980 total_needed, data);
1981 }
1982 if (ret == -ENOSPC)
1983 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001984 if (ret)
1985 goto error;
1986
Chris Mason239b14b2008-03-24 15:02:07 -04001987 if (last_ptr && *last_ptr && search_start != *last_ptr) {
1988 *last_ptr = 0;
1989 if (!empty_size) {
1990 empty_size += empty_cluster;
1991 total_needed += empty_size;
1992 }
Chris Mason0ef3e662008-05-24 14:04:53 -04001993 block_group = btrfs_lookup_first_block_group(info,
Chris Mason239b14b2008-03-24 15:02:07 -04001994 orig_search_start);
1995 search_start = orig_search_start;
1996 ret = find_search_start(root, &block_group,
1997 &search_start, total_needed, data);
1998 if (ret == -ENOSPC)
1999 goto enospc;
2000 if (ret)
2001 goto error;
2002 }
2003
Chris Mason87ee04e2007-11-30 11:30:34 -05002004 search_start = stripe_align(root, search_start);
Chris Masonfec577f2007-02-26 10:40:21 -05002005 ins->objectid = search_start;
Chris Mason0b86a832008-03-24 15:01:56 -04002006 ins->offset = num_bytes;
Chris Masone37c9e62007-05-09 20:13:14 -04002007
Chris Masondb945352007-10-15 16:15:53 -04002008 if (ins->objectid + num_bytes >= search_end)
Chris Masoncf675822007-09-17 11:00:51 -04002009 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04002010
2011 if (ins->objectid + num_bytes >
2012 block_group->key.objectid + block_group->key.offset) {
Chris Masone19caa52007-10-15 16:17:44 -04002013 search_start = block_group->key.objectid +
2014 block_group->key.offset;
2015 goto new_group;
2016 }
Chris Mason0b86a832008-03-24 15:01:56 -04002017
Chris Mason1a5bc1672007-10-15 16:15:26 -04002018 if (test_range_bit(&info->extent_ins, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04002019 ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
2020 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc1672007-10-15 16:15:26 -04002021 goto new_group;
2022 }
Chris Mason0b86a832008-03-24 15:01:56 -04002023
Chris Mason1a5bc1672007-10-15 16:15:26 -04002024 if (test_range_bit(&info->pinned_extents, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04002025 ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
2026 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc1672007-10-15 16:15:26 -04002027 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05002028 }
Chris Mason0b86a832008-03-24 15:01:56 -04002029
Chris Masondb945352007-10-15 16:15:53 -04002030 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
Chris Masonf2654de2007-06-26 12:20:46 -04002031 ins->objectid < exclude_start + exclude_nr)) {
2032 search_start = exclude_start + exclude_nr;
2033 goto new_group;
2034 }
Chris Mason0b86a832008-03-24 15:01:56 -04002035
Chris Mason6324fbf2008-03-24 15:01:59 -04002036 if (!(data & BTRFS_BLOCK_GROUP_DATA)) {
Chris Mason5276aed2007-06-11 21:33:38 -04002037 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Mason26b80032007-08-08 20:17:12 -04002038 if (block_group)
2039 trans->block_group = block_group;
Chris Masoncd1bc462007-04-27 10:08:34 -04002040 }
Chris Masondb945352007-10-15 16:15:53 -04002041 ins->offset = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04002042 if (last_ptr) {
2043 *last_ptr = ins->objectid + ins->offset;
2044 if (*last_ptr ==
2045 btrfs_super_total_bytes(&root->fs_info->super_copy)) {
2046 *last_ptr = 0;
2047 }
2048 }
Chris Masonfec577f2007-02-26 10:40:21 -05002049 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04002050
2051new_group:
Chris Masondb945352007-10-15 16:15:53 -04002052 if (search_start + num_bytes >= search_end) {
Chris Masoncf675822007-09-17 11:00:51 -04002053enospc:
Chris Masonbe744172007-05-06 10:15:01 -04002054 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04002055 if (full_scan) {
2056 ret = -ENOSPC;
2057 goto error;
2058 }
Chris Mason6702ed42007-08-07 16:15:09 -04002059 if (wrapped) {
2060 if (!full_scan)
2061 total_needed -= empty_size;
Chris Masonfbdc7622007-05-30 10:22:12 -04002062 full_scan = 1;
Chris Mason6702ed42007-08-07 16:15:09 -04002063 } else
Chris Masonfbdc7622007-05-30 10:22:12 -04002064 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04002065 }
Chris Mason0ef3e662008-05-24 14:04:53 -04002066 block_group = btrfs_lookup_first_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04002067 cond_resched();
Chris Masonc286ac42008-07-22 23:06:41 -04002068 block_group = btrfs_find_block_group(root, block_group,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05002069 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04002070 goto check_failed;
2071
Chris Mason0f70abe2007-02-28 16:46:22 -05002072error:
Chris Mason0f70abe2007-02-28 16:46:22 -05002073 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05002074}
Chris Masonec44a352008-04-28 15:29:52 -04002075
Chris Masone6dcd2d2008-07-17 12:53:50 -04002076static int __btrfs_reserve_extent(struct btrfs_trans_handle *trans,
2077 struct btrfs_root *root,
2078 u64 num_bytes, u64 min_alloc_size,
2079 u64 empty_size, u64 hint_byte,
2080 u64 search_end, struct btrfs_key *ins,
2081 u64 data)
Chris Masonfec577f2007-02-26 10:40:21 -05002082{
2083 int ret;
Chris Masonfbdc7622007-05-30 10:22:12 -04002084 u64 search_start = 0;
Chris Mason8790d502008-04-03 16:29:03 -04002085 u64 alloc_profile;
Chris Mason1261ec42007-03-20 20:35:03 -04002086 struct btrfs_fs_info *info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04002087
Chris Mason6324fbf2008-03-24 15:01:59 -04002088 if (data) {
Chris Mason8790d502008-04-03 16:29:03 -04002089 alloc_profile = info->avail_data_alloc_bits &
2090 info->data_alloc_profile;
2091 data = BTRFS_BLOCK_GROUP_DATA | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04002092 } else if (root == root->fs_info->chunk_root) {
Chris Mason8790d502008-04-03 16:29:03 -04002093 alloc_profile = info->avail_system_alloc_bits &
2094 info->system_alloc_profile;
2095 data = BTRFS_BLOCK_GROUP_SYSTEM | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04002096 } else {
Chris Mason8790d502008-04-03 16:29:03 -04002097 alloc_profile = info->avail_metadata_alloc_bits &
2098 info->metadata_alloc_profile;
2099 data = BTRFS_BLOCK_GROUP_METADATA | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04002100 }
Chris Mason98d20f62008-04-14 09:46:10 -04002101again:
Chris Masona061fc82008-05-07 11:43:44 -04002102 data = reduce_alloc_profile(root, data);
Chris Mason0ef3e662008-05-24 14:04:53 -04002103 /*
2104 * the only place that sets empty_size is btrfs_realloc_node, which
2105 * is not called recursively on allocations
2106 */
2107 if (empty_size || root->ref_cows) {
Chris Mason593060d2008-03-25 16:50:33 -04002108 if (!(data & BTRFS_BLOCK_GROUP_METADATA)) {
Chris Mason6324fbf2008-03-24 15:01:59 -04002109 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0ef3e662008-05-24 14:04:53 -04002110 2 * 1024 * 1024,
2111 BTRFS_BLOCK_GROUP_METADATA |
2112 (info->metadata_alloc_profile &
2113 info->avail_metadata_alloc_bits), 0);
Chris Mason6324fbf2008-03-24 15:01:59 -04002114 BUG_ON(ret);
2115 }
2116 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0ef3e662008-05-24 14:04:53 -04002117 num_bytes + 2 * 1024 * 1024, data, 0);
Chris Mason6324fbf2008-03-24 15:01:59 -04002118 BUG_ON(ret);
2119 }
Chris Mason0b86a832008-03-24 15:01:56 -04002120
Chris Masondb945352007-10-15 16:15:53 -04002121 WARN_ON(num_bytes < root->sectorsize);
2122 ret = find_free_extent(trans, root, num_bytes, empty_size,
2123 search_start, search_end, hint_byte, ins,
Chris Mason26b80032007-08-08 20:17:12 -04002124 trans->alloc_exclude_start,
2125 trans->alloc_exclude_nr, data);
Chris Mason3b951512008-04-17 11:29:12 -04002126
Chris Mason98d20f62008-04-14 09:46:10 -04002127 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
2128 num_bytes = num_bytes >> 1;
2129 num_bytes = max(num_bytes, min_alloc_size);
Chris Mason0ef3e662008-05-24 14:04:53 -04002130 do_chunk_alloc(trans, root->fs_info->extent_root,
2131 num_bytes, data, 1);
Chris Mason98d20f62008-04-14 09:46:10 -04002132 goto again;
2133 }
Chris Masonec44a352008-04-28 15:29:52 -04002134 if (ret) {
2135 printk("allocation failed flags %Lu\n", data);
Chris Mason925baed2008-06-25 16:01:30 -04002136 BUG();
Chris Mason925baed2008-06-25 16:01:30 -04002137 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002138 clear_extent_dirty(&root->fs_info->free_space_cache,
2139 ins->objectid, ins->objectid + ins->offset - 1,
2140 GFP_NOFS);
2141 return 0;
2142}
2143
Chris Mason65b51a02008-08-01 15:11:20 -04002144int btrfs_free_reserved_extent(struct btrfs_root *root, u64 start, u64 len)
2145{
2146 maybe_lock_mutex(root);
2147 set_extent_dirty(&root->fs_info->free_space_cache,
2148 start, start + len - 1, GFP_NOFS);
2149 maybe_unlock_mutex(root);
2150 return 0;
2151}
2152
Chris Masone6dcd2d2008-07-17 12:53:50 -04002153int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
2154 struct btrfs_root *root,
2155 u64 num_bytes, u64 min_alloc_size,
2156 u64 empty_size, u64 hint_byte,
2157 u64 search_end, struct btrfs_key *ins,
2158 u64 data)
2159{
2160 int ret;
2161 maybe_lock_mutex(root);
2162 ret = __btrfs_reserve_extent(trans, root, num_bytes, min_alloc_size,
2163 empty_size, hint_byte, search_end, ins,
2164 data);
2165 maybe_unlock_mutex(root);
2166 return ret;
2167}
2168
2169static int __btrfs_alloc_reserved_extent(struct btrfs_trans_handle *trans,
2170 struct btrfs_root *root,
2171 u64 root_objectid, u64 ref_generation,
2172 u64 owner, u64 owner_offset,
2173 struct btrfs_key *ins)
2174{
2175 int ret;
2176 int pending_ret;
2177 u64 super_used;
2178 u64 root_used;
2179 u64 num_bytes = ins->offset;
2180 u32 sizes[2];
2181 struct btrfs_fs_info *info = root->fs_info;
2182 struct btrfs_root *extent_root = info->extent_root;
2183 struct btrfs_extent_item *extent_item;
2184 struct btrfs_extent_ref *ref;
2185 struct btrfs_path *path;
2186 struct btrfs_key keys[2];
Chris Masonf2654de2007-06-26 12:20:46 -04002187
Josef Bacik58176a92007-08-29 15:47:34 -04002188 /* block accounting for super block */
Chris Masona2135012008-06-25 16:01:30 -04002189 spin_lock_irq(&info->delalloc_lock);
Chris Masondb945352007-10-15 16:15:53 -04002190 super_used = btrfs_super_bytes_used(&info->super_copy);
2191 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
Chris Masona2135012008-06-25 16:01:30 -04002192 spin_unlock_irq(&info->delalloc_lock);
Chris Mason26b80032007-08-08 20:17:12 -04002193
Josef Bacik58176a92007-08-29 15:47:34 -04002194 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04002195 root_used = btrfs_root_used(&root->root_item);
2196 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04002197
Chris Mason26b80032007-08-08 20:17:12 -04002198 if (root == extent_root) {
Chris Mason1a5bc1672007-10-15 16:15:26 -04002199 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
2200 ins->objectid + ins->offset - 1,
2201 EXTENT_LOCKED, GFP_NOFS);
Chris Mason26b80032007-08-08 20:17:12 -04002202 goto update_block;
2203 }
2204
Chris Mason47e4bb92008-02-01 14:51:59 -05002205 memcpy(&keys[0], ins, sizeof(*ins));
2206 keys[1].offset = hash_extent_ref(root_objectid, ref_generation,
2207 owner, owner_offset);
2208 keys[1].objectid = ins->objectid;
2209 keys[1].type = BTRFS_EXTENT_REF_KEY;
2210 sizes[0] = sizeof(*extent_item);
2211 sizes[1] = sizeof(*ref);
Chris Mason7bb86312007-12-11 09:25:06 -05002212
2213 path = btrfs_alloc_path();
2214 BUG_ON(!path);
Chris Mason47e4bb92008-02-01 14:51:59 -05002215
2216 ret = btrfs_insert_empty_items(trans, extent_root, path, keys,
2217 sizes, 2);
Chris Mason26b80032007-08-08 20:17:12 -04002218
Chris Masonccd467d2007-06-28 15:57:36 -04002219 BUG_ON(ret);
Chris Mason47e4bb92008-02-01 14:51:59 -05002220 extent_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2221 struct btrfs_extent_item);
2222 btrfs_set_extent_refs(path->nodes[0], extent_item, 1);
2223 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
2224 struct btrfs_extent_ref);
2225
2226 btrfs_set_ref_root(path->nodes[0], ref, root_objectid);
2227 btrfs_set_ref_generation(path->nodes[0], ref, ref_generation);
2228 btrfs_set_ref_objectid(path->nodes[0], ref, owner);
2229 btrfs_set_ref_offset(path->nodes[0], ref, owner_offset);
2230
2231 btrfs_mark_buffer_dirty(path->nodes[0]);
2232
2233 trans->alloc_exclude_start = 0;
2234 trans->alloc_exclude_nr = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05002235 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04002236 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04002237 pending_ret = del_pending_extents(trans, extent_root);
Chris Masonf510cfe2007-10-15 16:14:48 -04002238
Chris Mason925baed2008-06-25 16:01:30 -04002239 if (ret)
2240 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -04002241 if (pending_ret) {
Chris Mason925baed2008-06-25 16:01:30 -04002242 ret = pending_ret;
2243 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -04002244 }
Chris Mason26b80032007-08-08 20:17:12 -04002245
2246update_block:
Chris Mason0b86a832008-03-24 15:01:56 -04002247 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0);
Chris Masonf5947062008-02-04 10:10:13 -05002248 if (ret) {
2249 printk("update block group failed for %Lu %Lu\n",
2250 ins->objectid, ins->offset);
2251 BUG();
2252 }
Chris Mason925baed2008-06-25 16:01:30 -04002253out:
Chris Masone6dcd2d2008-07-17 12:53:50 -04002254 return ret;
2255}
2256
2257int btrfs_alloc_reserved_extent(struct btrfs_trans_handle *trans,
2258 struct btrfs_root *root,
2259 u64 root_objectid, u64 ref_generation,
2260 u64 owner, u64 owner_offset,
2261 struct btrfs_key *ins)
2262{
2263 int ret;
2264 maybe_lock_mutex(root);
2265 ret = __btrfs_alloc_reserved_extent(trans, root, root_objectid,
2266 ref_generation, owner,
2267 owner_offset, ins);
2268 maybe_unlock_mutex(root);
2269 return ret;
2270}
2271/*
2272 * finds a free extent and does all the dirty work required for allocation
2273 * returns the key for the extent through ins, and a tree buffer for
2274 * the first block of the extent through buf.
2275 *
2276 * returns 0 if everything worked, non-zero otherwise.
2277 */
2278int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
2279 struct btrfs_root *root,
2280 u64 num_bytes, u64 min_alloc_size,
2281 u64 root_objectid, u64 ref_generation,
2282 u64 owner, u64 owner_offset,
2283 u64 empty_size, u64 hint_byte,
2284 u64 search_end, struct btrfs_key *ins, u64 data)
2285{
2286 int ret;
2287
2288 maybe_lock_mutex(root);
2289
2290 ret = __btrfs_reserve_extent(trans, root, num_bytes,
2291 min_alloc_size, empty_size, hint_byte,
2292 search_end, ins, data);
2293 BUG_ON(ret);
2294 ret = __btrfs_alloc_reserved_extent(trans, root, root_objectid,
2295 ref_generation, owner,
2296 owner_offset, ins);
2297 BUG_ON(ret);
2298
Chris Mason925baed2008-06-25 16:01:30 -04002299 maybe_unlock_mutex(root);
2300 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05002301}
Chris Mason65b51a02008-08-01 15:11:20 -04002302
2303struct extent_buffer *btrfs_init_new_buffer(struct btrfs_trans_handle *trans,
2304 struct btrfs_root *root,
2305 u64 bytenr, u32 blocksize)
2306{
2307 struct extent_buffer *buf;
2308
2309 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
2310 if (!buf)
2311 return ERR_PTR(-ENOMEM);
2312 btrfs_set_header_generation(buf, trans->transid);
2313 btrfs_tree_lock(buf);
2314 clean_tree_block(trans, root, buf);
2315 btrfs_set_buffer_uptodate(buf);
2316 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
2317 buf->start + buf->len - 1, GFP_NOFS);
2318 trans->blocks_used++;
2319 return buf;
2320}
2321
Chris Masonfec577f2007-02-26 10:40:21 -05002322/*
2323 * helper function to allocate a block for a given tree
2324 * returns the tree buffer or NULL.
2325 */
Chris Mason5f39d392007-10-15 16:14:19 -04002326struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -04002327 struct btrfs_root *root,
Chris Mason7bb86312007-12-11 09:25:06 -05002328 u32 blocksize,
Chris Mason7bb86312007-12-11 09:25:06 -05002329 u64 root_objectid,
2330 u64 ref_generation,
2331 u64 first_objectid,
2332 int level,
2333 u64 hint,
Chris Mason5f39d392007-10-15 16:14:19 -04002334 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05002335{
Chris Masone2fa7222007-03-12 16:22:34 -04002336 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05002337 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04002338 struct extent_buffer *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05002339
Chris Mason98d20f62008-04-14 09:46:10 -04002340 ret = btrfs_alloc_extent(trans, root, blocksize, blocksize,
Chris Mason7bb86312007-12-11 09:25:06 -05002341 root_objectid, ref_generation,
Chris Masonf6dbff52007-12-13 11:13:32 -05002342 level, first_objectid, empty_size, hint,
Chris Masondb945352007-10-15 16:15:53 -04002343 (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05002344 if (ret) {
Chris Mason54aa1f42007-06-22 14:16:25 -04002345 BUG_ON(ret > 0);
2346 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05002347 }
Chris Mason55c69072008-01-09 15:55:33 -05002348
Chris Mason65b51a02008-08-01 15:11:20 -04002349 buf = btrfs_init_new_buffer(trans, root, ins.objectid, blocksize);
Chris Masonfec577f2007-02-26 10:40:21 -05002350 return buf;
2351}
Chris Masona28ec192007-03-06 20:08:01 -05002352
Yan Zheng31153d82008-07-28 15:32:19 -04002353static int noinline drop_leaf_ref_no_cache(struct btrfs_trans_handle *trans,
Yanbcc63ab2008-07-30 16:29:20 -04002354 struct btrfs_root *root,
Yan Zheng31153d82008-07-28 15:32:19 -04002355 struct extent_buffer *leaf)
Chris Mason6407bf62007-03-27 06:33:00 -04002356{
Chris Mason7bb86312007-12-11 09:25:06 -05002357 u64 leaf_owner;
2358 u64 leaf_generation;
Chris Mason5f39d392007-10-15 16:14:19 -04002359 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04002360 struct btrfs_file_extent_item *fi;
2361 int i;
2362 int nritems;
2363 int ret;
2364
Chris Mason5f39d392007-10-15 16:14:19 -04002365 BUG_ON(!btrfs_is_leaf(leaf));
2366 nritems = btrfs_header_nritems(leaf);
Chris Mason7bb86312007-12-11 09:25:06 -05002367 leaf_owner = btrfs_header_owner(leaf);
2368 leaf_generation = btrfs_header_generation(leaf);
2369
Chris Mason6407bf62007-03-27 06:33:00 -04002370 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04002371 u64 disk_bytenr;
Chris Masone34a5b42008-07-22 12:08:37 -04002372 cond_resched();
Chris Mason5f39d392007-10-15 16:14:19 -04002373
2374 btrfs_item_key_to_cpu(leaf, &key, i);
2375 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04002376 continue;
2377 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002378 if (btrfs_file_extent_type(leaf, fi) ==
2379 BTRFS_FILE_EXTENT_INLINE)
Chris Mason236454df2007-04-19 13:37:44 -04002380 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04002381 /*
2382 * FIXME make sure to insert a trans record that
2383 * repeats the snapshot del on crash
2384 */
Chris Masondb945352007-10-15 16:15:53 -04002385 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
2386 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04002387 continue;
Chris Mason4a096752008-07-21 10:29:44 -04002388
2389 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04002390 ret = __btrfs_free_extent(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002391 btrfs_file_extent_disk_num_bytes(leaf, fi),
2392 leaf_owner, leaf_generation,
2393 key.objectid, key.offset, 0);
Chris Mason4a096752008-07-21 10:29:44 -04002394 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason2dd3e672008-08-04 08:20:15 -04002395
2396 atomic_inc(&root->fs_info->throttle_gen);
2397 wake_up(&root->fs_info->transaction_throttle);
2398 cond_resched();
2399
Chris Mason6407bf62007-03-27 06:33:00 -04002400 BUG_ON(ret);
2401 }
2402 return 0;
2403}
2404
Yan Zheng31153d82008-07-28 15:32:19 -04002405static int noinline drop_leaf_ref(struct btrfs_trans_handle *trans,
Yanbcc63ab2008-07-30 16:29:20 -04002406 struct btrfs_root *root,
Yan Zheng31153d82008-07-28 15:32:19 -04002407 struct btrfs_leaf_ref *ref)
2408{
2409 int i;
2410 int ret;
2411 struct btrfs_extent_info *info = ref->extents;
2412
Yan Zheng31153d82008-07-28 15:32:19 -04002413 for (i = 0; i < ref->nritems; i++) {
2414 mutex_lock(&root->fs_info->alloc_mutex);
2415 ret = __btrfs_free_extent(trans, root,
2416 info->bytenr, info->num_bytes,
2417 ref->owner, ref->generation,
2418 info->objectid, info->offset, 0);
2419 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason2dd3e672008-08-04 08:20:15 -04002420
2421 atomic_inc(&root->fs_info->throttle_gen);
2422 wake_up(&root->fs_info->transaction_throttle);
2423 cond_resched();
2424
Yan Zheng31153d82008-07-28 15:32:19 -04002425 BUG_ON(ret);
2426 info++;
2427 }
Yan Zheng31153d82008-07-28 15:32:19 -04002428
2429 return 0;
2430}
2431
Chris Mason333db942008-06-25 16:01:30 -04002432int drop_snap_lookup_refcount(struct btrfs_root *root, u64 start, u64 len,
2433 u32 *refs)
2434{
Chris Mason017e5362008-07-28 15:32:51 -04002435 int ret;
Chris Masonf87f0572008-08-01 11:27:23 -04002436
Chris Mason017e5362008-07-28 15:32:51 -04002437 ret = lookup_extent_ref(NULL, root, start, len, refs);
Chris Masonf87f0572008-08-01 11:27:23 -04002438 BUG_ON(ret);
2439
2440#if 0 // some debugging code in case we see problems here
2441 /* if the refs count is one, it won't get increased again. But
2442 * if the ref count is > 1, someone may be decreasing it at
2443 * the same time we are.
2444 */
2445 if (*refs != 1) {
2446 struct extent_buffer *eb = NULL;
2447 eb = btrfs_find_create_tree_block(root, start, len);
2448 if (eb)
2449 btrfs_tree_lock(eb);
2450
2451 mutex_lock(&root->fs_info->alloc_mutex);
2452 ret = lookup_extent_ref(NULL, root, start, len, refs);
2453 BUG_ON(ret);
2454 mutex_unlock(&root->fs_info->alloc_mutex);
2455
2456 if (eb) {
2457 btrfs_tree_unlock(eb);
2458 free_extent_buffer(eb);
2459 }
2460 if (*refs == 1) {
2461 printk("block %llu went down to one during drop_snap\n",
2462 (unsigned long long)start);
2463 }
2464
2465 }
2466#endif
2467
Chris Masone7a84562008-06-25 16:01:31 -04002468 cond_resched();
Chris Mason017e5362008-07-28 15:32:51 -04002469 return ret;
Chris Mason333db942008-06-25 16:01:30 -04002470}
2471
2472/*
Chris Mason9aca1d52007-03-13 11:09:37 -04002473 * helper function for drop_snapshot, this walks down the tree dropping ref
2474 * counts as it goes.
2475 */
Chris Mason98ed5172008-01-03 10:01:48 -05002476static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
2477 struct btrfs_root *root,
2478 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002479{
Chris Mason7bb86312007-12-11 09:25:06 -05002480 u64 root_owner;
2481 u64 root_gen;
2482 u64 bytenr;
Chris Masonca7a79a2008-05-12 12:59:19 -04002483 u64 ptr_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04002484 struct extent_buffer *next;
2485 struct extent_buffer *cur;
Chris Mason7bb86312007-12-11 09:25:06 -05002486 struct extent_buffer *parent;
Yan Zheng31153d82008-07-28 15:32:19 -04002487 struct btrfs_leaf_ref *ref;
Chris Masondb945352007-10-15 16:15:53 -04002488 u32 blocksize;
Chris Mason20524f02007-03-10 06:35:47 -05002489 int ret;
2490 u32 refs;
2491
Chris Mason5caf2a02007-04-02 11:20:42 -04002492 WARN_ON(*level < 0);
2493 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason333db942008-06-25 16:01:30 -04002494 ret = drop_snap_lookup_refcount(root, path->nodes[*level]->start,
Chris Masondb945352007-10-15 16:15:53 -04002495 path->nodes[*level]->len, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05002496 BUG_ON(ret);
2497 if (refs > 1)
2498 goto out;
Chris Masone0115992007-06-19 16:23:05 -04002499
Chris Mason9aca1d52007-03-13 11:09:37 -04002500 /*
2501 * walk down to the last node level and free all the leaves
2502 */
Chris Mason6407bf62007-03-27 06:33:00 -04002503 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002504 WARN_ON(*level < 0);
2505 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05002506 cur = path->nodes[*level];
Chris Masone0115992007-06-19 16:23:05 -04002507
Chris Mason5f39d392007-10-15 16:14:19 -04002508 if (btrfs_header_level(cur) != *level)
Chris Mason2c90e5d2007-04-02 10:50:19 -04002509 WARN_ON(1);
Chris Masone0115992007-06-19 16:23:05 -04002510
Chris Mason7518a232007-03-12 12:01:18 -04002511 if (path->slots[*level] >=
Chris Mason5f39d392007-10-15 16:14:19 -04002512 btrfs_header_nritems(cur))
Chris Mason20524f02007-03-10 06:35:47 -05002513 break;
Chris Mason6407bf62007-03-27 06:33:00 -04002514 if (*level == 0) {
Yan Zheng31153d82008-07-28 15:32:19 -04002515 ret = drop_leaf_ref_no_cache(trans, root, cur);
Chris Mason6407bf62007-03-27 06:33:00 -04002516 BUG_ON(ret);
2517 break;
2518 }
Chris Masondb945352007-10-15 16:15:53 -04002519 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
Chris Masonca7a79a2008-05-12 12:59:19 -04002520 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
Chris Masondb945352007-10-15 16:15:53 -04002521 blocksize = btrfs_level_size(root, *level - 1);
Chris Mason925baed2008-06-25 16:01:30 -04002522
Chris Mason333db942008-06-25 16:01:30 -04002523 ret = drop_snap_lookup_refcount(root, bytenr, blocksize, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04002524 BUG_ON(ret);
2525 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002526 parent = path->nodes[*level];
2527 root_owner = btrfs_header_owner(parent);
2528 root_gen = btrfs_header_generation(parent);
Chris Mason20524f02007-03-10 06:35:47 -05002529 path->slots[*level]++;
Chris Masonf87f0572008-08-01 11:27:23 -04002530
2531 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04002532 ret = __btrfs_free_extent(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002533 blocksize, root_owner,
2534 root_gen, 0, 0, 1);
Chris Mason20524f02007-03-10 06:35:47 -05002535 BUG_ON(ret);
Chris Masonf87f0572008-08-01 11:27:23 -04002536 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason18e35e0a2008-08-01 13:11:41 -04002537
2538 atomic_inc(&root->fs_info->throttle_gen);
2539 wake_up(&root->fs_info->transaction_throttle);
Chris Mason2dd3e672008-08-04 08:20:15 -04002540 cond_resched();
Chris Mason18e35e0a2008-08-01 13:11:41 -04002541
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 Masonca7a79a2008-05-12 12:59:19 -04002570 next = read_tree_block(root, bytenr, blocksize,
2571 ptr_gen);
Chris Masone7a84562008-06-25 16:01:31 -04002572 cond_resched();
Chris Masonf87f0572008-08-01 11:27:23 -04002573#if 0
2574 /*
2575 * this is a debugging check and can go away
2576 * the ref should never go all the way down to 1
2577 * at this point
2578 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04002579 ret = lookup_extent_ref(NULL, root, bytenr, blocksize,
2580 &refs);
Chris Masone9d0b132007-08-10 14:06:19 -04002581 BUG_ON(ret);
Chris Masonf87f0572008-08-01 11:27:23 -04002582 WARN_ON(refs != 1);
2583#endif
Chris Masone9d0b132007-08-10 14:06:19 -04002584 }
Chris Mason5caf2a02007-04-02 11:20:42 -04002585 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04002586 if (path->nodes[*level-1])
Chris Mason5f39d392007-10-15 16:14:19 -04002587 free_extent_buffer(path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05002588 path->nodes[*level-1] = next;
Chris Mason5f39d392007-10-15 16:14:19 -04002589 *level = btrfs_header_level(next);
Chris Mason20524f02007-03-10 06:35:47 -05002590 path->slots[*level] = 0;
Chris Mason2dd3e672008-08-04 08:20:15 -04002591 cond_resched();
Chris Mason20524f02007-03-10 06:35:47 -05002592 }
2593out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002594 WARN_ON(*level < 0);
2595 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason7bb86312007-12-11 09:25:06 -05002596
2597 if (path->nodes[*level] == root->node) {
Chris Mason7bb86312007-12-11 09:25:06 -05002598 parent = path->nodes[*level];
Yan Zheng31153d82008-07-28 15:32:19 -04002599 bytenr = path->nodes[*level]->start;
Chris Mason7bb86312007-12-11 09:25:06 -05002600 } else {
2601 parent = path->nodes[*level + 1];
Yan Zheng31153d82008-07-28 15:32:19 -04002602 bytenr = btrfs_node_blockptr(parent, path->slots[*level + 1]);
Chris Mason7bb86312007-12-11 09:25:06 -05002603 }
2604
Yan Zheng31153d82008-07-28 15:32:19 -04002605 blocksize = btrfs_level_size(root, *level);
2606 root_owner = btrfs_header_owner(parent);
Chris Mason7bb86312007-12-11 09:25:06 -05002607 root_gen = btrfs_header_generation(parent);
Yan Zheng31153d82008-07-28 15:32:19 -04002608
Chris Masonf87f0572008-08-01 11:27:23 -04002609 mutex_lock(&root->fs_info->alloc_mutex);
Yan Zheng31153d82008-07-28 15:32:19 -04002610 ret = __btrfs_free_extent(trans, root, bytenr, blocksize,
2611 root_owner, root_gen, 0, 0, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002612 free_extent_buffer(path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05002613 path->nodes[*level] = NULL;
2614 *level += 1;
2615 BUG_ON(ret);
Chris Mason925baed2008-06-25 16:01:30 -04002616 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonf87f0572008-08-01 11:27:23 -04002617
Chris Masone7a84562008-06-25 16:01:31 -04002618 cond_resched();
Chris Mason20524f02007-03-10 06:35:47 -05002619 return 0;
2620}
2621
Chris Mason9aca1d52007-03-13 11:09:37 -04002622/*
2623 * helper for dropping snapshots. This walks back up the tree in the path
2624 * to find the first node higher up where we haven't yet gone through
2625 * all the slots
2626 */
Chris Mason98ed5172008-01-03 10:01:48 -05002627static int noinline walk_up_tree(struct btrfs_trans_handle *trans,
2628 struct btrfs_root *root,
2629 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002630{
Chris Mason7bb86312007-12-11 09:25:06 -05002631 u64 root_owner;
2632 u64 root_gen;
2633 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002634 int i;
2635 int slot;
2636 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04002637
Chris Mason234b63a2007-03-13 10:46:10 -04002638 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05002639 slot = path->slots[i];
Chris Mason5f39d392007-10-15 16:14:19 -04002640 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
2641 struct extent_buffer *node;
2642 struct btrfs_disk_key disk_key;
2643 node = path->nodes[i];
Chris Mason20524f02007-03-10 06:35:47 -05002644 path->slots[i]++;
2645 *level = i;
Chris Mason9f3a7422007-08-07 15:52:19 -04002646 WARN_ON(*level == 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002647 btrfs_node_key(node, &disk_key, path->slots[i]);
Chris Mason9f3a7422007-08-07 15:52:19 -04002648 memcpy(&root_item->drop_progress,
Chris Mason5f39d392007-10-15 16:14:19 -04002649 &disk_key, sizeof(disk_key));
Chris Mason9f3a7422007-08-07 15:52:19 -04002650 root_item->drop_level = i;
Chris Mason20524f02007-03-10 06:35:47 -05002651 return 0;
2652 } else {
Chris Mason7bb86312007-12-11 09:25:06 -05002653 if (path->nodes[*level] == root->node) {
2654 root_owner = root->root_key.objectid;
2655 root_gen =
2656 btrfs_header_generation(path->nodes[*level]);
2657 } else {
2658 struct extent_buffer *node;
2659 node = path->nodes[*level + 1];
2660 root_owner = btrfs_header_owner(node);
2661 root_gen = btrfs_header_generation(node);
2662 }
Chris Masone089f052007-03-16 16:20:31 -04002663 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002664 path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002665 path->nodes[*level]->len,
2666 root_owner, root_gen, 0, 0, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04002667 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002668 free_extent_buffer(path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04002669 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05002670 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05002671 }
2672 }
2673 return 1;
2674}
2675
Chris Mason9aca1d52007-03-13 11:09:37 -04002676/*
2677 * drop the reference count on the tree rooted at 'snap'. This traverses
2678 * the tree freeing any blocks that have a ref count of zero after being
2679 * decremented.
2680 */
Chris Masone089f052007-03-16 16:20:31 -04002681int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04002682 *root)
Chris Mason20524f02007-03-10 06:35:47 -05002683{
Chris Mason3768f362007-03-13 16:47:54 -04002684 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04002685 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05002686 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04002687 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05002688 int i;
2689 int orig_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002690 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002691
Chris Masona2135012008-06-25 16:01:30 -04002692 WARN_ON(!mutex_is_locked(&root->fs_info->drop_mutex));
Chris Mason5caf2a02007-04-02 11:20:42 -04002693 path = btrfs_alloc_path();
2694 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05002695
Chris Mason5f39d392007-10-15 16:14:19 -04002696 level = btrfs_header_level(root->node);
Chris Mason20524f02007-03-10 06:35:47 -05002697 orig_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002698 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2699 path->nodes[level] = root->node;
Chris Masonf510cfe2007-10-15 16:14:48 -04002700 extent_buffer_get(root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -04002701 path->slots[level] = 0;
2702 } else {
2703 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002704 struct btrfs_disk_key found_key;
2705 struct extent_buffer *node;
Chris Mason6702ed42007-08-07 16:15:09 -04002706
Chris Mason9f3a7422007-08-07 15:52:19 -04002707 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Chris Mason6702ed42007-08-07 16:15:09 -04002708 level = root_item->drop_level;
2709 path->lowest_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002710 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason6702ed42007-08-07 16:15:09 -04002711 if (wret < 0) {
Chris Mason9f3a7422007-08-07 15:52:19 -04002712 ret = wret;
2713 goto out;
2714 }
Chris Mason5f39d392007-10-15 16:14:19 -04002715 node = path->nodes[level];
2716 btrfs_node_key(node, &found_key, path->slots[level]);
2717 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2718 sizeof(found_key)));
Chris Mason7d9eb122008-07-08 14:19:17 -04002719 /*
2720 * unlock our path, this is safe because only this
2721 * function is allowed to delete this snapshot
2722 */
Chris Mason925baed2008-06-25 16:01:30 -04002723 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
2724 if (path->nodes[i] && path->locks[i]) {
2725 path->locks[i] = 0;
2726 btrfs_tree_unlock(path->nodes[i]);
2727 }
2728 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002729 }
Chris Mason20524f02007-03-10 06:35:47 -05002730 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002731 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002732 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002733 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002734 if (wret < 0)
2735 ret = wret;
2736
Chris Mason5caf2a02007-04-02 11:20:42 -04002737 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002738 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002739 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002740 if (wret < 0)
2741 ret = wret;
Chris Masone7a84562008-06-25 16:01:31 -04002742 if (trans->transaction->in_commit) {
2743 ret = -EAGAIN;
2744 break;
2745 }
Chris Mason18e35e0a2008-08-01 13:11:41 -04002746 atomic_inc(&root->fs_info->throttle_gen);
Chris Mason017e5362008-07-28 15:32:51 -04002747 wake_up(&root->fs_info->transaction_throttle);
Chris Mason20524f02007-03-10 06:35:47 -05002748 }
Chris Mason83e15a22007-03-12 09:03:27 -04002749 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002750 if (path->nodes[i]) {
Chris Mason5f39d392007-10-15 16:14:19 -04002751 free_extent_buffer(path->nodes[i]);
Chris Mason0f827312007-10-15 16:18:56 -04002752 path->nodes[i] = NULL;
Chris Mason83e15a22007-03-12 09:03:27 -04002753 }
Chris Mason20524f02007-03-10 06:35:47 -05002754 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002755out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002756 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04002757 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05002758}
Chris Mason9078a3e2007-04-26 16:46:15 -04002759
Chris Masonbe744172007-05-06 10:15:01 -04002760int btrfs_free_block_groups(struct btrfs_fs_info *info)
2761{
Chris Masonf510cfe2007-10-15 16:14:48 -04002762 u64 start;
2763 u64 end;
Yanb97f9202007-11-01 11:28:41 -04002764 u64 ptr;
Chris Mason96b51792007-10-15 16:15:19 -04002765 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04002766
2767 mutex_lock(&info->alloc_mutex);
Chris Mason96b51792007-10-15 16:15:19 -04002768 while(1) {
2769 ret = find_first_extent_bit(&info->block_group_cache, 0,
2770 &start, &end, (unsigned int)-1);
2771 if (ret)
2772 break;
Yanb97f9202007-11-01 11:28:41 -04002773 ret = get_state_private(&info->block_group_cache, start, &ptr);
2774 if (!ret)
2775 kfree((void *)(unsigned long)ptr);
Chris Mason96b51792007-10-15 16:15:19 -04002776 clear_extent_bits(&info->block_group_cache, start,
2777 end, (unsigned int)-1, GFP_NOFS);
2778 }
Chris Masone37c9e62007-05-09 20:13:14 -04002779 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -04002780 ret = find_first_extent_bit(&info->free_space_cache, 0,
2781 &start, &end, EXTENT_DIRTY);
2782 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -04002783 break;
Chris Masonf510cfe2007-10-15 16:14:48 -04002784 clear_extent_dirty(&info->free_space_cache, start,
2785 end, GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04002786 }
Chris Mason925baed2008-06-25 16:01:30 -04002787 mutex_unlock(&info->alloc_mutex);
Chris Masonbe744172007-05-06 10:15:01 -04002788 return 0;
2789}
2790
Chris Mason8e7bf942008-04-28 09:02:36 -04002791static unsigned long calc_ra(unsigned long start, unsigned long last,
2792 unsigned long nr)
2793{
2794 return min(last, start + nr - 1);
2795}
2796
Chris Mason98ed5172008-01-03 10:01:48 -05002797static int noinline relocate_inode_pages(struct inode *inode, u64 start,
2798 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05002799{
2800 u64 page_start;
2801 u64 page_end;
Chris Masonedbd8d42007-12-21 16:27:24 -05002802 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05002803 unsigned long i;
2804 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05002805 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05002806 struct file_ra_state *ra;
Chris Mason8e7bf942008-04-28 09:02:36 -04002807 unsigned long total_read = 0;
2808 unsigned long ra_pages;
Chris Mason3eaa2882008-07-24 11:57:52 -04002809 struct btrfs_ordered_extent *ordered;
Chris Masona061fc82008-05-07 11:43:44 -04002810 struct btrfs_trans_handle *trans;
Chris Mason4313b392008-01-03 09:08:48 -05002811
2812 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002813
2814 mutex_lock(&inode->i_mutex);
Chris Mason4313b392008-01-03 09:08:48 -05002815 i = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05002816 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
2817
Chris Mason8e7bf942008-04-28 09:02:36 -04002818 ra_pages = BTRFS_I(inode)->root->fs_info->bdi.ra_pages;
2819
Chris Mason4313b392008-01-03 09:08:48 -05002820 file_ra_state_init(ra, inode->i_mapping);
Chris Masonedbd8d42007-12-21 16:27:24 -05002821
Chris Mason4313b392008-01-03 09:08:48 -05002822 for (; i <= last_index; i++) {
Chris Mason8e7bf942008-04-28 09:02:36 -04002823 if (total_read % ra_pages == 0) {
2824 btrfs_force_ra(inode->i_mapping, ra, NULL, i,
2825 calc_ra(i, last_index, ra_pages));
2826 }
2827 total_read++;
Chris Mason3eaa2882008-07-24 11:57:52 -04002828again:
2829 if (((u64)i << PAGE_CACHE_SHIFT) > i_size_read(inode))
Chris Masona061fc82008-05-07 11:43:44 -04002830 goto truncate_racing;
Chris Masonedbd8d42007-12-21 16:27:24 -05002831 page = grab_cache_page(inode->i_mapping, i);
Chris Masona061fc82008-05-07 11:43:44 -04002832 if (!page) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002833 goto out_unlock;
Chris Masona061fc82008-05-07 11:43:44 -04002834 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002835 if (!PageUptodate(page)) {
2836 btrfs_readpage(NULL, page);
2837 lock_page(page);
2838 if (!PageUptodate(page)) {
2839 unlock_page(page);
2840 page_cache_release(page);
2841 goto out_unlock;
2842 }
2843 }
Chris Masonec44a352008-04-28 15:29:52 -04002844 wait_on_page_writeback(page);
Chris Mason3eaa2882008-07-24 11:57:52 -04002845
Chris Masonedbd8d42007-12-21 16:27:24 -05002846 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2847 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002848 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002849
Chris Mason3eaa2882008-07-24 11:57:52 -04002850 ordered = btrfs_lookup_ordered_extent(inode, page_start);
2851 if (ordered) {
2852 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
2853 unlock_page(page);
2854 page_cache_release(page);
2855 btrfs_start_ordered_extent(inode, ordered, 1);
2856 btrfs_put_ordered_extent(ordered);
2857 goto again;
2858 }
2859 set_page_extent_mapped(page);
2860
Chris Masonf87f0572008-08-01 11:27:23 -04002861 /*
2862 * make sure page_mkwrite is called for this page if userland
2863 * wants to change it from mmap
2864 */
2865 clear_page_dirty_for_io(page);
Chris Mason3eaa2882008-07-24 11:57:52 -04002866
Chris Masonea8c2812008-08-04 23:17:27 -04002867 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masona061fc82008-05-07 11:43:44 -04002868 set_page_dirty(page);
Chris Masonedbd8d42007-12-21 16:27:24 -05002869
Chris Masond1310b22008-01-24 16:13:08 -05002870 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002871 unlock_page(page);
2872 page_cache_release(page);
2873 }
2874
2875out_unlock:
Chris Mason3eaa2882008-07-24 11:57:52 -04002876 /* we have to start the IO in order to get the ordered extents
2877 * instantiated. This allows the relocation to code to wait
2878 * for all the ordered extents to hit the disk.
2879 *
2880 * Otherwise, it would constantly loop over the same extents
2881 * because the old ones don't get deleted until the IO is
2882 * started
2883 */
2884 btrfs_fdatawrite_range(inode->i_mapping, start, start + len - 1,
2885 WB_SYNC_NONE);
Chris Masonec44a352008-04-28 15:29:52 -04002886 kfree(ra);
Chris Masona061fc82008-05-07 11:43:44 -04002887 trans = btrfs_start_transaction(BTRFS_I(inode)->root, 1);
2888 if (trans) {
Chris Masona061fc82008-05-07 11:43:44 -04002889 btrfs_end_transaction(trans, BTRFS_I(inode)->root);
2890 mark_inode_dirty(inode);
2891 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002892 mutex_unlock(&inode->i_mutex);
2893 return 0;
Chris Masona061fc82008-05-07 11:43:44 -04002894
2895truncate_racing:
2896 vmtruncate(inode, inode->i_size);
2897 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
2898 total_read);
2899 goto out_unlock;
Chris Masonedbd8d42007-12-21 16:27:24 -05002900}
2901
Chris Mason4313b392008-01-03 09:08:48 -05002902/*
Chris Masonbf4ef672008-05-08 13:26:18 -04002903 * The back references tell us which tree holds a ref on a block,
2904 * but it is possible for the tree root field in the reference to
2905 * reflect the original root before a snapshot was made. In this
2906 * case we should search through all the children of a given root
2907 * to find potential holders of references on a block.
2908 *
2909 * Instead, we do something a little less fancy and just search
2910 * all the roots for a given key/block combination.
2911 */
2912static int find_root_for_ref(struct btrfs_root *root,
2913 struct btrfs_path *path,
2914 struct btrfs_key *key0,
2915 int level,
2916 int file_key,
2917 struct btrfs_root **found_root,
2918 u64 bytenr)
2919{
2920 struct btrfs_key root_location;
2921 struct btrfs_root *cur_root = *found_root;
2922 struct btrfs_file_extent_item *file_extent;
2923 u64 root_search_start = BTRFS_FS_TREE_OBJECTID;
2924 u64 found_bytenr;
2925 int ret;
Chris Masonbf4ef672008-05-08 13:26:18 -04002926
2927 root_location.offset = (u64)-1;
2928 root_location.type = BTRFS_ROOT_ITEM_KEY;
2929 path->lowest_level = level;
2930 path->reada = 0;
2931 while(1) {
2932 ret = btrfs_search_slot(NULL, cur_root, key0, path, 0, 0);
2933 found_bytenr = 0;
2934 if (ret == 0 && file_key) {
2935 struct extent_buffer *leaf = path->nodes[0];
2936 file_extent = btrfs_item_ptr(leaf, path->slots[0],
2937 struct btrfs_file_extent_item);
2938 if (btrfs_file_extent_type(leaf, file_extent) ==
2939 BTRFS_FILE_EXTENT_REG) {
2940 found_bytenr =
2941 btrfs_file_extent_disk_bytenr(leaf,
2942 file_extent);
2943 }
Chris Mason323da792008-05-09 11:46:48 -04002944 } else if (!file_key) {
Chris Masonbf4ef672008-05-08 13:26:18 -04002945 if (path->nodes[level])
2946 found_bytenr = path->nodes[level]->start;
2947 }
2948
Chris Masonbf4ef672008-05-08 13:26:18 -04002949 btrfs_release_path(cur_root, path);
2950
2951 if (found_bytenr == bytenr) {
2952 *found_root = cur_root;
2953 ret = 0;
2954 goto out;
2955 }
2956 ret = btrfs_search_root(root->fs_info->tree_root,
2957 root_search_start, &root_search_start);
2958 if (ret)
2959 break;
2960
2961 root_location.objectid = root_search_start;
2962 cur_root = btrfs_read_fs_root_no_name(root->fs_info,
2963 &root_location);
2964 if (!cur_root) {
2965 ret = 1;
2966 break;
2967 }
2968 }
2969out:
2970 path->lowest_level = 0;
2971 return ret;
2972}
2973
2974/*
Chris Mason4313b392008-01-03 09:08:48 -05002975 * note, this releases the path
2976 */
Chris Mason98ed5172008-01-03 10:01:48 -05002977static int noinline relocate_one_reference(struct btrfs_root *extent_root,
Chris Masonedbd8d42007-12-21 16:27:24 -05002978 struct btrfs_path *path,
Chris Mason0ef3e662008-05-24 14:04:53 -04002979 struct btrfs_key *extent_key,
2980 u64 *last_file_objectid,
2981 u64 *last_file_offset,
2982 u64 *last_file_root,
2983 u64 last_extent)
Chris Masonedbd8d42007-12-21 16:27:24 -05002984{
2985 struct inode *inode;
2986 struct btrfs_root *found_root;
Chris Masonbf4ef672008-05-08 13:26:18 -04002987 struct btrfs_key root_location;
2988 struct btrfs_key found_key;
Chris Mason4313b392008-01-03 09:08:48 -05002989 struct btrfs_extent_ref *ref;
2990 u64 ref_root;
2991 u64 ref_gen;
2992 u64 ref_objectid;
2993 u64 ref_offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05002994 int ret;
Chris Masonbf4ef672008-05-08 13:26:18 -04002995 int level;
Chris Masonedbd8d42007-12-21 16:27:24 -05002996
Chris Mason7d9eb122008-07-08 14:19:17 -04002997 WARN_ON(!mutex_is_locked(&extent_root->fs_info->alloc_mutex));
2998
Chris Mason4313b392008-01-03 09:08:48 -05002999 ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
3000 struct btrfs_extent_ref);
3001 ref_root = btrfs_ref_root(path->nodes[0], ref);
3002 ref_gen = btrfs_ref_generation(path->nodes[0], ref);
3003 ref_objectid = btrfs_ref_objectid(path->nodes[0], ref);
3004 ref_offset = btrfs_ref_offset(path->nodes[0], ref);
3005 btrfs_release_path(extent_root, path);
3006
Chris Masonbf4ef672008-05-08 13:26:18 -04003007 root_location.objectid = ref_root;
Chris Masonedbd8d42007-12-21 16:27:24 -05003008 if (ref_gen == 0)
Chris Masonbf4ef672008-05-08 13:26:18 -04003009 root_location.offset = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05003010 else
Chris Masonbf4ef672008-05-08 13:26:18 -04003011 root_location.offset = (u64)-1;
3012 root_location.type = BTRFS_ROOT_ITEM_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05003013
3014 found_root = btrfs_read_fs_root_no_name(extent_root->fs_info,
Chris Masonbf4ef672008-05-08 13:26:18 -04003015 &root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05003016 BUG_ON(!found_root);
Chris Mason7d9eb122008-07-08 14:19:17 -04003017 mutex_unlock(&extent_root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003018
3019 if (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
Chris Masonbf4ef672008-05-08 13:26:18 -04003020 found_key.objectid = ref_objectid;
3021 found_key.type = BTRFS_EXTENT_DATA_KEY;
3022 found_key.offset = ref_offset;
3023 level = 0;
3024
Chris Mason0ef3e662008-05-24 14:04:53 -04003025 if (last_extent == extent_key->objectid &&
3026 *last_file_objectid == ref_objectid &&
3027 *last_file_offset == ref_offset &&
3028 *last_file_root == ref_root)
3029 goto out;
3030
Chris Masonbf4ef672008-05-08 13:26:18 -04003031 ret = find_root_for_ref(extent_root, path, &found_key,
3032 level, 1, &found_root,
3033 extent_key->objectid);
3034
3035 if (ret)
3036 goto out;
3037
Chris Mason0ef3e662008-05-24 14:04:53 -04003038 if (last_extent == extent_key->objectid &&
3039 *last_file_objectid == ref_objectid &&
3040 *last_file_offset == ref_offset &&
3041 *last_file_root == ref_root)
3042 goto out;
3043
Chris Masonedbd8d42007-12-21 16:27:24 -05003044 inode = btrfs_iget_locked(extent_root->fs_info->sb,
3045 ref_objectid, found_root);
3046 if (inode->i_state & I_NEW) {
3047 /* the inode and parent dir are two different roots */
3048 BTRFS_I(inode)->root = found_root;
3049 BTRFS_I(inode)->location.objectid = ref_objectid;
3050 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
3051 BTRFS_I(inode)->location.offset = 0;
3052 btrfs_read_locked_inode(inode);
3053 unlock_new_inode(inode);
3054
3055 }
3056 /* this can happen if the reference is not against
3057 * the latest version of the tree root
3058 */
Chris Mason7d9eb122008-07-08 14:19:17 -04003059 if (is_bad_inode(inode))
Chris Masonedbd8d42007-12-21 16:27:24 -05003060 goto out;
Chris Mason7d9eb122008-07-08 14:19:17 -04003061
Chris Mason0ef3e662008-05-24 14:04:53 -04003062 *last_file_objectid = inode->i_ino;
3063 *last_file_root = found_root->root_key.objectid;
3064 *last_file_offset = ref_offset;
3065
Chris Masonedbd8d42007-12-21 16:27:24 -05003066 relocate_inode_pages(inode, ref_offset, extent_key->offset);
Chris Masonedbd8d42007-12-21 16:27:24 -05003067 iput(inode);
Chris Masonedbd8d42007-12-21 16:27:24 -05003068 } else {
3069 struct btrfs_trans_handle *trans;
Chris Masonedbd8d42007-12-21 16:27:24 -05003070 struct extent_buffer *eb;
Chris Mason7d9eb122008-07-08 14:19:17 -04003071 int needs_lock = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05003072
Chris Masonedbd8d42007-12-21 16:27:24 -05003073 eb = read_tree_block(found_root, extent_key->objectid,
Chris Masonca7a79a2008-05-12 12:59:19 -04003074 extent_key->offset, 0);
Chris Mason925baed2008-06-25 16:01:30 -04003075 btrfs_tree_lock(eb);
Chris Masonedbd8d42007-12-21 16:27:24 -05003076 level = btrfs_header_level(eb);
3077
3078 if (level == 0)
3079 btrfs_item_key_to_cpu(eb, &found_key, 0);
3080 else
3081 btrfs_node_key_to_cpu(eb, &found_key, 0);
3082
Chris Mason925baed2008-06-25 16:01:30 -04003083 btrfs_tree_unlock(eb);
Chris Masonedbd8d42007-12-21 16:27:24 -05003084 free_extent_buffer(eb);
3085
Chris Masonbf4ef672008-05-08 13:26:18 -04003086 ret = find_root_for_ref(extent_root, path, &found_key,
3087 level, 0, &found_root,
3088 extent_key->objectid);
3089
3090 if (ret)
3091 goto out;
3092
Chris Mason7d9eb122008-07-08 14:19:17 -04003093 /*
3094 * right here almost anything could happen to our key,
3095 * but that's ok. The cow below will either relocate it
3096 * or someone else will have relocated it. Either way,
3097 * it is in a different spot than it was before and
3098 * we're happy.
3099 */
3100
Chris Masonbf4ef672008-05-08 13:26:18 -04003101 trans = btrfs_start_transaction(found_root, 1);
3102
Chris Mason7d9eb122008-07-08 14:19:17 -04003103 if (found_root == extent_root->fs_info->extent_root ||
3104 found_root == extent_root->fs_info->chunk_root ||
3105 found_root == extent_root->fs_info->dev_root) {
3106 needs_lock = 1;
3107 mutex_lock(&extent_root->fs_info->alloc_mutex);
3108 }
3109
Chris Masonedbd8d42007-12-21 16:27:24 -05003110 path->lowest_level = level;
Chris Mason8f662a72008-01-02 10:01:11 -05003111 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05003112 ret = btrfs_search_slot(trans, found_root, &found_key, path,
3113 0, 1);
3114 path->lowest_level = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05003115 btrfs_release_path(found_root, path);
Chris Mason7d9eb122008-07-08 14:19:17 -04003116
Chris Mason0ef3e662008-05-24 14:04:53 -04003117 if (found_root == found_root->fs_info->extent_root)
3118 btrfs_extent_post_op(trans, found_root);
Chris Mason7d9eb122008-07-08 14:19:17 -04003119 if (needs_lock)
3120 mutex_unlock(&extent_root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003121
Chris Mason7d9eb122008-07-08 14:19:17 -04003122 btrfs_end_transaction(trans, found_root);
3123
3124 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003125out:
Chris Mason7d9eb122008-07-08 14:19:17 -04003126 mutex_lock(&extent_root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003127 return 0;
3128}
3129
Chris Masona061fc82008-05-07 11:43:44 -04003130static int noinline del_extent_zero(struct btrfs_root *extent_root,
3131 struct btrfs_path *path,
3132 struct btrfs_key *extent_key)
3133{
3134 int ret;
3135 struct btrfs_trans_handle *trans;
3136
3137 trans = btrfs_start_transaction(extent_root, 1);
3138 ret = btrfs_search_slot(trans, extent_root, extent_key, path, -1, 1);
3139 if (ret > 0) {
3140 ret = -EIO;
3141 goto out;
3142 }
3143 if (ret < 0)
3144 goto out;
3145 ret = btrfs_del_item(trans, extent_root, path);
3146out:
3147 btrfs_end_transaction(trans, extent_root);
3148 return ret;
3149}
3150
Chris Mason98ed5172008-01-03 10:01:48 -05003151static int noinline relocate_one_extent(struct btrfs_root *extent_root,
3152 struct btrfs_path *path,
3153 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05003154{
3155 struct btrfs_key key;
3156 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05003157 struct extent_buffer *leaf;
Chris Mason0ef3e662008-05-24 14:04:53 -04003158 u64 last_file_objectid = 0;
3159 u64 last_file_root = 0;
3160 u64 last_file_offset = (u64)-1;
3161 u64 last_extent = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05003162 u32 nritems;
3163 u32 item_size;
3164 int ret = 0;
3165
Chris Masona061fc82008-05-07 11:43:44 -04003166 if (extent_key->objectid == 0) {
3167 ret = del_extent_zero(extent_root, path, extent_key);
3168 goto out;
3169 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003170 key.objectid = extent_key->objectid;
3171 key.type = BTRFS_EXTENT_REF_KEY;
3172 key.offset = 0;
3173
3174 while(1) {
3175 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3176
Chris Masonedbd8d42007-12-21 16:27:24 -05003177 if (ret < 0)
3178 goto out;
3179
3180 ret = 0;
3181 leaf = path->nodes[0];
3182 nritems = btrfs_header_nritems(leaf);
Chris Masona061fc82008-05-07 11:43:44 -04003183 if (path->slots[0] == nritems) {
3184 ret = btrfs_next_leaf(extent_root, path);
3185 if (ret > 0) {
3186 ret = 0;
3187 goto out;
3188 }
3189 if (ret < 0)
3190 goto out;
Chris Masonbf4ef672008-05-08 13:26:18 -04003191 leaf = path->nodes[0];
Chris Masona061fc82008-05-07 11:43:44 -04003192 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003193
3194 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masona061fc82008-05-07 11:43:44 -04003195 if (found_key.objectid != extent_key->objectid) {
Chris Masonedbd8d42007-12-21 16:27:24 -05003196 break;
Chris Masona061fc82008-05-07 11:43:44 -04003197 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003198
Chris Masona061fc82008-05-07 11:43:44 -04003199 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
Chris Masonedbd8d42007-12-21 16:27:24 -05003200 break;
Chris Masona061fc82008-05-07 11:43:44 -04003201 }
Chris Masonedbd8d42007-12-21 16:27:24 -05003202
3203 key.offset = found_key.offset + 1;
3204 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3205
Chris Mason0ef3e662008-05-24 14:04:53 -04003206 ret = relocate_one_reference(extent_root, path, extent_key,
3207 &last_file_objectid,
3208 &last_file_offset,
3209 &last_file_root, last_extent);
Chris Masonedbd8d42007-12-21 16:27:24 -05003210 if (ret)
3211 goto out;
Chris Mason0ef3e662008-05-24 14:04:53 -04003212 last_extent = extent_key->objectid;
Chris Masonedbd8d42007-12-21 16:27:24 -05003213 }
3214 ret = 0;
3215out:
3216 btrfs_release_path(extent_root, path);
3217 return ret;
3218}
3219
Chris Masonec44a352008-04-28 15:29:52 -04003220static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
3221{
3222 u64 num_devices;
3223 u64 stripped = BTRFS_BLOCK_GROUP_RAID0 |
3224 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
3225
Chris Masona061fc82008-05-07 11:43:44 -04003226 num_devices = root->fs_info->fs_devices->num_devices;
Chris Masonec44a352008-04-28 15:29:52 -04003227 if (num_devices == 1) {
3228 stripped |= BTRFS_BLOCK_GROUP_DUP;
3229 stripped = flags & ~stripped;
3230
3231 /* turn raid0 into single device chunks */
3232 if (flags & BTRFS_BLOCK_GROUP_RAID0)
3233 return stripped;
3234
3235 /* turn mirroring into duplication */
3236 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
3237 BTRFS_BLOCK_GROUP_RAID10))
3238 return stripped | BTRFS_BLOCK_GROUP_DUP;
3239 return flags;
3240 } else {
3241 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04003242 if (flags & stripped)
3243 return flags;
3244
3245 stripped |= BTRFS_BLOCK_GROUP_DUP;
3246 stripped = flags & ~stripped;
3247
3248 /* switch duplicated blocks with raid1 */
3249 if (flags & BTRFS_BLOCK_GROUP_DUP)
3250 return stripped | BTRFS_BLOCK_GROUP_RAID1;
3251
3252 /* turn single device chunks into raid0 */
3253 return stripped | BTRFS_BLOCK_GROUP_RAID0;
3254 }
3255 return flags;
3256}
3257
Chris Mason0ef3e662008-05-24 14:04:53 -04003258int __alloc_chunk_for_shrink(struct btrfs_root *root,
3259 struct btrfs_block_group_cache *shrink_block_group,
3260 int force)
3261{
3262 struct btrfs_trans_handle *trans;
3263 u64 new_alloc_flags;
3264 u64 calc;
3265
Chris Masonc286ac42008-07-22 23:06:41 -04003266 spin_lock(&shrink_block_group->lock);
Chris Mason0ef3e662008-05-24 14:04:53 -04003267 if (btrfs_block_group_used(&shrink_block_group->item) > 0) {
Chris Masonc286ac42008-07-22 23:06:41 -04003268 spin_unlock(&shrink_block_group->lock);
Chris Mason7d9eb122008-07-08 14:19:17 -04003269 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonc286ac42008-07-22 23:06:41 -04003270
Chris Mason0ef3e662008-05-24 14:04:53 -04003271 trans = btrfs_start_transaction(root, 1);
Chris Mason7d9eb122008-07-08 14:19:17 -04003272 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masonc286ac42008-07-22 23:06:41 -04003273 spin_lock(&shrink_block_group->lock);
Chris Mason7d9eb122008-07-08 14:19:17 -04003274
Chris Mason0ef3e662008-05-24 14:04:53 -04003275 new_alloc_flags = update_block_group_flags(root,
3276 shrink_block_group->flags);
3277 if (new_alloc_flags != shrink_block_group->flags) {
3278 calc =
3279 btrfs_block_group_used(&shrink_block_group->item);
3280 } else {
3281 calc = shrink_block_group->key.offset;
3282 }
Chris Masonc286ac42008-07-22 23:06:41 -04003283 spin_unlock(&shrink_block_group->lock);
3284
Chris Mason0ef3e662008-05-24 14:04:53 -04003285 do_chunk_alloc(trans, root->fs_info->extent_root,
3286 calc + 2 * 1024 * 1024, new_alloc_flags, force);
Chris Mason7d9eb122008-07-08 14:19:17 -04003287
3288 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason0ef3e662008-05-24 14:04:53 -04003289 btrfs_end_transaction(trans, root);
Chris Mason7d9eb122008-07-08 14:19:17 -04003290 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masonc286ac42008-07-22 23:06:41 -04003291 } else
3292 spin_unlock(&shrink_block_group->lock);
Chris Mason0ef3e662008-05-24 14:04:53 -04003293 return 0;
3294}
3295
Chris Mason8f18cf12008-04-25 16:53:30 -04003296int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 shrink_start)
Chris Masonedbd8d42007-12-21 16:27:24 -05003297{
3298 struct btrfs_trans_handle *trans;
3299 struct btrfs_root *tree_root = root->fs_info->tree_root;
3300 struct btrfs_path *path;
3301 u64 cur_byte;
3302 u64 total_found;
Chris Mason8f18cf12008-04-25 16:53:30 -04003303 u64 shrink_last_byte;
3304 struct btrfs_block_group_cache *shrink_block_group;
Chris Masonedbd8d42007-12-21 16:27:24 -05003305 struct btrfs_fs_info *info = root->fs_info;
Chris Masonedbd8d42007-12-21 16:27:24 -05003306 struct btrfs_key key;
Yan73e48b22008-01-03 14:14:39 -05003307 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05003308 struct extent_buffer *leaf;
3309 u32 nritems;
3310 int ret;
Chris Masona061fc82008-05-07 11:43:44 -04003311 int progress;
Chris Masonedbd8d42007-12-21 16:27:24 -05003312
Chris Mason925baed2008-06-25 16:01:30 -04003313 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04003314 shrink_block_group = btrfs_lookup_block_group(root->fs_info,
3315 shrink_start);
3316 BUG_ON(!shrink_block_group);
3317
Chris Mason0ef3e662008-05-24 14:04:53 -04003318 shrink_last_byte = shrink_block_group->key.objectid +
3319 shrink_block_group->key.offset;
Chris Mason8f18cf12008-04-25 16:53:30 -04003320
3321 shrink_block_group->space_info->total_bytes -=
3322 shrink_block_group->key.offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05003323 path = btrfs_alloc_path();
3324 root = root->fs_info->extent_root;
Chris Mason8f662a72008-01-02 10:01:11 -05003325 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05003326
Chris Mason323da792008-05-09 11:46:48 -04003327 printk("btrfs relocating block group %llu flags %llu\n",
3328 (unsigned long long)shrink_start,
3329 (unsigned long long)shrink_block_group->flags);
3330
Chris Mason0ef3e662008-05-24 14:04:53 -04003331 __alloc_chunk_for_shrink(root, shrink_block_group, 1);
Chris Mason323da792008-05-09 11:46:48 -04003332
Chris Mason0ef3e662008-05-24 14:04:53 -04003333again:
3334
Chris Mason8f18cf12008-04-25 16:53:30 -04003335 shrink_block_group->ro = 1;
3336
Chris Masonedbd8d42007-12-21 16:27:24 -05003337 total_found = 0;
Chris Masona061fc82008-05-07 11:43:44 -04003338 progress = 0;
Chris Mason8f18cf12008-04-25 16:53:30 -04003339 key.objectid = shrink_start;
Chris Masonedbd8d42007-12-21 16:27:24 -05003340 key.offset = 0;
3341 key.type = 0;
Yan73e48b22008-01-03 14:14:39 -05003342 cur_byte = key.objectid;
Chris Mason4313b392008-01-03 09:08:48 -05003343
Chris Masonea8c2812008-08-04 23:17:27 -04003344 mutex_unlock(&root->fs_info->alloc_mutex);
3345
3346 btrfs_start_delalloc_inodes(root);
Yan Zheng7ea394f2008-08-05 13:05:02 -04003347 btrfs_wait_ordered_extents(tree_root, 0);
Chris Masonea8c2812008-08-04 23:17:27 -04003348
3349 mutex_lock(&root->fs_info->alloc_mutex);
3350
Yan73e48b22008-01-03 14:14:39 -05003351 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3352 if (ret < 0)
3353 goto out;
3354
Chris Mason0b86a832008-03-24 15:01:56 -04003355 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
Yan73e48b22008-01-03 14:14:39 -05003356 if (ret < 0)
3357 goto out;
Chris Mason8f18cf12008-04-25 16:53:30 -04003358
Yan73e48b22008-01-03 14:14:39 -05003359 if (ret == 0) {
3360 leaf = path->nodes[0];
3361 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04003362 if (found_key.objectid + found_key.offset > shrink_start &&
3363 found_key.objectid < shrink_last_byte) {
Yan73e48b22008-01-03 14:14:39 -05003364 cur_byte = found_key.objectid;
3365 key.objectid = cur_byte;
3366 }
3367 }
3368 btrfs_release_path(root, path);
3369
3370 while(1) {
Chris Masonedbd8d42007-12-21 16:27:24 -05003371 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3372 if (ret < 0)
3373 goto out;
Yan73e48b22008-01-03 14:14:39 -05003374
Chris Mason7d9eb122008-07-08 14:19:17 -04003375next:
Chris Masonedbd8d42007-12-21 16:27:24 -05003376 leaf = path->nodes[0];
Chris Masonedbd8d42007-12-21 16:27:24 -05003377 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05003378 if (path->slots[0] >= nritems) {
3379 ret = btrfs_next_leaf(root, path);
3380 if (ret < 0)
3381 goto out;
3382 if (ret == 1) {
3383 ret = 0;
3384 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05003385 }
Yan73e48b22008-01-03 14:14:39 -05003386 leaf = path->nodes[0];
3387 nritems = btrfs_header_nritems(leaf);
3388 }
3389
3390 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason725c8462008-01-04 16:47:16 -05003391
Chris Mason8f18cf12008-04-25 16:53:30 -04003392 if (found_key.objectid >= shrink_last_byte)
3393 break;
3394
Chris Mason725c8462008-01-04 16:47:16 -05003395 if (progress && need_resched()) {
3396 memcpy(&key, &found_key, sizeof(key));
Chris Mason725c8462008-01-04 16:47:16 -05003397 cond_resched();
Chris Mason725c8462008-01-04 16:47:16 -05003398 btrfs_release_path(root, path);
3399 btrfs_search_slot(NULL, root, &key, path, 0, 0);
3400 progress = 0;
3401 goto next;
3402 }
3403 progress = 1;
3404
Yan73e48b22008-01-03 14:14:39 -05003405 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_ITEM_KEY ||
3406 found_key.objectid + found_key.offset <= cur_byte) {
Chris Mason0ef3e662008-05-24 14:04:53 -04003407 memcpy(&key, &found_key, sizeof(key));
3408 key.offset++;
Yan73e48b22008-01-03 14:14:39 -05003409 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05003410 goto next;
3411 }
Yan73e48b22008-01-03 14:14:39 -05003412
Chris Masonedbd8d42007-12-21 16:27:24 -05003413 total_found++;
3414 cur_byte = found_key.objectid + found_key.offset;
3415 key.objectid = cur_byte;
3416 btrfs_release_path(root, path);
3417 ret = relocate_one_extent(root, path, &found_key);
Chris Mason0ef3e662008-05-24 14:04:53 -04003418 __alloc_chunk_for_shrink(root, shrink_block_group, 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05003419 }
3420
3421 btrfs_release_path(root, path);
3422
3423 if (total_found > 0) {
Chris Mason323da792008-05-09 11:46:48 -04003424 printk("btrfs relocate found %llu last extent was %llu\n",
3425 (unsigned long long)total_found,
3426 (unsigned long long)found_key.objectid);
Chris Mason7d9eb122008-07-08 14:19:17 -04003427 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003428 trans = btrfs_start_transaction(tree_root, 1);
3429 btrfs_commit_transaction(trans, tree_root);
3430
Chris Masonedbd8d42007-12-21 16:27:24 -05003431 btrfs_clean_old_snapshots(tree_root);
Chris Masonedbd8d42007-12-21 16:27:24 -05003432
Chris Masonea8c2812008-08-04 23:17:27 -04003433 btrfs_start_delalloc_inodes(root);
Yan Zheng7ea394f2008-08-05 13:05:02 -04003434 btrfs_wait_ordered_extents(tree_root, 0);
Chris Mason3eaa2882008-07-24 11:57:52 -04003435
Chris Masonedbd8d42007-12-21 16:27:24 -05003436 trans = btrfs_start_transaction(tree_root, 1);
3437 btrfs_commit_transaction(trans, tree_root);
Chris Mason7d9eb122008-07-08 14:19:17 -04003438 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003439 goto again;
3440 }
3441
Chris Mason8f18cf12008-04-25 16:53:30 -04003442 /*
3443 * we've freed all the extents, now remove the block
3444 * group item from the tree
3445 */
Chris Mason7d9eb122008-07-08 14:19:17 -04003446 mutex_unlock(&root->fs_info->alloc_mutex);
3447
Chris Masonedbd8d42007-12-21 16:27:24 -05003448 trans = btrfs_start_transaction(root, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04003449
Chris Mason7d9eb122008-07-08 14:19:17 -04003450 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04003451 memcpy(&key, &shrink_block_group->key, sizeof(key));
Chris Mason4313b392008-01-03 09:08:48 -05003452
Chris Mason8f18cf12008-04-25 16:53:30 -04003453 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3454 if (ret > 0)
3455 ret = -EIO;
Josef Bacik8e8a1e32008-07-24 12:17:14 -04003456 if (ret < 0) {
3457 btrfs_end_transaction(trans, root);
Chris Mason8f18cf12008-04-25 16:53:30 -04003458 goto out;
Josef Bacik8e8a1e32008-07-24 12:17:14 -04003459 }
Yan73e48b22008-01-03 14:14:39 -05003460
Chris Mason0ef3e662008-05-24 14:04:53 -04003461 clear_extent_bits(&info->block_group_cache, key.objectid,
3462 key.objectid + key.offset - 1,
Chris Mason8f18cf12008-04-25 16:53:30 -04003463 (unsigned int)-1, GFP_NOFS);
Yan73e48b22008-01-03 14:14:39 -05003464
Chris Mason0ef3e662008-05-24 14:04:53 -04003465
3466 clear_extent_bits(&info->free_space_cache,
3467 key.objectid, key.objectid + key.offset - 1,
3468 (unsigned int)-1, GFP_NOFS);
3469
Chris Masond7a029a2008-08-04 23:17:26 -04003470 /*
Chris Mason0ef3e662008-05-24 14:04:53 -04003471 memset(shrink_block_group, 0, sizeof(*shrink_block_group));
3472 kfree(shrink_block_group);
Chris Masond7a029a2008-08-04 23:17:26 -04003473 */
Chris Mason0ef3e662008-05-24 14:04:53 -04003474
Chris Mason8f18cf12008-04-25 16:53:30 -04003475 btrfs_del_item(trans, root, path);
Chris Mason7d9eb122008-07-08 14:19:17 -04003476 btrfs_release_path(root, path);
3477 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003478 btrfs_commit_transaction(trans, root);
Chris Mason0ef3e662008-05-24 14:04:53 -04003479
Chris Mason7d9eb122008-07-08 14:19:17 -04003480 mutex_lock(&root->fs_info->alloc_mutex);
3481
Chris Mason0ef3e662008-05-24 14:04:53 -04003482 /* the code to unpin extents might set a few bits in the free
3483 * space cache for this range again
3484 */
3485 clear_extent_bits(&info->free_space_cache,
3486 key.objectid, key.objectid + key.offset - 1,
3487 (unsigned int)-1, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05003488out:
3489 btrfs_free_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04003490 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003491 return ret;
3492}
3493
Chris Mason0b86a832008-03-24 15:01:56 -04003494int find_first_block_group(struct btrfs_root *root, struct btrfs_path *path,
3495 struct btrfs_key *key)
3496{
Chris Mason925baed2008-06-25 16:01:30 -04003497 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003498 struct btrfs_key found_key;
3499 struct extent_buffer *leaf;
3500 int slot;
3501
3502 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
3503 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04003504 goto out;
3505
Chris Mason0b86a832008-03-24 15:01:56 -04003506 while(1) {
3507 slot = path->slots[0];
3508 leaf = path->nodes[0];
3509 if (slot >= btrfs_header_nritems(leaf)) {
3510 ret = btrfs_next_leaf(root, path);
3511 if (ret == 0)
3512 continue;
3513 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04003514 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04003515 break;
3516 }
3517 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3518
3519 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04003520 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
3521 ret = 0;
3522 goto out;
3523 }
Chris Mason0b86a832008-03-24 15:01:56 -04003524 path->slots[0]++;
3525 }
3526 ret = -ENOENT;
Chris Mason925baed2008-06-25 16:01:30 -04003527out:
Chris Mason0b86a832008-03-24 15:01:56 -04003528 return ret;
3529}
3530
Chris Mason9078a3e2007-04-26 16:46:15 -04003531int btrfs_read_block_groups(struct btrfs_root *root)
3532{
3533 struct btrfs_path *path;
3534 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04003535 int bit;
Chris Mason9078a3e2007-04-26 16:46:15 -04003536 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04003537 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04003538 struct btrfs_space_info *space_info;
Chris Masond1310b22008-01-24 16:13:08 -05003539 struct extent_io_tree *block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04003540 struct btrfs_key key;
3541 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04003542 struct extent_buffer *leaf;
Chris Mason96b51792007-10-15 16:15:19 -04003543
3544 block_group_cache = &info->block_group_cache;
Chris Masonbe744172007-05-06 10:15:01 -04003545 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04003546 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003547 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003548 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04003549 path = btrfs_alloc_path();
3550 if (!path)
3551 return -ENOMEM;
3552
Chris Mason925baed2008-06-25 16:01:30 -04003553 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason9078a3e2007-04-26 16:46:15 -04003554 while(1) {
Chris Mason0b86a832008-03-24 15:01:56 -04003555 ret = find_first_block_group(root, path, &key);
3556 if (ret > 0) {
3557 ret = 0;
3558 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04003559 }
Chris Mason0b86a832008-03-24 15:01:56 -04003560 if (ret != 0)
3561 goto error;
3562
Chris Mason5f39d392007-10-15 16:14:19 -04003563 leaf = path->nodes[0];
3564 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04003565 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04003566 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04003567 ret = -ENOMEM;
Chris Mason9078a3e2007-04-26 16:46:15 -04003568 break;
3569 }
Chris Mason3e1ad542007-05-07 20:03:49 -04003570
Chris Masonc286ac42008-07-22 23:06:41 -04003571 spin_lock_init(&cache->lock);
Chris Mason5f39d392007-10-15 16:14:19 -04003572 read_extent_buffer(leaf, &cache->item,
3573 btrfs_item_ptr_offset(leaf, path->slots[0]),
3574 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04003575 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason0b86a832008-03-24 15:01:56 -04003576
Chris Mason9078a3e2007-04-26 16:46:15 -04003577 key.objectid = found_key.objectid + found_key.offset;
3578 btrfs_release_path(root, path);
Chris Mason0b86a832008-03-24 15:01:56 -04003579 cache->flags = btrfs_block_group_flags(&cache->item);
3580 bit = 0;
3581 if (cache->flags & BTRFS_BLOCK_GROUP_DATA) {
Chris Mason96b51792007-10-15 16:15:19 -04003582 bit = BLOCK_GROUP_DATA;
Chris Mason0b86a832008-03-24 15:01:56 -04003583 } else if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
3584 bit = BLOCK_GROUP_SYSTEM;
3585 } else if (cache->flags & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason96b51792007-10-15 16:15:19 -04003586 bit = BLOCK_GROUP_METADATA;
Chris Mason31f3c992007-04-30 15:25:45 -04003587 }
Chris Mason8790d502008-04-03 16:29:03 -04003588 set_avail_alloc_bits(info, cache->flags);
Chris Mason96b51792007-10-15 16:15:19 -04003589
Chris Mason6324fbf2008-03-24 15:01:59 -04003590 ret = update_space_info(info, cache->flags, found_key.offset,
3591 btrfs_block_group_used(&cache->item),
3592 &space_info);
3593 BUG_ON(ret);
3594 cache->space_info = space_info;
3595
Chris Mason96b51792007-10-15 16:15:19 -04003596 /* use EXTENT_LOCKED to prevent merging */
3597 set_extent_bits(block_group_cache, found_key.objectid,
3598 found_key.objectid + found_key.offset - 1,
Chris Masonc286ac42008-07-22 23:06:41 -04003599 EXTENT_LOCKED, GFP_NOFS);
Chris Mason96b51792007-10-15 16:15:19 -04003600 set_state_private(block_group_cache, found_key.objectid,
Jens Axboeae2f5412007-10-19 09:22:59 -04003601 (unsigned long)cache);
Chris Masonc286ac42008-07-22 23:06:41 -04003602 set_extent_bits(block_group_cache, found_key.objectid,
3603 found_key.objectid + found_key.offset - 1,
3604 bit | EXTENT_LOCKED, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04003605 if (key.objectid >=
Chris Masondb945352007-10-15 16:15:53 -04003606 btrfs_super_total_bytes(&info->super_copy))
Chris Mason9078a3e2007-04-26 16:46:15 -04003607 break;
3608 }
Chris Mason0b86a832008-03-24 15:01:56 -04003609 ret = 0;
3610error:
Chris Mason9078a3e2007-04-26 16:46:15 -04003611 btrfs_free_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04003612 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04003613 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003614}
Chris Mason6324fbf2008-03-24 15:01:59 -04003615
3616int btrfs_make_block_group(struct btrfs_trans_handle *trans,
3617 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04003618 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04003619 u64 size)
3620{
3621 int ret;
3622 int bit = 0;
3623 struct btrfs_root *extent_root;
3624 struct btrfs_block_group_cache *cache;
3625 struct extent_io_tree *block_group_cache;
3626
Chris Mason7d9eb122008-07-08 14:19:17 -04003627 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Mason6324fbf2008-03-24 15:01:59 -04003628 extent_root = root->fs_info->extent_root;
3629 block_group_cache = &root->fs_info->block_group_cache;
3630
Chris Mason8f18cf12008-04-25 16:53:30 -04003631 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason6324fbf2008-03-24 15:01:59 -04003632 BUG_ON(!cache);
Chris Masone17cade2008-04-15 15:41:47 -04003633 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04003634 cache->key.offset = size;
Chris Masonc286ac42008-07-22 23:06:41 -04003635 spin_lock_init(&cache->lock);
Chris Mason6324fbf2008-03-24 15:01:59 -04003636 btrfs_set_key_type(&cache->key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason0ef3e662008-05-24 14:04:53 -04003637
Chris Mason6324fbf2008-03-24 15:01:59 -04003638 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04003639 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
3640 cache->flags = type;
3641 btrfs_set_block_group_flags(&cache->item, type);
3642
3643 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
3644 &cache->space_info);
3645 BUG_ON(ret);
3646
Chris Masond18a2c42008-04-04 15:40:00 -04003647 bit = block_group_state_bits(type);
Chris Masone17cade2008-04-15 15:41:47 -04003648 set_extent_bits(block_group_cache, chunk_offset,
3649 chunk_offset + size - 1,
Chris Masonc286ac42008-07-22 23:06:41 -04003650 EXTENT_LOCKED, GFP_NOFS);
Chris Masone17cade2008-04-15 15:41:47 -04003651 set_state_private(block_group_cache, chunk_offset,
3652 (unsigned long)cache);
Chris Masonc286ac42008-07-22 23:06:41 -04003653 set_extent_bits(block_group_cache, chunk_offset,
3654 chunk_offset + size - 1,
3655 bit | EXTENT_LOCKED, GFP_NOFS);
3656
Chris Mason6324fbf2008-03-24 15:01:59 -04003657 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
3658 sizeof(cache->item));
3659 BUG_ON(ret);
3660
3661 finish_current_insert(trans, extent_root);
3662 ret = del_pending_extents(trans, extent_root);
3663 BUG_ON(ret);
Chris Masond18a2c42008-04-04 15:40:00 -04003664 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04003665
Chris Mason6324fbf2008-03-24 15:01:59 -04003666 return 0;
3667}