blob: 90718f77bbc07cfa78452531e05b0226a3d42828 [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 Masone19caa52007-10-15 16:17:44 -0400191 u64 last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400192 u64 start = 0;
193 u64 end = 0;
Chris Mason257d0ce2007-11-07 21:08:16 -0500194 u64 cache_miss = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500195 u64 total_fs_bytes;
Chris Masonf84a8b32007-11-06 10:26:29 -0500196 int wrapped = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400197
Chris Mason00f5c792007-11-30 10:09:33 -0500198 if (!cache) {
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500199 goto out;
Chris Mason00f5c792007-11-30 10:09:33 -0500200 }
Chris Masonc31f8832008-01-08 15:46:31 -0500201 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masone37c9e62007-05-09 20:13:14 -0400202again:
Chris Mason54aa1f42007-06-22 14:16:25 -0400203 ret = cache_block_group(root, cache);
204 if (ret)
205 goto out;
Chris Masonf84a8b32007-11-06 10:26:29 -0500206
Chris Masone19caa52007-10-15 16:17:44 -0400207 last = max(search_start, cache->key.objectid);
208
Chris Masone37c9e62007-05-09 20:13:14 -0400209 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -0400210 ret = find_first_extent_bit(&root->fs_info->free_space_cache,
211 last, &start, &end, EXTENT_DIRTY);
Chris Masone19caa52007-10-15 16:17:44 -0400212 if (ret) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500213 if (!cache_miss)
214 cache_miss = last;
Chris Masone19caa52007-10-15 16:17:44 -0400215 goto new_group;
216 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400217
218 start = max(last, start);
219 last = end + 1;
Chris Mason257d0ce2007-11-07 21:08:16 -0500220 if (last - start < num) {
221 if (last == cache->key.objectid + cache->key.offset)
222 cache_miss = start;
Chris Masonf510cfe2007-10-15 16:14:48 -0400223 continue;
Chris Mason257d0ce2007-11-07 21:08:16 -0500224 }
225 if (data != BTRFS_BLOCK_GROUP_MIXED &&
Yan5cf66422007-11-16 14:57:09 -0500226 start + num > cache->key.objectid + cache->key.offset)
Chris Masone37c9e62007-05-09 20:13:14 -0400227 goto new_group;
Chris Masonc31f8832008-01-08 15:46:31 -0500228 if (start + num > total_fs_bytes)
229 goto new_group;
Chris Masonf510cfe2007-10-15 16:14:48 -0400230 return start;
Chris Masone37c9e62007-05-09 20:13:14 -0400231 }
232out:
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500233 cache = btrfs_lookup_block_group(root->fs_info, search_start);
234 if (!cache) {
235 printk("Unable to find block group for %Lu\n",
236 search_start);
237 WARN_ON(1);
238 return search_start;
239 }
Chris Mason1a5bc162007-10-15 16:15:26 -0400240 return search_start;
Chris Masone37c9e62007-05-09 20:13:14 -0400241
242new_group:
Chris Masone19caa52007-10-15 16:17:44 -0400243 last = cache->key.objectid + cache->key.offset;
Chris Masonf84a8b32007-11-06 10:26:29 -0500244wrapped:
Chris Masone19caa52007-10-15 16:17:44 -0400245 cache = btrfs_lookup_block_group(root->fs_info, last);
Chris Masonc31f8832008-01-08 15:46:31 -0500246 if (!cache || cache->key.objectid >= total_fs_bytes) {
Chris Mason0e4de582007-11-26 10:55:49 -0500247no_cache:
Chris Masonf84a8b32007-11-06 10:26:29 -0500248 if (!wrapped) {
249 wrapped = 1;
250 last = search_start;
251 data = BTRFS_BLOCK_GROUP_MIXED;
252 goto wrapped;
253 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500254 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -0400255 }
Chris Mason257d0ce2007-11-07 21:08:16 -0500256 if (cache_miss && !cache->cached) {
257 cache_block_group(root, cache);
258 last = cache_miss;
Chris Mason257d0ce2007-11-07 21:08:16 -0500259 cache = btrfs_lookup_block_group(root->fs_info, last);
260 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500261 cache = btrfs_find_block_group(root, cache, last, data, 0);
Chris Mason0e4de582007-11-26 10:55:49 -0500262 if (!cache)
263 goto no_cache;
Chris Masone37c9e62007-05-09 20:13:14 -0400264 *cache_ret = cache;
Chris Mason257d0ce2007-11-07 21:08:16 -0500265 cache_miss = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400266 goto again;
267}
268
Chris Mason84f54cf2007-06-12 07:43:08 -0400269static u64 div_factor(u64 num, int factor)
270{
Chris Mason257d0ce2007-11-07 21:08:16 -0500271 if (factor == 10)
272 return num;
Chris Mason84f54cf2007-06-12 07:43:08 -0400273 num *= factor;
274 do_div(num, 10);
275 return num;
276}
277
Chris Mason31f3c992007-04-30 15:25:45 -0400278struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
279 struct btrfs_block_group_cache
Chris Masonbe744172007-05-06 10:15:01 -0400280 *hint, u64 search_start,
Chris Masonde428b62007-05-18 13:28:27 -0400281 int data, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400282{
Chris Mason96b51792007-10-15 16:15:19 -0400283 struct btrfs_block_group_cache *cache;
Chris Masond1310b22008-01-24 16:13:08 -0500284 struct extent_io_tree *block_group_cache;
Chris Mason31f3c992007-04-30 15:25:45 -0400285 struct btrfs_block_group_cache *found_group = NULL;
Chris Masoncd1bc462007-04-27 10:08:34 -0400286 struct btrfs_fs_info *info = root->fs_info;
287 u64 used;
Chris Mason31f3c992007-04-30 15:25:45 -0400288 u64 last = 0;
289 u64 hint_last;
Chris Mason96b51792007-10-15 16:15:19 -0400290 u64 start;
291 u64 end;
292 u64 free_check;
293 u64 ptr;
Chris Masonc31f8832008-01-08 15:46:31 -0500294 u64 total_fs_bytes;
Chris Mason96b51792007-10-15 16:15:19 -0400295 int bit;
Chris Masoncd1bc462007-04-27 10:08:34 -0400296 int ret;
Chris Mason31f3c992007-04-30 15:25:45 -0400297 int full_search = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400298 int factor = 8;
Chris Mason1e2677e2007-05-29 16:52:18 -0400299 int data_swap = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400300
Chris Mason96b51792007-10-15 16:15:19 -0400301 block_group_cache = &info->block_group_cache;
Chris Masonc31f8832008-01-08 15:46:31 -0500302 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Mason96b51792007-10-15 16:15:19 -0400303
Chris Masonde428b62007-05-18 13:28:27 -0400304 if (!owner)
Chris Masonf84a8b32007-11-06 10:26:29 -0500305 factor = 8;
Chris Masonbe744172007-05-06 10:15:01 -0400306
Chris Mason257d0ce2007-11-07 21:08:16 -0500307 if (data == BTRFS_BLOCK_GROUP_MIXED) {
Chris Masonf84a8b32007-11-06 10:26:29 -0500308 bit = BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA;
Chris Mason257d0ce2007-11-07 21:08:16 -0500309 factor = 10;
310 } else if (data)
Chris Mason96b51792007-10-15 16:15:19 -0400311 bit = BLOCK_GROUP_DATA;
312 else
313 bit = BLOCK_GROUP_METADATA;
Chris Masonbe744172007-05-06 10:15:01 -0400314
Chris Masonc31f8832008-01-08 15:46:31 -0500315 if (search_start && search_start < total_fs_bytes) {
Chris Masonbe744172007-05-06 10:15:01 -0400316 struct btrfs_block_group_cache *shint;
Chris Mason5276aed2007-06-11 21:33:38 -0400317 shint = btrfs_lookup_block_group(info, search_start);
Chris Masonf84a8b32007-11-06 10:26:29 -0500318 if (shint && (shint->data == data ||
319 shint->data == BTRFS_BLOCK_GROUP_MIXED)) {
Chris Masonbe744172007-05-06 10:15:01 -0400320 used = btrfs_block_group_used(&shint->item);
Yan324ae4d2007-11-16 14:57:08 -0500321 if (used + shint->pinned <
322 div_factor(shint->key.offset, factor)) {
Chris Masonbe744172007-05-06 10:15:01 -0400323 return shint;
324 }
325 }
326 }
Chris Masonc31f8832008-01-08 15:46:31 -0500327 if (hint && hint->key.objectid < total_fs_bytes &&
328 (hint->data == data || hint->data == BTRFS_BLOCK_GROUP_MIXED)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400329 used = btrfs_block_group_used(&hint->item);
Yan324ae4d2007-11-16 14:57:08 -0500330 if (used + hint->pinned <
331 div_factor(hint->key.offset, factor)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400332 return hint;
333 }
Chris Masone19caa52007-10-15 16:17:44 -0400334 last = hint->key.objectid + hint->key.offset;
Chris Mason31f3c992007-04-30 15:25:45 -0400335 hint_last = last;
336 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400337 if (hint)
338 hint_last = max(hint->key.objectid, search_start);
339 else
340 hint_last = search_start;
341
Chris Masonc31f8832008-01-08 15:46:31 -0500342 if (hint_last >= total_fs_bytes)
343 hint_last = search_start;
Chris Masone37c9e62007-05-09 20:13:14 -0400344 last = hint_last;
Chris Mason31f3c992007-04-30 15:25:45 -0400345 }
Chris Mason31f3c992007-04-30 15:25:45 -0400346again:
Chris Masoncd1bc462007-04-27 10:08:34 -0400347 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400348 ret = find_first_extent_bit(block_group_cache, last,
349 &start, &end, bit);
350 if (ret)
Chris Masoncd1bc462007-04-27 10:08:34 -0400351 break;
Chris Mason96b51792007-10-15 16:15:19 -0400352
353 ret = get_state_private(block_group_cache, start, &ptr);
354 if (ret)
355 break;
356
Jens Axboeae2f5412007-10-19 09:22:59 -0400357 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400358 last = cache->key.objectid + cache->key.offset;
359 used = btrfs_block_group_used(&cache->item);
360
Chris Masonc31f8832008-01-08 15:46:31 -0500361 if (cache->key.objectid > total_fs_bytes)
362 break;
363
Chris Mason96b51792007-10-15 16:15:19 -0400364 if (full_search)
365 free_check = cache->key.offset;
366 else
367 free_check = div_factor(cache->key.offset, factor);
Yan324ae4d2007-11-16 14:57:08 -0500368 if (used + cache->pinned < free_check) {
Chris Mason96b51792007-10-15 16:15:19 -0400369 found_group = cache;
370 goto found;
Chris Masoncd1bc462007-04-27 10:08:34 -0400371 }
Chris Masonde428b62007-05-18 13:28:27 -0400372 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400373 }
Chris Mason31f3c992007-04-30 15:25:45 -0400374 if (!full_search) {
Chris Masonbe744172007-05-06 10:15:01 -0400375 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400376 full_search = 1;
377 goto again;
378 }
Chris Mason1e2677e2007-05-29 16:52:18 -0400379 if (!data_swap) {
Chris Mason1e2677e2007-05-29 16:52:18 -0400380 data_swap = 1;
Chris Mason96b51792007-10-15 16:15:19 -0400381 bit = BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA;
Chris Mason1e2677e2007-05-29 16:52:18 -0400382 last = search_start;
383 goto again;
384 }
Chris Masonbe744172007-05-06 10:15:01 -0400385found:
Chris Mason31f3c992007-04-30 15:25:45 -0400386 return found_group;
Chris Masoncd1bc462007-04-27 10:08:34 -0400387}
388
Chris Mason7bb86312007-12-11 09:25:06 -0500389static u64 hash_extent_ref(u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500390 u64 owner, u64 owner_offset)
391{
392 u32 high_crc = ~(u32)0;
393 u32 low_crc = ~(u32)0;
394 __le64 lenum;
395
396 lenum = cpu_to_le64(root_objectid);
397 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Chris Mason7bb86312007-12-11 09:25:06 -0500398 lenum = cpu_to_le64(ref_generation);
399 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason74493f72007-12-11 09:25:06 -0500400
Chris Mason7bb86312007-12-11 09:25:06 -0500401#if 0
Chris Mason74493f72007-12-11 09:25:06 -0500402 lenum = cpu_to_le64(owner);
403 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason74493f72007-12-11 09:25:06 -0500404 lenum = cpu_to_le64(owner_offset);
405 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason7bb86312007-12-11 09:25:06 -0500406#endif
Chris Mason74493f72007-12-11 09:25:06 -0500407 return ((u64)high_crc << 32) | (u64)low_crc;
408}
409
Chris Mason7bb86312007-12-11 09:25:06 -0500410static int match_extent_ref(struct extent_buffer *leaf,
411 struct btrfs_extent_ref *disk_ref,
412 struct btrfs_extent_ref *cpu_ref)
413{
414 int ret;
415 int len;
416
417 if (cpu_ref->objectid)
418 len = sizeof(*cpu_ref);
419 else
420 len = 2 * sizeof(u64);
421 ret = memcmp_extent_buffer(leaf, cpu_ref, (unsigned long)disk_ref,
422 len);
423 return ret == 0;
424}
425
Chris Mason98ed5172008-01-03 10:01:48 -0500426static int noinline lookup_extent_backref(struct btrfs_trans_handle *trans,
427 struct btrfs_root *root,
428 struct btrfs_path *path, u64 bytenr,
429 u64 root_objectid,
430 u64 ref_generation, u64 owner,
431 u64 owner_offset, int del)
Chris Mason7bb86312007-12-11 09:25:06 -0500432{
433 u64 hash;
434 struct btrfs_key key;
435 struct btrfs_key found_key;
436 struct btrfs_extent_ref ref;
437 struct extent_buffer *leaf;
438 struct btrfs_extent_ref *disk_ref;
439 int ret;
440 int ret2;
441
442 btrfs_set_stack_ref_root(&ref, root_objectid);
443 btrfs_set_stack_ref_generation(&ref, ref_generation);
444 btrfs_set_stack_ref_objectid(&ref, owner);
445 btrfs_set_stack_ref_offset(&ref, owner_offset);
446
447 hash = hash_extent_ref(root_objectid, ref_generation, owner,
448 owner_offset);
449 key.offset = hash;
450 key.objectid = bytenr;
451 key.type = BTRFS_EXTENT_REF_KEY;
452
453 while (1) {
454 ret = btrfs_search_slot(trans, root, &key, path,
455 del ? -1 : 0, del);
456 if (ret < 0)
457 goto out;
458 leaf = path->nodes[0];
459 if (ret != 0) {
460 u32 nritems = btrfs_header_nritems(leaf);
461 if (path->slots[0] >= nritems) {
462 ret2 = btrfs_next_leaf(root, path);
463 if (ret2)
464 goto out;
465 leaf = path->nodes[0];
466 }
467 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
468 if (found_key.objectid != bytenr ||
469 found_key.type != BTRFS_EXTENT_REF_KEY)
470 goto out;
471 key.offset = found_key.offset;
472 if (del) {
473 btrfs_release_path(root, path);
474 continue;
475 }
476 }
477 disk_ref = btrfs_item_ptr(path->nodes[0],
478 path->slots[0],
479 struct btrfs_extent_ref);
480 if (match_extent_ref(path->nodes[0], disk_ref, &ref)) {
481 ret = 0;
482 goto out;
483 }
484 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
485 key.offset = found_key.offset + 1;
486 btrfs_release_path(root, path);
487 }
488out:
489 return ret;
490}
491
Chris Masond8d5f3e2007-12-11 12:42:00 -0500492/*
493 * Back reference rules. Back refs have three main goals:
494 *
495 * 1) differentiate between all holders of references to an extent so that
496 * when a reference is dropped we can make sure it was a valid reference
497 * before freeing the extent.
498 *
499 * 2) Provide enough information to quickly find the holders of an extent
500 * if we notice a given block is corrupted or bad.
501 *
502 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
503 * maintenance. This is actually the same as #2, but with a slightly
504 * different use case.
505 *
506 * File extents can be referenced by:
507 *
508 * - multiple snapshots, subvolumes, or different generations in one subvol
509 * - different files inside a single subvolume (in theory, not implemented yet)
510 * - different offsets inside a file (bookend extents in file.c)
511 *
512 * The extent ref structure has fields for:
513 *
514 * - Objectid of the subvolume root
515 * - Generation number of the tree holding the reference
516 * - objectid of the file holding the reference
517 * - offset in the file corresponding to the key holding the reference
518 *
519 * When a file extent is allocated the fields are filled in:
520 * (root_key.objectid, trans->transid, inode objectid, offset in file)
521 *
522 * When a leaf is cow'd new references are added for every file extent found
523 * in the leaf. It looks the same as the create case, but trans->transid
524 * will be different when the block is cow'd.
525 *
526 * (root_key.objectid, trans->transid, inode objectid, offset in file)
527 *
528 * When a file extent is removed either during snapshot deletion or file
529 * truncation, the corresponding back reference is found
530 * by searching for:
531 *
532 * (btrfs_header_owner(leaf), btrfs_header_generation(leaf),
533 * inode objectid, offset in file)
534 *
535 * Btree extents can be referenced by:
536 *
537 * - Different subvolumes
538 * - Different generations of the same subvolume
539 *
540 * Storing sufficient information for a full reverse mapping of a btree
541 * block would require storing the lowest key of the block in the backref,
542 * and it would require updating that lowest key either before write out or
543 * every time it changed. Instead, the objectid of the lowest key is stored
544 * along with the level of the tree block. This provides a hint
545 * about where in the btree the block can be found. Searches through the
546 * btree only need to look for a pointer to that block, so they stop one
547 * level higher than the level recorded in the backref.
548 *
549 * Some btrees do not do reference counting on their extents. These
550 * include the extent tree and the tree of tree roots. Backrefs for these
551 * trees always have a generation of zero.
552 *
553 * When a tree block is created, back references are inserted:
554 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500555 * (root->root_key.objectid, trans->transid or zero, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500556 *
557 * When a tree block is cow'd in a reference counted root,
558 * new back references are added for all the blocks it points to.
559 * These are of the form (trans->transid will have increased since creation):
560 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500561 * (root->root_key.objectid, trans->transid, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500562 *
563 * Because the lowest_key_objectid and the level are just hints
564 * they are not used when backrefs are deleted. When a backref is deleted:
565 *
566 * if backref was for a tree root:
567 * root_objectid = root->root_key.objectid
568 * else
569 * root_objectid = btrfs_header_owner(parent)
570 *
571 * (root_objectid, btrfs_header_generation(parent) or zero, 0, 0)
572 *
573 * Back Reference Key hashing:
574 *
575 * Back references have four fields, each 64 bits long. Unfortunately,
576 * This is hashed into a single 64 bit number and placed into the key offset.
577 * The key objectid corresponds to the first byte in the extent, and the
578 * key type is set to BTRFS_EXTENT_REF_KEY
579 */
Chris Mason7bb86312007-12-11 09:25:06 -0500580int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
581 struct btrfs_root *root,
582 struct btrfs_path *path, u64 bytenr,
583 u64 root_objectid, u64 ref_generation,
584 u64 owner, u64 owner_offset)
Chris Mason74493f72007-12-11 09:25:06 -0500585{
586 u64 hash;
587 struct btrfs_key key;
588 struct btrfs_extent_ref ref;
Chris Mason7bb86312007-12-11 09:25:06 -0500589 struct btrfs_extent_ref *disk_ref;
Chris Mason74493f72007-12-11 09:25:06 -0500590 int ret;
591
592 btrfs_set_stack_ref_root(&ref, root_objectid);
Chris Mason7bb86312007-12-11 09:25:06 -0500593 btrfs_set_stack_ref_generation(&ref, ref_generation);
Chris Mason74493f72007-12-11 09:25:06 -0500594 btrfs_set_stack_ref_objectid(&ref, owner);
595 btrfs_set_stack_ref_offset(&ref, owner_offset);
596
Chris Mason7bb86312007-12-11 09:25:06 -0500597 hash = hash_extent_ref(root_objectid, ref_generation, owner,
598 owner_offset);
Chris Mason74493f72007-12-11 09:25:06 -0500599 key.offset = hash;
600 key.objectid = bytenr;
601 key.type = BTRFS_EXTENT_REF_KEY;
602
603 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(ref));
604 while (ret == -EEXIST) {
Chris Mason7bb86312007-12-11 09:25:06 -0500605 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
606 struct btrfs_extent_ref);
607 if (match_extent_ref(path->nodes[0], disk_ref, &ref))
608 goto out;
609 key.offset++;
610 btrfs_release_path(root, path);
611 ret = btrfs_insert_empty_item(trans, root, path, &key,
612 sizeof(ref));
Chris Mason74493f72007-12-11 09:25:06 -0500613 }
Chris Mason7bb86312007-12-11 09:25:06 -0500614 if (ret)
615 goto out;
616 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
617 struct btrfs_extent_ref);
618 write_extent_buffer(path->nodes[0], &ref, (unsigned long)disk_ref,
619 sizeof(ref));
620 btrfs_mark_buffer_dirty(path->nodes[0]);
621out:
622 btrfs_release_path(root, path);
623 return ret;
Chris Mason74493f72007-12-11 09:25:06 -0500624}
625
Chris Masonb18c6682007-04-17 13:26:50 -0400626int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
627 struct btrfs_root *root,
Chris Mason74493f72007-12-11 09:25:06 -0500628 u64 bytenr, u64 num_bytes,
Chris Mason7bb86312007-12-11 09:25:06 -0500629 u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500630 u64 owner, u64 owner_offset)
Chris Mason02217ed2007-03-02 16:08:05 -0500631{
Chris Mason5caf2a02007-04-02 11:20:42 -0400632 struct btrfs_path *path;
Chris Mason02217ed2007-03-02 16:08:05 -0500633 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400634 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400635 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400636 struct btrfs_extent_item *item;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400637 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500638
Chris Masondb945352007-10-15 16:15:53 -0400639 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400640 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400641 if (!path)
642 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -0400643
Chris Masonb0331a42008-01-08 15:46:31 -0500644 path->reada = 0;
Chris Masondb945352007-10-15 16:15:53 -0400645 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -0400646 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -0400647 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -0400648 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400649 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400650 if (ret < 0)
651 return ret;
Chris Masona429e512007-04-18 16:15:28 -0400652 if (ret != 0) {
Chris Masona28ec192007-03-06 20:08:01 -0500653 BUG();
Chris Masona429e512007-04-18 16:15:28 -0400654 }
Chris Mason02217ed2007-03-02 16:08:05 -0500655 BUG_ON(ret != 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400656 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400657 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400658 refs = btrfs_extent_refs(l, item);
659 btrfs_set_extent_refs(l, item, refs + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -0400660 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masona28ec192007-03-06 20:08:01 -0500661
Chris Mason5caf2a02007-04-02 11:20:42 -0400662 btrfs_release_path(root->fs_info->extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -0500663
Chris Masonb0331a42008-01-08 15:46:31 -0500664 path->reada = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500665 ret = btrfs_insert_extent_backref(trans, root->fs_info->extent_root,
666 path, bytenr, root_objectid,
667 ref_generation, owner, owner_offset);
668 BUG_ON(ret);
Chris Mason9f5fae22007-03-20 14:38:32 -0400669 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400670 del_pending_extents(trans, root->fs_info->extent_root);
Chris Mason74493f72007-12-11 09:25:06 -0500671
672 btrfs_free_path(path);
Chris Mason02217ed2007-03-02 16:08:05 -0500673 return 0;
674}
675
Chris Masone9d0b132007-08-10 14:06:19 -0400676int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
677 struct btrfs_root *root)
678{
679 finish_current_insert(trans, root->fs_info->extent_root);
680 del_pending_extents(trans, root->fs_info->extent_root);
681 return 0;
682}
683
Chris Masonb18c6682007-04-17 13:26:50 -0400684static int lookup_extent_ref(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -0400685 struct btrfs_root *root, u64 bytenr,
686 u64 num_bytes, u32 *refs)
Chris Masona28ec192007-03-06 20:08:01 -0500687{
Chris Mason5caf2a02007-04-02 11:20:42 -0400688 struct btrfs_path *path;
Chris Masona28ec192007-03-06 20:08:01 -0500689 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400690 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400691 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400692 struct btrfs_extent_item *item;
Chris Mason5caf2a02007-04-02 11:20:42 -0400693
Chris Masondb945352007-10-15 16:15:53 -0400694 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400695 path = btrfs_alloc_path();
Chris Masonb0331a42008-01-08 15:46:31 -0500696 path->reada = 0;
Chris Masondb945352007-10-15 16:15:53 -0400697 key.objectid = bytenr;
698 key.offset = num_bytes;
Chris Mason62e27492007-03-15 12:56:47 -0400699 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5caf2a02007-04-02 11:20:42 -0400700 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400701 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400702 if (ret < 0)
703 goto out;
Chris Mason5f39d392007-10-15 16:14:19 -0400704 if (ret != 0) {
705 btrfs_print_leaf(root, path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400706 printk("failed to find block number %Lu\n", bytenr);
Chris Masona28ec192007-03-06 20:08:01 -0500707 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -0400708 }
709 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400710 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400711 *refs = btrfs_extent_refs(l, item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400712out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400713 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -0500714 return 0;
715}
716
Chris Masonbe20aa92007-12-17 20:14:01 -0500717u32 btrfs_count_snapshots_in_path(struct btrfs_root *root,
718 struct btrfs_path *count_path,
719 u64 first_extent)
720{
721 struct btrfs_root *extent_root = root->fs_info->extent_root;
722 struct btrfs_path *path;
723 u64 bytenr;
724 u64 found_objectid;
Chris Mason56b453c2008-01-03 09:08:27 -0500725 u64 root_objectid = root->root_key.objectid;
Chris Masonbe20aa92007-12-17 20:14:01 -0500726 u32 total_count = 0;
727 u32 cur_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500728 u32 nritems;
729 int ret;
730 struct btrfs_key key;
731 struct btrfs_key found_key;
732 struct extent_buffer *l;
733 struct btrfs_extent_item *item;
734 struct btrfs_extent_ref *ref_item;
735 int level = -1;
736
737 path = btrfs_alloc_path();
738again:
739 if (level == -1)
740 bytenr = first_extent;
741 else
742 bytenr = count_path->nodes[level]->start;
743
744 cur_count = 0;
745 key.objectid = bytenr;
746 key.offset = 0;
747
748 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
749 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
750 if (ret < 0)
751 goto out;
752 BUG_ON(ret == 0);
753
754 l = path->nodes[0];
755 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
756
757 if (found_key.objectid != bytenr ||
758 found_key.type != BTRFS_EXTENT_ITEM_KEY) {
759 goto out;
760 }
761
762 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Masonbe20aa92007-12-17 20:14:01 -0500763 while (1) {
Chris Masonbd098352008-01-03 13:23:19 -0500764 l = path->nodes[0];
Chris Masonbe20aa92007-12-17 20:14:01 -0500765 nritems = btrfs_header_nritems(l);
766 if (path->slots[0] >= nritems) {
767 ret = btrfs_next_leaf(extent_root, path);
768 if (ret == 0)
769 continue;
770 break;
771 }
772 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
773 if (found_key.objectid != bytenr)
774 break;
Chris Masonbd098352008-01-03 13:23:19 -0500775
Chris Masonbe20aa92007-12-17 20:14:01 -0500776 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
777 path->slots[0]++;
778 continue;
779 }
780
781 cur_count++;
782 ref_item = btrfs_item_ptr(l, path->slots[0],
783 struct btrfs_extent_ref);
784 found_objectid = btrfs_ref_root(l, ref_item);
785
Chris Mason56b453c2008-01-03 09:08:27 -0500786 if (found_objectid != root_objectid) {
787 total_count = 2;
Chris Mason4313b392008-01-03 09:08:48 -0500788 goto out;
Chris Mason56b453c2008-01-03 09:08:27 -0500789 }
790 total_count = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500791 path->slots[0]++;
792 }
793 if (cur_count == 0) {
794 total_count = 0;
795 goto out;
796 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500797 if (level >= 0 && root->node == count_path->nodes[level])
798 goto out;
799 level++;
800 btrfs_release_path(root, path);
801 goto again;
802
803out:
804 btrfs_free_path(path);
805 return total_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500806}
Chris Masonc5739bb2007-04-10 09:27:04 -0400807int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -0500808 struct btrfs_root *root, u64 owner_objectid)
Chris Masonc5739bb2007-04-10 09:27:04 -0400809{
Chris Mason7bb86312007-12-11 09:25:06 -0500810 u64 generation;
811 u64 key_objectid;
812 u64 level;
813 u32 nritems;
814 struct btrfs_disk_key disk_key;
815
816 level = btrfs_header_level(root->node);
817 generation = trans->transid;
818 nritems = btrfs_header_nritems(root->node);
819 if (nritems > 0) {
820 if (level == 0)
821 btrfs_item_key(root->node, &disk_key, 0);
822 else
823 btrfs_node_key(root->node, &disk_key, 0);
824 key_objectid = btrfs_disk_key_objectid(&disk_key);
825 } else {
826 key_objectid = 0;
827 }
Chris Masondb945352007-10-15 16:15:53 -0400828 return btrfs_inc_extent_ref(trans, root, root->node->start,
Chris Mason7bb86312007-12-11 09:25:06 -0500829 root->node->len, owner_objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500830 generation, level, key_objectid);
Chris Masonc5739bb2007-04-10 09:27:04 -0400831}
832
Chris Masone089f052007-03-16 16:20:31 -0400833int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400834 struct extent_buffer *buf)
Chris Mason02217ed2007-03-02 16:08:05 -0500835{
Chris Masondb945352007-10-15 16:15:53 -0400836 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400837 u32 nritems;
838 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -0400839 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -0500840 int i;
Chris Masondb945352007-10-15 16:15:53 -0400841 int level;
Chris Mason6407bf62007-03-27 06:33:00 -0400842 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400843 int faili;
Chris Masona28ec192007-03-06 20:08:01 -0500844
Chris Mason3768f362007-03-13 16:47:54 -0400845 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500846 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400847
Chris Masondb945352007-10-15 16:15:53 -0400848 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400849 nritems = btrfs_header_nritems(buf);
850 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400851 if (level == 0) {
852 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400853 btrfs_item_key_to_cpu(buf, &key, i);
854 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -0400855 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400856 fi = btrfs_item_ptr(buf, i,
Chris Mason6407bf62007-03-27 06:33:00 -0400857 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400858 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason236454df2007-04-19 13:37:44 -0400859 BTRFS_FILE_EXTENT_INLINE)
860 continue;
Chris Masondb945352007-10-15 16:15:53 -0400861 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
862 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -0400863 continue;
Chris Masondb945352007-10-15 16:15:53 -0400864 ret = btrfs_inc_extent_ref(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500865 btrfs_file_extent_disk_num_bytes(buf, fi),
866 root->root_key.objectid, trans->transid,
867 key.objectid, key.offset);
Chris Mason54aa1f42007-06-22 14:16:25 -0400868 if (ret) {
869 faili = i;
870 goto fail;
871 }
Chris Mason6407bf62007-03-27 06:33:00 -0400872 } else {
Chris Masondb945352007-10-15 16:15:53 -0400873 bytenr = btrfs_node_blockptr(buf, i);
Chris Mason6caab482007-12-13 09:48:07 -0500874 btrfs_node_key_to_cpu(buf, &key, i);
Chris Masondb945352007-10-15 16:15:53 -0400875 ret = btrfs_inc_extent_ref(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500876 btrfs_level_size(root, level - 1),
877 root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500878 trans->transid,
879 level - 1, key.objectid);
Chris Mason54aa1f42007-06-22 14:16:25 -0400880 if (ret) {
881 faili = i;
882 goto fail;
883 }
Chris Mason6407bf62007-03-27 06:33:00 -0400884 }
Chris Mason02217ed2007-03-02 16:08:05 -0500885 }
886 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400887fail:
Chris Masonccd467d2007-06-28 15:57:36 -0400888 WARN_ON(1);
Chris Mason7bb86312007-12-11 09:25:06 -0500889#if 0
Chris Mason54aa1f42007-06-22 14:16:25 -0400890 for (i =0; i < faili; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400891 if (level == 0) {
892 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400893 btrfs_item_key_to_cpu(buf, &key, i);
894 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -0400895 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400896 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -0400897 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400898 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -0400899 BTRFS_FILE_EXTENT_INLINE)
900 continue;
Chris Masondb945352007-10-15 16:15:53 -0400901 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
902 if (disk_bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -0400903 continue;
Chris Masondb945352007-10-15 16:15:53 -0400904 err = btrfs_free_extent(trans, root, disk_bytenr,
905 btrfs_file_extent_disk_num_bytes(buf,
Chris Mason5f39d392007-10-15 16:14:19 -0400906 fi), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400907 BUG_ON(err);
908 } else {
Chris Masondb945352007-10-15 16:15:53 -0400909 bytenr = btrfs_node_blockptr(buf, i);
910 err = btrfs_free_extent(trans, root, bytenr,
911 btrfs_level_size(root, level - 1), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400912 BUG_ON(err);
913 }
914 }
Chris Mason7bb86312007-12-11 09:25:06 -0500915#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400916 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -0500917}
918
Chris Mason9078a3e2007-04-26 16:46:15 -0400919static int write_one_cache_group(struct btrfs_trans_handle *trans,
920 struct btrfs_root *root,
921 struct btrfs_path *path,
922 struct btrfs_block_group_cache *cache)
923{
924 int ret;
925 int pending_ret;
926 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400927 unsigned long bi;
928 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -0400929
Chris Mason9078a3e2007-04-26 16:46:15 -0400930 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400931 if (ret < 0)
932 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -0400933 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400934
935 leaf = path->nodes[0];
936 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
937 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
938 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -0400939 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400940fail:
Chris Mason9078a3e2007-04-26 16:46:15 -0400941 finish_current_insert(trans, extent_root);
942 pending_ret = del_pending_extents(trans, extent_root);
943 if (ret)
944 return ret;
945 if (pending_ret)
946 return pending_ret;
947 return 0;
948
949}
950
Chris Mason96b51792007-10-15 16:15:19 -0400951int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
952 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -0400953{
Chris Masond1310b22008-01-24 16:13:08 -0500954 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -0400955 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400956 int ret;
957 int err = 0;
958 int werr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -0400959 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -0400960 u64 last = 0;
961 u64 start;
962 u64 end;
963 u64 ptr;
Chris Mason9078a3e2007-04-26 16:46:15 -0400964
Chris Mason96b51792007-10-15 16:15:19 -0400965 block_group_cache = &root->fs_info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400966 path = btrfs_alloc_path();
967 if (!path)
968 return -ENOMEM;
969
970 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400971 ret = find_first_extent_bit(block_group_cache, last,
972 &start, &end, BLOCK_GROUP_DIRTY);
973 if (ret)
Chris Mason9078a3e2007-04-26 16:46:15 -0400974 break;
Chris Mason54aa1f42007-06-22 14:16:25 -0400975
Chris Mason96b51792007-10-15 16:15:19 -0400976 last = end + 1;
977 ret = get_state_private(block_group_cache, start, &ptr);
978 if (ret)
979 break;
980
Jens Axboeae2f5412007-10-19 09:22:59 -0400981 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400982 err = write_one_cache_group(trans, root,
983 path, cache);
984 /*
985 * if we fail to write the cache group, we want
986 * to keep it marked dirty in hopes that a later
987 * write will work
988 */
989 if (err) {
990 werr = err;
991 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -0400992 }
Chris Mason96b51792007-10-15 16:15:19 -0400993 clear_extent_bits(block_group_cache, start, end,
994 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -0400995 }
996 btrfs_free_path(path);
997 return werr;
998}
999
1000static int update_block_group(struct btrfs_trans_handle *trans,
1001 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -04001002 u64 bytenr, u64 num_bytes, int alloc,
1003 int mark_free, int data)
Chris Mason9078a3e2007-04-26 16:46:15 -04001004{
1005 struct btrfs_block_group_cache *cache;
1006 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001007 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001008 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04001009 u64 byte_in_group;
Chris Mason96b51792007-10-15 16:15:19 -04001010 u64 start;
1011 u64 end;
Chris Mason3e1ad542007-05-07 20:03:49 -04001012
Chris Mason9078a3e2007-04-26 16:46:15 -04001013 while(total) {
Chris Masondb945352007-10-15 16:15:53 -04001014 cache = btrfs_lookup_block_group(info, bytenr);
Chris Mason3e1ad542007-05-07 20:03:49 -04001015 if (!cache) {
Chris Mason9078a3e2007-04-26 16:46:15 -04001016 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -04001017 }
Chris Masondb945352007-10-15 16:15:53 -04001018 byte_in_group = bytenr - cache->key.objectid;
1019 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason96b51792007-10-15 16:15:19 -04001020 start = cache->key.objectid;
1021 end = start + cache->key.offset - 1;
1022 set_extent_bits(&info->block_group_cache, start, end,
1023 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001024
1025 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04001026 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04001027 if (alloc) {
Chris Mason1e2677e2007-05-29 16:52:18 -04001028 if (cache->data != data &&
Chris Mason84f54cf2007-06-12 07:43:08 -04001029 old_val < (cache->key.offset >> 1)) {
Chris Mason96b51792007-10-15 16:15:19 -04001030 int bit_to_clear;
1031 int bit_to_set;
Chris Mason96b51792007-10-15 16:15:19 -04001032 cache->data = data;
Chris Mason1e2677e2007-05-29 16:52:18 -04001033 if (data) {
Yanb97f9202007-11-01 11:28:41 -04001034 bit_to_clear = BLOCK_GROUP_METADATA;
1035 bit_to_set = BLOCK_GROUP_DATA;
Chris Masonf84a8b32007-11-06 10:26:29 -05001036 cache->item.flags &=
1037 ~BTRFS_BLOCK_GROUP_MIXED;
Chris Mason1e2677e2007-05-29 16:52:18 -04001038 cache->item.flags |=
1039 BTRFS_BLOCK_GROUP_DATA;
1040 } else {
Yanb97f9202007-11-01 11:28:41 -04001041 bit_to_clear = BLOCK_GROUP_DATA;
1042 bit_to_set = BLOCK_GROUP_METADATA;
Chris Mason1e2677e2007-05-29 16:52:18 -04001043 cache->item.flags &=
Chris Masonf84a8b32007-11-06 10:26:29 -05001044 ~BTRFS_BLOCK_GROUP_MIXED;
1045 cache->item.flags &=
Chris Mason1e2677e2007-05-29 16:52:18 -04001046 ~BTRFS_BLOCK_GROUP_DATA;
1047 }
Chris Mason96b51792007-10-15 16:15:19 -04001048 clear_extent_bits(&info->block_group_cache,
1049 start, end, bit_to_clear,
1050 GFP_NOFS);
1051 set_extent_bits(&info->block_group_cache,
1052 start, end, bit_to_set,
1053 GFP_NOFS);
Chris Masonf84a8b32007-11-06 10:26:29 -05001054 } else if (cache->data != data &&
1055 cache->data != BTRFS_BLOCK_GROUP_MIXED) {
1056 cache->data = BTRFS_BLOCK_GROUP_MIXED;
1057 set_extent_bits(&info->block_group_cache,
1058 start, end,
1059 BLOCK_GROUP_DATA |
1060 BLOCK_GROUP_METADATA,
1061 GFP_NOFS);
Chris Mason1e2677e2007-05-29 16:52:18 -04001062 }
Chris Masondb945352007-10-15 16:15:53 -04001063 old_val += num_bytes;
Chris Masoncd1bc462007-04-27 10:08:34 -04001064 } else {
Chris Masondb945352007-10-15 16:15:53 -04001065 old_val -= num_bytes;
Chris Masonf510cfe2007-10-15 16:14:48 -04001066 if (mark_free) {
1067 set_extent_dirty(&info->free_space_cache,
Chris Masondb945352007-10-15 16:15:53 -04001068 bytenr, bytenr + num_bytes - 1,
Chris Masonf510cfe2007-10-15 16:14:48 -04001069 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04001070 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001071 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001072 btrfs_set_block_group_used(&cache->item, old_val);
Chris Masondb945352007-10-15 16:15:53 -04001073 total -= num_bytes;
1074 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001075 }
1076 return 0;
1077}
Yan324ae4d2007-11-16 14:57:08 -05001078static int update_pinned_extents(struct btrfs_root *root,
1079 u64 bytenr, u64 num, int pin)
1080{
1081 u64 len;
1082 struct btrfs_block_group_cache *cache;
1083 struct btrfs_fs_info *fs_info = root->fs_info;
1084
1085 if (pin) {
1086 set_extent_dirty(&fs_info->pinned_extents,
1087 bytenr, bytenr + num - 1, GFP_NOFS);
1088 } else {
1089 clear_extent_dirty(&fs_info->pinned_extents,
1090 bytenr, bytenr + num - 1, GFP_NOFS);
1091 }
1092 while (num > 0) {
1093 cache = btrfs_lookup_block_group(fs_info, bytenr);
1094 WARN_ON(!cache);
1095 len = min(num, cache->key.offset -
1096 (bytenr - cache->key.objectid));
1097 if (pin) {
1098 cache->pinned += len;
1099 fs_info->total_pinned += len;
1100 } else {
1101 cache->pinned -= len;
1102 fs_info->total_pinned -= len;
1103 }
1104 bytenr += len;
1105 num -= len;
1106 }
1107 return 0;
1108}
Chris Mason9078a3e2007-04-26 16:46:15 -04001109
Chris Masond1310b22008-01-24 16:13:08 -05001110int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy)
Chris Masonccd467d2007-06-28 15:57:36 -04001111{
Chris Masonccd467d2007-06-28 15:57:36 -04001112 u64 last = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001113 u64 start;
1114 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001115 struct extent_io_tree *pinned_extents = &root->fs_info->pinned_extents;
Chris Masonccd467d2007-06-28 15:57:36 -04001116 int ret;
Chris Masonccd467d2007-06-28 15:57:36 -04001117
1118 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001119 ret = find_first_extent_bit(pinned_extents, last,
1120 &start, &end, EXTENT_DIRTY);
1121 if (ret)
Chris Masonccd467d2007-06-28 15:57:36 -04001122 break;
Chris Mason1a5bc162007-10-15 16:15:26 -04001123 set_extent_dirty(copy, start, end, GFP_NOFS);
1124 last = end + 1;
Chris Masonccd467d2007-06-28 15:57:36 -04001125 }
1126 return 0;
1127}
1128
1129int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1130 struct btrfs_root *root,
Chris Masond1310b22008-01-24 16:13:08 -05001131 struct extent_io_tree *unpin)
Chris Masona28ec192007-03-06 20:08:01 -05001132{
Chris Mason1a5bc162007-10-15 16:15:26 -04001133 u64 start;
1134 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05001135 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001136 struct extent_io_tree *free_space_cache;
Chris Masonf510cfe2007-10-15 16:14:48 -04001137 free_space_cache = &root->fs_info->free_space_cache;
Chris Masona28ec192007-03-06 20:08:01 -05001138
1139 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001140 ret = find_first_extent_bit(unpin, 0, &start, &end,
1141 EXTENT_DIRTY);
1142 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05001143 break;
Yan324ae4d2007-11-16 14:57:08 -05001144 update_pinned_extents(root, start, end + 1 - start, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001145 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1146 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
Chris Masona28ec192007-03-06 20:08:01 -05001147 }
1148 return 0;
1149}
1150
Chris Mason98ed5172008-01-03 10:01:48 -05001151static int finish_current_insert(struct btrfs_trans_handle *trans,
1152 struct btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -05001153{
Chris Mason7bb86312007-12-11 09:25:06 -05001154 u64 start;
1155 u64 end;
1156 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001157 struct extent_buffer *eb;
Chris Mason7bb86312007-12-11 09:25:06 -05001158 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001159 struct btrfs_key ins;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001160 struct btrfs_disk_key first;
Chris Mason234b63a2007-03-13 10:46:10 -04001161 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -05001162 int ret;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001163 int level;
Chris Mason1a5bc162007-10-15 16:15:26 -04001164 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001165
Chris Mason5f39d392007-10-15 16:14:19 -04001166 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason62e27492007-03-15 12:56:47 -04001167 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason7bb86312007-12-11 09:25:06 -05001168 path = btrfs_alloc_path();
Chris Mason037e6392007-03-07 11:50:24 -05001169
Chris Mason26b80032007-08-08 20:17:12 -04001170 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001171 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1172 &end, EXTENT_LOCKED);
1173 if (ret)
Chris Mason26b80032007-08-08 20:17:12 -04001174 break;
1175
Chris Mason1a5bc162007-10-15 16:15:26 -04001176 ins.objectid = start;
1177 ins.offset = end + 1 - start;
1178 err = btrfs_insert_item(trans, extent_root, &ins,
1179 &extent_item, sizeof(extent_item));
1180 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1181 GFP_NOFS);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001182 eb = read_tree_block(extent_root, ins.objectid, ins.offset);
1183 level = btrfs_header_level(eb);
1184 if (level == 0) {
1185 btrfs_item_key(eb, &first, 0);
1186 } else {
1187 btrfs_node_key(eb, &first, 0);
1188 }
Chris Mason7bb86312007-12-11 09:25:06 -05001189 err = btrfs_insert_extent_backref(trans, extent_root, path,
1190 start, extent_root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -05001191 0, level,
1192 btrfs_disk_key_objectid(&first));
Chris Mason7bb86312007-12-11 09:25:06 -05001193 BUG_ON(err);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001194 free_extent_buffer(eb);
Chris Mason037e6392007-03-07 11:50:24 -05001195 }
Chris Mason7bb86312007-12-11 09:25:06 -05001196 btrfs_free_path(path);
Chris Mason037e6392007-03-07 11:50:24 -05001197 return 0;
1198}
1199
Chris Masondb945352007-10-15 16:15:53 -04001200static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
1201 int pending)
Chris Masone20d96d2007-03-22 12:13:20 -04001202{
Chris Mason1a5bc162007-10-15 16:15:26 -04001203 int err = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001204 struct extent_buffer *buf;
Chris Mason78fae272007-03-25 11:35:08 -04001205
Chris Masonf4b9aa82007-03-27 11:05:53 -04001206 if (!pending) {
Chris Masondb945352007-10-15 16:15:53 -04001207 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -04001208 if (buf) {
1209 if (btrfs_buffer_uptodate(buf)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -04001210 u64 transid =
1211 root->fs_info->running_transaction->transid;
Chris Masondc17ff82008-01-08 15:46:30 -05001212 u64 header_transid =
1213 btrfs_header_generation(buf);
1214 if (header_transid == transid) {
Chris Mason55c69072008-01-09 15:55:33 -05001215 clean_tree_block(NULL, root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001216 free_extent_buffer(buf);
Yanc5492282007-11-06 10:25:25 -05001217 return 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001218 }
Chris Masonf4b9aa82007-03-27 11:05:53 -04001219 }
Chris Mason5f39d392007-10-15 16:14:19 -04001220 free_extent_buffer(buf);
Chris Mason8ef97622007-03-26 10:15:30 -04001221 }
Yan324ae4d2007-11-16 14:57:08 -05001222 update_pinned_extents(root, bytenr, num_bytes, 1);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001223 } else {
Chris Mason1a5bc162007-10-15 16:15:26 -04001224 set_extent_bits(&root->fs_info->pending_del,
Chris Masondb945352007-10-15 16:15:53 -04001225 bytenr, bytenr + num_bytes - 1,
1226 EXTENT_LOCKED, GFP_NOFS);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001227 }
Chris Masonbe744172007-05-06 10:15:01 -04001228 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001229 return 0;
1230}
1231
Chris Masona28ec192007-03-06 20:08:01 -05001232/*
1233 * remove an extent from the root, returns 0 on success
1234 */
Chris Masone089f052007-03-16 16:20:31 -04001235static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001236 *root, u64 bytenr, u64 num_bytes,
1237 u64 root_objectid, u64 ref_generation,
1238 u64 owner_objectid, u64 owner_offset, int pin,
Chris Masone37c9e62007-05-09 20:13:14 -04001239 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -05001240{
Chris Mason5caf2a02007-04-02 11:20:42 -04001241 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001242 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -04001243 struct btrfs_fs_info *info = root->fs_info;
1244 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001245 struct extent_buffer *leaf;
Chris Masona28ec192007-03-06 20:08:01 -05001246 int ret;
Chris Mason234b63a2007-03-13 10:46:10 -04001247 struct btrfs_extent_item *ei;
Chris Masoncf27e1e2007-03-13 09:49:06 -04001248 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -05001249
Chris Masondb945352007-10-15 16:15:53 -04001250 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -04001251 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -04001252 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001253 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001254 if (!path)
1255 return -ENOMEM;
1256
Chris Masonb0331a42008-01-08 15:46:31 -05001257 path->reada = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001258 ret = lookup_extent_backref(trans, extent_root, path,
1259 bytenr, root_objectid,
1260 ref_generation,
1261 owner_objectid, owner_offset, 1);
1262 if (ret == 0) {
1263 ret = btrfs_del_item(trans, extent_root, path);
1264 } else {
1265 btrfs_print_leaf(extent_root, path->nodes[0]);
1266 WARN_ON(1);
1267 printk("Unable to find ref byte nr %Lu root %Lu "
1268 " gen %Lu owner %Lu offset %Lu\n", bytenr,
1269 root_objectid, ref_generation, owner_objectid,
1270 owner_offset);
1271 }
1272 btrfs_release_path(extent_root, path);
Chris Mason5caf2a02007-04-02 11:20:42 -04001273 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001274 if (ret < 0)
1275 return ret;
1276 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001277
1278 leaf = path->nodes[0];
1279 ei = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason123abc82007-03-14 14:14:43 -04001280 struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001281 refs = btrfs_extent_refs(leaf, ei);
1282 BUG_ON(refs == 0);
1283 refs -= 1;
1284 btrfs_set_extent_refs(leaf, ei, refs);
1285 btrfs_mark_buffer_dirty(leaf);
1286
Chris Masoncf27e1e2007-03-13 09:49:06 -04001287 if (refs == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001288 u64 super_used;
1289 u64 root_used;
Chris Mason78fae272007-03-25 11:35:08 -04001290
1291 if (pin) {
Chris Masondb945352007-10-15 16:15:53 -04001292 ret = pin_down_bytes(root, bytenr, num_bytes, 0);
Yanc5492282007-11-06 10:25:25 -05001293 if (ret > 0)
1294 mark_free = 1;
1295 BUG_ON(ret < 0);
Chris Mason78fae272007-03-25 11:35:08 -04001296 }
1297
Josef Bacik58176a92007-08-29 15:47:34 -04001298 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001299 super_used = btrfs_super_bytes_used(&info->super_copy);
1300 btrfs_set_super_bytes_used(&info->super_copy,
1301 super_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001302
1303 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001304 root_used = btrfs_root_used(&root->root_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001305 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -04001306 root_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001307
Chris Mason5caf2a02007-04-02 11:20:42 -04001308 ret = btrfs_del_item(trans, extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -04001309 if (ret) {
1310 return ret;
1311 }
Chris Masondb945352007-10-15 16:15:53 -04001312 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
Chris Mason1e2677e2007-05-29 16:52:18 -04001313 mark_free, 0);
Chris Mason9078a3e2007-04-26 16:46:15 -04001314 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05001315 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001316 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001317 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -05001318 return ret;
1319}
1320
1321/*
Chris Masonfec577f2007-02-26 10:40:21 -05001322 * find all the blocks marked as pending in the radix tree and remove
1323 * them from the extent map
1324 */
Chris Masone089f052007-03-16 16:20:31 -04001325static int del_pending_extents(struct btrfs_trans_handle *trans, struct
1326 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -05001327{
1328 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001329 int err = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001330 u64 start;
1331 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001332 struct extent_io_tree *pending_del;
1333 struct extent_io_tree *pinned_extents;
Chris Mason8ef97622007-03-26 10:15:30 -04001334
Chris Mason1a5bc162007-10-15 16:15:26 -04001335 pending_del = &extent_root->fs_info->pending_del;
1336 pinned_extents = &extent_root->fs_info->pinned_extents;
Chris Masonfec577f2007-02-26 10:40:21 -05001337
1338 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001339 ret = find_first_extent_bit(pending_del, 0, &start, &end,
1340 EXTENT_LOCKED);
1341 if (ret)
Chris Masonfec577f2007-02-26 10:40:21 -05001342 break;
Yan324ae4d2007-11-16 14:57:08 -05001343 update_pinned_extents(extent_root, start, end + 1 - start, 1);
Chris Mason1a5bc162007-10-15 16:15:26 -04001344 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
1345 GFP_NOFS);
1346 ret = __free_extent(trans, extent_root,
Chris Mason7bb86312007-12-11 09:25:06 -05001347 start, end + 1 - start,
1348 extent_root->root_key.objectid,
1349 0, 0, 0, 0, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001350 if (ret)
1351 err = ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001352 }
Chris Masone20d96d2007-03-22 12:13:20 -04001353 return err;
Chris Masonfec577f2007-02-26 10:40:21 -05001354}
1355
1356/*
1357 * remove an extent from the root, returns 0 on success
1358 */
Chris Masone089f052007-03-16 16:20:31 -04001359int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001360 *root, u64 bytenr, u64 num_bytes,
1361 u64 root_objectid, u64 ref_generation,
1362 u64 owner_objectid, u64 owner_offset, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -05001363{
Chris Mason9f5fae22007-03-20 14:38:32 -04001364 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -05001365 int pending_ret;
1366 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05001367
Chris Masondb945352007-10-15 16:15:53 -04001368 WARN_ON(num_bytes < root->sectorsize);
Chris Mason7bb86312007-12-11 09:25:06 -05001369 if (!root->ref_cows)
1370 ref_generation = 0;
1371
Chris Masona28ec192007-03-06 20:08:01 -05001372 if (root == extent_root) {
Chris Masondb945352007-10-15 16:15:53 -04001373 pin_down_bytes(root, bytenr, num_bytes, 1);
Chris Masona28ec192007-03-06 20:08:01 -05001374 return 0;
1375 }
Chris Mason7bb86312007-12-11 09:25:06 -05001376 ret = __free_extent(trans, root, bytenr, num_bytes, root_objectid,
1377 ref_generation, owner_objectid, owner_offset,
1378 pin, pin == 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001379 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -05001380 return ret ? ret : pending_ret;
1381}
1382
Chris Mason87ee04e2007-11-30 11:30:34 -05001383static u64 stripe_align(struct btrfs_root *root, u64 val)
1384{
1385 u64 mask = ((u64)root->stripesize - 1);
1386 u64 ret = (val + mask) & ~mask;
1387 return ret;
1388}
1389
Chris Masonfec577f2007-02-26 10:40:21 -05001390/*
1391 * walks the btree of allocated extents and find a hole of a given size.
1392 * The key ins is changed to record the hole:
1393 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04001394 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05001395 * ins->offset == number of blocks
1396 * Any available blocks before search_start are skipped.
1397 */
Chris Mason98ed5172008-01-03 10:01:48 -05001398static int noinline find_free_extent(struct btrfs_trans_handle *trans,
1399 struct btrfs_root *orig_root,
1400 u64 num_bytes, u64 empty_size,
1401 u64 search_start, u64 search_end,
1402 u64 hint_byte, struct btrfs_key *ins,
1403 u64 exclude_start, u64 exclude_nr,
1404 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001405{
Chris Mason5caf2a02007-04-02 11:20:42 -04001406 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001407 struct btrfs_key key;
Chris Masonfec577f2007-02-26 10:40:21 -05001408 u64 hole_size = 0;
Chris Mason87ee04e2007-11-30 11:30:34 -05001409 u64 aligned;
1410 int ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001411 int slot = 0;
Chris Masondb945352007-10-15 16:15:53 -04001412 u64 last_byte = 0;
Chris Masonbe744172007-05-06 10:15:01 -04001413 u64 orig_search_start = search_start;
Chris Masonfec577f2007-02-26 10:40:21 -05001414 int start_found;
Chris Mason5f39d392007-10-15 16:14:19 -04001415 struct extent_buffer *l;
Chris Mason9f5fae22007-03-20 14:38:32 -04001416 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -04001417 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001418 u64 total_needed = num_bytes;
Chris Masone20d96d2007-03-22 12:13:20 -04001419 int level;
Chris Masonbe08c1b2007-05-03 09:06:49 -04001420 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -04001421 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -04001422 int wrapped = 0;
Chris Masonf84a8b32007-11-06 10:26:29 -05001423 u64 cached_start;
Chris Masonfec577f2007-02-26 10:40:21 -05001424
Chris Masondb945352007-10-15 16:15:53 -04001425 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04001426 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
1427
Chris Mason5f39d392007-10-15 16:14:19 -04001428 level = btrfs_header_level(root->node);
1429
Chris Mason015a739c2007-11-26 16:15:16 -08001430 if (num_bytes >= 32 * 1024 * 1024 && hint_byte) {
Chris Mason257d0ce2007-11-07 21:08:16 -05001431 data = BTRFS_BLOCK_GROUP_MIXED;
1432 }
1433
Chris Masone18e4802008-01-18 10:54:22 -05001434 /* for SSD, cluster allocations together as much as possible */
1435 if (btrfs_test_opt(root, SSD)) {
1436 if (!data) {
1437 if (root->fs_info->last_alloc)
1438 hint_byte = root->fs_info->last_alloc;
1439 else {
1440 hint_byte = hint_byte &
1441 ~((u64)BTRFS_BLOCK_GROUP_SIZE - 1);
1442 empty_size += 16 * 1024 * 1024;
1443 }
1444 }
1445 }
1446
Chris Masonc31f8832008-01-08 15:46:31 -05001447 search_end = min(search_end,
1448 btrfs_super_total_bytes(&info->super_copy));
Chris Masondb945352007-10-15 16:15:53 -04001449 if (hint_byte) {
1450 block_group = btrfs_lookup_block_group(info, hint_byte);
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001451 if (!block_group)
1452 hint_byte = search_start;
Chris Masonbe744172007-05-06 10:15:01 -04001453 block_group = btrfs_find_block_group(root, block_group,
Chris Masondb945352007-10-15 16:15:53 -04001454 hint_byte, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001455 } else {
1456 block_group = btrfs_find_block_group(root,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001457 trans->block_group,
1458 search_start, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001459 }
1460
Chris Mason6702ed42007-08-07 16:15:09 -04001461 total_needed += empty_size;
Chris Masone0115992007-06-19 16:23:05 -04001462 path = btrfs_alloc_path();
Chris Masonbe744172007-05-06 10:15:01 -04001463check_failed:
Chris Mason70b043f2007-12-13 09:02:46 -05001464 if (!block_group) {
1465 block_group = btrfs_lookup_block_group(info, search_start);
1466 if (!block_group)
1467 block_group = btrfs_lookup_block_group(info,
1468 orig_search_start);
1469 }
Yan5e5745d2007-11-16 14:57:09 -05001470 search_start = find_search_start(root, &block_group, search_start,
Yand548ee52008-01-03 13:56:30 -05001471 total_needed, data);
Chris Masone18e4802008-01-18 10:54:22 -05001472
1473 if (!data && btrfs_test_opt(root, SSD) && info->last_alloc &&
1474 search_start != info->last_alloc) {
1475 info->last_alloc = 0;
1476 if (!empty_size) {
1477 empty_size += 16 * 1024 * 1024;
1478 total_needed += empty_size;
1479 }
1480 search_start = find_search_start(root, &block_group,
1481 search_start, total_needed,
1482 data);
1483 }
1484
Chris Mason87ee04e2007-11-30 11:30:34 -05001485 search_start = stripe_align(root, search_start);
Chris Masonf84a8b32007-11-06 10:26:29 -05001486 cached_start = search_start;
Chris Mason5caf2a02007-04-02 11:20:42 -04001487 btrfs_init_path(path);
Chris Masonfec577f2007-02-26 10:40:21 -05001488 ins->objectid = search_start;
1489 ins->offset = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001490 start_found = 0;
Chris Mason2cc58cf2007-08-27 16:49:44 -04001491 path->reada = 2;
Chris Masone37c9e62007-05-09 20:13:14 -04001492
Chris Mason5caf2a02007-04-02 11:20:42 -04001493 ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
Chris Mason0f70abe2007-02-28 16:46:22 -05001494 if (ret < 0)
1495 goto error;
Yand548ee52008-01-03 13:56:30 -05001496 ret = find_previous_extent(root, path);
1497 if (ret < 0)
1498 goto error;
Chris Mason5f39d392007-10-15 16:14:19 -04001499 l = path->nodes[0];
1500 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
Chris Masonfec577f2007-02-26 10:40:21 -05001501 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001502 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -04001503 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04001504 if (slot >= btrfs_header_nritems(l)) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001505 ret = btrfs_next_leaf(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -05001506 if (ret == 0)
1507 continue;
Chris Mason0f70abe2007-02-28 16:46:22 -05001508 if (ret < 0)
1509 goto error;
Chris Masone19caa52007-10-15 16:17:44 -04001510
1511 search_start = max(search_start,
1512 block_group->key.objectid);
Chris Masonfec577f2007-02-26 10:40:21 -05001513 if (!start_found) {
Chris Mason87ee04e2007-11-30 11:30:34 -05001514 aligned = stripe_align(root, search_start);
1515 ins->objectid = aligned;
1516 if (aligned >= search_end) {
1517 ret = -ENOSPC;
1518 goto error;
1519 }
1520 ins->offset = search_end - aligned;
Chris Masonfec577f2007-02-26 10:40:21 -05001521 start_found = 1;
1522 goto check_pending;
1523 }
Chris Mason87ee04e2007-11-30 11:30:34 -05001524 ins->objectid = stripe_align(root,
1525 last_byte > search_start ?
1526 last_byte : search_start);
1527 if (search_end <= ins->objectid) {
1528 ret = -ENOSPC;
1529 goto error;
1530 }
Chris Mason3e1ad542007-05-07 20:03:49 -04001531 ins->offset = search_end - ins->objectid;
Chris Masone19caa52007-10-15 16:17:44 -04001532 BUG_ON(ins->objectid >= search_end);
Chris Masonfec577f2007-02-26 10:40:21 -05001533 goto check_pending;
1534 }
Chris Mason5f39d392007-10-15 16:14:19 -04001535 btrfs_item_key_to_cpu(l, &key, slot);
Chris Mason96b51792007-10-15 16:15:19 -04001536
Chris Masondb945352007-10-15 16:15:53 -04001537 if (key.objectid >= search_start && key.objectid > last_byte &&
Chris Masone37c9e62007-05-09 20:13:14 -04001538 start_found) {
Chris Masondb945352007-10-15 16:15:53 -04001539 if (last_byte < search_start)
1540 last_byte = search_start;
Chris Mason87ee04e2007-11-30 11:30:34 -05001541 aligned = stripe_align(root, last_byte);
1542 hole_size = key.objectid - aligned;
1543 if (key.objectid > aligned && hole_size >= num_bytes) {
1544 ins->objectid = aligned;
Chris Masone37c9e62007-05-09 20:13:14 -04001545 ins->offset = hole_size;
1546 goto check_pending;
Chris Mason0579da42007-03-07 16:15:30 -05001547 }
Chris Masonfec577f2007-02-26 10:40:21 -05001548 }
Chris Mason96b51792007-10-15 16:15:19 -04001549 if (btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY) {
Chris Mason7bb86312007-12-11 09:25:06 -05001550 if (!start_found && btrfs_key_type(&key) ==
1551 BTRFS_BLOCK_GROUP_ITEM_KEY) {
Chris Masondb945352007-10-15 16:15:53 -04001552 last_byte = key.objectid;
Chris Mason96b51792007-10-15 16:15:19 -04001553 start_found = 1;
1554 }
Chris Masone37c9e62007-05-09 20:13:14 -04001555 goto next;
Chris Mason96b51792007-10-15 16:15:19 -04001556 }
1557
Chris Masone37c9e62007-05-09 20:13:14 -04001558
Chris Mason0579da42007-03-07 16:15:30 -05001559 start_found = 1;
Chris Masondb945352007-10-15 16:15:53 -04001560 last_byte = key.objectid + key.offset;
Chris Masonf510cfe2007-10-15 16:14:48 -04001561
Chris Mason257d0ce2007-11-07 21:08:16 -05001562 if (!full_scan && data != BTRFS_BLOCK_GROUP_MIXED &&
1563 last_byte >= block_group->key.objectid +
Chris Masonbe744172007-05-06 10:15:01 -04001564 block_group->key.offset) {
1565 btrfs_release_path(root, path);
1566 search_start = block_group->key.objectid +
Chris Masone19caa52007-10-15 16:17:44 -04001567 block_group->key.offset;
Chris Masonbe744172007-05-06 10:15:01 -04001568 goto new_group;
1569 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001570next:
Chris Mason5caf2a02007-04-02 11:20:42 -04001571 path->slots[0]++;
Chris Masonde428b62007-05-18 13:28:27 -04001572 cond_resched();
Chris Masonfec577f2007-02-26 10:40:21 -05001573 }
Chris Masonfec577f2007-02-26 10:40:21 -05001574check_pending:
1575 /* we have to make sure we didn't find an extent that has already
1576 * been allocated by the map tree or the original allocation
1577 */
Chris Mason5caf2a02007-04-02 11:20:42 -04001578 btrfs_release_path(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -05001579 BUG_ON(ins->objectid < search_start);
Chris Masone37c9e62007-05-09 20:13:14 -04001580
Chris Masondb945352007-10-15 16:15:53 -04001581 if (ins->objectid + num_bytes >= search_end)
Chris Masoncf675822007-09-17 11:00:51 -04001582 goto enospc;
Chris Mason257d0ce2007-11-07 21:08:16 -05001583 if (!full_scan && data != BTRFS_BLOCK_GROUP_MIXED &&
Yan5cf66422007-11-16 14:57:09 -05001584 ins->objectid + num_bytes > block_group->
Chris Masone19caa52007-10-15 16:17:44 -04001585 key.objectid + block_group->key.offset) {
1586 search_start = block_group->key.objectid +
1587 block_group->key.offset;
1588 goto new_group;
1589 }
Chris Mason1a5bc162007-10-15 16:15:26 -04001590 if (test_range_bit(&info->extent_ins, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001591 ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
1592 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001593 goto new_group;
1594 }
1595 if (test_range_bit(&info->pinned_extents, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001596 ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
1597 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001598 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05001599 }
Chris Masondb945352007-10-15 16:15:53 -04001600 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
Chris Masonf2654de2007-06-26 12:20:46 -04001601 ins->objectid < exclude_start + exclude_nr)) {
1602 search_start = exclude_start + exclude_nr;
1603 goto new_group;
1604 }
Chris Masone37c9e62007-05-09 20:13:14 -04001605 if (!data) {
Chris Mason5276aed2007-06-11 21:33:38 -04001606 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Mason26b80032007-08-08 20:17:12 -04001607 if (block_group)
1608 trans->block_group = block_group;
Chris Masoncd1bc462007-04-27 10:08:34 -04001609 }
Chris Masondb945352007-10-15 16:15:53 -04001610 ins->offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001611 btrfs_free_path(path);
Chris Masonfec577f2007-02-26 10:40:21 -05001612 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04001613
1614new_group:
Chris Masondb945352007-10-15 16:15:53 -04001615 if (search_start + num_bytes >= search_end) {
Chris Masoncf675822007-09-17 11:00:51 -04001616enospc:
Chris Masonbe744172007-05-06 10:15:01 -04001617 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04001618 if (full_scan) {
1619 ret = -ENOSPC;
1620 goto error;
1621 }
Chris Mason6702ed42007-08-07 16:15:09 -04001622 if (wrapped) {
1623 if (!full_scan)
1624 total_needed -= empty_size;
Chris Masonfbdc7622007-05-30 10:22:12 -04001625 full_scan = 1;
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001626 data = BTRFS_BLOCK_GROUP_MIXED;
Chris Mason6702ed42007-08-07 16:15:09 -04001627 } else
Chris Masonfbdc7622007-05-30 10:22:12 -04001628 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04001629 }
Chris Mason5276aed2007-06-11 21:33:38 -04001630 block_group = btrfs_lookup_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04001631 cond_resched();
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001632 block_group = btrfs_find_block_group(root, block_group,
1633 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04001634 goto check_failed;
1635
Chris Mason0f70abe2007-02-28 16:46:22 -05001636error:
Chris Mason5caf2a02007-04-02 11:20:42 -04001637 btrfs_release_path(root, path);
1638 btrfs_free_path(path);
Chris Masone18e4802008-01-18 10:54:22 -05001639 if (btrfs_test_opt(root, SSD) && !ret && !data)
1640 info->last_alloc = ins->objectid + ins->offset;
Chris Mason0f70abe2007-02-28 16:46:22 -05001641 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001642}
Chris Masonfec577f2007-02-26 10:40:21 -05001643/*
Chris Masonfec577f2007-02-26 10:40:21 -05001644 * finds a free extent and does all the dirty work required for allocation
1645 * returns the key for the extent through ins, and a tree buffer for
1646 * the first block of the extent through buf.
1647 *
1648 * returns 0 if everything worked, non-zero otherwise.
1649 */
Chris Mason4d775672007-04-20 20:23:12 -04001650int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -05001651 struct btrfs_root *root,
1652 u64 num_bytes, u64 root_objectid, u64 ref_generation,
1653 u64 owner, u64 owner_offset,
1654 u64 empty_size, u64 hint_byte,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001655 u64 search_end, struct btrfs_key *ins, int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001656{
1657 int ret;
1658 int pending_ret;
Chris Masonc31f8832008-01-08 15:46:31 -05001659 u64 super_used;
1660 u64 root_used;
Chris Masonfbdc7622007-05-30 10:22:12 -04001661 u64 search_start = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05001662 u64 new_hint;
Chris Mason1261ec42007-03-20 20:35:03 -04001663 struct btrfs_fs_info *info = root->fs_info;
1664 struct btrfs_root *extent_root = info->extent_root;
Chris Mason234b63a2007-03-13 10:46:10 -04001665 struct btrfs_extent_item extent_item;
Chris Mason7bb86312007-12-11 09:25:06 -05001666 struct btrfs_path *path;
Chris Mason037e6392007-03-07 11:50:24 -05001667
Chris Mason5f39d392007-10-15 16:14:19 -04001668 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason8f662a72008-01-02 10:01:11 -05001669
1670 new_hint = max(hint_byte, root->fs_info->alloc_start);
Chris Masonedbd8d42007-12-21 16:27:24 -05001671 if (new_hint < btrfs_super_total_bytes(&info->super_copy))
1672 hint_byte = new_hint;
Chris Mason8f662a72008-01-02 10:01:11 -05001673
Chris Masondb945352007-10-15 16:15:53 -04001674 WARN_ON(num_bytes < root->sectorsize);
1675 ret = find_free_extent(trans, root, num_bytes, empty_size,
1676 search_start, search_end, hint_byte, ins,
Chris Mason26b80032007-08-08 20:17:12 -04001677 trans->alloc_exclude_start,
1678 trans->alloc_exclude_nr, data);
Chris Masonccd467d2007-06-28 15:57:36 -04001679 BUG_ON(ret);
Chris Masonf2654de2007-06-26 12:20:46 -04001680 if (ret)
1681 return ret;
1682
Josef Bacik58176a92007-08-29 15:47:34 -04001683 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001684 super_used = btrfs_super_bytes_used(&info->super_copy);
1685 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
Chris Mason26b80032007-08-08 20:17:12 -04001686
Josef Bacik58176a92007-08-29 15:47:34 -04001687 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001688 root_used = btrfs_root_used(&root->root_item);
1689 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001690
Chris Masonf510cfe2007-10-15 16:14:48 -04001691 clear_extent_dirty(&root->fs_info->free_space_cache,
1692 ins->objectid, ins->objectid + ins->offset - 1,
1693 GFP_NOFS);
1694
Chris Mason26b80032007-08-08 20:17:12 -04001695 if (root == extent_root) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001696 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
1697 ins->objectid + ins->offset - 1,
1698 EXTENT_LOCKED, GFP_NOFS);
Chris Masone19caa52007-10-15 16:17:44 -04001699 WARN_ON(data == 1);
Chris Mason26b80032007-08-08 20:17:12 -04001700 goto update_block;
1701 }
1702
1703 WARN_ON(trans->alloc_exclude_nr);
1704 trans->alloc_exclude_start = ins->objectid;
1705 trans->alloc_exclude_nr = ins->offset;
Chris Masone089f052007-03-16 16:20:31 -04001706 ret = btrfs_insert_item(trans, extent_root, ins, &extent_item,
1707 sizeof(extent_item));
Chris Mason037e6392007-03-07 11:50:24 -05001708
Chris Mason26b80032007-08-08 20:17:12 -04001709 trans->alloc_exclude_start = 0;
1710 trans->alloc_exclude_nr = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001711 BUG_ON(ret);
1712
1713 path = btrfs_alloc_path();
1714 BUG_ON(!path);
1715 ret = btrfs_insert_extent_backref(trans, extent_root, path,
1716 ins->objectid, root_objectid,
1717 ref_generation, owner, owner_offset);
Chris Mason26b80032007-08-08 20:17:12 -04001718
Chris Masonccd467d2007-06-28 15:57:36 -04001719 BUG_ON(ret);
Chris Mason7bb86312007-12-11 09:25:06 -05001720 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001721 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001722 pending_ret = del_pending_extents(trans, extent_root);
Chris Masonf510cfe2007-10-15 16:14:48 -04001723
Chris Masone37c9e62007-05-09 20:13:14 -04001724 if (ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001725 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001726 }
1727 if (pending_ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001728 return pending_ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001729 }
Chris Mason26b80032007-08-08 20:17:12 -04001730
1731update_block:
Chris Mason1e2677e2007-05-29 16:52:18 -04001732 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0,
1733 data);
Chris Masonfabb5682007-06-07 22:13:21 -04001734 BUG_ON(ret);
Chris Mason037e6392007-03-07 11:50:24 -05001735 return 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001736}
1737
1738/*
1739 * helper function to allocate a block for a given tree
1740 * returns the tree buffer or NULL.
1741 */
Chris Mason5f39d392007-10-15 16:14:19 -04001742struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -04001743 struct btrfs_root *root,
Chris Mason7bb86312007-12-11 09:25:06 -05001744 u32 blocksize,
1745 u64 root_objectid, u64 hint,
1746 u64 empty_size)
1747{
1748 u64 ref_generation;
1749
1750 if (root->ref_cows)
1751 ref_generation = trans->transid;
1752 else
1753 ref_generation = 0;
1754
1755
1756 return __btrfs_alloc_free_block(trans, root, blocksize, root_objectid,
1757 ref_generation, 0, 0, hint, empty_size);
1758}
1759
1760/*
1761 * helper function to allocate a block for a given tree
1762 * returns the tree buffer or NULL.
1763 */
1764struct extent_buffer *__btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1765 struct btrfs_root *root,
1766 u32 blocksize,
1767 u64 root_objectid,
1768 u64 ref_generation,
1769 u64 first_objectid,
1770 int level,
1771 u64 hint,
Chris Mason5f39d392007-10-15 16:14:19 -04001772 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05001773{
Chris Masone2fa7222007-03-12 16:22:34 -04001774 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05001775 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04001776 struct extent_buffer *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05001777
Chris Mason7bb86312007-12-11 09:25:06 -05001778 ret = btrfs_alloc_extent(trans, root, blocksize,
1779 root_objectid, ref_generation,
Chris Masonf6dbff52007-12-13 11:13:32 -05001780 level, first_objectid, empty_size, hint,
Chris Masondb945352007-10-15 16:15:53 -04001781 (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05001782 if (ret) {
Chris Mason54aa1f42007-06-22 14:16:25 -04001783 BUG_ON(ret > 0);
1784 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05001785 }
Chris Masondb945352007-10-15 16:15:53 -04001786 buf = btrfs_find_create_tree_block(root, ins.objectid, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04001787 if (!buf) {
Chris Mason7bb86312007-12-11 09:25:06 -05001788 btrfs_free_extent(trans, root, ins.objectid, blocksize,
1789 root->root_key.objectid, ref_generation,
1790 0, 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001791 return ERR_PTR(-ENOMEM);
1792 }
Chris Mason55c69072008-01-09 15:55:33 -05001793 btrfs_set_header_generation(buf, trans->transid);
1794 clean_tree_block(trans, root, buf);
1795 wait_on_tree_block_writeback(root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001796 btrfs_set_buffer_uptodate(buf);
Chris Mason55c69072008-01-09 15:55:33 -05001797
1798 if (PageDirty(buf->first_page)) {
1799 printk("page %lu dirty\n", buf->first_page->index);
1800 WARN_ON(1);
1801 }
1802
Chris Mason5f39d392007-10-15 16:14:19 -04001803 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
1804 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001805 set_extent_bits(&BTRFS_I(root->fs_info->btree_inode)->io_tree,
Chris Mason19c00dd2007-10-15 16:19:22 -04001806 buf->start, buf->start + buf->len - 1,
1807 EXTENT_CSUM, GFP_NOFS);
1808 buf->flags |= EXTENT_CSUM;
Chris Masone18e4802008-01-18 10:54:22 -05001809 if (!btrfs_test_opt(root, SSD))
1810 btrfs_set_buffer_defrag(buf);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001811 trans->blocks_used++;
Chris Masonfec577f2007-02-26 10:40:21 -05001812 return buf;
1813}
Chris Masona28ec192007-03-06 20:08:01 -05001814
Chris Mason98ed5172008-01-03 10:01:48 -05001815static int noinline drop_leaf_ref(struct btrfs_trans_handle *trans,
1816 struct btrfs_root *root,
1817 struct extent_buffer *leaf)
Chris Mason6407bf62007-03-27 06:33:00 -04001818{
Chris Mason7bb86312007-12-11 09:25:06 -05001819 u64 leaf_owner;
1820 u64 leaf_generation;
Chris Mason5f39d392007-10-15 16:14:19 -04001821 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04001822 struct btrfs_file_extent_item *fi;
1823 int i;
1824 int nritems;
1825 int ret;
1826
Chris Mason5f39d392007-10-15 16:14:19 -04001827 BUG_ON(!btrfs_is_leaf(leaf));
1828 nritems = btrfs_header_nritems(leaf);
Chris Mason7bb86312007-12-11 09:25:06 -05001829 leaf_owner = btrfs_header_owner(leaf);
1830 leaf_generation = btrfs_header_generation(leaf);
1831
Chris Mason6407bf62007-03-27 06:33:00 -04001832 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001833 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001834
1835 btrfs_item_key_to_cpu(leaf, &key, i);
1836 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04001837 continue;
1838 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001839 if (btrfs_file_extent_type(leaf, fi) ==
1840 BTRFS_FILE_EXTENT_INLINE)
Chris Mason236454df2007-04-19 13:37:44 -04001841 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04001842 /*
1843 * FIXME make sure to insert a trans record that
1844 * repeats the snapshot del on crash
1845 */
Chris Masondb945352007-10-15 16:15:53 -04001846 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1847 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04001848 continue;
Chris Masondb945352007-10-15 16:15:53 -04001849 ret = btrfs_free_extent(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001850 btrfs_file_extent_disk_num_bytes(leaf, fi),
1851 leaf_owner, leaf_generation,
1852 key.objectid, key.offset, 0);
Chris Mason6407bf62007-03-27 06:33:00 -04001853 BUG_ON(ret);
1854 }
1855 return 0;
1856}
1857
Chris Mason98ed5172008-01-03 10:01:48 -05001858static void noinline reada_walk_down(struct btrfs_root *root,
Chris Masonbea495e2008-01-24 16:13:14 -05001859 struct extent_buffer *node,
1860 int slot)
Chris Masone0115992007-06-19 16:23:05 -04001861{
Chris Masondb945352007-10-15 16:15:53 -04001862 u64 bytenr;
Chris Masonbea495e2008-01-24 16:13:14 -05001863 u64 last = 0;
1864 u32 nritems;
Chris Masone0115992007-06-19 16:23:05 -04001865 u32 refs;
Chris Masondb945352007-10-15 16:15:53 -04001866 u32 blocksize;
Chris Masonbea495e2008-01-24 16:13:14 -05001867 int ret;
1868 int i;
1869 int level;
1870 int skipped = 0;
Chris Masone0115992007-06-19 16:23:05 -04001871
Chris Mason5f39d392007-10-15 16:14:19 -04001872 nritems = btrfs_header_nritems(node);
Chris Masondb945352007-10-15 16:15:53 -04001873 level = btrfs_header_level(node);
Chris Masonbea495e2008-01-24 16:13:14 -05001874 if (level)
1875 return;
1876
1877 for (i = slot; i < nritems && skipped < 32; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001878 bytenr = btrfs_node_blockptr(node, i);
Chris Masonbea495e2008-01-24 16:13:14 -05001879 if (last && ((bytenr > last && bytenr - last > 32 * 1024) ||
1880 (last > bytenr && last - bytenr > 32 * 1024))) {
1881 skipped++;
Chris Masone0115992007-06-19 16:23:05 -04001882 continue;
Chris Masonbea495e2008-01-24 16:13:14 -05001883 }
1884 blocksize = btrfs_level_size(root, level - 1);
1885 if (i != slot) {
1886 ret = lookup_extent_ref(NULL, root, bytenr,
1887 blocksize, &refs);
1888 BUG_ON(ret);
1889 if (refs != 1) {
1890 skipped++;
1891 continue;
1892 }
1893 }
Chris Mason409eb952007-08-08 20:17:12 -04001894 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -04001895 ret = readahead_tree_block(root, bytenr, blocksize);
Chris Masonbea495e2008-01-24 16:13:14 -05001896 last = bytenr + blocksize;
Chris Mason409eb952007-08-08 20:17:12 -04001897 cond_resched();
1898 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone0115992007-06-19 16:23:05 -04001899 if (ret)
1900 break;
1901 }
1902}
1903
Chris Mason9aca1d52007-03-13 11:09:37 -04001904/*
1905 * helper function for drop_snapshot, this walks down the tree dropping ref
1906 * counts as it goes.
1907 */
Chris Mason98ed5172008-01-03 10:01:48 -05001908static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
1909 struct btrfs_root *root,
1910 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05001911{
Chris Mason7bb86312007-12-11 09:25:06 -05001912 u64 root_owner;
1913 u64 root_gen;
1914 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001915 struct extent_buffer *next;
1916 struct extent_buffer *cur;
Chris Mason7bb86312007-12-11 09:25:06 -05001917 struct extent_buffer *parent;
Chris Masondb945352007-10-15 16:15:53 -04001918 u32 blocksize;
Chris Mason20524f02007-03-10 06:35:47 -05001919 int ret;
1920 u32 refs;
1921
Chris Mason5caf2a02007-04-02 11:20:42 -04001922 WARN_ON(*level < 0);
1923 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason5f39d392007-10-15 16:14:19 -04001924 ret = lookup_extent_ref(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04001925 path->nodes[*level]->start,
1926 path->nodes[*level]->len, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05001927 BUG_ON(ret);
1928 if (refs > 1)
1929 goto out;
Chris Masone0115992007-06-19 16:23:05 -04001930
Chris Mason9aca1d52007-03-13 11:09:37 -04001931 /*
1932 * walk down to the last node level and free all the leaves
1933 */
Chris Mason6407bf62007-03-27 06:33:00 -04001934 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001935 WARN_ON(*level < 0);
1936 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05001937 cur = path->nodes[*level];
Chris Masone0115992007-06-19 16:23:05 -04001938
Chris Mason5f39d392007-10-15 16:14:19 -04001939 if (btrfs_header_level(cur) != *level)
Chris Mason2c90e5d2007-04-02 10:50:19 -04001940 WARN_ON(1);
Chris Masone0115992007-06-19 16:23:05 -04001941
Chris Mason7518a232007-03-12 12:01:18 -04001942 if (path->slots[*level] >=
Chris Mason5f39d392007-10-15 16:14:19 -04001943 btrfs_header_nritems(cur))
Chris Mason20524f02007-03-10 06:35:47 -05001944 break;
Chris Mason6407bf62007-03-27 06:33:00 -04001945 if (*level == 0) {
1946 ret = drop_leaf_ref(trans, root, cur);
1947 BUG_ON(ret);
1948 break;
1949 }
Chris Masondb945352007-10-15 16:15:53 -04001950 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
1951 blocksize = btrfs_level_size(root, *level - 1);
1952 ret = lookup_extent_ref(trans, root, bytenr, blocksize, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04001953 BUG_ON(ret);
1954 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05001955 parent = path->nodes[*level];
1956 root_owner = btrfs_header_owner(parent);
1957 root_gen = btrfs_header_generation(parent);
Chris Mason20524f02007-03-10 06:35:47 -05001958 path->slots[*level]++;
Chris Masondb945352007-10-15 16:15:53 -04001959 ret = btrfs_free_extent(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001960 blocksize, root_owner,
1961 root_gen, 0, 0, 1);
Chris Mason20524f02007-03-10 06:35:47 -05001962 BUG_ON(ret);
1963 continue;
1964 }
Chris Masondb945352007-10-15 16:15:53 -04001965 next = btrfs_find_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001966 if (!next || !btrfs_buffer_uptodate(next)) {
1967 free_extent_buffer(next);
Chris Masonbea495e2008-01-24 16:13:14 -05001968 reada_walk_down(root, cur, path->slots[*level]);
Chris Masone9d0b132007-08-10 14:06:19 -04001969 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -04001970 next = read_tree_block(root, bytenr, blocksize);
Chris Masone9d0b132007-08-10 14:06:19 -04001971 mutex_lock(&root->fs_info->fs_mutex);
1972
1973 /* we dropped the lock, check one more time */
Chris Masondb945352007-10-15 16:15:53 -04001974 ret = lookup_extent_ref(trans, root, bytenr,
1975 blocksize, &refs);
Chris Masone9d0b132007-08-10 14:06:19 -04001976 BUG_ON(ret);
1977 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05001978 parent = path->nodes[*level];
1979 root_owner = btrfs_header_owner(parent);
1980 root_gen = btrfs_header_generation(parent);
1981
Chris Masone9d0b132007-08-10 14:06:19 -04001982 path->slots[*level]++;
Chris Mason5f39d392007-10-15 16:14:19 -04001983 free_extent_buffer(next);
Chris Mason7bb86312007-12-11 09:25:06 -05001984 ret = btrfs_free_extent(trans, root, bytenr,
1985 blocksize,
1986 root_owner,
1987 root_gen, 0, 0, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04001988 BUG_ON(ret);
1989 continue;
1990 }
1991 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001992 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04001993 if (path->nodes[*level-1])
Chris Mason5f39d392007-10-15 16:14:19 -04001994 free_extent_buffer(path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05001995 path->nodes[*level-1] = next;
Chris Mason5f39d392007-10-15 16:14:19 -04001996 *level = btrfs_header_level(next);
Chris Mason20524f02007-03-10 06:35:47 -05001997 path->slots[*level] = 0;
1998 }
1999out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002000 WARN_ON(*level < 0);
2001 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason7bb86312007-12-11 09:25:06 -05002002
2003 if (path->nodes[*level] == root->node) {
2004 root_owner = root->root_key.objectid;
2005 parent = path->nodes[*level];
2006 } else {
2007 parent = path->nodes[*level + 1];
2008 root_owner = btrfs_header_owner(parent);
2009 }
2010
2011 root_gen = btrfs_header_generation(parent);
Chris Masondb945352007-10-15 16:15:53 -04002012 ret = btrfs_free_extent(trans, root, path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002013 path->nodes[*level]->len,
2014 root_owner, root_gen, 0, 0, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002015 free_extent_buffer(path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05002016 path->nodes[*level] = NULL;
2017 *level += 1;
2018 BUG_ON(ret);
2019 return 0;
2020}
2021
Chris Mason9aca1d52007-03-13 11:09:37 -04002022/*
2023 * helper for dropping snapshots. This walks back up the tree in the path
2024 * to find the first node higher up where we haven't yet gone through
2025 * all the slots
2026 */
Chris Mason98ed5172008-01-03 10:01:48 -05002027static int noinline walk_up_tree(struct btrfs_trans_handle *trans,
2028 struct btrfs_root *root,
2029 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002030{
Chris Mason7bb86312007-12-11 09:25:06 -05002031 u64 root_owner;
2032 u64 root_gen;
2033 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002034 int i;
2035 int slot;
2036 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04002037
Chris Mason234b63a2007-03-13 10:46:10 -04002038 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05002039 slot = path->slots[i];
Chris Mason5f39d392007-10-15 16:14:19 -04002040 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
2041 struct extent_buffer *node;
2042 struct btrfs_disk_key disk_key;
2043 node = path->nodes[i];
Chris Mason20524f02007-03-10 06:35:47 -05002044 path->slots[i]++;
2045 *level = i;
Chris Mason9f3a7422007-08-07 15:52:19 -04002046 WARN_ON(*level == 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002047 btrfs_node_key(node, &disk_key, path->slots[i]);
Chris Mason9f3a7422007-08-07 15:52:19 -04002048 memcpy(&root_item->drop_progress,
Chris Mason5f39d392007-10-15 16:14:19 -04002049 &disk_key, sizeof(disk_key));
Chris Mason9f3a7422007-08-07 15:52:19 -04002050 root_item->drop_level = i;
Chris Mason20524f02007-03-10 06:35:47 -05002051 return 0;
2052 } else {
Chris Mason7bb86312007-12-11 09:25:06 -05002053 if (path->nodes[*level] == root->node) {
2054 root_owner = root->root_key.objectid;
2055 root_gen =
2056 btrfs_header_generation(path->nodes[*level]);
2057 } else {
2058 struct extent_buffer *node;
2059 node = path->nodes[*level + 1];
2060 root_owner = btrfs_header_owner(node);
2061 root_gen = btrfs_header_generation(node);
2062 }
Chris Masone089f052007-03-16 16:20:31 -04002063 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002064 path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002065 path->nodes[*level]->len,
2066 root_owner, root_gen, 0, 0, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04002067 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002068 free_extent_buffer(path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04002069 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05002070 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05002071 }
2072 }
2073 return 1;
2074}
2075
Chris Mason9aca1d52007-03-13 11:09:37 -04002076/*
2077 * drop the reference count on the tree rooted at 'snap'. This traverses
2078 * the tree freeing any blocks that have a ref count of zero after being
2079 * decremented.
2080 */
Chris Masone089f052007-03-16 16:20:31 -04002081int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04002082 *root)
Chris Mason20524f02007-03-10 06:35:47 -05002083{
Chris Mason3768f362007-03-13 16:47:54 -04002084 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04002085 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05002086 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04002087 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05002088 int i;
2089 int orig_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002090 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002091
Chris Mason5caf2a02007-04-02 11:20:42 -04002092 path = btrfs_alloc_path();
2093 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05002094
Chris Mason5f39d392007-10-15 16:14:19 -04002095 level = btrfs_header_level(root->node);
Chris Mason20524f02007-03-10 06:35:47 -05002096 orig_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002097 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2098 path->nodes[level] = root->node;
Chris Masonf510cfe2007-10-15 16:14:48 -04002099 extent_buffer_get(root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -04002100 path->slots[level] = 0;
2101 } else {
2102 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002103 struct btrfs_disk_key found_key;
2104 struct extent_buffer *node;
Chris Mason6702ed42007-08-07 16:15:09 -04002105
Chris Mason9f3a7422007-08-07 15:52:19 -04002106 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Chris Mason6702ed42007-08-07 16:15:09 -04002107 level = root_item->drop_level;
2108 path->lowest_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002109 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason6702ed42007-08-07 16:15:09 -04002110 if (wret < 0) {
Chris Mason9f3a7422007-08-07 15:52:19 -04002111 ret = wret;
2112 goto out;
2113 }
Chris Mason5f39d392007-10-15 16:14:19 -04002114 node = path->nodes[level];
2115 btrfs_node_key(node, &found_key, path->slots[level]);
2116 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2117 sizeof(found_key)));
Chris Mason9f3a7422007-08-07 15:52:19 -04002118 }
Chris Mason20524f02007-03-10 06:35:47 -05002119 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002120 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002121 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002122 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002123 if (wret < 0)
2124 ret = wret;
2125
Chris Mason5caf2a02007-04-02 11:20:42 -04002126 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002127 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002128 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002129 if (wret < 0)
2130 ret = wret;
Chris Mason409eb952007-08-08 20:17:12 -04002131 ret = -EAGAIN;
Chris Mason409eb952007-08-08 20:17:12 -04002132 break;
Chris Mason20524f02007-03-10 06:35:47 -05002133 }
Chris Mason83e15a22007-03-12 09:03:27 -04002134 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002135 if (path->nodes[i]) {
Chris Mason5f39d392007-10-15 16:14:19 -04002136 free_extent_buffer(path->nodes[i]);
Chris Mason0f827312007-10-15 16:18:56 -04002137 path->nodes[i] = NULL;
Chris Mason83e15a22007-03-12 09:03:27 -04002138 }
Chris Mason20524f02007-03-10 06:35:47 -05002139 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002140out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002141 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04002142 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05002143}
Chris Mason9078a3e2007-04-26 16:46:15 -04002144
Chris Masonbe744172007-05-06 10:15:01 -04002145int btrfs_free_block_groups(struct btrfs_fs_info *info)
2146{
Chris Masonf510cfe2007-10-15 16:14:48 -04002147 u64 start;
2148 u64 end;
Yanb97f9202007-11-01 11:28:41 -04002149 u64 ptr;
Chris Mason96b51792007-10-15 16:15:19 -04002150 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04002151 while(1) {
2152 ret = find_first_extent_bit(&info->block_group_cache, 0,
2153 &start, &end, (unsigned int)-1);
2154 if (ret)
2155 break;
Yanb97f9202007-11-01 11:28:41 -04002156 ret = get_state_private(&info->block_group_cache, start, &ptr);
2157 if (!ret)
2158 kfree((void *)(unsigned long)ptr);
Chris Mason96b51792007-10-15 16:15:19 -04002159 clear_extent_bits(&info->block_group_cache, start,
2160 end, (unsigned int)-1, GFP_NOFS);
2161 }
Chris Masone37c9e62007-05-09 20:13:14 -04002162 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -04002163 ret = find_first_extent_bit(&info->free_space_cache, 0,
2164 &start, &end, EXTENT_DIRTY);
2165 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -04002166 break;
Chris Masonf510cfe2007-10-15 16:14:48 -04002167 clear_extent_dirty(&info->free_space_cache, start,
2168 end, GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04002169 }
Chris Masonbe744172007-05-06 10:15:01 -04002170 return 0;
2171}
2172
Chris Mason98ed5172008-01-03 10:01:48 -05002173static int noinline relocate_inode_pages(struct inode *inode, u64 start,
2174 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05002175{
2176 u64 page_start;
2177 u64 page_end;
2178 u64 delalloc_start;
2179 u64 existing_delalloc;
2180 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05002181 unsigned long i;
2182 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05002183 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05002184 struct file_ra_state *ra;
2185
2186 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002187
2188 mutex_lock(&inode->i_mutex);
Chris Mason4313b392008-01-03 09:08:48 -05002189 i = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05002190 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
2191
Chris Mason4313b392008-01-03 09:08:48 -05002192 file_ra_state_init(ra, inode->i_mapping);
2193 btrfs_force_ra(inode->i_mapping, ra, NULL, i, last_index);
2194 kfree(ra);
Chris Masonedbd8d42007-12-21 16:27:24 -05002195
Chris Mason4313b392008-01-03 09:08:48 -05002196 for (; i <= last_index; i++) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002197 page = grab_cache_page(inode->i_mapping, i);
2198 if (!page)
2199 goto out_unlock;
2200 if (!PageUptodate(page)) {
2201 btrfs_readpage(NULL, page);
2202 lock_page(page);
2203 if (!PageUptodate(page)) {
2204 unlock_page(page);
2205 page_cache_release(page);
2206 goto out_unlock;
2207 }
2208 }
2209 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2210 page_end = page_start + PAGE_CACHE_SIZE - 1;
2211
Chris Masond1310b22008-01-24 16:13:08 -05002212 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002213
2214 delalloc_start = page_start;
Chris Masond1310b22008-01-24 16:13:08 -05002215 existing_delalloc = count_range_bits(io_tree,
2216 &delalloc_start, page_end,
2217 PAGE_CACHE_SIZE, EXTENT_DELALLOC);
Chris Masonedbd8d42007-12-21 16:27:24 -05002218
Chris Masond1310b22008-01-24 16:13:08 -05002219 set_extent_delalloc(io_tree, page_start,
Chris Masonedbd8d42007-12-21 16:27:24 -05002220 page_end, GFP_NOFS);
2221
Chris Masond1310b22008-01-24 16:13:08 -05002222 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002223 set_page_dirty(page);
2224 unlock_page(page);
2225 page_cache_release(page);
2226 }
2227
2228out_unlock:
2229 mutex_unlock(&inode->i_mutex);
2230 return 0;
2231}
2232
Chris Mason4313b392008-01-03 09:08:48 -05002233/*
2234 * note, this releases the path
2235 */
Chris Mason98ed5172008-01-03 10:01:48 -05002236static int noinline relocate_one_reference(struct btrfs_root *extent_root,
Chris Masonedbd8d42007-12-21 16:27:24 -05002237 struct btrfs_path *path,
Chris Mason4313b392008-01-03 09:08:48 -05002238 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002239{
2240 struct inode *inode;
2241 struct btrfs_root *found_root;
Chris Mason4313b392008-01-03 09:08:48 -05002242 struct btrfs_key *root_location;
2243 struct btrfs_extent_ref *ref;
2244 u64 ref_root;
2245 u64 ref_gen;
2246 u64 ref_objectid;
2247 u64 ref_offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05002248 int ret;
2249
Chris Mason4313b392008-01-03 09:08:48 -05002250 ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
2251 struct btrfs_extent_ref);
2252 ref_root = btrfs_ref_root(path->nodes[0], ref);
2253 ref_gen = btrfs_ref_generation(path->nodes[0], ref);
2254 ref_objectid = btrfs_ref_objectid(path->nodes[0], ref);
2255 ref_offset = btrfs_ref_offset(path->nodes[0], ref);
2256 btrfs_release_path(extent_root, path);
2257
2258 root_location = kmalloc(sizeof(*root_location), GFP_NOFS);
2259 root_location->objectid = ref_root;
Chris Masonedbd8d42007-12-21 16:27:24 -05002260 if (ref_gen == 0)
Chris Mason4313b392008-01-03 09:08:48 -05002261 root_location->offset = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002262 else
Chris Mason4313b392008-01-03 09:08:48 -05002263 root_location->offset = (u64)-1;
2264 root_location->type = BTRFS_ROOT_ITEM_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05002265
2266 found_root = btrfs_read_fs_root_no_name(extent_root->fs_info,
Chris Mason4313b392008-01-03 09:08:48 -05002267 root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002268 BUG_ON(!found_root);
Chris Mason4313b392008-01-03 09:08:48 -05002269 kfree(root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002270
2271 if (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
2272 mutex_unlock(&extent_root->fs_info->fs_mutex);
2273 inode = btrfs_iget_locked(extent_root->fs_info->sb,
2274 ref_objectid, found_root);
2275 if (inode->i_state & I_NEW) {
2276 /* the inode and parent dir are two different roots */
2277 BTRFS_I(inode)->root = found_root;
2278 BTRFS_I(inode)->location.objectid = ref_objectid;
2279 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
2280 BTRFS_I(inode)->location.offset = 0;
2281 btrfs_read_locked_inode(inode);
2282 unlock_new_inode(inode);
2283
2284 }
2285 /* this can happen if the reference is not against
2286 * the latest version of the tree root
2287 */
2288 if (is_bad_inode(inode)) {
2289 mutex_lock(&extent_root->fs_info->fs_mutex);
2290 goto out;
2291 }
2292 relocate_inode_pages(inode, ref_offset, extent_key->offset);
2293 /* FIXME, data=ordered will help get rid of this */
2294 filemap_fdatawrite(inode->i_mapping);
2295 iput(inode);
2296 mutex_lock(&extent_root->fs_info->fs_mutex);
2297 } else {
2298 struct btrfs_trans_handle *trans;
2299 struct btrfs_key found_key;
2300 struct extent_buffer *eb;
2301 int level;
2302 int i;
2303
2304 trans = btrfs_start_transaction(found_root, 1);
2305 eb = read_tree_block(found_root, extent_key->objectid,
2306 extent_key->offset);
2307 level = btrfs_header_level(eb);
2308
2309 if (level == 0)
2310 btrfs_item_key_to_cpu(eb, &found_key, 0);
2311 else
2312 btrfs_node_key_to_cpu(eb, &found_key, 0);
2313
2314 free_extent_buffer(eb);
2315
2316 path->lowest_level = level;
Chris Mason8f662a72008-01-02 10:01:11 -05002317 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002318 ret = btrfs_search_slot(trans, found_root, &found_key, path,
2319 0, 1);
2320 path->lowest_level = 0;
2321 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2322 if (!path->nodes[i])
2323 break;
2324 free_extent_buffer(path->nodes[i]);
2325 path->nodes[i] = NULL;
2326 }
2327 btrfs_release_path(found_root, path);
2328 btrfs_end_transaction(trans, found_root);
2329 }
2330
2331out:
2332 return 0;
2333}
2334
Chris Mason98ed5172008-01-03 10:01:48 -05002335static int noinline relocate_one_extent(struct btrfs_root *extent_root,
2336 struct btrfs_path *path,
2337 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002338{
2339 struct btrfs_key key;
2340 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002341 struct extent_buffer *leaf;
Chris Masonedbd8d42007-12-21 16:27:24 -05002342 u32 nritems;
2343 u32 item_size;
2344 int ret = 0;
2345
2346 key.objectid = extent_key->objectid;
2347 key.type = BTRFS_EXTENT_REF_KEY;
2348 key.offset = 0;
2349
2350 while(1) {
2351 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2352
Chris Masonedbd8d42007-12-21 16:27:24 -05002353 if (ret < 0)
2354 goto out;
2355
2356 ret = 0;
2357 leaf = path->nodes[0];
2358 nritems = btrfs_header_nritems(leaf);
2359 if (path->slots[0] == nritems)
2360 goto out;
2361
2362 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2363 if (found_key.objectid != extent_key->objectid)
2364 break;
2365
2366 if (found_key.type != BTRFS_EXTENT_REF_KEY)
2367 break;
2368
2369 key.offset = found_key.offset + 1;
2370 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2371
Chris Mason4313b392008-01-03 09:08:48 -05002372 ret = relocate_one_reference(extent_root, path, extent_key);
Chris Masonedbd8d42007-12-21 16:27:24 -05002373 if (ret)
2374 goto out;
2375 }
2376 ret = 0;
2377out:
2378 btrfs_release_path(extent_root, path);
2379 return ret;
2380}
2381
Chris Masonedbd8d42007-12-21 16:27:24 -05002382int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 new_size)
2383{
2384 struct btrfs_trans_handle *trans;
2385 struct btrfs_root *tree_root = root->fs_info->tree_root;
2386 struct btrfs_path *path;
2387 u64 cur_byte;
2388 u64 total_found;
Chris Masonedbd8d42007-12-21 16:27:24 -05002389 struct btrfs_fs_info *info = root->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05002390 struct extent_io_tree *block_group_cache;
Chris Masonedbd8d42007-12-21 16:27:24 -05002391 struct btrfs_key key;
Yan73e48b22008-01-03 14:14:39 -05002392 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002393 struct extent_buffer *leaf;
2394 u32 nritems;
2395 int ret;
Chris Mason725c8462008-01-04 16:47:16 -05002396 int progress = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002397
2398 btrfs_set_super_total_bytes(&info->super_copy, new_size);
Chris Masonc31f8832008-01-08 15:46:31 -05002399 clear_extent_dirty(&info->free_space_cache, new_size, (u64)-1,
2400 GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002401 block_group_cache = &info->block_group_cache;
2402 path = btrfs_alloc_path();
2403 root = root->fs_info->extent_root;
Chris Mason8f662a72008-01-02 10:01:11 -05002404 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002405
2406again:
2407 total_found = 0;
2408 key.objectid = new_size;
Chris Masonedbd8d42007-12-21 16:27:24 -05002409 key.offset = 0;
2410 key.type = 0;
Yan73e48b22008-01-03 14:14:39 -05002411 cur_byte = key.objectid;
Chris Mason4313b392008-01-03 09:08:48 -05002412
Yan73e48b22008-01-03 14:14:39 -05002413 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2414 if (ret < 0)
2415 goto out;
2416
2417 ret = find_previous_extent(root, path);
2418 if (ret < 0)
2419 goto out;
2420 if (ret == 0) {
2421 leaf = path->nodes[0];
2422 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2423 if (found_key.objectid + found_key.offset > new_size) {
2424 cur_byte = found_key.objectid;
2425 key.objectid = cur_byte;
2426 }
2427 }
2428 btrfs_release_path(root, path);
2429
2430 while(1) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002431 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2432 if (ret < 0)
2433 goto out;
Yan73e48b22008-01-03 14:14:39 -05002434
Chris Masonedbd8d42007-12-21 16:27:24 -05002435 leaf = path->nodes[0];
Chris Masonedbd8d42007-12-21 16:27:24 -05002436 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05002437next:
2438 if (path->slots[0] >= nritems) {
2439 ret = btrfs_next_leaf(root, path);
2440 if (ret < 0)
2441 goto out;
2442 if (ret == 1) {
2443 ret = 0;
2444 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05002445 }
Yan73e48b22008-01-03 14:14:39 -05002446 leaf = path->nodes[0];
2447 nritems = btrfs_header_nritems(leaf);
2448 }
2449
2450 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason725c8462008-01-04 16:47:16 -05002451
2452 if (progress && need_resched()) {
2453 memcpy(&key, &found_key, sizeof(key));
2454 mutex_unlock(&root->fs_info->fs_mutex);
2455 cond_resched();
2456 mutex_lock(&root->fs_info->fs_mutex);
2457 btrfs_release_path(root, path);
2458 btrfs_search_slot(NULL, root, &key, path, 0, 0);
2459 progress = 0;
2460 goto next;
2461 }
2462 progress = 1;
2463
Yan73e48b22008-01-03 14:14:39 -05002464 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_ITEM_KEY ||
2465 found_key.objectid + found_key.offset <= cur_byte) {
2466 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05002467 goto next;
2468 }
Yan73e48b22008-01-03 14:14:39 -05002469
Chris Masonedbd8d42007-12-21 16:27:24 -05002470 total_found++;
2471 cur_byte = found_key.objectid + found_key.offset;
2472 key.objectid = cur_byte;
2473 btrfs_release_path(root, path);
2474 ret = relocate_one_extent(root, path, &found_key);
2475 }
2476
2477 btrfs_release_path(root, path);
2478
2479 if (total_found > 0) {
2480 trans = btrfs_start_transaction(tree_root, 1);
2481 btrfs_commit_transaction(trans, tree_root);
2482
2483 mutex_unlock(&root->fs_info->fs_mutex);
2484 btrfs_clean_old_snapshots(tree_root);
2485 mutex_lock(&root->fs_info->fs_mutex);
2486
2487 trans = btrfs_start_transaction(tree_root, 1);
2488 btrfs_commit_transaction(trans, tree_root);
2489 goto again;
2490 }
2491
2492 trans = btrfs_start_transaction(root, 1);
2493 key.objectid = new_size;
2494 key.offset = 0;
2495 key.type = 0;
2496 while(1) {
Chris Mason4313b392008-01-03 09:08:48 -05002497 u64 ptr;
2498
Chris Masonedbd8d42007-12-21 16:27:24 -05002499 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2500 if (ret < 0)
2501 goto out;
Yan73e48b22008-01-03 14:14:39 -05002502
Chris Masonedbd8d42007-12-21 16:27:24 -05002503 leaf = path->nodes[0];
2504 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05002505bg_next:
2506 if (path->slots[0] >= nritems) {
2507 ret = btrfs_next_leaf(root, path);
2508 if (ret < 0)
2509 break;
2510 if (ret == 1) {
2511 ret = 0;
2512 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05002513 }
Yan73e48b22008-01-03 14:14:39 -05002514 leaf = path->nodes[0];
Chris Mason1372f8e2008-01-04 09:34:54 -05002515 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2516
2517 /*
2518 * btrfs_next_leaf doesn't cow buffers, we have to
2519 * do the search again
2520 */
2521 memcpy(&key, &found_key, sizeof(key));
2522 btrfs_release_path(root, path);
Chris Mason725c8462008-01-04 16:47:16 -05002523 goto resched_check;
Yan73e48b22008-01-03 14:14:39 -05002524 }
2525
2526 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2527 if (btrfs_key_type(&found_key) != BTRFS_BLOCK_GROUP_ITEM_KEY) {
2528 printk("shrinker found key %Lu %u %Lu\n",
2529 found_key.objectid, found_key.type,
2530 found_key.offset);
2531 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05002532 goto bg_next;
2533 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002534 ret = get_state_private(&info->block_group_cache,
2535 found_key.objectid, &ptr);
2536 if (!ret)
2537 kfree((void *)(unsigned long)ptr);
2538
2539 clear_extent_bits(&info->block_group_cache, found_key.objectid,
2540 found_key.objectid + found_key.offset - 1,
2541 (unsigned int)-1, GFP_NOFS);
2542
2543 key.objectid = found_key.objectid + 1;
2544 btrfs_del_item(trans, root, path);
2545 btrfs_release_path(root, path);
Chris Mason725c8462008-01-04 16:47:16 -05002546resched_check:
2547 if (need_resched()) {
2548 mutex_unlock(&root->fs_info->fs_mutex);
2549 cond_resched();
2550 mutex_lock(&root->fs_info->fs_mutex);
2551 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002552 }
2553 clear_extent_dirty(&info->free_space_cache, new_size, (u64)-1,
2554 GFP_NOFS);
2555 btrfs_commit_transaction(trans, root);
2556out:
2557 btrfs_free_path(path);
2558 return ret;
2559}
2560
2561int btrfs_grow_extent_tree(struct btrfs_trans_handle *trans,
2562 struct btrfs_root *root, u64 new_size)
2563{
2564 struct btrfs_path *path;
2565 u64 nr = 0;
2566 u64 cur_byte;
2567 u64 old_size;
Chris Masonf9ef6602008-01-03 09:22:38 -05002568 unsigned long rem;
Chris Masonedbd8d42007-12-21 16:27:24 -05002569 struct btrfs_block_group_cache *cache;
2570 struct btrfs_block_group_item *item;
2571 struct btrfs_fs_info *info = root->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05002572 struct extent_io_tree *block_group_cache;
Chris Masonedbd8d42007-12-21 16:27:24 -05002573 struct btrfs_key key;
2574 struct extent_buffer *leaf;
2575 int ret;
2576 int bit;
2577
2578 old_size = btrfs_super_total_bytes(&info->super_copy);
2579 block_group_cache = &info->block_group_cache;
2580
2581 root = info->extent_root;
2582
2583 cache = btrfs_lookup_block_group(root->fs_info, old_size - 1);
2584
2585 cur_byte = cache->key.objectid + cache->key.offset;
2586 if (cur_byte >= new_size)
2587 goto set_size;
2588
2589 key.offset = BTRFS_BLOCK_GROUP_SIZE;
2590 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
2591
2592 path = btrfs_alloc_path();
2593 if (!path)
2594 return -ENOMEM;
2595
2596 while(cur_byte < new_size) {
2597 key.objectid = cur_byte;
2598 ret = btrfs_insert_empty_item(trans, root, path, &key,
2599 sizeof(struct btrfs_block_group_item));
2600 BUG_ON(ret);
2601 leaf = path->nodes[0];
2602 item = btrfs_item_ptr(leaf, path->slots[0],
2603 struct btrfs_block_group_item);
2604
2605 btrfs_set_disk_block_group_used(leaf, item, 0);
Chris Masonf9ef6602008-01-03 09:22:38 -05002606 div_long_long_rem(nr, 3, &rem);
2607 if (rem) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002608 btrfs_set_disk_block_group_flags(leaf, item,
2609 BTRFS_BLOCK_GROUP_DATA);
2610 } else {
2611 btrfs_set_disk_block_group_flags(leaf, item, 0);
2612 }
2613 nr++;
2614
2615 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2616 BUG_ON(!cache);
2617
2618 read_extent_buffer(leaf, &cache->item, (unsigned long)item,
2619 sizeof(cache->item));
2620
2621 memcpy(&cache->key, &key, sizeof(key));
2622 cache->cached = 0;
2623 cache->pinned = 0;
2624 cur_byte = key.objectid + key.offset;
2625 btrfs_release_path(root, path);
2626
2627 if (cache->item.flags & BTRFS_BLOCK_GROUP_DATA) {
2628 bit = BLOCK_GROUP_DATA;
2629 cache->data = BTRFS_BLOCK_GROUP_DATA;
2630 } else {
2631 bit = BLOCK_GROUP_METADATA;
2632 cache->data = 0;
2633 }
2634
2635 /* use EXTENT_LOCKED to prevent merging */
2636 set_extent_bits(block_group_cache, key.objectid,
2637 key.objectid + key.offset - 1,
2638 bit | EXTENT_LOCKED, GFP_NOFS);
2639 set_state_private(block_group_cache, key.objectid,
2640 (unsigned long)cache);
2641 }
2642 btrfs_free_path(path);
2643set_size:
2644 btrfs_set_super_total_bytes(&info->super_copy, new_size);
2645 return 0;
2646}
2647
Chris Mason9078a3e2007-04-26 16:46:15 -04002648int btrfs_read_block_groups(struct btrfs_root *root)
2649{
2650 struct btrfs_path *path;
2651 int ret;
2652 int err = 0;
Chris Mason96b51792007-10-15 16:15:19 -04002653 int bit;
Chris Mason9078a3e2007-04-26 16:46:15 -04002654 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04002655 struct btrfs_fs_info *info = root->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05002656 struct extent_io_tree *block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002657 struct btrfs_key key;
2658 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04002659 struct extent_buffer *leaf;
Chris Mason96b51792007-10-15 16:15:19 -04002660
2661 block_group_cache = &info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002662
Chris Masonbe744172007-05-06 10:15:01 -04002663 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04002664 key.objectid = 0;
Chris Masondb945352007-10-15 16:15:53 -04002665 key.offset = BTRFS_BLOCK_GROUP_SIZE;
Chris Mason9078a3e2007-04-26 16:46:15 -04002666 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
2667
2668 path = btrfs_alloc_path();
2669 if (!path)
2670 return -ENOMEM;
2671
2672 while(1) {
Chris Masonbe744172007-05-06 10:15:01 -04002673 ret = btrfs_search_slot(NULL, info->extent_root,
Chris Mason9078a3e2007-04-26 16:46:15 -04002674 &key, path, 0, 0);
2675 if (ret != 0) {
2676 err = ret;
2677 break;
2678 }
Chris Mason5f39d392007-10-15 16:14:19 -04002679 leaf = path->nodes[0];
2680 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason9078a3e2007-04-26 16:46:15 -04002681 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2682 if (!cache) {
2683 err = -1;
2684 break;
2685 }
Chris Mason3e1ad542007-05-07 20:03:49 -04002686
Chris Mason5f39d392007-10-15 16:14:19 -04002687 read_extent_buffer(leaf, &cache->item,
2688 btrfs_item_ptr_offset(leaf, path->slots[0]),
2689 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04002690 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Masone37c9e62007-05-09 20:13:14 -04002691 cache->cached = 0;
Yan324ae4d2007-11-16 14:57:08 -05002692 cache->pinned = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002693 key.objectid = found_key.objectid + found_key.offset;
2694 btrfs_release_path(root, path);
Chris Mason5f39d392007-10-15 16:14:19 -04002695
Chris Masonf84a8b32007-11-06 10:26:29 -05002696 if (cache->item.flags & BTRFS_BLOCK_GROUP_MIXED) {
2697 bit = BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA;
2698 cache->data = BTRFS_BLOCK_GROUP_MIXED;
2699 } else if (cache->item.flags & BTRFS_BLOCK_GROUP_DATA) {
Chris Mason96b51792007-10-15 16:15:19 -04002700 bit = BLOCK_GROUP_DATA;
Chris Masonf84a8b32007-11-06 10:26:29 -05002701 cache->data = BTRFS_BLOCK_GROUP_DATA;
Chris Mason96b51792007-10-15 16:15:19 -04002702 } else {
2703 bit = BLOCK_GROUP_METADATA;
2704 cache->data = 0;
Chris Mason31f3c992007-04-30 15:25:45 -04002705 }
Chris Mason96b51792007-10-15 16:15:19 -04002706
2707 /* use EXTENT_LOCKED to prevent merging */
2708 set_extent_bits(block_group_cache, found_key.objectid,
2709 found_key.objectid + found_key.offset - 1,
2710 bit | EXTENT_LOCKED, GFP_NOFS);
2711 set_state_private(block_group_cache, found_key.objectid,
Jens Axboeae2f5412007-10-19 09:22:59 -04002712 (unsigned long)cache);
Chris Mason96b51792007-10-15 16:15:19 -04002713
Chris Mason9078a3e2007-04-26 16:46:15 -04002714 if (key.objectid >=
Chris Masondb945352007-10-15 16:15:53 -04002715 btrfs_super_total_bytes(&info->super_copy))
Chris Mason9078a3e2007-04-26 16:46:15 -04002716 break;
2717 }
2718
2719 btrfs_free_path(path);
2720 return 0;
2721}