blob: 593011e5d455f8359667f91b163265ec0776cd8f [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
Zach Brownec6b9102007-07-11 10:00:37 -040018#include <linux/sched.h>
Chris Masonedbd8d42007-12-21 16:27:24 -050019#include <linux/pagemap.h>
Chris Mason74493f72007-12-11 09:25:06 -050020#include "hash.h"
Miguela5eb62e2008-04-11 15:45:51 -040021#include "crc32c.h"
Chris Masonfec577f2007-02-26 10:40:21 -050022#include "ctree.h"
23#include "disk-io.h"
24#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040025#include "transaction.h"
Chris Mason0b86a832008-03-24 15:01:56 -040026#include "volumes.h"
Chris Masonfec577f2007-02-26 10:40:21 -050027
Chris Mason0b86a832008-03-24 15:01:56 -040028#define BLOCK_GROUP_DATA EXTENT_WRITEBACK
Chris Mason96b51792007-10-15 16:15:19 -040029#define BLOCK_GROUP_METADATA EXTENT_UPTODATE
Chris Mason0b86a832008-03-24 15:01:56 -040030#define BLOCK_GROUP_SYSTEM EXTENT_NEW
31
Chris Mason96b51792007-10-15 16:15:19 -040032#define BLOCK_GROUP_DIRTY EXTENT_DIRTY
33
Chris Masone089f052007-03-16 16:20:31 -040034static int finish_current_insert(struct btrfs_trans_handle *trans, struct
35 btrfs_root *extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -040036static int del_pending_extents(struct btrfs_trans_handle *trans, struct
37 btrfs_root *extent_root);
Yand548ee52008-01-03 13:56:30 -050038
Chris Masonfec577f2007-02-26 10:40:21 -050039
Chris Masone37c9e62007-05-09 20:13:14 -040040static int cache_block_group(struct btrfs_root *root,
41 struct btrfs_block_group_cache *block_group)
42{
43 struct btrfs_path *path;
44 int ret;
45 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -040046 struct extent_buffer *leaf;
Chris Masond1310b22008-01-24 16:13:08 -050047 struct extent_io_tree *free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040048 int slot;
Chris Masone37c9e62007-05-09 20:13:14 -040049 u64 last = 0;
50 u64 hole_size;
Yan7d7d6062007-09-14 16:15:28 -040051 u64 first_free;
Chris Masone37c9e62007-05-09 20:13:14 -040052 int found = 0;
53
Chris Mason00f5c792007-11-30 10:09:33 -050054 if (!block_group)
55 return 0;
56
Chris Masone37c9e62007-05-09 20:13:14 -040057 root = root->fs_info->extent_root;
Chris Masonf510cfe2007-10-15 16:14:48 -040058 free_space_cache = &root->fs_info->free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040059
60 if (block_group->cached)
61 return 0;
Chris Masonf510cfe2007-10-15 16:14:48 -040062
Chris Masone37c9e62007-05-09 20:13:14 -040063 path = btrfs_alloc_path();
64 if (!path)
65 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -040066
Chris Mason2cc58cf2007-08-27 16:49:44 -040067 path->reada = 2;
Yan7d7d6062007-09-14 16:15:28 -040068 first_free = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040069 key.objectid = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040070 key.offset = 0;
71 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
72 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
73 if (ret < 0)
74 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -040075 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
Yand548ee52008-01-03 13:56:30 -050076 if (ret < 0)
77 return ret;
78 if (ret == 0) {
79 leaf = path->nodes[0];
80 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
81 if (key.objectid + key.offset > first_free)
82 first_free = key.objectid + key.offset;
83 }
Chris Masone37c9e62007-05-09 20:13:14 -040084 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -040085 leaf = path->nodes[0];
Chris Masone37c9e62007-05-09 20:13:14 -040086 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -040087 if (slot >= btrfs_header_nritems(leaf)) {
Chris Masone37c9e62007-05-09 20:13:14 -040088 ret = btrfs_next_leaf(root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -040089 if (ret < 0)
90 goto err;
Chris Masonde428b62007-05-18 13:28:27 -040091 if (ret == 0) {
Chris Masone37c9e62007-05-09 20:13:14 -040092 continue;
Chris Masonde428b62007-05-18 13:28:27 -040093 } else {
Chris Masone37c9e62007-05-09 20:13:14 -040094 break;
95 }
96 }
Chris Mason5f39d392007-10-15 16:14:19 -040097 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan7d7d6062007-09-14 16:15:28 -040098 if (key.objectid < block_group->key.objectid) {
Yan7d7d6062007-09-14 16:15:28 -040099 goto next;
100 }
Chris Masone37c9e62007-05-09 20:13:14 -0400101 if (key.objectid >= block_group->key.objectid +
102 block_group->key.offset) {
Yan7d7d6062007-09-14 16:15:28 -0400103 break;
104 }
105
106 if (btrfs_key_type(&key) == BTRFS_EXTENT_ITEM_KEY) {
107 if (!found) {
108 last = first_free;
109 found = 1;
Chris Masone37c9e62007-05-09 20:13:14 -0400110 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400111 if (key.objectid > last) {
112 hole_size = key.objectid - last;
113 set_extent_dirty(free_space_cache, last,
114 last + hole_size - 1,
115 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -0400116 }
Yan7d7d6062007-09-14 16:15:28 -0400117 last = key.objectid + key.offset;
Chris Masone37c9e62007-05-09 20:13:14 -0400118 }
Yan7d7d6062007-09-14 16:15:28 -0400119next:
Chris Masone37c9e62007-05-09 20:13:14 -0400120 path->slots[0]++;
121 }
122
Yan7d7d6062007-09-14 16:15:28 -0400123 if (!found)
124 last = first_free;
125 if (block_group->key.objectid +
126 block_group->key.offset > last) {
127 hole_size = block_group->key.objectid +
128 block_group->key.offset - last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400129 set_extent_dirty(free_space_cache, last,
130 last + hole_size - 1, GFP_NOFS);
Yan7d7d6062007-09-14 16:15:28 -0400131 }
Chris Masone37c9e62007-05-09 20:13:14 -0400132 block_group->cached = 1;
Chris Mason54aa1f42007-06-22 14:16:25 -0400133err:
Chris Masone37c9e62007-05-09 20:13:14 -0400134 btrfs_free_path(path);
135 return 0;
136}
137
Chris Mason5276aed2007-06-11 21:33:38 -0400138struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
139 btrfs_fs_info *info,
Chris Masondb945352007-10-15 16:15:53 -0400140 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400141{
Chris Masond1310b22008-01-24 16:13:08 -0500142 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -0400143 struct btrfs_block_group_cache *block_group = NULL;
144 u64 ptr;
145 u64 start;
146 u64 end;
Chris Masonbe744172007-05-06 10:15:01 -0400147 int ret;
148
Chris Mason96b51792007-10-15 16:15:19 -0400149 block_group_cache = &info->block_group_cache;
150 ret = find_first_extent_bit(block_group_cache,
Chris Masondb945352007-10-15 16:15:53 -0400151 bytenr, &start, &end,
Chris Mason0b86a832008-03-24 15:01:56 -0400152 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA |
153 BLOCK_GROUP_SYSTEM);
Chris Masonbe744172007-05-06 10:15:01 -0400154 if (ret) {
Chris Mason96b51792007-10-15 16:15:19 -0400155 return NULL;
Chris Masonbe744172007-05-06 10:15:01 -0400156 }
Chris Mason96b51792007-10-15 16:15:19 -0400157 ret = get_state_private(block_group_cache, start, &ptr);
158 if (ret)
159 return NULL;
160
Jens Axboeae2f5412007-10-19 09:22:59 -0400161 block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Yan5cf66422007-11-16 14:57:09 -0500162 if (block_group->key.objectid <= bytenr && bytenr <
Chris Mason96b51792007-10-15 16:15:19 -0400163 block_group->key.objectid + block_group->key.offset)
164 return block_group;
Chris Masonbe744172007-05-06 10:15:01 -0400165 return NULL;
166}
Chris Mason0b86a832008-03-24 15:01:56 -0400167
168static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
169{
Chris Mason593060d2008-03-25 16:50:33 -0400170 return (cache->flags & bits) == bits;
Chris Mason0b86a832008-03-24 15:01:56 -0400171}
172
173static int noinline find_search_start(struct btrfs_root *root,
Chris Mason98ed5172008-01-03 10:01:48 -0500174 struct btrfs_block_group_cache **cache_ret,
Chris Mason0b86a832008-03-24 15:01:56 -0400175 u64 *start_ret, int num, int data)
Chris Masone37c9e62007-05-09 20:13:14 -0400176{
Chris Masone37c9e62007-05-09 20:13:14 -0400177 int ret;
178 struct btrfs_block_group_cache *cache = *cache_ret;
Chris Masond7fc6402008-02-18 12:12:38 -0500179 struct extent_io_tree *free_space_cache;
Chris Mason7d1660d2008-03-24 15:02:03 -0400180 struct extent_state *state;
Chris Masone19caa52007-10-15 16:17:44 -0400181 u64 last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400182 u64 start = 0;
Chris Mason257d0ce2007-11-07 21:08:16 -0500183 u64 cache_miss = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500184 u64 total_fs_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -0400185 u64 search_start = *start_ret;
Chris Masonf84a8b32007-11-06 10:26:29 -0500186 int wrapped = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400187
Chris Mason0b86a832008-03-24 15:01:56 -0400188 if (!cache)
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500189 goto out;
Chris Masonc31f8832008-01-08 15:46:31 -0500190 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masond7fc6402008-02-18 12:12:38 -0500191 free_space_cache = &root->fs_info->free_space_cache;
192
Chris Masone37c9e62007-05-09 20:13:14 -0400193again:
Chris Mason54aa1f42007-06-22 14:16:25 -0400194 ret = cache_block_group(root, cache);
195 if (ret)
196 goto out;
Chris Masonf84a8b32007-11-06 10:26:29 -0500197
Chris Masone19caa52007-10-15 16:17:44 -0400198 last = max(search_start, cache->key.objectid);
Chris Mason0b86a832008-03-24 15:01:56 -0400199 if (!block_group_bits(cache, data)) {
200 goto new_group;
201 }
Chris Masone19caa52007-10-15 16:17:44 -0400202
Chris Mason7d1660d2008-03-24 15:02:03 -0400203 spin_lock_irq(&free_space_cache->lock);
204 state = find_first_extent_bit_state(free_space_cache, last, EXTENT_DIRTY);
Chris Masone37c9e62007-05-09 20:13:14 -0400205 while(1) {
Chris Mason7d1660d2008-03-24 15:02:03 -0400206 if (!state) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500207 if (!cache_miss)
208 cache_miss = last;
Chris Mason7d1660d2008-03-24 15:02:03 -0400209 spin_unlock_irq(&free_space_cache->lock);
Chris Masone19caa52007-10-15 16:17:44 -0400210 goto new_group;
211 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400212
Chris Mason7d1660d2008-03-24 15:02:03 -0400213 start = max(last, state->start);
214 last = state->end + 1;
Chris Mason257d0ce2007-11-07 21:08:16 -0500215 if (last - start < num) {
216 if (last == cache->key.objectid + cache->key.offset)
217 cache_miss = start;
Chris Mason7d1660d2008-03-24 15:02:03 -0400218 do {
219 state = extent_state_next(state);
220 } while(state && !(state->state & EXTENT_DIRTY));
Chris Masonf510cfe2007-10-15 16:14:48 -0400221 continue;
Chris Mason257d0ce2007-11-07 21:08:16 -0500222 }
Chris Mason7d1660d2008-03-24 15:02:03 -0400223 spin_unlock_irq(&free_space_cache->lock);
Chris Mason0b86a832008-03-24 15:01:56 -0400224 if (start + num > cache->key.objectid + cache->key.offset)
Chris Masone37c9e62007-05-09 20:13:14 -0400225 goto new_group;
Chris Masonc31f8832008-01-08 15:46:31 -0500226 if (start + num > total_fs_bytes)
227 goto new_group;
Chris Mason8790d502008-04-03 16:29:03 -0400228 if (!block_group_bits(cache, data)) {
Chris Mason611f0e02008-04-03 16:29:03 -0400229 printk("block group bits don't match %Lu %d\n", cache->flags, data);
Chris Mason8790d502008-04-03 16:29:03 -0400230 }
Chris Mason0b86a832008-03-24 15:01:56 -0400231 *start_ret = start;
232 return 0;
Chris Mason8790d502008-04-03 16:29:03 -0400233 }
234out:
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500235 cache = btrfs_lookup_block_group(root->fs_info, search_start);
236 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -0400237 printk("Unable to find block group for %Lu\n", search_start);
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500238 WARN_ON(1);
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500239 }
Chris Mason0b86a832008-03-24 15:01:56 -0400240 return -ENOSPC;
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;
Chris Masonf84a8b32007-11-06 10:26:29 -0500251 goto wrapped;
252 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500253 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -0400254 }
Chris Mason257d0ce2007-11-07 21:08:16 -0500255 if (cache_miss && !cache->cached) {
256 cache_block_group(root, cache);
257 last = cache_miss;
Chris Mason257d0ce2007-11-07 21:08:16 -0500258 cache = btrfs_lookup_block_group(root->fs_info, last);
259 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500260 cache = btrfs_find_block_group(root, cache, last, data, 0);
Chris Mason0e4de582007-11-26 10:55:49 -0500261 if (!cache)
262 goto no_cache;
Chris Masone37c9e62007-05-09 20:13:14 -0400263 *cache_ret = cache;
Chris Mason257d0ce2007-11-07 21:08:16 -0500264 cache_miss = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400265 goto again;
266}
267
Chris Mason84f54cf2007-06-12 07:43:08 -0400268static u64 div_factor(u64 num, int factor)
269{
Chris Mason257d0ce2007-11-07 21:08:16 -0500270 if (factor == 10)
271 return num;
Chris Mason84f54cf2007-06-12 07:43:08 -0400272 num *= factor;
273 do_div(num, 10);
274 return num;
275}
276
Chris Mason6324fbf2008-03-24 15:01:59 -0400277static int block_group_state_bits(u64 flags)
278{
279 int bits = 0;
280 if (flags & BTRFS_BLOCK_GROUP_DATA)
281 bits |= BLOCK_GROUP_DATA;
282 if (flags & BTRFS_BLOCK_GROUP_METADATA)
283 bits |= BLOCK_GROUP_METADATA;
284 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
285 bits |= BLOCK_GROUP_SYSTEM;
286 return bits;
287}
288
Chris Mason31f3c992007-04-30 15:25:45 -0400289struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
290 struct btrfs_block_group_cache
Chris Masonbe744172007-05-06 10:15:01 -0400291 *hint, u64 search_start,
Chris Masonde428b62007-05-18 13:28:27 -0400292 int data, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400293{
Chris Mason96b51792007-10-15 16:15:19 -0400294 struct btrfs_block_group_cache *cache;
Chris Masond1310b22008-01-24 16:13:08 -0500295 struct extent_io_tree *block_group_cache;
Chris Mason31f3c992007-04-30 15:25:45 -0400296 struct btrfs_block_group_cache *found_group = NULL;
Chris Masoncd1bc462007-04-27 10:08:34 -0400297 struct btrfs_fs_info *info = root->fs_info;
298 u64 used;
Chris Mason31f3c992007-04-30 15:25:45 -0400299 u64 last = 0;
300 u64 hint_last;
Chris Mason96b51792007-10-15 16:15:19 -0400301 u64 start;
302 u64 end;
303 u64 free_check;
304 u64 ptr;
Chris Masonc31f8832008-01-08 15:46:31 -0500305 u64 total_fs_bytes;
Chris Mason96b51792007-10-15 16:15:19 -0400306 int bit;
Chris Masoncd1bc462007-04-27 10:08:34 -0400307 int ret;
Chris Mason31f3c992007-04-30 15:25:45 -0400308 int full_search = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400309 int factor = 8;
310
Chris Mason96b51792007-10-15 16:15:19 -0400311 block_group_cache = &info->block_group_cache;
Chris Masonc31f8832008-01-08 15:46:31 -0500312 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Mason96b51792007-10-15 16:15:19 -0400313
Chris Masonde428b62007-05-18 13:28:27 -0400314 if (!owner)
Chris Masonf84a8b32007-11-06 10:26:29 -0500315 factor = 8;
Chris Masonbe744172007-05-06 10:15:01 -0400316
Chris Mason6324fbf2008-03-24 15:01:59 -0400317 bit = block_group_state_bits(data);
Chris Masonbe744172007-05-06 10:15:01 -0400318
Chris Masonc31f8832008-01-08 15:46:31 -0500319 if (search_start && search_start < total_fs_bytes) {
Chris Masonbe744172007-05-06 10:15:01 -0400320 struct btrfs_block_group_cache *shint;
Chris Mason5276aed2007-06-11 21:33:38 -0400321 shint = btrfs_lookup_block_group(info, search_start);
Chris Mason0b86a832008-03-24 15:01:56 -0400322 if (shint && block_group_bits(shint, data)) {
Chris Masonbe744172007-05-06 10:15:01 -0400323 used = btrfs_block_group_used(&shint->item);
Yan324ae4d2007-11-16 14:57:08 -0500324 if (used + shint->pinned <
325 div_factor(shint->key.offset, factor)) {
Chris Masonbe744172007-05-06 10:15:01 -0400326 return shint;
327 }
328 }
329 }
Chris Mason0b86a832008-03-24 15:01:56 -0400330 if (hint && block_group_bits(hint, data) &&
331 hint->key.objectid < total_fs_bytes) {
Chris Mason31f3c992007-04-30 15:25:45 -0400332 used = btrfs_block_group_used(&hint->item);
Yan324ae4d2007-11-16 14:57:08 -0500333 if (used + hint->pinned <
334 div_factor(hint->key.offset, factor)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400335 return hint;
336 }
Chris Masone19caa52007-10-15 16:17:44 -0400337 last = hint->key.objectid + hint->key.offset;
Chris Mason31f3c992007-04-30 15:25:45 -0400338 hint_last = last;
339 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400340 if (hint)
341 hint_last = max(hint->key.objectid, search_start);
342 else
343 hint_last = search_start;
344
Chris Masonc31f8832008-01-08 15:46:31 -0500345 if (hint_last >= total_fs_bytes)
346 hint_last = search_start;
Chris Masone37c9e62007-05-09 20:13:14 -0400347 last = hint_last;
Chris Mason31f3c992007-04-30 15:25:45 -0400348 }
Chris Mason31f3c992007-04-30 15:25:45 -0400349again:
Chris Masoncd1bc462007-04-27 10:08:34 -0400350 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400351 ret = find_first_extent_bit(block_group_cache, last,
352 &start, &end, bit);
353 if (ret)
Chris Masoncd1bc462007-04-27 10:08:34 -0400354 break;
Chris Mason96b51792007-10-15 16:15:19 -0400355
356 ret = get_state_private(block_group_cache, start, &ptr);
357 if (ret)
358 break;
359
Jens Axboeae2f5412007-10-19 09:22:59 -0400360 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400361 last = cache->key.objectid + cache->key.offset;
362 used = btrfs_block_group_used(&cache->item);
363
Chris Masonc31f8832008-01-08 15:46:31 -0500364 if (cache->key.objectid > total_fs_bytes)
365 break;
366
Chris Mason8790d502008-04-03 16:29:03 -0400367 if (block_group_bits(cache, data)) {
368 if (full_search)
369 free_check = cache->key.offset;
370 else
371 free_check = div_factor(cache->key.offset,
372 factor);
Chris Mason6324fbf2008-03-24 15:01:59 -0400373
Chris Mason8790d502008-04-03 16:29:03 -0400374 if (used + cache->pinned < free_check) {
375 found_group = cache;
376 goto found;
377 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400378 }
Chris Masonde428b62007-05-18 13:28:27 -0400379 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400380 }
Chris Mason31f3c992007-04-30 15:25:45 -0400381 if (!full_search) {
Chris Masonbe744172007-05-06 10:15:01 -0400382 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400383 full_search = 1;
384 goto again;
385 }
Chris Masonbe744172007-05-06 10:15:01 -0400386found:
Chris Mason31f3c992007-04-30 15:25:45 -0400387 return found_group;
Chris Masoncd1bc462007-04-27 10:08:34 -0400388}
389
Chris Mason7bb86312007-12-11 09:25:06 -0500390static u64 hash_extent_ref(u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500391 u64 owner, u64 owner_offset)
392{
393 u32 high_crc = ~(u32)0;
394 u32 low_crc = ~(u32)0;
395 __le64 lenum;
Chris Mason74493f72007-12-11 09:25:06 -0500396 lenum = cpu_to_le64(root_objectid);
Miguela5eb62e2008-04-11 15:45:51 -0400397 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
Chris Mason7bb86312007-12-11 09:25:06 -0500398 lenum = cpu_to_le64(ref_generation);
Miguela5eb62e2008-04-11 15:45:51 -0400399 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500400 if (owner >= BTRFS_FIRST_FREE_OBJECTID) {
401 lenum = cpu_to_le64(owner);
Miguela5eb62e2008-04-11 15:45:51 -0400402 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500403 lenum = cpu_to_le64(owner_offset);
Miguela5eb62e2008-04-11 15:45:51 -0400404 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500405 }
Chris Mason74493f72007-12-11 09:25:06 -0500406 return ((u64)high_crc << 32) | (u64)low_crc;
407}
408
Chris Mason7bb86312007-12-11 09:25:06 -0500409static int match_extent_ref(struct extent_buffer *leaf,
410 struct btrfs_extent_ref *disk_ref,
411 struct btrfs_extent_ref *cpu_ref)
412{
413 int ret;
414 int len;
415
416 if (cpu_ref->objectid)
417 len = sizeof(*cpu_ref);
418 else
419 len = 2 * sizeof(u64);
420 ret = memcmp_extent_buffer(leaf, cpu_ref, (unsigned long)disk_ref,
421 len);
422 return ret == 0;
423}
424
Chris Mason98ed5172008-01-03 10:01:48 -0500425static int noinline lookup_extent_backref(struct btrfs_trans_handle *trans,
426 struct btrfs_root *root,
427 struct btrfs_path *path, u64 bytenr,
428 u64 root_objectid,
429 u64 ref_generation, u64 owner,
430 u64 owner_offset, int del)
Chris Mason7bb86312007-12-11 09:25:06 -0500431{
432 u64 hash;
433 struct btrfs_key key;
434 struct btrfs_key found_key;
435 struct btrfs_extent_ref ref;
436 struct extent_buffer *leaf;
437 struct btrfs_extent_ref *disk_ref;
438 int ret;
439 int ret2;
440
441 btrfs_set_stack_ref_root(&ref, root_objectid);
442 btrfs_set_stack_ref_generation(&ref, ref_generation);
443 btrfs_set_stack_ref_objectid(&ref, owner);
444 btrfs_set_stack_ref_offset(&ref, owner_offset);
445
446 hash = hash_extent_ref(root_objectid, ref_generation, owner,
447 owner_offset);
448 key.offset = hash;
449 key.objectid = bytenr;
450 key.type = BTRFS_EXTENT_REF_KEY;
451
452 while (1) {
453 ret = btrfs_search_slot(trans, root, &key, path,
454 del ? -1 : 0, del);
455 if (ret < 0)
456 goto out;
457 leaf = path->nodes[0];
458 if (ret != 0) {
459 u32 nritems = btrfs_header_nritems(leaf);
460 if (path->slots[0] >= nritems) {
461 ret2 = btrfs_next_leaf(root, path);
462 if (ret2)
463 goto out;
464 leaf = path->nodes[0];
465 }
466 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
467 if (found_key.objectid != bytenr ||
468 found_key.type != BTRFS_EXTENT_REF_KEY)
469 goto out;
470 key.offset = found_key.offset;
471 if (del) {
472 btrfs_release_path(root, path);
473 continue;
474 }
475 }
476 disk_ref = btrfs_item_ptr(path->nodes[0],
477 path->slots[0],
478 struct btrfs_extent_ref);
479 if (match_extent_ref(path->nodes[0], disk_ref, &ref)) {
480 ret = 0;
481 goto out;
482 }
483 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
484 key.offset = found_key.offset + 1;
485 btrfs_release_path(root, path);
486 }
487out:
488 return ret;
489}
490
Chris Masond8d5f3e2007-12-11 12:42:00 -0500491/*
492 * Back reference rules. Back refs have three main goals:
493 *
494 * 1) differentiate between all holders of references to an extent so that
495 * when a reference is dropped we can make sure it was a valid reference
496 * before freeing the extent.
497 *
498 * 2) Provide enough information to quickly find the holders of an extent
499 * if we notice a given block is corrupted or bad.
500 *
501 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
502 * maintenance. This is actually the same as #2, but with a slightly
503 * different use case.
504 *
505 * File extents can be referenced by:
506 *
507 * - multiple snapshots, subvolumes, or different generations in one subvol
508 * - different files inside a single subvolume (in theory, not implemented yet)
509 * - different offsets inside a file (bookend extents in file.c)
510 *
511 * The extent ref structure has fields for:
512 *
513 * - Objectid of the subvolume root
514 * - Generation number of the tree holding the reference
515 * - objectid of the file holding the reference
516 * - offset in the file corresponding to the key holding the reference
517 *
518 * When a file extent is allocated the fields are filled in:
519 * (root_key.objectid, trans->transid, inode objectid, offset in file)
520 *
521 * When a leaf is cow'd new references are added for every file extent found
522 * in the leaf. It looks the same as the create case, but trans->transid
523 * will be different when the block is cow'd.
524 *
525 * (root_key.objectid, trans->transid, inode objectid, offset in file)
526 *
527 * When a file extent is removed either during snapshot deletion or file
528 * truncation, the corresponding back reference is found
529 * by searching for:
530 *
531 * (btrfs_header_owner(leaf), btrfs_header_generation(leaf),
532 * inode objectid, offset in file)
533 *
534 * Btree extents can be referenced by:
535 *
536 * - Different subvolumes
537 * - Different generations of the same subvolume
538 *
539 * Storing sufficient information for a full reverse mapping of a btree
540 * block would require storing the lowest key of the block in the backref,
541 * and it would require updating that lowest key either before write out or
542 * every time it changed. Instead, the objectid of the lowest key is stored
543 * along with the level of the tree block. This provides a hint
544 * about where in the btree the block can be found. Searches through the
545 * btree only need to look for a pointer to that block, so they stop one
546 * level higher than the level recorded in the backref.
547 *
548 * Some btrees do not do reference counting on their extents. These
549 * include the extent tree and the tree of tree roots. Backrefs for these
550 * trees always have a generation of zero.
551 *
552 * When a tree block is created, back references are inserted:
553 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500554 * (root->root_key.objectid, trans->transid or zero, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500555 *
556 * When a tree block is cow'd in a reference counted root,
557 * new back references are added for all the blocks it points to.
558 * These are of the form (trans->transid will have increased since creation):
559 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500560 * (root->root_key.objectid, trans->transid, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500561 *
562 * Because the lowest_key_objectid and the level are just hints
563 * they are not used when backrefs are deleted. When a backref is deleted:
564 *
565 * if backref was for a tree root:
566 * root_objectid = root->root_key.objectid
567 * else
568 * root_objectid = btrfs_header_owner(parent)
569 *
570 * (root_objectid, btrfs_header_generation(parent) or zero, 0, 0)
571 *
572 * Back Reference Key hashing:
573 *
574 * Back references have four fields, each 64 bits long. Unfortunately,
575 * This is hashed into a single 64 bit number and placed into the key offset.
576 * The key objectid corresponds to the first byte in the extent, and the
577 * key type is set to BTRFS_EXTENT_REF_KEY
578 */
Chris Mason7bb86312007-12-11 09:25:06 -0500579int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
580 struct btrfs_root *root,
581 struct btrfs_path *path, u64 bytenr,
582 u64 root_objectid, u64 ref_generation,
583 u64 owner, u64 owner_offset)
Chris Mason74493f72007-12-11 09:25:06 -0500584{
585 u64 hash;
586 struct btrfs_key key;
587 struct btrfs_extent_ref ref;
Chris Mason7bb86312007-12-11 09:25:06 -0500588 struct btrfs_extent_ref *disk_ref;
Chris Mason74493f72007-12-11 09:25:06 -0500589 int ret;
590
591 btrfs_set_stack_ref_root(&ref, root_objectid);
Chris Mason7bb86312007-12-11 09:25:06 -0500592 btrfs_set_stack_ref_generation(&ref, ref_generation);
Chris Mason74493f72007-12-11 09:25:06 -0500593 btrfs_set_stack_ref_objectid(&ref, owner);
594 btrfs_set_stack_ref_offset(&ref, owner_offset);
595
Chris Mason7bb86312007-12-11 09:25:06 -0500596 hash = hash_extent_ref(root_objectid, ref_generation, owner,
597 owner_offset);
Chris Mason74493f72007-12-11 09:25:06 -0500598 key.offset = hash;
599 key.objectid = bytenr;
600 key.type = BTRFS_EXTENT_REF_KEY;
601
602 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(ref));
603 while (ret == -EEXIST) {
Chris Mason7bb86312007-12-11 09:25:06 -0500604 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
605 struct btrfs_extent_ref);
606 if (match_extent_ref(path->nodes[0], disk_ref, &ref))
607 goto out;
608 key.offset++;
609 btrfs_release_path(root, path);
610 ret = btrfs_insert_empty_item(trans, root, path, &key,
611 sizeof(ref));
Chris Mason74493f72007-12-11 09:25:06 -0500612 }
Chris Mason7bb86312007-12-11 09:25:06 -0500613 if (ret)
614 goto out;
615 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
616 struct btrfs_extent_ref);
617 write_extent_buffer(path->nodes[0], &ref, (unsigned long)disk_ref,
618 sizeof(ref));
619 btrfs_mark_buffer_dirty(path->nodes[0]);
620out:
621 btrfs_release_path(root, path);
622 return ret;
Chris Mason74493f72007-12-11 09:25:06 -0500623}
624
Chris Masonb18c6682007-04-17 13:26:50 -0400625int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
626 struct btrfs_root *root,
Chris Mason74493f72007-12-11 09:25:06 -0500627 u64 bytenr, u64 num_bytes,
Chris Mason7bb86312007-12-11 09:25:06 -0500628 u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500629 u64 owner, u64 owner_offset)
Chris Mason02217ed2007-03-02 16:08:05 -0500630{
Chris Mason5caf2a02007-04-02 11:20:42 -0400631 struct btrfs_path *path;
Chris Mason02217ed2007-03-02 16:08:05 -0500632 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400633 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400634 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400635 struct btrfs_extent_item *item;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400636 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500637
Chris Masondb945352007-10-15 16:15:53 -0400638 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400639 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400640 if (!path)
641 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -0400642
Chris Masonb0331a42008-01-08 15:46:31 -0500643 path->reada = 0;
Chris Masondb945352007-10-15 16:15:53 -0400644 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -0400645 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -0400646 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -0400647 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400648 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400649 if (ret < 0)
650 return ret;
Chris Masona429e512007-04-18 16:15:28 -0400651 if (ret != 0) {
Chris Masona28ec192007-03-06 20:08:01 -0500652 BUG();
Chris Masona429e512007-04-18 16:15:28 -0400653 }
Chris Mason02217ed2007-03-02 16:08:05 -0500654 BUG_ON(ret != 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400655 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400656 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400657 refs = btrfs_extent_refs(l, item);
658 btrfs_set_extent_refs(l, item, refs + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -0400659 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masona28ec192007-03-06 20:08:01 -0500660
Chris Mason5caf2a02007-04-02 11:20:42 -0400661 btrfs_release_path(root->fs_info->extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -0500662
Chris Masonb0331a42008-01-08 15:46:31 -0500663 path->reada = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500664 ret = btrfs_insert_extent_backref(trans, root->fs_info->extent_root,
665 path, bytenr, root_objectid,
666 ref_generation, owner, owner_offset);
667 BUG_ON(ret);
Chris Mason9f5fae22007-03-20 14:38:32 -0400668 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400669 del_pending_extents(trans, root->fs_info->extent_root);
Chris Mason74493f72007-12-11 09:25:06 -0500670
671 btrfs_free_path(path);
Chris Mason02217ed2007-03-02 16:08:05 -0500672 return 0;
673}
674
Chris Masone9d0b132007-08-10 14:06:19 -0400675int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
676 struct btrfs_root *root)
677{
678 finish_current_insert(trans, root->fs_info->extent_root);
679 del_pending_extents(trans, root->fs_info->extent_root);
680 return 0;
681}
682
Chris Masonb18c6682007-04-17 13:26:50 -0400683static int lookup_extent_ref(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -0400684 struct btrfs_root *root, u64 bytenr,
685 u64 num_bytes, u32 *refs)
Chris Masona28ec192007-03-06 20:08:01 -0500686{
Chris Mason5caf2a02007-04-02 11:20:42 -0400687 struct btrfs_path *path;
Chris Masona28ec192007-03-06 20:08:01 -0500688 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400689 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400690 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400691 struct btrfs_extent_item *item;
Chris Mason5caf2a02007-04-02 11:20:42 -0400692
Chris Masondb945352007-10-15 16:15:53 -0400693 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400694 path = btrfs_alloc_path();
Chris Masonb0331a42008-01-08 15:46:31 -0500695 path->reada = 0;
Chris Masondb945352007-10-15 16:15:53 -0400696 key.objectid = bytenr;
697 key.offset = num_bytes;
Chris Mason62e27492007-03-15 12:56:47 -0400698 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5caf2a02007-04-02 11:20:42 -0400699 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400700 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400701 if (ret < 0)
702 goto out;
Chris Mason5f39d392007-10-15 16:14:19 -0400703 if (ret != 0) {
704 btrfs_print_leaf(root, path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400705 printk("failed to find block number %Lu\n", bytenr);
Chris Masona28ec192007-03-06 20:08:01 -0500706 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -0400707 }
708 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400709 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400710 *refs = btrfs_extent_refs(l, item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400711out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400712 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -0500713 return 0;
714}
715
Chris Masonbe20aa92007-12-17 20:14:01 -0500716u32 btrfs_count_snapshots_in_path(struct btrfs_root *root,
717 struct btrfs_path *count_path,
718 u64 first_extent)
719{
720 struct btrfs_root *extent_root = root->fs_info->extent_root;
721 struct btrfs_path *path;
722 u64 bytenr;
723 u64 found_objectid;
Chris Mason56b453c2008-01-03 09:08:27 -0500724 u64 root_objectid = root->root_key.objectid;
Chris Masonbe20aa92007-12-17 20:14:01 -0500725 u32 total_count = 0;
726 u32 cur_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500727 u32 nritems;
728 int ret;
729 struct btrfs_key key;
730 struct btrfs_key found_key;
731 struct extent_buffer *l;
732 struct btrfs_extent_item *item;
733 struct btrfs_extent_ref *ref_item;
734 int level = -1;
735
736 path = btrfs_alloc_path();
737again:
738 if (level == -1)
739 bytenr = first_extent;
740 else
741 bytenr = count_path->nodes[level]->start;
742
743 cur_count = 0;
744 key.objectid = bytenr;
745 key.offset = 0;
746
747 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
748 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
749 if (ret < 0)
750 goto out;
751 BUG_ON(ret == 0);
752
753 l = path->nodes[0];
754 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
755
756 if (found_key.objectid != bytenr ||
757 found_key.type != BTRFS_EXTENT_ITEM_KEY) {
758 goto out;
759 }
760
761 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Masonbe20aa92007-12-17 20:14:01 -0500762 while (1) {
Chris Masonbd098352008-01-03 13:23:19 -0500763 l = path->nodes[0];
Chris Masonbe20aa92007-12-17 20:14:01 -0500764 nritems = btrfs_header_nritems(l);
765 if (path->slots[0] >= nritems) {
766 ret = btrfs_next_leaf(extent_root, path);
767 if (ret == 0)
768 continue;
769 break;
770 }
771 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
772 if (found_key.objectid != bytenr)
773 break;
Chris Masonbd098352008-01-03 13:23:19 -0500774
Chris Masonbe20aa92007-12-17 20:14:01 -0500775 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
776 path->slots[0]++;
777 continue;
778 }
779
780 cur_count++;
781 ref_item = btrfs_item_ptr(l, path->slots[0],
782 struct btrfs_extent_ref);
783 found_objectid = btrfs_ref_root(l, ref_item);
784
Chris Mason56b453c2008-01-03 09:08:27 -0500785 if (found_objectid != root_objectid) {
786 total_count = 2;
Chris Mason4313b392008-01-03 09:08:48 -0500787 goto out;
Chris Mason56b453c2008-01-03 09:08:27 -0500788 }
789 total_count = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500790 path->slots[0]++;
791 }
792 if (cur_count == 0) {
793 total_count = 0;
794 goto out;
795 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500796 if (level >= 0 && root->node == count_path->nodes[level])
797 goto out;
798 level++;
799 btrfs_release_path(root, path);
800 goto again;
801
802out:
803 btrfs_free_path(path);
804 return total_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500805}
Chris Masonc5739bb2007-04-10 09:27:04 -0400806int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -0500807 struct btrfs_root *root, u64 owner_objectid)
Chris Masonc5739bb2007-04-10 09:27:04 -0400808{
Chris Mason7bb86312007-12-11 09:25:06 -0500809 u64 generation;
810 u64 key_objectid;
811 u64 level;
812 u32 nritems;
813 struct btrfs_disk_key disk_key;
814
815 level = btrfs_header_level(root->node);
816 generation = trans->transid;
817 nritems = btrfs_header_nritems(root->node);
818 if (nritems > 0) {
819 if (level == 0)
820 btrfs_item_key(root->node, &disk_key, 0);
821 else
822 btrfs_node_key(root->node, &disk_key, 0);
823 key_objectid = btrfs_disk_key_objectid(&disk_key);
824 } else {
825 key_objectid = 0;
826 }
Chris Masondb945352007-10-15 16:15:53 -0400827 return btrfs_inc_extent_ref(trans, root, root->node->start,
Chris Mason7bb86312007-12-11 09:25:06 -0500828 root->node->len, owner_objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500829 generation, level, key_objectid);
Chris Masonc5739bb2007-04-10 09:27:04 -0400830}
831
Chris Masone089f052007-03-16 16:20:31 -0400832int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400833 struct extent_buffer *buf)
Chris Mason02217ed2007-03-02 16:08:05 -0500834{
Chris Masondb945352007-10-15 16:15:53 -0400835 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400836 u32 nritems;
837 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -0400838 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -0500839 int i;
Chris Masondb945352007-10-15 16:15:53 -0400840 int level;
Chris Mason6407bf62007-03-27 06:33:00 -0400841 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400842 int faili;
Chris Masona28ec192007-03-06 20:08:01 -0500843
Chris Mason3768f362007-03-13 16:47:54 -0400844 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500845 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400846
Chris Masondb945352007-10-15 16:15:53 -0400847 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400848 nritems = btrfs_header_nritems(buf);
849 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400850 if (level == 0) {
851 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400852 btrfs_item_key_to_cpu(buf, &key, i);
853 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -0400854 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400855 fi = btrfs_item_ptr(buf, i,
Chris Mason6407bf62007-03-27 06:33:00 -0400856 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400857 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason236454df2007-04-19 13:37:44 -0400858 BTRFS_FILE_EXTENT_INLINE)
859 continue;
Chris Masondb945352007-10-15 16:15:53 -0400860 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
861 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -0400862 continue;
Chris Masondb945352007-10-15 16:15:53 -0400863 ret = btrfs_inc_extent_ref(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500864 btrfs_file_extent_disk_num_bytes(buf, fi),
865 root->root_key.objectid, trans->transid,
866 key.objectid, key.offset);
Chris Mason54aa1f42007-06-22 14:16:25 -0400867 if (ret) {
868 faili = i;
869 goto fail;
870 }
Chris Mason6407bf62007-03-27 06:33:00 -0400871 } else {
Chris Masondb945352007-10-15 16:15:53 -0400872 bytenr = btrfs_node_blockptr(buf, i);
Chris Mason6caab482007-12-13 09:48:07 -0500873 btrfs_node_key_to_cpu(buf, &key, i);
Chris Masondb945352007-10-15 16:15:53 -0400874 ret = btrfs_inc_extent_ref(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500875 btrfs_level_size(root, level - 1),
876 root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500877 trans->transid,
878 level - 1, key.objectid);
Chris Mason54aa1f42007-06-22 14:16:25 -0400879 if (ret) {
880 faili = i;
881 goto fail;
882 }
Chris Mason6407bf62007-03-27 06:33:00 -0400883 }
Chris Mason02217ed2007-03-02 16:08:05 -0500884 }
885 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400886fail:
Chris Masonccd467d2007-06-28 15:57:36 -0400887 WARN_ON(1);
Chris Mason7bb86312007-12-11 09:25:06 -0500888#if 0
Chris Mason54aa1f42007-06-22 14:16:25 -0400889 for (i =0; i < faili; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400890 if (level == 0) {
891 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400892 btrfs_item_key_to_cpu(buf, &key, i);
893 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -0400894 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400895 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -0400896 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400897 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -0400898 BTRFS_FILE_EXTENT_INLINE)
899 continue;
Chris Masondb945352007-10-15 16:15:53 -0400900 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
901 if (disk_bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -0400902 continue;
Chris Masondb945352007-10-15 16:15:53 -0400903 err = btrfs_free_extent(trans, root, disk_bytenr,
904 btrfs_file_extent_disk_num_bytes(buf,
Chris Mason5f39d392007-10-15 16:14:19 -0400905 fi), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400906 BUG_ON(err);
907 } else {
Chris Masondb945352007-10-15 16:15:53 -0400908 bytenr = btrfs_node_blockptr(buf, i);
909 err = btrfs_free_extent(trans, root, bytenr,
910 btrfs_level_size(root, level - 1), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400911 BUG_ON(err);
912 }
913 }
Chris Mason7bb86312007-12-11 09:25:06 -0500914#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400915 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -0500916}
917
Chris Mason9078a3e2007-04-26 16:46:15 -0400918static int write_one_cache_group(struct btrfs_trans_handle *trans,
919 struct btrfs_root *root,
920 struct btrfs_path *path,
921 struct btrfs_block_group_cache *cache)
922{
923 int ret;
924 int pending_ret;
925 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400926 unsigned long bi;
927 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -0400928
Chris Mason9078a3e2007-04-26 16:46:15 -0400929 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400930 if (ret < 0)
931 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -0400932 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400933
934 leaf = path->nodes[0];
935 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
936 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
937 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -0400938 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400939fail:
Chris Mason9078a3e2007-04-26 16:46:15 -0400940 finish_current_insert(trans, extent_root);
941 pending_ret = del_pending_extents(trans, extent_root);
942 if (ret)
943 return ret;
944 if (pending_ret)
945 return pending_ret;
946 return 0;
947
948}
949
Chris Mason96b51792007-10-15 16:15:19 -0400950int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
951 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -0400952{
Chris Masond1310b22008-01-24 16:13:08 -0500953 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -0400954 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400955 int ret;
956 int err = 0;
957 int werr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -0400958 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -0400959 u64 last = 0;
960 u64 start;
961 u64 end;
962 u64 ptr;
Chris Mason9078a3e2007-04-26 16:46:15 -0400963
Chris Mason96b51792007-10-15 16:15:19 -0400964 block_group_cache = &root->fs_info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400965 path = btrfs_alloc_path();
966 if (!path)
967 return -ENOMEM;
968
969 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400970 ret = find_first_extent_bit(block_group_cache, last,
971 &start, &end, BLOCK_GROUP_DIRTY);
972 if (ret)
Chris Mason9078a3e2007-04-26 16:46:15 -0400973 break;
Chris Mason54aa1f42007-06-22 14:16:25 -0400974
Chris Mason96b51792007-10-15 16:15:19 -0400975 last = end + 1;
976 ret = get_state_private(block_group_cache, start, &ptr);
977 if (ret)
978 break;
Jens Axboeae2f5412007-10-19 09:22:59 -0400979 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400980 err = write_one_cache_group(trans, root,
981 path, cache);
982 /*
983 * if we fail to write the cache group, we want
984 * to keep it marked dirty in hopes that a later
985 * write will work
986 */
987 if (err) {
988 werr = err;
989 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -0400990 }
Chris Mason96b51792007-10-15 16:15:19 -0400991 clear_extent_bits(block_group_cache, start, end,
992 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -0400993 }
994 btrfs_free_path(path);
995 return werr;
996}
997
Chris Mason6324fbf2008-03-24 15:01:59 -0400998static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
999 u64 flags)
1000{
1001 struct list_head *head = &info->space_info;
1002 struct list_head *cur;
1003 struct btrfs_space_info *found;
1004 list_for_each(cur, head) {
1005 found = list_entry(cur, struct btrfs_space_info, list);
1006 if (found->flags == flags)
1007 return found;
1008 }
1009 return NULL;
1010
1011}
1012
Chris Mason593060d2008-03-25 16:50:33 -04001013static int update_space_info(struct btrfs_fs_info *info, u64 flags,
1014 u64 total_bytes, u64 bytes_used,
1015 struct btrfs_space_info **space_info)
1016{
1017 struct btrfs_space_info *found;
1018
1019 found = __find_space_info(info, flags);
1020 if (found) {
1021 found->total_bytes += total_bytes;
1022 found->bytes_used += bytes_used;
1023 WARN_ON(found->total_bytes < found->bytes_used);
1024 *space_info = found;
1025 return 0;
1026 }
1027 found = kmalloc(sizeof(*found), GFP_NOFS);
1028 if (!found)
1029 return -ENOMEM;
1030
1031 list_add(&found->list, &info->space_info);
1032 found->flags = flags;
1033 found->total_bytes = total_bytes;
1034 found->bytes_used = bytes_used;
1035 found->bytes_pinned = 0;
1036 found->full = 0;
1037 *space_info = found;
1038 return 0;
1039}
1040
Chris Mason8790d502008-04-03 16:29:03 -04001041static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
1042{
1043 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
Chris Mason611f0e02008-04-03 16:29:03 -04001044 BTRFS_BLOCK_GROUP_RAID1 |
Chris Mason321aecc2008-04-16 10:49:51 -04001045 BTRFS_BLOCK_GROUP_RAID10 |
Chris Mason611f0e02008-04-03 16:29:03 -04001046 BTRFS_BLOCK_GROUP_DUP);
Chris Mason8790d502008-04-03 16:29:03 -04001047 if (extra_flags) {
1048 if (flags & BTRFS_BLOCK_GROUP_DATA)
1049 fs_info->avail_data_alloc_bits |= extra_flags;
1050 if (flags & BTRFS_BLOCK_GROUP_METADATA)
1051 fs_info->avail_metadata_alloc_bits |= extra_flags;
1052 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
1053 fs_info->avail_system_alloc_bits |= extra_flags;
1054 }
1055}
Chris Mason593060d2008-03-25 16:50:33 -04001056
Chris Mason6324fbf2008-03-24 15:01:59 -04001057static int do_chunk_alloc(struct btrfs_trans_handle *trans,
1058 struct btrfs_root *extent_root, u64 alloc_bytes,
1059 u64 flags)
1060{
1061 struct btrfs_space_info *space_info;
1062 u64 thresh;
1063 u64 start;
1064 u64 num_bytes;
1065 int ret;
1066
1067 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04001068 if (!space_info) {
1069 ret = update_space_info(extent_root->fs_info, flags,
1070 0, 0, &space_info);
1071 BUG_ON(ret);
1072 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001073 BUG_ON(!space_info);
1074
1075 if (space_info->full)
1076 return 0;
1077
Chris Mason8790d502008-04-03 16:29:03 -04001078 thresh = div_factor(space_info->total_bytes, 6);
Chris Mason6324fbf2008-03-24 15:01:59 -04001079 if ((space_info->bytes_used + space_info->bytes_pinned + alloc_bytes) <
1080 thresh)
1081 return 0;
1082
1083 ret = btrfs_alloc_chunk(trans, extent_root, &start, &num_bytes, flags);
1084 if (ret == -ENOSPC) {
1085printk("space info full %Lu\n", flags);
1086 space_info->full = 1;
1087 return 0;
1088 }
1089
1090 BUG_ON(ret);
1091
1092 ret = btrfs_make_block_group(trans, extent_root, 0, flags,
Chris Masone17cade2008-04-15 15:41:47 -04001093 BTRFS_FIRST_CHUNK_TREE_OBJECTID, start, num_bytes);
Chris Mason6324fbf2008-03-24 15:01:59 -04001094 BUG_ON(ret);
Chris Mason593060d2008-03-25 16:50:33 -04001095
Chris Mason6324fbf2008-03-24 15:01:59 -04001096 return 0;
1097}
1098
Chris Mason9078a3e2007-04-26 16:46:15 -04001099static int update_block_group(struct btrfs_trans_handle *trans,
1100 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -04001101 u64 bytenr, u64 num_bytes, int alloc,
Chris Mason0b86a832008-03-24 15:01:56 -04001102 int mark_free)
Chris Mason9078a3e2007-04-26 16:46:15 -04001103{
1104 struct btrfs_block_group_cache *cache;
1105 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001106 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001107 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04001108 u64 byte_in_group;
Chris Mason96b51792007-10-15 16:15:19 -04001109 u64 start;
1110 u64 end;
Chris Mason3e1ad542007-05-07 20:03:49 -04001111
Chris Mason9078a3e2007-04-26 16:46:15 -04001112 while(total) {
Chris Masondb945352007-10-15 16:15:53 -04001113 cache = btrfs_lookup_block_group(info, bytenr);
Chris Mason3e1ad542007-05-07 20:03:49 -04001114 if (!cache) {
Chris Mason9078a3e2007-04-26 16:46:15 -04001115 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -04001116 }
Chris Masondb945352007-10-15 16:15:53 -04001117 byte_in_group = bytenr - cache->key.objectid;
1118 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason96b51792007-10-15 16:15:19 -04001119 start = cache->key.objectid;
1120 end = start + cache->key.offset - 1;
1121 set_extent_bits(&info->block_group_cache, start, end,
1122 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001123
1124 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04001125 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04001126 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04001127 old_val += num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001128 cache->space_info->bytes_used += num_bytes;
Chris Masoncd1bc462007-04-27 10:08:34 -04001129 } else {
Chris Masondb945352007-10-15 16:15:53 -04001130 old_val -= num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001131 cache->space_info->bytes_used -= num_bytes;
Chris Masonf510cfe2007-10-15 16:14:48 -04001132 if (mark_free) {
1133 set_extent_dirty(&info->free_space_cache,
Chris Masondb945352007-10-15 16:15:53 -04001134 bytenr, bytenr + num_bytes - 1,
Chris Masonf510cfe2007-10-15 16:14:48 -04001135 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04001136 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001137 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001138 btrfs_set_block_group_used(&cache->item, old_val);
Chris Masondb945352007-10-15 16:15:53 -04001139 total -= num_bytes;
1140 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001141 }
1142 return 0;
1143}
Chris Mason6324fbf2008-03-24 15:01:59 -04001144
Yan324ae4d2007-11-16 14:57:08 -05001145static int update_pinned_extents(struct btrfs_root *root,
1146 u64 bytenr, u64 num, int pin)
1147{
1148 u64 len;
1149 struct btrfs_block_group_cache *cache;
1150 struct btrfs_fs_info *fs_info = root->fs_info;
1151
1152 if (pin) {
1153 set_extent_dirty(&fs_info->pinned_extents,
1154 bytenr, bytenr + num - 1, GFP_NOFS);
1155 } else {
1156 clear_extent_dirty(&fs_info->pinned_extents,
1157 bytenr, bytenr + num - 1, GFP_NOFS);
1158 }
1159 while (num > 0) {
1160 cache = btrfs_lookup_block_group(fs_info, bytenr);
1161 WARN_ON(!cache);
1162 len = min(num, cache->key.offset -
1163 (bytenr - cache->key.objectid));
1164 if (pin) {
1165 cache->pinned += len;
Chris Mason6324fbf2008-03-24 15:01:59 -04001166 cache->space_info->bytes_pinned += len;
Yan324ae4d2007-11-16 14:57:08 -05001167 fs_info->total_pinned += len;
1168 } else {
1169 cache->pinned -= len;
Chris Mason6324fbf2008-03-24 15:01:59 -04001170 cache->space_info->bytes_pinned -= len;
Yan324ae4d2007-11-16 14:57:08 -05001171 fs_info->total_pinned -= len;
1172 }
1173 bytenr += len;
1174 num -= len;
1175 }
1176 return 0;
1177}
Chris Mason9078a3e2007-04-26 16:46:15 -04001178
Chris Masond1310b22008-01-24 16:13:08 -05001179int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy)
Chris Masonccd467d2007-06-28 15:57:36 -04001180{
Chris Masonccd467d2007-06-28 15:57:36 -04001181 u64 last = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001182 u64 start;
1183 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001184 struct extent_io_tree *pinned_extents = &root->fs_info->pinned_extents;
Chris Masonccd467d2007-06-28 15:57:36 -04001185 int ret;
Chris Masonccd467d2007-06-28 15:57:36 -04001186
1187 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001188 ret = find_first_extent_bit(pinned_extents, last,
1189 &start, &end, EXTENT_DIRTY);
1190 if (ret)
Chris Masonccd467d2007-06-28 15:57:36 -04001191 break;
Chris Mason1a5bc162007-10-15 16:15:26 -04001192 set_extent_dirty(copy, start, end, GFP_NOFS);
1193 last = end + 1;
Chris Masonccd467d2007-06-28 15:57:36 -04001194 }
1195 return 0;
1196}
1197
1198int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1199 struct btrfs_root *root,
Chris Masond1310b22008-01-24 16:13:08 -05001200 struct extent_io_tree *unpin)
Chris Masona28ec192007-03-06 20:08:01 -05001201{
Chris Mason1a5bc162007-10-15 16:15:26 -04001202 u64 start;
1203 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05001204 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001205 struct extent_io_tree *free_space_cache;
Chris Masonf510cfe2007-10-15 16:14:48 -04001206 free_space_cache = &root->fs_info->free_space_cache;
Chris Masona28ec192007-03-06 20:08:01 -05001207
1208 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001209 ret = find_first_extent_bit(unpin, 0, &start, &end,
1210 EXTENT_DIRTY);
1211 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05001212 break;
Yan324ae4d2007-11-16 14:57:08 -05001213 update_pinned_extents(root, start, end + 1 - start, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001214 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1215 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
Chris Masona28ec192007-03-06 20:08:01 -05001216 }
1217 return 0;
1218}
1219
Chris Mason98ed5172008-01-03 10:01:48 -05001220static int finish_current_insert(struct btrfs_trans_handle *trans,
1221 struct btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -05001222{
Chris Mason7bb86312007-12-11 09:25:06 -05001223 u64 start;
1224 u64 end;
1225 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001226 struct extent_buffer *eb;
Chris Mason7bb86312007-12-11 09:25:06 -05001227 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001228 struct btrfs_key ins;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001229 struct btrfs_disk_key first;
Chris Mason234b63a2007-03-13 10:46:10 -04001230 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -05001231 int ret;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001232 int level;
Chris Mason1a5bc162007-10-15 16:15:26 -04001233 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001234
Chris Mason5f39d392007-10-15 16:14:19 -04001235 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason62e27492007-03-15 12:56:47 -04001236 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason7bb86312007-12-11 09:25:06 -05001237 path = btrfs_alloc_path();
Chris Mason037e6392007-03-07 11:50:24 -05001238
Chris Mason26b80032007-08-08 20:17:12 -04001239 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001240 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1241 &end, EXTENT_LOCKED);
1242 if (ret)
Chris Mason26b80032007-08-08 20:17:12 -04001243 break;
1244
Chris Mason1a5bc162007-10-15 16:15:26 -04001245 ins.objectid = start;
1246 ins.offset = end + 1 - start;
1247 err = btrfs_insert_item(trans, extent_root, &ins,
1248 &extent_item, sizeof(extent_item));
1249 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1250 GFP_NOFS);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001251 eb = read_tree_block(extent_root, ins.objectid, ins.offset);
1252 level = btrfs_header_level(eb);
1253 if (level == 0) {
1254 btrfs_item_key(eb, &first, 0);
1255 } else {
1256 btrfs_node_key(eb, &first, 0);
1257 }
Chris Mason7bb86312007-12-11 09:25:06 -05001258 err = btrfs_insert_extent_backref(trans, extent_root, path,
1259 start, extent_root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -05001260 0, level,
1261 btrfs_disk_key_objectid(&first));
Chris Mason7bb86312007-12-11 09:25:06 -05001262 BUG_ON(err);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001263 free_extent_buffer(eb);
Chris Mason037e6392007-03-07 11:50:24 -05001264 }
Chris Mason7bb86312007-12-11 09:25:06 -05001265 btrfs_free_path(path);
Chris Mason037e6392007-03-07 11:50:24 -05001266 return 0;
1267}
1268
Chris Masondb945352007-10-15 16:15:53 -04001269static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
1270 int pending)
Chris Masone20d96d2007-03-22 12:13:20 -04001271{
Chris Mason1a5bc162007-10-15 16:15:26 -04001272 int err = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001273 struct extent_buffer *buf;
Chris Mason78fae272007-03-25 11:35:08 -04001274
Chris Masonf4b9aa82007-03-27 11:05:53 -04001275 if (!pending) {
Chris Masondb945352007-10-15 16:15:53 -04001276 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -04001277 if (buf) {
1278 if (btrfs_buffer_uptodate(buf)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -04001279 u64 transid =
1280 root->fs_info->running_transaction->transid;
Chris Masondc17ff82008-01-08 15:46:30 -05001281 u64 header_transid =
1282 btrfs_header_generation(buf);
Chris Mason6bc34672008-04-04 15:40:00 -04001283 if (header_transid == transid &&
1284 !btrfs_header_flag(buf,
1285 BTRFS_HEADER_FLAG_WRITTEN)) {
Chris Mason55c69072008-01-09 15:55:33 -05001286 clean_tree_block(NULL, root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001287 free_extent_buffer(buf);
Yanc5492282007-11-06 10:25:25 -05001288 return 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001289 }
Chris Masonf4b9aa82007-03-27 11:05:53 -04001290 }
Chris Mason5f39d392007-10-15 16:14:19 -04001291 free_extent_buffer(buf);
Chris Mason8ef97622007-03-26 10:15:30 -04001292 }
Yan324ae4d2007-11-16 14:57:08 -05001293 update_pinned_extents(root, bytenr, num_bytes, 1);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001294 } else {
Chris Mason1a5bc162007-10-15 16:15:26 -04001295 set_extent_bits(&root->fs_info->pending_del,
Chris Masondb945352007-10-15 16:15:53 -04001296 bytenr, bytenr + num_bytes - 1,
1297 EXTENT_LOCKED, GFP_NOFS);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001298 }
Chris Masonbe744172007-05-06 10:15:01 -04001299 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001300 return 0;
1301}
1302
Chris Masona28ec192007-03-06 20:08:01 -05001303/*
1304 * remove an extent from the root, returns 0 on success
1305 */
Chris Masone089f052007-03-16 16:20:31 -04001306static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001307 *root, u64 bytenr, u64 num_bytes,
1308 u64 root_objectid, u64 ref_generation,
1309 u64 owner_objectid, u64 owner_offset, int pin,
Chris Masone37c9e62007-05-09 20:13:14 -04001310 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -05001311{
Chris Mason5caf2a02007-04-02 11:20:42 -04001312 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001313 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -04001314 struct btrfs_fs_info *info = root->fs_info;
1315 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001316 struct extent_buffer *leaf;
Chris Masona28ec192007-03-06 20:08:01 -05001317 int ret;
Chris Mason952fcca2008-02-18 16:33:44 -05001318 int extent_slot = 0;
1319 int found_extent = 0;
1320 int num_to_del = 1;
Chris Mason234b63a2007-03-13 10:46:10 -04001321 struct btrfs_extent_item *ei;
Chris Masoncf27e1e2007-03-13 09:49:06 -04001322 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -05001323
Chris Masondb945352007-10-15 16:15:53 -04001324 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -04001325 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -04001326 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001327 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001328 if (!path)
1329 return -ENOMEM;
1330
Chris Masonb0331a42008-01-08 15:46:31 -05001331 path->reada = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001332 ret = lookup_extent_backref(trans, extent_root, path,
1333 bytenr, root_objectid,
1334 ref_generation,
1335 owner_objectid, owner_offset, 1);
1336 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05001337 struct btrfs_key found_key;
1338 extent_slot = path->slots[0];
1339 while(extent_slot > 0) {
1340 extent_slot--;
1341 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1342 extent_slot);
1343 if (found_key.objectid != bytenr)
1344 break;
1345 if (found_key.type == BTRFS_EXTENT_ITEM_KEY &&
1346 found_key.offset == num_bytes) {
1347 found_extent = 1;
1348 break;
1349 }
1350 if (path->slots[0] - extent_slot > 5)
1351 break;
1352 }
1353 if (!found_extent)
1354 ret = btrfs_del_item(trans, extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -05001355 } else {
1356 btrfs_print_leaf(extent_root, path->nodes[0]);
1357 WARN_ON(1);
1358 printk("Unable to find ref byte nr %Lu root %Lu "
1359 " gen %Lu owner %Lu offset %Lu\n", bytenr,
1360 root_objectid, ref_generation, owner_objectid,
1361 owner_offset);
1362 }
Chris Mason952fcca2008-02-18 16:33:44 -05001363 if (!found_extent) {
1364 btrfs_release_path(extent_root, path);
1365 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
1366 if (ret < 0)
1367 return ret;
1368 BUG_ON(ret);
1369 extent_slot = path->slots[0];
1370 }
Chris Mason5f39d392007-10-15 16:14:19 -04001371
1372 leaf = path->nodes[0];
Chris Mason952fcca2008-02-18 16:33:44 -05001373 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04001374 struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001375 refs = btrfs_extent_refs(leaf, ei);
1376 BUG_ON(refs == 0);
1377 refs -= 1;
1378 btrfs_set_extent_refs(leaf, ei, refs);
Chris Mason952fcca2008-02-18 16:33:44 -05001379
Chris Mason5f39d392007-10-15 16:14:19 -04001380 btrfs_mark_buffer_dirty(leaf);
1381
Chris Mason952fcca2008-02-18 16:33:44 -05001382 if (refs == 0 && found_extent && path->slots[0] == extent_slot + 1) {
1383 /* if the back ref and the extent are next to each other
1384 * they get deleted below in one shot
1385 */
1386 path->slots[0] = extent_slot;
1387 num_to_del = 2;
1388 } else if (found_extent) {
1389 /* otherwise delete the extent back ref */
1390 ret = btrfs_del_item(trans, extent_root, path);
1391 BUG_ON(ret);
1392 /* if refs are 0, we need to setup the path for deletion */
1393 if (refs == 0) {
1394 btrfs_release_path(extent_root, path);
1395 ret = btrfs_search_slot(trans, extent_root, &key, path,
1396 -1, 1);
1397 if (ret < 0)
1398 return ret;
1399 BUG_ON(ret);
1400 }
1401 }
1402
Chris Masoncf27e1e2007-03-13 09:49:06 -04001403 if (refs == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001404 u64 super_used;
1405 u64 root_used;
Chris Mason78fae272007-03-25 11:35:08 -04001406
1407 if (pin) {
Chris Masondb945352007-10-15 16:15:53 -04001408 ret = pin_down_bytes(root, bytenr, num_bytes, 0);
Yanc5492282007-11-06 10:25:25 -05001409 if (ret > 0)
1410 mark_free = 1;
1411 BUG_ON(ret < 0);
Chris Mason78fae272007-03-25 11:35:08 -04001412 }
1413
Josef Bacik58176a92007-08-29 15:47:34 -04001414 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001415 super_used = btrfs_super_bytes_used(&info->super_copy);
1416 btrfs_set_super_bytes_used(&info->super_copy,
1417 super_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001418
1419 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001420 root_used = btrfs_root_used(&root->root_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001421 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -04001422 root_used - num_bytes);
Chris Mason952fcca2008-02-18 16:33:44 -05001423 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
1424 num_to_del);
Chris Mason54aa1f42007-06-22 14:16:25 -04001425 if (ret) {
1426 return ret;
1427 }
Chris Masondb945352007-10-15 16:15:53 -04001428 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001429 mark_free);
Chris Mason9078a3e2007-04-26 16:46:15 -04001430 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05001431 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001432 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001433 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -05001434 return ret;
1435}
1436
1437/*
Chris Masonfec577f2007-02-26 10:40:21 -05001438 * find all the blocks marked as pending in the radix tree and remove
1439 * them from the extent map
1440 */
Chris Masone089f052007-03-16 16:20:31 -04001441static int del_pending_extents(struct btrfs_trans_handle *trans, struct
1442 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -05001443{
1444 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001445 int err = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001446 u64 start;
1447 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001448 struct extent_io_tree *pending_del;
1449 struct extent_io_tree *pinned_extents;
Chris Mason8ef97622007-03-26 10:15:30 -04001450
Chris Mason1a5bc162007-10-15 16:15:26 -04001451 pending_del = &extent_root->fs_info->pending_del;
1452 pinned_extents = &extent_root->fs_info->pinned_extents;
Chris Masonfec577f2007-02-26 10:40:21 -05001453
1454 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001455 ret = find_first_extent_bit(pending_del, 0, &start, &end,
1456 EXTENT_LOCKED);
1457 if (ret)
Chris Masonfec577f2007-02-26 10:40:21 -05001458 break;
Yan324ae4d2007-11-16 14:57:08 -05001459 update_pinned_extents(extent_root, start, end + 1 - start, 1);
Chris Mason1a5bc162007-10-15 16:15:26 -04001460 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
1461 GFP_NOFS);
1462 ret = __free_extent(trans, extent_root,
Chris Mason7bb86312007-12-11 09:25:06 -05001463 start, end + 1 - start,
1464 extent_root->root_key.objectid,
1465 0, 0, 0, 0, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001466 if (ret)
1467 err = ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001468 }
Chris Masone20d96d2007-03-22 12:13:20 -04001469 return err;
Chris Masonfec577f2007-02-26 10:40:21 -05001470}
1471
1472/*
1473 * remove an extent from the root, returns 0 on success
1474 */
Chris Masone089f052007-03-16 16:20:31 -04001475int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001476 *root, u64 bytenr, u64 num_bytes,
1477 u64 root_objectid, u64 ref_generation,
1478 u64 owner_objectid, u64 owner_offset, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -05001479{
Chris Mason9f5fae22007-03-20 14:38:32 -04001480 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -05001481 int pending_ret;
1482 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05001483
Chris Masondb945352007-10-15 16:15:53 -04001484 WARN_ON(num_bytes < root->sectorsize);
Chris Mason7bb86312007-12-11 09:25:06 -05001485 if (!root->ref_cows)
1486 ref_generation = 0;
1487
Chris Masona28ec192007-03-06 20:08:01 -05001488 if (root == extent_root) {
Chris Masondb945352007-10-15 16:15:53 -04001489 pin_down_bytes(root, bytenr, num_bytes, 1);
Chris Masona28ec192007-03-06 20:08:01 -05001490 return 0;
1491 }
Chris Mason7bb86312007-12-11 09:25:06 -05001492 ret = __free_extent(trans, root, bytenr, num_bytes, root_objectid,
1493 ref_generation, owner_objectid, owner_offset,
1494 pin, pin == 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001495 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -05001496 return ret ? ret : pending_ret;
1497}
1498
Chris Mason87ee04e2007-11-30 11:30:34 -05001499static u64 stripe_align(struct btrfs_root *root, u64 val)
1500{
1501 u64 mask = ((u64)root->stripesize - 1);
1502 u64 ret = (val + mask) & ~mask;
1503 return ret;
1504}
1505
Chris Masonfec577f2007-02-26 10:40:21 -05001506/*
1507 * walks the btree of allocated extents and find a hole of a given size.
1508 * The key ins is changed to record the hole:
1509 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04001510 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05001511 * ins->offset == number of blocks
1512 * Any available blocks before search_start are skipped.
1513 */
Chris Mason98ed5172008-01-03 10:01:48 -05001514static int noinline find_free_extent(struct btrfs_trans_handle *trans,
1515 struct btrfs_root *orig_root,
1516 u64 num_bytes, u64 empty_size,
1517 u64 search_start, u64 search_end,
1518 u64 hint_byte, struct btrfs_key *ins,
1519 u64 exclude_start, u64 exclude_nr,
1520 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001521{
Chris Mason87ee04e2007-11-30 11:30:34 -05001522 int ret;
Chris Masonbe744172007-05-06 10:15:01 -04001523 u64 orig_search_start = search_start;
Chris Mason9f5fae22007-03-20 14:38:32 -04001524 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -04001525 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001526 u64 total_needed = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04001527 u64 *last_ptr = NULL;
Chris Masonbe08c1b2007-05-03 09:06:49 -04001528 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -04001529 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -04001530 int wrapped = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001531 int empty_cluster = 2 * 1024 * 1024;
Chris Masonfec577f2007-02-26 10:40:21 -05001532
Chris Masondb945352007-10-15 16:15:53 -04001533 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04001534 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
1535
Chris Mason239b14b2008-03-24 15:02:07 -04001536 if (data & BTRFS_BLOCK_GROUP_METADATA) {
1537 last_ptr = &root->fs_info->last_alloc;
Chris Mason8790d502008-04-03 16:29:03 -04001538 empty_cluster = 256 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04001539 }
1540
1541 if ((data & BTRFS_BLOCK_GROUP_DATA) && btrfs_test_opt(root, SSD)) {
1542 last_ptr = &root->fs_info->last_data_alloc;
1543 }
1544
1545 if (last_ptr) {
1546 if (*last_ptr)
1547 hint_byte = *last_ptr;
1548 else {
1549 empty_size += empty_cluster;
1550 }
1551 }
1552
Chris Mason7f93bf82008-03-24 15:01:28 -04001553 if (search_end == (u64)-1)
1554 search_end = btrfs_super_total_bytes(&info->super_copy);
Chris Mason0b86a832008-03-24 15:01:56 -04001555
Chris Masondb945352007-10-15 16:15:53 -04001556 if (hint_byte) {
1557 block_group = btrfs_lookup_block_group(info, hint_byte);
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001558 if (!block_group)
1559 hint_byte = search_start;
Chris Masonbe744172007-05-06 10:15:01 -04001560 block_group = btrfs_find_block_group(root, block_group,
Chris Masondb945352007-10-15 16:15:53 -04001561 hint_byte, data, 1);
Chris Mason239b14b2008-03-24 15:02:07 -04001562 if (last_ptr && *last_ptr == 0 && block_group)
1563 hint_byte = block_group->key.objectid;
Chris Masonbe744172007-05-06 10:15:01 -04001564 } else {
1565 block_group = btrfs_find_block_group(root,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001566 trans->block_group,
1567 search_start, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001568 }
Chris Mason239b14b2008-03-24 15:02:07 -04001569 search_start = max(search_start, hint_byte);
Chris Masonbe744172007-05-06 10:15:01 -04001570
Chris Mason6702ed42007-08-07 16:15:09 -04001571 total_needed += empty_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001572
Chris Masonbe744172007-05-06 10:15:01 -04001573check_failed:
Chris Mason70b043f2007-12-13 09:02:46 -05001574 if (!block_group) {
1575 block_group = btrfs_lookup_block_group(info, search_start);
1576 if (!block_group)
1577 block_group = btrfs_lookup_block_group(info,
1578 orig_search_start);
1579 }
Chris Mason0b86a832008-03-24 15:01:56 -04001580 ret = find_search_start(root, &block_group, &search_start,
1581 total_needed, data);
Chris Mason239b14b2008-03-24 15:02:07 -04001582 if (ret == -ENOSPC && last_ptr && *last_ptr) {
1583 *last_ptr = 0;
1584 block_group = btrfs_lookup_block_group(info,
1585 orig_search_start);
1586 search_start = orig_search_start;
1587 ret = find_search_start(root, &block_group, &search_start,
1588 total_needed, data);
1589 }
1590 if (ret == -ENOSPC)
1591 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001592 if (ret)
1593 goto error;
1594
Chris Mason239b14b2008-03-24 15:02:07 -04001595 if (last_ptr && *last_ptr && search_start != *last_ptr) {
1596 *last_ptr = 0;
1597 if (!empty_size) {
1598 empty_size += empty_cluster;
1599 total_needed += empty_size;
1600 }
1601 block_group = btrfs_lookup_block_group(info,
1602 orig_search_start);
1603 search_start = orig_search_start;
1604 ret = find_search_start(root, &block_group,
1605 &search_start, total_needed, data);
1606 if (ret == -ENOSPC)
1607 goto enospc;
1608 if (ret)
1609 goto error;
1610 }
1611
Chris Mason87ee04e2007-11-30 11:30:34 -05001612 search_start = stripe_align(root, search_start);
Chris Masonfec577f2007-02-26 10:40:21 -05001613 ins->objectid = search_start;
Chris Mason0b86a832008-03-24 15:01:56 -04001614 ins->offset = num_bytes;
Chris Masone37c9e62007-05-09 20:13:14 -04001615
Chris Masondb945352007-10-15 16:15:53 -04001616 if (ins->objectid + num_bytes >= search_end)
Chris Masoncf675822007-09-17 11:00:51 -04001617 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001618
1619 if (ins->objectid + num_bytes >
1620 block_group->key.objectid + block_group->key.offset) {
Chris Masone19caa52007-10-15 16:17:44 -04001621 search_start = block_group->key.objectid +
1622 block_group->key.offset;
1623 goto new_group;
1624 }
Chris Mason0b86a832008-03-24 15:01:56 -04001625
Chris Mason1a5bc162007-10-15 16:15:26 -04001626 if (test_range_bit(&info->extent_ins, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001627 ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
1628 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001629 goto new_group;
1630 }
Chris Mason0b86a832008-03-24 15:01:56 -04001631
Chris Mason1a5bc162007-10-15 16:15:26 -04001632 if (test_range_bit(&info->pinned_extents, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001633 ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
1634 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001635 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05001636 }
Chris Mason0b86a832008-03-24 15:01:56 -04001637
Chris Masondb945352007-10-15 16:15:53 -04001638 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
Chris Masonf2654de2007-06-26 12:20:46 -04001639 ins->objectid < exclude_start + exclude_nr)) {
1640 search_start = exclude_start + exclude_nr;
1641 goto new_group;
1642 }
Chris Mason0b86a832008-03-24 15:01:56 -04001643
Chris Mason6324fbf2008-03-24 15:01:59 -04001644 if (!(data & BTRFS_BLOCK_GROUP_DATA)) {
Chris Mason5276aed2007-06-11 21:33:38 -04001645 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Mason26b80032007-08-08 20:17:12 -04001646 if (block_group)
1647 trans->block_group = block_group;
Chris Masoncd1bc462007-04-27 10:08:34 -04001648 }
Chris Masondb945352007-10-15 16:15:53 -04001649 ins->offset = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04001650 if (last_ptr) {
1651 *last_ptr = ins->objectid + ins->offset;
1652 if (*last_ptr ==
1653 btrfs_super_total_bytes(&root->fs_info->super_copy)) {
1654 *last_ptr = 0;
1655 }
1656 }
Chris Masonfec577f2007-02-26 10:40:21 -05001657 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04001658
1659new_group:
Chris Masondb945352007-10-15 16:15:53 -04001660 if (search_start + num_bytes >= search_end) {
Chris Masoncf675822007-09-17 11:00:51 -04001661enospc:
Chris Masonbe744172007-05-06 10:15:01 -04001662 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04001663 if (full_scan) {
1664 ret = -ENOSPC;
1665 goto error;
1666 }
Chris Mason6702ed42007-08-07 16:15:09 -04001667 if (wrapped) {
1668 if (!full_scan)
1669 total_needed -= empty_size;
Chris Masonfbdc7622007-05-30 10:22:12 -04001670 full_scan = 1;
Chris Mason6702ed42007-08-07 16:15:09 -04001671 } else
Chris Masonfbdc7622007-05-30 10:22:12 -04001672 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04001673 }
Chris Mason5276aed2007-06-11 21:33:38 -04001674 block_group = btrfs_lookup_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04001675 cond_resched();
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001676 block_group = btrfs_find_block_group(root, block_group,
1677 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04001678 goto check_failed;
1679
Chris Mason0f70abe2007-02-28 16:46:22 -05001680error:
Chris Mason0f70abe2007-02-28 16:46:22 -05001681 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001682}
Chris Masonfec577f2007-02-26 10:40:21 -05001683/*
Chris Masonfec577f2007-02-26 10:40:21 -05001684 * finds a free extent and does all the dirty work required for allocation
1685 * returns the key for the extent through ins, and a tree buffer for
1686 * the first block of the extent through buf.
1687 *
1688 * returns 0 if everything worked, non-zero otherwise.
1689 */
Chris Mason4d775672007-04-20 20:23:12 -04001690int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -05001691 struct btrfs_root *root,
Chris Mason98d20f62008-04-14 09:46:10 -04001692 u64 num_bytes, u64 min_alloc_size,
1693 u64 root_objectid, u64 ref_generation,
Chris Mason7bb86312007-12-11 09:25:06 -05001694 u64 owner, u64 owner_offset,
1695 u64 empty_size, u64 hint_byte,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001696 u64 search_end, struct btrfs_key *ins, int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001697{
1698 int ret;
1699 int pending_ret;
Chris Masonc31f8832008-01-08 15:46:31 -05001700 u64 super_used;
1701 u64 root_used;
Chris Masonfbdc7622007-05-30 10:22:12 -04001702 u64 search_start = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05001703 u64 new_hint;
Chris Mason8790d502008-04-03 16:29:03 -04001704 u64 alloc_profile;
Chris Mason47e4bb92008-02-01 14:51:59 -05001705 u32 sizes[2];
Chris Mason1261ec42007-03-20 20:35:03 -04001706 struct btrfs_fs_info *info = root->fs_info;
1707 struct btrfs_root *extent_root = info->extent_root;
Chris Mason47e4bb92008-02-01 14:51:59 -05001708 struct btrfs_extent_item *extent_item;
1709 struct btrfs_extent_ref *ref;
Chris Mason7bb86312007-12-11 09:25:06 -05001710 struct btrfs_path *path;
Chris Mason47e4bb92008-02-01 14:51:59 -05001711 struct btrfs_key keys[2];
Chris Mason8f662a72008-01-02 10:01:11 -05001712
Chris Mason6324fbf2008-03-24 15:01:59 -04001713 if (data) {
Chris Mason8790d502008-04-03 16:29:03 -04001714 alloc_profile = info->avail_data_alloc_bits &
1715 info->data_alloc_profile;
1716 data = BTRFS_BLOCK_GROUP_DATA | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04001717 } else if (root == root->fs_info->chunk_root) {
Chris Mason8790d502008-04-03 16:29:03 -04001718 alloc_profile = info->avail_system_alloc_bits &
1719 info->system_alloc_profile;
1720 data = BTRFS_BLOCK_GROUP_SYSTEM | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04001721 } else {
Chris Mason8790d502008-04-03 16:29:03 -04001722 alloc_profile = info->avail_metadata_alloc_bits &
1723 info->metadata_alloc_profile;
1724 data = BTRFS_BLOCK_GROUP_METADATA | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04001725 }
Chris Mason98d20f62008-04-14 09:46:10 -04001726again:
Chris Mason6324fbf2008-03-24 15:01:59 -04001727 if (root->ref_cows) {
Chris Mason593060d2008-03-25 16:50:33 -04001728 if (!(data & BTRFS_BLOCK_GROUP_METADATA)) {
Chris Mason6324fbf2008-03-24 15:01:59 -04001729 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason239b14b2008-03-24 15:02:07 -04001730 2 * 1024 * 1024,
Chris Mason593060d2008-03-25 16:50:33 -04001731 BTRFS_BLOCK_GROUP_METADATA |
Chris Mason8790d502008-04-03 16:29:03 -04001732 (info->metadata_alloc_profile &
1733 info->avail_metadata_alloc_bits));
Chris Mason6324fbf2008-03-24 15:01:59 -04001734 BUG_ON(ret);
1735 }
1736 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason8790d502008-04-03 16:29:03 -04001737 num_bytes + 2 * 1024 * 1024, data);
Chris Mason6324fbf2008-03-24 15:01:59 -04001738 BUG_ON(ret);
1739 }
Chris Mason0b86a832008-03-24 15:01:56 -04001740
Chris Mason8f662a72008-01-02 10:01:11 -05001741 new_hint = max(hint_byte, root->fs_info->alloc_start);
Chris Masonedbd8d42007-12-21 16:27:24 -05001742 if (new_hint < btrfs_super_total_bytes(&info->super_copy))
1743 hint_byte = new_hint;
Chris Mason8f662a72008-01-02 10:01:11 -05001744
Chris Masondb945352007-10-15 16:15:53 -04001745 WARN_ON(num_bytes < root->sectorsize);
1746 ret = find_free_extent(trans, root, num_bytes, empty_size,
1747 search_start, search_end, hint_byte, ins,
Chris Mason26b80032007-08-08 20:17:12 -04001748 trans->alloc_exclude_start,
1749 trans->alloc_exclude_nr, data);
Chris Mason3b951512008-04-17 11:29:12 -04001750
Chris Mason98d20f62008-04-14 09:46:10 -04001751 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
1752 num_bytes = num_bytes >> 1;
1753 num_bytes = max(num_bytes, min_alloc_size);
1754 goto again;
1755 }
Chris Masonccd467d2007-06-28 15:57:36 -04001756 BUG_ON(ret);
Chris Masonf2654de2007-06-26 12:20:46 -04001757 if (ret)
1758 return ret;
1759
Josef Bacik58176a92007-08-29 15:47:34 -04001760 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001761 super_used = btrfs_super_bytes_used(&info->super_copy);
1762 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
Chris Mason26b80032007-08-08 20:17:12 -04001763
Josef Bacik58176a92007-08-29 15:47:34 -04001764 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001765 root_used = btrfs_root_used(&root->root_item);
1766 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001767
Chris Masonf510cfe2007-10-15 16:14:48 -04001768 clear_extent_dirty(&root->fs_info->free_space_cache,
1769 ins->objectid, ins->objectid + ins->offset - 1,
1770 GFP_NOFS);
1771
Chris Mason26b80032007-08-08 20:17:12 -04001772 if (root == extent_root) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001773 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
1774 ins->objectid + ins->offset - 1,
1775 EXTENT_LOCKED, GFP_NOFS);
Chris Mason26b80032007-08-08 20:17:12 -04001776 goto update_block;
1777 }
1778
1779 WARN_ON(trans->alloc_exclude_nr);
1780 trans->alloc_exclude_start = ins->objectid;
1781 trans->alloc_exclude_nr = ins->offset;
Chris Mason037e6392007-03-07 11:50:24 -05001782
Chris Mason47e4bb92008-02-01 14:51:59 -05001783 memcpy(&keys[0], ins, sizeof(*ins));
1784 keys[1].offset = hash_extent_ref(root_objectid, ref_generation,
1785 owner, owner_offset);
1786 keys[1].objectid = ins->objectid;
1787 keys[1].type = BTRFS_EXTENT_REF_KEY;
1788 sizes[0] = sizeof(*extent_item);
1789 sizes[1] = sizeof(*ref);
Chris Mason7bb86312007-12-11 09:25:06 -05001790
1791 path = btrfs_alloc_path();
1792 BUG_ON(!path);
Chris Mason47e4bb92008-02-01 14:51:59 -05001793
1794 ret = btrfs_insert_empty_items(trans, extent_root, path, keys,
1795 sizes, 2);
Chris Mason26b80032007-08-08 20:17:12 -04001796
Chris Masonccd467d2007-06-28 15:57:36 -04001797 BUG_ON(ret);
Chris Mason47e4bb92008-02-01 14:51:59 -05001798 extent_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1799 struct btrfs_extent_item);
1800 btrfs_set_extent_refs(path->nodes[0], extent_item, 1);
1801 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1802 struct btrfs_extent_ref);
1803
1804 btrfs_set_ref_root(path->nodes[0], ref, root_objectid);
1805 btrfs_set_ref_generation(path->nodes[0], ref, ref_generation);
1806 btrfs_set_ref_objectid(path->nodes[0], ref, owner);
1807 btrfs_set_ref_offset(path->nodes[0], ref, owner_offset);
1808
1809 btrfs_mark_buffer_dirty(path->nodes[0]);
1810
1811 trans->alloc_exclude_start = 0;
1812 trans->alloc_exclude_nr = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001813 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001814 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001815 pending_ret = del_pending_extents(trans, extent_root);
Chris Masonf510cfe2007-10-15 16:14:48 -04001816
Chris Masone37c9e62007-05-09 20:13:14 -04001817 if (ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001818 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001819 }
1820 if (pending_ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001821 return pending_ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001822 }
Chris Mason26b80032007-08-08 20:17:12 -04001823
1824update_block:
Chris Mason0b86a832008-03-24 15:01:56 -04001825 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0);
Chris Masonf5947062008-02-04 10:10:13 -05001826 if (ret) {
1827 printk("update block group failed for %Lu %Lu\n",
1828 ins->objectid, ins->offset);
1829 BUG();
1830 }
Chris Mason037e6392007-03-07 11:50:24 -05001831 return 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001832}
1833
1834/*
1835 * helper function to allocate a block for a given tree
1836 * returns the tree buffer or NULL.
1837 */
Chris Mason5f39d392007-10-15 16:14:19 -04001838struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -04001839 struct btrfs_root *root,
Chris Mason7bb86312007-12-11 09:25:06 -05001840 u32 blocksize,
1841 u64 root_objectid, u64 hint,
1842 u64 empty_size)
1843{
1844 u64 ref_generation;
1845
1846 if (root->ref_cows)
1847 ref_generation = trans->transid;
1848 else
1849 ref_generation = 0;
1850
1851
1852 return __btrfs_alloc_free_block(trans, root, blocksize, root_objectid,
1853 ref_generation, 0, 0, hint, empty_size);
1854}
1855
1856/*
1857 * helper function to allocate a block for a given tree
1858 * returns the tree buffer or NULL.
1859 */
1860struct extent_buffer *__btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1861 struct btrfs_root *root,
1862 u32 blocksize,
1863 u64 root_objectid,
1864 u64 ref_generation,
1865 u64 first_objectid,
1866 int level,
1867 u64 hint,
Chris Mason5f39d392007-10-15 16:14:19 -04001868 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05001869{
Chris Masone2fa7222007-03-12 16:22:34 -04001870 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05001871 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04001872 struct extent_buffer *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05001873
Chris Mason98d20f62008-04-14 09:46:10 -04001874 ret = btrfs_alloc_extent(trans, root, blocksize, blocksize,
Chris Mason7bb86312007-12-11 09:25:06 -05001875 root_objectid, ref_generation,
Chris Masonf6dbff52007-12-13 11:13:32 -05001876 level, first_objectid, empty_size, hint,
Chris Masondb945352007-10-15 16:15:53 -04001877 (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05001878 if (ret) {
Chris Mason54aa1f42007-06-22 14:16:25 -04001879 BUG_ON(ret > 0);
1880 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05001881 }
Chris Masondb945352007-10-15 16:15:53 -04001882 buf = btrfs_find_create_tree_block(root, ins.objectid, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04001883 if (!buf) {
Chris Mason7bb86312007-12-11 09:25:06 -05001884 btrfs_free_extent(trans, root, ins.objectid, blocksize,
1885 root->root_key.objectid, ref_generation,
1886 0, 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001887 return ERR_PTR(-ENOMEM);
1888 }
Chris Mason55c69072008-01-09 15:55:33 -05001889 btrfs_set_header_generation(buf, trans->transid);
1890 clean_tree_block(trans, root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001891 btrfs_set_buffer_uptodate(buf);
Chris Mason55c69072008-01-09 15:55:33 -05001892
1893 if (PageDirty(buf->first_page)) {
1894 printk("page %lu dirty\n", buf->first_page->index);
1895 WARN_ON(1);
1896 }
1897
Chris Mason5f39d392007-10-15 16:14:19 -04001898 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
1899 buf->start + buf->len - 1, GFP_NOFS);
Chris Mason9afbb0b2008-02-15 13:19:35 -05001900 if (!btrfs_test_opt(root, SSD))
1901 btrfs_set_buffer_defrag(buf);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001902 trans->blocks_used++;
Chris Masonfec577f2007-02-26 10:40:21 -05001903 return buf;
1904}
Chris Masona28ec192007-03-06 20:08:01 -05001905
Chris Mason98ed5172008-01-03 10:01:48 -05001906static int noinline drop_leaf_ref(struct btrfs_trans_handle *trans,
1907 struct btrfs_root *root,
1908 struct extent_buffer *leaf)
Chris Mason6407bf62007-03-27 06:33:00 -04001909{
Chris Mason7bb86312007-12-11 09:25:06 -05001910 u64 leaf_owner;
1911 u64 leaf_generation;
Chris Mason5f39d392007-10-15 16:14:19 -04001912 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04001913 struct btrfs_file_extent_item *fi;
1914 int i;
1915 int nritems;
1916 int ret;
1917
Chris Mason5f39d392007-10-15 16:14:19 -04001918 BUG_ON(!btrfs_is_leaf(leaf));
1919 nritems = btrfs_header_nritems(leaf);
Chris Mason7bb86312007-12-11 09:25:06 -05001920 leaf_owner = btrfs_header_owner(leaf);
1921 leaf_generation = btrfs_header_generation(leaf);
1922
Chris Mason6407bf62007-03-27 06:33:00 -04001923 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001924 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001925
1926 btrfs_item_key_to_cpu(leaf, &key, i);
1927 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04001928 continue;
1929 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001930 if (btrfs_file_extent_type(leaf, fi) ==
1931 BTRFS_FILE_EXTENT_INLINE)
Chris Mason236454df2007-04-19 13:37:44 -04001932 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04001933 /*
1934 * FIXME make sure to insert a trans record that
1935 * repeats the snapshot del on crash
1936 */
Chris Masondb945352007-10-15 16:15:53 -04001937 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1938 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04001939 continue;
Chris Masondb945352007-10-15 16:15:53 -04001940 ret = btrfs_free_extent(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001941 btrfs_file_extent_disk_num_bytes(leaf, fi),
1942 leaf_owner, leaf_generation,
1943 key.objectid, key.offset, 0);
Chris Mason6407bf62007-03-27 06:33:00 -04001944 BUG_ON(ret);
1945 }
1946 return 0;
1947}
1948
Chris Mason98ed5172008-01-03 10:01:48 -05001949static void noinline reada_walk_down(struct btrfs_root *root,
Chris Masonbea495e2008-01-24 16:13:14 -05001950 struct extent_buffer *node,
1951 int slot)
Chris Masone0115992007-06-19 16:23:05 -04001952{
Chris Masondb945352007-10-15 16:15:53 -04001953 u64 bytenr;
Chris Masonbea495e2008-01-24 16:13:14 -05001954 u64 last = 0;
1955 u32 nritems;
Chris Masone0115992007-06-19 16:23:05 -04001956 u32 refs;
Chris Masondb945352007-10-15 16:15:53 -04001957 u32 blocksize;
Chris Masonbea495e2008-01-24 16:13:14 -05001958 int ret;
1959 int i;
1960 int level;
1961 int skipped = 0;
Chris Masone0115992007-06-19 16:23:05 -04001962
Chris Mason5f39d392007-10-15 16:14:19 -04001963 nritems = btrfs_header_nritems(node);
Chris Masondb945352007-10-15 16:15:53 -04001964 level = btrfs_header_level(node);
Chris Masonbea495e2008-01-24 16:13:14 -05001965 if (level)
1966 return;
1967
1968 for (i = slot; i < nritems && skipped < 32; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001969 bytenr = btrfs_node_blockptr(node, i);
Chris Masonbea495e2008-01-24 16:13:14 -05001970 if (last && ((bytenr > last && bytenr - last > 32 * 1024) ||
1971 (last > bytenr && last - bytenr > 32 * 1024))) {
1972 skipped++;
Chris Masone0115992007-06-19 16:23:05 -04001973 continue;
Chris Masonbea495e2008-01-24 16:13:14 -05001974 }
1975 blocksize = btrfs_level_size(root, level - 1);
1976 if (i != slot) {
1977 ret = lookup_extent_ref(NULL, root, bytenr,
1978 blocksize, &refs);
1979 BUG_ON(ret);
1980 if (refs != 1) {
1981 skipped++;
1982 continue;
1983 }
1984 }
Chris Mason409eb952007-08-08 20:17:12 -04001985 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -04001986 ret = readahead_tree_block(root, bytenr, blocksize);
Chris Masonbea495e2008-01-24 16:13:14 -05001987 last = bytenr + blocksize;
Chris Mason409eb952007-08-08 20:17:12 -04001988 cond_resched();
1989 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone0115992007-06-19 16:23:05 -04001990 if (ret)
1991 break;
1992 }
1993}
1994
Chris Mason9aca1d52007-03-13 11:09:37 -04001995/*
1996 * helper function for drop_snapshot, this walks down the tree dropping ref
1997 * counts as it goes.
1998 */
Chris Mason98ed5172008-01-03 10:01:48 -05001999static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
2000 struct btrfs_root *root,
2001 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002002{
Chris Mason7bb86312007-12-11 09:25:06 -05002003 u64 root_owner;
2004 u64 root_gen;
2005 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04002006 struct extent_buffer *next;
2007 struct extent_buffer *cur;
Chris Mason7bb86312007-12-11 09:25:06 -05002008 struct extent_buffer *parent;
Chris Masondb945352007-10-15 16:15:53 -04002009 u32 blocksize;
Chris Mason20524f02007-03-10 06:35:47 -05002010 int ret;
2011 u32 refs;
2012
Chris Mason5caf2a02007-04-02 11:20:42 -04002013 WARN_ON(*level < 0);
2014 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason5f39d392007-10-15 16:14:19 -04002015 ret = lookup_extent_ref(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002016 path->nodes[*level]->start,
2017 path->nodes[*level]->len, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05002018 BUG_ON(ret);
2019 if (refs > 1)
2020 goto out;
Chris Masone0115992007-06-19 16:23:05 -04002021
Chris Mason9aca1d52007-03-13 11:09:37 -04002022 /*
2023 * walk down to the last node level and free all the leaves
2024 */
Chris Mason6407bf62007-03-27 06:33:00 -04002025 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002026 WARN_ON(*level < 0);
2027 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05002028 cur = path->nodes[*level];
Chris Masone0115992007-06-19 16:23:05 -04002029
Chris Mason5f39d392007-10-15 16:14:19 -04002030 if (btrfs_header_level(cur) != *level)
Chris Mason2c90e5d2007-04-02 10:50:19 -04002031 WARN_ON(1);
Chris Masone0115992007-06-19 16:23:05 -04002032
Chris Mason7518a232007-03-12 12:01:18 -04002033 if (path->slots[*level] >=
Chris Mason5f39d392007-10-15 16:14:19 -04002034 btrfs_header_nritems(cur))
Chris Mason20524f02007-03-10 06:35:47 -05002035 break;
Chris Mason6407bf62007-03-27 06:33:00 -04002036 if (*level == 0) {
2037 ret = drop_leaf_ref(trans, root, cur);
2038 BUG_ON(ret);
2039 break;
2040 }
Chris Masondb945352007-10-15 16:15:53 -04002041 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
2042 blocksize = btrfs_level_size(root, *level - 1);
2043 ret = lookup_extent_ref(trans, root, bytenr, blocksize, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04002044 BUG_ON(ret);
2045 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002046 parent = path->nodes[*level];
2047 root_owner = btrfs_header_owner(parent);
2048 root_gen = btrfs_header_generation(parent);
Chris Mason20524f02007-03-10 06:35:47 -05002049 path->slots[*level]++;
Chris Masondb945352007-10-15 16:15:53 -04002050 ret = btrfs_free_extent(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002051 blocksize, root_owner,
2052 root_gen, 0, 0, 1);
Chris Mason20524f02007-03-10 06:35:47 -05002053 BUG_ON(ret);
2054 continue;
2055 }
Chris Masondb945352007-10-15 16:15:53 -04002056 next = btrfs_find_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04002057 if (!next || !btrfs_buffer_uptodate(next)) {
2058 free_extent_buffer(next);
Chris Masonbea495e2008-01-24 16:13:14 -05002059 reada_walk_down(root, cur, path->slots[*level]);
Chris Masone9d0b132007-08-10 14:06:19 -04002060
Chris Mason8790d502008-04-03 16:29:03 -04002061 mutex_unlock(&root->fs_info->fs_mutex);
2062 next = read_tree_block(root, bytenr, blocksize);
2063 mutex_lock(&root->fs_info->fs_mutex);
2064
2065 /* we've dropped the lock, double check */
Chris Masondb945352007-10-15 16:15:53 -04002066 ret = lookup_extent_ref(trans, root, bytenr,
2067 blocksize, &refs);
Chris Masone9d0b132007-08-10 14:06:19 -04002068 BUG_ON(ret);
2069 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002070 parent = path->nodes[*level];
2071 root_owner = btrfs_header_owner(parent);
2072 root_gen = btrfs_header_generation(parent);
2073
Chris Masone9d0b132007-08-10 14:06:19 -04002074 path->slots[*level]++;
Chris Mason5f39d392007-10-15 16:14:19 -04002075 free_extent_buffer(next);
Chris Mason7bb86312007-12-11 09:25:06 -05002076 ret = btrfs_free_extent(trans, root, bytenr,
2077 blocksize,
2078 root_owner,
2079 root_gen, 0, 0, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04002080 BUG_ON(ret);
2081 continue;
2082 }
Chris Mason0999df52008-04-01 13:48:14 -04002083 } else if (next) {
2084 btrfs_verify_block_csum(root, next);
Chris Masone9d0b132007-08-10 14:06:19 -04002085 }
Chris Mason5caf2a02007-04-02 11:20:42 -04002086 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04002087 if (path->nodes[*level-1])
Chris Mason5f39d392007-10-15 16:14:19 -04002088 free_extent_buffer(path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05002089 path->nodes[*level-1] = next;
Chris Mason5f39d392007-10-15 16:14:19 -04002090 *level = btrfs_header_level(next);
Chris Mason20524f02007-03-10 06:35:47 -05002091 path->slots[*level] = 0;
2092 }
2093out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002094 WARN_ON(*level < 0);
2095 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason7bb86312007-12-11 09:25:06 -05002096
2097 if (path->nodes[*level] == root->node) {
2098 root_owner = root->root_key.objectid;
2099 parent = path->nodes[*level];
2100 } else {
2101 parent = path->nodes[*level + 1];
2102 root_owner = btrfs_header_owner(parent);
2103 }
2104
2105 root_gen = btrfs_header_generation(parent);
Chris Masondb945352007-10-15 16:15:53 -04002106 ret = btrfs_free_extent(trans, root, path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002107 path->nodes[*level]->len,
2108 root_owner, root_gen, 0, 0, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002109 free_extent_buffer(path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05002110 path->nodes[*level] = NULL;
2111 *level += 1;
2112 BUG_ON(ret);
2113 return 0;
2114}
2115
Chris Mason9aca1d52007-03-13 11:09:37 -04002116/*
2117 * helper for dropping snapshots. This walks back up the tree in the path
2118 * to find the first node higher up where we haven't yet gone through
2119 * all the slots
2120 */
Chris Mason98ed5172008-01-03 10:01:48 -05002121static int noinline walk_up_tree(struct btrfs_trans_handle *trans,
2122 struct btrfs_root *root,
2123 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002124{
Chris Mason7bb86312007-12-11 09:25:06 -05002125 u64 root_owner;
2126 u64 root_gen;
2127 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002128 int i;
2129 int slot;
2130 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04002131
Chris Mason234b63a2007-03-13 10:46:10 -04002132 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05002133 slot = path->slots[i];
Chris Mason5f39d392007-10-15 16:14:19 -04002134 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
2135 struct extent_buffer *node;
2136 struct btrfs_disk_key disk_key;
2137 node = path->nodes[i];
Chris Mason20524f02007-03-10 06:35:47 -05002138 path->slots[i]++;
2139 *level = i;
Chris Mason9f3a7422007-08-07 15:52:19 -04002140 WARN_ON(*level == 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002141 btrfs_node_key(node, &disk_key, path->slots[i]);
Chris Mason9f3a7422007-08-07 15:52:19 -04002142 memcpy(&root_item->drop_progress,
Chris Mason5f39d392007-10-15 16:14:19 -04002143 &disk_key, sizeof(disk_key));
Chris Mason9f3a7422007-08-07 15:52:19 -04002144 root_item->drop_level = i;
Chris Mason20524f02007-03-10 06:35:47 -05002145 return 0;
2146 } else {
Chris Mason7bb86312007-12-11 09:25:06 -05002147 if (path->nodes[*level] == root->node) {
2148 root_owner = root->root_key.objectid;
2149 root_gen =
2150 btrfs_header_generation(path->nodes[*level]);
2151 } else {
2152 struct extent_buffer *node;
2153 node = path->nodes[*level + 1];
2154 root_owner = btrfs_header_owner(node);
2155 root_gen = btrfs_header_generation(node);
2156 }
Chris Masone089f052007-03-16 16:20:31 -04002157 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002158 path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002159 path->nodes[*level]->len,
2160 root_owner, root_gen, 0, 0, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04002161 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002162 free_extent_buffer(path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04002163 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05002164 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05002165 }
2166 }
2167 return 1;
2168}
2169
Chris Mason9aca1d52007-03-13 11:09:37 -04002170/*
2171 * drop the reference count on the tree rooted at 'snap'. This traverses
2172 * the tree freeing any blocks that have a ref count of zero after being
2173 * decremented.
2174 */
Chris Masone089f052007-03-16 16:20:31 -04002175int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04002176 *root)
Chris Mason20524f02007-03-10 06:35:47 -05002177{
Chris Mason3768f362007-03-13 16:47:54 -04002178 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04002179 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05002180 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04002181 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05002182 int i;
2183 int orig_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002184 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002185
Chris Mason5caf2a02007-04-02 11:20:42 -04002186 path = btrfs_alloc_path();
2187 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05002188
Chris Mason5f39d392007-10-15 16:14:19 -04002189 level = btrfs_header_level(root->node);
Chris Mason20524f02007-03-10 06:35:47 -05002190 orig_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002191 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2192 path->nodes[level] = root->node;
Chris Masonf510cfe2007-10-15 16:14:48 -04002193 extent_buffer_get(root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -04002194 path->slots[level] = 0;
2195 } else {
2196 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002197 struct btrfs_disk_key found_key;
2198 struct extent_buffer *node;
Chris Mason6702ed42007-08-07 16:15:09 -04002199
Chris Mason9f3a7422007-08-07 15:52:19 -04002200 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Chris Mason6702ed42007-08-07 16:15:09 -04002201 level = root_item->drop_level;
2202 path->lowest_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002203 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason6702ed42007-08-07 16:15:09 -04002204 if (wret < 0) {
Chris Mason9f3a7422007-08-07 15:52:19 -04002205 ret = wret;
2206 goto out;
2207 }
Chris Mason5f39d392007-10-15 16:14:19 -04002208 node = path->nodes[level];
2209 btrfs_node_key(node, &found_key, path->slots[level]);
2210 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2211 sizeof(found_key)));
Chris Mason9f3a7422007-08-07 15:52:19 -04002212 }
Chris Mason20524f02007-03-10 06:35:47 -05002213 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002214 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002215 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002216 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002217 if (wret < 0)
2218 ret = wret;
2219
Chris Mason5caf2a02007-04-02 11:20:42 -04002220 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002221 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002222 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002223 if (wret < 0)
2224 ret = wret;
Chris Mason409eb952007-08-08 20:17:12 -04002225 ret = -EAGAIN;
Chris Mason409eb952007-08-08 20:17:12 -04002226 break;
Chris Mason20524f02007-03-10 06:35:47 -05002227 }
Chris Mason83e15a22007-03-12 09:03:27 -04002228 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002229 if (path->nodes[i]) {
Chris Mason5f39d392007-10-15 16:14:19 -04002230 free_extent_buffer(path->nodes[i]);
Chris Mason0f827312007-10-15 16:18:56 -04002231 path->nodes[i] = NULL;
Chris Mason83e15a22007-03-12 09:03:27 -04002232 }
Chris Mason20524f02007-03-10 06:35:47 -05002233 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002234out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002235 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04002236 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05002237}
Chris Mason9078a3e2007-04-26 16:46:15 -04002238
Chris Masonbe744172007-05-06 10:15:01 -04002239int btrfs_free_block_groups(struct btrfs_fs_info *info)
2240{
Chris Masonf510cfe2007-10-15 16:14:48 -04002241 u64 start;
2242 u64 end;
Yanb97f9202007-11-01 11:28:41 -04002243 u64 ptr;
Chris Mason96b51792007-10-15 16:15:19 -04002244 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04002245 while(1) {
2246 ret = find_first_extent_bit(&info->block_group_cache, 0,
2247 &start, &end, (unsigned int)-1);
2248 if (ret)
2249 break;
Yanb97f9202007-11-01 11:28:41 -04002250 ret = get_state_private(&info->block_group_cache, start, &ptr);
2251 if (!ret)
2252 kfree((void *)(unsigned long)ptr);
Chris Mason96b51792007-10-15 16:15:19 -04002253 clear_extent_bits(&info->block_group_cache, start,
2254 end, (unsigned int)-1, GFP_NOFS);
2255 }
Chris Masone37c9e62007-05-09 20:13:14 -04002256 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -04002257 ret = find_first_extent_bit(&info->free_space_cache, 0,
2258 &start, &end, EXTENT_DIRTY);
2259 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -04002260 break;
Chris Masonf510cfe2007-10-15 16:14:48 -04002261 clear_extent_dirty(&info->free_space_cache, start,
2262 end, GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04002263 }
Chris Masonbe744172007-05-06 10:15:01 -04002264 return 0;
2265}
2266
Chris Mason98ed5172008-01-03 10:01:48 -05002267static int noinline relocate_inode_pages(struct inode *inode, u64 start,
2268 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05002269{
2270 u64 page_start;
2271 u64 page_end;
2272 u64 delalloc_start;
2273 u64 existing_delalloc;
2274 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05002275 unsigned long i;
2276 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05002277 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05002278 struct file_ra_state *ra;
2279
2280 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002281
2282 mutex_lock(&inode->i_mutex);
Chris Mason4313b392008-01-03 09:08:48 -05002283 i = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05002284 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
2285
Chris Mason4313b392008-01-03 09:08:48 -05002286 file_ra_state_init(ra, inode->i_mapping);
2287 btrfs_force_ra(inode->i_mapping, ra, NULL, i, last_index);
2288 kfree(ra);
Chris Masonedbd8d42007-12-21 16:27:24 -05002289
Chris Mason4313b392008-01-03 09:08:48 -05002290 for (; i <= last_index; i++) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002291 page = grab_cache_page(inode->i_mapping, i);
2292 if (!page)
2293 goto out_unlock;
2294 if (!PageUptodate(page)) {
2295 btrfs_readpage(NULL, page);
2296 lock_page(page);
2297 if (!PageUptodate(page)) {
2298 unlock_page(page);
2299 page_cache_release(page);
2300 goto out_unlock;
2301 }
2302 }
2303 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2304 page_end = page_start + PAGE_CACHE_SIZE - 1;
2305
Chris Masond1310b22008-01-24 16:13:08 -05002306 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002307
2308 delalloc_start = page_start;
Chris Masond1310b22008-01-24 16:13:08 -05002309 existing_delalloc = count_range_bits(io_tree,
2310 &delalloc_start, page_end,
2311 PAGE_CACHE_SIZE, EXTENT_DELALLOC);
Chris Masonedbd8d42007-12-21 16:27:24 -05002312
Chris Masond1310b22008-01-24 16:13:08 -05002313 set_extent_delalloc(io_tree, page_start,
Chris Masonedbd8d42007-12-21 16:27:24 -05002314 page_end, GFP_NOFS);
2315
Chris Masond1310b22008-01-24 16:13:08 -05002316 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002317 set_page_dirty(page);
2318 unlock_page(page);
2319 page_cache_release(page);
2320 }
2321
2322out_unlock:
2323 mutex_unlock(&inode->i_mutex);
2324 return 0;
2325}
2326
Chris Mason4313b392008-01-03 09:08:48 -05002327/*
2328 * note, this releases the path
2329 */
Chris Mason98ed5172008-01-03 10:01:48 -05002330static int noinline relocate_one_reference(struct btrfs_root *extent_root,
Chris Masonedbd8d42007-12-21 16:27:24 -05002331 struct btrfs_path *path,
Chris Mason4313b392008-01-03 09:08:48 -05002332 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002333{
2334 struct inode *inode;
2335 struct btrfs_root *found_root;
Chris Mason4313b392008-01-03 09:08:48 -05002336 struct btrfs_key *root_location;
2337 struct btrfs_extent_ref *ref;
2338 u64 ref_root;
2339 u64 ref_gen;
2340 u64 ref_objectid;
2341 u64 ref_offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05002342 int ret;
2343
Chris Mason4313b392008-01-03 09:08:48 -05002344 ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
2345 struct btrfs_extent_ref);
2346 ref_root = btrfs_ref_root(path->nodes[0], ref);
2347 ref_gen = btrfs_ref_generation(path->nodes[0], ref);
2348 ref_objectid = btrfs_ref_objectid(path->nodes[0], ref);
2349 ref_offset = btrfs_ref_offset(path->nodes[0], ref);
2350 btrfs_release_path(extent_root, path);
2351
2352 root_location = kmalloc(sizeof(*root_location), GFP_NOFS);
2353 root_location->objectid = ref_root;
Chris Masonedbd8d42007-12-21 16:27:24 -05002354 if (ref_gen == 0)
Chris Mason4313b392008-01-03 09:08:48 -05002355 root_location->offset = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002356 else
Chris Mason4313b392008-01-03 09:08:48 -05002357 root_location->offset = (u64)-1;
2358 root_location->type = BTRFS_ROOT_ITEM_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05002359
2360 found_root = btrfs_read_fs_root_no_name(extent_root->fs_info,
Chris Mason4313b392008-01-03 09:08:48 -05002361 root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002362 BUG_ON(!found_root);
Chris Mason4313b392008-01-03 09:08:48 -05002363 kfree(root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002364
2365 if (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
2366 mutex_unlock(&extent_root->fs_info->fs_mutex);
2367 inode = btrfs_iget_locked(extent_root->fs_info->sb,
2368 ref_objectid, found_root);
2369 if (inode->i_state & I_NEW) {
2370 /* the inode and parent dir are two different roots */
2371 BTRFS_I(inode)->root = found_root;
2372 BTRFS_I(inode)->location.objectid = ref_objectid;
2373 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
2374 BTRFS_I(inode)->location.offset = 0;
2375 btrfs_read_locked_inode(inode);
2376 unlock_new_inode(inode);
2377
2378 }
2379 /* this can happen if the reference is not against
2380 * the latest version of the tree root
2381 */
2382 if (is_bad_inode(inode)) {
2383 mutex_lock(&extent_root->fs_info->fs_mutex);
2384 goto out;
2385 }
2386 relocate_inode_pages(inode, ref_offset, extent_key->offset);
2387 /* FIXME, data=ordered will help get rid of this */
2388 filemap_fdatawrite(inode->i_mapping);
2389 iput(inode);
2390 mutex_lock(&extent_root->fs_info->fs_mutex);
2391 } else {
2392 struct btrfs_trans_handle *trans;
2393 struct btrfs_key found_key;
2394 struct extent_buffer *eb;
2395 int level;
2396 int i;
2397
2398 trans = btrfs_start_transaction(found_root, 1);
2399 eb = read_tree_block(found_root, extent_key->objectid,
2400 extent_key->offset);
2401 level = btrfs_header_level(eb);
2402
2403 if (level == 0)
2404 btrfs_item_key_to_cpu(eb, &found_key, 0);
2405 else
2406 btrfs_node_key_to_cpu(eb, &found_key, 0);
2407
2408 free_extent_buffer(eb);
2409
2410 path->lowest_level = level;
Chris Mason8f662a72008-01-02 10:01:11 -05002411 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002412 ret = btrfs_search_slot(trans, found_root, &found_key, path,
2413 0, 1);
2414 path->lowest_level = 0;
2415 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2416 if (!path->nodes[i])
2417 break;
2418 free_extent_buffer(path->nodes[i]);
2419 path->nodes[i] = NULL;
2420 }
2421 btrfs_release_path(found_root, path);
2422 btrfs_end_transaction(trans, found_root);
2423 }
2424
2425out:
2426 return 0;
2427}
2428
Chris Mason98ed5172008-01-03 10:01:48 -05002429static int noinline relocate_one_extent(struct btrfs_root *extent_root,
2430 struct btrfs_path *path,
2431 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002432{
2433 struct btrfs_key key;
2434 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002435 struct extent_buffer *leaf;
Chris Masonedbd8d42007-12-21 16:27:24 -05002436 u32 nritems;
2437 u32 item_size;
2438 int ret = 0;
2439
2440 key.objectid = extent_key->objectid;
2441 key.type = BTRFS_EXTENT_REF_KEY;
2442 key.offset = 0;
2443
2444 while(1) {
2445 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2446
Chris Masonedbd8d42007-12-21 16:27:24 -05002447 if (ret < 0)
2448 goto out;
2449
2450 ret = 0;
2451 leaf = path->nodes[0];
2452 nritems = btrfs_header_nritems(leaf);
2453 if (path->slots[0] == nritems)
2454 goto out;
2455
2456 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2457 if (found_key.objectid != extent_key->objectid)
2458 break;
2459
2460 if (found_key.type != BTRFS_EXTENT_REF_KEY)
2461 break;
2462
2463 key.offset = found_key.offset + 1;
2464 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2465
Chris Mason4313b392008-01-03 09:08:48 -05002466 ret = relocate_one_reference(extent_root, path, extent_key);
Chris Masonedbd8d42007-12-21 16:27:24 -05002467 if (ret)
2468 goto out;
2469 }
2470 ret = 0;
2471out:
2472 btrfs_release_path(extent_root, path);
2473 return ret;
2474}
2475
Chris Masonedbd8d42007-12-21 16:27:24 -05002476int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 new_size)
2477{
2478 struct btrfs_trans_handle *trans;
2479 struct btrfs_root *tree_root = root->fs_info->tree_root;
2480 struct btrfs_path *path;
2481 u64 cur_byte;
2482 u64 total_found;
Chris Masonedbd8d42007-12-21 16:27:24 -05002483 struct btrfs_fs_info *info = root->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05002484 struct extent_io_tree *block_group_cache;
Chris Masonedbd8d42007-12-21 16:27:24 -05002485 struct btrfs_key key;
Yan73e48b22008-01-03 14:14:39 -05002486 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002487 struct extent_buffer *leaf;
2488 u32 nritems;
2489 int ret;
Chris Mason725c8462008-01-04 16:47:16 -05002490 int progress = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002491
2492 btrfs_set_super_total_bytes(&info->super_copy, new_size);
Chris Masonc31f8832008-01-08 15:46:31 -05002493 clear_extent_dirty(&info->free_space_cache, new_size, (u64)-1,
2494 GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002495 block_group_cache = &info->block_group_cache;
2496 path = btrfs_alloc_path();
2497 root = root->fs_info->extent_root;
Chris Mason8f662a72008-01-02 10:01:11 -05002498 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002499
2500again:
2501 total_found = 0;
2502 key.objectid = new_size;
Chris Masonedbd8d42007-12-21 16:27:24 -05002503 key.offset = 0;
2504 key.type = 0;
Yan73e48b22008-01-03 14:14:39 -05002505 cur_byte = key.objectid;
Chris Mason4313b392008-01-03 09:08:48 -05002506
Yan73e48b22008-01-03 14:14:39 -05002507 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2508 if (ret < 0)
2509 goto out;
2510
Chris Mason0b86a832008-03-24 15:01:56 -04002511 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
Yan73e48b22008-01-03 14:14:39 -05002512 if (ret < 0)
2513 goto out;
2514 if (ret == 0) {
2515 leaf = path->nodes[0];
2516 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2517 if (found_key.objectid + found_key.offset > new_size) {
2518 cur_byte = found_key.objectid;
2519 key.objectid = cur_byte;
2520 }
2521 }
2522 btrfs_release_path(root, path);
2523
2524 while(1) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002525 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2526 if (ret < 0)
2527 goto out;
Yan73e48b22008-01-03 14:14:39 -05002528
Chris Masonedbd8d42007-12-21 16:27:24 -05002529 leaf = path->nodes[0];
Chris Masonedbd8d42007-12-21 16:27:24 -05002530 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05002531next:
2532 if (path->slots[0] >= nritems) {
2533 ret = btrfs_next_leaf(root, path);
2534 if (ret < 0)
2535 goto out;
2536 if (ret == 1) {
2537 ret = 0;
2538 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05002539 }
Yan73e48b22008-01-03 14:14:39 -05002540 leaf = path->nodes[0];
2541 nritems = btrfs_header_nritems(leaf);
2542 }
2543
2544 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason725c8462008-01-04 16:47:16 -05002545
2546 if (progress && need_resched()) {
2547 memcpy(&key, &found_key, sizeof(key));
2548 mutex_unlock(&root->fs_info->fs_mutex);
2549 cond_resched();
2550 mutex_lock(&root->fs_info->fs_mutex);
2551 btrfs_release_path(root, path);
2552 btrfs_search_slot(NULL, root, &key, path, 0, 0);
2553 progress = 0;
2554 goto next;
2555 }
2556 progress = 1;
2557
Yan73e48b22008-01-03 14:14:39 -05002558 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_ITEM_KEY ||
2559 found_key.objectid + found_key.offset <= cur_byte) {
2560 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05002561 goto next;
2562 }
Yan73e48b22008-01-03 14:14:39 -05002563
Chris Masonedbd8d42007-12-21 16:27:24 -05002564 total_found++;
2565 cur_byte = found_key.objectid + found_key.offset;
2566 key.objectid = cur_byte;
2567 btrfs_release_path(root, path);
2568 ret = relocate_one_extent(root, path, &found_key);
2569 }
2570
2571 btrfs_release_path(root, path);
2572
2573 if (total_found > 0) {
2574 trans = btrfs_start_transaction(tree_root, 1);
2575 btrfs_commit_transaction(trans, tree_root);
2576
2577 mutex_unlock(&root->fs_info->fs_mutex);
2578 btrfs_clean_old_snapshots(tree_root);
2579 mutex_lock(&root->fs_info->fs_mutex);
2580
2581 trans = btrfs_start_transaction(tree_root, 1);
2582 btrfs_commit_transaction(trans, tree_root);
2583 goto again;
2584 }
2585
2586 trans = btrfs_start_transaction(root, 1);
2587 key.objectid = new_size;
2588 key.offset = 0;
2589 key.type = 0;
2590 while(1) {
Chris Mason4313b392008-01-03 09:08:48 -05002591 u64 ptr;
2592
Chris Masonedbd8d42007-12-21 16:27:24 -05002593 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2594 if (ret < 0)
2595 goto out;
Yan73e48b22008-01-03 14:14:39 -05002596
Chris Masonedbd8d42007-12-21 16:27:24 -05002597 leaf = path->nodes[0];
2598 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05002599bg_next:
2600 if (path->slots[0] >= nritems) {
2601 ret = btrfs_next_leaf(root, path);
2602 if (ret < 0)
2603 break;
2604 if (ret == 1) {
2605 ret = 0;
2606 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05002607 }
Yan73e48b22008-01-03 14:14:39 -05002608 leaf = path->nodes[0];
Chris Mason1372f8e2008-01-04 09:34:54 -05002609 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2610
2611 /*
2612 * btrfs_next_leaf doesn't cow buffers, we have to
2613 * do the search again
2614 */
2615 memcpy(&key, &found_key, sizeof(key));
2616 btrfs_release_path(root, path);
Chris Mason725c8462008-01-04 16:47:16 -05002617 goto resched_check;
Yan73e48b22008-01-03 14:14:39 -05002618 }
2619
2620 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2621 if (btrfs_key_type(&found_key) != BTRFS_BLOCK_GROUP_ITEM_KEY) {
2622 printk("shrinker found key %Lu %u %Lu\n",
2623 found_key.objectid, found_key.type,
2624 found_key.offset);
2625 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05002626 goto bg_next;
2627 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002628 ret = get_state_private(&info->block_group_cache,
2629 found_key.objectid, &ptr);
2630 if (!ret)
2631 kfree((void *)(unsigned long)ptr);
2632
2633 clear_extent_bits(&info->block_group_cache, found_key.objectid,
2634 found_key.objectid + found_key.offset - 1,
2635 (unsigned int)-1, GFP_NOFS);
2636
2637 key.objectid = found_key.objectid + 1;
2638 btrfs_del_item(trans, root, path);
2639 btrfs_release_path(root, path);
Chris Mason725c8462008-01-04 16:47:16 -05002640resched_check:
2641 if (need_resched()) {
2642 mutex_unlock(&root->fs_info->fs_mutex);
2643 cond_resched();
2644 mutex_lock(&root->fs_info->fs_mutex);
2645 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002646 }
2647 clear_extent_dirty(&info->free_space_cache, new_size, (u64)-1,
2648 GFP_NOFS);
2649 btrfs_commit_transaction(trans, root);
2650out:
2651 btrfs_free_path(path);
2652 return ret;
2653}
2654
2655int btrfs_grow_extent_tree(struct btrfs_trans_handle *trans,
2656 struct btrfs_root *root, u64 new_size)
2657{
Chris Mason0b86a832008-03-24 15:01:56 -04002658 btrfs_set_super_total_bytes(&root->fs_info->super_copy, new_size);
Chris Masonedbd8d42007-12-21 16:27:24 -05002659 return 0;
2660}
2661
Chris Mason0b86a832008-03-24 15:01:56 -04002662int find_first_block_group(struct btrfs_root *root, struct btrfs_path *path,
2663 struct btrfs_key *key)
2664{
2665 int ret;
2666 struct btrfs_key found_key;
2667 struct extent_buffer *leaf;
2668 int slot;
2669
2670 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
2671 if (ret < 0)
2672 return ret;
2673 while(1) {
2674 slot = path->slots[0];
2675 leaf = path->nodes[0];
2676 if (slot >= btrfs_header_nritems(leaf)) {
2677 ret = btrfs_next_leaf(root, path);
2678 if (ret == 0)
2679 continue;
2680 if (ret < 0)
2681 goto error;
2682 break;
2683 }
2684 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2685
2686 if (found_key.objectid >= key->objectid &&
2687 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY)
2688 return 0;
2689 path->slots[0]++;
2690 }
2691 ret = -ENOENT;
2692error:
2693 return ret;
2694}
2695
Chris Mason9078a3e2007-04-26 16:46:15 -04002696int btrfs_read_block_groups(struct btrfs_root *root)
2697{
2698 struct btrfs_path *path;
2699 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04002700 int bit;
Chris Mason9078a3e2007-04-26 16:46:15 -04002701 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04002702 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04002703 struct btrfs_space_info *space_info;
Chris Masond1310b22008-01-24 16:13:08 -05002704 struct extent_io_tree *block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002705 struct btrfs_key key;
2706 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04002707 struct extent_buffer *leaf;
Chris Mason96b51792007-10-15 16:15:19 -04002708
2709 block_group_cache = &info->block_group_cache;
Chris Masonbe744172007-05-06 10:15:01 -04002710 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04002711 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04002712 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002713 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04002714 path = btrfs_alloc_path();
2715 if (!path)
2716 return -ENOMEM;
2717
2718 while(1) {
Chris Mason0b86a832008-03-24 15:01:56 -04002719 ret = find_first_block_group(root, path, &key);
2720 if (ret > 0) {
2721 ret = 0;
2722 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04002723 }
Chris Mason0b86a832008-03-24 15:01:56 -04002724 if (ret != 0)
2725 goto error;
2726
Chris Mason5f39d392007-10-15 16:14:19 -04002727 leaf = path->nodes[0];
2728 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason9078a3e2007-04-26 16:46:15 -04002729 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2730 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04002731 ret = -ENOMEM;
Chris Mason9078a3e2007-04-26 16:46:15 -04002732 break;
2733 }
Chris Mason3e1ad542007-05-07 20:03:49 -04002734
Chris Mason5f39d392007-10-15 16:14:19 -04002735 read_extent_buffer(leaf, &cache->item,
2736 btrfs_item_ptr_offset(leaf, path->slots[0]),
2737 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04002738 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Masone37c9e62007-05-09 20:13:14 -04002739 cache->cached = 0;
Yan324ae4d2007-11-16 14:57:08 -05002740 cache->pinned = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04002741
Chris Mason9078a3e2007-04-26 16:46:15 -04002742 key.objectid = found_key.objectid + found_key.offset;
2743 btrfs_release_path(root, path);
Chris Mason0b86a832008-03-24 15:01:56 -04002744 cache->flags = btrfs_block_group_flags(&cache->item);
2745 bit = 0;
2746 if (cache->flags & BTRFS_BLOCK_GROUP_DATA) {
Chris Mason96b51792007-10-15 16:15:19 -04002747 bit = BLOCK_GROUP_DATA;
Chris Mason0b86a832008-03-24 15:01:56 -04002748 } else if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
2749 bit = BLOCK_GROUP_SYSTEM;
2750 } else if (cache->flags & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason96b51792007-10-15 16:15:19 -04002751 bit = BLOCK_GROUP_METADATA;
Chris Mason31f3c992007-04-30 15:25:45 -04002752 }
Chris Mason8790d502008-04-03 16:29:03 -04002753 set_avail_alloc_bits(info, cache->flags);
Chris Mason96b51792007-10-15 16:15:19 -04002754
Chris Mason6324fbf2008-03-24 15:01:59 -04002755 ret = update_space_info(info, cache->flags, found_key.offset,
2756 btrfs_block_group_used(&cache->item),
2757 &space_info);
2758 BUG_ON(ret);
2759 cache->space_info = space_info;
2760
Chris Mason96b51792007-10-15 16:15:19 -04002761 /* use EXTENT_LOCKED to prevent merging */
2762 set_extent_bits(block_group_cache, found_key.objectid,
2763 found_key.objectid + found_key.offset - 1,
2764 bit | EXTENT_LOCKED, GFP_NOFS);
2765 set_state_private(block_group_cache, found_key.objectid,
Jens Axboeae2f5412007-10-19 09:22:59 -04002766 (unsigned long)cache);
Chris Mason96b51792007-10-15 16:15:19 -04002767
Chris Mason9078a3e2007-04-26 16:46:15 -04002768 if (key.objectid >=
Chris Masondb945352007-10-15 16:15:53 -04002769 btrfs_super_total_bytes(&info->super_copy))
Chris Mason9078a3e2007-04-26 16:46:15 -04002770 break;
2771 }
Chris Mason0b86a832008-03-24 15:01:56 -04002772 ret = 0;
2773error:
Chris Mason9078a3e2007-04-26 16:46:15 -04002774 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04002775 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04002776}
Chris Mason6324fbf2008-03-24 15:01:59 -04002777
2778int btrfs_make_block_group(struct btrfs_trans_handle *trans,
2779 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04002780 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04002781 u64 size)
2782{
2783 int ret;
2784 int bit = 0;
2785 struct btrfs_root *extent_root;
2786 struct btrfs_block_group_cache *cache;
2787 struct extent_io_tree *block_group_cache;
2788
2789 extent_root = root->fs_info->extent_root;
2790 block_group_cache = &root->fs_info->block_group_cache;
2791
2792 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2793 BUG_ON(!cache);
Chris Masone17cade2008-04-15 15:41:47 -04002794 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04002795 cache->key.offset = size;
2796 cache->cached = 0;
2797 cache->pinned = 0;
Chris Masone17cade2008-04-15 15:41:47 -04002798
Chris Mason6324fbf2008-03-24 15:01:59 -04002799 btrfs_set_key_type(&cache->key, BTRFS_BLOCK_GROUP_ITEM_KEY);
2800 memset(&cache->item, 0, sizeof(cache->item));
2801 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04002802 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
2803 cache->flags = type;
2804 btrfs_set_block_group_flags(&cache->item, type);
2805
2806 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
2807 &cache->space_info);
2808 BUG_ON(ret);
2809
Chris Masond18a2c42008-04-04 15:40:00 -04002810 bit = block_group_state_bits(type);
Chris Masone17cade2008-04-15 15:41:47 -04002811 set_extent_bits(block_group_cache, chunk_offset,
2812 chunk_offset + size - 1,
Chris Mason6324fbf2008-03-24 15:01:59 -04002813 bit | EXTENT_LOCKED, GFP_NOFS);
Chris Mason6324fbf2008-03-24 15:01:59 -04002814
Chris Masone17cade2008-04-15 15:41:47 -04002815 set_state_private(block_group_cache, chunk_offset,
2816 (unsigned long)cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04002817 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
2818 sizeof(cache->item));
2819 BUG_ON(ret);
2820
2821 finish_current_insert(trans, extent_root);
2822 ret = del_pending_extents(trans, extent_root);
2823 BUG_ON(ret);
Chris Masond18a2c42008-04-04 15:40:00 -04002824 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason6324fbf2008-03-24 15:01:59 -04002825 return 0;
2826}