blob: 72fa28236e5d4a80b3e77dd2616a7fde64b17e30 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
Zach Brownec6b9102007-07-11 10:00:37 -040018#include <linux/sched.h>
Chris Masonedbd8d42007-12-21 16:27:24 -050019#include <linux/pagemap.h>
Chris Masonec44a352008-04-28 15:29:52 -040020#include <linux/writeback.h>
Chris Mason74493f72007-12-11 09:25:06 -050021#include "hash.h"
Miguela5eb62e2008-04-11 15:45:51 -040022#include "crc32c.h"
Chris Masonfec577f2007-02-26 10:40:21 -050023#include "ctree.h"
24#include "disk-io.h"
25#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040026#include "transaction.h"
Chris Mason0b86a832008-03-24 15:01:56 -040027#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040028#include "locking.h"
Chris Masonfec577f2007-02-26 10:40:21 -050029
Chris Mason0b86a832008-03-24 15:01:56 -040030#define BLOCK_GROUP_DATA EXTENT_WRITEBACK
Chris Mason96b51792007-10-15 16:15:19 -040031#define BLOCK_GROUP_METADATA EXTENT_UPTODATE
Chris Mason0b86a832008-03-24 15:01:56 -040032#define BLOCK_GROUP_SYSTEM EXTENT_NEW
33
Chris Mason96b51792007-10-15 16:15:19 -040034#define BLOCK_GROUP_DIRTY EXTENT_DIRTY
35
Chris Masone089f052007-03-16 16:20:31 -040036static int finish_current_insert(struct btrfs_trans_handle *trans, struct
37 btrfs_root *extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -040038static int del_pending_extents(struct btrfs_trans_handle *trans, struct
39 btrfs_root *extent_root);
Chris Mason925baed2008-06-25 16:01:30 -040040static struct btrfs_block_group_cache *
41__btrfs_find_block_group(struct btrfs_root *root,
42 struct btrfs_block_group_cache *hint,
43 u64 search_start, int data, int owner);
Yand548ee52008-01-03 13:56:30 -050044
Chris Mason925baed2008-06-25 16:01:30 -040045void maybe_lock_mutex(struct btrfs_root *root)
46{
47 if (root != root->fs_info->extent_root &&
48 root != root->fs_info->chunk_root &&
49 root != root->fs_info->dev_root) {
50 mutex_lock(&root->fs_info->alloc_mutex);
51 }
52}
53
54void maybe_unlock_mutex(struct btrfs_root *root)
55{
56 if (root != root->fs_info->extent_root &&
57 root != root->fs_info->chunk_root &&
58 root != root->fs_info->dev_root) {
59 mutex_unlock(&root->fs_info->alloc_mutex);
60 }
61}
Chris Masonfec577f2007-02-26 10:40:21 -050062
Chris Masone37c9e62007-05-09 20:13:14 -040063static int cache_block_group(struct btrfs_root *root,
64 struct btrfs_block_group_cache *block_group)
65{
66 struct btrfs_path *path;
67 int ret;
68 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -040069 struct extent_buffer *leaf;
Chris Masond1310b22008-01-24 16:13:08 -050070 struct extent_io_tree *free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040071 int slot;
Chris Masone37c9e62007-05-09 20:13:14 -040072 u64 last = 0;
73 u64 hole_size;
Yan7d7d6062007-09-14 16:15:28 -040074 u64 first_free;
Chris Masone37c9e62007-05-09 20:13:14 -040075 int found = 0;
76
Chris Mason00f5c792007-11-30 10:09:33 -050077 if (!block_group)
78 return 0;
79
Chris Masone37c9e62007-05-09 20:13:14 -040080 root = root->fs_info->extent_root;
Chris Masonf510cfe2007-10-15 16:14:48 -040081 free_space_cache = &root->fs_info->free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040082
83 if (block_group->cached)
84 return 0;
Chris Masonf510cfe2007-10-15 16:14:48 -040085
Chris Masone37c9e62007-05-09 20:13:14 -040086 path = btrfs_alloc_path();
87 if (!path)
88 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -040089
Chris Mason2cc58cf2007-08-27 16:49:44 -040090 path->reada = 2;
Chris Mason5cd57b22008-06-25 16:01:30 -040091 /*
92 * we get into deadlocks with paths held by callers of this function.
93 * since the alloc_mutex is protecting things right now, just
94 * skip the locking here
95 */
96 path->skip_locking = 1;
Yan7d7d6062007-09-14 16:15:28 -040097 first_free = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040098 key.objectid = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040099 key.offset = 0;
100 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
101 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
102 if (ret < 0)
103 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -0400104 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
Yand548ee52008-01-03 13:56:30 -0500105 if (ret < 0)
106 return ret;
107 if (ret == 0) {
108 leaf = path->nodes[0];
109 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
110 if (key.objectid + key.offset > first_free)
111 first_free = key.objectid + key.offset;
112 }
Chris Masone37c9e62007-05-09 20:13:14 -0400113 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400114 leaf = path->nodes[0];
Chris Masone37c9e62007-05-09 20:13:14 -0400115 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -0400116 if (slot >= btrfs_header_nritems(leaf)) {
Chris Masone37c9e62007-05-09 20:13:14 -0400117 ret = btrfs_next_leaf(root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400118 if (ret < 0)
119 goto err;
Chris Masonde428b62007-05-18 13:28:27 -0400120 if (ret == 0) {
Chris Masone37c9e62007-05-09 20:13:14 -0400121 continue;
Chris Masonde428b62007-05-18 13:28:27 -0400122 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400123 break;
124 }
125 }
Chris Mason5f39d392007-10-15 16:14:19 -0400126 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan7d7d6062007-09-14 16:15:28 -0400127 if (key.objectid < block_group->key.objectid) {
Yan7d7d6062007-09-14 16:15:28 -0400128 goto next;
129 }
Chris Masone37c9e62007-05-09 20:13:14 -0400130 if (key.objectid >= block_group->key.objectid +
131 block_group->key.offset) {
Yan7d7d6062007-09-14 16:15:28 -0400132 break;
133 }
134
135 if (btrfs_key_type(&key) == BTRFS_EXTENT_ITEM_KEY) {
136 if (!found) {
137 last = first_free;
138 found = 1;
Chris Masone37c9e62007-05-09 20:13:14 -0400139 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400140 if (key.objectid > last) {
141 hole_size = key.objectid - last;
142 set_extent_dirty(free_space_cache, last,
143 last + hole_size - 1,
144 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -0400145 }
Yan7d7d6062007-09-14 16:15:28 -0400146 last = key.objectid + key.offset;
Chris Masone37c9e62007-05-09 20:13:14 -0400147 }
Yan7d7d6062007-09-14 16:15:28 -0400148next:
Chris Masone37c9e62007-05-09 20:13:14 -0400149 path->slots[0]++;
150 }
151
Yan7d7d6062007-09-14 16:15:28 -0400152 if (!found)
153 last = first_free;
154 if (block_group->key.objectid +
155 block_group->key.offset > last) {
156 hole_size = block_group->key.objectid +
157 block_group->key.offset - last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400158 set_extent_dirty(free_space_cache, last,
159 last + hole_size - 1, GFP_NOFS);
Yan7d7d6062007-09-14 16:15:28 -0400160 }
Chris Masone37c9e62007-05-09 20:13:14 -0400161 block_group->cached = 1;
Chris Mason54aa1f42007-06-22 14:16:25 -0400162err:
Chris Masone37c9e62007-05-09 20:13:14 -0400163 btrfs_free_path(path);
164 return 0;
165}
166
Chris Mason0ef3e662008-05-24 14:04:53 -0400167struct btrfs_block_group_cache *btrfs_lookup_first_block_group(struct
168 btrfs_fs_info *info,
169 u64 bytenr)
170{
171 struct extent_io_tree *block_group_cache;
172 struct btrfs_block_group_cache *block_group = NULL;
173 u64 ptr;
174 u64 start;
175 u64 end;
176 int ret;
177
178 bytenr = max_t(u64, bytenr,
179 BTRFS_SUPER_INFO_OFFSET + BTRFS_SUPER_INFO_SIZE);
180 block_group_cache = &info->block_group_cache;
181 ret = find_first_extent_bit(block_group_cache,
182 bytenr, &start, &end,
183 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA |
184 BLOCK_GROUP_SYSTEM);
185 if (ret) {
186 return NULL;
187 }
188 ret = get_state_private(block_group_cache, start, &ptr);
189 if (ret)
190 return NULL;
191
192 block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
193 return block_group;
194}
195
Chris Mason5276aed2007-06-11 21:33:38 -0400196struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
197 btrfs_fs_info *info,
Chris Masondb945352007-10-15 16:15:53 -0400198 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400199{
Chris Masond1310b22008-01-24 16:13:08 -0500200 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -0400201 struct btrfs_block_group_cache *block_group = NULL;
202 u64 ptr;
203 u64 start;
204 u64 end;
Chris Masonbe744172007-05-06 10:15:01 -0400205 int ret;
206
Chris Masona061fc82008-05-07 11:43:44 -0400207 bytenr = max_t(u64, bytenr,
208 BTRFS_SUPER_INFO_OFFSET + BTRFS_SUPER_INFO_SIZE);
Chris Mason96b51792007-10-15 16:15:19 -0400209 block_group_cache = &info->block_group_cache;
210 ret = find_first_extent_bit(block_group_cache,
Chris Masondb945352007-10-15 16:15:53 -0400211 bytenr, &start, &end,
Chris Mason0b86a832008-03-24 15:01:56 -0400212 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA |
213 BLOCK_GROUP_SYSTEM);
Chris Masonbe744172007-05-06 10:15:01 -0400214 if (ret) {
Chris Mason96b51792007-10-15 16:15:19 -0400215 return NULL;
Chris Masonbe744172007-05-06 10:15:01 -0400216 }
Chris Mason96b51792007-10-15 16:15:19 -0400217 ret = get_state_private(block_group_cache, start, &ptr);
218 if (ret)
219 return NULL;
220
Jens Axboeae2f5412007-10-19 09:22:59 -0400221 block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Yan5cf66422007-11-16 14:57:09 -0500222 if (block_group->key.objectid <= bytenr && bytenr <
Chris Mason96b51792007-10-15 16:15:19 -0400223 block_group->key.objectid + block_group->key.offset)
224 return block_group;
Chris Masonbe744172007-05-06 10:15:01 -0400225 return NULL;
226}
Chris Mason0b86a832008-03-24 15:01:56 -0400227
228static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
229{
Chris Mason593060d2008-03-25 16:50:33 -0400230 return (cache->flags & bits) == bits;
Chris Mason0b86a832008-03-24 15:01:56 -0400231}
232
233static int noinline find_search_start(struct btrfs_root *root,
Chris Mason98ed5172008-01-03 10:01:48 -0500234 struct btrfs_block_group_cache **cache_ret,
Chris Mason0ef3e662008-05-24 14:04:53 -0400235 u64 *start_ret, u64 num, int data)
Chris Masone37c9e62007-05-09 20:13:14 -0400236{
Chris Masone37c9e62007-05-09 20:13:14 -0400237 int ret;
238 struct btrfs_block_group_cache *cache = *cache_ret;
Chris Masond7fc6402008-02-18 12:12:38 -0500239 struct extent_io_tree *free_space_cache;
Chris Mason7d1660d2008-03-24 15:02:03 -0400240 struct extent_state *state;
Chris Masone19caa52007-10-15 16:17:44 -0400241 u64 last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400242 u64 start = 0;
Chris Mason257d0ce2007-11-07 21:08:16 -0500243 u64 cache_miss = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500244 u64 total_fs_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -0400245 u64 search_start = *start_ret;
Chris Masonf84a8b32007-11-06 10:26:29 -0500246 int wrapped = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400247
Chris Mason7d9eb122008-07-08 14:19:17 -0400248 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Masonc31f8832008-01-08 15:46:31 -0500249 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masond7fc6402008-02-18 12:12:38 -0500250 free_space_cache = &root->fs_info->free_space_cache;
251
Chris Mason0ef3e662008-05-24 14:04:53 -0400252 if (!cache)
Chris Mason54aa1f42007-06-22 14:16:25 -0400253 goto out;
Chris Masonf84a8b32007-11-06 10:26:29 -0500254
Chris Mason0ef3e662008-05-24 14:04:53 -0400255again:
256 ret = cache_block_group(root, cache);
257 if (ret) {
258 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -0400259 }
Chris Masone19caa52007-10-15 16:17:44 -0400260
Chris Mason0ef3e662008-05-24 14:04:53 -0400261 last = max(search_start, cache->key.objectid);
262 if (!block_group_bits(cache, data) || cache->ro)
263 goto new_group;
264
Chris Mason7d1660d2008-03-24 15:02:03 -0400265 spin_lock_irq(&free_space_cache->lock);
266 state = find_first_extent_bit_state(free_space_cache, last, EXTENT_DIRTY);
Chris Masone37c9e62007-05-09 20:13:14 -0400267 while(1) {
Chris Mason7d1660d2008-03-24 15:02:03 -0400268 if (!state) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500269 if (!cache_miss)
270 cache_miss = last;
Chris Mason7d1660d2008-03-24 15:02:03 -0400271 spin_unlock_irq(&free_space_cache->lock);
Chris Masone19caa52007-10-15 16:17:44 -0400272 goto new_group;
273 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400274
Chris Mason7d1660d2008-03-24 15:02:03 -0400275 start = max(last, state->start);
276 last = state->end + 1;
Chris Mason257d0ce2007-11-07 21:08:16 -0500277 if (last - start < num) {
Chris Mason7d1660d2008-03-24 15:02:03 -0400278 do {
279 state = extent_state_next(state);
280 } while(state && !(state->state & EXTENT_DIRTY));
Chris Masonf510cfe2007-10-15 16:14:48 -0400281 continue;
Chris Mason257d0ce2007-11-07 21:08:16 -0500282 }
Chris Mason7d1660d2008-03-24 15:02:03 -0400283 spin_unlock_irq(&free_space_cache->lock);
Chris Mason0ef3e662008-05-24 14:04:53 -0400284 if (cache->ro) {
Chris Mason8f18cf12008-04-25 16:53:30 -0400285 goto new_group;
Chris Mason0ef3e662008-05-24 14:04:53 -0400286 }
Chris Mason0b86a832008-03-24 15:01:56 -0400287 if (start + num > cache->key.objectid + cache->key.offset)
Chris Masone37c9e62007-05-09 20:13:14 -0400288 goto new_group;
Chris Mason8790d502008-04-03 16:29:03 -0400289 if (!block_group_bits(cache, data)) {
Chris Mason611f0e02008-04-03 16:29:03 -0400290 printk("block group bits don't match %Lu %d\n", cache->flags, data);
Chris Mason8790d502008-04-03 16:29:03 -0400291 }
Chris Mason0b86a832008-03-24 15:01:56 -0400292 *start_ret = start;
293 return 0;
Chris Mason8790d502008-04-03 16:29:03 -0400294 }
295out:
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500296 cache = btrfs_lookup_block_group(root->fs_info, search_start);
297 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -0400298 printk("Unable to find block group for %Lu\n", search_start);
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500299 WARN_ON(1);
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500300 }
Chris Mason0b86a832008-03-24 15:01:56 -0400301 return -ENOSPC;
Chris Masone37c9e62007-05-09 20:13:14 -0400302
303new_group:
Chris Masone19caa52007-10-15 16:17:44 -0400304 last = cache->key.objectid + cache->key.offset;
Chris Masonf84a8b32007-11-06 10:26:29 -0500305wrapped:
Chris Mason0ef3e662008-05-24 14:04:53 -0400306 cache = btrfs_lookup_first_block_group(root->fs_info, last);
Chris Masonc31f8832008-01-08 15:46:31 -0500307 if (!cache || cache->key.objectid >= total_fs_bytes) {
Chris Mason0e4de582007-11-26 10:55:49 -0500308no_cache:
Chris Masonf84a8b32007-11-06 10:26:29 -0500309 if (!wrapped) {
310 wrapped = 1;
311 last = search_start;
Chris Masonf84a8b32007-11-06 10:26:29 -0500312 goto wrapped;
313 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500314 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -0400315 }
Chris Mason257d0ce2007-11-07 21:08:16 -0500316 if (cache_miss && !cache->cached) {
317 cache_block_group(root, cache);
318 last = cache_miss;
Chris Mason0ef3e662008-05-24 14:04:53 -0400319 cache = btrfs_lookup_first_block_group(root->fs_info, last);
Chris Mason257d0ce2007-11-07 21:08:16 -0500320 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400321 cache_miss = 0;
Chris Mason925baed2008-06-25 16:01:30 -0400322 cache = __btrfs_find_block_group(root, cache, last, data, 0);
Chris Mason0e4de582007-11-26 10:55:49 -0500323 if (!cache)
324 goto no_cache;
Chris Masone37c9e62007-05-09 20:13:14 -0400325 *cache_ret = cache;
326 goto again;
327}
328
Chris Mason84f54cf2007-06-12 07:43:08 -0400329static u64 div_factor(u64 num, int factor)
330{
Chris Mason257d0ce2007-11-07 21:08:16 -0500331 if (factor == 10)
332 return num;
Chris Mason84f54cf2007-06-12 07:43:08 -0400333 num *= factor;
334 do_div(num, 10);
335 return num;
336}
337
Chris Mason6324fbf2008-03-24 15:01:59 -0400338static int block_group_state_bits(u64 flags)
339{
340 int bits = 0;
341 if (flags & BTRFS_BLOCK_GROUP_DATA)
342 bits |= BLOCK_GROUP_DATA;
343 if (flags & BTRFS_BLOCK_GROUP_METADATA)
344 bits |= BLOCK_GROUP_METADATA;
345 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
346 bits |= BLOCK_GROUP_SYSTEM;
347 return bits;
348}
349
Chris Mason925baed2008-06-25 16:01:30 -0400350static struct btrfs_block_group_cache *
351__btrfs_find_block_group(struct btrfs_root *root,
352 struct btrfs_block_group_cache *hint,
353 u64 search_start, int data, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400354{
Chris Mason96b51792007-10-15 16:15:19 -0400355 struct btrfs_block_group_cache *cache;
Chris Masond1310b22008-01-24 16:13:08 -0500356 struct extent_io_tree *block_group_cache;
Chris Mason31f3c992007-04-30 15:25:45 -0400357 struct btrfs_block_group_cache *found_group = NULL;
Chris Masoncd1bc462007-04-27 10:08:34 -0400358 struct btrfs_fs_info *info = root->fs_info;
359 u64 used;
Chris Mason31f3c992007-04-30 15:25:45 -0400360 u64 last = 0;
Chris Mason96b51792007-10-15 16:15:19 -0400361 u64 start;
362 u64 end;
363 u64 free_check;
364 u64 ptr;
365 int bit;
Chris Masoncd1bc462007-04-27 10:08:34 -0400366 int ret;
Chris Mason31f3c992007-04-30 15:25:45 -0400367 int full_search = 0;
Chris Masonbce4eae2008-04-24 14:42:46 -0400368 int factor = 10;
Chris Mason0ef3e662008-05-24 14:04:53 -0400369 int wrapped = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400370
Chris Mason96b51792007-10-15 16:15:19 -0400371 block_group_cache = &info->block_group_cache;
372
Chris Masona236aed2008-04-29 09:38:00 -0400373 if (data & BTRFS_BLOCK_GROUP_METADATA)
374 factor = 9;
Chris Masonbe744172007-05-06 10:15:01 -0400375
Chris Mason6324fbf2008-03-24 15:01:59 -0400376 bit = block_group_state_bits(data);
Chris Masonbe744172007-05-06 10:15:01 -0400377
Chris Mason0ef3e662008-05-24 14:04:53 -0400378 if (search_start) {
Chris Masonbe744172007-05-06 10:15:01 -0400379 struct btrfs_block_group_cache *shint;
Chris Mason0ef3e662008-05-24 14:04:53 -0400380 shint = btrfs_lookup_first_block_group(info, search_start);
Chris Mason8f18cf12008-04-25 16:53:30 -0400381 if (shint && block_group_bits(shint, data) && !shint->ro) {
Chris Masonbe744172007-05-06 10:15:01 -0400382 used = btrfs_block_group_used(&shint->item);
Yan324ae4d2007-11-16 14:57:08 -0500383 if (used + shint->pinned <
384 div_factor(shint->key.offset, factor)) {
Chris Masonbe744172007-05-06 10:15:01 -0400385 return shint;
386 }
387 }
388 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400389 if (hint && !hint->ro && block_group_bits(hint, data)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400390 used = btrfs_block_group_used(&hint->item);
Yan324ae4d2007-11-16 14:57:08 -0500391 if (used + hint->pinned <
392 div_factor(hint->key.offset, factor)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400393 return hint;
394 }
Chris Masone19caa52007-10-15 16:17:44 -0400395 last = hint->key.objectid + hint->key.offset;
Chris Mason31f3c992007-04-30 15:25:45 -0400396 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400397 if (hint)
Chris Mason0ef3e662008-05-24 14:04:53 -0400398 last = max(hint->key.objectid, search_start);
Chris Masone37c9e62007-05-09 20:13:14 -0400399 else
Chris Mason0ef3e662008-05-24 14:04:53 -0400400 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400401 }
Chris Mason31f3c992007-04-30 15:25:45 -0400402again:
Chris Masoncd1bc462007-04-27 10:08:34 -0400403 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400404 ret = find_first_extent_bit(block_group_cache, last,
405 &start, &end, bit);
406 if (ret)
Chris Masoncd1bc462007-04-27 10:08:34 -0400407 break;
Chris Mason96b51792007-10-15 16:15:19 -0400408
409 ret = get_state_private(block_group_cache, start, &ptr);
Chris Mason0ef3e662008-05-24 14:04:53 -0400410 if (ret) {
411 last = end + 1;
412 continue;
413 }
Chris Mason96b51792007-10-15 16:15:19 -0400414
Jens Axboeae2f5412007-10-19 09:22:59 -0400415 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400416 last = cache->key.objectid + cache->key.offset;
417 used = btrfs_block_group_used(&cache->item);
418
Chris Mason8f18cf12008-04-25 16:53:30 -0400419 if (!cache->ro && block_group_bits(cache, data)) {
Chris Mason0ef3e662008-05-24 14:04:53 -0400420 free_check = div_factor(cache->key.offset, factor);
Chris Mason8790d502008-04-03 16:29:03 -0400421 if (used + cache->pinned < free_check) {
422 found_group = cache;
423 goto found;
424 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400425 }
Chris Masonde428b62007-05-18 13:28:27 -0400426 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400427 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400428 if (!wrapped) {
429 last = search_start;
430 wrapped = 1;
431 goto again;
432 }
433 if (!full_search && factor < 10) {
Chris Masonbe744172007-05-06 10:15:01 -0400434 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400435 full_search = 1;
Chris Mason0ef3e662008-05-24 14:04:53 -0400436 factor = 10;
Chris Mason31f3c992007-04-30 15:25:45 -0400437 goto again;
438 }
Chris Masonbe744172007-05-06 10:15:01 -0400439found:
Chris Mason31f3c992007-04-30 15:25:45 -0400440 return found_group;
Chris Masoncd1bc462007-04-27 10:08:34 -0400441}
442
Chris Mason925baed2008-06-25 16:01:30 -0400443struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
444 struct btrfs_block_group_cache
445 *hint, u64 search_start,
446 int data, int owner)
447{
448
449 struct btrfs_block_group_cache *ret;
450 mutex_lock(&root->fs_info->alloc_mutex);
451 ret = __btrfs_find_block_group(root, hint, search_start, data, owner);
452 mutex_unlock(&root->fs_info->alloc_mutex);
453 return ret;
454}
Chris Mason7bb86312007-12-11 09:25:06 -0500455static u64 hash_extent_ref(u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500456 u64 owner, u64 owner_offset)
457{
458 u32 high_crc = ~(u32)0;
459 u32 low_crc = ~(u32)0;
460 __le64 lenum;
Chris Mason74493f72007-12-11 09:25:06 -0500461 lenum = cpu_to_le64(root_objectid);
Miguela5eb62e2008-04-11 15:45:51 -0400462 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
Chris Mason7bb86312007-12-11 09:25:06 -0500463 lenum = cpu_to_le64(ref_generation);
Miguela5eb62e2008-04-11 15:45:51 -0400464 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500465 if (owner >= BTRFS_FIRST_FREE_OBJECTID) {
466 lenum = cpu_to_le64(owner);
Miguela5eb62e2008-04-11 15:45:51 -0400467 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500468 lenum = cpu_to_le64(owner_offset);
Miguela5eb62e2008-04-11 15:45:51 -0400469 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500470 }
Chris Mason74493f72007-12-11 09:25:06 -0500471 return ((u64)high_crc << 32) | (u64)low_crc;
472}
473
Chris Mason7bb86312007-12-11 09:25:06 -0500474static int match_extent_ref(struct extent_buffer *leaf,
475 struct btrfs_extent_ref *disk_ref,
476 struct btrfs_extent_ref *cpu_ref)
477{
478 int ret;
479 int len;
480
481 if (cpu_ref->objectid)
482 len = sizeof(*cpu_ref);
483 else
484 len = 2 * sizeof(u64);
485 ret = memcmp_extent_buffer(leaf, cpu_ref, (unsigned long)disk_ref,
486 len);
487 return ret == 0;
488}
489
Chris Mason98ed5172008-01-03 10:01:48 -0500490static int noinline lookup_extent_backref(struct btrfs_trans_handle *trans,
491 struct btrfs_root *root,
492 struct btrfs_path *path, u64 bytenr,
493 u64 root_objectid,
494 u64 ref_generation, u64 owner,
495 u64 owner_offset, int del)
Chris Mason7bb86312007-12-11 09:25:06 -0500496{
497 u64 hash;
498 struct btrfs_key key;
499 struct btrfs_key found_key;
500 struct btrfs_extent_ref ref;
501 struct extent_buffer *leaf;
502 struct btrfs_extent_ref *disk_ref;
503 int ret;
504 int ret2;
505
506 btrfs_set_stack_ref_root(&ref, root_objectid);
507 btrfs_set_stack_ref_generation(&ref, ref_generation);
508 btrfs_set_stack_ref_objectid(&ref, owner);
509 btrfs_set_stack_ref_offset(&ref, owner_offset);
510
511 hash = hash_extent_ref(root_objectid, ref_generation, owner,
512 owner_offset);
513 key.offset = hash;
514 key.objectid = bytenr;
515 key.type = BTRFS_EXTENT_REF_KEY;
516
517 while (1) {
518 ret = btrfs_search_slot(trans, root, &key, path,
519 del ? -1 : 0, del);
520 if (ret < 0)
521 goto out;
522 leaf = path->nodes[0];
523 if (ret != 0) {
524 u32 nritems = btrfs_header_nritems(leaf);
525 if (path->slots[0] >= nritems) {
526 ret2 = btrfs_next_leaf(root, path);
527 if (ret2)
528 goto out;
529 leaf = path->nodes[0];
530 }
531 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
532 if (found_key.objectid != bytenr ||
533 found_key.type != BTRFS_EXTENT_REF_KEY)
534 goto out;
535 key.offset = found_key.offset;
536 if (del) {
537 btrfs_release_path(root, path);
538 continue;
539 }
540 }
541 disk_ref = btrfs_item_ptr(path->nodes[0],
542 path->slots[0],
543 struct btrfs_extent_ref);
544 if (match_extent_ref(path->nodes[0], disk_ref, &ref)) {
545 ret = 0;
546 goto out;
547 }
548 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
549 key.offset = found_key.offset + 1;
550 btrfs_release_path(root, path);
551 }
552out:
553 return ret;
554}
555
Chris Masond8d5f3e2007-12-11 12:42:00 -0500556/*
557 * Back reference rules. Back refs have three main goals:
558 *
559 * 1) differentiate between all holders of references to an extent so that
560 * when a reference is dropped we can make sure it was a valid reference
561 * before freeing the extent.
562 *
563 * 2) Provide enough information to quickly find the holders of an extent
564 * if we notice a given block is corrupted or bad.
565 *
566 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
567 * maintenance. This is actually the same as #2, but with a slightly
568 * different use case.
569 *
570 * File extents can be referenced by:
571 *
572 * - multiple snapshots, subvolumes, or different generations in one subvol
573 * - different files inside a single subvolume (in theory, not implemented yet)
574 * - different offsets inside a file (bookend extents in file.c)
575 *
576 * The extent ref structure has fields for:
577 *
578 * - Objectid of the subvolume root
579 * - Generation number of the tree holding the reference
580 * - objectid of the file holding the reference
581 * - offset in the file corresponding to the key holding the reference
582 *
583 * When a file extent is allocated the fields are filled in:
584 * (root_key.objectid, trans->transid, inode objectid, offset in file)
585 *
586 * When a leaf is cow'd new references are added for every file extent found
587 * in the leaf. It looks the same as the create case, but trans->transid
588 * will be different when the block is cow'd.
589 *
590 * (root_key.objectid, trans->transid, inode objectid, offset in file)
591 *
592 * When a file extent is removed either during snapshot deletion or file
593 * truncation, the corresponding back reference is found
594 * by searching for:
595 *
596 * (btrfs_header_owner(leaf), btrfs_header_generation(leaf),
597 * inode objectid, offset in file)
598 *
599 * Btree extents can be referenced by:
600 *
601 * - Different subvolumes
602 * - Different generations of the same subvolume
603 *
604 * Storing sufficient information for a full reverse mapping of a btree
605 * block would require storing the lowest key of the block in the backref,
606 * and it would require updating that lowest key either before write out or
607 * every time it changed. Instead, the objectid of the lowest key is stored
608 * along with the level of the tree block. This provides a hint
609 * about where in the btree the block can be found. Searches through the
610 * btree only need to look for a pointer to that block, so they stop one
611 * level higher than the level recorded in the backref.
612 *
613 * Some btrees do not do reference counting on their extents. These
614 * include the extent tree and the tree of tree roots. Backrefs for these
615 * trees always have a generation of zero.
616 *
617 * When a tree block is created, back references are inserted:
618 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500619 * (root->root_key.objectid, trans->transid or zero, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500620 *
621 * When a tree block is cow'd in a reference counted root,
622 * new back references are added for all the blocks it points to.
623 * These are of the form (trans->transid will have increased since creation):
624 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500625 * (root->root_key.objectid, trans->transid, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500626 *
627 * Because the lowest_key_objectid and the level are just hints
628 * they are not used when backrefs are deleted. When a backref is deleted:
629 *
630 * if backref was for a tree root:
631 * root_objectid = root->root_key.objectid
632 * else
633 * root_objectid = btrfs_header_owner(parent)
634 *
635 * (root_objectid, btrfs_header_generation(parent) or zero, 0, 0)
636 *
637 * Back Reference Key hashing:
638 *
639 * Back references have four fields, each 64 bits long. Unfortunately,
640 * This is hashed into a single 64 bit number and placed into the key offset.
641 * The key objectid corresponds to the first byte in the extent, and the
642 * key type is set to BTRFS_EXTENT_REF_KEY
643 */
Chris Mason7bb86312007-12-11 09:25:06 -0500644int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
645 struct btrfs_root *root,
646 struct btrfs_path *path, u64 bytenr,
647 u64 root_objectid, u64 ref_generation,
648 u64 owner, u64 owner_offset)
Chris Mason74493f72007-12-11 09:25:06 -0500649{
650 u64 hash;
651 struct btrfs_key key;
652 struct btrfs_extent_ref ref;
Chris Mason7bb86312007-12-11 09:25:06 -0500653 struct btrfs_extent_ref *disk_ref;
Chris Mason74493f72007-12-11 09:25:06 -0500654 int ret;
655
656 btrfs_set_stack_ref_root(&ref, root_objectid);
Chris Mason7bb86312007-12-11 09:25:06 -0500657 btrfs_set_stack_ref_generation(&ref, ref_generation);
Chris Mason74493f72007-12-11 09:25:06 -0500658 btrfs_set_stack_ref_objectid(&ref, owner);
659 btrfs_set_stack_ref_offset(&ref, owner_offset);
660
Chris Mason7bb86312007-12-11 09:25:06 -0500661 hash = hash_extent_ref(root_objectid, ref_generation, owner,
662 owner_offset);
Chris Mason74493f72007-12-11 09:25:06 -0500663 key.offset = hash;
664 key.objectid = bytenr;
665 key.type = BTRFS_EXTENT_REF_KEY;
666
667 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(ref));
668 while (ret == -EEXIST) {
Chris Mason7bb86312007-12-11 09:25:06 -0500669 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
670 struct btrfs_extent_ref);
671 if (match_extent_ref(path->nodes[0], disk_ref, &ref))
672 goto out;
673 key.offset++;
674 btrfs_release_path(root, path);
675 ret = btrfs_insert_empty_item(trans, root, path, &key,
676 sizeof(ref));
Chris Mason74493f72007-12-11 09:25:06 -0500677 }
Chris Mason7bb86312007-12-11 09:25:06 -0500678 if (ret)
679 goto out;
680 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
681 struct btrfs_extent_ref);
682 write_extent_buffer(path->nodes[0], &ref, (unsigned long)disk_ref,
683 sizeof(ref));
684 btrfs_mark_buffer_dirty(path->nodes[0]);
685out:
686 btrfs_release_path(root, path);
687 return ret;
Chris Mason74493f72007-12-11 09:25:06 -0500688}
689
Chris Mason925baed2008-06-25 16:01:30 -0400690static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Chris Masonb18c6682007-04-17 13:26:50 -0400691 struct btrfs_root *root,
Chris Mason74493f72007-12-11 09:25:06 -0500692 u64 bytenr, u64 num_bytes,
Chris Mason7bb86312007-12-11 09:25:06 -0500693 u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500694 u64 owner, u64 owner_offset)
Chris Mason02217ed2007-03-02 16:08:05 -0500695{
Chris Mason5caf2a02007-04-02 11:20:42 -0400696 struct btrfs_path *path;
Chris Mason02217ed2007-03-02 16:08:05 -0500697 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400698 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400699 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400700 struct btrfs_extent_item *item;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400701 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500702
Chris Masondb945352007-10-15 16:15:53 -0400703 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400704 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400705 if (!path)
706 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -0400707
Chris Mason3c12ac72008-04-21 12:01:38 -0400708 path->reada = 1;
Chris Masondb945352007-10-15 16:15:53 -0400709 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -0400710 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -0400711 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -0400712 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400713 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400714 if (ret < 0)
715 return ret;
Chris Masona429e512007-04-18 16:15:28 -0400716 if (ret != 0) {
Chris Masona28ec192007-03-06 20:08:01 -0500717 BUG();
Chris Masona429e512007-04-18 16:15:28 -0400718 }
Chris Mason02217ed2007-03-02 16:08:05 -0500719 BUG_ON(ret != 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400720 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400721 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400722 refs = btrfs_extent_refs(l, item);
723 btrfs_set_extent_refs(l, item, refs + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -0400724 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masona28ec192007-03-06 20:08:01 -0500725
Chris Mason5caf2a02007-04-02 11:20:42 -0400726 btrfs_release_path(root->fs_info->extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -0500727
Chris Mason3c12ac72008-04-21 12:01:38 -0400728 path->reada = 1;
Chris Mason7bb86312007-12-11 09:25:06 -0500729 ret = btrfs_insert_extent_backref(trans, root->fs_info->extent_root,
730 path, bytenr, root_objectid,
731 ref_generation, owner, owner_offset);
732 BUG_ON(ret);
Chris Mason9f5fae22007-03-20 14:38:32 -0400733 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400734 del_pending_extents(trans, root->fs_info->extent_root);
Chris Mason74493f72007-12-11 09:25:06 -0500735
736 btrfs_free_path(path);
Chris Mason02217ed2007-03-02 16:08:05 -0500737 return 0;
738}
739
Chris Mason925baed2008-06-25 16:01:30 -0400740int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
741 struct btrfs_root *root,
742 u64 bytenr, u64 num_bytes,
743 u64 root_objectid, u64 ref_generation,
744 u64 owner, u64 owner_offset)
745{
746 int ret;
747
748 mutex_lock(&root->fs_info->alloc_mutex);
749 ret = __btrfs_inc_extent_ref(trans, root, bytenr, num_bytes,
750 root_objectid, ref_generation,
751 owner, owner_offset);
752 mutex_unlock(&root->fs_info->alloc_mutex);
753 return ret;
754}
755
Chris Masone9d0b132007-08-10 14:06:19 -0400756int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
757 struct btrfs_root *root)
758{
759 finish_current_insert(trans, root->fs_info->extent_root);
760 del_pending_extents(trans, root->fs_info->extent_root);
761 return 0;
762}
763
Chris Masonb18c6682007-04-17 13:26:50 -0400764static int lookup_extent_ref(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -0400765 struct btrfs_root *root, u64 bytenr,
766 u64 num_bytes, u32 *refs)
Chris Masona28ec192007-03-06 20:08:01 -0500767{
Chris Mason5caf2a02007-04-02 11:20:42 -0400768 struct btrfs_path *path;
Chris Masona28ec192007-03-06 20:08:01 -0500769 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400770 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400771 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400772 struct btrfs_extent_item *item;
Chris Mason5caf2a02007-04-02 11:20:42 -0400773
Chris Masondb945352007-10-15 16:15:53 -0400774 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400775 path = btrfs_alloc_path();
Chris Mason3c12ac72008-04-21 12:01:38 -0400776 path->reada = 1;
Chris Masondb945352007-10-15 16:15:53 -0400777 key.objectid = bytenr;
778 key.offset = num_bytes;
Chris Mason62e27492007-03-15 12:56:47 -0400779 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5caf2a02007-04-02 11:20:42 -0400780 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400781 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400782 if (ret < 0)
783 goto out;
Chris Mason5f39d392007-10-15 16:14:19 -0400784 if (ret != 0) {
785 btrfs_print_leaf(root, path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400786 printk("failed to find block number %Lu\n", bytenr);
Chris Masona28ec192007-03-06 20:08:01 -0500787 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -0400788 }
789 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400790 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400791 *refs = btrfs_extent_refs(l, item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400792out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400793 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -0500794 return 0;
795}
796
Chris Masonbe20aa92007-12-17 20:14:01 -0500797u32 btrfs_count_snapshots_in_path(struct btrfs_root *root,
798 struct btrfs_path *count_path,
Chris Masona68d5932008-05-08 14:11:56 -0400799 u64 expected_owner,
Chris Masonbe20aa92007-12-17 20:14:01 -0500800 u64 first_extent)
801{
802 struct btrfs_root *extent_root = root->fs_info->extent_root;
803 struct btrfs_path *path;
804 u64 bytenr;
805 u64 found_objectid;
Chris Masona68d5932008-05-08 14:11:56 -0400806 u64 found_owner;
Chris Mason56b453c2008-01-03 09:08:27 -0500807 u64 root_objectid = root->root_key.objectid;
Chris Masonbe20aa92007-12-17 20:14:01 -0500808 u32 total_count = 0;
Chris Masonbbaf5492008-05-08 16:31:21 -0400809 u32 extent_refs;
Chris Masonbe20aa92007-12-17 20:14:01 -0500810 u32 cur_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500811 u32 nritems;
812 int ret;
813 struct btrfs_key key;
814 struct btrfs_key found_key;
815 struct extent_buffer *l;
816 struct btrfs_extent_item *item;
817 struct btrfs_extent_ref *ref_item;
818 int level = -1;
819
Chris Mason925baed2008-06-25 16:01:30 -0400820 /* FIXME, needs locking */
821 BUG();
822
823 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masonbe20aa92007-12-17 20:14:01 -0500824 path = btrfs_alloc_path();
825again:
826 if (level == -1)
827 bytenr = first_extent;
828 else
829 bytenr = count_path->nodes[level]->start;
830
831 cur_count = 0;
832 key.objectid = bytenr;
833 key.offset = 0;
834
835 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
836 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
837 if (ret < 0)
838 goto out;
839 BUG_ON(ret == 0);
840
841 l = path->nodes[0];
842 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
843
844 if (found_key.objectid != bytenr ||
845 found_key.type != BTRFS_EXTENT_ITEM_KEY) {
846 goto out;
847 }
848
849 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Masonbbaf5492008-05-08 16:31:21 -0400850 extent_refs = btrfs_extent_refs(l, item);
Chris Masonbe20aa92007-12-17 20:14:01 -0500851 while (1) {
Chris Masonbd098352008-01-03 13:23:19 -0500852 l = path->nodes[0];
Chris Masonbe20aa92007-12-17 20:14:01 -0500853 nritems = btrfs_header_nritems(l);
854 if (path->slots[0] >= nritems) {
855 ret = btrfs_next_leaf(extent_root, path);
856 if (ret == 0)
857 continue;
858 break;
859 }
860 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
861 if (found_key.objectid != bytenr)
862 break;
Chris Masonbd098352008-01-03 13:23:19 -0500863
Chris Masonbe20aa92007-12-17 20:14:01 -0500864 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
865 path->slots[0]++;
866 continue;
867 }
868
869 cur_count++;
870 ref_item = btrfs_item_ptr(l, path->slots[0],
871 struct btrfs_extent_ref);
872 found_objectid = btrfs_ref_root(l, ref_item);
873
Chris Mason56b453c2008-01-03 09:08:27 -0500874 if (found_objectid != root_objectid) {
875 total_count = 2;
Chris Mason4313b392008-01-03 09:08:48 -0500876 goto out;
Chris Mason56b453c2008-01-03 09:08:27 -0500877 }
Chris Masona68d5932008-05-08 14:11:56 -0400878 if (level == -1) {
879 found_owner = btrfs_ref_objectid(l, ref_item);
880 if (found_owner != expected_owner) {
881 total_count = 2;
882 goto out;
883 }
Chris Masonbbaf5492008-05-08 16:31:21 -0400884 /*
885 * nasty. we don't count a reference held by
886 * the running transaction. This allows nodatacow
887 * to avoid cow most of the time
888 */
889 if (found_owner >= BTRFS_FIRST_FREE_OBJECTID &&
890 btrfs_ref_generation(l, ref_item) ==
891 root->fs_info->generation) {
892 extent_refs--;
893 }
Chris Masona68d5932008-05-08 14:11:56 -0400894 }
Chris Mason56b453c2008-01-03 09:08:27 -0500895 total_count = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500896 path->slots[0]++;
897 }
Chris Masonbbaf5492008-05-08 16:31:21 -0400898 /*
899 * if there is more than one reference against a data extent,
900 * we have to assume the other ref is another snapshot
901 */
902 if (level == -1 && extent_refs > 1) {
903 total_count = 2;
904 goto out;
905 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500906 if (cur_count == 0) {
907 total_count = 0;
908 goto out;
909 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500910 if (level >= 0 && root->node == count_path->nodes[level])
911 goto out;
912 level++;
913 btrfs_release_path(root, path);
914 goto again;
915
916out:
917 btrfs_free_path(path);
Chris Mason925baed2008-06-25 16:01:30 -0400918 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonbe20aa92007-12-17 20:14:01 -0500919 return total_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500920}
Chris Masonc5739bb2007-04-10 09:27:04 -0400921
Chris Masone089f052007-03-16 16:20:31 -0400922int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400923 struct extent_buffer *buf)
Chris Mason02217ed2007-03-02 16:08:05 -0500924{
Chris Masondb945352007-10-15 16:15:53 -0400925 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400926 u32 nritems;
927 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -0400928 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -0500929 int i;
Chris Masondb945352007-10-15 16:15:53 -0400930 int level;
Chris Mason6407bf62007-03-27 06:33:00 -0400931 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400932 int faili;
Chris Masona28ec192007-03-06 20:08:01 -0500933
Chris Mason3768f362007-03-13 16:47:54 -0400934 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500935 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400936
Chris Masondb945352007-10-15 16:15:53 -0400937 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400938 nritems = btrfs_header_nritems(buf);
939 for (i = 0; i < nritems; i++) {
Chris Masone34a5b42008-07-22 12:08:37 -0400940 cond_resched();
Chris Masondb945352007-10-15 16:15:53 -0400941 if (level == 0) {
942 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400943 btrfs_item_key_to_cpu(buf, &key, i);
944 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -0400945 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400946 fi = btrfs_item_ptr(buf, i,
Chris Mason6407bf62007-03-27 06:33:00 -0400947 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400948 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason236454d2007-04-19 13:37:44 -0400949 BTRFS_FILE_EXTENT_INLINE)
950 continue;
Chris Masondb945352007-10-15 16:15:53 -0400951 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
952 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -0400953 continue;
Chris Mason4a096752008-07-21 10:29:44 -0400954
955 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason925baed2008-06-25 16:01:30 -0400956 ret = __btrfs_inc_extent_ref(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500957 btrfs_file_extent_disk_num_bytes(buf, fi),
958 root->root_key.objectid, trans->transid,
959 key.objectid, key.offset);
Chris Mason4a096752008-07-21 10:29:44 -0400960 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason54aa1f42007-06-22 14:16:25 -0400961 if (ret) {
962 faili = i;
Chris Mason4a096752008-07-21 10:29:44 -0400963 WARN_ON(1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400964 goto fail;
965 }
Chris Mason6407bf62007-03-27 06:33:00 -0400966 } else {
Chris Masondb945352007-10-15 16:15:53 -0400967 bytenr = btrfs_node_blockptr(buf, i);
Chris Mason6caab482007-12-13 09:48:07 -0500968 btrfs_node_key_to_cpu(buf, &key, i);
Chris Mason4a096752008-07-21 10:29:44 -0400969
970 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason925baed2008-06-25 16:01:30 -0400971 ret = __btrfs_inc_extent_ref(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500972 btrfs_level_size(root, level - 1),
973 root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500974 trans->transid,
975 level - 1, key.objectid);
Chris Mason4a096752008-07-21 10:29:44 -0400976 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason54aa1f42007-06-22 14:16:25 -0400977 if (ret) {
978 faili = i;
Chris Mason4a096752008-07-21 10:29:44 -0400979 WARN_ON(1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400980 goto fail;
981 }
Chris Mason6407bf62007-03-27 06:33:00 -0400982 }
Chris Mason02217ed2007-03-02 16:08:05 -0500983 }
984 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400985fail:
Chris Masonccd467d2007-06-28 15:57:36 -0400986 WARN_ON(1);
Chris Mason7bb86312007-12-11 09:25:06 -0500987#if 0
Chris Mason54aa1f42007-06-22 14:16:25 -0400988 for (i =0; i < faili; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400989 if (level == 0) {
990 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400991 btrfs_item_key_to_cpu(buf, &key, i);
992 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -0400993 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400994 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -0400995 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400996 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -0400997 BTRFS_FILE_EXTENT_INLINE)
998 continue;
Chris Masondb945352007-10-15 16:15:53 -0400999 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
1000 if (disk_bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04001001 continue;
Chris Masondb945352007-10-15 16:15:53 -04001002 err = btrfs_free_extent(trans, root, disk_bytenr,
1003 btrfs_file_extent_disk_num_bytes(buf,
Chris Mason5f39d392007-10-15 16:14:19 -04001004 fi), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001005 BUG_ON(err);
1006 } else {
Chris Masondb945352007-10-15 16:15:53 -04001007 bytenr = btrfs_node_blockptr(buf, i);
1008 err = btrfs_free_extent(trans, root, bytenr,
1009 btrfs_level_size(root, level - 1), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001010 BUG_ON(err);
1011 }
1012 }
Chris Mason7bb86312007-12-11 09:25:06 -05001013#endif
Chris Mason54aa1f42007-06-22 14:16:25 -04001014 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05001015}
1016
Chris Mason9078a3e2007-04-26 16:46:15 -04001017static int write_one_cache_group(struct btrfs_trans_handle *trans,
1018 struct btrfs_root *root,
1019 struct btrfs_path *path,
1020 struct btrfs_block_group_cache *cache)
1021{
1022 int ret;
1023 int pending_ret;
1024 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001025 unsigned long bi;
1026 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04001027
Chris Mason9078a3e2007-04-26 16:46:15 -04001028 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001029 if (ret < 0)
1030 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -04001031 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001032
1033 leaf = path->nodes[0];
1034 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
1035 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
1036 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -04001037 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -04001038fail:
Chris Mason9078a3e2007-04-26 16:46:15 -04001039 finish_current_insert(trans, extent_root);
1040 pending_ret = del_pending_extents(trans, extent_root);
1041 if (ret)
1042 return ret;
1043 if (pending_ret)
1044 return pending_ret;
1045 return 0;
1046
1047}
1048
Chris Mason96b51792007-10-15 16:15:19 -04001049int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1050 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04001051{
Chris Masond1310b22008-01-24 16:13:08 -05001052 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -04001053 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04001054 int ret;
1055 int err = 0;
1056 int werr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04001057 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04001058 u64 last = 0;
1059 u64 start;
1060 u64 end;
1061 u64 ptr;
Chris Mason9078a3e2007-04-26 16:46:15 -04001062
Chris Mason96b51792007-10-15 16:15:19 -04001063 block_group_cache = &root->fs_info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04001064 path = btrfs_alloc_path();
1065 if (!path)
1066 return -ENOMEM;
1067
Chris Mason925baed2008-06-25 16:01:30 -04001068 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason9078a3e2007-04-26 16:46:15 -04001069 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -04001070 ret = find_first_extent_bit(block_group_cache, last,
1071 &start, &end, BLOCK_GROUP_DIRTY);
1072 if (ret)
Chris Mason9078a3e2007-04-26 16:46:15 -04001073 break;
Chris Mason54aa1f42007-06-22 14:16:25 -04001074
Chris Mason96b51792007-10-15 16:15:19 -04001075 last = end + 1;
1076 ret = get_state_private(block_group_cache, start, &ptr);
1077 if (ret)
1078 break;
Jens Axboeae2f5412007-10-19 09:22:59 -04001079 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -04001080 err = write_one_cache_group(trans, root,
1081 path, cache);
1082 /*
1083 * if we fail to write the cache group, we want
1084 * to keep it marked dirty in hopes that a later
1085 * write will work
1086 */
1087 if (err) {
1088 werr = err;
1089 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04001090 }
Chris Mason96b51792007-10-15 16:15:19 -04001091 clear_extent_bits(block_group_cache, start, end,
1092 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001093 }
1094 btrfs_free_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04001095 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason9078a3e2007-04-26 16:46:15 -04001096 return werr;
1097}
1098
Chris Mason6324fbf2008-03-24 15:01:59 -04001099static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
1100 u64 flags)
1101{
1102 struct list_head *head = &info->space_info;
1103 struct list_head *cur;
1104 struct btrfs_space_info *found;
1105 list_for_each(cur, head) {
1106 found = list_entry(cur, struct btrfs_space_info, list);
1107 if (found->flags == flags)
1108 return found;
1109 }
1110 return NULL;
1111
1112}
1113
Chris Mason593060d2008-03-25 16:50:33 -04001114static int update_space_info(struct btrfs_fs_info *info, u64 flags,
1115 u64 total_bytes, u64 bytes_used,
1116 struct btrfs_space_info **space_info)
1117{
1118 struct btrfs_space_info *found;
1119
1120 found = __find_space_info(info, flags);
1121 if (found) {
1122 found->total_bytes += total_bytes;
1123 found->bytes_used += bytes_used;
Chris Mason8f18cf12008-04-25 16:53:30 -04001124 found->full = 0;
Chris Mason593060d2008-03-25 16:50:33 -04001125 WARN_ON(found->total_bytes < found->bytes_used);
1126 *space_info = found;
1127 return 0;
1128 }
1129 found = kmalloc(sizeof(*found), GFP_NOFS);
1130 if (!found)
1131 return -ENOMEM;
1132
1133 list_add(&found->list, &info->space_info);
1134 found->flags = flags;
1135 found->total_bytes = total_bytes;
1136 found->bytes_used = bytes_used;
1137 found->bytes_pinned = 0;
1138 found->full = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04001139 found->force_alloc = 0;
Chris Mason593060d2008-03-25 16:50:33 -04001140 *space_info = found;
1141 return 0;
1142}
1143
Chris Mason8790d502008-04-03 16:29:03 -04001144static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
1145{
1146 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
Chris Mason611f0e02008-04-03 16:29:03 -04001147 BTRFS_BLOCK_GROUP_RAID1 |
Chris Mason321aecc2008-04-16 10:49:51 -04001148 BTRFS_BLOCK_GROUP_RAID10 |
Chris Mason611f0e02008-04-03 16:29:03 -04001149 BTRFS_BLOCK_GROUP_DUP);
Chris Mason8790d502008-04-03 16:29:03 -04001150 if (extra_flags) {
1151 if (flags & BTRFS_BLOCK_GROUP_DATA)
1152 fs_info->avail_data_alloc_bits |= extra_flags;
1153 if (flags & BTRFS_BLOCK_GROUP_METADATA)
1154 fs_info->avail_metadata_alloc_bits |= extra_flags;
1155 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
1156 fs_info->avail_system_alloc_bits |= extra_flags;
1157 }
1158}
Chris Mason593060d2008-03-25 16:50:33 -04001159
Chris Masona061fc82008-05-07 11:43:44 -04001160static u64 reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04001161{
Chris Masona061fc82008-05-07 11:43:44 -04001162 u64 num_devices = root->fs_info->fs_devices->num_devices;
1163
1164 if (num_devices == 1)
1165 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0);
1166 if (num_devices < 4)
1167 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
1168
Chris Masonec44a352008-04-28 15:29:52 -04001169 if ((flags & BTRFS_BLOCK_GROUP_DUP) &&
1170 (flags & (BTRFS_BLOCK_GROUP_RAID1 |
Chris Masona061fc82008-05-07 11:43:44 -04001171 BTRFS_BLOCK_GROUP_RAID10))) {
Chris Masonec44a352008-04-28 15:29:52 -04001172 flags &= ~BTRFS_BLOCK_GROUP_DUP;
Chris Masona061fc82008-05-07 11:43:44 -04001173 }
Chris Masonec44a352008-04-28 15:29:52 -04001174
1175 if ((flags & BTRFS_BLOCK_GROUP_RAID1) &&
Chris Masona061fc82008-05-07 11:43:44 -04001176 (flags & BTRFS_BLOCK_GROUP_RAID10)) {
Chris Masonec44a352008-04-28 15:29:52 -04001177 flags &= ~BTRFS_BLOCK_GROUP_RAID1;
Chris Masona061fc82008-05-07 11:43:44 -04001178 }
Chris Masonec44a352008-04-28 15:29:52 -04001179
1180 if ((flags & BTRFS_BLOCK_GROUP_RAID0) &&
1181 ((flags & BTRFS_BLOCK_GROUP_RAID1) |
1182 (flags & BTRFS_BLOCK_GROUP_RAID10) |
1183 (flags & BTRFS_BLOCK_GROUP_DUP)))
1184 flags &= ~BTRFS_BLOCK_GROUP_RAID0;
1185 return flags;
1186}
1187
Chris Mason6324fbf2008-03-24 15:01:59 -04001188static int do_chunk_alloc(struct btrfs_trans_handle *trans,
1189 struct btrfs_root *extent_root, u64 alloc_bytes,
Chris Mason0ef3e662008-05-24 14:04:53 -04001190 u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04001191{
1192 struct btrfs_space_info *space_info;
1193 u64 thresh;
1194 u64 start;
1195 u64 num_bytes;
1196 int ret;
1197
Chris Masona061fc82008-05-07 11:43:44 -04001198 flags = reduce_alloc_profile(extent_root, flags);
Chris Masonec44a352008-04-28 15:29:52 -04001199
Chris Mason6324fbf2008-03-24 15:01:59 -04001200 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04001201 if (!space_info) {
1202 ret = update_space_info(extent_root->fs_info, flags,
1203 0, 0, &space_info);
1204 BUG_ON(ret);
1205 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001206 BUG_ON(!space_info);
1207
Chris Mason0ef3e662008-05-24 14:04:53 -04001208 if (space_info->force_alloc) {
1209 force = 1;
1210 space_info->force_alloc = 0;
1211 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001212 if (space_info->full)
Chris Mason925baed2008-06-25 16:01:30 -04001213 goto out;
Chris Mason6324fbf2008-03-24 15:01:59 -04001214
Chris Mason8790d502008-04-03 16:29:03 -04001215 thresh = div_factor(space_info->total_bytes, 6);
Chris Mason0ef3e662008-05-24 14:04:53 -04001216 if (!force &&
1217 (space_info->bytes_used + space_info->bytes_pinned + alloc_bytes) <
Chris Mason6324fbf2008-03-24 15:01:59 -04001218 thresh)
Chris Mason925baed2008-06-25 16:01:30 -04001219 goto out;
Chris Mason6324fbf2008-03-24 15:01:59 -04001220
Chris Mason925baed2008-06-25 16:01:30 -04001221 mutex_lock(&extent_root->fs_info->chunk_mutex);
Chris Mason6324fbf2008-03-24 15:01:59 -04001222 ret = btrfs_alloc_chunk(trans, extent_root, &start, &num_bytes, flags);
1223 if (ret == -ENOSPC) {
1224printk("space info full %Lu\n", flags);
1225 space_info->full = 1;
Chris Masona74a4b92008-06-25 16:01:31 -04001226 goto out_unlock;
Chris Mason6324fbf2008-03-24 15:01:59 -04001227 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001228 BUG_ON(ret);
1229
1230 ret = btrfs_make_block_group(trans, extent_root, 0, flags,
Chris Masone17cade2008-04-15 15:41:47 -04001231 BTRFS_FIRST_CHUNK_TREE_OBJECTID, start, num_bytes);
Chris Mason6324fbf2008-03-24 15:01:59 -04001232 BUG_ON(ret);
Chris Masona74a4b92008-06-25 16:01:31 -04001233out_unlock:
Chris Mason333db942008-06-25 16:01:30 -04001234 mutex_unlock(&extent_root->fs_info->chunk_mutex);
Chris Masona74a4b92008-06-25 16:01:31 -04001235out:
Chris Mason6324fbf2008-03-24 15:01:59 -04001236 return 0;
1237}
1238
Chris Mason9078a3e2007-04-26 16:46:15 -04001239static int update_block_group(struct btrfs_trans_handle *trans,
1240 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -04001241 u64 bytenr, u64 num_bytes, int alloc,
Chris Mason0b86a832008-03-24 15:01:56 -04001242 int mark_free)
Chris Mason9078a3e2007-04-26 16:46:15 -04001243{
1244 struct btrfs_block_group_cache *cache;
1245 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001246 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001247 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04001248 u64 byte_in_group;
Chris Mason96b51792007-10-15 16:15:19 -04001249 u64 start;
1250 u64 end;
Chris Mason3e1ad542007-05-07 20:03:49 -04001251
Chris Mason7d9eb122008-07-08 14:19:17 -04001252 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Mason9078a3e2007-04-26 16:46:15 -04001253 while(total) {
Chris Masondb945352007-10-15 16:15:53 -04001254 cache = btrfs_lookup_block_group(info, bytenr);
Chris Mason3e1ad542007-05-07 20:03:49 -04001255 if (!cache) {
Chris Mason9078a3e2007-04-26 16:46:15 -04001256 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -04001257 }
Chris Masondb945352007-10-15 16:15:53 -04001258 byte_in_group = bytenr - cache->key.objectid;
1259 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason96b51792007-10-15 16:15:19 -04001260 start = cache->key.objectid;
1261 end = start + cache->key.offset - 1;
1262 set_extent_bits(&info->block_group_cache, start, end,
1263 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001264
1265 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04001266 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04001267 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04001268 old_val += num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001269 cache->space_info->bytes_used += num_bytes;
Chris Masoncd1bc462007-04-27 10:08:34 -04001270 } else {
Chris Masondb945352007-10-15 16:15:53 -04001271 old_val -= num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001272 cache->space_info->bytes_used -= num_bytes;
Chris Masonf510cfe2007-10-15 16:14:48 -04001273 if (mark_free) {
1274 set_extent_dirty(&info->free_space_cache,
Chris Masondb945352007-10-15 16:15:53 -04001275 bytenr, bytenr + num_bytes - 1,
Chris Masonf510cfe2007-10-15 16:14:48 -04001276 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04001277 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001278 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001279 btrfs_set_block_group_used(&cache->item, old_val);
Chris Masondb945352007-10-15 16:15:53 -04001280 total -= num_bytes;
1281 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001282 }
1283 return 0;
1284}
Chris Mason6324fbf2008-03-24 15:01:59 -04001285
Chris Masona061fc82008-05-07 11:43:44 -04001286static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
1287{
1288 u64 start;
1289 u64 end;
1290 int ret;
1291 ret = find_first_extent_bit(&root->fs_info->block_group_cache,
1292 search_start, &start, &end,
1293 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA |
1294 BLOCK_GROUP_SYSTEM);
1295 if (ret)
1296 return 0;
1297 return start;
1298}
1299
1300
Yan324ae4d2007-11-16 14:57:08 -05001301static int update_pinned_extents(struct btrfs_root *root,
1302 u64 bytenr, u64 num, int pin)
1303{
1304 u64 len;
1305 struct btrfs_block_group_cache *cache;
1306 struct btrfs_fs_info *fs_info = root->fs_info;
1307
Chris Mason7d9eb122008-07-08 14:19:17 -04001308 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Yan324ae4d2007-11-16 14:57:08 -05001309 if (pin) {
1310 set_extent_dirty(&fs_info->pinned_extents,
1311 bytenr, bytenr + num - 1, GFP_NOFS);
1312 } else {
1313 clear_extent_dirty(&fs_info->pinned_extents,
1314 bytenr, bytenr + num - 1, GFP_NOFS);
1315 }
1316 while (num > 0) {
1317 cache = btrfs_lookup_block_group(fs_info, bytenr);
Chris Masona061fc82008-05-07 11:43:44 -04001318 if (!cache) {
1319 u64 first = first_logical_byte(root, bytenr);
1320 WARN_ON(first < bytenr);
1321 len = min(first - bytenr, num);
1322 } else {
1323 len = min(num, cache->key.offset -
1324 (bytenr - cache->key.objectid));
1325 }
Yan324ae4d2007-11-16 14:57:08 -05001326 if (pin) {
Chris Masona061fc82008-05-07 11:43:44 -04001327 if (cache) {
1328 cache->pinned += len;
1329 cache->space_info->bytes_pinned += len;
1330 }
Yan324ae4d2007-11-16 14:57:08 -05001331 fs_info->total_pinned += len;
1332 } else {
Chris Masona061fc82008-05-07 11:43:44 -04001333 if (cache) {
1334 cache->pinned -= len;
1335 cache->space_info->bytes_pinned -= len;
1336 }
Yan324ae4d2007-11-16 14:57:08 -05001337 fs_info->total_pinned -= len;
1338 }
1339 bytenr += len;
1340 num -= len;
1341 }
1342 return 0;
1343}
Chris Mason9078a3e2007-04-26 16:46:15 -04001344
Chris Masond1310b22008-01-24 16:13:08 -05001345int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy)
Chris Masonccd467d2007-06-28 15:57:36 -04001346{
Chris Masonccd467d2007-06-28 15:57:36 -04001347 u64 last = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001348 u64 start;
1349 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001350 struct extent_io_tree *pinned_extents = &root->fs_info->pinned_extents;
Chris Masonccd467d2007-06-28 15:57:36 -04001351 int ret;
Chris Masonccd467d2007-06-28 15:57:36 -04001352
1353 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001354 ret = find_first_extent_bit(pinned_extents, last,
1355 &start, &end, EXTENT_DIRTY);
1356 if (ret)
Chris Masonccd467d2007-06-28 15:57:36 -04001357 break;
Chris Mason1a5bc162007-10-15 16:15:26 -04001358 set_extent_dirty(copy, start, end, GFP_NOFS);
1359 last = end + 1;
Chris Masonccd467d2007-06-28 15:57:36 -04001360 }
1361 return 0;
1362}
1363
1364int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1365 struct btrfs_root *root,
Chris Masond1310b22008-01-24 16:13:08 -05001366 struct extent_io_tree *unpin)
Chris Masona28ec192007-03-06 20:08:01 -05001367{
Chris Mason1a5bc162007-10-15 16:15:26 -04001368 u64 start;
1369 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05001370 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001371 struct extent_io_tree *free_space_cache;
Chris Masonf510cfe2007-10-15 16:14:48 -04001372 free_space_cache = &root->fs_info->free_space_cache;
Chris Masona28ec192007-03-06 20:08:01 -05001373
Chris Mason925baed2008-06-25 16:01:30 -04001374 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05001375 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001376 ret = find_first_extent_bit(unpin, 0, &start, &end,
1377 EXTENT_DIRTY);
1378 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05001379 break;
Yan324ae4d2007-11-16 14:57:08 -05001380 update_pinned_extents(root, start, end + 1 - start, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001381 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1382 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
Chris Masona28ec192007-03-06 20:08:01 -05001383 }
Chris Mason925baed2008-06-25 16:01:30 -04001384 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05001385 return 0;
1386}
1387
Chris Mason98ed5172008-01-03 10:01:48 -05001388static int finish_current_insert(struct btrfs_trans_handle *trans,
1389 struct btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -05001390{
Chris Mason7bb86312007-12-11 09:25:06 -05001391 u64 start;
1392 u64 end;
1393 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001394 struct extent_buffer *eb;
Chris Mason7bb86312007-12-11 09:25:06 -05001395 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001396 struct btrfs_key ins;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001397 struct btrfs_disk_key first;
Chris Mason234b63a2007-03-13 10:46:10 -04001398 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -05001399 int ret;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001400 int level;
Chris Mason1a5bc162007-10-15 16:15:26 -04001401 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001402
Chris Mason7d9eb122008-07-08 14:19:17 -04001403 WARN_ON(!mutex_is_locked(&extent_root->fs_info->alloc_mutex));
Chris Mason5f39d392007-10-15 16:14:19 -04001404 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason62e27492007-03-15 12:56:47 -04001405 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason7bb86312007-12-11 09:25:06 -05001406 path = btrfs_alloc_path();
Chris Mason037e6392007-03-07 11:50:24 -05001407
Chris Mason26b80032007-08-08 20:17:12 -04001408 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001409 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1410 &end, EXTENT_LOCKED);
1411 if (ret)
Chris Mason26b80032007-08-08 20:17:12 -04001412 break;
1413
Chris Mason1a5bc162007-10-15 16:15:26 -04001414 ins.objectid = start;
1415 ins.offset = end + 1 - start;
1416 err = btrfs_insert_item(trans, extent_root, &ins,
1417 &extent_item, sizeof(extent_item));
1418 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1419 GFP_NOFS);
Chris Masonca7a79a2008-05-12 12:59:19 -04001420 eb = read_tree_block(extent_root, ins.objectid, ins.offset,
1421 trans->transid);
Chris Mason925baed2008-06-25 16:01:30 -04001422 btrfs_tree_lock(eb);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001423 level = btrfs_header_level(eb);
1424 if (level == 0) {
1425 btrfs_item_key(eb, &first, 0);
1426 } else {
1427 btrfs_node_key(eb, &first, 0);
1428 }
Chris Mason925baed2008-06-25 16:01:30 -04001429 btrfs_tree_unlock(eb);
1430 free_extent_buffer(eb);
1431 /*
1432 * the first key is just a hint, so the race we've created
1433 * against reading it is fine
1434 */
Chris Mason7bb86312007-12-11 09:25:06 -05001435 err = btrfs_insert_extent_backref(trans, extent_root, path,
1436 start, extent_root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -05001437 0, level,
1438 btrfs_disk_key_objectid(&first));
Chris Mason7bb86312007-12-11 09:25:06 -05001439 BUG_ON(err);
Chris Mason037e6392007-03-07 11:50:24 -05001440 }
Chris Mason7bb86312007-12-11 09:25:06 -05001441 btrfs_free_path(path);
Chris Mason037e6392007-03-07 11:50:24 -05001442 return 0;
1443}
1444
Chris Masondb945352007-10-15 16:15:53 -04001445static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
1446 int pending)
Chris Masone20d96d2007-03-22 12:13:20 -04001447{
Chris Mason1a5bc162007-10-15 16:15:26 -04001448 int err = 0;
Chris Mason78fae272007-03-25 11:35:08 -04001449
Chris Mason7d9eb122008-07-08 14:19:17 -04001450 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Masonf4b9aa82007-03-27 11:05:53 -04001451 if (!pending) {
Chris Mason925baed2008-06-25 16:01:30 -04001452 struct extent_buffer *buf;
Chris Masondb945352007-10-15 16:15:53 -04001453 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -04001454 if (buf) {
Chris Masona61e6f22008-07-22 11:18:08 -04001455 if (btrfs_try_tree_lock(buf) &&
Chris Mason925baed2008-06-25 16:01:30 -04001456 btrfs_buffer_uptodate(buf, 0)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -04001457 u64 transid =
1458 root->fs_info->running_transaction->transid;
Chris Masondc17ff82008-01-08 15:46:30 -05001459 u64 header_transid =
1460 btrfs_header_generation(buf);
Chris Mason6bc34672008-04-04 15:40:00 -04001461 if (header_transid == transid &&
1462 !btrfs_header_flag(buf,
1463 BTRFS_HEADER_FLAG_WRITTEN)) {
Chris Mason55c69072008-01-09 15:55:33 -05001464 clean_tree_block(NULL, root, buf);
Chris Mason925baed2008-06-25 16:01:30 -04001465 btrfs_tree_unlock(buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001466 free_extent_buffer(buf);
Yanc5492282007-11-06 10:25:25 -05001467 return 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001468 }
Chris Mason925baed2008-06-25 16:01:30 -04001469 btrfs_tree_unlock(buf);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001470 }
Chris Mason5f39d392007-10-15 16:14:19 -04001471 free_extent_buffer(buf);
Chris Mason8ef97622007-03-26 10:15:30 -04001472 }
Yan324ae4d2007-11-16 14:57:08 -05001473 update_pinned_extents(root, bytenr, num_bytes, 1);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001474 } else {
Chris Mason1a5bc162007-10-15 16:15:26 -04001475 set_extent_bits(&root->fs_info->pending_del,
Chris Masondb945352007-10-15 16:15:53 -04001476 bytenr, bytenr + num_bytes - 1,
1477 EXTENT_LOCKED, GFP_NOFS);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001478 }
Chris Masonbe744172007-05-06 10:15:01 -04001479 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001480 return 0;
1481}
1482
Chris Masona28ec192007-03-06 20:08:01 -05001483/*
1484 * remove an extent from the root, returns 0 on success
1485 */
Chris Masone089f052007-03-16 16:20:31 -04001486static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001487 *root, u64 bytenr, u64 num_bytes,
1488 u64 root_objectid, u64 ref_generation,
1489 u64 owner_objectid, u64 owner_offset, int pin,
Chris Masone37c9e62007-05-09 20:13:14 -04001490 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -05001491{
Chris Mason5caf2a02007-04-02 11:20:42 -04001492 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001493 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -04001494 struct btrfs_fs_info *info = root->fs_info;
1495 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001496 struct extent_buffer *leaf;
Chris Masona28ec192007-03-06 20:08:01 -05001497 int ret;
Chris Mason952fcca2008-02-18 16:33:44 -05001498 int extent_slot = 0;
1499 int found_extent = 0;
1500 int num_to_del = 1;
Chris Mason234b63a2007-03-13 10:46:10 -04001501 struct btrfs_extent_item *ei;
Chris Masoncf27e1e2007-03-13 09:49:06 -04001502 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -05001503
Chris Mason7d9eb122008-07-08 14:19:17 -04001504 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Masondb945352007-10-15 16:15:53 -04001505 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -04001506 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -04001507 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001508 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001509 if (!path)
1510 return -ENOMEM;
1511
Chris Mason3c12ac72008-04-21 12:01:38 -04001512 path->reada = 1;
Chris Mason7bb86312007-12-11 09:25:06 -05001513 ret = lookup_extent_backref(trans, extent_root, path,
1514 bytenr, root_objectid,
1515 ref_generation,
1516 owner_objectid, owner_offset, 1);
1517 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05001518 struct btrfs_key found_key;
1519 extent_slot = path->slots[0];
1520 while(extent_slot > 0) {
1521 extent_slot--;
1522 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1523 extent_slot);
1524 if (found_key.objectid != bytenr)
1525 break;
1526 if (found_key.type == BTRFS_EXTENT_ITEM_KEY &&
1527 found_key.offset == num_bytes) {
1528 found_extent = 1;
1529 break;
1530 }
1531 if (path->slots[0] - extent_slot > 5)
1532 break;
1533 }
1534 if (!found_extent)
1535 ret = btrfs_del_item(trans, extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -05001536 } else {
1537 btrfs_print_leaf(extent_root, path->nodes[0]);
1538 WARN_ON(1);
1539 printk("Unable to find ref byte nr %Lu root %Lu "
1540 " gen %Lu owner %Lu offset %Lu\n", bytenr,
1541 root_objectid, ref_generation, owner_objectid,
1542 owner_offset);
1543 }
Chris Mason952fcca2008-02-18 16:33:44 -05001544 if (!found_extent) {
1545 btrfs_release_path(extent_root, path);
1546 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
1547 if (ret < 0)
1548 return ret;
1549 BUG_ON(ret);
1550 extent_slot = path->slots[0];
1551 }
Chris Mason5f39d392007-10-15 16:14:19 -04001552
1553 leaf = path->nodes[0];
Chris Mason952fcca2008-02-18 16:33:44 -05001554 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04001555 struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001556 refs = btrfs_extent_refs(leaf, ei);
1557 BUG_ON(refs == 0);
1558 refs -= 1;
1559 btrfs_set_extent_refs(leaf, ei, refs);
Chris Mason952fcca2008-02-18 16:33:44 -05001560
Chris Mason5f39d392007-10-15 16:14:19 -04001561 btrfs_mark_buffer_dirty(leaf);
1562
Chris Mason952fcca2008-02-18 16:33:44 -05001563 if (refs == 0 && found_extent && path->slots[0] == extent_slot + 1) {
1564 /* if the back ref and the extent are next to each other
1565 * they get deleted below in one shot
1566 */
1567 path->slots[0] = extent_slot;
1568 num_to_del = 2;
1569 } else if (found_extent) {
1570 /* otherwise delete the extent back ref */
1571 ret = btrfs_del_item(trans, extent_root, path);
1572 BUG_ON(ret);
1573 /* if refs are 0, we need to setup the path for deletion */
1574 if (refs == 0) {
1575 btrfs_release_path(extent_root, path);
1576 ret = btrfs_search_slot(trans, extent_root, &key, path,
1577 -1, 1);
1578 if (ret < 0)
1579 return ret;
1580 BUG_ON(ret);
1581 }
1582 }
1583
Chris Masoncf27e1e2007-03-13 09:49:06 -04001584 if (refs == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001585 u64 super_used;
1586 u64 root_used;
Chris Mason78fae272007-03-25 11:35:08 -04001587
1588 if (pin) {
Chris Masondb945352007-10-15 16:15:53 -04001589 ret = pin_down_bytes(root, bytenr, num_bytes, 0);
Yanc5492282007-11-06 10:25:25 -05001590 if (ret > 0)
1591 mark_free = 1;
1592 BUG_ON(ret < 0);
Chris Mason78fae272007-03-25 11:35:08 -04001593 }
1594
Josef Bacik58176a92007-08-29 15:47:34 -04001595 /* block accounting for super block */
Chris Masona2135012008-06-25 16:01:30 -04001596 spin_lock_irq(&info->delalloc_lock);
Chris Masondb945352007-10-15 16:15:53 -04001597 super_used = btrfs_super_bytes_used(&info->super_copy);
1598 btrfs_set_super_bytes_used(&info->super_copy,
1599 super_used - num_bytes);
Chris Masona2135012008-06-25 16:01:30 -04001600 spin_unlock_irq(&info->delalloc_lock);
Josef Bacik58176a92007-08-29 15:47:34 -04001601
1602 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001603 root_used = btrfs_root_used(&root->root_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001604 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -04001605 root_used - num_bytes);
Chris Mason952fcca2008-02-18 16:33:44 -05001606 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
1607 num_to_del);
Chris Mason54aa1f42007-06-22 14:16:25 -04001608 if (ret) {
1609 return ret;
1610 }
Chris Masondb945352007-10-15 16:15:53 -04001611 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001612 mark_free);
Chris Mason9078a3e2007-04-26 16:46:15 -04001613 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05001614 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001615 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001616 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -05001617 return ret;
1618}
1619
1620/*
Chris Masonfec577f2007-02-26 10:40:21 -05001621 * find all the blocks marked as pending in the radix tree and remove
1622 * them from the extent map
1623 */
Chris Masone089f052007-03-16 16:20:31 -04001624static int del_pending_extents(struct btrfs_trans_handle *trans, struct
1625 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -05001626{
1627 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001628 int err = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001629 u64 start;
1630 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001631 struct extent_io_tree *pending_del;
1632 struct extent_io_tree *pinned_extents;
Chris Mason8ef97622007-03-26 10:15:30 -04001633
Chris Mason7d9eb122008-07-08 14:19:17 -04001634 WARN_ON(!mutex_is_locked(&extent_root->fs_info->alloc_mutex));
Chris Mason1a5bc162007-10-15 16:15:26 -04001635 pending_del = &extent_root->fs_info->pending_del;
1636 pinned_extents = &extent_root->fs_info->pinned_extents;
Chris Masonfec577f2007-02-26 10:40:21 -05001637
1638 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001639 ret = find_first_extent_bit(pending_del, 0, &start, &end,
1640 EXTENT_LOCKED);
1641 if (ret)
Chris Masonfec577f2007-02-26 10:40:21 -05001642 break;
Yan324ae4d2007-11-16 14:57:08 -05001643 update_pinned_extents(extent_root, start, end + 1 - start, 1);
Chris Mason1a5bc162007-10-15 16:15:26 -04001644 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
1645 GFP_NOFS);
1646 ret = __free_extent(trans, extent_root,
Chris Mason7bb86312007-12-11 09:25:06 -05001647 start, end + 1 - start,
1648 extent_root->root_key.objectid,
1649 0, 0, 0, 0, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001650 if (ret)
1651 err = ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001652 }
Chris Masone20d96d2007-03-22 12:13:20 -04001653 return err;
Chris Masonfec577f2007-02-26 10:40:21 -05001654}
1655
1656/*
1657 * remove an extent from the root, returns 0 on success
1658 */
Chris Mason925baed2008-06-25 16:01:30 -04001659static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
1660 struct btrfs_root *root, u64 bytenr,
1661 u64 num_bytes, u64 root_objectid,
1662 u64 ref_generation, u64 owner_objectid,
1663 u64 owner_offset, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -05001664{
Chris Mason9f5fae22007-03-20 14:38:32 -04001665 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -05001666 int pending_ret;
1667 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05001668
Chris Masondb945352007-10-15 16:15:53 -04001669 WARN_ON(num_bytes < root->sectorsize);
Chris Mason7bb86312007-12-11 09:25:06 -05001670 if (!root->ref_cows)
1671 ref_generation = 0;
1672
Chris Masona28ec192007-03-06 20:08:01 -05001673 if (root == extent_root) {
Chris Masondb945352007-10-15 16:15:53 -04001674 pin_down_bytes(root, bytenr, num_bytes, 1);
Chris Masona28ec192007-03-06 20:08:01 -05001675 return 0;
1676 }
Chris Mason7bb86312007-12-11 09:25:06 -05001677 ret = __free_extent(trans, root, bytenr, num_bytes, root_objectid,
1678 ref_generation, owner_objectid, owner_offset,
1679 pin, pin == 0);
Chris Masonee6e6502008-07-17 12:54:40 -04001680
1681 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001682 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -05001683 return ret ? ret : pending_ret;
1684}
1685
Chris Mason925baed2008-06-25 16:01:30 -04001686int btrfs_free_extent(struct btrfs_trans_handle *trans,
1687 struct btrfs_root *root, u64 bytenr,
1688 u64 num_bytes, u64 root_objectid,
1689 u64 ref_generation, u64 owner_objectid,
1690 u64 owner_offset, int pin)
1691{
1692 int ret;
1693
1694 maybe_lock_mutex(root);
1695 ret = __btrfs_free_extent(trans, root, bytenr, num_bytes,
1696 root_objectid, ref_generation,
1697 owner_objectid, owner_offset, pin);
1698 maybe_unlock_mutex(root);
1699 return ret;
1700}
1701
Chris Mason87ee04e2007-11-30 11:30:34 -05001702static u64 stripe_align(struct btrfs_root *root, u64 val)
1703{
1704 u64 mask = ((u64)root->stripesize - 1);
1705 u64 ret = (val + mask) & ~mask;
1706 return ret;
1707}
1708
Chris Masonfec577f2007-02-26 10:40:21 -05001709/*
1710 * walks the btree of allocated extents and find a hole of a given size.
1711 * The key ins is changed to record the hole:
1712 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04001713 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05001714 * ins->offset == number of blocks
1715 * Any available blocks before search_start are skipped.
1716 */
Chris Mason98ed5172008-01-03 10:01:48 -05001717static int noinline find_free_extent(struct btrfs_trans_handle *trans,
1718 struct btrfs_root *orig_root,
1719 u64 num_bytes, u64 empty_size,
1720 u64 search_start, u64 search_end,
1721 u64 hint_byte, struct btrfs_key *ins,
1722 u64 exclude_start, u64 exclude_nr,
1723 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001724{
Chris Mason87ee04e2007-11-30 11:30:34 -05001725 int ret;
Chris Masona061fc82008-05-07 11:43:44 -04001726 u64 orig_search_start;
Chris Mason9f5fae22007-03-20 14:38:32 -04001727 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -04001728 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001729 u64 total_needed = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04001730 u64 *last_ptr = NULL;
Chris Masonbe08c1b2007-05-03 09:06:49 -04001731 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -04001732 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -04001733 int wrapped = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04001734 int chunk_alloc_done = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001735 int empty_cluster = 2 * 1024 * 1024;
Chris Mason0ef3e662008-05-24 14:04:53 -04001736 int allowed_chunk_alloc = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001737
Chris Masondb945352007-10-15 16:15:53 -04001738 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04001739 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
1740
Chris Mason0ef3e662008-05-24 14:04:53 -04001741 if (orig_root->ref_cows || empty_size)
1742 allowed_chunk_alloc = 1;
1743
Chris Mason239b14b2008-03-24 15:02:07 -04001744 if (data & BTRFS_BLOCK_GROUP_METADATA) {
1745 last_ptr = &root->fs_info->last_alloc;
Chris Mason8790d502008-04-03 16:29:03 -04001746 empty_cluster = 256 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04001747 }
1748
1749 if ((data & BTRFS_BLOCK_GROUP_DATA) && btrfs_test_opt(root, SSD)) {
1750 last_ptr = &root->fs_info->last_data_alloc;
1751 }
1752
1753 if (last_ptr) {
1754 if (*last_ptr)
1755 hint_byte = *last_ptr;
1756 else {
1757 empty_size += empty_cluster;
1758 }
1759 }
1760
Chris Masona061fc82008-05-07 11:43:44 -04001761 search_start = max(search_start, first_logical_byte(root, 0));
1762 orig_search_start = search_start;
1763
Chris Mason7f93bf82008-03-24 15:01:28 -04001764 if (search_end == (u64)-1)
1765 search_end = btrfs_super_total_bytes(&info->super_copy);
Chris Mason0b86a832008-03-24 15:01:56 -04001766
Chris Masondb945352007-10-15 16:15:53 -04001767 if (hint_byte) {
Chris Mason0ef3e662008-05-24 14:04:53 -04001768 block_group = btrfs_lookup_first_block_group(info, hint_byte);
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001769 if (!block_group)
1770 hint_byte = search_start;
Chris Mason925baed2008-06-25 16:01:30 -04001771 block_group = __btrfs_find_block_group(root, block_group,
Chris Masondb945352007-10-15 16:15:53 -04001772 hint_byte, data, 1);
Chris Mason239b14b2008-03-24 15:02:07 -04001773 if (last_ptr && *last_ptr == 0 && block_group)
1774 hint_byte = block_group->key.objectid;
Chris Masonbe744172007-05-06 10:15:01 -04001775 } else {
Chris Mason925baed2008-06-25 16:01:30 -04001776 block_group = __btrfs_find_block_group(root,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001777 trans->block_group,
1778 search_start, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001779 }
Chris Mason239b14b2008-03-24 15:02:07 -04001780 search_start = max(search_start, hint_byte);
Chris Masonbe744172007-05-06 10:15:01 -04001781
Chris Mason6702ed42007-08-07 16:15:09 -04001782 total_needed += empty_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001783
Chris Masonbe744172007-05-06 10:15:01 -04001784check_failed:
Chris Mason70b043f2007-12-13 09:02:46 -05001785 if (!block_group) {
Chris Mason0ef3e662008-05-24 14:04:53 -04001786 block_group = btrfs_lookup_first_block_group(info,
1787 search_start);
Chris Mason70b043f2007-12-13 09:02:46 -05001788 if (!block_group)
Chris Mason0ef3e662008-05-24 14:04:53 -04001789 block_group = btrfs_lookup_first_block_group(info,
Chris Mason70b043f2007-12-13 09:02:46 -05001790 orig_search_start);
1791 }
Chris Mason0ef3e662008-05-24 14:04:53 -04001792 if (full_scan && !chunk_alloc_done) {
1793 if (allowed_chunk_alloc) {
1794 do_chunk_alloc(trans, root,
1795 num_bytes + 2 * 1024 * 1024, data, 1);
1796 allowed_chunk_alloc = 0;
1797 } else if (block_group && block_group_bits(block_group, data)) {
1798 block_group->space_info->force_alloc = 1;
1799 }
1800 chunk_alloc_done = 1;
1801 }
Chris Mason0b86a832008-03-24 15:01:56 -04001802 ret = find_search_start(root, &block_group, &search_start,
1803 total_needed, data);
Chris Mason239b14b2008-03-24 15:02:07 -04001804 if (ret == -ENOSPC && last_ptr && *last_ptr) {
1805 *last_ptr = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04001806 block_group = btrfs_lookup_first_block_group(info,
1807 orig_search_start);
Chris Mason239b14b2008-03-24 15:02:07 -04001808 search_start = orig_search_start;
1809 ret = find_search_start(root, &block_group, &search_start,
1810 total_needed, data);
1811 }
1812 if (ret == -ENOSPC)
1813 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001814 if (ret)
1815 goto error;
1816
Chris Mason239b14b2008-03-24 15:02:07 -04001817 if (last_ptr && *last_ptr && search_start != *last_ptr) {
1818 *last_ptr = 0;
1819 if (!empty_size) {
1820 empty_size += empty_cluster;
1821 total_needed += empty_size;
1822 }
Chris Mason0ef3e662008-05-24 14:04:53 -04001823 block_group = btrfs_lookup_first_block_group(info,
Chris Mason239b14b2008-03-24 15:02:07 -04001824 orig_search_start);
1825 search_start = orig_search_start;
1826 ret = find_search_start(root, &block_group,
1827 &search_start, total_needed, data);
1828 if (ret == -ENOSPC)
1829 goto enospc;
1830 if (ret)
1831 goto error;
1832 }
1833
Chris Mason87ee04e2007-11-30 11:30:34 -05001834 search_start = stripe_align(root, search_start);
Chris Masonfec577f2007-02-26 10:40:21 -05001835 ins->objectid = search_start;
Chris Mason0b86a832008-03-24 15:01:56 -04001836 ins->offset = num_bytes;
Chris Masone37c9e62007-05-09 20:13:14 -04001837
Chris Masondb945352007-10-15 16:15:53 -04001838 if (ins->objectid + num_bytes >= search_end)
Chris Masoncf675822007-09-17 11:00:51 -04001839 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001840
1841 if (ins->objectid + num_bytes >
1842 block_group->key.objectid + block_group->key.offset) {
Chris Masone19caa52007-10-15 16:17:44 -04001843 search_start = block_group->key.objectid +
1844 block_group->key.offset;
1845 goto new_group;
1846 }
Chris Mason0b86a832008-03-24 15:01:56 -04001847
Chris Mason1a5bc162007-10-15 16:15:26 -04001848 if (test_range_bit(&info->extent_ins, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001849 ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
1850 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001851 goto new_group;
1852 }
Chris Mason0b86a832008-03-24 15:01:56 -04001853
Chris Mason1a5bc162007-10-15 16:15:26 -04001854 if (test_range_bit(&info->pinned_extents, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001855 ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
1856 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001857 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05001858 }
Chris Mason0b86a832008-03-24 15:01:56 -04001859
Chris Masondb945352007-10-15 16:15:53 -04001860 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
Chris Masonf2654de2007-06-26 12:20:46 -04001861 ins->objectid < exclude_start + exclude_nr)) {
1862 search_start = exclude_start + exclude_nr;
1863 goto new_group;
1864 }
Chris Mason0b86a832008-03-24 15:01:56 -04001865
Chris Mason6324fbf2008-03-24 15:01:59 -04001866 if (!(data & BTRFS_BLOCK_GROUP_DATA)) {
Chris Mason5276aed2007-06-11 21:33:38 -04001867 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Mason26b80032007-08-08 20:17:12 -04001868 if (block_group)
1869 trans->block_group = block_group;
Chris Masoncd1bc462007-04-27 10:08:34 -04001870 }
Chris Masondb945352007-10-15 16:15:53 -04001871 ins->offset = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04001872 if (last_ptr) {
1873 *last_ptr = ins->objectid + ins->offset;
1874 if (*last_ptr ==
1875 btrfs_super_total_bytes(&root->fs_info->super_copy)) {
1876 *last_ptr = 0;
1877 }
1878 }
Chris Masonfec577f2007-02-26 10:40:21 -05001879 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04001880
1881new_group:
Chris Masondb945352007-10-15 16:15:53 -04001882 if (search_start + num_bytes >= search_end) {
Chris Masoncf675822007-09-17 11:00:51 -04001883enospc:
Chris Masonbe744172007-05-06 10:15:01 -04001884 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04001885 if (full_scan) {
1886 ret = -ENOSPC;
1887 goto error;
1888 }
Chris Mason6702ed42007-08-07 16:15:09 -04001889 if (wrapped) {
1890 if (!full_scan)
1891 total_needed -= empty_size;
Chris Masonfbdc7622007-05-30 10:22:12 -04001892 full_scan = 1;
Chris Mason6702ed42007-08-07 16:15:09 -04001893 } else
Chris Masonfbdc7622007-05-30 10:22:12 -04001894 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04001895 }
Chris Mason0ef3e662008-05-24 14:04:53 -04001896 block_group = btrfs_lookup_first_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04001897 cond_resched();
Chris Mason925baed2008-06-25 16:01:30 -04001898 block_group = __btrfs_find_block_group(root, block_group,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001899 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04001900 goto check_failed;
1901
Chris Mason0f70abe2007-02-28 16:46:22 -05001902error:
Chris Mason0f70abe2007-02-28 16:46:22 -05001903 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001904}
Chris Masonec44a352008-04-28 15:29:52 -04001905
Chris Masone6dcd2d2008-07-17 12:53:50 -04001906static int __btrfs_reserve_extent(struct btrfs_trans_handle *trans,
1907 struct btrfs_root *root,
1908 u64 num_bytes, u64 min_alloc_size,
1909 u64 empty_size, u64 hint_byte,
1910 u64 search_end, struct btrfs_key *ins,
1911 u64 data)
Chris Masonfec577f2007-02-26 10:40:21 -05001912{
1913 int ret;
Chris Masonfbdc7622007-05-30 10:22:12 -04001914 u64 search_start = 0;
Chris Mason8790d502008-04-03 16:29:03 -04001915 u64 alloc_profile;
Chris Mason1261ec42007-03-20 20:35:03 -04001916 struct btrfs_fs_info *info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04001917
Chris Mason6324fbf2008-03-24 15:01:59 -04001918 if (data) {
Chris Mason8790d502008-04-03 16:29:03 -04001919 alloc_profile = info->avail_data_alloc_bits &
1920 info->data_alloc_profile;
1921 data = BTRFS_BLOCK_GROUP_DATA | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04001922 } else if (root == root->fs_info->chunk_root) {
Chris Mason8790d502008-04-03 16:29:03 -04001923 alloc_profile = info->avail_system_alloc_bits &
1924 info->system_alloc_profile;
1925 data = BTRFS_BLOCK_GROUP_SYSTEM | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04001926 } else {
Chris Mason8790d502008-04-03 16:29:03 -04001927 alloc_profile = info->avail_metadata_alloc_bits &
1928 info->metadata_alloc_profile;
1929 data = BTRFS_BLOCK_GROUP_METADATA | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04001930 }
Chris Mason98d20f62008-04-14 09:46:10 -04001931again:
Chris Masona061fc82008-05-07 11:43:44 -04001932 data = reduce_alloc_profile(root, data);
Chris Mason0ef3e662008-05-24 14:04:53 -04001933 /*
1934 * the only place that sets empty_size is btrfs_realloc_node, which
1935 * is not called recursively on allocations
1936 */
1937 if (empty_size || root->ref_cows) {
Chris Mason593060d2008-03-25 16:50:33 -04001938 if (!(data & BTRFS_BLOCK_GROUP_METADATA)) {
Chris Mason6324fbf2008-03-24 15:01:59 -04001939 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0ef3e662008-05-24 14:04:53 -04001940 2 * 1024 * 1024,
1941 BTRFS_BLOCK_GROUP_METADATA |
1942 (info->metadata_alloc_profile &
1943 info->avail_metadata_alloc_bits), 0);
Chris Mason6324fbf2008-03-24 15:01:59 -04001944 BUG_ON(ret);
1945 }
1946 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0ef3e662008-05-24 14:04:53 -04001947 num_bytes + 2 * 1024 * 1024, data, 0);
Chris Mason6324fbf2008-03-24 15:01:59 -04001948 BUG_ON(ret);
1949 }
Chris Mason0b86a832008-03-24 15:01:56 -04001950
Chris Masondb945352007-10-15 16:15:53 -04001951 WARN_ON(num_bytes < root->sectorsize);
1952 ret = find_free_extent(trans, root, num_bytes, empty_size,
1953 search_start, search_end, hint_byte, ins,
Chris Mason26b80032007-08-08 20:17:12 -04001954 trans->alloc_exclude_start,
1955 trans->alloc_exclude_nr, data);
Chris Mason3b951512008-04-17 11:29:12 -04001956
Chris Mason98d20f62008-04-14 09:46:10 -04001957 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
1958 num_bytes = num_bytes >> 1;
1959 num_bytes = max(num_bytes, min_alloc_size);
Chris Mason0ef3e662008-05-24 14:04:53 -04001960 do_chunk_alloc(trans, root->fs_info->extent_root,
1961 num_bytes, data, 1);
Chris Mason98d20f62008-04-14 09:46:10 -04001962 goto again;
1963 }
Chris Masonec44a352008-04-28 15:29:52 -04001964 if (ret) {
1965 printk("allocation failed flags %Lu\n", data);
Chris Mason925baed2008-06-25 16:01:30 -04001966 BUG();
Chris Mason925baed2008-06-25 16:01:30 -04001967 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001968 clear_extent_dirty(&root->fs_info->free_space_cache,
1969 ins->objectid, ins->objectid + ins->offset - 1,
1970 GFP_NOFS);
1971 return 0;
1972}
1973
1974int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
1975 struct btrfs_root *root,
1976 u64 num_bytes, u64 min_alloc_size,
1977 u64 empty_size, u64 hint_byte,
1978 u64 search_end, struct btrfs_key *ins,
1979 u64 data)
1980{
1981 int ret;
1982 maybe_lock_mutex(root);
1983 ret = __btrfs_reserve_extent(trans, root, num_bytes, min_alloc_size,
1984 empty_size, hint_byte, search_end, ins,
1985 data);
1986 maybe_unlock_mutex(root);
1987 return ret;
1988}
1989
1990static int __btrfs_alloc_reserved_extent(struct btrfs_trans_handle *trans,
1991 struct btrfs_root *root,
1992 u64 root_objectid, u64 ref_generation,
1993 u64 owner, u64 owner_offset,
1994 struct btrfs_key *ins)
1995{
1996 int ret;
1997 int pending_ret;
1998 u64 super_used;
1999 u64 root_used;
2000 u64 num_bytes = ins->offset;
2001 u32 sizes[2];
2002 struct btrfs_fs_info *info = root->fs_info;
2003 struct btrfs_root *extent_root = info->extent_root;
2004 struct btrfs_extent_item *extent_item;
2005 struct btrfs_extent_ref *ref;
2006 struct btrfs_path *path;
2007 struct btrfs_key keys[2];
Chris Masonf2654de2007-06-26 12:20:46 -04002008
Josef Bacik58176a92007-08-29 15:47:34 -04002009 /* block accounting for super block */
Chris Masona2135012008-06-25 16:01:30 -04002010 spin_lock_irq(&info->delalloc_lock);
Chris Masondb945352007-10-15 16:15:53 -04002011 super_used = btrfs_super_bytes_used(&info->super_copy);
2012 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
Chris Masona2135012008-06-25 16:01:30 -04002013 spin_unlock_irq(&info->delalloc_lock);
Chris Mason26b80032007-08-08 20:17:12 -04002014
Josef Bacik58176a92007-08-29 15:47:34 -04002015 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04002016 root_used = btrfs_root_used(&root->root_item);
2017 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04002018
Chris Mason26b80032007-08-08 20:17:12 -04002019 if (root == extent_root) {
Chris Mason1a5bc162007-10-15 16:15:26 -04002020 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
2021 ins->objectid + ins->offset - 1,
2022 EXTENT_LOCKED, GFP_NOFS);
Chris Mason26b80032007-08-08 20:17:12 -04002023 goto update_block;
2024 }
2025
Chris Mason47e4bb92008-02-01 14:51:59 -05002026 memcpy(&keys[0], ins, sizeof(*ins));
2027 keys[1].offset = hash_extent_ref(root_objectid, ref_generation,
2028 owner, owner_offset);
2029 keys[1].objectid = ins->objectid;
2030 keys[1].type = BTRFS_EXTENT_REF_KEY;
2031 sizes[0] = sizeof(*extent_item);
2032 sizes[1] = sizeof(*ref);
Chris Mason7bb86312007-12-11 09:25:06 -05002033
2034 path = btrfs_alloc_path();
2035 BUG_ON(!path);
Chris Mason47e4bb92008-02-01 14:51:59 -05002036
2037 ret = btrfs_insert_empty_items(trans, extent_root, path, keys,
2038 sizes, 2);
Chris Mason26b80032007-08-08 20:17:12 -04002039
Chris Masonccd467d2007-06-28 15:57:36 -04002040 BUG_ON(ret);
Chris Mason47e4bb92008-02-01 14:51:59 -05002041 extent_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2042 struct btrfs_extent_item);
2043 btrfs_set_extent_refs(path->nodes[0], extent_item, 1);
2044 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
2045 struct btrfs_extent_ref);
2046
2047 btrfs_set_ref_root(path->nodes[0], ref, root_objectid);
2048 btrfs_set_ref_generation(path->nodes[0], ref, ref_generation);
2049 btrfs_set_ref_objectid(path->nodes[0], ref, owner);
2050 btrfs_set_ref_offset(path->nodes[0], ref, owner_offset);
2051
2052 btrfs_mark_buffer_dirty(path->nodes[0]);
2053
2054 trans->alloc_exclude_start = 0;
2055 trans->alloc_exclude_nr = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05002056 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04002057 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04002058 pending_ret = del_pending_extents(trans, extent_root);
Chris Masonf510cfe2007-10-15 16:14:48 -04002059
Chris Mason925baed2008-06-25 16:01:30 -04002060 if (ret)
2061 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -04002062 if (pending_ret) {
Chris Mason925baed2008-06-25 16:01:30 -04002063 ret = pending_ret;
2064 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -04002065 }
Chris Mason26b80032007-08-08 20:17:12 -04002066
2067update_block:
Chris Mason0b86a832008-03-24 15:01:56 -04002068 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0);
Chris Masonf5947062008-02-04 10:10:13 -05002069 if (ret) {
2070 printk("update block group failed for %Lu %Lu\n",
2071 ins->objectid, ins->offset);
2072 BUG();
2073 }
Chris Mason925baed2008-06-25 16:01:30 -04002074out:
Chris Masone6dcd2d2008-07-17 12:53:50 -04002075 return ret;
2076}
2077
2078int btrfs_alloc_reserved_extent(struct btrfs_trans_handle *trans,
2079 struct btrfs_root *root,
2080 u64 root_objectid, u64 ref_generation,
2081 u64 owner, u64 owner_offset,
2082 struct btrfs_key *ins)
2083{
2084 int ret;
2085 maybe_lock_mutex(root);
2086 ret = __btrfs_alloc_reserved_extent(trans, root, root_objectid,
2087 ref_generation, owner,
2088 owner_offset, ins);
2089 maybe_unlock_mutex(root);
2090 return ret;
2091}
2092/*
2093 * finds a free extent and does all the dirty work required for allocation
2094 * returns the key for the extent through ins, and a tree buffer for
2095 * the first block of the extent through buf.
2096 *
2097 * returns 0 if everything worked, non-zero otherwise.
2098 */
2099int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
2100 struct btrfs_root *root,
2101 u64 num_bytes, u64 min_alloc_size,
2102 u64 root_objectid, u64 ref_generation,
2103 u64 owner, u64 owner_offset,
2104 u64 empty_size, u64 hint_byte,
2105 u64 search_end, struct btrfs_key *ins, u64 data)
2106{
2107 int ret;
2108
2109 maybe_lock_mutex(root);
2110
2111 ret = __btrfs_reserve_extent(trans, root, num_bytes,
2112 min_alloc_size, empty_size, hint_byte,
2113 search_end, ins, data);
2114 BUG_ON(ret);
2115 ret = __btrfs_alloc_reserved_extent(trans, root, root_objectid,
2116 ref_generation, owner,
2117 owner_offset, ins);
2118 BUG_ON(ret);
2119
Chris Mason925baed2008-06-25 16:01:30 -04002120 maybe_unlock_mutex(root);
2121 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05002122}
Chris Masonfec577f2007-02-26 10:40:21 -05002123/*
2124 * helper function to allocate a block for a given tree
2125 * returns the tree buffer or NULL.
2126 */
Chris Mason5f39d392007-10-15 16:14:19 -04002127struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -04002128 struct btrfs_root *root,
Chris Mason7bb86312007-12-11 09:25:06 -05002129 u32 blocksize,
Chris Mason7bb86312007-12-11 09:25:06 -05002130 u64 root_objectid,
2131 u64 ref_generation,
2132 u64 first_objectid,
2133 int level,
2134 u64 hint,
Chris Mason5f39d392007-10-15 16:14:19 -04002135 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05002136{
Chris Masone2fa7222007-03-12 16:22:34 -04002137 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05002138 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04002139 struct extent_buffer *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05002140
Chris Mason98d20f62008-04-14 09:46:10 -04002141 ret = btrfs_alloc_extent(trans, root, blocksize, blocksize,
Chris Mason7bb86312007-12-11 09:25:06 -05002142 root_objectid, ref_generation,
Chris Masonf6dbff52007-12-13 11:13:32 -05002143 level, first_objectid, empty_size, hint,
Chris Masondb945352007-10-15 16:15:53 -04002144 (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05002145 if (ret) {
Chris Mason54aa1f42007-06-22 14:16:25 -04002146 BUG_ON(ret > 0);
2147 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05002148 }
Chris Masondb945352007-10-15 16:15:53 -04002149 buf = btrfs_find_create_tree_block(root, ins.objectid, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04002150 if (!buf) {
Chris Mason7bb86312007-12-11 09:25:06 -05002151 btrfs_free_extent(trans, root, ins.objectid, blocksize,
2152 root->root_key.objectid, ref_generation,
2153 0, 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04002154 return ERR_PTR(-ENOMEM);
2155 }
Chris Mason55c69072008-01-09 15:55:33 -05002156 btrfs_set_header_generation(buf, trans->transid);
Chris Mason925baed2008-06-25 16:01:30 -04002157 btrfs_tree_lock(buf);
Chris Mason55c69072008-01-09 15:55:33 -05002158 clean_tree_block(trans, root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04002159 btrfs_set_buffer_uptodate(buf);
Chris Mason55c69072008-01-09 15:55:33 -05002160
2161 if (PageDirty(buf->first_page)) {
2162 printk("page %lu dirty\n", buf->first_page->index);
2163 WARN_ON(1);
2164 }
2165
Chris Mason5f39d392007-10-15 16:14:19 -04002166 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
2167 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002168 trans->blocks_used++;
Chris Masonfec577f2007-02-26 10:40:21 -05002169 return buf;
2170}
Chris Masona28ec192007-03-06 20:08:01 -05002171
Chris Mason98ed5172008-01-03 10:01:48 -05002172static int noinline drop_leaf_ref(struct btrfs_trans_handle *trans,
2173 struct btrfs_root *root,
2174 struct extent_buffer *leaf)
Chris Mason6407bf62007-03-27 06:33:00 -04002175{
Chris Mason7bb86312007-12-11 09:25:06 -05002176 u64 leaf_owner;
2177 u64 leaf_generation;
Chris Mason5f39d392007-10-15 16:14:19 -04002178 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04002179 struct btrfs_file_extent_item *fi;
2180 int i;
2181 int nritems;
2182 int ret;
2183
Chris Mason5f39d392007-10-15 16:14:19 -04002184 BUG_ON(!btrfs_is_leaf(leaf));
2185 nritems = btrfs_header_nritems(leaf);
Chris Mason7bb86312007-12-11 09:25:06 -05002186 leaf_owner = btrfs_header_owner(leaf);
2187 leaf_generation = btrfs_header_generation(leaf);
2188
Chris Mason4a096752008-07-21 10:29:44 -04002189 mutex_unlock(&root->fs_info->alloc_mutex);
2190
Chris Mason6407bf62007-03-27 06:33:00 -04002191 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04002192 u64 disk_bytenr;
Chris Masone34a5b42008-07-22 12:08:37 -04002193 cond_resched();
Chris Mason5f39d392007-10-15 16:14:19 -04002194
2195 btrfs_item_key_to_cpu(leaf, &key, i);
2196 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04002197 continue;
2198 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002199 if (btrfs_file_extent_type(leaf, fi) ==
2200 BTRFS_FILE_EXTENT_INLINE)
Chris Mason236454d2007-04-19 13:37:44 -04002201 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04002202 /*
2203 * FIXME make sure to insert a trans record that
2204 * repeats the snapshot del on crash
2205 */
Chris Masondb945352007-10-15 16:15:53 -04002206 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
2207 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04002208 continue;
Chris Mason4a096752008-07-21 10:29:44 -04002209
2210 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason925baed2008-06-25 16:01:30 -04002211 ret = __btrfs_free_extent(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002212 btrfs_file_extent_disk_num_bytes(leaf, fi),
2213 leaf_owner, leaf_generation,
2214 key.objectid, key.offset, 0);
Chris Mason4a096752008-07-21 10:29:44 -04002215 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason6407bf62007-03-27 06:33:00 -04002216 BUG_ON(ret);
2217 }
Chris Mason4a096752008-07-21 10:29:44 -04002218
2219 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason6407bf62007-03-27 06:33:00 -04002220 return 0;
2221}
2222
Chris Mason98ed5172008-01-03 10:01:48 -05002223static void noinline reada_walk_down(struct btrfs_root *root,
Chris Masonbea495e2008-01-24 16:13:14 -05002224 struct extent_buffer *node,
2225 int slot)
Chris Masone0115992007-06-19 16:23:05 -04002226{
Chris Masondb945352007-10-15 16:15:53 -04002227 u64 bytenr;
Chris Masonbea495e2008-01-24 16:13:14 -05002228 u64 last = 0;
2229 u32 nritems;
Chris Masone0115992007-06-19 16:23:05 -04002230 u32 refs;
Chris Masondb945352007-10-15 16:15:53 -04002231 u32 blocksize;
Chris Masonbea495e2008-01-24 16:13:14 -05002232 int ret;
2233 int i;
2234 int level;
2235 int skipped = 0;
Chris Masone0115992007-06-19 16:23:05 -04002236
Chris Mason5f39d392007-10-15 16:14:19 -04002237 nritems = btrfs_header_nritems(node);
Chris Masondb945352007-10-15 16:15:53 -04002238 level = btrfs_header_level(node);
Chris Masonbea495e2008-01-24 16:13:14 -05002239 if (level)
2240 return;
2241
2242 for (i = slot; i < nritems && skipped < 32; i++) {
Chris Masondb945352007-10-15 16:15:53 -04002243 bytenr = btrfs_node_blockptr(node, i);
Chris Masonbea495e2008-01-24 16:13:14 -05002244 if (last && ((bytenr > last && bytenr - last > 32 * 1024) ||
2245 (last > bytenr && last - bytenr > 32 * 1024))) {
2246 skipped++;
Chris Masone0115992007-06-19 16:23:05 -04002247 continue;
Chris Masonbea495e2008-01-24 16:13:14 -05002248 }
2249 blocksize = btrfs_level_size(root, level - 1);
2250 if (i != slot) {
2251 ret = lookup_extent_ref(NULL, root, bytenr,
2252 blocksize, &refs);
2253 BUG_ON(ret);
2254 if (refs != 1) {
2255 skipped++;
2256 continue;
2257 }
2258 }
Chris Masonca7a79a2008-05-12 12:59:19 -04002259 ret = readahead_tree_block(root, bytenr, blocksize,
2260 btrfs_node_ptr_generation(node, i));
Chris Masonbea495e2008-01-24 16:13:14 -05002261 last = bytenr + blocksize;
Chris Mason409eb952007-08-08 20:17:12 -04002262 cond_resched();
Chris Masone0115992007-06-19 16:23:05 -04002263 if (ret)
2264 break;
2265 }
2266}
2267
Chris Mason9aca1d52007-03-13 11:09:37 -04002268/*
Chris Mason333db942008-06-25 16:01:30 -04002269 * we want to avoid as much random IO as we can with the alloc mutex
2270 * held, so drop the lock and do the lookup, then do it again with the
2271 * lock held.
2272 */
2273int drop_snap_lookup_refcount(struct btrfs_root *root, u64 start, u64 len,
2274 u32 *refs)
2275{
2276 mutex_unlock(&root->fs_info->alloc_mutex);
2277 lookup_extent_ref(NULL, root, start, len, refs);
Chris Masone7a84562008-06-25 16:01:31 -04002278 cond_resched();
Chris Mason333db942008-06-25 16:01:30 -04002279 mutex_lock(&root->fs_info->alloc_mutex);
2280 return lookup_extent_ref(NULL, root, start, len, refs);
2281}
2282
2283/*
Chris Mason9aca1d52007-03-13 11:09:37 -04002284 * helper function for drop_snapshot, this walks down the tree dropping ref
2285 * counts as it goes.
2286 */
Chris Mason98ed5172008-01-03 10:01:48 -05002287static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
2288 struct btrfs_root *root,
2289 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002290{
Chris Mason7bb86312007-12-11 09:25:06 -05002291 u64 root_owner;
2292 u64 root_gen;
2293 u64 bytenr;
Chris Masonca7a79a2008-05-12 12:59:19 -04002294 u64 ptr_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04002295 struct extent_buffer *next;
2296 struct extent_buffer *cur;
Chris Mason7bb86312007-12-11 09:25:06 -05002297 struct extent_buffer *parent;
Chris Masondb945352007-10-15 16:15:53 -04002298 u32 blocksize;
Chris Mason20524f02007-03-10 06:35:47 -05002299 int ret;
2300 u32 refs;
2301
Chris Mason925baed2008-06-25 16:01:30 -04002302 mutex_lock(&root->fs_info->alloc_mutex);
2303
Chris Mason5caf2a02007-04-02 11:20:42 -04002304 WARN_ON(*level < 0);
2305 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason333db942008-06-25 16:01:30 -04002306 ret = drop_snap_lookup_refcount(root, path->nodes[*level]->start,
Chris Masondb945352007-10-15 16:15:53 -04002307 path->nodes[*level]->len, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05002308 BUG_ON(ret);
2309 if (refs > 1)
2310 goto out;
Chris Masone0115992007-06-19 16:23:05 -04002311
Chris Mason9aca1d52007-03-13 11:09:37 -04002312 /*
2313 * walk down to the last node level and free all the leaves
2314 */
Chris Mason6407bf62007-03-27 06:33:00 -04002315 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002316 WARN_ON(*level < 0);
2317 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05002318 cur = path->nodes[*level];
Chris Masone0115992007-06-19 16:23:05 -04002319
Chris Mason5f39d392007-10-15 16:14:19 -04002320 if (btrfs_header_level(cur) != *level)
Chris Mason2c90e5d2007-04-02 10:50:19 -04002321 WARN_ON(1);
Chris Masone0115992007-06-19 16:23:05 -04002322
Chris Mason7518a232007-03-12 12:01:18 -04002323 if (path->slots[*level] >=
Chris Mason5f39d392007-10-15 16:14:19 -04002324 btrfs_header_nritems(cur))
Chris Mason20524f02007-03-10 06:35:47 -05002325 break;
Chris Mason6407bf62007-03-27 06:33:00 -04002326 if (*level == 0) {
2327 ret = drop_leaf_ref(trans, root, cur);
2328 BUG_ON(ret);
2329 break;
2330 }
Chris Masondb945352007-10-15 16:15:53 -04002331 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
Chris Masonca7a79a2008-05-12 12:59:19 -04002332 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
Chris Masondb945352007-10-15 16:15:53 -04002333 blocksize = btrfs_level_size(root, *level - 1);
Chris Mason925baed2008-06-25 16:01:30 -04002334
Chris Mason333db942008-06-25 16:01:30 -04002335 ret = drop_snap_lookup_refcount(root, bytenr, blocksize, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04002336 BUG_ON(ret);
2337 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002338 parent = path->nodes[*level];
2339 root_owner = btrfs_header_owner(parent);
2340 root_gen = btrfs_header_generation(parent);
Chris Mason20524f02007-03-10 06:35:47 -05002341 path->slots[*level]++;
Chris Mason925baed2008-06-25 16:01:30 -04002342 ret = __btrfs_free_extent(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002343 blocksize, root_owner,
2344 root_gen, 0, 0, 1);
Chris Mason20524f02007-03-10 06:35:47 -05002345 BUG_ON(ret);
2346 continue;
2347 }
Chris Masondb945352007-10-15 16:15:53 -04002348 next = btrfs_find_tree_block(root, bytenr, blocksize);
Chris Mason1259ab72008-05-12 13:39:03 -04002349 if (!next || !btrfs_buffer_uptodate(next, ptr_gen)) {
Chris Mason5f39d392007-10-15 16:14:19 -04002350 free_extent_buffer(next);
Chris Mason333db942008-06-25 16:01:30 -04002351 mutex_unlock(&root->fs_info->alloc_mutex);
2352
Chris Masona74a4b92008-06-25 16:01:31 -04002353 if (path->slots[*level] == 0)
2354 reada_walk_down(root, cur, path->slots[*level]);
Chris Masone9d0b132007-08-10 14:06:19 -04002355
Chris Masonca7a79a2008-05-12 12:59:19 -04002356 next = read_tree_block(root, bytenr, blocksize,
2357 ptr_gen);
Chris Masone7a84562008-06-25 16:01:31 -04002358 cond_resched();
Chris Mason925baed2008-06-25 16:01:30 -04002359 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason8790d502008-04-03 16:29:03 -04002360
2361 /* we've dropped the lock, double check */
Chris Masone6dcd2d2008-07-17 12:53:50 -04002362 ret = lookup_extent_ref(NULL, root, bytenr, blocksize,
2363 &refs);
Chris Masone9d0b132007-08-10 14:06:19 -04002364 BUG_ON(ret);
2365 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002366 parent = path->nodes[*level];
2367 root_owner = btrfs_header_owner(parent);
2368 root_gen = btrfs_header_generation(parent);
2369
Chris Masone9d0b132007-08-10 14:06:19 -04002370 path->slots[*level]++;
Chris Mason5f39d392007-10-15 16:14:19 -04002371 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04002372 ret = __btrfs_free_extent(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002373 blocksize,
2374 root_owner,
2375 root_gen, 0, 0, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04002376 BUG_ON(ret);
2377 continue;
2378 }
2379 }
Chris Mason5caf2a02007-04-02 11:20:42 -04002380 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04002381 if (path->nodes[*level-1])
Chris Mason5f39d392007-10-15 16:14:19 -04002382 free_extent_buffer(path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05002383 path->nodes[*level-1] = next;
Chris Mason5f39d392007-10-15 16:14:19 -04002384 *level = btrfs_header_level(next);
Chris Mason20524f02007-03-10 06:35:47 -05002385 path->slots[*level] = 0;
2386 }
2387out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002388 WARN_ON(*level < 0);
2389 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason7bb86312007-12-11 09:25:06 -05002390
2391 if (path->nodes[*level] == root->node) {
2392 root_owner = root->root_key.objectid;
2393 parent = path->nodes[*level];
2394 } else {
2395 parent = path->nodes[*level + 1];
2396 root_owner = btrfs_header_owner(parent);
2397 }
2398
2399 root_gen = btrfs_header_generation(parent);
Chris Mason925baed2008-06-25 16:01:30 -04002400 ret = __btrfs_free_extent(trans, root, path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002401 path->nodes[*level]->len,
2402 root_owner, root_gen, 0, 0, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002403 free_extent_buffer(path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05002404 path->nodes[*level] = NULL;
2405 *level += 1;
2406 BUG_ON(ret);
Chris Mason925baed2008-06-25 16:01:30 -04002407 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masone7a84562008-06-25 16:01:31 -04002408 cond_resched();
Chris Mason20524f02007-03-10 06:35:47 -05002409 return 0;
2410}
2411
Chris Mason9aca1d52007-03-13 11:09:37 -04002412/*
2413 * helper for dropping snapshots. This walks back up the tree in the path
2414 * to find the first node higher up where we haven't yet gone through
2415 * all the slots
2416 */
Chris Mason98ed5172008-01-03 10:01:48 -05002417static int noinline walk_up_tree(struct btrfs_trans_handle *trans,
2418 struct btrfs_root *root,
2419 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002420{
Chris Mason7bb86312007-12-11 09:25:06 -05002421 u64 root_owner;
2422 u64 root_gen;
2423 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002424 int i;
2425 int slot;
2426 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04002427
Chris Mason234b63a2007-03-13 10:46:10 -04002428 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05002429 slot = path->slots[i];
Chris Mason5f39d392007-10-15 16:14:19 -04002430 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
2431 struct extent_buffer *node;
2432 struct btrfs_disk_key disk_key;
2433 node = path->nodes[i];
Chris Mason20524f02007-03-10 06:35:47 -05002434 path->slots[i]++;
2435 *level = i;
Chris Mason9f3a7422007-08-07 15:52:19 -04002436 WARN_ON(*level == 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002437 btrfs_node_key(node, &disk_key, path->slots[i]);
Chris Mason9f3a7422007-08-07 15:52:19 -04002438 memcpy(&root_item->drop_progress,
Chris Mason5f39d392007-10-15 16:14:19 -04002439 &disk_key, sizeof(disk_key));
Chris Mason9f3a7422007-08-07 15:52:19 -04002440 root_item->drop_level = i;
Chris Mason20524f02007-03-10 06:35:47 -05002441 return 0;
2442 } else {
Chris Mason7bb86312007-12-11 09:25:06 -05002443 if (path->nodes[*level] == root->node) {
2444 root_owner = root->root_key.objectid;
2445 root_gen =
2446 btrfs_header_generation(path->nodes[*level]);
2447 } else {
2448 struct extent_buffer *node;
2449 node = path->nodes[*level + 1];
2450 root_owner = btrfs_header_owner(node);
2451 root_gen = btrfs_header_generation(node);
2452 }
Chris Masone089f052007-03-16 16:20:31 -04002453 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002454 path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002455 path->nodes[*level]->len,
2456 root_owner, root_gen, 0, 0, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04002457 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002458 free_extent_buffer(path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04002459 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05002460 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05002461 }
2462 }
2463 return 1;
2464}
2465
Chris Mason9aca1d52007-03-13 11:09:37 -04002466/*
2467 * drop the reference count on the tree rooted at 'snap'. This traverses
2468 * the tree freeing any blocks that have a ref count of zero after being
2469 * decremented.
2470 */
Chris Masone089f052007-03-16 16:20:31 -04002471int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04002472 *root)
Chris Mason20524f02007-03-10 06:35:47 -05002473{
Chris Mason3768f362007-03-13 16:47:54 -04002474 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04002475 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05002476 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04002477 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05002478 int i;
2479 int orig_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002480 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002481
Chris Masona2135012008-06-25 16:01:30 -04002482 WARN_ON(!mutex_is_locked(&root->fs_info->drop_mutex));
Chris Mason5caf2a02007-04-02 11:20:42 -04002483 path = btrfs_alloc_path();
2484 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05002485
Chris Mason5f39d392007-10-15 16:14:19 -04002486 level = btrfs_header_level(root->node);
Chris Mason20524f02007-03-10 06:35:47 -05002487 orig_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002488 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2489 path->nodes[level] = root->node;
Chris Masonf510cfe2007-10-15 16:14:48 -04002490 extent_buffer_get(root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -04002491 path->slots[level] = 0;
2492 } else {
2493 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002494 struct btrfs_disk_key found_key;
2495 struct extent_buffer *node;
Chris Mason6702ed42007-08-07 16:15:09 -04002496
Chris Mason9f3a7422007-08-07 15:52:19 -04002497 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Chris Mason6702ed42007-08-07 16:15:09 -04002498 level = root_item->drop_level;
2499 path->lowest_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002500 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason6702ed42007-08-07 16:15:09 -04002501 if (wret < 0) {
Chris Mason9f3a7422007-08-07 15:52:19 -04002502 ret = wret;
2503 goto out;
2504 }
Chris Mason5f39d392007-10-15 16:14:19 -04002505 node = path->nodes[level];
2506 btrfs_node_key(node, &found_key, path->slots[level]);
2507 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2508 sizeof(found_key)));
Chris Mason7d9eb122008-07-08 14:19:17 -04002509 /*
2510 * unlock our path, this is safe because only this
2511 * function is allowed to delete this snapshot
2512 */
Chris Mason925baed2008-06-25 16:01:30 -04002513 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
2514 if (path->nodes[i] && path->locks[i]) {
2515 path->locks[i] = 0;
2516 btrfs_tree_unlock(path->nodes[i]);
2517 }
2518 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002519 }
Chris Mason20524f02007-03-10 06:35:47 -05002520 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002521 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002522 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002523 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002524 if (wret < 0)
2525 ret = wret;
2526
Chris Mason5caf2a02007-04-02 11:20:42 -04002527 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002528 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002529 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002530 if (wret < 0)
2531 ret = wret;
Chris Masone7a84562008-06-25 16:01:31 -04002532 if (trans->transaction->in_commit) {
2533 ret = -EAGAIN;
2534 break;
2535 }
Chris Mason20524f02007-03-10 06:35:47 -05002536 }
Chris Mason83e15a22007-03-12 09:03:27 -04002537 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002538 if (path->nodes[i]) {
Chris Mason5f39d392007-10-15 16:14:19 -04002539 free_extent_buffer(path->nodes[i]);
Chris Mason0f827312007-10-15 16:18:56 -04002540 path->nodes[i] = NULL;
Chris Mason83e15a22007-03-12 09:03:27 -04002541 }
Chris Mason20524f02007-03-10 06:35:47 -05002542 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002543out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002544 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04002545 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05002546}
Chris Mason9078a3e2007-04-26 16:46:15 -04002547
Chris Masonbe744172007-05-06 10:15:01 -04002548int btrfs_free_block_groups(struct btrfs_fs_info *info)
2549{
Chris Masonf510cfe2007-10-15 16:14:48 -04002550 u64 start;
2551 u64 end;
Yanb97f9202007-11-01 11:28:41 -04002552 u64 ptr;
Chris Mason96b51792007-10-15 16:15:19 -04002553 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04002554
2555 mutex_lock(&info->alloc_mutex);
Chris Mason96b51792007-10-15 16:15:19 -04002556 while(1) {
2557 ret = find_first_extent_bit(&info->block_group_cache, 0,
2558 &start, &end, (unsigned int)-1);
2559 if (ret)
2560 break;
Yanb97f9202007-11-01 11:28:41 -04002561 ret = get_state_private(&info->block_group_cache, start, &ptr);
2562 if (!ret)
2563 kfree((void *)(unsigned long)ptr);
Chris Mason96b51792007-10-15 16:15:19 -04002564 clear_extent_bits(&info->block_group_cache, start,
2565 end, (unsigned int)-1, GFP_NOFS);
2566 }
Chris Masone37c9e62007-05-09 20:13:14 -04002567 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -04002568 ret = find_first_extent_bit(&info->free_space_cache, 0,
2569 &start, &end, EXTENT_DIRTY);
2570 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -04002571 break;
Chris Masonf510cfe2007-10-15 16:14:48 -04002572 clear_extent_dirty(&info->free_space_cache, start,
2573 end, GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04002574 }
Chris Mason925baed2008-06-25 16:01:30 -04002575 mutex_unlock(&info->alloc_mutex);
Chris Masonbe744172007-05-06 10:15:01 -04002576 return 0;
2577}
2578
Chris Mason8e7bf942008-04-28 09:02:36 -04002579static unsigned long calc_ra(unsigned long start, unsigned long last,
2580 unsigned long nr)
2581{
2582 return min(last, start + nr - 1);
2583}
2584
Chris Mason98ed5172008-01-03 10:01:48 -05002585static int noinline relocate_inode_pages(struct inode *inode, u64 start,
2586 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05002587{
2588 u64 page_start;
2589 u64 page_end;
Chris Masonedbd8d42007-12-21 16:27:24 -05002590 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05002591 unsigned long i;
2592 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05002593 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05002594 struct file_ra_state *ra;
Chris Mason8e7bf942008-04-28 09:02:36 -04002595 unsigned long total_read = 0;
2596 unsigned long ra_pages;
Chris Masona061fc82008-05-07 11:43:44 -04002597 struct btrfs_trans_handle *trans;
Chris Mason4313b392008-01-03 09:08:48 -05002598
2599 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002600
2601 mutex_lock(&inode->i_mutex);
Chris Mason4313b392008-01-03 09:08:48 -05002602 i = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05002603 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
2604
Chris Mason8e7bf942008-04-28 09:02:36 -04002605 ra_pages = BTRFS_I(inode)->root->fs_info->bdi.ra_pages;
2606
Chris Mason4313b392008-01-03 09:08:48 -05002607 file_ra_state_init(ra, inode->i_mapping);
Chris Masonedbd8d42007-12-21 16:27:24 -05002608
Chris Mason4313b392008-01-03 09:08:48 -05002609 for (; i <= last_index; i++) {
Chris Mason8e7bf942008-04-28 09:02:36 -04002610 if (total_read % ra_pages == 0) {
2611 btrfs_force_ra(inode->i_mapping, ra, NULL, i,
2612 calc_ra(i, last_index, ra_pages));
2613 }
2614 total_read++;
Chris Masona061fc82008-05-07 11:43:44 -04002615 if (((u64)i << PAGE_CACHE_SHIFT) > inode->i_size)
2616 goto truncate_racing;
2617
Chris Masonedbd8d42007-12-21 16:27:24 -05002618 page = grab_cache_page(inode->i_mapping, i);
Chris Masona061fc82008-05-07 11:43:44 -04002619 if (!page) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002620 goto out_unlock;
Chris Masona061fc82008-05-07 11:43:44 -04002621 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002622 if (!PageUptodate(page)) {
2623 btrfs_readpage(NULL, page);
2624 lock_page(page);
2625 if (!PageUptodate(page)) {
2626 unlock_page(page);
2627 page_cache_release(page);
2628 goto out_unlock;
2629 }
2630 }
Chris Masonec44a352008-04-28 15:29:52 -04002631#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
2632 ClearPageDirty(page);
2633#else
2634 cancel_dirty_page(page, PAGE_CACHE_SIZE);
2635#endif
2636 wait_on_page_writeback(page);
2637 set_page_extent_mapped(page);
Chris Masonedbd8d42007-12-21 16:27:24 -05002638 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2639 page_end = page_start + PAGE_CACHE_SIZE - 1;
2640
Chris Masond1310b22008-01-24 16:13:08 -05002641 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002642
Chris Masond1310b22008-01-24 16:13:08 -05002643 set_extent_delalloc(io_tree, page_start,
Chris Masonedbd8d42007-12-21 16:27:24 -05002644 page_end, GFP_NOFS);
Chris Masona061fc82008-05-07 11:43:44 -04002645 set_page_dirty(page);
Chris Masonedbd8d42007-12-21 16:27:24 -05002646
Chris Masond1310b22008-01-24 16:13:08 -05002647 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002648 unlock_page(page);
2649 page_cache_release(page);
2650 }
Chris Masona061fc82008-05-07 11:43:44 -04002651 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
2652 total_read);
Chris Masonedbd8d42007-12-21 16:27:24 -05002653
2654out_unlock:
Chris Masonec44a352008-04-28 15:29:52 -04002655 kfree(ra);
Chris Masona061fc82008-05-07 11:43:44 -04002656 trans = btrfs_start_transaction(BTRFS_I(inode)->root, 1);
2657 if (trans) {
Chris Masona061fc82008-05-07 11:43:44 -04002658 btrfs_end_transaction(trans, BTRFS_I(inode)->root);
2659 mark_inode_dirty(inode);
2660 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002661 mutex_unlock(&inode->i_mutex);
2662 return 0;
Chris Masona061fc82008-05-07 11:43:44 -04002663
2664truncate_racing:
2665 vmtruncate(inode, inode->i_size);
2666 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
2667 total_read);
2668 goto out_unlock;
Chris Masonedbd8d42007-12-21 16:27:24 -05002669}
2670
Chris Mason4313b392008-01-03 09:08:48 -05002671/*
Chris Masonbf4ef672008-05-08 13:26:18 -04002672 * The back references tell us which tree holds a ref on a block,
2673 * but it is possible for the tree root field in the reference to
2674 * reflect the original root before a snapshot was made. In this
2675 * case we should search through all the children of a given root
2676 * to find potential holders of references on a block.
2677 *
2678 * Instead, we do something a little less fancy and just search
2679 * all the roots for a given key/block combination.
2680 */
2681static int find_root_for_ref(struct btrfs_root *root,
2682 struct btrfs_path *path,
2683 struct btrfs_key *key0,
2684 int level,
2685 int file_key,
2686 struct btrfs_root **found_root,
2687 u64 bytenr)
2688{
2689 struct btrfs_key root_location;
2690 struct btrfs_root *cur_root = *found_root;
2691 struct btrfs_file_extent_item *file_extent;
2692 u64 root_search_start = BTRFS_FS_TREE_OBJECTID;
2693 u64 found_bytenr;
2694 int ret;
Chris Masonbf4ef672008-05-08 13:26:18 -04002695
2696 root_location.offset = (u64)-1;
2697 root_location.type = BTRFS_ROOT_ITEM_KEY;
2698 path->lowest_level = level;
2699 path->reada = 0;
2700 while(1) {
2701 ret = btrfs_search_slot(NULL, cur_root, key0, path, 0, 0);
2702 found_bytenr = 0;
2703 if (ret == 0 && file_key) {
2704 struct extent_buffer *leaf = path->nodes[0];
2705 file_extent = btrfs_item_ptr(leaf, path->slots[0],
2706 struct btrfs_file_extent_item);
2707 if (btrfs_file_extent_type(leaf, file_extent) ==
2708 BTRFS_FILE_EXTENT_REG) {
2709 found_bytenr =
2710 btrfs_file_extent_disk_bytenr(leaf,
2711 file_extent);
2712 }
Chris Mason323da792008-05-09 11:46:48 -04002713 } else if (!file_key) {
Chris Masonbf4ef672008-05-08 13:26:18 -04002714 if (path->nodes[level])
2715 found_bytenr = path->nodes[level]->start;
2716 }
2717
Chris Masonbf4ef672008-05-08 13:26:18 -04002718 btrfs_release_path(cur_root, path);
2719
2720 if (found_bytenr == bytenr) {
2721 *found_root = cur_root;
2722 ret = 0;
2723 goto out;
2724 }
2725 ret = btrfs_search_root(root->fs_info->tree_root,
2726 root_search_start, &root_search_start);
2727 if (ret)
2728 break;
2729
2730 root_location.objectid = root_search_start;
2731 cur_root = btrfs_read_fs_root_no_name(root->fs_info,
2732 &root_location);
2733 if (!cur_root) {
2734 ret = 1;
2735 break;
2736 }
2737 }
2738out:
2739 path->lowest_level = 0;
2740 return ret;
2741}
2742
2743/*
Chris Mason4313b392008-01-03 09:08:48 -05002744 * note, this releases the path
2745 */
Chris Mason98ed5172008-01-03 10:01:48 -05002746static int noinline relocate_one_reference(struct btrfs_root *extent_root,
Chris Masonedbd8d42007-12-21 16:27:24 -05002747 struct btrfs_path *path,
Chris Mason0ef3e662008-05-24 14:04:53 -04002748 struct btrfs_key *extent_key,
2749 u64 *last_file_objectid,
2750 u64 *last_file_offset,
2751 u64 *last_file_root,
2752 u64 last_extent)
Chris Masonedbd8d42007-12-21 16:27:24 -05002753{
2754 struct inode *inode;
2755 struct btrfs_root *found_root;
Chris Masonbf4ef672008-05-08 13:26:18 -04002756 struct btrfs_key root_location;
2757 struct btrfs_key found_key;
Chris Mason4313b392008-01-03 09:08:48 -05002758 struct btrfs_extent_ref *ref;
2759 u64 ref_root;
2760 u64 ref_gen;
2761 u64 ref_objectid;
2762 u64 ref_offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05002763 int ret;
Chris Masonbf4ef672008-05-08 13:26:18 -04002764 int level;
Chris Masonedbd8d42007-12-21 16:27:24 -05002765
Chris Mason7d9eb122008-07-08 14:19:17 -04002766 WARN_ON(!mutex_is_locked(&extent_root->fs_info->alloc_mutex));
2767
Chris Mason4313b392008-01-03 09:08:48 -05002768 ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
2769 struct btrfs_extent_ref);
2770 ref_root = btrfs_ref_root(path->nodes[0], ref);
2771 ref_gen = btrfs_ref_generation(path->nodes[0], ref);
2772 ref_objectid = btrfs_ref_objectid(path->nodes[0], ref);
2773 ref_offset = btrfs_ref_offset(path->nodes[0], ref);
2774 btrfs_release_path(extent_root, path);
2775
Chris Masonbf4ef672008-05-08 13:26:18 -04002776 root_location.objectid = ref_root;
Chris Masonedbd8d42007-12-21 16:27:24 -05002777 if (ref_gen == 0)
Chris Masonbf4ef672008-05-08 13:26:18 -04002778 root_location.offset = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002779 else
Chris Masonbf4ef672008-05-08 13:26:18 -04002780 root_location.offset = (u64)-1;
2781 root_location.type = BTRFS_ROOT_ITEM_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05002782
2783 found_root = btrfs_read_fs_root_no_name(extent_root->fs_info,
Chris Masonbf4ef672008-05-08 13:26:18 -04002784 &root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002785 BUG_ON(!found_root);
Chris Mason7d9eb122008-07-08 14:19:17 -04002786 mutex_unlock(&extent_root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05002787
2788 if (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
Chris Masonbf4ef672008-05-08 13:26:18 -04002789 found_key.objectid = ref_objectid;
2790 found_key.type = BTRFS_EXTENT_DATA_KEY;
2791 found_key.offset = ref_offset;
2792 level = 0;
2793
Chris Mason0ef3e662008-05-24 14:04:53 -04002794 if (last_extent == extent_key->objectid &&
2795 *last_file_objectid == ref_objectid &&
2796 *last_file_offset == ref_offset &&
2797 *last_file_root == ref_root)
2798 goto out;
2799
Chris Masonbf4ef672008-05-08 13:26:18 -04002800 ret = find_root_for_ref(extent_root, path, &found_key,
2801 level, 1, &found_root,
2802 extent_key->objectid);
2803
2804 if (ret)
2805 goto out;
2806
Chris Mason0ef3e662008-05-24 14:04:53 -04002807 if (last_extent == extent_key->objectid &&
2808 *last_file_objectid == ref_objectid &&
2809 *last_file_offset == ref_offset &&
2810 *last_file_root == ref_root)
2811 goto out;
2812
Chris Masonedbd8d42007-12-21 16:27:24 -05002813 inode = btrfs_iget_locked(extent_root->fs_info->sb,
2814 ref_objectid, found_root);
2815 if (inode->i_state & I_NEW) {
2816 /* the inode and parent dir are two different roots */
2817 BTRFS_I(inode)->root = found_root;
2818 BTRFS_I(inode)->location.objectid = ref_objectid;
2819 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
2820 BTRFS_I(inode)->location.offset = 0;
2821 btrfs_read_locked_inode(inode);
2822 unlock_new_inode(inode);
2823
2824 }
2825 /* this can happen if the reference is not against
2826 * the latest version of the tree root
2827 */
Chris Mason7d9eb122008-07-08 14:19:17 -04002828 if (is_bad_inode(inode))
Chris Masonedbd8d42007-12-21 16:27:24 -05002829 goto out;
Chris Mason7d9eb122008-07-08 14:19:17 -04002830
Chris Mason0ef3e662008-05-24 14:04:53 -04002831 *last_file_objectid = inode->i_ino;
2832 *last_file_root = found_root->root_key.objectid;
2833 *last_file_offset = ref_offset;
2834
Chris Masonedbd8d42007-12-21 16:27:24 -05002835 relocate_inode_pages(inode, ref_offset, extent_key->offset);
Chris Masonedbd8d42007-12-21 16:27:24 -05002836 iput(inode);
Chris Masonedbd8d42007-12-21 16:27:24 -05002837 } else {
2838 struct btrfs_trans_handle *trans;
Chris Masonedbd8d42007-12-21 16:27:24 -05002839 struct extent_buffer *eb;
Chris Mason7d9eb122008-07-08 14:19:17 -04002840 int needs_lock = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002841
Chris Masonedbd8d42007-12-21 16:27:24 -05002842 eb = read_tree_block(found_root, extent_key->objectid,
Chris Masonca7a79a2008-05-12 12:59:19 -04002843 extent_key->offset, 0);
Chris Mason925baed2008-06-25 16:01:30 -04002844 btrfs_tree_lock(eb);
Chris Masonedbd8d42007-12-21 16:27:24 -05002845 level = btrfs_header_level(eb);
2846
2847 if (level == 0)
2848 btrfs_item_key_to_cpu(eb, &found_key, 0);
2849 else
2850 btrfs_node_key_to_cpu(eb, &found_key, 0);
2851
Chris Mason925baed2008-06-25 16:01:30 -04002852 btrfs_tree_unlock(eb);
Chris Masonedbd8d42007-12-21 16:27:24 -05002853 free_extent_buffer(eb);
2854
Chris Masonbf4ef672008-05-08 13:26:18 -04002855 ret = find_root_for_ref(extent_root, path, &found_key,
2856 level, 0, &found_root,
2857 extent_key->objectid);
2858
2859 if (ret)
2860 goto out;
2861
Chris Mason7d9eb122008-07-08 14:19:17 -04002862 /*
2863 * right here almost anything could happen to our key,
2864 * but that's ok. The cow below will either relocate it
2865 * or someone else will have relocated it. Either way,
2866 * it is in a different spot than it was before and
2867 * we're happy.
2868 */
2869
Chris Masonbf4ef672008-05-08 13:26:18 -04002870 trans = btrfs_start_transaction(found_root, 1);
2871
Chris Mason7d9eb122008-07-08 14:19:17 -04002872 if (found_root == extent_root->fs_info->extent_root ||
2873 found_root == extent_root->fs_info->chunk_root ||
2874 found_root == extent_root->fs_info->dev_root) {
2875 needs_lock = 1;
2876 mutex_lock(&extent_root->fs_info->alloc_mutex);
2877 }
2878
Chris Masonedbd8d42007-12-21 16:27:24 -05002879 path->lowest_level = level;
Chris Mason8f662a72008-01-02 10:01:11 -05002880 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002881 ret = btrfs_search_slot(trans, found_root, &found_key, path,
2882 0, 1);
2883 path->lowest_level = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002884 btrfs_release_path(found_root, path);
Chris Mason7d9eb122008-07-08 14:19:17 -04002885
Chris Mason0ef3e662008-05-24 14:04:53 -04002886 if (found_root == found_root->fs_info->extent_root)
2887 btrfs_extent_post_op(trans, found_root);
Chris Mason7d9eb122008-07-08 14:19:17 -04002888 if (needs_lock)
2889 mutex_unlock(&extent_root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05002890
Chris Mason7d9eb122008-07-08 14:19:17 -04002891 btrfs_end_transaction(trans, found_root);
2892
2893 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002894out:
Chris Mason7d9eb122008-07-08 14:19:17 -04002895 mutex_lock(&extent_root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05002896 return 0;
2897}
2898
Chris Masona061fc82008-05-07 11:43:44 -04002899static int noinline del_extent_zero(struct btrfs_root *extent_root,
2900 struct btrfs_path *path,
2901 struct btrfs_key *extent_key)
2902{
2903 int ret;
2904 struct btrfs_trans_handle *trans;
2905
2906 trans = btrfs_start_transaction(extent_root, 1);
2907 ret = btrfs_search_slot(trans, extent_root, extent_key, path, -1, 1);
2908 if (ret > 0) {
2909 ret = -EIO;
2910 goto out;
2911 }
2912 if (ret < 0)
2913 goto out;
2914 ret = btrfs_del_item(trans, extent_root, path);
2915out:
2916 btrfs_end_transaction(trans, extent_root);
2917 return ret;
2918}
2919
Chris Mason98ed5172008-01-03 10:01:48 -05002920static int noinline relocate_one_extent(struct btrfs_root *extent_root,
2921 struct btrfs_path *path,
2922 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002923{
2924 struct btrfs_key key;
2925 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002926 struct extent_buffer *leaf;
Chris Mason0ef3e662008-05-24 14:04:53 -04002927 u64 last_file_objectid = 0;
2928 u64 last_file_root = 0;
2929 u64 last_file_offset = (u64)-1;
2930 u64 last_extent = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002931 u32 nritems;
2932 u32 item_size;
2933 int ret = 0;
2934
Chris Masona061fc82008-05-07 11:43:44 -04002935 if (extent_key->objectid == 0) {
2936 ret = del_extent_zero(extent_root, path, extent_key);
2937 goto out;
2938 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002939 key.objectid = extent_key->objectid;
2940 key.type = BTRFS_EXTENT_REF_KEY;
2941 key.offset = 0;
2942
2943 while(1) {
2944 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2945
Chris Masonedbd8d42007-12-21 16:27:24 -05002946 if (ret < 0)
2947 goto out;
2948
2949 ret = 0;
2950 leaf = path->nodes[0];
2951 nritems = btrfs_header_nritems(leaf);
Chris Masona061fc82008-05-07 11:43:44 -04002952 if (path->slots[0] == nritems) {
2953 ret = btrfs_next_leaf(extent_root, path);
2954 if (ret > 0) {
2955 ret = 0;
2956 goto out;
2957 }
2958 if (ret < 0)
2959 goto out;
Chris Masonbf4ef672008-05-08 13:26:18 -04002960 leaf = path->nodes[0];
Chris Masona061fc82008-05-07 11:43:44 -04002961 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002962
2963 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masona061fc82008-05-07 11:43:44 -04002964 if (found_key.objectid != extent_key->objectid) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002965 break;
Chris Masona061fc82008-05-07 11:43:44 -04002966 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002967
Chris Masona061fc82008-05-07 11:43:44 -04002968 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002969 break;
Chris Masona061fc82008-05-07 11:43:44 -04002970 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002971
2972 key.offset = found_key.offset + 1;
2973 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2974
Chris Mason0ef3e662008-05-24 14:04:53 -04002975 ret = relocate_one_reference(extent_root, path, extent_key,
2976 &last_file_objectid,
2977 &last_file_offset,
2978 &last_file_root, last_extent);
Chris Masonedbd8d42007-12-21 16:27:24 -05002979 if (ret)
2980 goto out;
Chris Mason0ef3e662008-05-24 14:04:53 -04002981 last_extent = extent_key->objectid;
Chris Masonedbd8d42007-12-21 16:27:24 -05002982 }
2983 ret = 0;
2984out:
2985 btrfs_release_path(extent_root, path);
2986 return ret;
2987}
2988
Chris Masonec44a352008-04-28 15:29:52 -04002989static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
2990{
2991 u64 num_devices;
2992 u64 stripped = BTRFS_BLOCK_GROUP_RAID0 |
2993 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
2994
Chris Masona061fc82008-05-07 11:43:44 -04002995 num_devices = root->fs_info->fs_devices->num_devices;
Chris Masonec44a352008-04-28 15:29:52 -04002996 if (num_devices == 1) {
2997 stripped |= BTRFS_BLOCK_GROUP_DUP;
2998 stripped = flags & ~stripped;
2999
3000 /* turn raid0 into single device chunks */
3001 if (flags & BTRFS_BLOCK_GROUP_RAID0)
3002 return stripped;
3003
3004 /* turn mirroring into duplication */
3005 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
3006 BTRFS_BLOCK_GROUP_RAID10))
3007 return stripped | BTRFS_BLOCK_GROUP_DUP;
3008 return flags;
3009 } else {
3010 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04003011 if (flags & stripped)
3012 return flags;
3013
3014 stripped |= BTRFS_BLOCK_GROUP_DUP;
3015 stripped = flags & ~stripped;
3016
3017 /* switch duplicated blocks with raid1 */
3018 if (flags & BTRFS_BLOCK_GROUP_DUP)
3019 return stripped | BTRFS_BLOCK_GROUP_RAID1;
3020
3021 /* turn single device chunks into raid0 */
3022 return stripped | BTRFS_BLOCK_GROUP_RAID0;
3023 }
3024 return flags;
3025}
3026
Chris Mason0ef3e662008-05-24 14:04:53 -04003027int __alloc_chunk_for_shrink(struct btrfs_root *root,
3028 struct btrfs_block_group_cache *shrink_block_group,
3029 int force)
3030{
3031 struct btrfs_trans_handle *trans;
3032 u64 new_alloc_flags;
3033 u64 calc;
3034
3035 if (btrfs_block_group_used(&shrink_block_group->item) > 0) {
3036
Chris Mason7d9eb122008-07-08 14:19:17 -04003037 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason0ef3e662008-05-24 14:04:53 -04003038 trans = btrfs_start_transaction(root, 1);
Chris Mason7d9eb122008-07-08 14:19:17 -04003039 mutex_lock(&root->fs_info->alloc_mutex);
3040
Chris Mason0ef3e662008-05-24 14:04:53 -04003041 new_alloc_flags = update_block_group_flags(root,
3042 shrink_block_group->flags);
3043 if (new_alloc_flags != shrink_block_group->flags) {
3044 calc =
3045 btrfs_block_group_used(&shrink_block_group->item);
3046 } else {
3047 calc = shrink_block_group->key.offset;
3048 }
3049 do_chunk_alloc(trans, root->fs_info->extent_root,
3050 calc + 2 * 1024 * 1024, new_alloc_flags, force);
Chris Mason7d9eb122008-07-08 14:19:17 -04003051
3052 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason0ef3e662008-05-24 14:04:53 -04003053 btrfs_end_transaction(trans, root);
Chris Mason7d9eb122008-07-08 14:19:17 -04003054 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason0ef3e662008-05-24 14:04:53 -04003055 }
3056 return 0;
3057}
3058
Chris Mason8f18cf12008-04-25 16:53:30 -04003059int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 shrink_start)
Chris Masonedbd8d42007-12-21 16:27:24 -05003060{
3061 struct btrfs_trans_handle *trans;
3062 struct btrfs_root *tree_root = root->fs_info->tree_root;
3063 struct btrfs_path *path;
3064 u64 cur_byte;
3065 u64 total_found;
Chris Mason8f18cf12008-04-25 16:53:30 -04003066 u64 shrink_last_byte;
3067 struct btrfs_block_group_cache *shrink_block_group;
Chris Masonedbd8d42007-12-21 16:27:24 -05003068 struct btrfs_fs_info *info = root->fs_info;
Chris Masonedbd8d42007-12-21 16:27:24 -05003069 struct btrfs_key key;
Yan73e48b22008-01-03 14:14:39 -05003070 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05003071 struct extent_buffer *leaf;
3072 u32 nritems;
3073 int ret;
Chris Masona061fc82008-05-07 11:43:44 -04003074 int progress;
Chris Masonedbd8d42007-12-21 16:27:24 -05003075
Chris Mason925baed2008-06-25 16:01:30 -04003076 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04003077 shrink_block_group = btrfs_lookup_block_group(root->fs_info,
3078 shrink_start);
3079 BUG_ON(!shrink_block_group);
3080
Chris Mason0ef3e662008-05-24 14:04:53 -04003081 shrink_last_byte = shrink_block_group->key.objectid +
3082 shrink_block_group->key.offset;
Chris Mason8f18cf12008-04-25 16:53:30 -04003083
3084 shrink_block_group->space_info->total_bytes -=
3085 shrink_block_group->key.offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05003086 path = btrfs_alloc_path();
3087 root = root->fs_info->extent_root;
Chris Mason8f662a72008-01-02 10:01:11 -05003088 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05003089
Chris Mason323da792008-05-09 11:46:48 -04003090 printk("btrfs relocating block group %llu flags %llu\n",
3091 (unsigned long long)shrink_start,
3092 (unsigned long long)shrink_block_group->flags);
3093
Chris Mason0ef3e662008-05-24 14:04:53 -04003094 __alloc_chunk_for_shrink(root, shrink_block_group, 1);
Chris Mason323da792008-05-09 11:46:48 -04003095
Chris Mason0ef3e662008-05-24 14:04:53 -04003096again:
3097
Chris Mason8f18cf12008-04-25 16:53:30 -04003098 shrink_block_group->ro = 1;
3099
Chris Masonedbd8d42007-12-21 16:27:24 -05003100 total_found = 0;
Chris Masona061fc82008-05-07 11:43:44 -04003101 progress = 0;
Chris Mason8f18cf12008-04-25 16:53:30 -04003102 key.objectid = shrink_start;
Chris Masonedbd8d42007-12-21 16:27:24 -05003103 key.offset = 0;
3104 key.type = 0;
Yan73e48b22008-01-03 14:14:39 -05003105 cur_byte = key.objectid;
Chris Mason4313b392008-01-03 09:08:48 -05003106
Yan73e48b22008-01-03 14:14:39 -05003107 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3108 if (ret < 0)
3109 goto out;
3110
Chris Mason0b86a832008-03-24 15:01:56 -04003111 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
Yan73e48b22008-01-03 14:14:39 -05003112 if (ret < 0)
3113 goto out;
Chris Mason8f18cf12008-04-25 16:53:30 -04003114
Yan73e48b22008-01-03 14:14:39 -05003115 if (ret == 0) {
3116 leaf = path->nodes[0];
3117 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04003118 if (found_key.objectid + found_key.offset > shrink_start &&
3119 found_key.objectid < shrink_last_byte) {
Yan73e48b22008-01-03 14:14:39 -05003120 cur_byte = found_key.objectid;
3121 key.objectid = cur_byte;
3122 }
3123 }
3124 btrfs_release_path(root, path);
3125
3126 while(1) {
Chris Masonedbd8d42007-12-21 16:27:24 -05003127 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3128 if (ret < 0)
3129 goto out;
Yan73e48b22008-01-03 14:14:39 -05003130
Chris Mason7d9eb122008-07-08 14:19:17 -04003131next:
Chris Masonedbd8d42007-12-21 16:27:24 -05003132 leaf = path->nodes[0];
Chris Masonedbd8d42007-12-21 16:27:24 -05003133 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05003134 if (path->slots[0] >= nritems) {
3135 ret = btrfs_next_leaf(root, path);
3136 if (ret < 0)
3137 goto out;
3138 if (ret == 1) {
3139 ret = 0;
3140 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05003141 }
Yan73e48b22008-01-03 14:14:39 -05003142 leaf = path->nodes[0];
3143 nritems = btrfs_header_nritems(leaf);
3144 }
3145
3146 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason725c8462008-01-04 16:47:16 -05003147
Chris Mason8f18cf12008-04-25 16:53:30 -04003148 if (found_key.objectid >= shrink_last_byte)
3149 break;
3150
Chris Mason725c8462008-01-04 16:47:16 -05003151 if (progress && need_resched()) {
3152 memcpy(&key, &found_key, sizeof(key));
Chris Mason725c8462008-01-04 16:47:16 -05003153 cond_resched();
Chris Mason725c8462008-01-04 16:47:16 -05003154 btrfs_release_path(root, path);
3155 btrfs_search_slot(NULL, root, &key, path, 0, 0);
3156 progress = 0;
3157 goto next;
3158 }
3159 progress = 1;
3160
Yan73e48b22008-01-03 14:14:39 -05003161 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_ITEM_KEY ||
3162 found_key.objectid + found_key.offset <= cur_byte) {
Chris Mason0ef3e662008-05-24 14:04:53 -04003163 memcpy(&key, &found_key, sizeof(key));
3164 key.offset++;
Yan73e48b22008-01-03 14:14:39 -05003165 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05003166 goto next;
3167 }
Yan73e48b22008-01-03 14:14:39 -05003168
Chris Masonedbd8d42007-12-21 16:27:24 -05003169 total_found++;
3170 cur_byte = found_key.objectid + found_key.offset;
3171 key.objectid = cur_byte;
3172 btrfs_release_path(root, path);
3173 ret = relocate_one_extent(root, path, &found_key);
Chris Mason0ef3e662008-05-24 14:04:53 -04003174 __alloc_chunk_for_shrink(root, shrink_block_group, 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05003175 }
3176
3177 btrfs_release_path(root, path);
3178
3179 if (total_found > 0) {
Chris Mason323da792008-05-09 11:46:48 -04003180 printk("btrfs relocate found %llu last extent was %llu\n",
3181 (unsigned long long)total_found,
3182 (unsigned long long)found_key.objectid);
Chris Mason7d9eb122008-07-08 14:19:17 -04003183 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003184 trans = btrfs_start_transaction(tree_root, 1);
3185 btrfs_commit_transaction(trans, tree_root);
3186
Chris Masonedbd8d42007-12-21 16:27:24 -05003187 btrfs_clean_old_snapshots(tree_root);
Chris Masonedbd8d42007-12-21 16:27:24 -05003188
3189 trans = btrfs_start_transaction(tree_root, 1);
3190 btrfs_commit_transaction(trans, tree_root);
Chris Mason7d9eb122008-07-08 14:19:17 -04003191 mutex_lock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003192 goto again;
3193 }
3194
Chris Mason8f18cf12008-04-25 16:53:30 -04003195 /*
3196 * we've freed all the extents, now remove the block
3197 * group item from the tree
3198 */
Chris Mason7d9eb122008-07-08 14:19:17 -04003199 mutex_unlock(&root->fs_info->alloc_mutex);
3200
Chris Masonedbd8d42007-12-21 16:27:24 -05003201 trans = btrfs_start_transaction(root, 1);
Chris Mason7d9eb122008-07-08 14:19:17 -04003202 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason8f18cf12008-04-25 16:53:30 -04003203 memcpy(&key, &shrink_block_group->key, sizeof(key));
Chris Mason4313b392008-01-03 09:08:48 -05003204
Chris Mason8f18cf12008-04-25 16:53:30 -04003205 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3206 if (ret > 0)
3207 ret = -EIO;
3208 if (ret < 0)
3209 goto out;
Yan73e48b22008-01-03 14:14:39 -05003210
Chris Mason0ef3e662008-05-24 14:04:53 -04003211 clear_extent_bits(&info->block_group_cache, key.objectid,
3212 key.objectid + key.offset - 1,
Chris Mason8f18cf12008-04-25 16:53:30 -04003213 (unsigned int)-1, GFP_NOFS);
Yan73e48b22008-01-03 14:14:39 -05003214
Chris Mason0ef3e662008-05-24 14:04:53 -04003215
3216 clear_extent_bits(&info->free_space_cache,
3217 key.objectid, key.objectid + key.offset - 1,
3218 (unsigned int)-1, GFP_NOFS);
3219
3220 memset(shrink_block_group, 0, sizeof(*shrink_block_group));
3221 kfree(shrink_block_group);
3222
Chris Mason8f18cf12008-04-25 16:53:30 -04003223 btrfs_del_item(trans, root, path);
Chris Mason7d9eb122008-07-08 14:19:17 -04003224 btrfs_release_path(root, path);
3225 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003226 btrfs_commit_transaction(trans, root);
Chris Mason0ef3e662008-05-24 14:04:53 -04003227
Chris Mason7d9eb122008-07-08 14:19:17 -04003228 mutex_lock(&root->fs_info->alloc_mutex);
3229
Chris Mason0ef3e662008-05-24 14:04:53 -04003230 /* the code to unpin extents might set a few bits in the free
3231 * space cache for this range again
3232 */
3233 clear_extent_bits(&info->free_space_cache,
3234 key.objectid, key.objectid + key.offset - 1,
3235 (unsigned int)-1, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05003236out:
3237 btrfs_free_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04003238 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05003239 return ret;
3240}
3241
Chris Mason0b86a832008-03-24 15:01:56 -04003242int find_first_block_group(struct btrfs_root *root, struct btrfs_path *path,
3243 struct btrfs_key *key)
3244{
Chris Mason925baed2008-06-25 16:01:30 -04003245 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003246 struct btrfs_key found_key;
3247 struct extent_buffer *leaf;
3248 int slot;
3249
3250 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
3251 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04003252 goto out;
3253
Chris Mason0b86a832008-03-24 15:01:56 -04003254 while(1) {
3255 slot = path->slots[0];
3256 leaf = path->nodes[0];
3257 if (slot >= btrfs_header_nritems(leaf)) {
3258 ret = btrfs_next_leaf(root, path);
3259 if (ret == 0)
3260 continue;
3261 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04003262 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04003263 break;
3264 }
3265 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3266
3267 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04003268 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
3269 ret = 0;
3270 goto out;
3271 }
Chris Mason0b86a832008-03-24 15:01:56 -04003272 path->slots[0]++;
3273 }
3274 ret = -ENOENT;
Chris Mason925baed2008-06-25 16:01:30 -04003275out:
Chris Mason0b86a832008-03-24 15:01:56 -04003276 return ret;
3277}
3278
Chris Mason9078a3e2007-04-26 16:46:15 -04003279int btrfs_read_block_groups(struct btrfs_root *root)
3280{
3281 struct btrfs_path *path;
3282 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04003283 int bit;
Chris Mason9078a3e2007-04-26 16:46:15 -04003284 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04003285 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04003286 struct btrfs_space_info *space_info;
Chris Masond1310b22008-01-24 16:13:08 -05003287 struct extent_io_tree *block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04003288 struct btrfs_key key;
3289 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04003290 struct extent_buffer *leaf;
Chris Mason96b51792007-10-15 16:15:19 -04003291
3292 block_group_cache = &info->block_group_cache;
Chris Masonbe744172007-05-06 10:15:01 -04003293 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04003294 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003295 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003296 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04003297 path = btrfs_alloc_path();
3298 if (!path)
3299 return -ENOMEM;
3300
Chris Mason925baed2008-06-25 16:01:30 -04003301 mutex_lock(&root->fs_info->alloc_mutex);
Chris Mason9078a3e2007-04-26 16:46:15 -04003302 while(1) {
Chris Mason0b86a832008-03-24 15:01:56 -04003303 ret = find_first_block_group(root, path, &key);
3304 if (ret > 0) {
3305 ret = 0;
3306 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04003307 }
Chris Mason0b86a832008-03-24 15:01:56 -04003308 if (ret != 0)
3309 goto error;
3310
Chris Mason5f39d392007-10-15 16:14:19 -04003311 leaf = path->nodes[0];
3312 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04003313 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04003314 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04003315 ret = -ENOMEM;
Chris Mason9078a3e2007-04-26 16:46:15 -04003316 break;
3317 }
Chris Mason3e1ad542007-05-07 20:03:49 -04003318
Chris Mason5f39d392007-10-15 16:14:19 -04003319 read_extent_buffer(leaf, &cache->item,
3320 btrfs_item_ptr_offset(leaf, path->slots[0]),
3321 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04003322 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason0b86a832008-03-24 15:01:56 -04003323
Chris Mason9078a3e2007-04-26 16:46:15 -04003324 key.objectid = found_key.objectid + found_key.offset;
3325 btrfs_release_path(root, path);
Chris Mason0b86a832008-03-24 15:01:56 -04003326 cache->flags = btrfs_block_group_flags(&cache->item);
3327 bit = 0;
3328 if (cache->flags & BTRFS_BLOCK_GROUP_DATA) {
Chris Mason96b51792007-10-15 16:15:19 -04003329 bit = BLOCK_GROUP_DATA;
Chris Mason0b86a832008-03-24 15:01:56 -04003330 } else if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
3331 bit = BLOCK_GROUP_SYSTEM;
3332 } else if (cache->flags & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason96b51792007-10-15 16:15:19 -04003333 bit = BLOCK_GROUP_METADATA;
Chris Mason31f3c992007-04-30 15:25:45 -04003334 }
Chris Mason8790d502008-04-03 16:29:03 -04003335 set_avail_alloc_bits(info, cache->flags);
Chris Mason96b51792007-10-15 16:15:19 -04003336
Chris Mason6324fbf2008-03-24 15:01:59 -04003337 ret = update_space_info(info, cache->flags, found_key.offset,
3338 btrfs_block_group_used(&cache->item),
3339 &space_info);
3340 BUG_ON(ret);
3341 cache->space_info = space_info;
3342
Chris Mason96b51792007-10-15 16:15:19 -04003343 /* use EXTENT_LOCKED to prevent merging */
3344 set_extent_bits(block_group_cache, found_key.objectid,
3345 found_key.objectid + found_key.offset - 1,
3346 bit | EXTENT_LOCKED, GFP_NOFS);
3347 set_state_private(block_group_cache, found_key.objectid,
Jens Axboeae2f5412007-10-19 09:22:59 -04003348 (unsigned long)cache);
Chris Mason96b51792007-10-15 16:15:19 -04003349
Chris Mason9078a3e2007-04-26 16:46:15 -04003350 if (key.objectid >=
Chris Masondb945352007-10-15 16:15:53 -04003351 btrfs_super_total_bytes(&info->super_copy))
Chris Mason9078a3e2007-04-26 16:46:15 -04003352 break;
3353 }
Chris Mason0b86a832008-03-24 15:01:56 -04003354 ret = 0;
3355error:
Chris Mason9078a3e2007-04-26 16:46:15 -04003356 btrfs_free_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04003357 mutex_unlock(&root->fs_info->alloc_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -04003358 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003359}
Chris Mason6324fbf2008-03-24 15:01:59 -04003360
3361int btrfs_make_block_group(struct btrfs_trans_handle *trans,
3362 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04003363 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04003364 u64 size)
3365{
3366 int ret;
3367 int bit = 0;
3368 struct btrfs_root *extent_root;
3369 struct btrfs_block_group_cache *cache;
3370 struct extent_io_tree *block_group_cache;
3371
Chris Mason7d9eb122008-07-08 14:19:17 -04003372 WARN_ON(!mutex_is_locked(&root->fs_info->alloc_mutex));
Chris Mason6324fbf2008-03-24 15:01:59 -04003373 extent_root = root->fs_info->extent_root;
3374 block_group_cache = &root->fs_info->block_group_cache;
3375
Chris Mason8f18cf12008-04-25 16:53:30 -04003376 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason6324fbf2008-03-24 15:01:59 -04003377 BUG_ON(!cache);
Chris Masone17cade2008-04-15 15:41:47 -04003378 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04003379 cache->key.offset = size;
Chris Mason6324fbf2008-03-24 15:01:59 -04003380 btrfs_set_key_type(&cache->key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason0ef3e662008-05-24 14:04:53 -04003381
Chris Mason6324fbf2008-03-24 15:01:59 -04003382 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04003383 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
3384 cache->flags = type;
3385 btrfs_set_block_group_flags(&cache->item, type);
3386
3387 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
3388 &cache->space_info);
3389 BUG_ON(ret);
3390
Chris Masond18a2c42008-04-04 15:40:00 -04003391 bit = block_group_state_bits(type);
Chris Masone17cade2008-04-15 15:41:47 -04003392 set_extent_bits(block_group_cache, chunk_offset,
3393 chunk_offset + size - 1,
Chris Mason6324fbf2008-03-24 15:01:59 -04003394 bit | EXTENT_LOCKED, GFP_NOFS);
Chris Mason6324fbf2008-03-24 15:01:59 -04003395
Chris Masone17cade2008-04-15 15:41:47 -04003396 set_state_private(block_group_cache, chunk_offset,
3397 (unsigned long)cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04003398 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
3399 sizeof(cache->item));
3400 BUG_ON(ret);
3401
3402 finish_current_insert(trans, extent_root);
3403 ret = del_pending_extents(trans, extent_root);
3404 BUG_ON(ret);
Chris Masond18a2c42008-04-04 15:40:00 -04003405 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04003406
Chris Mason6324fbf2008-03-24 15:01:59 -04003407 return 0;
3408}