blob: 239e9d8669cbf0cfb21cdba891c9987e91592c6c [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 */
18
Zach Brownec6b9102007-07-11 10:00:37 -040019#include <linux/sched.h>
Chris Mason7bb86312007-12-11 09:25:06 -050020#include <linux/crc32c.h>
Chris Masonedbd8d42007-12-21 16:27:24 -050021#include <linux/pagemap.h>
Chris Mason74493f72007-12-11 09:25:06 -050022#include "hash.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 Masonfec577f2007-02-26 10:40:21 -050027
Chris Mason96b51792007-10-15 16:15:19 -040028#define BLOCK_GROUP_DATA EXTENT_WRITEBACK
29#define BLOCK_GROUP_METADATA EXTENT_UPTODATE
30#define BLOCK_GROUP_DIRTY EXTENT_DIRTY
31
Chris Masone089f052007-03-16 16:20:31 -040032static int finish_current_insert(struct btrfs_trans_handle *trans, struct
33 btrfs_root *extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -040034static int del_pending_extents(struct btrfs_trans_handle *trans, struct
35 btrfs_root *extent_root);
Yand548ee52008-01-03 13:56:30 -050036static int find_previous_extent(struct btrfs_root *root,
37 struct btrfs_path *path)
38{
39 struct btrfs_key found_key;
40 struct extent_buffer *leaf;
41 int ret;
42
43 while(1) {
44 if (path->slots[0] == 0) {
45 ret = btrfs_prev_leaf(root, path);
46 if (ret != 0)
47 return ret;
48 } else {
49 path->slots[0]--;
50 }
51 leaf = path->nodes[0];
52 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
53 if (found_key.type == BTRFS_EXTENT_ITEM_KEY)
54 return 0;
55 }
56 return 1;
57}
Chris Masonfec577f2007-02-26 10:40:21 -050058
Chris Masone37c9e62007-05-09 20:13:14 -040059static int cache_block_group(struct btrfs_root *root,
60 struct btrfs_block_group_cache *block_group)
61{
62 struct btrfs_path *path;
63 int ret;
64 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -040065 struct extent_buffer *leaf;
Chris Masond1310b22008-01-24 16:13:08 -050066 struct extent_io_tree *free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040067 int slot;
Chris Masone37c9e62007-05-09 20:13:14 -040068 u64 last = 0;
69 u64 hole_size;
Yan7d7d6062007-09-14 16:15:28 -040070 u64 first_free;
Chris Masone37c9e62007-05-09 20:13:14 -040071 int found = 0;
72
Chris Mason00f5c792007-11-30 10:09:33 -050073 if (!block_group)
74 return 0;
75
Chris Masone37c9e62007-05-09 20:13:14 -040076 root = root->fs_info->extent_root;
Chris Masonf510cfe2007-10-15 16:14:48 -040077 free_space_cache = &root->fs_info->free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040078
79 if (block_group->cached)
80 return 0;
Chris Masonf510cfe2007-10-15 16:14:48 -040081
Chris Masone37c9e62007-05-09 20:13:14 -040082 path = btrfs_alloc_path();
83 if (!path)
84 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -040085
Chris Mason2cc58cf2007-08-27 16:49:44 -040086 path->reada = 2;
Yan7d7d6062007-09-14 16:15:28 -040087 first_free = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040088 key.objectid = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040089 key.offset = 0;
90 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
91 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
92 if (ret < 0)
93 return ret;
Yand548ee52008-01-03 13:56:30 -050094 ret = find_previous_extent(root, path);
95 if (ret < 0)
96 return ret;
97 if (ret == 0) {
98 leaf = path->nodes[0];
99 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
100 if (key.objectid + key.offset > first_free)
101 first_free = key.objectid + key.offset;
102 }
Chris Masone37c9e62007-05-09 20:13:14 -0400103 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400104 leaf = path->nodes[0];
Chris Masone37c9e62007-05-09 20:13:14 -0400105 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -0400106 if (slot >= btrfs_header_nritems(leaf)) {
Chris Masone37c9e62007-05-09 20:13:14 -0400107 ret = btrfs_next_leaf(root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400108 if (ret < 0)
109 goto err;
Chris Masonde428b62007-05-18 13:28:27 -0400110 if (ret == 0) {
Chris Masone37c9e62007-05-09 20:13:14 -0400111 continue;
Chris Masonde428b62007-05-18 13:28:27 -0400112 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400113 break;
114 }
115 }
Chris Mason5f39d392007-10-15 16:14:19 -0400116 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan7d7d6062007-09-14 16:15:28 -0400117 if (key.objectid < block_group->key.objectid) {
Yan7d7d6062007-09-14 16:15:28 -0400118 goto next;
119 }
Chris Masone37c9e62007-05-09 20:13:14 -0400120 if (key.objectid >= block_group->key.objectid +
121 block_group->key.offset) {
Yan7d7d6062007-09-14 16:15:28 -0400122 break;
123 }
124
125 if (btrfs_key_type(&key) == BTRFS_EXTENT_ITEM_KEY) {
126 if (!found) {
127 last = first_free;
128 found = 1;
Chris Masone37c9e62007-05-09 20:13:14 -0400129 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400130 if (key.objectid > last) {
131 hole_size = key.objectid - last;
132 set_extent_dirty(free_space_cache, last,
133 last + hole_size - 1,
134 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -0400135 }
Yan7d7d6062007-09-14 16:15:28 -0400136 last = key.objectid + key.offset;
Chris Masone37c9e62007-05-09 20:13:14 -0400137 }
Yan7d7d6062007-09-14 16:15:28 -0400138next:
Chris Masone37c9e62007-05-09 20:13:14 -0400139 path->slots[0]++;
140 }
141
Yan7d7d6062007-09-14 16:15:28 -0400142 if (!found)
143 last = first_free;
144 if (block_group->key.objectid +
145 block_group->key.offset > last) {
146 hole_size = block_group->key.objectid +
147 block_group->key.offset - last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400148 set_extent_dirty(free_space_cache, last,
149 last + hole_size - 1, GFP_NOFS);
Yan7d7d6062007-09-14 16:15:28 -0400150 }
Chris Masone37c9e62007-05-09 20:13:14 -0400151 block_group->cached = 1;
Chris Mason54aa1f42007-06-22 14:16:25 -0400152err:
Chris Masone37c9e62007-05-09 20:13:14 -0400153 btrfs_free_path(path);
154 return 0;
155}
156
Chris Mason5276aed2007-06-11 21:33:38 -0400157struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
158 btrfs_fs_info *info,
Chris Masondb945352007-10-15 16:15:53 -0400159 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400160{
Chris Masond1310b22008-01-24 16:13:08 -0500161 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -0400162 struct btrfs_block_group_cache *block_group = NULL;
163 u64 ptr;
164 u64 start;
165 u64 end;
Chris Masonbe744172007-05-06 10:15:01 -0400166 int ret;
167
Chris Mason96b51792007-10-15 16:15:19 -0400168 block_group_cache = &info->block_group_cache;
169 ret = find_first_extent_bit(block_group_cache,
Chris Masondb945352007-10-15 16:15:53 -0400170 bytenr, &start, &end,
Chris Mason96b51792007-10-15 16:15:19 -0400171 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA);
Chris Masonbe744172007-05-06 10:15:01 -0400172 if (ret) {
Chris Mason96b51792007-10-15 16:15:19 -0400173 return NULL;
Chris Masonbe744172007-05-06 10:15:01 -0400174 }
Chris Mason96b51792007-10-15 16:15:19 -0400175 ret = get_state_private(block_group_cache, start, &ptr);
176 if (ret)
177 return NULL;
178
Jens Axboeae2f5412007-10-19 09:22:59 -0400179 block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Yan5cf66422007-11-16 14:57:09 -0500180 if (block_group->key.objectid <= bytenr && bytenr <
Chris Mason96b51792007-10-15 16:15:19 -0400181 block_group->key.objectid + block_group->key.offset)
182 return block_group;
Chris Masonbe744172007-05-06 10:15:01 -0400183 return NULL;
184}
Chris Mason98ed5172008-01-03 10:01:48 -0500185static u64 noinline find_search_start(struct btrfs_root *root,
186 struct btrfs_block_group_cache **cache_ret,
Yand548ee52008-01-03 13:56:30 -0500187 u64 search_start, int num, int data)
Chris Masone37c9e62007-05-09 20:13:14 -0400188{
Chris Masone37c9e62007-05-09 20:13:14 -0400189 int ret;
190 struct btrfs_block_group_cache *cache = *cache_ret;
Chris Masond7fc6402008-02-18 12:12:38 -0500191 struct extent_io_tree *free_space_cache;
192 struct extent_state *state;
Chris Masone19caa52007-10-15 16:17:44 -0400193 u64 last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400194 u64 start = 0;
Chris Mason257d0ce2007-11-07 21:08:16 -0500195 u64 cache_miss = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500196 u64 total_fs_bytes;
Chris Masonf84a8b32007-11-06 10:26:29 -0500197 int wrapped = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400198
Chris Mason00f5c792007-11-30 10:09:33 -0500199 if (!cache) {
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500200 goto out;
Chris Mason00f5c792007-11-30 10:09:33 -0500201 }
Chris Masonc31f8832008-01-08 15:46:31 -0500202 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masond7fc6402008-02-18 12:12:38 -0500203 free_space_cache = &root->fs_info->free_space_cache;
204
Chris Masone37c9e62007-05-09 20:13:14 -0400205again:
Chris Mason54aa1f42007-06-22 14:16:25 -0400206 ret = cache_block_group(root, cache);
207 if (ret)
208 goto out;
Chris Masonf84a8b32007-11-06 10:26:29 -0500209
Chris Masone19caa52007-10-15 16:17:44 -0400210 last = max(search_start, cache->key.objectid);
211
Chris Masond7fc6402008-02-18 12:12:38 -0500212 spin_lock_irq(&free_space_cache->lock);
213 state = find_first_extent_bit_state(free_space_cache, last, EXTENT_DIRTY);
Chris Masone37c9e62007-05-09 20:13:14 -0400214 while(1) {
Chris Masond7fc6402008-02-18 12:12:38 -0500215 if (!state) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500216 if (!cache_miss)
217 cache_miss = last;
Chris Masond7fc6402008-02-18 12:12:38 -0500218 spin_unlock_irq(&free_space_cache->lock);
Chris Masone19caa52007-10-15 16:17:44 -0400219 goto new_group;
220 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400221
Chris Masond7fc6402008-02-18 12:12:38 -0500222 start = max(last, state->start);
223 last = state->end + 1;
Chris Mason257d0ce2007-11-07 21:08:16 -0500224 if (last - start < num) {
225 if (last == cache->key.objectid + cache->key.offset)
226 cache_miss = start;
Chris Masond7fc6402008-02-18 12:12:38 -0500227 do {
228 state = extent_state_next(state);
229 } while(state && !(state->state & EXTENT_DIRTY));
Chris Masonf510cfe2007-10-15 16:14:48 -0400230 continue;
Chris Mason257d0ce2007-11-07 21:08:16 -0500231 }
Chris Masond7fc6402008-02-18 12:12:38 -0500232 spin_unlock_irq(&free_space_cache->lock);
Chris Mason257d0ce2007-11-07 21:08:16 -0500233 if (data != BTRFS_BLOCK_GROUP_MIXED &&
Yan5cf66422007-11-16 14:57:09 -0500234 start + num > cache->key.objectid + cache->key.offset)
Chris Masone37c9e62007-05-09 20:13:14 -0400235 goto new_group;
Chris Masonc31f8832008-01-08 15:46:31 -0500236 if (start + num > total_fs_bytes)
237 goto new_group;
Chris Masonf510cfe2007-10-15 16:14:48 -0400238 return start;
Chris Masone37c9e62007-05-09 20:13:14 -0400239 }
240out:
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500241 cache = btrfs_lookup_block_group(root->fs_info, search_start);
242 if (!cache) {
243 printk("Unable to find block group for %Lu\n",
244 search_start);
245 WARN_ON(1);
246 return search_start;
247 }
Chris Mason1a5bc162007-10-15 16:15:26 -0400248 return search_start;
Chris Masone37c9e62007-05-09 20:13:14 -0400249
250new_group:
Chris Masone19caa52007-10-15 16:17:44 -0400251 last = cache->key.objectid + cache->key.offset;
Chris Masonf84a8b32007-11-06 10:26:29 -0500252wrapped:
Chris Masone19caa52007-10-15 16:17:44 -0400253 cache = btrfs_lookup_block_group(root->fs_info, last);
Chris Masonc31f8832008-01-08 15:46:31 -0500254 if (!cache || cache->key.objectid >= total_fs_bytes) {
Chris Mason0e4de582007-11-26 10:55:49 -0500255no_cache:
Chris Masonf84a8b32007-11-06 10:26:29 -0500256 if (!wrapped) {
257 wrapped = 1;
258 last = search_start;
259 data = BTRFS_BLOCK_GROUP_MIXED;
260 goto wrapped;
261 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500262 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -0400263 }
Chris Mason257d0ce2007-11-07 21:08:16 -0500264 if (cache_miss && !cache->cached) {
265 cache_block_group(root, cache);
266 last = cache_miss;
Chris Mason257d0ce2007-11-07 21:08:16 -0500267 cache = btrfs_lookup_block_group(root->fs_info, last);
268 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500269 cache = btrfs_find_block_group(root, cache, last, data, 0);
Chris Mason0e4de582007-11-26 10:55:49 -0500270 if (!cache)
271 goto no_cache;
Chris Masone37c9e62007-05-09 20:13:14 -0400272 *cache_ret = cache;
Chris Mason257d0ce2007-11-07 21:08:16 -0500273 cache_miss = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400274 goto again;
275}
276
Chris Mason84f54cf2007-06-12 07:43:08 -0400277static u64 div_factor(u64 num, int factor)
278{
Chris Mason257d0ce2007-11-07 21:08:16 -0500279 if (factor == 10)
280 return num;
Chris Mason84f54cf2007-06-12 07:43:08 -0400281 num *= factor;
282 do_div(num, 10);
283 return num;
284}
285
Chris Mason31f3c992007-04-30 15:25:45 -0400286struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
287 struct btrfs_block_group_cache
Chris Masonbe744172007-05-06 10:15:01 -0400288 *hint, u64 search_start,
Chris Masonde428b62007-05-18 13:28:27 -0400289 int data, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400290{
Chris Mason96b51792007-10-15 16:15:19 -0400291 struct btrfs_block_group_cache *cache;
Chris Masond1310b22008-01-24 16:13:08 -0500292 struct extent_io_tree *block_group_cache;
Chris Mason31f3c992007-04-30 15:25:45 -0400293 struct btrfs_block_group_cache *found_group = NULL;
Chris Masoncd1bc462007-04-27 10:08:34 -0400294 struct btrfs_fs_info *info = root->fs_info;
295 u64 used;
Chris Mason31f3c992007-04-30 15:25:45 -0400296 u64 last = 0;
297 u64 hint_last;
Chris Mason96b51792007-10-15 16:15:19 -0400298 u64 start;
299 u64 end;
300 u64 free_check;
301 u64 ptr;
Chris Masonc31f8832008-01-08 15:46:31 -0500302 u64 total_fs_bytes;
Chris Mason96b51792007-10-15 16:15:19 -0400303 int bit;
Chris Masoncd1bc462007-04-27 10:08:34 -0400304 int ret;
Chris Mason31f3c992007-04-30 15:25:45 -0400305 int full_search = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400306 int factor = 8;
Chris Mason1e2677e2007-05-29 16:52:18 -0400307 int data_swap = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400308
Chris Mason96b51792007-10-15 16:15:19 -0400309 block_group_cache = &info->block_group_cache;
Chris Masonc31f8832008-01-08 15:46:31 -0500310 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Mason96b51792007-10-15 16:15:19 -0400311
Chris Masonde428b62007-05-18 13:28:27 -0400312 if (!owner)
Chris Masonf84a8b32007-11-06 10:26:29 -0500313 factor = 8;
Chris Masonbe744172007-05-06 10:15:01 -0400314
Chris Mason257d0ce2007-11-07 21:08:16 -0500315 if (data == BTRFS_BLOCK_GROUP_MIXED) {
Chris Masonf84a8b32007-11-06 10:26:29 -0500316 bit = BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA;
Chris Mason257d0ce2007-11-07 21:08:16 -0500317 factor = 10;
318 } else if (data)
Chris Mason96b51792007-10-15 16:15:19 -0400319 bit = BLOCK_GROUP_DATA;
320 else
321 bit = BLOCK_GROUP_METADATA;
Chris Masonbe744172007-05-06 10:15:01 -0400322
Chris Masonc31f8832008-01-08 15:46:31 -0500323 if (search_start && search_start < total_fs_bytes) {
Chris Masonbe744172007-05-06 10:15:01 -0400324 struct btrfs_block_group_cache *shint;
Chris Mason5276aed2007-06-11 21:33:38 -0400325 shint = btrfs_lookup_block_group(info, search_start);
Chris Masonf84a8b32007-11-06 10:26:29 -0500326 if (shint && (shint->data == data ||
327 shint->data == BTRFS_BLOCK_GROUP_MIXED)) {
Chris Masonbe744172007-05-06 10:15:01 -0400328 used = btrfs_block_group_used(&shint->item);
Yan324ae4d2007-11-16 14:57:08 -0500329 if (used + shint->pinned <
330 div_factor(shint->key.offset, factor)) {
Chris Masonbe744172007-05-06 10:15:01 -0400331 return shint;
332 }
333 }
334 }
Chris Masonc31f8832008-01-08 15:46:31 -0500335 if (hint && hint->key.objectid < total_fs_bytes &&
336 (hint->data == data || hint->data == BTRFS_BLOCK_GROUP_MIXED)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400337 used = btrfs_block_group_used(&hint->item);
Yan324ae4d2007-11-16 14:57:08 -0500338 if (used + hint->pinned <
339 div_factor(hint->key.offset, factor)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400340 return hint;
341 }
Chris Masone19caa52007-10-15 16:17:44 -0400342 last = hint->key.objectid + hint->key.offset;
Chris Mason31f3c992007-04-30 15:25:45 -0400343 hint_last = last;
344 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400345 if (hint)
346 hint_last = max(hint->key.objectid, search_start);
347 else
348 hint_last = search_start;
349
Chris Masonc31f8832008-01-08 15:46:31 -0500350 if (hint_last >= total_fs_bytes)
351 hint_last = search_start;
Chris Masone37c9e62007-05-09 20:13:14 -0400352 last = hint_last;
Chris Mason31f3c992007-04-30 15:25:45 -0400353 }
Chris Mason31f3c992007-04-30 15:25:45 -0400354again:
Chris Masoncd1bc462007-04-27 10:08:34 -0400355 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400356 ret = find_first_extent_bit(block_group_cache, last,
357 &start, &end, bit);
358 if (ret)
Chris Masoncd1bc462007-04-27 10:08:34 -0400359 break;
Chris Mason96b51792007-10-15 16:15:19 -0400360
361 ret = get_state_private(block_group_cache, start, &ptr);
362 if (ret)
363 break;
364
Jens Axboeae2f5412007-10-19 09:22:59 -0400365 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400366 last = cache->key.objectid + cache->key.offset;
367 used = btrfs_block_group_used(&cache->item);
368
Chris Masonc31f8832008-01-08 15:46:31 -0500369 if (cache->key.objectid > total_fs_bytes)
370 break;
371
Chris Mason96b51792007-10-15 16:15:19 -0400372 if (full_search)
373 free_check = cache->key.offset;
374 else
375 free_check = div_factor(cache->key.offset, factor);
Yan324ae4d2007-11-16 14:57:08 -0500376 if (used + cache->pinned < free_check) {
Chris Mason96b51792007-10-15 16:15:19 -0400377 found_group = cache;
378 goto found;
Chris Masoncd1bc462007-04-27 10:08:34 -0400379 }
Chris Masonde428b62007-05-18 13:28:27 -0400380 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400381 }
Chris Mason31f3c992007-04-30 15:25:45 -0400382 if (!full_search) {
Chris Masonbe744172007-05-06 10:15:01 -0400383 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400384 full_search = 1;
385 goto again;
386 }
Chris Mason1e2677e2007-05-29 16:52:18 -0400387 if (!data_swap) {
Chris Mason1e2677e2007-05-29 16:52:18 -0400388 data_swap = 1;
Chris Mason96b51792007-10-15 16:15:19 -0400389 bit = BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA;
Chris Mason1e2677e2007-05-29 16:52:18 -0400390 last = search_start;
391 goto again;
392 }
Chris Masonbe744172007-05-06 10:15:01 -0400393found:
Chris Mason31f3c992007-04-30 15:25:45 -0400394 return found_group;
Chris Masoncd1bc462007-04-27 10:08:34 -0400395}
396
Chris Mason7bb86312007-12-11 09:25:06 -0500397static u64 hash_extent_ref(u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500398 u64 owner, u64 owner_offset)
399{
400 u32 high_crc = ~(u32)0;
401 u32 low_crc = ~(u32)0;
402 __le64 lenum;
403
404 lenum = cpu_to_le64(root_objectid);
405 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Chris Mason7bb86312007-12-11 09:25:06 -0500406 lenum = cpu_to_le64(ref_generation);
407 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500408 if (owner >= BTRFS_FIRST_FREE_OBJECTID) {
409 lenum = cpu_to_le64(owner);
410 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
411 lenum = cpu_to_le64(owner_offset);
412 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
413 }
Chris Mason74493f72007-12-11 09:25:06 -0500414 return ((u64)high_crc << 32) | (u64)low_crc;
415}
416
Chris Mason7bb86312007-12-11 09:25:06 -0500417static int match_extent_ref(struct extent_buffer *leaf,
418 struct btrfs_extent_ref *disk_ref,
419 struct btrfs_extent_ref *cpu_ref)
420{
421 int ret;
422 int len;
423
424 if (cpu_ref->objectid)
425 len = sizeof(*cpu_ref);
426 else
427 len = 2 * sizeof(u64);
428 ret = memcmp_extent_buffer(leaf, cpu_ref, (unsigned long)disk_ref,
429 len);
430 return ret == 0;
431}
432
Chris Mason98ed5172008-01-03 10:01:48 -0500433static int noinline lookup_extent_backref(struct btrfs_trans_handle *trans,
434 struct btrfs_root *root,
435 struct btrfs_path *path, u64 bytenr,
436 u64 root_objectid,
437 u64 ref_generation, u64 owner,
438 u64 owner_offset, int del)
Chris Mason7bb86312007-12-11 09:25:06 -0500439{
440 u64 hash;
441 struct btrfs_key key;
442 struct btrfs_key found_key;
443 struct btrfs_extent_ref ref;
444 struct extent_buffer *leaf;
445 struct btrfs_extent_ref *disk_ref;
446 int ret;
447 int ret2;
448
449 btrfs_set_stack_ref_root(&ref, root_objectid);
450 btrfs_set_stack_ref_generation(&ref, ref_generation);
451 btrfs_set_stack_ref_objectid(&ref, owner);
452 btrfs_set_stack_ref_offset(&ref, owner_offset);
453
454 hash = hash_extent_ref(root_objectid, ref_generation, owner,
455 owner_offset);
456 key.offset = hash;
457 key.objectid = bytenr;
458 key.type = BTRFS_EXTENT_REF_KEY;
459
460 while (1) {
461 ret = btrfs_search_slot(trans, root, &key, path,
462 del ? -1 : 0, del);
463 if (ret < 0)
464 goto out;
465 leaf = path->nodes[0];
466 if (ret != 0) {
467 u32 nritems = btrfs_header_nritems(leaf);
468 if (path->slots[0] >= nritems) {
469 ret2 = btrfs_next_leaf(root, path);
470 if (ret2)
471 goto out;
472 leaf = path->nodes[0];
473 }
474 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
475 if (found_key.objectid != bytenr ||
476 found_key.type != BTRFS_EXTENT_REF_KEY)
477 goto out;
478 key.offset = found_key.offset;
479 if (del) {
480 btrfs_release_path(root, path);
481 continue;
482 }
483 }
484 disk_ref = btrfs_item_ptr(path->nodes[0],
485 path->slots[0],
486 struct btrfs_extent_ref);
487 if (match_extent_ref(path->nodes[0], disk_ref, &ref)) {
488 ret = 0;
489 goto out;
490 }
491 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
492 key.offset = found_key.offset + 1;
493 btrfs_release_path(root, path);
494 }
495out:
496 return ret;
497}
498
Chris Masond8d5f3e2007-12-11 12:42:00 -0500499/*
500 * Back reference rules. Back refs have three main goals:
501 *
502 * 1) differentiate between all holders of references to an extent so that
503 * when a reference is dropped we can make sure it was a valid reference
504 * before freeing the extent.
505 *
506 * 2) Provide enough information to quickly find the holders of an extent
507 * if we notice a given block is corrupted or bad.
508 *
509 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
510 * maintenance. This is actually the same as #2, but with a slightly
511 * different use case.
512 *
513 * File extents can be referenced by:
514 *
515 * - multiple snapshots, subvolumes, or different generations in one subvol
516 * - different files inside a single subvolume (in theory, not implemented yet)
517 * - different offsets inside a file (bookend extents in file.c)
518 *
519 * The extent ref structure has fields for:
520 *
521 * - Objectid of the subvolume root
522 * - Generation number of the tree holding the reference
523 * - objectid of the file holding the reference
524 * - offset in the file corresponding to the key holding the reference
525 *
526 * When a file extent is allocated the fields are filled in:
527 * (root_key.objectid, trans->transid, inode objectid, offset in file)
528 *
529 * When a leaf is cow'd new references are added for every file extent found
530 * in the leaf. It looks the same as the create case, but trans->transid
531 * will be different when the block is cow'd.
532 *
533 * (root_key.objectid, trans->transid, inode objectid, offset in file)
534 *
535 * When a file extent is removed either during snapshot deletion or file
536 * truncation, the corresponding back reference is found
537 * by searching for:
538 *
539 * (btrfs_header_owner(leaf), btrfs_header_generation(leaf),
540 * inode objectid, offset in file)
541 *
542 * Btree extents can be referenced by:
543 *
544 * - Different subvolumes
545 * - Different generations of the same subvolume
546 *
547 * Storing sufficient information for a full reverse mapping of a btree
548 * block would require storing the lowest key of the block in the backref,
549 * and it would require updating that lowest key either before write out or
550 * every time it changed. Instead, the objectid of the lowest key is stored
551 * along with the level of the tree block. This provides a hint
552 * about where in the btree the block can be found. Searches through the
553 * btree only need to look for a pointer to that block, so they stop one
554 * level higher than the level recorded in the backref.
555 *
556 * Some btrees do not do reference counting on their extents. These
557 * include the extent tree and the tree of tree roots. Backrefs for these
558 * trees always have a generation of zero.
559 *
560 * When a tree block is created, back references are inserted:
561 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500562 * (root->root_key.objectid, trans->transid or zero, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500563 *
564 * When a tree block is cow'd in a reference counted root,
565 * new back references are added for all the blocks it points to.
566 * These are of the form (trans->transid will have increased since creation):
567 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500568 * (root->root_key.objectid, trans->transid, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500569 *
570 * Because the lowest_key_objectid and the level are just hints
571 * they are not used when backrefs are deleted. When a backref is deleted:
572 *
573 * if backref was for a tree root:
574 * root_objectid = root->root_key.objectid
575 * else
576 * root_objectid = btrfs_header_owner(parent)
577 *
578 * (root_objectid, btrfs_header_generation(parent) or zero, 0, 0)
579 *
580 * Back Reference Key hashing:
581 *
582 * Back references have four fields, each 64 bits long. Unfortunately,
583 * This is hashed into a single 64 bit number and placed into the key offset.
584 * The key objectid corresponds to the first byte in the extent, and the
585 * key type is set to BTRFS_EXTENT_REF_KEY
586 */
Chris Mason7bb86312007-12-11 09:25:06 -0500587int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
588 struct btrfs_root *root,
589 struct btrfs_path *path, u64 bytenr,
590 u64 root_objectid, u64 ref_generation,
591 u64 owner, u64 owner_offset)
Chris Mason74493f72007-12-11 09:25:06 -0500592{
593 u64 hash;
594 struct btrfs_key key;
595 struct btrfs_extent_ref ref;
Chris Mason7bb86312007-12-11 09:25:06 -0500596 struct btrfs_extent_ref *disk_ref;
Chris Mason74493f72007-12-11 09:25:06 -0500597 int ret;
598
599 btrfs_set_stack_ref_root(&ref, root_objectid);
Chris Mason7bb86312007-12-11 09:25:06 -0500600 btrfs_set_stack_ref_generation(&ref, ref_generation);
Chris Mason74493f72007-12-11 09:25:06 -0500601 btrfs_set_stack_ref_objectid(&ref, owner);
602 btrfs_set_stack_ref_offset(&ref, owner_offset);
603
Chris Mason7bb86312007-12-11 09:25:06 -0500604 hash = hash_extent_ref(root_objectid, ref_generation, owner,
605 owner_offset);
Chris Mason74493f72007-12-11 09:25:06 -0500606 key.offset = hash;
607 key.objectid = bytenr;
608 key.type = BTRFS_EXTENT_REF_KEY;
609
610 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(ref));
611 while (ret == -EEXIST) {
Chris Mason7bb86312007-12-11 09:25:06 -0500612 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
613 struct btrfs_extent_ref);
614 if (match_extent_ref(path->nodes[0], disk_ref, &ref))
615 goto out;
616 key.offset++;
617 btrfs_release_path(root, path);
618 ret = btrfs_insert_empty_item(trans, root, path, &key,
619 sizeof(ref));
Chris Mason74493f72007-12-11 09:25:06 -0500620 }
Chris Mason7bb86312007-12-11 09:25:06 -0500621 if (ret)
622 goto out;
623 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
624 struct btrfs_extent_ref);
625 write_extent_buffer(path->nodes[0], &ref, (unsigned long)disk_ref,
626 sizeof(ref));
627 btrfs_mark_buffer_dirty(path->nodes[0]);
628out:
629 btrfs_release_path(root, path);
630 return ret;
Chris Mason74493f72007-12-11 09:25:06 -0500631}
632
Chris Masonb18c6682007-04-17 13:26:50 -0400633int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
634 struct btrfs_root *root,
Chris Mason74493f72007-12-11 09:25:06 -0500635 u64 bytenr, u64 num_bytes,
Chris Mason7bb86312007-12-11 09:25:06 -0500636 u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500637 u64 owner, u64 owner_offset)
Chris Mason02217ed2007-03-02 16:08:05 -0500638{
Chris Mason5caf2a02007-04-02 11:20:42 -0400639 struct btrfs_path *path;
Chris Mason02217ed2007-03-02 16:08:05 -0500640 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400641 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400642 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400643 struct btrfs_extent_item *item;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400644 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500645
Chris Masondb945352007-10-15 16:15:53 -0400646 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400647 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400648 if (!path)
649 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -0400650
Chris Masonb0331a42008-01-08 15:46:31 -0500651 path->reada = 0;
Chris Masondb945352007-10-15 16:15:53 -0400652 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -0400653 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -0400654 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -0400655 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400656 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400657 if (ret < 0)
658 return ret;
Chris Masona429e512007-04-18 16:15:28 -0400659 if (ret != 0) {
Chris Masona28ec192007-03-06 20:08:01 -0500660 BUG();
Chris Masona429e512007-04-18 16:15:28 -0400661 }
Chris Mason02217ed2007-03-02 16:08:05 -0500662 BUG_ON(ret != 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400663 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400664 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400665 refs = btrfs_extent_refs(l, item);
666 btrfs_set_extent_refs(l, item, refs + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -0400667 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masona28ec192007-03-06 20:08:01 -0500668
Chris Mason5caf2a02007-04-02 11:20:42 -0400669 btrfs_release_path(root->fs_info->extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -0500670
Chris Masonb0331a42008-01-08 15:46:31 -0500671 path->reada = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500672 ret = btrfs_insert_extent_backref(trans, root->fs_info->extent_root,
673 path, bytenr, root_objectid,
674 ref_generation, owner, owner_offset);
675 BUG_ON(ret);
Chris Mason9f5fae22007-03-20 14:38:32 -0400676 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400677 del_pending_extents(trans, root->fs_info->extent_root);
Chris Mason74493f72007-12-11 09:25:06 -0500678
679 btrfs_free_path(path);
Chris Mason02217ed2007-03-02 16:08:05 -0500680 return 0;
681}
682
Chris Masone9d0b132007-08-10 14:06:19 -0400683int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
684 struct btrfs_root *root)
685{
686 finish_current_insert(trans, root->fs_info->extent_root);
687 del_pending_extents(trans, root->fs_info->extent_root);
688 return 0;
689}
690
Chris Masonb18c6682007-04-17 13:26:50 -0400691static int lookup_extent_ref(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -0400692 struct btrfs_root *root, u64 bytenr,
693 u64 num_bytes, u32 *refs)
Chris Masona28ec192007-03-06 20:08:01 -0500694{
Chris Mason5caf2a02007-04-02 11:20:42 -0400695 struct btrfs_path *path;
Chris Masona28ec192007-03-06 20:08:01 -0500696 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400697 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400698 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400699 struct btrfs_extent_item *item;
Chris Mason5caf2a02007-04-02 11:20:42 -0400700
Chris Masondb945352007-10-15 16:15:53 -0400701 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400702 path = btrfs_alloc_path();
Chris Masonb0331a42008-01-08 15:46:31 -0500703 path->reada = 0;
Chris Masondb945352007-10-15 16:15:53 -0400704 key.objectid = bytenr;
705 key.offset = num_bytes;
Chris Mason62e27492007-03-15 12:56:47 -0400706 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5caf2a02007-04-02 11:20:42 -0400707 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400708 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400709 if (ret < 0)
710 goto out;
Chris Mason5f39d392007-10-15 16:14:19 -0400711 if (ret != 0) {
712 btrfs_print_leaf(root, path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400713 printk("failed to find block number %Lu\n", bytenr);
Chris Masona28ec192007-03-06 20:08:01 -0500714 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -0400715 }
716 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400717 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400718 *refs = btrfs_extent_refs(l, item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400719out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400720 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -0500721 return 0;
722}
723
Chris Masonbe20aa92007-12-17 20:14:01 -0500724u32 btrfs_count_snapshots_in_path(struct btrfs_root *root,
725 struct btrfs_path *count_path,
726 u64 first_extent)
727{
728 struct btrfs_root *extent_root = root->fs_info->extent_root;
729 struct btrfs_path *path;
730 u64 bytenr;
731 u64 found_objectid;
Chris Mason56b453c2008-01-03 09:08:27 -0500732 u64 root_objectid = root->root_key.objectid;
Chris Masonbe20aa92007-12-17 20:14:01 -0500733 u32 total_count = 0;
734 u32 cur_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500735 u32 nritems;
736 int ret;
737 struct btrfs_key key;
738 struct btrfs_key found_key;
739 struct extent_buffer *l;
740 struct btrfs_extent_item *item;
741 struct btrfs_extent_ref *ref_item;
742 int level = -1;
743
744 path = btrfs_alloc_path();
745again:
746 if (level == -1)
747 bytenr = first_extent;
748 else
749 bytenr = count_path->nodes[level]->start;
750
751 cur_count = 0;
752 key.objectid = bytenr;
753 key.offset = 0;
754
755 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
756 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
757 if (ret < 0)
758 goto out;
759 BUG_ON(ret == 0);
760
761 l = path->nodes[0];
762 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
763
764 if (found_key.objectid != bytenr ||
765 found_key.type != BTRFS_EXTENT_ITEM_KEY) {
766 goto out;
767 }
768
769 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Masonbe20aa92007-12-17 20:14:01 -0500770 while (1) {
Chris Masonbd098352008-01-03 13:23:19 -0500771 l = path->nodes[0];
Chris Masonbe20aa92007-12-17 20:14:01 -0500772 nritems = btrfs_header_nritems(l);
773 if (path->slots[0] >= nritems) {
774 ret = btrfs_next_leaf(extent_root, path);
775 if (ret == 0)
776 continue;
777 break;
778 }
779 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
780 if (found_key.objectid != bytenr)
781 break;
Chris Masonbd098352008-01-03 13:23:19 -0500782
Chris Masonbe20aa92007-12-17 20:14:01 -0500783 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
784 path->slots[0]++;
785 continue;
786 }
787
788 cur_count++;
789 ref_item = btrfs_item_ptr(l, path->slots[0],
790 struct btrfs_extent_ref);
791 found_objectid = btrfs_ref_root(l, ref_item);
792
Chris Mason56b453c2008-01-03 09:08:27 -0500793 if (found_objectid != root_objectid) {
794 total_count = 2;
Chris Mason4313b392008-01-03 09:08:48 -0500795 goto out;
Chris Mason56b453c2008-01-03 09:08:27 -0500796 }
797 total_count = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500798 path->slots[0]++;
799 }
800 if (cur_count == 0) {
801 total_count = 0;
802 goto out;
803 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500804 if (level >= 0 && root->node == count_path->nodes[level])
805 goto out;
806 level++;
807 btrfs_release_path(root, path);
808 goto again;
809
810out:
811 btrfs_free_path(path);
812 return total_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500813}
Chris Masonc5739bb2007-04-10 09:27:04 -0400814int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -0500815 struct btrfs_root *root, u64 owner_objectid)
Chris Masonc5739bb2007-04-10 09:27:04 -0400816{
Chris Mason7bb86312007-12-11 09:25:06 -0500817 u64 generation;
818 u64 key_objectid;
819 u64 level;
820 u32 nritems;
821 struct btrfs_disk_key disk_key;
822
823 level = btrfs_header_level(root->node);
824 generation = trans->transid;
825 nritems = btrfs_header_nritems(root->node);
826 if (nritems > 0) {
827 if (level == 0)
828 btrfs_item_key(root->node, &disk_key, 0);
829 else
830 btrfs_node_key(root->node, &disk_key, 0);
831 key_objectid = btrfs_disk_key_objectid(&disk_key);
832 } else {
833 key_objectid = 0;
834 }
Chris Masondb945352007-10-15 16:15:53 -0400835 return btrfs_inc_extent_ref(trans, root, root->node->start,
Chris Mason7bb86312007-12-11 09:25:06 -0500836 root->node->len, owner_objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500837 generation, level, key_objectid);
Chris Masonc5739bb2007-04-10 09:27:04 -0400838}
839
Chris Masone089f052007-03-16 16:20:31 -0400840int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400841 struct extent_buffer *buf)
Chris Mason02217ed2007-03-02 16:08:05 -0500842{
Chris Masondb945352007-10-15 16:15:53 -0400843 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400844 u32 nritems;
845 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -0400846 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -0500847 int i;
Chris Masondb945352007-10-15 16:15:53 -0400848 int level;
Chris Mason6407bf62007-03-27 06:33:00 -0400849 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400850 int faili;
Chris Masona28ec192007-03-06 20:08:01 -0500851
Chris Mason3768f362007-03-13 16:47:54 -0400852 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500853 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400854
Chris Masondb945352007-10-15 16:15:53 -0400855 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400856 nritems = btrfs_header_nritems(buf);
857 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400858 if (level == 0) {
859 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400860 btrfs_item_key_to_cpu(buf, &key, i);
861 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -0400862 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400863 fi = btrfs_item_ptr(buf, i,
Chris Mason6407bf62007-03-27 06:33:00 -0400864 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400865 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason236454d2007-04-19 13:37:44 -0400866 BTRFS_FILE_EXTENT_INLINE)
867 continue;
Chris Masondb945352007-10-15 16:15:53 -0400868 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
869 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -0400870 continue;
Chris Masondb945352007-10-15 16:15:53 -0400871 ret = btrfs_inc_extent_ref(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500872 btrfs_file_extent_disk_num_bytes(buf, fi),
873 root->root_key.objectid, trans->transid,
874 key.objectid, key.offset);
Chris Mason54aa1f42007-06-22 14:16:25 -0400875 if (ret) {
876 faili = i;
877 goto fail;
878 }
Chris Mason6407bf62007-03-27 06:33:00 -0400879 } else {
Chris Masondb945352007-10-15 16:15:53 -0400880 bytenr = btrfs_node_blockptr(buf, i);
Chris Mason6caab482007-12-13 09:48:07 -0500881 btrfs_node_key_to_cpu(buf, &key, i);
Chris Masondb945352007-10-15 16:15:53 -0400882 ret = btrfs_inc_extent_ref(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500883 btrfs_level_size(root, level - 1),
884 root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500885 trans->transid,
886 level - 1, key.objectid);
Chris Mason54aa1f42007-06-22 14:16:25 -0400887 if (ret) {
888 faili = i;
889 goto fail;
890 }
Chris Mason6407bf62007-03-27 06:33:00 -0400891 }
Chris Mason02217ed2007-03-02 16:08:05 -0500892 }
893 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400894fail:
Chris Masonccd467d2007-06-28 15:57:36 -0400895 WARN_ON(1);
Chris Mason7bb86312007-12-11 09:25:06 -0500896#if 0
Chris Mason54aa1f42007-06-22 14:16:25 -0400897 for (i =0; i < faili; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400898 if (level == 0) {
899 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400900 btrfs_item_key_to_cpu(buf, &key, i);
901 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -0400902 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400903 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -0400904 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400905 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -0400906 BTRFS_FILE_EXTENT_INLINE)
907 continue;
Chris Masondb945352007-10-15 16:15:53 -0400908 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
909 if (disk_bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -0400910 continue;
Chris Masondb945352007-10-15 16:15:53 -0400911 err = btrfs_free_extent(trans, root, disk_bytenr,
912 btrfs_file_extent_disk_num_bytes(buf,
Chris Mason5f39d392007-10-15 16:14:19 -0400913 fi), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400914 BUG_ON(err);
915 } else {
Chris Masondb945352007-10-15 16:15:53 -0400916 bytenr = btrfs_node_blockptr(buf, i);
917 err = btrfs_free_extent(trans, root, bytenr,
918 btrfs_level_size(root, level - 1), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400919 BUG_ON(err);
920 }
921 }
Chris Mason7bb86312007-12-11 09:25:06 -0500922#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400923 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -0500924}
925
Chris Mason9078a3e2007-04-26 16:46:15 -0400926static int write_one_cache_group(struct btrfs_trans_handle *trans,
927 struct btrfs_root *root,
928 struct btrfs_path *path,
929 struct btrfs_block_group_cache *cache)
930{
931 int ret;
932 int pending_ret;
933 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400934 unsigned long bi;
935 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -0400936
Chris Mason9078a3e2007-04-26 16:46:15 -0400937 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400938 if (ret < 0)
939 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -0400940 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400941
942 leaf = path->nodes[0];
943 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
944 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
945 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -0400946 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400947fail:
Chris Mason9078a3e2007-04-26 16:46:15 -0400948 finish_current_insert(trans, extent_root);
949 pending_ret = del_pending_extents(trans, extent_root);
950 if (ret)
951 return ret;
952 if (pending_ret)
953 return pending_ret;
954 return 0;
955
956}
957
Chris Mason96b51792007-10-15 16:15:19 -0400958int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
959 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -0400960{
Chris Masond1310b22008-01-24 16:13:08 -0500961 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -0400962 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400963 int ret;
964 int err = 0;
965 int werr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -0400966 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -0400967 u64 last = 0;
968 u64 start;
969 u64 end;
970 u64 ptr;
Chris Mason9078a3e2007-04-26 16:46:15 -0400971
Chris Mason96b51792007-10-15 16:15:19 -0400972 block_group_cache = &root->fs_info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400973 path = btrfs_alloc_path();
974 if (!path)
975 return -ENOMEM;
976
977 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400978 ret = find_first_extent_bit(block_group_cache, last,
979 &start, &end, BLOCK_GROUP_DIRTY);
980 if (ret)
Chris Mason9078a3e2007-04-26 16:46:15 -0400981 break;
Chris Mason54aa1f42007-06-22 14:16:25 -0400982
Chris Mason96b51792007-10-15 16:15:19 -0400983 last = end + 1;
984 ret = get_state_private(block_group_cache, start, &ptr);
985 if (ret)
986 break;
987
Jens Axboeae2f5412007-10-19 09:22:59 -0400988 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400989 err = write_one_cache_group(trans, root,
990 path, cache);
991 /*
992 * if we fail to write the cache group, we want
993 * to keep it marked dirty in hopes that a later
994 * write will work
995 */
996 if (err) {
997 werr = err;
998 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -0400999 }
Chris Mason96b51792007-10-15 16:15:19 -04001000 clear_extent_bits(block_group_cache, start, end,
1001 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001002 }
1003 btrfs_free_path(path);
1004 return werr;
1005}
1006
1007static int update_block_group(struct btrfs_trans_handle *trans,
1008 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -04001009 u64 bytenr, u64 num_bytes, int alloc,
1010 int mark_free, int data)
Chris Mason9078a3e2007-04-26 16:46:15 -04001011{
1012 struct btrfs_block_group_cache *cache;
1013 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001014 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001015 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04001016 u64 byte_in_group;
Chris Mason96b51792007-10-15 16:15:19 -04001017 u64 start;
1018 u64 end;
Chris Mason3e1ad542007-05-07 20:03:49 -04001019
Chris Mason9078a3e2007-04-26 16:46:15 -04001020 while(total) {
Chris Masondb945352007-10-15 16:15:53 -04001021 cache = btrfs_lookup_block_group(info, bytenr);
Chris Mason3e1ad542007-05-07 20:03:49 -04001022 if (!cache) {
Chris Mason9078a3e2007-04-26 16:46:15 -04001023 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -04001024 }
Chris Masondb945352007-10-15 16:15:53 -04001025 byte_in_group = bytenr - cache->key.objectid;
1026 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason96b51792007-10-15 16:15:19 -04001027 start = cache->key.objectid;
1028 end = start + cache->key.offset - 1;
1029 set_extent_bits(&info->block_group_cache, start, end,
1030 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001031
1032 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04001033 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04001034 if (alloc) {
Chris Mason1e2677e2007-05-29 16:52:18 -04001035 if (cache->data != data &&
Chris Mason84f54cf2007-06-12 07:43:08 -04001036 old_val < (cache->key.offset >> 1)) {
Chris Mason96b51792007-10-15 16:15:19 -04001037 int bit_to_clear;
1038 int bit_to_set;
Chris Mason96b51792007-10-15 16:15:19 -04001039 cache->data = data;
Chris Mason1e2677e2007-05-29 16:52:18 -04001040 if (data) {
Yanb97f9202007-11-01 11:28:41 -04001041 bit_to_clear = BLOCK_GROUP_METADATA;
1042 bit_to_set = BLOCK_GROUP_DATA;
Chris Masonf84a8b32007-11-06 10:26:29 -05001043 cache->item.flags &=
1044 ~BTRFS_BLOCK_GROUP_MIXED;
Chris Mason1e2677e2007-05-29 16:52:18 -04001045 cache->item.flags |=
1046 BTRFS_BLOCK_GROUP_DATA;
1047 } else {
Yanb97f9202007-11-01 11:28:41 -04001048 bit_to_clear = BLOCK_GROUP_DATA;
1049 bit_to_set = BLOCK_GROUP_METADATA;
Chris Mason1e2677e2007-05-29 16:52:18 -04001050 cache->item.flags &=
Chris Masonf84a8b32007-11-06 10:26:29 -05001051 ~BTRFS_BLOCK_GROUP_MIXED;
1052 cache->item.flags &=
Chris Mason1e2677e2007-05-29 16:52:18 -04001053 ~BTRFS_BLOCK_GROUP_DATA;
1054 }
Chris Mason96b51792007-10-15 16:15:19 -04001055 clear_extent_bits(&info->block_group_cache,
1056 start, end, bit_to_clear,
1057 GFP_NOFS);
1058 set_extent_bits(&info->block_group_cache,
1059 start, end, bit_to_set,
1060 GFP_NOFS);
Chris Masonf84a8b32007-11-06 10:26:29 -05001061 } else if (cache->data != data &&
1062 cache->data != BTRFS_BLOCK_GROUP_MIXED) {
1063 cache->data = BTRFS_BLOCK_GROUP_MIXED;
1064 set_extent_bits(&info->block_group_cache,
1065 start, end,
1066 BLOCK_GROUP_DATA |
1067 BLOCK_GROUP_METADATA,
1068 GFP_NOFS);
Chris Mason1e2677e2007-05-29 16:52:18 -04001069 }
Chris Masondb945352007-10-15 16:15:53 -04001070 old_val += num_bytes;
Chris Masoncd1bc462007-04-27 10:08:34 -04001071 } else {
Chris Masondb945352007-10-15 16:15:53 -04001072 old_val -= num_bytes;
Chris Masonf510cfe2007-10-15 16:14:48 -04001073 if (mark_free) {
1074 set_extent_dirty(&info->free_space_cache,
Chris Masondb945352007-10-15 16:15:53 -04001075 bytenr, bytenr + num_bytes - 1,
Chris Masonf510cfe2007-10-15 16:14:48 -04001076 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04001077 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001078 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001079 btrfs_set_block_group_used(&cache->item, old_val);
Chris Masondb945352007-10-15 16:15:53 -04001080 total -= num_bytes;
1081 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001082 }
1083 return 0;
1084}
Yan324ae4d2007-11-16 14:57:08 -05001085static int update_pinned_extents(struct btrfs_root *root,
1086 u64 bytenr, u64 num, int pin)
1087{
1088 u64 len;
1089 struct btrfs_block_group_cache *cache;
1090 struct btrfs_fs_info *fs_info = root->fs_info;
1091
1092 if (pin) {
1093 set_extent_dirty(&fs_info->pinned_extents,
1094 bytenr, bytenr + num - 1, GFP_NOFS);
1095 } else {
1096 clear_extent_dirty(&fs_info->pinned_extents,
1097 bytenr, bytenr + num - 1, GFP_NOFS);
1098 }
1099 while (num > 0) {
1100 cache = btrfs_lookup_block_group(fs_info, bytenr);
1101 WARN_ON(!cache);
1102 len = min(num, cache->key.offset -
1103 (bytenr - cache->key.objectid));
1104 if (pin) {
1105 cache->pinned += len;
1106 fs_info->total_pinned += len;
1107 } else {
1108 cache->pinned -= len;
1109 fs_info->total_pinned -= len;
1110 }
1111 bytenr += len;
1112 num -= len;
1113 }
1114 return 0;
1115}
Chris Mason9078a3e2007-04-26 16:46:15 -04001116
Chris Masond1310b22008-01-24 16:13:08 -05001117int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy)
Chris Masonccd467d2007-06-28 15:57:36 -04001118{
Chris Masonccd467d2007-06-28 15:57:36 -04001119 u64 last = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001120 u64 start;
1121 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001122 struct extent_io_tree *pinned_extents = &root->fs_info->pinned_extents;
Chris Masonccd467d2007-06-28 15:57:36 -04001123 int ret;
Chris Masonccd467d2007-06-28 15:57:36 -04001124
1125 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001126 ret = find_first_extent_bit(pinned_extents, last,
1127 &start, &end, EXTENT_DIRTY);
1128 if (ret)
Chris Masonccd467d2007-06-28 15:57:36 -04001129 break;
Chris Mason1a5bc162007-10-15 16:15:26 -04001130 set_extent_dirty(copy, start, end, GFP_NOFS);
1131 last = end + 1;
Chris Masonccd467d2007-06-28 15:57:36 -04001132 }
1133 return 0;
1134}
1135
1136int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1137 struct btrfs_root *root,
Chris Masond1310b22008-01-24 16:13:08 -05001138 struct extent_io_tree *unpin)
Chris Masona28ec192007-03-06 20:08:01 -05001139{
Chris Mason1a5bc162007-10-15 16:15:26 -04001140 u64 start;
1141 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05001142 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001143 struct extent_io_tree *free_space_cache;
Chris Masonf510cfe2007-10-15 16:14:48 -04001144 free_space_cache = &root->fs_info->free_space_cache;
Chris Masona28ec192007-03-06 20:08:01 -05001145
1146 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001147 ret = find_first_extent_bit(unpin, 0, &start, &end,
1148 EXTENT_DIRTY);
1149 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05001150 break;
Yan324ae4d2007-11-16 14:57:08 -05001151 update_pinned_extents(root, start, end + 1 - start, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001152 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1153 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
Chris Masona28ec192007-03-06 20:08:01 -05001154 }
1155 return 0;
1156}
1157
Chris Mason98ed5172008-01-03 10:01:48 -05001158static int finish_current_insert(struct btrfs_trans_handle *trans,
1159 struct btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -05001160{
Chris Mason7bb86312007-12-11 09:25:06 -05001161 u64 start;
1162 u64 end;
1163 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001164 struct extent_buffer *eb;
Chris Mason7bb86312007-12-11 09:25:06 -05001165 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001166 struct btrfs_key ins;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001167 struct btrfs_disk_key first;
Chris Mason234b63a2007-03-13 10:46:10 -04001168 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -05001169 int ret;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001170 int level;
Chris Mason1a5bc162007-10-15 16:15:26 -04001171 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001172
Chris Mason5f39d392007-10-15 16:14:19 -04001173 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason62e27492007-03-15 12:56:47 -04001174 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason7bb86312007-12-11 09:25:06 -05001175 path = btrfs_alloc_path();
Chris Mason037e6392007-03-07 11:50:24 -05001176
Chris Mason26b80032007-08-08 20:17:12 -04001177 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001178 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1179 &end, EXTENT_LOCKED);
1180 if (ret)
Chris Mason26b80032007-08-08 20:17:12 -04001181 break;
1182
Chris Mason1a5bc162007-10-15 16:15:26 -04001183 ins.objectid = start;
1184 ins.offset = end + 1 - start;
1185 err = btrfs_insert_item(trans, extent_root, &ins,
1186 &extent_item, sizeof(extent_item));
1187 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1188 GFP_NOFS);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001189 eb = read_tree_block(extent_root, ins.objectid, ins.offset);
1190 level = btrfs_header_level(eb);
1191 if (level == 0) {
1192 btrfs_item_key(eb, &first, 0);
1193 } else {
1194 btrfs_node_key(eb, &first, 0);
1195 }
Chris Mason7bb86312007-12-11 09:25:06 -05001196 err = btrfs_insert_extent_backref(trans, extent_root, path,
1197 start, extent_root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -05001198 0, level,
1199 btrfs_disk_key_objectid(&first));
Chris Mason7bb86312007-12-11 09:25:06 -05001200 BUG_ON(err);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001201 free_extent_buffer(eb);
Chris Mason037e6392007-03-07 11:50:24 -05001202 }
Chris Mason7bb86312007-12-11 09:25:06 -05001203 btrfs_free_path(path);
Chris Mason037e6392007-03-07 11:50:24 -05001204 return 0;
1205}
1206
Chris Masondb945352007-10-15 16:15:53 -04001207static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
1208 int pending)
Chris Masone20d96d2007-03-22 12:13:20 -04001209{
Chris Mason1a5bc162007-10-15 16:15:26 -04001210 int err = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001211 struct extent_buffer *buf;
Chris Mason78fae272007-03-25 11:35:08 -04001212
Chris Masonf4b9aa82007-03-27 11:05:53 -04001213 if (!pending) {
Chris Masondb945352007-10-15 16:15:53 -04001214 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -04001215 if (buf) {
1216 if (btrfs_buffer_uptodate(buf)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -04001217 u64 transid =
1218 root->fs_info->running_transaction->transid;
Chris Masondc17ff82008-01-08 15:46:30 -05001219 u64 header_transid =
1220 btrfs_header_generation(buf);
1221 if (header_transid == transid) {
Chris Mason55c69072008-01-09 15:55:33 -05001222 clean_tree_block(NULL, root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001223 free_extent_buffer(buf);
Yanc5492282007-11-06 10:25:25 -05001224 return 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001225 }
Chris Masonf4b9aa82007-03-27 11:05:53 -04001226 }
Chris Mason5f39d392007-10-15 16:14:19 -04001227 free_extent_buffer(buf);
Chris Mason8ef97622007-03-26 10:15:30 -04001228 }
Yan324ae4d2007-11-16 14:57:08 -05001229 update_pinned_extents(root, bytenr, num_bytes, 1);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001230 } else {
Chris Mason1a5bc162007-10-15 16:15:26 -04001231 set_extent_bits(&root->fs_info->pending_del,
Chris Masondb945352007-10-15 16:15:53 -04001232 bytenr, bytenr + num_bytes - 1,
1233 EXTENT_LOCKED, GFP_NOFS);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001234 }
Chris Masonbe744172007-05-06 10:15:01 -04001235 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001236 return 0;
1237}
1238
Chris Masona28ec192007-03-06 20:08:01 -05001239/*
1240 * remove an extent from the root, returns 0 on success
1241 */
Chris Masone089f052007-03-16 16:20:31 -04001242static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001243 *root, u64 bytenr, u64 num_bytes,
1244 u64 root_objectid, u64 ref_generation,
1245 u64 owner_objectid, u64 owner_offset, int pin,
Chris Masone37c9e62007-05-09 20:13:14 -04001246 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -05001247{
Chris Mason5caf2a02007-04-02 11:20:42 -04001248 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001249 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -04001250 struct btrfs_fs_info *info = root->fs_info;
1251 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001252 struct extent_buffer *leaf;
Chris Masona28ec192007-03-06 20:08:01 -05001253 int ret;
Chris Mason234b63a2007-03-13 10:46:10 -04001254 struct btrfs_extent_item *ei;
Chris Masoncf27e1e2007-03-13 09:49:06 -04001255 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -05001256
Chris Masondb945352007-10-15 16:15:53 -04001257 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -04001258 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -04001259 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001260 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001261 if (!path)
1262 return -ENOMEM;
1263
Chris Masonb0331a42008-01-08 15:46:31 -05001264 path->reada = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001265 ret = lookup_extent_backref(trans, extent_root, path,
1266 bytenr, root_objectid,
1267 ref_generation,
1268 owner_objectid, owner_offset, 1);
1269 if (ret == 0) {
1270 ret = btrfs_del_item(trans, extent_root, path);
1271 } else {
1272 btrfs_print_leaf(extent_root, path->nodes[0]);
1273 WARN_ON(1);
1274 printk("Unable to find ref byte nr %Lu root %Lu "
1275 " gen %Lu owner %Lu offset %Lu\n", bytenr,
1276 root_objectid, ref_generation, owner_objectid,
1277 owner_offset);
1278 }
1279 btrfs_release_path(extent_root, path);
Chris Mason5caf2a02007-04-02 11:20:42 -04001280 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001281 if (ret < 0)
1282 return ret;
1283 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001284
1285 leaf = path->nodes[0];
1286 ei = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason123abc82007-03-14 14:14:43 -04001287 struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001288 refs = btrfs_extent_refs(leaf, ei);
1289 BUG_ON(refs == 0);
1290 refs -= 1;
1291 btrfs_set_extent_refs(leaf, ei, refs);
1292 btrfs_mark_buffer_dirty(leaf);
1293
Chris Masoncf27e1e2007-03-13 09:49:06 -04001294 if (refs == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001295 u64 super_used;
1296 u64 root_used;
Chris Mason78fae272007-03-25 11:35:08 -04001297
1298 if (pin) {
Chris Masondb945352007-10-15 16:15:53 -04001299 ret = pin_down_bytes(root, bytenr, num_bytes, 0);
Yanc5492282007-11-06 10:25:25 -05001300 if (ret > 0)
1301 mark_free = 1;
1302 BUG_ON(ret < 0);
Chris Mason78fae272007-03-25 11:35:08 -04001303 }
1304
Josef Bacik58176a92007-08-29 15:47:34 -04001305 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001306 super_used = btrfs_super_bytes_used(&info->super_copy);
1307 btrfs_set_super_bytes_used(&info->super_copy,
1308 super_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001309
1310 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001311 root_used = btrfs_root_used(&root->root_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001312 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -04001313 root_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001314
Chris Mason5caf2a02007-04-02 11:20:42 -04001315 ret = btrfs_del_item(trans, extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -04001316 if (ret) {
1317 return ret;
1318 }
Chris Masondb945352007-10-15 16:15:53 -04001319 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
Chris Mason1e2677e2007-05-29 16:52:18 -04001320 mark_free, 0);
Chris Mason9078a3e2007-04-26 16:46:15 -04001321 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05001322 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001323 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001324 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -05001325 return ret;
1326}
1327
1328/*
Chris Masonfec577f2007-02-26 10:40:21 -05001329 * find all the blocks marked as pending in the radix tree and remove
1330 * them from the extent map
1331 */
Chris Masone089f052007-03-16 16:20:31 -04001332static int del_pending_extents(struct btrfs_trans_handle *trans, struct
1333 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -05001334{
1335 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001336 int err = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001337 u64 start;
1338 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001339 struct extent_io_tree *pending_del;
1340 struct extent_io_tree *pinned_extents;
Chris Mason8ef97622007-03-26 10:15:30 -04001341
Chris Mason1a5bc162007-10-15 16:15:26 -04001342 pending_del = &extent_root->fs_info->pending_del;
1343 pinned_extents = &extent_root->fs_info->pinned_extents;
Chris Masonfec577f2007-02-26 10:40:21 -05001344
1345 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001346 ret = find_first_extent_bit(pending_del, 0, &start, &end,
1347 EXTENT_LOCKED);
1348 if (ret)
Chris Masonfec577f2007-02-26 10:40:21 -05001349 break;
Yan324ae4d2007-11-16 14:57:08 -05001350 update_pinned_extents(extent_root, start, end + 1 - start, 1);
Chris Mason1a5bc162007-10-15 16:15:26 -04001351 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
1352 GFP_NOFS);
1353 ret = __free_extent(trans, extent_root,
Chris Mason7bb86312007-12-11 09:25:06 -05001354 start, end + 1 - start,
1355 extent_root->root_key.objectid,
1356 0, 0, 0, 0, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001357 if (ret)
1358 err = ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001359 }
Chris Masone20d96d2007-03-22 12:13:20 -04001360 return err;
Chris Masonfec577f2007-02-26 10:40:21 -05001361}
1362
1363/*
1364 * remove an extent from the root, returns 0 on success
1365 */
Chris Masone089f052007-03-16 16:20:31 -04001366int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001367 *root, u64 bytenr, u64 num_bytes,
1368 u64 root_objectid, u64 ref_generation,
1369 u64 owner_objectid, u64 owner_offset, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -05001370{
Chris Mason9f5fae22007-03-20 14:38:32 -04001371 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -05001372 int pending_ret;
1373 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05001374
Chris Masondb945352007-10-15 16:15:53 -04001375 WARN_ON(num_bytes < root->sectorsize);
Chris Mason7bb86312007-12-11 09:25:06 -05001376 if (!root->ref_cows)
1377 ref_generation = 0;
1378
Chris Masona28ec192007-03-06 20:08:01 -05001379 if (root == extent_root) {
Chris Masondb945352007-10-15 16:15:53 -04001380 pin_down_bytes(root, bytenr, num_bytes, 1);
Chris Masona28ec192007-03-06 20:08:01 -05001381 return 0;
1382 }
Chris Mason7bb86312007-12-11 09:25:06 -05001383 ret = __free_extent(trans, root, bytenr, num_bytes, root_objectid,
1384 ref_generation, owner_objectid, owner_offset,
1385 pin, pin == 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001386 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -05001387 return ret ? ret : pending_ret;
1388}
1389
Chris Mason87ee04e2007-11-30 11:30:34 -05001390static u64 stripe_align(struct btrfs_root *root, u64 val)
1391{
1392 u64 mask = ((u64)root->stripesize - 1);
1393 u64 ret = (val + mask) & ~mask;
1394 return ret;
1395}
1396
Chris Masonfec577f2007-02-26 10:40:21 -05001397/*
1398 * walks the btree of allocated extents and find a hole of a given size.
1399 * The key ins is changed to record the hole:
1400 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04001401 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05001402 * ins->offset == number of blocks
1403 * Any available blocks before search_start are skipped.
1404 */
Chris Mason98ed5172008-01-03 10:01:48 -05001405static int noinline find_free_extent(struct btrfs_trans_handle *trans,
1406 struct btrfs_root *orig_root,
1407 u64 num_bytes, u64 empty_size,
1408 u64 search_start, u64 search_end,
1409 u64 hint_byte, struct btrfs_key *ins,
1410 u64 exclude_start, u64 exclude_nr,
1411 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001412{
Chris Mason5caf2a02007-04-02 11:20:42 -04001413 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001414 struct btrfs_key key;
Chris Masonfec577f2007-02-26 10:40:21 -05001415 u64 hole_size = 0;
Chris Mason87ee04e2007-11-30 11:30:34 -05001416 u64 aligned;
1417 int ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001418 int slot = 0;
Chris Masondb945352007-10-15 16:15:53 -04001419 u64 last_byte = 0;
Chris Mason4529ba42008-01-31 16:45:07 -05001420 u64 *last_ptr = NULL;
Chris Masonbe744172007-05-06 10:15:01 -04001421 u64 orig_search_start = search_start;
Chris Masonfec577f2007-02-26 10:40:21 -05001422 int start_found;
Chris Mason5f39d392007-10-15 16:14:19 -04001423 struct extent_buffer *l;
Chris Mason9f5fae22007-03-20 14:38:32 -04001424 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -04001425 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001426 u64 total_needed = num_bytes;
Chris Masone20d96d2007-03-22 12:13:20 -04001427 int level;
Chris Masonbe08c1b2007-05-03 09:06:49 -04001428 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -04001429 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -04001430 int wrapped = 0;
Chris Masond7fc6402008-02-18 12:12:38 -05001431 int empty_cluster;
Chris Masonf84a8b32007-11-06 10:26:29 -05001432 u64 cached_start;
Chris Masonfec577f2007-02-26 10:40:21 -05001433
Chris Masondb945352007-10-15 16:15:53 -04001434 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04001435 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
1436
Chris Mason5f39d392007-10-15 16:14:19 -04001437 level = btrfs_header_level(root->node);
1438
Chris Mason015a739c2007-11-26 16:15:16 -08001439 if (num_bytes >= 32 * 1024 * 1024 && hint_byte) {
Chris Mason257d0ce2007-11-07 21:08:16 -05001440 data = BTRFS_BLOCK_GROUP_MIXED;
1441 }
1442
Chris Masond7fc6402008-02-18 12:12:38 -05001443 if (!data) {
Chris Mason60cde612008-02-01 14:51:59 -05001444 last_ptr = &root->fs_info->last_alloc;
Chris Masond7fc6402008-02-18 12:12:38 -05001445 empty_cluster = 128 * 1024;
1446 }
Chris Mason60cde612008-02-01 14:51:59 -05001447
Chris Masond7fc6402008-02-18 12:12:38 -05001448 if (data && btrfs_test_opt(root, SSD)) {
Chris Mason60cde612008-02-01 14:51:59 -05001449 last_ptr = &root->fs_info->last_data_alloc;
Chris Masond7fc6402008-02-18 12:12:38 -05001450 empty_cluster = 2 * 1024 * 1024;
1451 }
Chris Mason60cde612008-02-01 14:51:59 -05001452
1453 if (last_ptr) {
1454 if (*last_ptr)
Chris Mason4529ba42008-01-31 16:45:07 -05001455 hint_byte = *last_ptr;
Chris Mason4529ba42008-01-31 16:45:07 -05001456 else {
1457 hint_byte = hint_byte &
1458 ~((u64)BTRFS_BLOCK_GROUP_SIZE - 1);
Chris Masond7fc6402008-02-18 12:12:38 -05001459 empty_size += empty_cluster;
Chris Masone18e4802008-01-18 10:54:22 -05001460 }
Chris Masond7fc6402008-02-18 12:12:38 -05001461 search_start = max(search_start, hint_byte);
Chris Masone18e4802008-01-18 10:54:22 -05001462 }
1463
Chris Masonc31f8832008-01-08 15:46:31 -05001464 search_end = min(search_end,
1465 btrfs_super_total_bytes(&info->super_copy));
Chris Masondb945352007-10-15 16:15:53 -04001466 if (hint_byte) {
1467 block_group = btrfs_lookup_block_group(info, hint_byte);
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001468 if (!block_group)
1469 hint_byte = search_start;
Chris Masonbe744172007-05-06 10:15:01 -04001470 block_group = btrfs_find_block_group(root, block_group,
Chris Masondb945352007-10-15 16:15:53 -04001471 hint_byte, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001472 } else {
1473 block_group = btrfs_find_block_group(root,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001474 trans->block_group,
1475 search_start, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001476 }
1477
Chris Mason6702ed42007-08-07 16:15:09 -04001478 total_needed += empty_size;
Chris Masone0115992007-06-19 16:23:05 -04001479 path = btrfs_alloc_path();
Chris Masonbe744172007-05-06 10:15:01 -04001480check_failed:
Chris Mason70b043f2007-12-13 09:02:46 -05001481 if (!block_group) {
1482 block_group = btrfs_lookup_block_group(info, search_start);
1483 if (!block_group)
1484 block_group = btrfs_lookup_block_group(info,
1485 orig_search_start);
1486 }
Yan5e5745d2007-11-16 14:57:09 -05001487 search_start = find_search_start(root, &block_group, search_start,
Yand548ee52008-01-03 13:56:30 -05001488 total_needed, data);
Chris Masone18e4802008-01-18 10:54:22 -05001489
Chris Mason60cde612008-02-01 14:51:59 -05001490 if (last_ptr && *last_ptr && search_start != *last_ptr) {
1491 *last_ptr = 0;
Chris Masone18e4802008-01-18 10:54:22 -05001492 if (!empty_size) {
Chris Masond7fc6402008-02-18 12:12:38 -05001493 empty_size += empty_cluster;
Chris Masone18e4802008-01-18 10:54:22 -05001494 total_needed += empty_size;
1495 }
1496 search_start = find_search_start(root, &block_group,
1497 search_start, total_needed,
1498 data);
1499 }
1500
Chris Mason87ee04e2007-11-30 11:30:34 -05001501 search_start = stripe_align(root, search_start);
Chris Masonf84a8b32007-11-06 10:26:29 -05001502 cached_start = search_start;
Chris Mason5caf2a02007-04-02 11:20:42 -04001503 btrfs_init_path(path);
Chris Masonfec577f2007-02-26 10:40:21 -05001504 ins->objectid = search_start;
1505 ins->offset = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001506 start_found = 0;
Chris Mason2cc58cf2007-08-27 16:49:44 -04001507 path->reada = 2;
Chris Masone37c9e62007-05-09 20:13:14 -04001508
Chris Mason5caf2a02007-04-02 11:20:42 -04001509 ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
Chris Mason0f70abe2007-02-28 16:46:22 -05001510 if (ret < 0)
1511 goto error;
Yand548ee52008-01-03 13:56:30 -05001512 ret = find_previous_extent(root, path);
1513 if (ret < 0)
1514 goto error;
Chris Mason5f39d392007-10-15 16:14:19 -04001515 l = path->nodes[0];
1516 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
Chris Masonfec577f2007-02-26 10:40:21 -05001517 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001518 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -04001519 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04001520 if (slot >= btrfs_header_nritems(l)) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001521 ret = btrfs_next_leaf(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -05001522 if (ret == 0)
1523 continue;
Chris Mason0f70abe2007-02-28 16:46:22 -05001524 if (ret < 0)
1525 goto error;
Chris Masone19caa52007-10-15 16:17:44 -04001526
1527 search_start = max(search_start,
1528 block_group->key.objectid);
Chris Masonfec577f2007-02-26 10:40:21 -05001529 if (!start_found) {
Chris Mason87ee04e2007-11-30 11:30:34 -05001530 aligned = stripe_align(root, search_start);
1531 ins->objectid = aligned;
1532 if (aligned >= search_end) {
1533 ret = -ENOSPC;
1534 goto error;
1535 }
1536 ins->offset = search_end - aligned;
Chris Masonfec577f2007-02-26 10:40:21 -05001537 start_found = 1;
1538 goto check_pending;
1539 }
Chris Mason87ee04e2007-11-30 11:30:34 -05001540 ins->objectid = stripe_align(root,
1541 last_byte > search_start ?
1542 last_byte : search_start);
1543 if (search_end <= ins->objectid) {
1544 ret = -ENOSPC;
1545 goto error;
1546 }
Chris Mason3e1ad542007-05-07 20:03:49 -04001547 ins->offset = search_end - ins->objectid;
Chris Masone19caa52007-10-15 16:17:44 -04001548 BUG_ON(ins->objectid >= search_end);
Chris Masonfec577f2007-02-26 10:40:21 -05001549 goto check_pending;
1550 }
Chris Mason5f39d392007-10-15 16:14:19 -04001551 btrfs_item_key_to_cpu(l, &key, slot);
Chris Mason96b51792007-10-15 16:15:19 -04001552
Chris Masondb945352007-10-15 16:15:53 -04001553 if (key.objectid >= search_start && key.objectid > last_byte &&
Chris Masone37c9e62007-05-09 20:13:14 -04001554 start_found) {
Chris Masondb945352007-10-15 16:15:53 -04001555 if (last_byte < search_start)
1556 last_byte = search_start;
Chris Mason87ee04e2007-11-30 11:30:34 -05001557 aligned = stripe_align(root, last_byte);
1558 hole_size = key.objectid - aligned;
1559 if (key.objectid > aligned && hole_size >= num_bytes) {
1560 ins->objectid = aligned;
Chris Masone37c9e62007-05-09 20:13:14 -04001561 ins->offset = hole_size;
1562 goto check_pending;
Chris Mason0579da42007-03-07 16:15:30 -05001563 }
Chris Masonfec577f2007-02-26 10:40:21 -05001564 }
Chris Mason96b51792007-10-15 16:15:19 -04001565 if (btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY) {
Chris Mason7bb86312007-12-11 09:25:06 -05001566 if (!start_found && btrfs_key_type(&key) ==
1567 BTRFS_BLOCK_GROUP_ITEM_KEY) {
Chris Masondb945352007-10-15 16:15:53 -04001568 last_byte = key.objectid;
Chris Mason96b51792007-10-15 16:15:19 -04001569 start_found = 1;
1570 }
Chris Masone37c9e62007-05-09 20:13:14 -04001571 goto next;
Chris Mason96b51792007-10-15 16:15:19 -04001572 }
1573
Chris Masone37c9e62007-05-09 20:13:14 -04001574
Chris Mason0579da42007-03-07 16:15:30 -05001575 start_found = 1;
Chris Masondb945352007-10-15 16:15:53 -04001576 last_byte = key.objectid + key.offset;
Chris Masonf510cfe2007-10-15 16:14:48 -04001577
Chris Mason257d0ce2007-11-07 21:08:16 -05001578 if (!full_scan && data != BTRFS_BLOCK_GROUP_MIXED &&
1579 last_byte >= block_group->key.objectid +
Chris Masonbe744172007-05-06 10:15:01 -04001580 block_group->key.offset) {
1581 btrfs_release_path(root, path);
1582 search_start = block_group->key.objectid +
Chris Masone19caa52007-10-15 16:17:44 -04001583 block_group->key.offset;
Chris Masonbe744172007-05-06 10:15:01 -04001584 goto new_group;
1585 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001586next:
Chris Mason5caf2a02007-04-02 11:20:42 -04001587 path->slots[0]++;
Chris Masonde428b62007-05-18 13:28:27 -04001588 cond_resched();
Chris Masonfec577f2007-02-26 10:40:21 -05001589 }
Chris Masonfec577f2007-02-26 10:40:21 -05001590check_pending:
1591 /* we have to make sure we didn't find an extent that has already
1592 * been allocated by the map tree or the original allocation
1593 */
Chris Mason5caf2a02007-04-02 11:20:42 -04001594 btrfs_release_path(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -05001595 BUG_ON(ins->objectid < search_start);
Chris Masone37c9e62007-05-09 20:13:14 -04001596
Chris Masondb945352007-10-15 16:15:53 -04001597 if (ins->objectid + num_bytes >= search_end)
Chris Masoncf675822007-09-17 11:00:51 -04001598 goto enospc;
Chris Mason257d0ce2007-11-07 21:08:16 -05001599 if (!full_scan && data != BTRFS_BLOCK_GROUP_MIXED &&
Yan5cf66422007-11-16 14:57:09 -05001600 ins->objectid + num_bytes > block_group->
Chris Masone19caa52007-10-15 16:17:44 -04001601 key.objectid + block_group->key.offset) {
1602 search_start = block_group->key.objectid +
1603 block_group->key.offset;
1604 goto new_group;
1605 }
Chris Mason1a5bc162007-10-15 16:15:26 -04001606 if (test_range_bit(&info->extent_ins, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001607 ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
1608 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001609 goto new_group;
1610 }
1611 if (test_range_bit(&info->pinned_extents, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001612 ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
1613 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001614 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05001615 }
Chris Masondb945352007-10-15 16:15:53 -04001616 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
Chris Masonf2654de2007-06-26 12:20:46 -04001617 ins->objectid < exclude_start + exclude_nr)) {
1618 search_start = exclude_start + exclude_nr;
1619 goto new_group;
1620 }
Chris Masone37c9e62007-05-09 20:13:14 -04001621 if (!data) {
Chris Mason5276aed2007-06-11 21:33:38 -04001622 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Mason26b80032007-08-08 20:17:12 -04001623 if (block_group)
1624 trans->block_group = block_group;
Chris Masoncd1bc462007-04-27 10:08:34 -04001625 }
Chris Masondb945352007-10-15 16:15:53 -04001626 ins->offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001627 btrfs_free_path(path);
Chris Mason068fe392008-02-05 10:20:17 -05001628 if (last_ptr) {
Chris Mason4529ba42008-01-31 16:45:07 -05001629 *last_ptr = ins->objectid + ins->offset;
Chris Mason068fe392008-02-05 10:20:17 -05001630 if (*last_ptr ==
1631 btrfs_super_total_bytes(&root->fs_info->super_copy)) {
1632 *last_ptr = 0;
1633 }
1634 }
Chris Masonfec577f2007-02-26 10:40:21 -05001635 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04001636
1637new_group:
Chris Masondb945352007-10-15 16:15:53 -04001638 if (search_start + num_bytes >= search_end) {
Chris Masoncf675822007-09-17 11:00:51 -04001639enospc:
Chris Masonbe744172007-05-06 10:15:01 -04001640 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04001641 if (full_scan) {
1642 ret = -ENOSPC;
1643 goto error;
1644 }
Chris Mason6702ed42007-08-07 16:15:09 -04001645 if (wrapped) {
1646 if (!full_scan)
1647 total_needed -= empty_size;
Chris Masonfbdc7622007-05-30 10:22:12 -04001648 full_scan = 1;
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001649 data = BTRFS_BLOCK_GROUP_MIXED;
Chris Mason6702ed42007-08-07 16:15:09 -04001650 } else
Chris Masonfbdc7622007-05-30 10:22:12 -04001651 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04001652 }
Chris Mason5276aed2007-06-11 21:33:38 -04001653 block_group = btrfs_lookup_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04001654 cond_resched();
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001655 block_group = btrfs_find_block_group(root, block_group,
1656 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04001657 goto check_failed;
1658
Chris Mason0f70abe2007-02-28 16:46:22 -05001659error:
Chris Mason5caf2a02007-04-02 11:20:42 -04001660 btrfs_release_path(root, path);
1661 btrfs_free_path(path);
Chris Mason0f70abe2007-02-28 16:46:22 -05001662 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001663}
Chris Masonfec577f2007-02-26 10:40:21 -05001664/*
Chris Masonfec577f2007-02-26 10:40:21 -05001665 * finds a free extent and does all the dirty work required for allocation
1666 * returns the key for the extent through ins, and a tree buffer for
1667 * the first block of the extent through buf.
1668 *
1669 * returns 0 if everything worked, non-zero otherwise.
1670 */
Chris Mason4d775672007-04-20 20:23:12 -04001671int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -05001672 struct btrfs_root *root,
1673 u64 num_bytes, u64 root_objectid, u64 ref_generation,
1674 u64 owner, u64 owner_offset,
1675 u64 empty_size, u64 hint_byte,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001676 u64 search_end, struct btrfs_key *ins, int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001677{
1678 int ret;
1679 int pending_ret;
Chris Masonc31f8832008-01-08 15:46:31 -05001680 u64 super_used;
1681 u64 root_used;
Chris Masonfbdc7622007-05-30 10:22:12 -04001682 u64 search_start = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05001683 u64 new_hint;
Chris Mason47e4bb92008-02-01 14:51:59 -05001684 u32 sizes[2];
Chris Mason1261ec42007-03-20 20:35:03 -04001685 struct btrfs_fs_info *info = root->fs_info;
1686 struct btrfs_root *extent_root = info->extent_root;
Chris Mason47e4bb92008-02-01 14:51:59 -05001687 struct btrfs_extent_item *extent_item;
1688 struct btrfs_extent_ref *ref;
Chris Mason7bb86312007-12-11 09:25:06 -05001689 struct btrfs_path *path;
Chris Mason47e4bb92008-02-01 14:51:59 -05001690 struct btrfs_key keys[2];
Chris Mason8f662a72008-01-02 10:01:11 -05001691
1692 new_hint = max(hint_byte, root->fs_info->alloc_start);
Chris Masonedbd8d42007-12-21 16:27:24 -05001693 if (new_hint < btrfs_super_total_bytes(&info->super_copy))
1694 hint_byte = new_hint;
Chris Mason8f662a72008-01-02 10:01:11 -05001695
Chris Masondb945352007-10-15 16:15:53 -04001696 WARN_ON(num_bytes < root->sectorsize);
1697 ret = find_free_extent(trans, root, num_bytes, empty_size,
1698 search_start, search_end, hint_byte, ins,
Chris Mason26b80032007-08-08 20:17:12 -04001699 trans->alloc_exclude_start,
1700 trans->alloc_exclude_nr, data);
Chris Masonccd467d2007-06-28 15:57:36 -04001701 BUG_ON(ret);
Chris Masonf2654de2007-06-26 12:20:46 -04001702 if (ret)
1703 return ret;
1704
Josef Bacik58176a92007-08-29 15:47:34 -04001705 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001706 super_used = btrfs_super_bytes_used(&info->super_copy);
1707 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
Chris Mason26b80032007-08-08 20:17:12 -04001708
Josef Bacik58176a92007-08-29 15:47:34 -04001709 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001710 root_used = btrfs_root_used(&root->root_item);
1711 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001712
Chris Masonf510cfe2007-10-15 16:14:48 -04001713 clear_extent_dirty(&root->fs_info->free_space_cache,
1714 ins->objectid, ins->objectid + ins->offset - 1,
1715 GFP_NOFS);
1716
Chris Mason26b80032007-08-08 20:17:12 -04001717 if (root == extent_root) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001718 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
1719 ins->objectid + ins->offset - 1,
1720 EXTENT_LOCKED, GFP_NOFS);
Chris Masone19caa52007-10-15 16:17:44 -04001721 WARN_ON(data == 1);
Chris Mason26b80032007-08-08 20:17:12 -04001722 goto update_block;
1723 }
1724
1725 WARN_ON(trans->alloc_exclude_nr);
1726 trans->alloc_exclude_start = ins->objectid;
1727 trans->alloc_exclude_nr = ins->offset;
Chris Mason037e6392007-03-07 11:50:24 -05001728
Chris Mason47e4bb92008-02-01 14:51:59 -05001729 memcpy(&keys[0], ins, sizeof(*ins));
1730 keys[1].offset = hash_extent_ref(root_objectid, ref_generation,
1731 owner, owner_offset);
1732 keys[1].objectid = ins->objectid;
1733 keys[1].type = BTRFS_EXTENT_REF_KEY;
1734 sizes[0] = sizeof(*extent_item);
1735 sizes[1] = sizeof(*ref);
Chris Mason7bb86312007-12-11 09:25:06 -05001736
1737 path = btrfs_alloc_path();
1738 BUG_ON(!path);
Chris Mason47e4bb92008-02-01 14:51:59 -05001739
1740 ret = btrfs_insert_empty_items(trans, extent_root, path, keys,
1741 sizes, 2);
Chris Mason26b80032007-08-08 20:17:12 -04001742
Chris Masonccd467d2007-06-28 15:57:36 -04001743 BUG_ON(ret);
Chris Mason47e4bb92008-02-01 14:51:59 -05001744 extent_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1745 struct btrfs_extent_item);
1746 btrfs_set_extent_refs(path->nodes[0], extent_item, 1);
1747 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1748 struct btrfs_extent_ref);
1749
1750 btrfs_set_ref_root(path->nodes[0], ref, root_objectid);
1751 btrfs_set_ref_generation(path->nodes[0], ref, ref_generation);
1752 btrfs_set_ref_objectid(path->nodes[0], ref, owner);
1753 btrfs_set_ref_offset(path->nodes[0], ref, owner_offset);
1754
1755 btrfs_mark_buffer_dirty(path->nodes[0]);
1756
1757 trans->alloc_exclude_start = 0;
1758 trans->alloc_exclude_nr = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001759 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001760 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001761 pending_ret = del_pending_extents(trans, extent_root);
Chris Masonf510cfe2007-10-15 16:14:48 -04001762
Chris Masone37c9e62007-05-09 20:13:14 -04001763 if (ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001764 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001765 }
1766 if (pending_ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001767 return pending_ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001768 }
Chris Mason26b80032007-08-08 20:17:12 -04001769
1770update_block:
Chris Mason1e2677e2007-05-29 16:52:18 -04001771 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0,
1772 data);
Chris Masonf5947062008-02-04 10:10:13 -05001773 if (ret) {
1774 printk("update block group failed for %Lu %Lu\n",
1775 ins->objectid, ins->offset);
1776 BUG();
1777 }
Chris Mason037e6392007-03-07 11:50:24 -05001778 return 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001779}
1780
1781/*
1782 * helper function to allocate a block for a given tree
1783 * returns the tree buffer or NULL.
1784 */
Chris Mason5f39d392007-10-15 16:14:19 -04001785struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -04001786 struct btrfs_root *root,
Chris Mason7bb86312007-12-11 09:25:06 -05001787 u32 blocksize,
1788 u64 root_objectid, u64 hint,
1789 u64 empty_size)
1790{
1791 u64 ref_generation;
1792
1793 if (root->ref_cows)
1794 ref_generation = trans->transid;
1795 else
1796 ref_generation = 0;
1797
1798
1799 return __btrfs_alloc_free_block(trans, root, blocksize, root_objectid,
1800 ref_generation, 0, 0, hint, empty_size);
1801}
1802
1803/*
1804 * helper function to allocate a block for a given tree
1805 * returns the tree buffer or NULL.
1806 */
1807struct extent_buffer *__btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1808 struct btrfs_root *root,
1809 u32 blocksize,
1810 u64 root_objectid,
1811 u64 ref_generation,
1812 u64 first_objectid,
1813 int level,
1814 u64 hint,
Chris Mason5f39d392007-10-15 16:14:19 -04001815 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05001816{
Chris Masone2fa7222007-03-12 16:22:34 -04001817 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05001818 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04001819 struct extent_buffer *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05001820
Chris Mason7bb86312007-12-11 09:25:06 -05001821 ret = btrfs_alloc_extent(trans, root, blocksize,
1822 root_objectid, ref_generation,
Chris Masonf6dbff52007-12-13 11:13:32 -05001823 level, first_objectid, empty_size, hint,
Chris Masondb945352007-10-15 16:15:53 -04001824 (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05001825 if (ret) {
Chris Mason54aa1f42007-06-22 14:16:25 -04001826 BUG_ON(ret > 0);
1827 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05001828 }
Chris Masondb945352007-10-15 16:15:53 -04001829 buf = btrfs_find_create_tree_block(root, ins.objectid, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04001830 if (!buf) {
Chris Mason7bb86312007-12-11 09:25:06 -05001831 btrfs_free_extent(trans, root, ins.objectid, blocksize,
1832 root->root_key.objectid, ref_generation,
1833 0, 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001834 return ERR_PTR(-ENOMEM);
1835 }
Chris Mason55c69072008-01-09 15:55:33 -05001836 btrfs_set_header_generation(buf, trans->transid);
1837 clean_tree_block(trans, root, buf);
1838 wait_on_tree_block_writeback(root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001839 btrfs_set_buffer_uptodate(buf);
Chris Mason55c69072008-01-09 15:55:33 -05001840
1841 if (PageDirty(buf->first_page)) {
1842 printk("page %lu dirty\n", buf->first_page->index);
1843 WARN_ON(1);
1844 }
1845
Chris Mason5f39d392007-10-15 16:14:19 -04001846 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
1847 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001848 set_extent_bits(&BTRFS_I(root->fs_info->btree_inode)->io_tree,
Chris Mason19c00dd2007-10-15 16:19:22 -04001849 buf->start, buf->start + buf->len - 1,
1850 EXTENT_CSUM, GFP_NOFS);
1851 buf->flags |= EXTENT_CSUM;
Chris Mason9afbb0b2008-02-15 13:19:35 -05001852 if (!btrfs_test_opt(root, SSD))
1853 btrfs_set_buffer_defrag(buf);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001854 trans->blocks_used++;
Chris Masonfec577f2007-02-26 10:40:21 -05001855 return buf;
1856}
Chris Masona28ec192007-03-06 20:08:01 -05001857
Chris Mason98ed5172008-01-03 10:01:48 -05001858static int noinline drop_leaf_ref(struct btrfs_trans_handle *trans,
1859 struct btrfs_root *root,
1860 struct extent_buffer *leaf)
Chris Mason6407bf62007-03-27 06:33:00 -04001861{
Chris Mason7bb86312007-12-11 09:25:06 -05001862 u64 leaf_owner;
1863 u64 leaf_generation;
Chris Mason5f39d392007-10-15 16:14:19 -04001864 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04001865 struct btrfs_file_extent_item *fi;
1866 int i;
1867 int nritems;
1868 int ret;
1869
Chris Mason5f39d392007-10-15 16:14:19 -04001870 BUG_ON(!btrfs_is_leaf(leaf));
1871 nritems = btrfs_header_nritems(leaf);
Chris Mason7bb86312007-12-11 09:25:06 -05001872 leaf_owner = btrfs_header_owner(leaf);
1873 leaf_generation = btrfs_header_generation(leaf);
1874
Chris Mason6407bf62007-03-27 06:33:00 -04001875 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001876 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001877
1878 btrfs_item_key_to_cpu(leaf, &key, i);
1879 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04001880 continue;
1881 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001882 if (btrfs_file_extent_type(leaf, fi) ==
1883 BTRFS_FILE_EXTENT_INLINE)
Chris Mason236454d2007-04-19 13:37:44 -04001884 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04001885 /*
1886 * FIXME make sure to insert a trans record that
1887 * repeats the snapshot del on crash
1888 */
Chris Masondb945352007-10-15 16:15:53 -04001889 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1890 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04001891 continue;
Chris Masondb945352007-10-15 16:15:53 -04001892 ret = btrfs_free_extent(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001893 btrfs_file_extent_disk_num_bytes(leaf, fi),
1894 leaf_owner, leaf_generation,
1895 key.objectid, key.offset, 0);
Chris Mason6407bf62007-03-27 06:33:00 -04001896 BUG_ON(ret);
1897 }
1898 return 0;
1899}
1900
Chris Mason98ed5172008-01-03 10:01:48 -05001901static void noinline reada_walk_down(struct btrfs_root *root,
Chris Masonbea495e2008-01-24 16:13:14 -05001902 struct extent_buffer *node,
1903 int slot)
Chris Masone0115992007-06-19 16:23:05 -04001904{
Chris Masondb945352007-10-15 16:15:53 -04001905 u64 bytenr;
Chris Masonbea495e2008-01-24 16:13:14 -05001906 u64 last = 0;
1907 u32 nritems;
Chris Masone0115992007-06-19 16:23:05 -04001908 u32 refs;
Chris Masondb945352007-10-15 16:15:53 -04001909 u32 blocksize;
Chris Masonbea495e2008-01-24 16:13:14 -05001910 int ret;
1911 int i;
1912 int level;
1913 int skipped = 0;
Chris Masone0115992007-06-19 16:23:05 -04001914
Chris Mason5f39d392007-10-15 16:14:19 -04001915 nritems = btrfs_header_nritems(node);
Chris Masondb945352007-10-15 16:15:53 -04001916 level = btrfs_header_level(node);
Chris Masonbea495e2008-01-24 16:13:14 -05001917 if (level)
1918 return;
1919
1920 for (i = slot; i < nritems && skipped < 32; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001921 bytenr = btrfs_node_blockptr(node, i);
Chris Masonbea495e2008-01-24 16:13:14 -05001922 if (last && ((bytenr > last && bytenr - last > 32 * 1024) ||
1923 (last > bytenr && last - bytenr > 32 * 1024))) {
1924 skipped++;
Chris Masone0115992007-06-19 16:23:05 -04001925 continue;
Chris Masonbea495e2008-01-24 16:13:14 -05001926 }
1927 blocksize = btrfs_level_size(root, level - 1);
1928 if (i != slot) {
1929 ret = lookup_extent_ref(NULL, root, bytenr,
1930 blocksize, &refs);
1931 BUG_ON(ret);
1932 if (refs != 1) {
1933 skipped++;
1934 continue;
1935 }
1936 }
Chris Mason409eb952007-08-08 20:17:12 -04001937 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -04001938 ret = readahead_tree_block(root, bytenr, blocksize);
Chris Masonbea495e2008-01-24 16:13:14 -05001939 last = bytenr + blocksize;
Chris Mason409eb952007-08-08 20:17:12 -04001940 cond_resched();
1941 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone0115992007-06-19 16:23:05 -04001942 if (ret)
1943 break;
1944 }
1945}
1946
Chris Mason9aca1d52007-03-13 11:09:37 -04001947/*
1948 * helper function for drop_snapshot, this walks down the tree dropping ref
1949 * counts as it goes.
1950 */
Chris Mason98ed5172008-01-03 10:01:48 -05001951static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
1952 struct btrfs_root *root,
1953 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05001954{
Chris Mason7bb86312007-12-11 09:25:06 -05001955 u64 root_owner;
1956 u64 root_gen;
1957 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001958 struct extent_buffer *next;
1959 struct extent_buffer *cur;
Chris Mason7bb86312007-12-11 09:25:06 -05001960 struct extent_buffer *parent;
Chris Masondb945352007-10-15 16:15:53 -04001961 u32 blocksize;
Chris Mason20524f02007-03-10 06:35:47 -05001962 int ret;
1963 u32 refs;
1964
Chris Mason5caf2a02007-04-02 11:20:42 -04001965 WARN_ON(*level < 0);
1966 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason5f39d392007-10-15 16:14:19 -04001967 ret = lookup_extent_ref(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04001968 path->nodes[*level]->start,
1969 path->nodes[*level]->len, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05001970 BUG_ON(ret);
1971 if (refs > 1)
1972 goto out;
Chris Masone0115992007-06-19 16:23:05 -04001973
Chris Mason9aca1d52007-03-13 11:09:37 -04001974 /*
1975 * walk down to the last node level and free all the leaves
1976 */
Chris Mason6407bf62007-03-27 06:33:00 -04001977 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001978 WARN_ON(*level < 0);
1979 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05001980 cur = path->nodes[*level];
Chris Masone0115992007-06-19 16:23:05 -04001981
Chris Mason5f39d392007-10-15 16:14:19 -04001982 if (btrfs_header_level(cur) != *level)
Chris Mason2c90e5d2007-04-02 10:50:19 -04001983 WARN_ON(1);
Chris Masone0115992007-06-19 16:23:05 -04001984
Chris Mason7518a232007-03-12 12:01:18 -04001985 if (path->slots[*level] >=
Chris Mason5f39d392007-10-15 16:14:19 -04001986 btrfs_header_nritems(cur))
Chris Mason20524f02007-03-10 06:35:47 -05001987 break;
Chris Mason6407bf62007-03-27 06:33:00 -04001988 if (*level == 0) {
1989 ret = drop_leaf_ref(trans, root, cur);
1990 BUG_ON(ret);
1991 break;
1992 }
Chris Masondb945352007-10-15 16:15:53 -04001993 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
1994 blocksize = btrfs_level_size(root, *level - 1);
1995 ret = lookup_extent_ref(trans, root, bytenr, blocksize, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04001996 BUG_ON(ret);
1997 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05001998 parent = path->nodes[*level];
1999 root_owner = btrfs_header_owner(parent);
2000 root_gen = btrfs_header_generation(parent);
Chris Mason20524f02007-03-10 06:35:47 -05002001 path->slots[*level]++;
Chris Masondb945352007-10-15 16:15:53 -04002002 ret = btrfs_free_extent(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002003 blocksize, root_owner,
2004 root_gen, 0, 0, 1);
Chris Mason20524f02007-03-10 06:35:47 -05002005 BUG_ON(ret);
2006 continue;
2007 }
Chris Masondb945352007-10-15 16:15:53 -04002008 next = btrfs_find_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04002009 if (!next || !btrfs_buffer_uptodate(next)) {
2010 free_extent_buffer(next);
Chris Masonbea495e2008-01-24 16:13:14 -05002011 reada_walk_down(root, cur, path->slots[*level]);
Chris Masone9d0b132007-08-10 14:06:19 -04002012 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -04002013 next = read_tree_block(root, bytenr, blocksize);
Chris Masone9d0b132007-08-10 14:06:19 -04002014 mutex_lock(&root->fs_info->fs_mutex);
2015
2016 /* we dropped the lock, check one more time */
Chris Masondb945352007-10-15 16:15:53 -04002017 ret = lookup_extent_ref(trans, root, bytenr,
2018 blocksize, &refs);
Chris Masone9d0b132007-08-10 14:06:19 -04002019 BUG_ON(ret);
2020 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002021 parent = path->nodes[*level];
2022 root_owner = btrfs_header_owner(parent);
2023 root_gen = btrfs_header_generation(parent);
2024
Chris Masone9d0b132007-08-10 14:06:19 -04002025 path->slots[*level]++;
Chris Mason5f39d392007-10-15 16:14:19 -04002026 free_extent_buffer(next);
Chris Mason7bb86312007-12-11 09:25:06 -05002027 ret = btrfs_free_extent(trans, root, bytenr,
2028 blocksize,
2029 root_owner,
2030 root_gen, 0, 0, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04002031 BUG_ON(ret);
2032 continue;
2033 }
2034 }
Chris Mason5caf2a02007-04-02 11:20:42 -04002035 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04002036 if (path->nodes[*level-1])
Chris Mason5f39d392007-10-15 16:14:19 -04002037 free_extent_buffer(path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05002038 path->nodes[*level-1] = next;
Chris Mason5f39d392007-10-15 16:14:19 -04002039 *level = btrfs_header_level(next);
Chris Mason20524f02007-03-10 06:35:47 -05002040 path->slots[*level] = 0;
2041 }
2042out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002043 WARN_ON(*level < 0);
2044 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason7bb86312007-12-11 09:25:06 -05002045
2046 if (path->nodes[*level] == root->node) {
2047 root_owner = root->root_key.objectid;
2048 parent = path->nodes[*level];
2049 } else {
2050 parent = path->nodes[*level + 1];
2051 root_owner = btrfs_header_owner(parent);
2052 }
2053
2054 root_gen = btrfs_header_generation(parent);
Chris Masondb945352007-10-15 16:15:53 -04002055 ret = btrfs_free_extent(trans, root, path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002056 path->nodes[*level]->len,
2057 root_owner, root_gen, 0, 0, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002058 free_extent_buffer(path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05002059 path->nodes[*level] = NULL;
2060 *level += 1;
2061 BUG_ON(ret);
2062 return 0;
2063}
2064
Chris Mason9aca1d52007-03-13 11:09:37 -04002065/*
2066 * helper for dropping snapshots. This walks back up the tree in the path
2067 * to find the first node higher up where we haven't yet gone through
2068 * all the slots
2069 */
Chris Mason98ed5172008-01-03 10:01:48 -05002070static int noinline walk_up_tree(struct btrfs_trans_handle *trans,
2071 struct btrfs_root *root,
2072 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002073{
Chris Mason7bb86312007-12-11 09:25:06 -05002074 u64 root_owner;
2075 u64 root_gen;
2076 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002077 int i;
2078 int slot;
2079 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04002080
Chris Mason234b63a2007-03-13 10:46:10 -04002081 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05002082 slot = path->slots[i];
Chris Mason5f39d392007-10-15 16:14:19 -04002083 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
2084 struct extent_buffer *node;
2085 struct btrfs_disk_key disk_key;
2086 node = path->nodes[i];
Chris Mason20524f02007-03-10 06:35:47 -05002087 path->slots[i]++;
2088 *level = i;
Chris Mason9f3a7422007-08-07 15:52:19 -04002089 WARN_ON(*level == 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002090 btrfs_node_key(node, &disk_key, path->slots[i]);
Chris Mason9f3a7422007-08-07 15:52:19 -04002091 memcpy(&root_item->drop_progress,
Chris Mason5f39d392007-10-15 16:14:19 -04002092 &disk_key, sizeof(disk_key));
Chris Mason9f3a7422007-08-07 15:52:19 -04002093 root_item->drop_level = i;
Chris Mason20524f02007-03-10 06:35:47 -05002094 return 0;
2095 } else {
Chris Mason7bb86312007-12-11 09:25:06 -05002096 if (path->nodes[*level] == root->node) {
2097 root_owner = root->root_key.objectid;
2098 root_gen =
2099 btrfs_header_generation(path->nodes[*level]);
2100 } else {
2101 struct extent_buffer *node;
2102 node = path->nodes[*level + 1];
2103 root_owner = btrfs_header_owner(node);
2104 root_gen = btrfs_header_generation(node);
2105 }
Chris Masone089f052007-03-16 16:20:31 -04002106 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002107 path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002108 path->nodes[*level]->len,
2109 root_owner, root_gen, 0, 0, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04002110 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002111 free_extent_buffer(path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04002112 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05002113 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05002114 }
2115 }
2116 return 1;
2117}
2118
Chris Mason9aca1d52007-03-13 11:09:37 -04002119/*
2120 * drop the reference count on the tree rooted at 'snap'. This traverses
2121 * the tree freeing any blocks that have a ref count of zero after being
2122 * decremented.
2123 */
Chris Masone089f052007-03-16 16:20:31 -04002124int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04002125 *root)
Chris Mason20524f02007-03-10 06:35:47 -05002126{
Chris Mason3768f362007-03-13 16:47:54 -04002127 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04002128 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05002129 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04002130 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05002131 int i;
2132 int orig_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002133 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002134
Chris Mason5caf2a02007-04-02 11:20:42 -04002135 path = btrfs_alloc_path();
2136 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05002137
Chris Mason5f39d392007-10-15 16:14:19 -04002138 level = btrfs_header_level(root->node);
Chris Mason20524f02007-03-10 06:35:47 -05002139 orig_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002140 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2141 path->nodes[level] = root->node;
Chris Masonf510cfe2007-10-15 16:14:48 -04002142 extent_buffer_get(root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -04002143 path->slots[level] = 0;
2144 } else {
2145 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002146 struct btrfs_disk_key found_key;
2147 struct extent_buffer *node;
Chris Mason6702ed42007-08-07 16:15:09 -04002148
Chris Mason9f3a7422007-08-07 15:52:19 -04002149 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Chris Mason6702ed42007-08-07 16:15:09 -04002150 level = root_item->drop_level;
2151 path->lowest_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002152 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason6702ed42007-08-07 16:15:09 -04002153 if (wret < 0) {
Chris Mason9f3a7422007-08-07 15:52:19 -04002154 ret = wret;
2155 goto out;
2156 }
Chris Mason5f39d392007-10-15 16:14:19 -04002157 node = path->nodes[level];
2158 btrfs_node_key(node, &found_key, path->slots[level]);
2159 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2160 sizeof(found_key)));
Chris Mason9f3a7422007-08-07 15:52:19 -04002161 }
Chris Mason20524f02007-03-10 06:35:47 -05002162 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002163 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002164 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002165 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002166 if (wret < 0)
2167 ret = wret;
2168
Chris Mason5caf2a02007-04-02 11:20:42 -04002169 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002170 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002171 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002172 if (wret < 0)
2173 ret = wret;
Chris Mason409eb952007-08-08 20:17:12 -04002174 ret = -EAGAIN;
Chris Mason409eb952007-08-08 20:17:12 -04002175 break;
Chris Mason20524f02007-03-10 06:35:47 -05002176 }
Chris Mason83e15a22007-03-12 09:03:27 -04002177 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002178 if (path->nodes[i]) {
Chris Mason5f39d392007-10-15 16:14:19 -04002179 free_extent_buffer(path->nodes[i]);
Chris Mason0f827312007-10-15 16:18:56 -04002180 path->nodes[i] = NULL;
Chris Mason83e15a22007-03-12 09:03:27 -04002181 }
Chris Mason20524f02007-03-10 06:35:47 -05002182 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002183out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002184 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04002185 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05002186}
Chris Mason9078a3e2007-04-26 16:46:15 -04002187
Chris Masonbe744172007-05-06 10:15:01 -04002188int btrfs_free_block_groups(struct btrfs_fs_info *info)
2189{
Chris Masonf510cfe2007-10-15 16:14:48 -04002190 u64 start;
2191 u64 end;
Yanb97f9202007-11-01 11:28:41 -04002192 u64 ptr;
Chris Mason96b51792007-10-15 16:15:19 -04002193 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04002194 while(1) {
2195 ret = find_first_extent_bit(&info->block_group_cache, 0,
2196 &start, &end, (unsigned int)-1);
2197 if (ret)
2198 break;
Yanb97f9202007-11-01 11:28:41 -04002199 ret = get_state_private(&info->block_group_cache, start, &ptr);
2200 if (!ret)
2201 kfree((void *)(unsigned long)ptr);
Chris Mason96b51792007-10-15 16:15:19 -04002202 clear_extent_bits(&info->block_group_cache, start,
2203 end, (unsigned int)-1, GFP_NOFS);
2204 }
Chris Masone37c9e62007-05-09 20:13:14 -04002205 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -04002206 ret = find_first_extent_bit(&info->free_space_cache, 0,
2207 &start, &end, EXTENT_DIRTY);
2208 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -04002209 break;
Chris Masonf510cfe2007-10-15 16:14:48 -04002210 clear_extent_dirty(&info->free_space_cache, start,
2211 end, GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04002212 }
Chris Masonbe744172007-05-06 10:15:01 -04002213 return 0;
2214}
2215
Chris Mason98ed5172008-01-03 10:01:48 -05002216static int noinline relocate_inode_pages(struct inode *inode, u64 start,
2217 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05002218{
2219 u64 page_start;
2220 u64 page_end;
2221 u64 delalloc_start;
2222 u64 existing_delalloc;
2223 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05002224 unsigned long i;
2225 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05002226 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05002227 struct file_ra_state *ra;
2228
2229 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002230
2231 mutex_lock(&inode->i_mutex);
Chris Mason4313b392008-01-03 09:08:48 -05002232 i = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05002233 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
2234
Chris Mason4313b392008-01-03 09:08:48 -05002235 file_ra_state_init(ra, inode->i_mapping);
2236 btrfs_force_ra(inode->i_mapping, ra, NULL, i, last_index);
2237 kfree(ra);
Chris Masonedbd8d42007-12-21 16:27:24 -05002238
Chris Mason4313b392008-01-03 09:08:48 -05002239 for (; i <= last_index; i++) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002240 page = grab_cache_page(inode->i_mapping, i);
2241 if (!page)
2242 goto out_unlock;
2243 if (!PageUptodate(page)) {
2244 btrfs_readpage(NULL, page);
2245 lock_page(page);
2246 if (!PageUptodate(page)) {
2247 unlock_page(page);
2248 page_cache_release(page);
2249 goto out_unlock;
2250 }
2251 }
2252 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2253 page_end = page_start + PAGE_CACHE_SIZE - 1;
2254
Chris Masond1310b22008-01-24 16:13:08 -05002255 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002256
2257 delalloc_start = page_start;
Chris Masond1310b22008-01-24 16:13:08 -05002258 existing_delalloc = count_range_bits(io_tree,
2259 &delalloc_start, page_end,
2260 PAGE_CACHE_SIZE, EXTENT_DELALLOC);
Chris Masonedbd8d42007-12-21 16:27:24 -05002261
Chris Masond1310b22008-01-24 16:13:08 -05002262 set_extent_delalloc(io_tree, page_start,
Chris Masonedbd8d42007-12-21 16:27:24 -05002263 page_end, GFP_NOFS);
2264
Chris Masond1310b22008-01-24 16:13:08 -05002265 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002266 set_page_dirty(page);
2267 unlock_page(page);
2268 page_cache_release(page);
2269 }
2270
2271out_unlock:
2272 mutex_unlock(&inode->i_mutex);
2273 return 0;
2274}
2275
Chris Mason4313b392008-01-03 09:08:48 -05002276/*
2277 * note, this releases the path
2278 */
Chris Mason98ed5172008-01-03 10:01:48 -05002279static int noinline relocate_one_reference(struct btrfs_root *extent_root,
Chris Masonedbd8d42007-12-21 16:27:24 -05002280 struct btrfs_path *path,
Chris Mason4313b392008-01-03 09:08:48 -05002281 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002282{
2283 struct inode *inode;
2284 struct btrfs_root *found_root;
Chris Mason4313b392008-01-03 09:08:48 -05002285 struct btrfs_key *root_location;
2286 struct btrfs_extent_ref *ref;
2287 u64 ref_root;
2288 u64 ref_gen;
2289 u64 ref_objectid;
2290 u64 ref_offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05002291 int ret;
2292
Chris Mason4313b392008-01-03 09:08:48 -05002293 ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
2294 struct btrfs_extent_ref);
2295 ref_root = btrfs_ref_root(path->nodes[0], ref);
2296 ref_gen = btrfs_ref_generation(path->nodes[0], ref);
2297 ref_objectid = btrfs_ref_objectid(path->nodes[0], ref);
2298 ref_offset = btrfs_ref_offset(path->nodes[0], ref);
2299 btrfs_release_path(extent_root, path);
2300
2301 root_location = kmalloc(sizeof(*root_location), GFP_NOFS);
2302 root_location->objectid = ref_root;
Chris Masonedbd8d42007-12-21 16:27:24 -05002303 if (ref_gen == 0)
Chris Mason4313b392008-01-03 09:08:48 -05002304 root_location->offset = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002305 else
Chris Mason4313b392008-01-03 09:08:48 -05002306 root_location->offset = (u64)-1;
2307 root_location->type = BTRFS_ROOT_ITEM_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05002308
2309 found_root = btrfs_read_fs_root_no_name(extent_root->fs_info,
Chris Mason4313b392008-01-03 09:08:48 -05002310 root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002311 BUG_ON(!found_root);
Chris Mason4313b392008-01-03 09:08:48 -05002312 kfree(root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002313
2314 if (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
2315 mutex_unlock(&extent_root->fs_info->fs_mutex);
2316 inode = btrfs_iget_locked(extent_root->fs_info->sb,
2317 ref_objectid, found_root);
2318 if (inode->i_state & I_NEW) {
2319 /* the inode and parent dir are two different roots */
2320 BTRFS_I(inode)->root = found_root;
2321 BTRFS_I(inode)->location.objectid = ref_objectid;
2322 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
2323 BTRFS_I(inode)->location.offset = 0;
2324 btrfs_read_locked_inode(inode);
2325 unlock_new_inode(inode);
2326
2327 }
2328 /* this can happen if the reference is not against
2329 * the latest version of the tree root
2330 */
2331 if (is_bad_inode(inode)) {
2332 mutex_lock(&extent_root->fs_info->fs_mutex);
2333 goto out;
2334 }
2335 relocate_inode_pages(inode, ref_offset, extent_key->offset);
2336 /* FIXME, data=ordered will help get rid of this */
2337 filemap_fdatawrite(inode->i_mapping);
2338 iput(inode);
2339 mutex_lock(&extent_root->fs_info->fs_mutex);
2340 } else {
2341 struct btrfs_trans_handle *trans;
2342 struct btrfs_key found_key;
2343 struct extent_buffer *eb;
2344 int level;
2345 int i;
2346
2347 trans = btrfs_start_transaction(found_root, 1);
2348 eb = read_tree_block(found_root, extent_key->objectid,
2349 extent_key->offset);
2350 level = btrfs_header_level(eb);
2351
2352 if (level == 0)
2353 btrfs_item_key_to_cpu(eb, &found_key, 0);
2354 else
2355 btrfs_node_key_to_cpu(eb, &found_key, 0);
2356
2357 free_extent_buffer(eb);
2358
2359 path->lowest_level = level;
Chris Mason8f662a72008-01-02 10:01:11 -05002360 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002361 ret = btrfs_search_slot(trans, found_root, &found_key, path,
2362 0, 1);
2363 path->lowest_level = 0;
2364 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2365 if (!path->nodes[i])
2366 break;
2367 free_extent_buffer(path->nodes[i]);
2368 path->nodes[i] = NULL;
2369 }
2370 btrfs_release_path(found_root, path);
2371 btrfs_end_transaction(trans, found_root);
2372 }
2373
2374out:
2375 return 0;
2376}
2377
Chris Mason98ed5172008-01-03 10:01:48 -05002378static int noinline relocate_one_extent(struct btrfs_root *extent_root,
2379 struct btrfs_path *path,
2380 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002381{
2382 struct btrfs_key key;
2383 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002384 struct extent_buffer *leaf;
Chris Masonedbd8d42007-12-21 16:27:24 -05002385 u32 nritems;
2386 u32 item_size;
2387 int ret = 0;
2388
2389 key.objectid = extent_key->objectid;
2390 key.type = BTRFS_EXTENT_REF_KEY;
2391 key.offset = 0;
2392
2393 while(1) {
2394 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2395
Chris Masonedbd8d42007-12-21 16:27:24 -05002396 if (ret < 0)
2397 goto out;
2398
2399 ret = 0;
2400 leaf = path->nodes[0];
2401 nritems = btrfs_header_nritems(leaf);
2402 if (path->slots[0] == nritems)
2403 goto out;
2404
2405 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2406 if (found_key.objectid != extent_key->objectid)
2407 break;
2408
2409 if (found_key.type != BTRFS_EXTENT_REF_KEY)
2410 break;
2411
2412 key.offset = found_key.offset + 1;
2413 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2414
Chris Mason4313b392008-01-03 09:08:48 -05002415 ret = relocate_one_reference(extent_root, path, extent_key);
Chris Masonedbd8d42007-12-21 16:27:24 -05002416 if (ret)
2417 goto out;
2418 }
2419 ret = 0;
2420out:
2421 btrfs_release_path(extent_root, path);
2422 return ret;
2423}
2424
Chris Masonedbd8d42007-12-21 16:27:24 -05002425int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 new_size)
2426{
2427 struct btrfs_trans_handle *trans;
2428 struct btrfs_root *tree_root = root->fs_info->tree_root;
2429 struct btrfs_path *path;
2430 u64 cur_byte;
2431 u64 total_found;
Chris Masonedbd8d42007-12-21 16:27:24 -05002432 struct btrfs_fs_info *info = root->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05002433 struct extent_io_tree *block_group_cache;
Chris Masonedbd8d42007-12-21 16:27:24 -05002434 struct btrfs_key key;
Yan73e48b22008-01-03 14:14:39 -05002435 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002436 struct extent_buffer *leaf;
2437 u32 nritems;
2438 int ret;
Chris Mason725c8462008-01-04 16:47:16 -05002439 int progress = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002440
2441 btrfs_set_super_total_bytes(&info->super_copy, new_size);
Chris Masonc31f8832008-01-08 15:46:31 -05002442 clear_extent_dirty(&info->free_space_cache, new_size, (u64)-1,
2443 GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002444 block_group_cache = &info->block_group_cache;
2445 path = btrfs_alloc_path();
2446 root = root->fs_info->extent_root;
Chris Mason8f662a72008-01-02 10:01:11 -05002447 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002448
2449again:
2450 total_found = 0;
2451 key.objectid = new_size;
Chris Masonedbd8d42007-12-21 16:27:24 -05002452 key.offset = 0;
2453 key.type = 0;
Yan73e48b22008-01-03 14:14:39 -05002454 cur_byte = key.objectid;
Chris Mason4313b392008-01-03 09:08:48 -05002455
Yan73e48b22008-01-03 14:14:39 -05002456 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2457 if (ret < 0)
2458 goto out;
2459
2460 ret = find_previous_extent(root, path);
2461 if (ret < 0)
2462 goto out;
2463 if (ret == 0) {
2464 leaf = path->nodes[0];
2465 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2466 if (found_key.objectid + found_key.offset > new_size) {
2467 cur_byte = found_key.objectid;
2468 key.objectid = cur_byte;
2469 }
2470 }
2471 btrfs_release_path(root, path);
2472
2473 while(1) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002474 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2475 if (ret < 0)
2476 goto out;
Yan73e48b22008-01-03 14:14:39 -05002477
Chris Masonedbd8d42007-12-21 16:27:24 -05002478 leaf = path->nodes[0];
Chris Masonedbd8d42007-12-21 16:27:24 -05002479 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05002480next:
2481 if (path->slots[0] >= nritems) {
2482 ret = btrfs_next_leaf(root, path);
2483 if (ret < 0)
2484 goto out;
2485 if (ret == 1) {
2486 ret = 0;
2487 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05002488 }
Yan73e48b22008-01-03 14:14:39 -05002489 leaf = path->nodes[0];
2490 nritems = btrfs_header_nritems(leaf);
2491 }
2492
2493 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason725c8462008-01-04 16:47:16 -05002494
2495 if (progress && need_resched()) {
2496 memcpy(&key, &found_key, sizeof(key));
2497 mutex_unlock(&root->fs_info->fs_mutex);
2498 cond_resched();
2499 mutex_lock(&root->fs_info->fs_mutex);
2500 btrfs_release_path(root, path);
2501 btrfs_search_slot(NULL, root, &key, path, 0, 0);
2502 progress = 0;
2503 goto next;
2504 }
2505 progress = 1;
2506
Yan73e48b22008-01-03 14:14:39 -05002507 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_ITEM_KEY ||
2508 found_key.objectid + found_key.offset <= cur_byte) {
2509 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05002510 goto next;
2511 }
Yan73e48b22008-01-03 14:14:39 -05002512
Chris Masonedbd8d42007-12-21 16:27:24 -05002513 total_found++;
2514 cur_byte = found_key.objectid + found_key.offset;
2515 key.objectid = cur_byte;
2516 btrfs_release_path(root, path);
2517 ret = relocate_one_extent(root, path, &found_key);
2518 }
2519
2520 btrfs_release_path(root, path);
2521
2522 if (total_found > 0) {
2523 trans = btrfs_start_transaction(tree_root, 1);
2524 btrfs_commit_transaction(trans, tree_root);
2525
2526 mutex_unlock(&root->fs_info->fs_mutex);
2527 btrfs_clean_old_snapshots(tree_root);
2528 mutex_lock(&root->fs_info->fs_mutex);
2529
2530 trans = btrfs_start_transaction(tree_root, 1);
2531 btrfs_commit_transaction(trans, tree_root);
2532 goto again;
2533 }
2534
2535 trans = btrfs_start_transaction(root, 1);
2536 key.objectid = new_size;
2537 key.offset = 0;
2538 key.type = 0;
2539 while(1) {
Chris Mason4313b392008-01-03 09:08:48 -05002540 u64 ptr;
2541
Chris Masonedbd8d42007-12-21 16:27:24 -05002542 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2543 if (ret < 0)
2544 goto out;
Yan73e48b22008-01-03 14:14:39 -05002545
Chris Masonedbd8d42007-12-21 16:27:24 -05002546 leaf = path->nodes[0];
2547 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05002548bg_next:
2549 if (path->slots[0] >= nritems) {
2550 ret = btrfs_next_leaf(root, path);
2551 if (ret < 0)
2552 break;
2553 if (ret == 1) {
2554 ret = 0;
2555 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05002556 }
Yan73e48b22008-01-03 14:14:39 -05002557 leaf = path->nodes[0];
Chris Mason1372f8e2008-01-04 09:34:54 -05002558 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2559
2560 /*
2561 * btrfs_next_leaf doesn't cow buffers, we have to
2562 * do the search again
2563 */
2564 memcpy(&key, &found_key, sizeof(key));
2565 btrfs_release_path(root, path);
Chris Mason725c8462008-01-04 16:47:16 -05002566 goto resched_check;
Yan73e48b22008-01-03 14:14:39 -05002567 }
2568
2569 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2570 if (btrfs_key_type(&found_key) != BTRFS_BLOCK_GROUP_ITEM_KEY) {
2571 printk("shrinker found key %Lu %u %Lu\n",
2572 found_key.objectid, found_key.type,
2573 found_key.offset);
2574 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05002575 goto bg_next;
2576 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002577 ret = get_state_private(&info->block_group_cache,
2578 found_key.objectid, &ptr);
2579 if (!ret)
2580 kfree((void *)(unsigned long)ptr);
2581
2582 clear_extent_bits(&info->block_group_cache, found_key.objectid,
2583 found_key.objectid + found_key.offset - 1,
2584 (unsigned int)-1, GFP_NOFS);
2585
2586 key.objectid = found_key.objectid + 1;
2587 btrfs_del_item(trans, root, path);
2588 btrfs_release_path(root, path);
Chris Mason725c8462008-01-04 16:47:16 -05002589resched_check:
2590 if (need_resched()) {
2591 mutex_unlock(&root->fs_info->fs_mutex);
2592 cond_resched();
2593 mutex_lock(&root->fs_info->fs_mutex);
2594 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002595 }
2596 clear_extent_dirty(&info->free_space_cache, new_size, (u64)-1,
2597 GFP_NOFS);
2598 btrfs_commit_transaction(trans, root);
2599out:
2600 btrfs_free_path(path);
2601 return ret;
2602}
2603
2604int btrfs_grow_extent_tree(struct btrfs_trans_handle *trans,
2605 struct btrfs_root *root, u64 new_size)
2606{
2607 struct btrfs_path *path;
2608 u64 nr = 0;
2609 u64 cur_byte;
2610 u64 old_size;
Chris Masonf9ef6602008-01-03 09:22:38 -05002611 unsigned long rem;
Chris Masonedbd8d42007-12-21 16:27:24 -05002612 struct btrfs_block_group_cache *cache;
2613 struct btrfs_block_group_item *item;
2614 struct btrfs_fs_info *info = root->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05002615 struct extent_io_tree *block_group_cache;
Chris Masonedbd8d42007-12-21 16:27:24 -05002616 struct btrfs_key key;
2617 struct extent_buffer *leaf;
2618 int ret;
2619 int bit;
2620
2621 old_size = btrfs_super_total_bytes(&info->super_copy);
2622 block_group_cache = &info->block_group_cache;
2623
2624 root = info->extent_root;
2625
2626 cache = btrfs_lookup_block_group(root->fs_info, old_size - 1);
2627
2628 cur_byte = cache->key.objectid + cache->key.offset;
2629 if (cur_byte >= new_size)
2630 goto set_size;
2631
2632 key.offset = BTRFS_BLOCK_GROUP_SIZE;
2633 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
2634
2635 path = btrfs_alloc_path();
2636 if (!path)
2637 return -ENOMEM;
2638
2639 while(cur_byte < new_size) {
2640 key.objectid = cur_byte;
2641 ret = btrfs_insert_empty_item(trans, root, path, &key,
2642 sizeof(struct btrfs_block_group_item));
2643 BUG_ON(ret);
2644 leaf = path->nodes[0];
2645 item = btrfs_item_ptr(leaf, path->slots[0],
2646 struct btrfs_block_group_item);
2647
2648 btrfs_set_disk_block_group_used(leaf, item, 0);
Chris Masonf9ef6602008-01-03 09:22:38 -05002649 div_long_long_rem(nr, 3, &rem);
2650 if (rem) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002651 btrfs_set_disk_block_group_flags(leaf, item,
2652 BTRFS_BLOCK_GROUP_DATA);
2653 } else {
2654 btrfs_set_disk_block_group_flags(leaf, item, 0);
2655 }
2656 nr++;
2657
2658 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2659 BUG_ON(!cache);
2660
2661 read_extent_buffer(leaf, &cache->item, (unsigned long)item,
2662 sizeof(cache->item));
2663
2664 memcpy(&cache->key, &key, sizeof(key));
2665 cache->cached = 0;
2666 cache->pinned = 0;
2667 cur_byte = key.objectid + key.offset;
2668 btrfs_release_path(root, path);
2669
2670 if (cache->item.flags & BTRFS_BLOCK_GROUP_DATA) {
2671 bit = BLOCK_GROUP_DATA;
2672 cache->data = BTRFS_BLOCK_GROUP_DATA;
2673 } else {
2674 bit = BLOCK_GROUP_METADATA;
2675 cache->data = 0;
2676 }
2677
2678 /* use EXTENT_LOCKED to prevent merging */
2679 set_extent_bits(block_group_cache, key.objectid,
2680 key.objectid + key.offset - 1,
2681 bit | EXTENT_LOCKED, GFP_NOFS);
2682 set_state_private(block_group_cache, key.objectid,
2683 (unsigned long)cache);
2684 }
2685 btrfs_free_path(path);
2686set_size:
2687 btrfs_set_super_total_bytes(&info->super_copy, new_size);
2688 return 0;
2689}
2690
Chris Mason9078a3e2007-04-26 16:46:15 -04002691int btrfs_read_block_groups(struct btrfs_root *root)
2692{
2693 struct btrfs_path *path;
2694 int ret;
2695 int err = 0;
Chris Mason96b51792007-10-15 16:15:19 -04002696 int bit;
Chris Mason9078a3e2007-04-26 16:46:15 -04002697 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04002698 struct btrfs_fs_info *info = root->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05002699 struct extent_io_tree *block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002700 struct btrfs_key key;
2701 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04002702 struct extent_buffer *leaf;
Chris Mason96b51792007-10-15 16:15:19 -04002703
2704 block_group_cache = &info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002705
Chris Masonbe744172007-05-06 10:15:01 -04002706 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04002707 key.objectid = 0;
Chris Masondb945352007-10-15 16:15:53 -04002708 key.offset = BTRFS_BLOCK_GROUP_SIZE;
Chris Mason9078a3e2007-04-26 16:46:15 -04002709 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
2710
2711 path = btrfs_alloc_path();
2712 if (!path)
2713 return -ENOMEM;
2714
2715 while(1) {
Chris Masonbe744172007-05-06 10:15:01 -04002716 ret = btrfs_search_slot(NULL, info->extent_root,
Chris Mason9078a3e2007-04-26 16:46:15 -04002717 &key, path, 0, 0);
2718 if (ret != 0) {
2719 err = ret;
2720 break;
2721 }
Chris Mason5f39d392007-10-15 16:14:19 -04002722 leaf = path->nodes[0];
2723 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason9078a3e2007-04-26 16:46:15 -04002724 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2725 if (!cache) {
2726 err = -1;
2727 break;
2728 }
Chris Mason3e1ad542007-05-07 20:03:49 -04002729
Chris Mason5f39d392007-10-15 16:14:19 -04002730 read_extent_buffer(leaf, &cache->item,
2731 btrfs_item_ptr_offset(leaf, path->slots[0]),
2732 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04002733 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Masone37c9e62007-05-09 20:13:14 -04002734 cache->cached = 0;
Yan324ae4d2007-11-16 14:57:08 -05002735 cache->pinned = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002736 key.objectid = found_key.objectid + found_key.offset;
2737 btrfs_release_path(root, path);
Chris Mason5f39d392007-10-15 16:14:19 -04002738
Chris Masonf84a8b32007-11-06 10:26:29 -05002739 if (cache->item.flags & BTRFS_BLOCK_GROUP_MIXED) {
2740 bit = BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA;
2741 cache->data = BTRFS_BLOCK_GROUP_MIXED;
2742 } else if (cache->item.flags & BTRFS_BLOCK_GROUP_DATA) {
Chris Mason96b51792007-10-15 16:15:19 -04002743 bit = BLOCK_GROUP_DATA;
Chris Masonf84a8b32007-11-06 10:26:29 -05002744 cache->data = BTRFS_BLOCK_GROUP_DATA;
Chris Mason96b51792007-10-15 16:15:19 -04002745 } else {
2746 bit = BLOCK_GROUP_METADATA;
2747 cache->data = 0;
Chris Mason31f3c992007-04-30 15:25:45 -04002748 }
Chris Mason96b51792007-10-15 16:15:19 -04002749
2750 /* use EXTENT_LOCKED to prevent merging */
2751 set_extent_bits(block_group_cache, found_key.objectid,
2752 found_key.objectid + found_key.offset - 1,
2753 bit | EXTENT_LOCKED, GFP_NOFS);
2754 set_state_private(block_group_cache, found_key.objectid,
Jens Axboeae2f5412007-10-19 09:22:59 -04002755 (unsigned long)cache);
Chris Mason96b51792007-10-15 16:15:19 -04002756
Chris Mason9078a3e2007-04-26 16:46:15 -04002757 if (key.objectid >=
Chris Masondb945352007-10-15 16:15:53 -04002758 btrfs_super_total_bytes(&info->super_copy))
Chris Mason9078a3e2007-04-26 16:46:15 -04002759 break;
2760 }
2761
2762 btrfs_free_path(path);
2763 return 0;
2764}