blob: 0c0dde6d96149288a6d6abb5ce1207fddc2cb882 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Zach Brownec6b9102007-07-11 10:00:37 -040019#include <linux/sched.h>
Chris Mason7bb86312007-12-11 09:25:06 -050020#include <linux/crc32c.h>
Chris Masonedbd8d42007-12-21 16:27:24 -050021#include <linux/pagemap.h>
Chris Mason74493f72007-12-11 09:25:06 -050022#include "hash.h"
Chris Masonfec577f2007-02-26 10:40:21 -050023#include "ctree.h"
24#include "disk-io.h"
25#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040026#include "transaction.h"
Chris Mason0b86a832008-03-24 15:01:56 -040027#include "volumes.h"
Chris Masonfec577f2007-02-26 10:40:21 -050028
Chris Mason0b86a832008-03-24 15:01:56 -040029#define BLOCK_GROUP_DATA EXTENT_WRITEBACK
Chris Mason96b51792007-10-15 16:15:19 -040030#define BLOCK_GROUP_METADATA EXTENT_UPTODATE
Chris Mason0b86a832008-03-24 15:01:56 -040031#define BLOCK_GROUP_SYSTEM EXTENT_NEW
32
Chris Mason96b51792007-10-15 16:15:19 -040033#define BLOCK_GROUP_DIRTY EXTENT_DIRTY
34
Chris Masone089f052007-03-16 16:20:31 -040035static int finish_current_insert(struct btrfs_trans_handle *trans, struct
36 btrfs_root *extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -040037static int del_pending_extents(struct btrfs_trans_handle *trans, struct
38 btrfs_root *extent_root);
Chris Mason6324fbf2008-03-24 15:01:59 -040039int btrfs_make_block_group(struct btrfs_trans_handle *trans,
40 struct btrfs_root *root, u64 bytes_used,
41 u64 type, u64 chunk_tree, u64 chunk_objectid,
42 u64 size);
Yand548ee52008-01-03 13:56:30 -050043
Chris Masonfec577f2007-02-26 10:40:21 -050044
Chris Masone37c9e62007-05-09 20:13:14 -040045static int cache_block_group(struct btrfs_root *root,
46 struct btrfs_block_group_cache *block_group)
47{
48 struct btrfs_path *path;
49 int ret;
50 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -040051 struct extent_buffer *leaf;
Chris Masond1310b22008-01-24 16:13:08 -050052 struct extent_io_tree *free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040053 int slot;
Chris Masone37c9e62007-05-09 20:13:14 -040054 u64 last = 0;
55 u64 hole_size;
Yan7d7d6062007-09-14 16:15:28 -040056 u64 first_free;
Chris Masone37c9e62007-05-09 20:13:14 -040057 int found = 0;
58
Chris Mason00f5c792007-11-30 10:09:33 -050059 if (!block_group)
60 return 0;
61
Chris Masone37c9e62007-05-09 20:13:14 -040062 root = root->fs_info->extent_root;
Chris Masonf510cfe2007-10-15 16:14:48 -040063 free_space_cache = &root->fs_info->free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040064
65 if (block_group->cached)
66 return 0;
Chris Masonf510cfe2007-10-15 16:14:48 -040067
Chris Masone37c9e62007-05-09 20:13:14 -040068 path = btrfs_alloc_path();
69 if (!path)
70 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -040071
Chris Mason2cc58cf2007-08-27 16:49:44 -040072 path->reada = 2;
Yan7d7d6062007-09-14 16:15:28 -040073 first_free = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040074 key.objectid = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040075 key.offset = 0;
76 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
77 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
78 if (ret < 0)
79 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -040080 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
Yand548ee52008-01-03 13:56:30 -050081 if (ret < 0)
82 return ret;
83 if (ret == 0) {
84 leaf = path->nodes[0];
85 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
86 if (key.objectid + key.offset > first_free)
87 first_free = key.objectid + key.offset;
88 }
Chris Masone37c9e62007-05-09 20:13:14 -040089 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -040090 leaf = path->nodes[0];
Chris Masone37c9e62007-05-09 20:13:14 -040091 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -040092 if (slot >= btrfs_header_nritems(leaf)) {
Chris Masone37c9e62007-05-09 20:13:14 -040093 ret = btrfs_next_leaf(root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -040094 if (ret < 0)
95 goto err;
Chris Masonde428b62007-05-18 13:28:27 -040096 if (ret == 0) {
Chris Masone37c9e62007-05-09 20:13:14 -040097 continue;
Chris Masonde428b62007-05-18 13:28:27 -040098 } else {
Chris Masone37c9e62007-05-09 20:13:14 -040099 break;
100 }
101 }
Chris Mason5f39d392007-10-15 16:14:19 -0400102 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan7d7d6062007-09-14 16:15:28 -0400103 if (key.objectid < block_group->key.objectid) {
Yan7d7d6062007-09-14 16:15:28 -0400104 goto next;
105 }
Chris Masone37c9e62007-05-09 20:13:14 -0400106 if (key.objectid >= block_group->key.objectid +
107 block_group->key.offset) {
Yan7d7d6062007-09-14 16:15:28 -0400108 break;
109 }
110
111 if (btrfs_key_type(&key) == BTRFS_EXTENT_ITEM_KEY) {
112 if (!found) {
113 last = first_free;
114 found = 1;
Chris Masone37c9e62007-05-09 20:13:14 -0400115 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400116 if (key.objectid > last) {
117 hole_size = key.objectid - last;
118 set_extent_dirty(free_space_cache, last,
119 last + hole_size - 1,
120 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -0400121 }
Yan7d7d6062007-09-14 16:15:28 -0400122 last = key.objectid + key.offset;
Chris Masone37c9e62007-05-09 20:13:14 -0400123 }
Yan7d7d6062007-09-14 16:15:28 -0400124next:
Chris Masone37c9e62007-05-09 20:13:14 -0400125 path->slots[0]++;
126 }
127
Yan7d7d6062007-09-14 16:15:28 -0400128 if (!found)
129 last = first_free;
130 if (block_group->key.objectid +
131 block_group->key.offset > last) {
132 hole_size = block_group->key.objectid +
133 block_group->key.offset - last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400134 set_extent_dirty(free_space_cache, last,
135 last + hole_size - 1, GFP_NOFS);
Yan7d7d6062007-09-14 16:15:28 -0400136 }
Chris Masone37c9e62007-05-09 20:13:14 -0400137 block_group->cached = 1;
Chris Mason54aa1f42007-06-22 14:16:25 -0400138err:
Chris Masone37c9e62007-05-09 20:13:14 -0400139 btrfs_free_path(path);
140 return 0;
141}
142
Chris Mason5276aed2007-06-11 21:33:38 -0400143struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
144 btrfs_fs_info *info,
Chris Masondb945352007-10-15 16:15:53 -0400145 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400146{
Chris Masond1310b22008-01-24 16:13:08 -0500147 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -0400148 struct btrfs_block_group_cache *block_group = NULL;
149 u64 ptr;
150 u64 start;
151 u64 end;
Chris Masonbe744172007-05-06 10:15:01 -0400152 int ret;
153
Chris Mason96b51792007-10-15 16:15:19 -0400154 block_group_cache = &info->block_group_cache;
155 ret = find_first_extent_bit(block_group_cache,
Chris Masondb945352007-10-15 16:15:53 -0400156 bytenr, &start, &end,
Chris Mason0b86a832008-03-24 15:01:56 -0400157 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA |
158 BLOCK_GROUP_SYSTEM);
Chris Masonbe744172007-05-06 10:15:01 -0400159 if (ret) {
Chris Mason96b51792007-10-15 16:15:19 -0400160 return NULL;
Chris Masonbe744172007-05-06 10:15:01 -0400161 }
Chris Mason96b51792007-10-15 16:15:19 -0400162 ret = get_state_private(block_group_cache, start, &ptr);
163 if (ret)
164 return NULL;
165
Jens Axboeae2f5412007-10-19 09:22:59 -0400166 block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Yan5cf66422007-11-16 14:57:09 -0500167 if (block_group->key.objectid <= bytenr && bytenr <
Chris Mason96b51792007-10-15 16:15:19 -0400168 block_group->key.objectid + block_group->key.offset)
169 return block_group;
Chris Masonbe744172007-05-06 10:15:01 -0400170 return NULL;
171}
Chris Mason0b86a832008-03-24 15:01:56 -0400172
173static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
174{
Chris Mason593060d2008-03-25 16:50:33 -0400175 return (cache->flags & bits) == bits;
Chris Mason0b86a832008-03-24 15:01:56 -0400176}
177
178static int noinline find_search_start(struct btrfs_root *root,
Chris Mason98ed5172008-01-03 10:01:48 -0500179 struct btrfs_block_group_cache **cache_ret,
Chris Mason0b86a832008-03-24 15:01:56 -0400180 u64 *start_ret, int num, int data)
Chris Masone37c9e62007-05-09 20:13:14 -0400181{
Chris Masone37c9e62007-05-09 20:13:14 -0400182 int ret;
183 struct btrfs_block_group_cache *cache = *cache_ret;
Chris Masond7fc6402008-02-18 12:12:38 -0500184 struct extent_io_tree *free_space_cache;
Chris Mason7d1660d2008-03-24 15:02:03 -0400185 struct extent_state *state;
Chris Masone19caa52007-10-15 16:17:44 -0400186 u64 last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400187 u64 start = 0;
Chris Mason257d0ce2007-11-07 21:08:16 -0500188 u64 cache_miss = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500189 u64 total_fs_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -0400190 u64 search_start = *start_ret;
Chris Masonf84a8b32007-11-06 10:26:29 -0500191 int wrapped = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400192
Chris Mason0b86a832008-03-24 15:01:56 -0400193 if (!cache)
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500194 goto out;
Chris Masonc31f8832008-01-08 15:46:31 -0500195 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masond7fc6402008-02-18 12:12:38 -0500196 free_space_cache = &root->fs_info->free_space_cache;
197
Chris Masone37c9e62007-05-09 20:13:14 -0400198again:
Chris Mason54aa1f42007-06-22 14:16:25 -0400199 ret = cache_block_group(root, cache);
200 if (ret)
201 goto out;
Chris Masonf84a8b32007-11-06 10:26:29 -0500202
Chris Masone19caa52007-10-15 16:17:44 -0400203 last = max(search_start, cache->key.objectid);
Chris Mason0b86a832008-03-24 15:01:56 -0400204 if (!block_group_bits(cache, data)) {
205 goto new_group;
206 }
Chris Masone19caa52007-10-15 16:17:44 -0400207
Chris Mason7d1660d2008-03-24 15:02:03 -0400208 spin_lock_irq(&free_space_cache->lock);
209 state = find_first_extent_bit_state(free_space_cache, last, EXTENT_DIRTY);
Chris Masone37c9e62007-05-09 20:13:14 -0400210 while(1) {
Chris Mason7d1660d2008-03-24 15:02:03 -0400211 if (!state) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500212 if (!cache_miss)
213 cache_miss = last;
Chris Mason7d1660d2008-03-24 15:02:03 -0400214 spin_unlock_irq(&free_space_cache->lock);
Chris Masone19caa52007-10-15 16:17:44 -0400215 goto new_group;
216 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400217
Chris Mason7d1660d2008-03-24 15:02:03 -0400218 start = max(last, state->start);
219 last = state->end + 1;
Chris Mason257d0ce2007-11-07 21:08:16 -0500220 if (last - start < num) {
221 if (last == cache->key.objectid + cache->key.offset)
222 cache_miss = start;
Chris Mason7d1660d2008-03-24 15:02:03 -0400223 do {
224 state = extent_state_next(state);
225 } while(state && !(state->state & EXTENT_DIRTY));
Chris Masonf510cfe2007-10-15 16:14:48 -0400226 continue;
Chris Mason257d0ce2007-11-07 21:08:16 -0500227 }
Chris Mason7d1660d2008-03-24 15:02:03 -0400228 spin_unlock_irq(&free_space_cache->lock);
Chris Mason0b86a832008-03-24 15:01:56 -0400229 if (start + num > cache->key.objectid + cache->key.offset)
Chris Masone37c9e62007-05-09 20:13:14 -0400230 goto new_group;
Chris Masonc31f8832008-01-08 15:46:31 -0500231 if (start + num > total_fs_bytes)
232 goto new_group;
Chris Mason8790d502008-04-03 16:29:03 -0400233 if (!block_group_bits(cache, data)) {
Chris Mason611f0e02008-04-03 16:29:03 -0400234 printk("block group bits don't match %Lu %d\n", cache->flags, data);
Chris Mason8790d502008-04-03 16:29:03 -0400235 }
Chris Mason0b86a832008-03-24 15:01:56 -0400236 *start_ret = start;
237 return 0;
Chris Mason8790d502008-04-03 16:29:03 -0400238 }
239out:
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500240 cache = btrfs_lookup_block_group(root->fs_info, search_start);
241 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -0400242 printk("Unable to find block group for %Lu\n", search_start);
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500243 WARN_ON(1);
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500244 }
Chris Mason0b86a832008-03-24 15:01:56 -0400245 return -ENOSPC;
Chris Masone37c9e62007-05-09 20:13:14 -0400246
247new_group:
Chris Masone19caa52007-10-15 16:17:44 -0400248 last = cache->key.objectid + cache->key.offset;
Chris Masonf84a8b32007-11-06 10:26:29 -0500249wrapped:
Chris Masone19caa52007-10-15 16:17:44 -0400250 cache = btrfs_lookup_block_group(root->fs_info, last);
Chris Masonc31f8832008-01-08 15:46:31 -0500251 if (!cache || cache->key.objectid >= total_fs_bytes) {
Chris Mason0e4de582007-11-26 10:55:49 -0500252no_cache:
Chris Masonf84a8b32007-11-06 10:26:29 -0500253 if (!wrapped) {
254 wrapped = 1;
255 last = search_start;
Chris Masonf84a8b32007-11-06 10:26:29 -0500256 goto wrapped;
257 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500258 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -0400259 }
Chris Mason257d0ce2007-11-07 21:08:16 -0500260 if (cache_miss && !cache->cached) {
261 cache_block_group(root, cache);
262 last = cache_miss;
Chris Mason257d0ce2007-11-07 21:08:16 -0500263 cache = btrfs_lookup_block_group(root->fs_info, last);
264 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500265 cache = btrfs_find_block_group(root, cache, last, data, 0);
Chris Mason0e4de582007-11-26 10:55:49 -0500266 if (!cache)
267 goto no_cache;
Chris Masone37c9e62007-05-09 20:13:14 -0400268 *cache_ret = cache;
Chris Mason257d0ce2007-11-07 21:08:16 -0500269 cache_miss = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400270 goto again;
271}
272
Chris Mason84f54cf2007-06-12 07:43:08 -0400273static u64 div_factor(u64 num, int factor)
274{
Chris Mason257d0ce2007-11-07 21:08:16 -0500275 if (factor == 10)
276 return num;
Chris Mason84f54cf2007-06-12 07:43:08 -0400277 num *= factor;
278 do_div(num, 10);
279 return num;
280}
281
Chris Mason6324fbf2008-03-24 15:01:59 -0400282static int block_group_state_bits(u64 flags)
283{
284 int bits = 0;
285 if (flags & BTRFS_BLOCK_GROUP_DATA)
286 bits |= BLOCK_GROUP_DATA;
287 if (flags & BTRFS_BLOCK_GROUP_METADATA)
288 bits |= BLOCK_GROUP_METADATA;
289 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
290 bits |= BLOCK_GROUP_SYSTEM;
291 return bits;
292}
293
Chris Mason31f3c992007-04-30 15:25:45 -0400294struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
295 struct btrfs_block_group_cache
Chris Masonbe744172007-05-06 10:15:01 -0400296 *hint, u64 search_start,
Chris Masonde428b62007-05-18 13:28:27 -0400297 int data, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400298{
Chris Mason96b51792007-10-15 16:15:19 -0400299 struct btrfs_block_group_cache *cache;
Chris Masond1310b22008-01-24 16:13:08 -0500300 struct extent_io_tree *block_group_cache;
Chris Mason31f3c992007-04-30 15:25:45 -0400301 struct btrfs_block_group_cache *found_group = NULL;
Chris Masoncd1bc462007-04-27 10:08:34 -0400302 struct btrfs_fs_info *info = root->fs_info;
303 u64 used;
Chris Mason31f3c992007-04-30 15:25:45 -0400304 u64 last = 0;
305 u64 hint_last;
Chris Mason96b51792007-10-15 16:15:19 -0400306 u64 start;
307 u64 end;
308 u64 free_check;
309 u64 ptr;
Chris Masonc31f8832008-01-08 15:46:31 -0500310 u64 total_fs_bytes;
Chris Mason96b51792007-10-15 16:15:19 -0400311 int bit;
Chris Masoncd1bc462007-04-27 10:08:34 -0400312 int ret;
Chris Mason31f3c992007-04-30 15:25:45 -0400313 int full_search = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400314 int factor = 8;
315
Chris Mason96b51792007-10-15 16:15:19 -0400316 block_group_cache = &info->block_group_cache;
Chris Masonc31f8832008-01-08 15:46:31 -0500317 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Mason96b51792007-10-15 16:15:19 -0400318
Chris Masonde428b62007-05-18 13:28:27 -0400319 if (!owner)
Chris Masonf84a8b32007-11-06 10:26:29 -0500320 factor = 8;
Chris Masonbe744172007-05-06 10:15:01 -0400321
Chris Mason6324fbf2008-03-24 15:01:59 -0400322 bit = block_group_state_bits(data);
Chris Masonbe744172007-05-06 10:15:01 -0400323
Chris Masonc31f8832008-01-08 15:46:31 -0500324 if (search_start && search_start < total_fs_bytes) {
Chris Masonbe744172007-05-06 10:15:01 -0400325 struct btrfs_block_group_cache *shint;
Chris Mason5276aed2007-06-11 21:33:38 -0400326 shint = btrfs_lookup_block_group(info, search_start);
Chris Mason0b86a832008-03-24 15:01:56 -0400327 if (shint && block_group_bits(shint, data)) {
Chris Masonbe744172007-05-06 10:15:01 -0400328 used = btrfs_block_group_used(&shint->item);
Yan324ae4d2007-11-16 14:57:08 -0500329 if (used + shint->pinned <
330 div_factor(shint->key.offset, factor)) {
Chris Masonbe744172007-05-06 10:15:01 -0400331 return shint;
332 }
333 }
334 }
Chris Mason0b86a832008-03-24 15:01:56 -0400335 if (hint && block_group_bits(hint, data) &&
336 hint->key.objectid < total_fs_bytes) {
Chris Mason31f3c992007-04-30 15:25:45 -0400337 used = btrfs_block_group_used(&hint->item);
Yan324ae4d2007-11-16 14:57:08 -0500338 if (used + hint->pinned <
339 div_factor(hint->key.offset, factor)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400340 return hint;
341 }
Chris Masone19caa52007-10-15 16:17:44 -0400342 last = hint->key.objectid + hint->key.offset;
Chris Mason31f3c992007-04-30 15:25:45 -0400343 hint_last = last;
344 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400345 if (hint)
346 hint_last = max(hint->key.objectid, search_start);
347 else
348 hint_last = search_start;
349
Chris Masonc31f8832008-01-08 15:46:31 -0500350 if (hint_last >= total_fs_bytes)
351 hint_last = search_start;
Chris Masone37c9e62007-05-09 20:13:14 -0400352 last = hint_last;
Chris Mason31f3c992007-04-30 15:25:45 -0400353 }
Chris Mason31f3c992007-04-30 15:25:45 -0400354again:
Chris Masoncd1bc462007-04-27 10:08:34 -0400355 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400356 ret = find_first_extent_bit(block_group_cache, last,
357 &start, &end, bit);
358 if (ret)
Chris Masoncd1bc462007-04-27 10:08:34 -0400359 break;
Chris Mason96b51792007-10-15 16:15:19 -0400360
361 ret = get_state_private(block_group_cache, start, &ptr);
362 if (ret)
363 break;
364
Jens Axboeae2f5412007-10-19 09:22:59 -0400365 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400366 last = cache->key.objectid + cache->key.offset;
367 used = btrfs_block_group_used(&cache->item);
368
Chris Masonc31f8832008-01-08 15:46:31 -0500369 if (cache->key.objectid > total_fs_bytes)
370 break;
371
Chris Mason8790d502008-04-03 16:29:03 -0400372 if (block_group_bits(cache, data)) {
373 if (full_search)
374 free_check = cache->key.offset;
375 else
376 free_check = div_factor(cache->key.offset,
377 factor);
Chris Mason6324fbf2008-03-24 15:01:59 -0400378
Chris Mason8790d502008-04-03 16:29:03 -0400379 if (used + cache->pinned < free_check) {
380 found_group = cache;
381 goto found;
382 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400383 }
Chris Masonde428b62007-05-18 13:28:27 -0400384 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400385 }
Chris Mason31f3c992007-04-30 15:25:45 -0400386 if (!full_search) {
Chris Masonbe744172007-05-06 10:15:01 -0400387 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400388 full_search = 1;
389 goto again;
390 }
Chris Masonbe744172007-05-06 10:15:01 -0400391found:
Chris Mason31f3c992007-04-30 15:25:45 -0400392 return found_group;
Chris Masoncd1bc462007-04-27 10:08:34 -0400393}
394
Chris Mason7bb86312007-12-11 09:25:06 -0500395static u64 hash_extent_ref(u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500396 u64 owner, u64 owner_offset)
397{
398 u32 high_crc = ~(u32)0;
399 u32 low_crc = ~(u32)0;
400 __le64 lenum;
401
402 lenum = cpu_to_le64(root_objectid);
403 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Chris Mason7bb86312007-12-11 09:25:06 -0500404 lenum = cpu_to_le64(ref_generation);
405 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500406 if (owner >= BTRFS_FIRST_FREE_OBJECTID) {
407 lenum = cpu_to_le64(owner);
408 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
409 lenum = cpu_to_le64(owner_offset);
410 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
411 }
Chris Mason74493f72007-12-11 09:25:06 -0500412 return ((u64)high_crc << 32) | (u64)low_crc;
413}
414
Chris Mason7bb86312007-12-11 09:25:06 -0500415static int match_extent_ref(struct extent_buffer *leaf,
416 struct btrfs_extent_ref *disk_ref,
417 struct btrfs_extent_ref *cpu_ref)
418{
419 int ret;
420 int len;
421
422 if (cpu_ref->objectid)
423 len = sizeof(*cpu_ref);
424 else
425 len = 2 * sizeof(u64);
426 ret = memcmp_extent_buffer(leaf, cpu_ref, (unsigned long)disk_ref,
427 len);
428 return ret == 0;
429}
430
Chris Mason98ed5172008-01-03 10:01:48 -0500431static int noinline lookup_extent_backref(struct btrfs_trans_handle *trans,
432 struct btrfs_root *root,
433 struct btrfs_path *path, u64 bytenr,
434 u64 root_objectid,
435 u64 ref_generation, u64 owner,
436 u64 owner_offset, int del)
Chris Mason7bb86312007-12-11 09:25:06 -0500437{
438 u64 hash;
439 struct btrfs_key key;
440 struct btrfs_key found_key;
441 struct btrfs_extent_ref ref;
442 struct extent_buffer *leaf;
443 struct btrfs_extent_ref *disk_ref;
444 int ret;
445 int ret2;
446
447 btrfs_set_stack_ref_root(&ref, root_objectid);
448 btrfs_set_stack_ref_generation(&ref, ref_generation);
449 btrfs_set_stack_ref_objectid(&ref, owner);
450 btrfs_set_stack_ref_offset(&ref, owner_offset);
451
452 hash = hash_extent_ref(root_objectid, ref_generation, owner,
453 owner_offset);
454 key.offset = hash;
455 key.objectid = bytenr;
456 key.type = BTRFS_EXTENT_REF_KEY;
457
458 while (1) {
459 ret = btrfs_search_slot(trans, root, &key, path,
460 del ? -1 : 0, del);
461 if (ret < 0)
462 goto out;
463 leaf = path->nodes[0];
464 if (ret != 0) {
465 u32 nritems = btrfs_header_nritems(leaf);
466 if (path->slots[0] >= nritems) {
467 ret2 = btrfs_next_leaf(root, path);
468 if (ret2)
469 goto out;
470 leaf = path->nodes[0];
471 }
472 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
473 if (found_key.objectid != bytenr ||
474 found_key.type != BTRFS_EXTENT_REF_KEY)
475 goto out;
476 key.offset = found_key.offset;
477 if (del) {
478 btrfs_release_path(root, path);
479 continue;
480 }
481 }
482 disk_ref = btrfs_item_ptr(path->nodes[0],
483 path->slots[0],
484 struct btrfs_extent_ref);
485 if (match_extent_ref(path->nodes[0], disk_ref, &ref)) {
486 ret = 0;
487 goto out;
488 }
489 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
490 key.offset = found_key.offset + 1;
491 btrfs_release_path(root, path);
492 }
493out:
494 return ret;
495}
496
Chris Masond8d5f3e2007-12-11 12:42:00 -0500497/*
498 * Back reference rules. Back refs have three main goals:
499 *
500 * 1) differentiate between all holders of references to an extent so that
501 * when a reference is dropped we can make sure it was a valid reference
502 * before freeing the extent.
503 *
504 * 2) Provide enough information to quickly find the holders of an extent
505 * if we notice a given block is corrupted or bad.
506 *
507 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
508 * maintenance. This is actually the same as #2, but with a slightly
509 * different use case.
510 *
511 * File extents can be referenced by:
512 *
513 * - multiple snapshots, subvolumes, or different generations in one subvol
514 * - different files inside a single subvolume (in theory, not implemented yet)
515 * - different offsets inside a file (bookend extents in file.c)
516 *
517 * The extent ref structure has fields for:
518 *
519 * - Objectid of the subvolume root
520 * - Generation number of the tree holding the reference
521 * - objectid of the file holding the reference
522 * - offset in the file corresponding to the key holding the reference
523 *
524 * When a file extent is allocated the fields are filled in:
525 * (root_key.objectid, trans->transid, inode objectid, offset in file)
526 *
527 * When a leaf is cow'd new references are added for every file extent found
528 * in the leaf. It looks the same as the create case, but trans->transid
529 * will be different when the block is cow'd.
530 *
531 * (root_key.objectid, trans->transid, inode objectid, offset in file)
532 *
533 * When a file extent is removed either during snapshot deletion or file
534 * truncation, the corresponding back reference is found
535 * by searching for:
536 *
537 * (btrfs_header_owner(leaf), btrfs_header_generation(leaf),
538 * inode objectid, offset in file)
539 *
540 * Btree extents can be referenced by:
541 *
542 * - Different subvolumes
543 * - Different generations of the same subvolume
544 *
545 * Storing sufficient information for a full reverse mapping of a btree
546 * block would require storing the lowest key of the block in the backref,
547 * and it would require updating that lowest key either before write out or
548 * every time it changed. Instead, the objectid of the lowest key is stored
549 * along with the level of the tree block. This provides a hint
550 * about where in the btree the block can be found. Searches through the
551 * btree only need to look for a pointer to that block, so they stop one
552 * level higher than the level recorded in the backref.
553 *
554 * Some btrees do not do reference counting on their extents. These
555 * include the extent tree and the tree of tree roots. Backrefs for these
556 * trees always have a generation of zero.
557 *
558 * When a tree block is created, back references are inserted:
559 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500560 * (root->root_key.objectid, trans->transid or zero, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500561 *
562 * When a tree block is cow'd in a reference counted root,
563 * new back references are added for all the blocks it points to.
564 * These are of the form (trans->transid will have increased since creation):
565 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500566 * (root->root_key.objectid, trans->transid, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500567 *
568 * Because the lowest_key_objectid and the level are just hints
569 * they are not used when backrefs are deleted. When a backref is deleted:
570 *
571 * if backref was for a tree root:
572 * root_objectid = root->root_key.objectid
573 * else
574 * root_objectid = btrfs_header_owner(parent)
575 *
576 * (root_objectid, btrfs_header_generation(parent) or zero, 0, 0)
577 *
578 * Back Reference Key hashing:
579 *
580 * Back references have four fields, each 64 bits long. Unfortunately,
581 * This is hashed into a single 64 bit number and placed into the key offset.
582 * The key objectid corresponds to the first byte in the extent, and the
583 * key type is set to BTRFS_EXTENT_REF_KEY
584 */
Chris Mason7bb86312007-12-11 09:25:06 -0500585int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
586 struct btrfs_root *root,
587 struct btrfs_path *path, u64 bytenr,
588 u64 root_objectid, u64 ref_generation,
589 u64 owner, u64 owner_offset)
Chris Mason74493f72007-12-11 09:25:06 -0500590{
591 u64 hash;
592 struct btrfs_key key;
593 struct btrfs_extent_ref ref;
Chris Mason7bb86312007-12-11 09:25:06 -0500594 struct btrfs_extent_ref *disk_ref;
Chris Mason74493f72007-12-11 09:25:06 -0500595 int ret;
596
597 btrfs_set_stack_ref_root(&ref, root_objectid);
Chris Mason7bb86312007-12-11 09:25:06 -0500598 btrfs_set_stack_ref_generation(&ref, ref_generation);
Chris Mason74493f72007-12-11 09:25:06 -0500599 btrfs_set_stack_ref_objectid(&ref, owner);
600 btrfs_set_stack_ref_offset(&ref, owner_offset);
601
Chris Mason7bb86312007-12-11 09:25:06 -0500602 hash = hash_extent_ref(root_objectid, ref_generation, owner,
603 owner_offset);
Chris Mason74493f72007-12-11 09:25:06 -0500604 key.offset = hash;
605 key.objectid = bytenr;
606 key.type = BTRFS_EXTENT_REF_KEY;
607
608 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(ref));
609 while (ret == -EEXIST) {
Chris Mason7bb86312007-12-11 09:25:06 -0500610 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
611 struct btrfs_extent_ref);
612 if (match_extent_ref(path->nodes[0], disk_ref, &ref))
613 goto out;
614 key.offset++;
615 btrfs_release_path(root, path);
616 ret = btrfs_insert_empty_item(trans, root, path, &key,
617 sizeof(ref));
Chris Mason74493f72007-12-11 09:25:06 -0500618 }
Chris Mason7bb86312007-12-11 09:25:06 -0500619 if (ret)
620 goto out;
621 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
622 struct btrfs_extent_ref);
623 write_extent_buffer(path->nodes[0], &ref, (unsigned long)disk_ref,
624 sizeof(ref));
625 btrfs_mark_buffer_dirty(path->nodes[0]);
626out:
627 btrfs_release_path(root, path);
628 return ret;
Chris Mason74493f72007-12-11 09:25:06 -0500629}
630
Chris Masonb18c6682007-04-17 13:26:50 -0400631int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
632 struct btrfs_root *root,
Chris Mason74493f72007-12-11 09:25:06 -0500633 u64 bytenr, u64 num_bytes,
Chris Mason7bb86312007-12-11 09:25:06 -0500634 u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500635 u64 owner, u64 owner_offset)
Chris Mason02217ed2007-03-02 16:08:05 -0500636{
Chris Mason5caf2a02007-04-02 11:20:42 -0400637 struct btrfs_path *path;
Chris Mason02217ed2007-03-02 16:08:05 -0500638 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400639 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400640 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400641 struct btrfs_extent_item *item;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400642 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500643
Chris Masondb945352007-10-15 16:15:53 -0400644 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400645 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400646 if (!path)
647 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -0400648
Chris Masonb0331a42008-01-08 15:46:31 -0500649 path->reada = 0;
Chris Masondb945352007-10-15 16:15:53 -0400650 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -0400651 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -0400652 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -0400653 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400654 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400655 if (ret < 0)
656 return ret;
Chris Masona429e512007-04-18 16:15:28 -0400657 if (ret != 0) {
Chris Masona28ec192007-03-06 20:08:01 -0500658 BUG();
Chris Masona429e512007-04-18 16:15:28 -0400659 }
Chris Mason02217ed2007-03-02 16:08:05 -0500660 BUG_ON(ret != 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400661 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400662 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400663 refs = btrfs_extent_refs(l, item);
664 btrfs_set_extent_refs(l, item, refs + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -0400665 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masona28ec192007-03-06 20:08:01 -0500666
Chris Mason5caf2a02007-04-02 11:20:42 -0400667 btrfs_release_path(root->fs_info->extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -0500668
Chris Masonb0331a42008-01-08 15:46:31 -0500669 path->reada = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500670 ret = btrfs_insert_extent_backref(trans, root->fs_info->extent_root,
671 path, bytenr, root_objectid,
672 ref_generation, owner, owner_offset);
673 BUG_ON(ret);
Chris Mason9f5fae22007-03-20 14:38:32 -0400674 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400675 del_pending_extents(trans, root->fs_info->extent_root);
Chris Mason74493f72007-12-11 09:25:06 -0500676
677 btrfs_free_path(path);
Chris Mason02217ed2007-03-02 16:08:05 -0500678 return 0;
679}
680
Chris Masone9d0b132007-08-10 14:06:19 -0400681int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
682 struct btrfs_root *root)
683{
684 finish_current_insert(trans, root->fs_info->extent_root);
685 del_pending_extents(trans, root->fs_info->extent_root);
686 return 0;
687}
688
Chris Masonb18c6682007-04-17 13:26:50 -0400689static int lookup_extent_ref(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -0400690 struct btrfs_root *root, u64 bytenr,
691 u64 num_bytes, u32 *refs)
Chris Masona28ec192007-03-06 20:08:01 -0500692{
Chris Mason5caf2a02007-04-02 11:20:42 -0400693 struct btrfs_path *path;
Chris Masona28ec192007-03-06 20:08:01 -0500694 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400695 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400696 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400697 struct btrfs_extent_item *item;
Chris Mason5caf2a02007-04-02 11:20:42 -0400698
Chris Masondb945352007-10-15 16:15:53 -0400699 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400700 path = btrfs_alloc_path();
Chris Masonb0331a42008-01-08 15:46:31 -0500701 path->reada = 0;
Chris Masondb945352007-10-15 16:15:53 -0400702 key.objectid = bytenr;
703 key.offset = num_bytes;
Chris Mason62e27492007-03-15 12:56:47 -0400704 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5caf2a02007-04-02 11:20:42 -0400705 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400706 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400707 if (ret < 0)
708 goto out;
Chris Mason5f39d392007-10-15 16:14:19 -0400709 if (ret != 0) {
710 btrfs_print_leaf(root, path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400711 printk("failed to find block number %Lu\n", bytenr);
Chris Masona28ec192007-03-06 20:08:01 -0500712 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -0400713 }
714 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400715 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400716 *refs = btrfs_extent_refs(l, item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400717out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400718 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -0500719 return 0;
720}
721
Chris Masonbe20aa92007-12-17 20:14:01 -0500722u32 btrfs_count_snapshots_in_path(struct btrfs_root *root,
723 struct btrfs_path *count_path,
724 u64 first_extent)
725{
726 struct btrfs_root *extent_root = root->fs_info->extent_root;
727 struct btrfs_path *path;
728 u64 bytenr;
729 u64 found_objectid;
Chris Mason56b453c2008-01-03 09:08:27 -0500730 u64 root_objectid = root->root_key.objectid;
Chris Masonbe20aa92007-12-17 20:14:01 -0500731 u32 total_count = 0;
732 u32 cur_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500733 u32 nritems;
734 int ret;
735 struct btrfs_key key;
736 struct btrfs_key found_key;
737 struct extent_buffer *l;
738 struct btrfs_extent_item *item;
739 struct btrfs_extent_ref *ref_item;
740 int level = -1;
741
742 path = btrfs_alloc_path();
743again:
744 if (level == -1)
745 bytenr = first_extent;
746 else
747 bytenr = count_path->nodes[level]->start;
748
749 cur_count = 0;
750 key.objectid = bytenr;
751 key.offset = 0;
752
753 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
754 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
755 if (ret < 0)
756 goto out;
757 BUG_ON(ret == 0);
758
759 l = path->nodes[0];
760 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
761
762 if (found_key.objectid != bytenr ||
763 found_key.type != BTRFS_EXTENT_ITEM_KEY) {
764 goto out;
765 }
766
767 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Masonbe20aa92007-12-17 20:14:01 -0500768 while (1) {
Chris Masonbd098352008-01-03 13:23:19 -0500769 l = path->nodes[0];
Chris Masonbe20aa92007-12-17 20:14:01 -0500770 nritems = btrfs_header_nritems(l);
771 if (path->slots[0] >= nritems) {
772 ret = btrfs_next_leaf(extent_root, path);
773 if (ret == 0)
774 continue;
775 break;
776 }
777 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
778 if (found_key.objectid != bytenr)
779 break;
Chris Masonbd098352008-01-03 13:23:19 -0500780
Chris Masonbe20aa92007-12-17 20:14:01 -0500781 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
782 path->slots[0]++;
783 continue;
784 }
785
786 cur_count++;
787 ref_item = btrfs_item_ptr(l, path->slots[0],
788 struct btrfs_extent_ref);
789 found_objectid = btrfs_ref_root(l, ref_item);
790
Chris Mason56b453c2008-01-03 09:08:27 -0500791 if (found_objectid != root_objectid) {
792 total_count = 2;
Chris Mason4313b392008-01-03 09:08:48 -0500793 goto out;
Chris Mason56b453c2008-01-03 09:08:27 -0500794 }
795 total_count = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500796 path->slots[0]++;
797 }
798 if (cur_count == 0) {
799 total_count = 0;
800 goto out;
801 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500802 if (level >= 0 && root->node == count_path->nodes[level])
803 goto out;
804 level++;
805 btrfs_release_path(root, path);
806 goto again;
807
808out:
809 btrfs_free_path(path);
810 return total_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500811}
Chris Masonc5739bb2007-04-10 09:27:04 -0400812int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -0500813 struct btrfs_root *root, u64 owner_objectid)
Chris Masonc5739bb2007-04-10 09:27:04 -0400814{
Chris Mason7bb86312007-12-11 09:25:06 -0500815 u64 generation;
816 u64 key_objectid;
817 u64 level;
818 u32 nritems;
819 struct btrfs_disk_key disk_key;
820
821 level = btrfs_header_level(root->node);
822 generation = trans->transid;
823 nritems = btrfs_header_nritems(root->node);
824 if (nritems > 0) {
825 if (level == 0)
826 btrfs_item_key(root->node, &disk_key, 0);
827 else
828 btrfs_node_key(root->node, &disk_key, 0);
829 key_objectid = btrfs_disk_key_objectid(&disk_key);
830 } else {
831 key_objectid = 0;
832 }
Chris Masondb945352007-10-15 16:15:53 -0400833 return btrfs_inc_extent_ref(trans, root, root->node->start,
Chris Mason7bb86312007-12-11 09:25:06 -0500834 root->node->len, owner_objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500835 generation, level, key_objectid);
Chris Masonc5739bb2007-04-10 09:27:04 -0400836}
837
Chris Masone089f052007-03-16 16:20:31 -0400838int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400839 struct extent_buffer *buf)
Chris Mason02217ed2007-03-02 16:08:05 -0500840{
Chris Masondb945352007-10-15 16:15:53 -0400841 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400842 u32 nritems;
843 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -0400844 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -0500845 int i;
Chris Masondb945352007-10-15 16:15:53 -0400846 int level;
Chris Mason6407bf62007-03-27 06:33:00 -0400847 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400848 int faili;
Chris Masona28ec192007-03-06 20:08:01 -0500849
Chris Mason3768f362007-03-13 16:47:54 -0400850 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500851 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400852
Chris Masondb945352007-10-15 16:15:53 -0400853 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400854 nritems = btrfs_header_nritems(buf);
855 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400856 if (level == 0) {
857 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400858 btrfs_item_key_to_cpu(buf, &key, i);
859 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -0400860 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400861 fi = btrfs_item_ptr(buf, i,
Chris Mason6407bf62007-03-27 06:33:00 -0400862 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400863 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason236454d2007-04-19 13:37:44 -0400864 BTRFS_FILE_EXTENT_INLINE)
865 continue;
Chris Masondb945352007-10-15 16:15:53 -0400866 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
867 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -0400868 continue;
Chris Masondb945352007-10-15 16:15:53 -0400869 ret = btrfs_inc_extent_ref(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500870 btrfs_file_extent_disk_num_bytes(buf, fi),
871 root->root_key.objectid, trans->transid,
872 key.objectid, key.offset);
Chris Mason54aa1f42007-06-22 14:16:25 -0400873 if (ret) {
874 faili = i;
875 goto fail;
876 }
Chris Mason6407bf62007-03-27 06:33:00 -0400877 } else {
Chris Masondb945352007-10-15 16:15:53 -0400878 bytenr = btrfs_node_blockptr(buf, i);
Chris Mason6caab482007-12-13 09:48:07 -0500879 btrfs_node_key_to_cpu(buf, &key, i);
Chris Masondb945352007-10-15 16:15:53 -0400880 ret = btrfs_inc_extent_ref(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500881 btrfs_level_size(root, level - 1),
882 root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500883 trans->transid,
884 level - 1, key.objectid);
Chris Mason54aa1f42007-06-22 14:16:25 -0400885 if (ret) {
886 faili = i;
887 goto fail;
888 }
Chris Mason6407bf62007-03-27 06:33:00 -0400889 }
Chris Mason02217ed2007-03-02 16:08:05 -0500890 }
891 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400892fail:
Chris Masonccd467d2007-06-28 15:57:36 -0400893 WARN_ON(1);
Chris Mason7bb86312007-12-11 09:25:06 -0500894#if 0
Chris Mason54aa1f42007-06-22 14:16:25 -0400895 for (i =0; i < faili; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400896 if (level == 0) {
897 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400898 btrfs_item_key_to_cpu(buf, &key, i);
899 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -0400900 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400901 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -0400902 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400903 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -0400904 BTRFS_FILE_EXTENT_INLINE)
905 continue;
Chris Masondb945352007-10-15 16:15:53 -0400906 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
907 if (disk_bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -0400908 continue;
Chris Masondb945352007-10-15 16:15:53 -0400909 err = btrfs_free_extent(trans, root, disk_bytenr,
910 btrfs_file_extent_disk_num_bytes(buf,
Chris Mason5f39d392007-10-15 16:14:19 -0400911 fi), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400912 BUG_ON(err);
913 } else {
Chris Masondb945352007-10-15 16:15:53 -0400914 bytenr = btrfs_node_blockptr(buf, i);
915 err = btrfs_free_extent(trans, root, bytenr,
916 btrfs_level_size(root, level - 1), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400917 BUG_ON(err);
918 }
919 }
Chris Mason7bb86312007-12-11 09:25:06 -0500920#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400921 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -0500922}
923
Chris Mason9078a3e2007-04-26 16:46:15 -0400924static int write_one_cache_group(struct btrfs_trans_handle *trans,
925 struct btrfs_root *root,
926 struct btrfs_path *path,
927 struct btrfs_block_group_cache *cache)
928{
929 int ret;
930 int pending_ret;
931 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400932 unsigned long bi;
933 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -0400934
Chris Mason9078a3e2007-04-26 16:46:15 -0400935 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400936 if (ret < 0)
937 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -0400938 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400939
940 leaf = path->nodes[0];
941 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
942 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
943 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -0400944 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400945fail:
Chris Mason9078a3e2007-04-26 16:46:15 -0400946 finish_current_insert(trans, extent_root);
947 pending_ret = del_pending_extents(trans, extent_root);
948 if (ret)
949 return ret;
950 if (pending_ret)
951 return pending_ret;
952 return 0;
953
954}
955
Chris Mason96b51792007-10-15 16:15:19 -0400956int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
957 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -0400958{
Chris Masond1310b22008-01-24 16:13:08 -0500959 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -0400960 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400961 int ret;
962 int err = 0;
963 int werr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -0400964 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -0400965 u64 last = 0;
966 u64 start;
967 u64 end;
968 u64 ptr;
Chris Mason9078a3e2007-04-26 16:46:15 -0400969
Chris Mason96b51792007-10-15 16:15:19 -0400970 block_group_cache = &root->fs_info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400971 path = btrfs_alloc_path();
972 if (!path)
973 return -ENOMEM;
974
975 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400976 ret = find_first_extent_bit(block_group_cache, last,
977 &start, &end, BLOCK_GROUP_DIRTY);
978 if (ret)
Chris Mason9078a3e2007-04-26 16:46:15 -0400979 break;
Chris Mason54aa1f42007-06-22 14:16:25 -0400980
Chris Mason96b51792007-10-15 16:15:19 -0400981 last = end + 1;
982 ret = get_state_private(block_group_cache, start, &ptr);
983 if (ret)
984 break;
985
Jens Axboeae2f5412007-10-19 09:22:59 -0400986 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400987 err = write_one_cache_group(trans, root,
988 path, cache);
989 /*
990 * if we fail to write the cache group, we want
991 * to keep it marked dirty in hopes that a later
992 * write will work
993 */
994 if (err) {
995 werr = err;
996 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -0400997 }
Chris Mason96b51792007-10-15 16:15:19 -0400998 clear_extent_bits(block_group_cache, start, end,
999 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001000 }
1001 btrfs_free_path(path);
1002 return werr;
1003}
1004
Chris Mason6324fbf2008-03-24 15:01:59 -04001005static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
1006 u64 flags)
1007{
1008 struct list_head *head = &info->space_info;
1009 struct list_head *cur;
1010 struct btrfs_space_info *found;
1011 list_for_each(cur, head) {
1012 found = list_entry(cur, struct btrfs_space_info, list);
1013 if (found->flags == flags)
1014 return found;
1015 }
1016 return NULL;
1017
1018}
1019
Chris Mason593060d2008-03-25 16:50:33 -04001020static int update_space_info(struct btrfs_fs_info *info, u64 flags,
1021 u64 total_bytes, u64 bytes_used,
1022 struct btrfs_space_info **space_info)
1023{
1024 struct btrfs_space_info *found;
1025
1026 found = __find_space_info(info, flags);
1027 if (found) {
1028 found->total_bytes += total_bytes;
1029 found->bytes_used += bytes_used;
1030 WARN_ON(found->total_bytes < found->bytes_used);
1031 *space_info = found;
1032 return 0;
1033 }
1034 found = kmalloc(sizeof(*found), GFP_NOFS);
1035 if (!found)
1036 return -ENOMEM;
1037
1038 list_add(&found->list, &info->space_info);
1039 found->flags = flags;
1040 found->total_bytes = total_bytes;
1041 found->bytes_used = bytes_used;
1042 found->bytes_pinned = 0;
1043 found->full = 0;
1044 *space_info = found;
1045 return 0;
1046}
1047
Chris Mason8790d502008-04-03 16:29:03 -04001048static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
1049{
1050 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
Chris Mason611f0e02008-04-03 16:29:03 -04001051 BTRFS_BLOCK_GROUP_RAID1 |
1052 BTRFS_BLOCK_GROUP_DUP);
Chris Mason8790d502008-04-03 16:29:03 -04001053 if (extra_flags) {
1054 if (flags & BTRFS_BLOCK_GROUP_DATA)
1055 fs_info->avail_data_alloc_bits |= extra_flags;
1056 if (flags & BTRFS_BLOCK_GROUP_METADATA)
1057 fs_info->avail_metadata_alloc_bits |= extra_flags;
1058 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
1059 fs_info->avail_system_alloc_bits |= extra_flags;
1060 }
1061}
Chris Mason593060d2008-03-25 16:50:33 -04001062
Chris Mason6324fbf2008-03-24 15:01:59 -04001063static int do_chunk_alloc(struct btrfs_trans_handle *trans,
1064 struct btrfs_root *extent_root, u64 alloc_bytes,
1065 u64 flags)
1066{
1067 struct btrfs_space_info *space_info;
1068 u64 thresh;
1069 u64 start;
1070 u64 num_bytes;
1071 int ret;
1072
1073 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04001074 if (!space_info) {
1075 ret = update_space_info(extent_root->fs_info, flags,
1076 0, 0, &space_info);
1077 BUG_ON(ret);
1078 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001079 BUG_ON(!space_info);
1080
1081 if (space_info->full)
1082 return 0;
1083
Chris Mason8790d502008-04-03 16:29:03 -04001084 thresh = div_factor(space_info->total_bytes, 6);
Chris Mason6324fbf2008-03-24 15:01:59 -04001085 if ((space_info->bytes_used + space_info->bytes_pinned + alloc_bytes) <
1086 thresh)
1087 return 0;
1088
1089 ret = btrfs_alloc_chunk(trans, extent_root, &start, &num_bytes, flags);
1090 if (ret == -ENOSPC) {
1091printk("space info full %Lu\n", flags);
1092 space_info->full = 1;
1093 return 0;
1094 }
1095
1096 BUG_ON(ret);
1097
1098 ret = btrfs_make_block_group(trans, extent_root, 0, flags,
1099 extent_root->fs_info->chunk_root->root_key.objectid,
1100 start, num_bytes);
1101 BUG_ON(ret);
Chris Mason593060d2008-03-25 16:50:33 -04001102
Chris Mason8790d502008-04-03 16:29:03 -04001103 set_avail_alloc_bits(extent_root->fs_info, flags);
Chris Mason6324fbf2008-03-24 15:01:59 -04001104 return 0;
1105}
1106
Chris Mason9078a3e2007-04-26 16:46:15 -04001107static int update_block_group(struct btrfs_trans_handle *trans,
1108 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -04001109 u64 bytenr, u64 num_bytes, int alloc,
Chris Mason0b86a832008-03-24 15:01:56 -04001110 int mark_free)
Chris Mason9078a3e2007-04-26 16:46:15 -04001111{
1112 struct btrfs_block_group_cache *cache;
1113 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001114 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001115 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04001116 u64 byte_in_group;
Chris Mason96b51792007-10-15 16:15:19 -04001117 u64 start;
1118 u64 end;
Chris Mason3e1ad542007-05-07 20:03:49 -04001119
Chris Mason9078a3e2007-04-26 16:46:15 -04001120 while(total) {
Chris Masondb945352007-10-15 16:15:53 -04001121 cache = btrfs_lookup_block_group(info, bytenr);
Chris Mason3e1ad542007-05-07 20:03:49 -04001122 if (!cache) {
Chris Mason9078a3e2007-04-26 16:46:15 -04001123 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -04001124 }
Chris Masondb945352007-10-15 16:15:53 -04001125 byte_in_group = bytenr - cache->key.objectid;
1126 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason96b51792007-10-15 16:15:19 -04001127 start = cache->key.objectid;
1128 end = start + cache->key.offset - 1;
1129 set_extent_bits(&info->block_group_cache, start, end,
1130 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001131
1132 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04001133 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04001134 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04001135 old_val += num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001136 cache->space_info->bytes_used += num_bytes;
Chris Masoncd1bc462007-04-27 10:08:34 -04001137 } else {
Chris Masondb945352007-10-15 16:15:53 -04001138 old_val -= num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001139 cache->space_info->bytes_used -= num_bytes;
Chris Masonf510cfe2007-10-15 16:14:48 -04001140 if (mark_free) {
1141 set_extent_dirty(&info->free_space_cache,
Chris Masondb945352007-10-15 16:15:53 -04001142 bytenr, bytenr + num_bytes - 1,
Chris Masonf510cfe2007-10-15 16:14:48 -04001143 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04001144 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001145 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001146 btrfs_set_block_group_used(&cache->item, old_val);
Chris Masondb945352007-10-15 16:15:53 -04001147 total -= num_bytes;
1148 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001149 }
1150 return 0;
1151}
Chris Mason6324fbf2008-03-24 15:01:59 -04001152
Yan324ae4d2007-11-16 14:57:08 -05001153static int update_pinned_extents(struct btrfs_root *root,
1154 u64 bytenr, u64 num, int pin)
1155{
1156 u64 len;
1157 struct btrfs_block_group_cache *cache;
1158 struct btrfs_fs_info *fs_info = root->fs_info;
1159
1160 if (pin) {
1161 set_extent_dirty(&fs_info->pinned_extents,
1162 bytenr, bytenr + num - 1, GFP_NOFS);
1163 } else {
1164 clear_extent_dirty(&fs_info->pinned_extents,
1165 bytenr, bytenr + num - 1, GFP_NOFS);
1166 }
1167 while (num > 0) {
1168 cache = btrfs_lookup_block_group(fs_info, bytenr);
1169 WARN_ON(!cache);
1170 len = min(num, cache->key.offset -
1171 (bytenr - cache->key.objectid));
1172 if (pin) {
1173 cache->pinned += len;
Chris Mason6324fbf2008-03-24 15:01:59 -04001174 cache->space_info->bytes_pinned += len;
Yan324ae4d2007-11-16 14:57:08 -05001175 fs_info->total_pinned += len;
1176 } else {
1177 cache->pinned -= len;
Chris Mason6324fbf2008-03-24 15:01:59 -04001178 cache->space_info->bytes_pinned -= len;
Yan324ae4d2007-11-16 14:57:08 -05001179 fs_info->total_pinned -= len;
1180 }
1181 bytenr += len;
1182 num -= len;
1183 }
1184 return 0;
1185}
Chris Mason9078a3e2007-04-26 16:46:15 -04001186
Chris Masond1310b22008-01-24 16:13:08 -05001187int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy)
Chris Masonccd467d2007-06-28 15:57:36 -04001188{
Chris Masonccd467d2007-06-28 15:57:36 -04001189 u64 last = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001190 u64 start;
1191 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001192 struct extent_io_tree *pinned_extents = &root->fs_info->pinned_extents;
Chris Masonccd467d2007-06-28 15:57:36 -04001193 int ret;
Chris Masonccd467d2007-06-28 15:57:36 -04001194
1195 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001196 ret = find_first_extent_bit(pinned_extents, last,
1197 &start, &end, EXTENT_DIRTY);
1198 if (ret)
Chris Masonccd467d2007-06-28 15:57:36 -04001199 break;
Chris Mason1a5bc162007-10-15 16:15:26 -04001200 set_extent_dirty(copy, start, end, GFP_NOFS);
1201 last = end + 1;
Chris Masonccd467d2007-06-28 15:57:36 -04001202 }
1203 return 0;
1204}
1205
1206int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1207 struct btrfs_root *root,
Chris Masond1310b22008-01-24 16:13:08 -05001208 struct extent_io_tree *unpin)
Chris Masona28ec192007-03-06 20:08:01 -05001209{
Chris Mason1a5bc162007-10-15 16:15:26 -04001210 u64 start;
1211 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05001212 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001213 struct extent_io_tree *free_space_cache;
Chris Masonf510cfe2007-10-15 16:14:48 -04001214 free_space_cache = &root->fs_info->free_space_cache;
Chris Masona28ec192007-03-06 20:08:01 -05001215
1216 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001217 ret = find_first_extent_bit(unpin, 0, &start, &end,
1218 EXTENT_DIRTY);
1219 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05001220 break;
Yan324ae4d2007-11-16 14:57:08 -05001221 update_pinned_extents(root, start, end + 1 - start, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001222 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1223 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
Chris Masona28ec192007-03-06 20:08:01 -05001224 }
1225 return 0;
1226}
1227
Chris Mason98ed5172008-01-03 10:01:48 -05001228static int finish_current_insert(struct btrfs_trans_handle *trans,
1229 struct btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -05001230{
Chris Mason7bb86312007-12-11 09:25:06 -05001231 u64 start;
1232 u64 end;
1233 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001234 struct extent_buffer *eb;
Chris Mason7bb86312007-12-11 09:25:06 -05001235 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001236 struct btrfs_key ins;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001237 struct btrfs_disk_key first;
Chris Mason234b63a2007-03-13 10:46:10 -04001238 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -05001239 int ret;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001240 int level;
Chris Mason1a5bc162007-10-15 16:15:26 -04001241 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001242
Chris Mason5f39d392007-10-15 16:14:19 -04001243 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason62e27492007-03-15 12:56:47 -04001244 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason7bb86312007-12-11 09:25:06 -05001245 path = btrfs_alloc_path();
Chris Mason037e6392007-03-07 11:50:24 -05001246
Chris Mason26b80032007-08-08 20:17:12 -04001247 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001248 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1249 &end, EXTENT_LOCKED);
1250 if (ret)
Chris Mason26b80032007-08-08 20:17:12 -04001251 break;
1252
Chris Mason1a5bc162007-10-15 16:15:26 -04001253 ins.objectid = start;
1254 ins.offset = end + 1 - start;
1255 err = btrfs_insert_item(trans, extent_root, &ins,
1256 &extent_item, sizeof(extent_item));
1257 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1258 GFP_NOFS);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001259 eb = read_tree_block(extent_root, ins.objectid, ins.offset);
1260 level = btrfs_header_level(eb);
1261 if (level == 0) {
1262 btrfs_item_key(eb, &first, 0);
1263 } else {
1264 btrfs_node_key(eb, &first, 0);
1265 }
Chris Mason7bb86312007-12-11 09:25:06 -05001266 err = btrfs_insert_extent_backref(trans, extent_root, path,
1267 start, extent_root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -05001268 0, level,
1269 btrfs_disk_key_objectid(&first));
Chris Mason7bb86312007-12-11 09:25:06 -05001270 BUG_ON(err);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001271 free_extent_buffer(eb);
Chris Mason037e6392007-03-07 11:50:24 -05001272 }
Chris Mason7bb86312007-12-11 09:25:06 -05001273 btrfs_free_path(path);
Chris Mason037e6392007-03-07 11:50:24 -05001274 return 0;
1275}
1276
Chris Masondb945352007-10-15 16:15:53 -04001277static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
1278 int pending)
Chris Masone20d96d2007-03-22 12:13:20 -04001279{
Chris Mason1a5bc162007-10-15 16:15:26 -04001280 int err = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001281 struct extent_buffer *buf;
Chris Mason78fae272007-03-25 11:35:08 -04001282
Chris Masonf4b9aa82007-03-27 11:05:53 -04001283 if (!pending) {
Chris Masondb945352007-10-15 16:15:53 -04001284 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -04001285 if (buf) {
1286 if (btrfs_buffer_uptodate(buf)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -04001287 u64 transid =
1288 root->fs_info->running_transaction->transid;
Chris Masondc17ff82008-01-08 15:46:30 -05001289 u64 header_transid =
1290 btrfs_header_generation(buf);
Chris Mason6bc34672008-04-04 15:40:00 -04001291 if (header_transid == transid &&
1292 !btrfs_header_flag(buf,
1293 BTRFS_HEADER_FLAG_WRITTEN)) {
Chris Mason55c69072008-01-09 15:55:33 -05001294 clean_tree_block(NULL, root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001295 free_extent_buffer(buf);
Yanc5492282007-11-06 10:25:25 -05001296 return 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001297 }
Chris Masonf4b9aa82007-03-27 11:05:53 -04001298 }
Chris Mason5f39d392007-10-15 16:14:19 -04001299 free_extent_buffer(buf);
Chris Mason8ef97622007-03-26 10:15:30 -04001300 }
Yan324ae4d2007-11-16 14:57:08 -05001301 update_pinned_extents(root, bytenr, num_bytes, 1);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001302 } else {
Chris Mason1a5bc162007-10-15 16:15:26 -04001303 set_extent_bits(&root->fs_info->pending_del,
Chris Masondb945352007-10-15 16:15:53 -04001304 bytenr, bytenr + num_bytes - 1,
1305 EXTENT_LOCKED, GFP_NOFS);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001306 }
Chris Masonbe744172007-05-06 10:15:01 -04001307 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001308 return 0;
1309}
1310
Chris Masona28ec192007-03-06 20:08:01 -05001311/*
1312 * remove an extent from the root, returns 0 on success
1313 */
Chris Masone089f052007-03-16 16:20:31 -04001314static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001315 *root, u64 bytenr, u64 num_bytes,
1316 u64 root_objectid, u64 ref_generation,
1317 u64 owner_objectid, u64 owner_offset, int pin,
Chris Masone37c9e62007-05-09 20:13:14 -04001318 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -05001319{
Chris Mason5caf2a02007-04-02 11:20:42 -04001320 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001321 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -04001322 struct btrfs_fs_info *info = root->fs_info;
1323 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001324 struct extent_buffer *leaf;
Chris Masona28ec192007-03-06 20:08:01 -05001325 int ret;
Chris Mason952fcca2008-02-18 16:33:44 -05001326 int extent_slot = 0;
1327 int found_extent = 0;
1328 int num_to_del = 1;
Chris Mason234b63a2007-03-13 10:46:10 -04001329 struct btrfs_extent_item *ei;
Chris Masoncf27e1e2007-03-13 09:49:06 -04001330 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -05001331
Chris Masondb945352007-10-15 16:15:53 -04001332 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -04001333 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -04001334 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001335 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001336 if (!path)
1337 return -ENOMEM;
1338
Chris Masonb0331a42008-01-08 15:46:31 -05001339 path->reada = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001340 ret = lookup_extent_backref(trans, extent_root, path,
1341 bytenr, root_objectid,
1342 ref_generation,
1343 owner_objectid, owner_offset, 1);
1344 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05001345 struct btrfs_key found_key;
1346 extent_slot = path->slots[0];
1347 while(extent_slot > 0) {
1348 extent_slot--;
1349 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1350 extent_slot);
1351 if (found_key.objectid != bytenr)
1352 break;
1353 if (found_key.type == BTRFS_EXTENT_ITEM_KEY &&
1354 found_key.offset == num_bytes) {
1355 found_extent = 1;
1356 break;
1357 }
1358 if (path->slots[0] - extent_slot > 5)
1359 break;
1360 }
1361 if (!found_extent)
1362 ret = btrfs_del_item(trans, extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -05001363 } else {
1364 btrfs_print_leaf(extent_root, path->nodes[0]);
1365 WARN_ON(1);
1366 printk("Unable to find ref byte nr %Lu root %Lu "
1367 " gen %Lu owner %Lu offset %Lu\n", bytenr,
1368 root_objectid, ref_generation, owner_objectid,
1369 owner_offset);
1370 }
Chris Mason952fcca2008-02-18 16:33:44 -05001371 if (!found_extent) {
1372 btrfs_release_path(extent_root, path);
1373 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
1374 if (ret < 0)
1375 return ret;
1376 BUG_ON(ret);
1377 extent_slot = path->slots[0];
1378 }
Chris Mason5f39d392007-10-15 16:14:19 -04001379
1380 leaf = path->nodes[0];
Chris Mason952fcca2008-02-18 16:33:44 -05001381 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04001382 struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001383 refs = btrfs_extent_refs(leaf, ei);
1384 BUG_ON(refs == 0);
1385 refs -= 1;
1386 btrfs_set_extent_refs(leaf, ei, refs);
Chris Mason952fcca2008-02-18 16:33:44 -05001387
Chris Mason5f39d392007-10-15 16:14:19 -04001388 btrfs_mark_buffer_dirty(leaf);
1389
Chris Mason952fcca2008-02-18 16:33:44 -05001390 if (refs == 0 && found_extent && path->slots[0] == extent_slot + 1) {
1391 /* if the back ref and the extent are next to each other
1392 * they get deleted below in one shot
1393 */
1394 path->slots[0] = extent_slot;
1395 num_to_del = 2;
1396 } else if (found_extent) {
1397 /* otherwise delete the extent back ref */
1398 ret = btrfs_del_item(trans, extent_root, path);
1399 BUG_ON(ret);
1400 /* if refs are 0, we need to setup the path for deletion */
1401 if (refs == 0) {
1402 btrfs_release_path(extent_root, path);
1403 ret = btrfs_search_slot(trans, extent_root, &key, path,
1404 -1, 1);
1405 if (ret < 0)
1406 return ret;
1407 BUG_ON(ret);
1408 }
1409 }
1410
Chris Masoncf27e1e2007-03-13 09:49:06 -04001411 if (refs == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001412 u64 super_used;
1413 u64 root_used;
Chris Mason78fae272007-03-25 11:35:08 -04001414
1415 if (pin) {
Chris Masondb945352007-10-15 16:15:53 -04001416 ret = pin_down_bytes(root, bytenr, num_bytes, 0);
Yanc5492282007-11-06 10:25:25 -05001417 if (ret > 0)
1418 mark_free = 1;
1419 BUG_ON(ret < 0);
Chris Mason78fae272007-03-25 11:35:08 -04001420 }
1421
Josef Bacik58176a92007-08-29 15:47:34 -04001422 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001423 super_used = btrfs_super_bytes_used(&info->super_copy);
1424 btrfs_set_super_bytes_used(&info->super_copy,
1425 super_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001426
1427 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001428 root_used = btrfs_root_used(&root->root_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001429 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -04001430 root_used - num_bytes);
Chris Mason952fcca2008-02-18 16:33:44 -05001431 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
1432 num_to_del);
Chris Mason54aa1f42007-06-22 14:16:25 -04001433 if (ret) {
1434 return ret;
1435 }
Chris Masondb945352007-10-15 16:15:53 -04001436 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001437 mark_free);
Chris Mason9078a3e2007-04-26 16:46:15 -04001438 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05001439 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001440 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001441 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -05001442 return ret;
1443}
1444
1445/*
Chris Masonfec577f2007-02-26 10:40:21 -05001446 * find all the blocks marked as pending in the radix tree and remove
1447 * them from the extent map
1448 */
Chris Masone089f052007-03-16 16:20:31 -04001449static int del_pending_extents(struct btrfs_trans_handle *trans, struct
1450 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -05001451{
1452 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001453 int err = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001454 u64 start;
1455 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001456 struct extent_io_tree *pending_del;
1457 struct extent_io_tree *pinned_extents;
Chris Mason8ef97622007-03-26 10:15:30 -04001458
Chris Mason1a5bc162007-10-15 16:15:26 -04001459 pending_del = &extent_root->fs_info->pending_del;
1460 pinned_extents = &extent_root->fs_info->pinned_extents;
Chris Masonfec577f2007-02-26 10:40:21 -05001461
1462 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001463 ret = find_first_extent_bit(pending_del, 0, &start, &end,
1464 EXTENT_LOCKED);
1465 if (ret)
Chris Masonfec577f2007-02-26 10:40:21 -05001466 break;
Yan324ae4d2007-11-16 14:57:08 -05001467 update_pinned_extents(extent_root, start, end + 1 - start, 1);
Chris Mason1a5bc162007-10-15 16:15:26 -04001468 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
1469 GFP_NOFS);
1470 ret = __free_extent(trans, extent_root,
Chris Mason7bb86312007-12-11 09:25:06 -05001471 start, end + 1 - start,
1472 extent_root->root_key.objectid,
1473 0, 0, 0, 0, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001474 if (ret)
1475 err = ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001476 }
Chris Masone20d96d2007-03-22 12:13:20 -04001477 return err;
Chris Masonfec577f2007-02-26 10:40:21 -05001478}
1479
1480/*
1481 * remove an extent from the root, returns 0 on success
1482 */
Chris Masone089f052007-03-16 16:20:31 -04001483int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001484 *root, u64 bytenr, u64 num_bytes,
1485 u64 root_objectid, u64 ref_generation,
1486 u64 owner_objectid, u64 owner_offset, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -05001487{
Chris Mason9f5fae22007-03-20 14:38:32 -04001488 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -05001489 int pending_ret;
1490 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05001491
Chris Masondb945352007-10-15 16:15:53 -04001492 WARN_ON(num_bytes < root->sectorsize);
Chris Mason7bb86312007-12-11 09:25:06 -05001493 if (!root->ref_cows)
1494 ref_generation = 0;
1495
Chris Masona28ec192007-03-06 20:08:01 -05001496 if (root == extent_root) {
Chris Masondb945352007-10-15 16:15:53 -04001497 pin_down_bytes(root, bytenr, num_bytes, 1);
Chris Masona28ec192007-03-06 20:08:01 -05001498 return 0;
1499 }
Chris Mason7bb86312007-12-11 09:25:06 -05001500 ret = __free_extent(trans, root, bytenr, num_bytes, root_objectid,
1501 ref_generation, owner_objectid, owner_offset,
1502 pin, pin == 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001503 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -05001504 return ret ? ret : pending_ret;
1505}
1506
Chris Mason87ee04e2007-11-30 11:30:34 -05001507static u64 stripe_align(struct btrfs_root *root, u64 val)
1508{
1509 u64 mask = ((u64)root->stripesize - 1);
1510 u64 ret = (val + mask) & ~mask;
1511 return ret;
1512}
1513
Chris Masonfec577f2007-02-26 10:40:21 -05001514/*
1515 * walks the btree of allocated extents and find a hole of a given size.
1516 * The key ins is changed to record the hole:
1517 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04001518 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05001519 * ins->offset == number of blocks
1520 * Any available blocks before search_start are skipped.
1521 */
Chris Mason98ed5172008-01-03 10:01:48 -05001522static int noinline find_free_extent(struct btrfs_trans_handle *trans,
1523 struct btrfs_root *orig_root,
1524 u64 num_bytes, u64 empty_size,
1525 u64 search_start, u64 search_end,
1526 u64 hint_byte, struct btrfs_key *ins,
1527 u64 exclude_start, u64 exclude_nr,
1528 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001529{
Chris Mason87ee04e2007-11-30 11:30:34 -05001530 int ret;
Chris Masonbe744172007-05-06 10:15:01 -04001531 u64 orig_search_start = search_start;
Chris Mason9f5fae22007-03-20 14:38:32 -04001532 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -04001533 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001534 u64 total_needed = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04001535 u64 *last_ptr = NULL;
Chris Masonbe08c1b2007-05-03 09:06:49 -04001536 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -04001537 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -04001538 int wrapped = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001539 int empty_cluster = 2 * 1024 * 1024;
Chris Masonfec577f2007-02-26 10:40:21 -05001540
Chris Masondb945352007-10-15 16:15:53 -04001541 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04001542 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
1543
Chris Mason239b14b2008-03-24 15:02:07 -04001544 if (data & BTRFS_BLOCK_GROUP_METADATA) {
1545 last_ptr = &root->fs_info->last_alloc;
Chris Mason8790d502008-04-03 16:29:03 -04001546 empty_cluster = 256 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04001547 }
1548
1549 if ((data & BTRFS_BLOCK_GROUP_DATA) && btrfs_test_opt(root, SSD)) {
1550 last_ptr = &root->fs_info->last_data_alloc;
1551 }
1552
1553 if (last_ptr) {
1554 if (*last_ptr)
1555 hint_byte = *last_ptr;
1556 else {
1557 empty_size += empty_cluster;
1558 }
1559 }
1560
Chris Mason7f93bf82008-03-24 15:01:28 -04001561 if (search_end == (u64)-1)
1562 search_end = btrfs_super_total_bytes(&info->super_copy);
Chris Mason0b86a832008-03-24 15:01:56 -04001563
Chris Masondb945352007-10-15 16:15:53 -04001564 if (hint_byte) {
1565 block_group = btrfs_lookup_block_group(info, hint_byte);
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001566 if (!block_group)
1567 hint_byte = search_start;
Chris Masonbe744172007-05-06 10:15:01 -04001568 block_group = btrfs_find_block_group(root, block_group,
Chris Masondb945352007-10-15 16:15:53 -04001569 hint_byte, data, 1);
Chris Mason239b14b2008-03-24 15:02:07 -04001570 if (last_ptr && *last_ptr == 0 && block_group)
1571 hint_byte = block_group->key.objectid;
Chris Masonbe744172007-05-06 10:15:01 -04001572 } else {
1573 block_group = btrfs_find_block_group(root,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001574 trans->block_group,
1575 search_start, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001576 }
Chris Mason239b14b2008-03-24 15:02:07 -04001577 search_start = max(search_start, hint_byte);
Chris Masonbe744172007-05-06 10:15:01 -04001578
Chris Mason6702ed42007-08-07 16:15:09 -04001579 total_needed += empty_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001580
Chris Masonbe744172007-05-06 10:15:01 -04001581check_failed:
Chris Mason70b043f2007-12-13 09:02:46 -05001582 if (!block_group) {
1583 block_group = btrfs_lookup_block_group(info, search_start);
1584 if (!block_group)
1585 block_group = btrfs_lookup_block_group(info,
1586 orig_search_start);
1587 }
Chris Mason0b86a832008-03-24 15:01:56 -04001588 ret = find_search_start(root, &block_group, &search_start,
1589 total_needed, data);
Chris Mason239b14b2008-03-24 15:02:07 -04001590 if (ret == -ENOSPC && last_ptr && *last_ptr) {
1591 *last_ptr = 0;
1592 block_group = btrfs_lookup_block_group(info,
1593 orig_search_start);
1594 search_start = orig_search_start;
1595 ret = find_search_start(root, &block_group, &search_start,
1596 total_needed, data);
1597 }
1598 if (ret == -ENOSPC)
1599 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001600 if (ret)
1601 goto error;
1602
Chris Mason239b14b2008-03-24 15:02:07 -04001603 if (last_ptr && *last_ptr && search_start != *last_ptr) {
1604 *last_ptr = 0;
1605 if (!empty_size) {
1606 empty_size += empty_cluster;
1607 total_needed += empty_size;
1608 }
1609 block_group = btrfs_lookup_block_group(info,
1610 orig_search_start);
1611 search_start = orig_search_start;
1612 ret = find_search_start(root, &block_group,
1613 &search_start, total_needed, data);
1614 if (ret == -ENOSPC)
1615 goto enospc;
1616 if (ret)
1617 goto error;
1618 }
1619
Chris Mason87ee04e2007-11-30 11:30:34 -05001620 search_start = stripe_align(root, search_start);
Chris Masonfec577f2007-02-26 10:40:21 -05001621 ins->objectid = search_start;
Chris Mason0b86a832008-03-24 15:01:56 -04001622 ins->offset = num_bytes;
Chris Masone37c9e62007-05-09 20:13:14 -04001623
Chris Masondb945352007-10-15 16:15:53 -04001624 if (ins->objectid + num_bytes >= search_end)
Chris Masoncf675822007-09-17 11:00:51 -04001625 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001626
1627 if (ins->objectid + num_bytes >
1628 block_group->key.objectid + block_group->key.offset) {
Chris Masone19caa52007-10-15 16:17:44 -04001629 search_start = block_group->key.objectid +
1630 block_group->key.offset;
1631 goto new_group;
1632 }
Chris Mason0b86a832008-03-24 15:01:56 -04001633
Chris Mason1a5bc162007-10-15 16:15:26 -04001634 if (test_range_bit(&info->extent_ins, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001635 ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
1636 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001637 goto new_group;
1638 }
Chris Mason0b86a832008-03-24 15:01:56 -04001639
Chris Mason1a5bc162007-10-15 16:15:26 -04001640 if (test_range_bit(&info->pinned_extents, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001641 ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
1642 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001643 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05001644 }
Chris Mason0b86a832008-03-24 15:01:56 -04001645
Chris Masondb945352007-10-15 16:15:53 -04001646 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
Chris Masonf2654de2007-06-26 12:20:46 -04001647 ins->objectid < exclude_start + exclude_nr)) {
1648 search_start = exclude_start + exclude_nr;
1649 goto new_group;
1650 }
Chris Mason0b86a832008-03-24 15:01:56 -04001651
Chris Mason6324fbf2008-03-24 15:01:59 -04001652 if (!(data & BTRFS_BLOCK_GROUP_DATA)) {
Chris Mason5276aed2007-06-11 21:33:38 -04001653 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Mason26b80032007-08-08 20:17:12 -04001654 if (block_group)
1655 trans->block_group = block_group;
Chris Masoncd1bc462007-04-27 10:08:34 -04001656 }
Chris Masondb945352007-10-15 16:15:53 -04001657 ins->offset = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04001658 if (last_ptr) {
1659 *last_ptr = ins->objectid + ins->offset;
1660 if (*last_ptr ==
1661 btrfs_super_total_bytes(&root->fs_info->super_copy)) {
1662 *last_ptr = 0;
1663 }
1664 }
Chris Masonfec577f2007-02-26 10:40:21 -05001665 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04001666
1667new_group:
Chris Masondb945352007-10-15 16:15:53 -04001668 if (search_start + num_bytes >= search_end) {
Chris Masoncf675822007-09-17 11:00:51 -04001669enospc:
Chris Masonbe744172007-05-06 10:15:01 -04001670 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04001671 if (full_scan) {
1672 ret = -ENOSPC;
1673 goto error;
1674 }
Chris Mason6702ed42007-08-07 16:15:09 -04001675 if (wrapped) {
1676 if (!full_scan)
1677 total_needed -= empty_size;
Chris Masonfbdc7622007-05-30 10:22:12 -04001678 full_scan = 1;
Chris Mason6702ed42007-08-07 16:15:09 -04001679 } else
Chris Masonfbdc7622007-05-30 10:22:12 -04001680 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04001681 }
Chris Mason5276aed2007-06-11 21:33:38 -04001682 block_group = btrfs_lookup_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04001683 cond_resched();
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001684 block_group = btrfs_find_block_group(root, block_group,
1685 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04001686 goto check_failed;
1687
Chris Mason0f70abe2007-02-28 16:46:22 -05001688error:
Chris Mason0f70abe2007-02-28 16:46:22 -05001689 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001690}
Chris Masonfec577f2007-02-26 10:40:21 -05001691/*
Chris Masonfec577f2007-02-26 10:40:21 -05001692 * finds a free extent and does all the dirty work required for allocation
1693 * returns the key for the extent through ins, and a tree buffer for
1694 * the first block of the extent through buf.
1695 *
1696 * returns 0 if everything worked, non-zero otherwise.
1697 */
Chris Mason4d775672007-04-20 20:23:12 -04001698int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -05001699 struct btrfs_root *root,
1700 u64 num_bytes, u64 root_objectid, u64 ref_generation,
1701 u64 owner, u64 owner_offset,
1702 u64 empty_size, u64 hint_byte,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001703 u64 search_end, struct btrfs_key *ins, int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001704{
1705 int ret;
1706 int pending_ret;
Chris Masonc31f8832008-01-08 15:46:31 -05001707 u64 super_used;
1708 u64 root_used;
Chris Masonfbdc7622007-05-30 10:22:12 -04001709 u64 search_start = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05001710 u64 new_hint;
Chris Mason8790d502008-04-03 16:29:03 -04001711 u64 alloc_profile;
Chris Mason47e4bb92008-02-01 14:51:59 -05001712 u32 sizes[2];
Chris Mason1261ec42007-03-20 20:35:03 -04001713 struct btrfs_fs_info *info = root->fs_info;
1714 struct btrfs_root *extent_root = info->extent_root;
Chris Mason47e4bb92008-02-01 14:51:59 -05001715 struct btrfs_extent_item *extent_item;
1716 struct btrfs_extent_ref *ref;
Chris Mason7bb86312007-12-11 09:25:06 -05001717 struct btrfs_path *path;
Chris Mason47e4bb92008-02-01 14:51:59 -05001718 struct btrfs_key keys[2];
Chris Mason8f662a72008-01-02 10:01:11 -05001719
Chris Mason6324fbf2008-03-24 15:01:59 -04001720 if (data) {
Chris Mason8790d502008-04-03 16:29:03 -04001721 alloc_profile = info->avail_data_alloc_bits &
1722 info->data_alloc_profile;
1723 data = BTRFS_BLOCK_GROUP_DATA | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04001724 } else if (root == root->fs_info->chunk_root) {
Chris Mason8790d502008-04-03 16:29:03 -04001725 alloc_profile = info->avail_system_alloc_bits &
1726 info->system_alloc_profile;
1727 data = BTRFS_BLOCK_GROUP_SYSTEM | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04001728 } else {
Chris Mason8790d502008-04-03 16:29:03 -04001729 alloc_profile = info->avail_metadata_alloc_bits &
1730 info->metadata_alloc_profile;
1731 data = BTRFS_BLOCK_GROUP_METADATA | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04001732 }
1733
1734 if (root->ref_cows) {
Chris Mason593060d2008-03-25 16:50:33 -04001735 if (!(data & BTRFS_BLOCK_GROUP_METADATA)) {
Chris Mason6324fbf2008-03-24 15:01:59 -04001736 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason239b14b2008-03-24 15:02:07 -04001737 2 * 1024 * 1024,
Chris Mason593060d2008-03-25 16:50:33 -04001738 BTRFS_BLOCK_GROUP_METADATA |
Chris Mason8790d502008-04-03 16:29:03 -04001739 (info->metadata_alloc_profile &
1740 info->avail_metadata_alloc_bits));
Chris Mason6324fbf2008-03-24 15:01:59 -04001741 BUG_ON(ret);
1742 }
1743 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason8790d502008-04-03 16:29:03 -04001744 num_bytes + 2 * 1024 * 1024, data);
Chris Mason6324fbf2008-03-24 15:01:59 -04001745 BUG_ON(ret);
1746 }
Chris Mason0b86a832008-03-24 15:01:56 -04001747
Chris Mason8f662a72008-01-02 10:01:11 -05001748 new_hint = max(hint_byte, root->fs_info->alloc_start);
Chris Masonedbd8d42007-12-21 16:27:24 -05001749 if (new_hint < btrfs_super_total_bytes(&info->super_copy))
1750 hint_byte = new_hint;
Chris Mason8f662a72008-01-02 10:01:11 -05001751
Chris Masondb945352007-10-15 16:15:53 -04001752 WARN_ON(num_bytes < root->sectorsize);
1753 ret = find_free_extent(trans, root, num_bytes, empty_size,
1754 search_start, search_end, hint_byte, ins,
Chris Mason26b80032007-08-08 20:17:12 -04001755 trans->alloc_exclude_start,
1756 trans->alloc_exclude_nr, data);
Chris Masonccd467d2007-06-28 15:57:36 -04001757 BUG_ON(ret);
Chris Masonf2654de2007-06-26 12:20:46 -04001758 if (ret)
1759 return ret;
1760
Josef Bacik58176a92007-08-29 15:47:34 -04001761 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001762 super_used = btrfs_super_bytes_used(&info->super_copy);
1763 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
Chris Mason26b80032007-08-08 20:17:12 -04001764
Josef Bacik58176a92007-08-29 15:47:34 -04001765 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001766 root_used = btrfs_root_used(&root->root_item);
1767 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001768
Chris Masonf510cfe2007-10-15 16:14:48 -04001769 clear_extent_dirty(&root->fs_info->free_space_cache,
1770 ins->objectid, ins->objectid + ins->offset - 1,
1771 GFP_NOFS);
1772
Chris Mason26b80032007-08-08 20:17:12 -04001773 if (root == extent_root) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001774 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
1775 ins->objectid + ins->offset - 1,
1776 EXTENT_LOCKED, GFP_NOFS);
Chris Mason26b80032007-08-08 20:17:12 -04001777 goto update_block;
1778 }
1779
1780 WARN_ON(trans->alloc_exclude_nr);
1781 trans->alloc_exclude_start = ins->objectid;
1782 trans->alloc_exclude_nr = ins->offset;
Chris Mason037e6392007-03-07 11:50:24 -05001783
Chris Mason47e4bb92008-02-01 14:51:59 -05001784 memcpy(&keys[0], ins, sizeof(*ins));
1785 keys[1].offset = hash_extent_ref(root_objectid, ref_generation,
1786 owner, owner_offset);
1787 keys[1].objectid = ins->objectid;
1788 keys[1].type = BTRFS_EXTENT_REF_KEY;
1789 sizes[0] = sizeof(*extent_item);
1790 sizes[1] = sizeof(*ref);
Chris Mason7bb86312007-12-11 09:25:06 -05001791
1792 path = btrfs_alloc_path();
1793 BUG_ON(!path);
Chris Mason47e4bb92008-02-01 14:51:59 -05001794
1795 ret = btrfs_insert_empty_items(trans, extent_root, path, keys,
1796 sizes, 2);
Chris Mason26b80032007-08-08 20:17:12 -04001797
Chris Masonccd467d2007-06-28 15:57:36 -04001798 BUG_ON(ret);
Chris Mason47e4bb92008-02-01 14:51:59 -05001799 extent_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1800 struct btrfs_extent_item);
1801 btrfs_set_extent_refs(path->nodes[0], extent_item, 1);
1802 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1803 struct btrfs_extent_ref);
1804
1805 btrfs_set_ref_root(path->nodes[0], ref, root_objectid);
1806 btrfs_set_ref_generation(path->nodes[0], ref, ref_generation);
1807 btrfs_set_ref_objectid(path->nodes[0], ref, owner);
1808 btrfs_set_ref_offset(path->nodes[0], ref, owner_offset);
1809
1810 btrfs_mark_buffer_dirty(path->nodes[0]);
1811
1812 trans->alloc_exclude_start = 0;
1813 trans->alloc_exclude_nr = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001814 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001815 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001816 pending_ret = del_pending_extents(trans, extent_root);
Chris Masonf510cfe2007-10-15 16:14:48 -04001817
Chris Masone37c9e62007-05-09 20:13:14 -04001818 if (ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001819 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001820 }
1821 if (pending_ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001822 return pending_ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001823 }
Chris Mason26b80032007-08-08 20:17:12 -04001824
1825update_block:
Chris Mason0b86a832008-03-24 15:01:56 -04001826 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0);
Chris Masonf5947062008-02-04 10:10:13 -05001827 if (ret) {
1828 printk("update block group failed for %Lu %Lu\n",
1829 ins->objectid, ins->offset);
1830 BUG();
1831 }
Chris Mason037e6392007-03-07 11:50:24 -05001832 return 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001833}
1834
1835/*
1836 * helper function to allocate a block for a given tree
1837 * returns the tree buffer or NULL.
1838 */
Chris Mason5f39d392007-10-15 16:14:19 -04001839struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -04001840 struct btrfs_root *root,
Chris Mason7bb86312007-12-11 09:25:06 -05001841 u32 blocksize,
1842 u64 root_objectid, u64 hint,
1843 u64 empty_size)
1844{
1845 u64 ref_generation;
1846
1847 if (root->ref_cows)
1848 ref_generation = trans->transid;
1849 else
1850 ref_generation = 0;
1851
1852
1853 return __btrfs_alloc_free_block(trans, root, blocksize, root_objectid,
1854 ref_generation, 0, 0, hint, empty_size);
1855}
1856
1857/*
1858 * helper function to allocate a block for a given tree
1859 * returns the tree buffer or NULL.
1860 */
1861struct extent_buffer *__btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1862 struct btrfs_root *root,
1863 u32 blocksize,
1864 u64 root_objectid,
1865 u64 ref_generation,
1866 u64 first_objectid,
1867 int level,
1868 u64 hint,
Chris Mason5f39d392007-10-15 16:14:19 -04001869 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05001870{
Chris Masone2fa7222007-03-12 16:22:34 -04001871 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05001872 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04001873 struct extent_buffer *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05001874
Chris Mason7bb86312007-12-11 09:25:06 -05001875 ret = btrfs_alloc_extent(trans, root, blocksize,
1876 root_objectid, ref_generation,
Chris Masonf6dbff52007-12-13 11:13:32 -05001877 level, first_objectid, empty_size, hint,
Chris Masondb945352007-10-15 16:15:53 -04001878 (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05001879 if (ret) {
Chris Mason54aa1f42007-06-22 14:16:25 -04001880 BUG_ON(ret > 0);
1881 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05001882 }
Chris Masondb945352007-10-15 16:15:53 -04001883 buf = btrfs_find_create_tree_block(root, ins.objectid, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04001884 if (!buf) {
Chris Mason7bb86312007-12-11 09:25:06 -05001885 btrfs_free_extent(trans, root, ins.objectid, blocksize,
1886 root->root_key.objectid, ref_generation,
1887 0, 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001888 return ERR_PTR(-ENOMEM);
1889 }
Chris Mason55c69072008-01-09 15:55:33 -05001890 btrfs_set_header_generation(buf, trans->transid);
1891 clean_tree_block(trans, root, buf);
1892 wait_on_tree_block_writeback(root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001893 btrfs_set_buffer_uptodate(buf);
Chris Mason55c69072008-01-09 15:55:33 -05001894
1895 if (PageDirty(buf->first_page)) {
1896 printk("page %lu dirty\n", buf->first_page->index);
1897 WARN_ON(1);
1898 }
1899
Chris Mason5f39d392007-10-15 16:14:19 -04001900 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
1901 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001902 set_extent_bits(&BTRFS_I(root->fs_info->btree_inode)->io_tree,
Chris Mason19c00dd2007-10-15 16:19:22 -04001903 buf->start, buf->start + buf->len - 1,
1904 EXTENT_CSUM, GFP_NOFS);
1905 buf->flags |= EXTENT_CSUM;
Chris Mason9afbb0b2008-02-15 13:19:35 -05001906 if (!btrfs_test_opt(root, SSD))
1907 btrfs_set_buffer_defrag(buf);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001908 trans->blocks_used++;
Chris Masonfec577f2007-02-26 10:40:21 -05001909 return buf;
1910}
Chris Masona28ec192007-03-06 20:08:01 -05001911
Chris Mason98ed5172008-01-03 10:01:48 -05001912static int noinline drop_leaf_ref(struct btrfs_trans_handle *trans,
1913 struct btrfs_root *root,
1914 struct extent_buffer *leaf)
Chris Mason6407bf62007-03-27 06:33:00 -04001915{
Chris Mason7bb86312007-12-11 09:25:06 -05001916 u64 leaf_owner;
1917 u64 leaf_generation;
Chris Mason5f39d392007-10-15 16:14:19 -04001918 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04001919 struct btrfs_file_extent_item *fi;
1920 int i;
1921 int nritems;
1922 int ret;
1923
Chris Mason5f39d392007-10-15 16:14:19 -04001924 BUG_ON(!btrfs_is_leaf(leaf));
1925 nritems = btrfs_header_nritems(leaf);
Chris Mason7bb86312007-12-11 09:25:06 -05001926 leaf_owner = btrfs_header_owner(leaf);
1927 leaf_generation = btrfs_header_generation(leaf);
1928
Chris Mason6407bf62007-03-27 06:33:00 -04001929 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001930 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001931
1932 btrfs_item_key_to_cpu(leaf, &key, i);
1933 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04001934 continue;
1935 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001936 if (btrfs_file_extent_type(leaf, fi) ==
1937 BTRFS_FILE_EXTENT_INLINE)
Chris Mason236454d2007-04-19 13:37:44 -04001938 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04001939 /*
1940 * FIXME make sure to insert a trans record that
1941 * repeats the snapshot del on crash
1942 */
Chris Masondb945352007-10-15 16:15:53 -04001943 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1944 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04001945 continue;
Chris Masondb945352007-10-15 16:15:53 -04001946 ret = btrfs_free_extent(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001947 btrfs_file_extent_disk_num_bytes(leaf, fi),
1948 leaf_owner, leaf_generation,
1949 key.objectid, key.offset, 0);
Chris Mason6407bf62007-03-27 06:33:00 -04001950 BUG_ON(ret);
1951 }
1952 return 0;
1953}
1954
Chris Mason98ed5172008-01-03 10:01:48 -05001955static void noinline reada_walk_down(struct btrfs_root *root,
Chris Masonbea495e2008-01-24 16:13:14 -05001956 struct extent_buffer *node,
1957 int slot)
Chris Masone0115992007-06-19 16:23:05 -04001958{
Chris Masondb945352007-10-15 16:15:53 -04001959 u64 bytenr;
Chris Masonbea495e2008-01-24 16:13:14 -05001960 u64 last = 0;
1961 u32 nritems;
Chris Masone0115992007-06-19 16:23:05 -04001962 u32 refs;
Chris Masondb945352007-10-15 16:15:53 -04001963 u32 blocksize;
Chris Masonbea495e2008-01-24 16:13:14 -05001964 int ret;
1965 int i;
1966 int level;
1967 int skipped = 0;
Chris Masone0115992007-06-19 16:23:05 -04001968
Chris Mason5f39d392007-10-15 16:14:19 -04001969 nritems = btrfs_header_nritems(node);
Chris Masondb945352007-10-15 16:15:53 -04001970 level = btrfs_header_level(node);
Chris Masonbea495e2008-01-24 16:13:14 -05001971 if (level)
1972 return;
1973
1974 for (i = slot; i < nritems && skipped < 32; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001975 bytenr = btrfs_node_blockptr(node, i);
Chris Masonbea495e2008-01-24 16:13:14 -05001976 if (last && ((bytenr > last && bytenr - last > 32 * 1024) ||
1977 (last > bytenr && last - bytenr > 32 * 1024))) {
1978 skipped++;
Chris Masone0115992007-06-19 16:23:05 -04001979 continue;
Chris Masonbea495e2008-01-24 16:13:14 -05001980 }
1981 blocksize = btrfs_level_size(root, level - 1);
1982 if (i != slot) {
1983 ret = lookup_extent_ref(NULL, root, bytenr,
1984 blocksize, &refs);
1985 BUG_ON(ret);
1986 if (refs != 1) {
1987 skipped++;
1988 continue;
1989 }
1990 }
Chris Mason409eb952007-08-08 20:17:12 -04001991 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -04001992 ret = readahead_tree_block(root, bytenr, blocksize);
Chris Masonbea495e2008-01-24 16:13:14 -05001993 last = bytenr + blocksize;
Chris Mason409eb952007-08-08 20:17:12 -04001994 cond_resched();
1995 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone0115992007-06-19 16:23:05 -04001996 if (ret)
1997 break;
1998 }
1999}
2000
Chris Mason9aca1d52007-03-13 11:09:37 -04002001/*
2002 * helper function for drop_snapshot, this walks down the tree dropping ref
2003 * counts as it goes.
2004 */
Chris Mason98ed5172008-01-03 10:01:48 -05002005static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
2006 struct btrfs_root *root,
2007 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002008{
Chris Mason7bb86312007-12-11 09:25:06 -05002009 u64 root_owner;
2010 u64 root_gen;
2011 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04002012 struct extent_buffer *next;
2013 struct extent_buffer *cur;
Chris Mason7bb86312007-12-11 09:25:06 -05002014 struct extent_buffer *parent;
Chris Masondb945352007-10-15 16:15:53 -04002015 u32 blocksize;
Chris Mason20524f02007-03-10 06:35:47 -05002016 int ret;
2017 u32 refs;
2018
Chris Mason5caf2a02007-04-02 11:20:42 -04002019 WARN_ON(*level < 0);
2020 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason5f39d392007-10-15 16:14:19 -04002021 ret = lookup_extent_ref(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002022 path->nodes[*level]->start,
2023 path->nodes[*level]->len, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05002024 BUG_ON(ret);
2025 if (refs > 1)
2026 goto out;
Chris Masone0115992007-06-19 16:23:05 -04002027
Chris Mason9aca1d52007-03-13 11:09:37 -04002028 /*
2029 * walk down to the last node level and free all the leaves
2030 */
Chris Mason6407bf62007-03-27 06:33:00 -04002031 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002032 WARN_ON(*level < 0);
2033 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05002034 cur = path->nodes[*level];
Chris Masone0115992007-06-19 16:23:05 -04002035
Chris Mason5f39d392007-10-15 16:14:19 -04002036 if (btrfs_header_level(cur) != *level)
Chris Mason2c90e5d2007-04-02 10:50:19 -04002037 WARN_ON(1);
Chris Masone0115992007-06-19 16:23:05 -04002038
Chris Mason7518a232007-03-12 12:01:18 -04002039 if (path->slots[*level] >=
Chris Mason5f39d392007-10-15 16:14:19 -04002040 btrfs_header_nritems(cur))
Chris Mason20524f02007-03-10 06:35:47 -05002041 break;
Chris Mason6407bf62007-03-27 06:33:00 -04002042 if (*level == 0) {
2043 ret = drop_leaf_ref(trans, root, cur);
2044 BUG_ON(ret);
2045 break;
2046 }
Chris Masondb945352007-10-15 16:15:53 -04002047 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
2048 blocksize = btrfs_level_size(root, *level - 1);
2049 ret = lookup_extent_ref(trans, root, bytenr, blocksize, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04002050 BUG_ON(ret);
2051 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002052 parent = path->nodes[*level];
2053 root_owner = btrfs_header_owner(parent);
2054 root_gen = btrfs_header_generation(parent);
Chris Mason20524f02007-03-10 06:35:47 -05002055 path->slots[*level]++;
Chris Masondb945352007-10-15 16:15:53 -04002056 ret = btrfs_free_extent(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002057 blocksize, root_owner,
2058 root_gen, 0, 0, 1);
Chris Mason20524f02007-03-10 06:35:47 -05002059 BUG_ON(ret);
2060 continue;
2061 }
Chris Masondb945352007-10-15 16:15:53 -04002062 next = btrfs_find_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04002063 if (!next || !btrfs_buffer_uptodate(next)) {
2064 free_extent_buffer(next);
Chris Masonbea495e2008-01-24 16:13:14 -05002065 reada_walk_down(root, cur, path->slots[*level]);
Chris Masone9d0b132007-08-10 14:06:19 -04002066
Chris Mason8790d502008-04-03 16:29:03 -04002067 mutex_unlock(&root->fs_info->fs_mutex);
2068 next = read_tree_block(root, bytenr, blocksize);
2069 mutex_lock(&root->fs_info->fs_mutex);
2070
2071 /* we've dropped the lock, double check */
Chris Masondb945352007-10-15 16:15:53 -04002072 ret = lookup_extent_ref(trans, root, bytenr,
2073 blocksize, &refs);
Chris Masone9d0b132007-08-10 14:06:19 -04002074 BUG_ON(ret);
2075 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002076 parent = path->nodes[*level];
2077 root_owner = btrfs_header_owner(parent);
2078 root_gen = btrfs_header_generation(parent);
2079
Chris Masone9d0b132007-08-10 14:06:19 -04002080 path->slots[*level]++;
Chris Mason5f39d392007-10-15 16:14:19 -04002081 free_extent_buffer(next);
Chris Mason7bb86312007-12-11 09:25:06 -05002082 ret = btrfs_free_extent(trans, root, bytenr,
2083 blocksize,
2084 root_owner,
2085 root_gen, 0, 0, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04002086 BUG_ON(ret);
2087 continue;
2088 }
Chris Mason0999df52008-04-01 13:48:14 -04002089 } else if (next) {
2090 btrfs_verify_block_csum(root, next);
Chris Masone9d0b132007-08-10 14:06:19 -04002091 }
Chris Mason5caf2a02007-04-02 11:20:42 -04002092 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04002093 if (path->nodes[*level-1])
Chris Mason5f39d392007-10-15 16:14:19 -04002094 free_extent_buffer(path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05002095 path->nodes[*level-1] = next;
Chris Mason5f39d392007-10-15 16:14:19 -04002096 *level = btrfs_header_level(next);
Chris Mason20524f02007-03-10 06:35:47 -05002097 path->slots[*level] = 0;
2098 }
2099out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002100 WARN_ON(*level < 0);
2101 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason7bb86312007-12-11 09:25:06 -05002102
2103 if (path->nodes[*level] == root->node) {
2104 root_owner = root->root_key.objectid;
2105 parent = path->nodes[*level];
2106 } else {
2107 parent = path->nodes[*level + 1];
2108 root_owner = btrfs_header_owner(parent);
2109 }
2110
2111 root_gen = btrfs_header_generation(parent);
Chris Masondb945352007-10-15 16:15:53 -04002112 ret = btrfs_free_extent(trans, root, path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002113 path->nodes[*level]->len,
2114 root_owner, root_gen, 0, 0, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002115 free_extent_buffer(path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05002116 path->nodes[*level] = NULL;
2117 *level += 1;
2118 BUG_ON(ret);
2119 return 0;
2120}
2121
Chris Mason9aca1d52007-03-13 11:09:37 -04002122/*
2123 * helper for dropping snapshots. This walks back up the tree in the path
2124 * to find the first node higher up where we haven't yet gone through
2125 * all the slots
2126 */
Chris Mason98ed5172008-01-03 10:01:48 -05002127static int noinline walk_up_tree(struct btrfs_trans_handle *trans,
2128 struct btrfs_root *root,
2129 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002130{
Chris Mason7bb86312007-12-11 09:25:06 -05002131 u64 root_owner;
2132 u64 root_gen;
2133 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002134 int i;
2135 int slot;
2136 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04002137
Chris Mason234b63a2007-03-13 10:46:10 -04002138 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05002139 slot = path->slots[i];
Chris Mason5f39d392007-10-15 16:14:19 -04002140 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
2141 struct extent_buffer *node;
2142 struct btrfs_disk_key disk_key;
2143 node = path->nodes[i];
Chris Mason20524f02007-03-10 06:35:47 -05002144 path->slots[i]++;
2145 *level = i;
Chris Mason9f3a7422007-08-07 15:52:19 -04002146 WARN_ON(*level == 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002147 btrfs_node_key(node, &disk_key, path->slots[i]);
Chris Mason9f3a7422007-08-07 15:52:19 -04002148 memcpy(&root_item->drop_progress,
Chris Mason5f39d392007-10-15 16:14:19 -04002149 &disk_key, sizeof(disk_key));
Chris Mason9f3a7422007-08-07 15:52:19 -04002150 root_item->drop_level = i;
Chris Mason20524f02007-03-10 06:35:47 -05002151 return 0;
2152 } else {
Chris Mason7bb86312007-12-11 09:25:06 -05002153 if (path->nodes[*level] == root->node) {
2154 root_owner = root->root_key.objectid;
2155 root_gen =
2156 btrfs_header_generation(path->nodes[*level]);
2157 } else {
2158 struct extent_buffer *node;
2159 node = path->nodes[*level + 1];
2160 root_owner = btrfs_header_owner(node);
2161 root_gen = btrfs_header_generation(node);
2162 }
Chris Masone089f052007-03-16 16:20:31 -04002163 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002164 path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002165 path->nodes[*level]->len,
2166 root_owner, root_gen, 0, 0, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04002167 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002168 free_extent_buffer(path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04002169 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05002170 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05002171 }
2172 }
2173 return 1;
2174}
2175
Chris Mason9aca1d52007-03-13 11:09:37 -04002176/*
2177 * drop the reference count on the tree rooted at 'snap'. This traverses
2178 * the tree freeing any blocks that have a ref count of zero after being
2179 * decremented.
2180 */
Chris Masone089f052007-03-16 16:20:31 -04002181int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04002182 *root)
Chris Mason20524f02007-03-10 06:35:47 -05002183{
Chris Mason3768f362007-03-13 16:47:54 -04002184 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04002185 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05002186 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04002187 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05002188 int i;
2189 int orig_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002190 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002191
Chris Mason5caf2a02007-04-02 11:20:42 -04002192 path = btrfs_alloc_path();
2193 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05002194
Chris Mason5f39d392007-10-15 16:14:19 -04002195 level = btrfs_header_level(root->node);
Chris Mason20524f02007-03-10 06:35:47 -05002196 orig_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002197 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2198 path->nodes[level] = root->node;
Chris Masonf510cfe2007-10-15 16:14:48 -04002199 extent_buffer_get(root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -04002200 path->slots[level] = 0;
2201 } else {
2202 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002203 struct btrfs_disk_key found_key;
2204 struct extent_buffer *node;
Chris Mason6702ed42007-08-07 16:15:09 -04002205
Chris Mason9f3a7422007-08-07 15:52:19 -04002206 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Chris Mason6702ed42007-08-07 16:15:09 -04002207 level = root_item->drop_level;
2208 path->lowest_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002209 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason6702ed42007-08-07 16:15:09 -04002210 if (wret < 0) {
Chris Mason9f3a7422007-08-07 15:52:19 -04002211 ret = wret;
2212 goto out;
2213 }
Chris Mason5f39d392007-10-15 16:14:19 -04002214 node = path->nodes[level];
2215 btrfs_node_key(node, &found_key, path->slots[level]);
2216 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2217 sizeof(found_key)));
Chris Mason9f3a7422007-08-07 15:52:19 -04002218 }
Chris Mason20524f02007-03-10 06:35:47 -05002219 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002220 wret = walk_down_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;
2225
Chris Mason5caf2a02007-04-02 11:20:42 -04002226 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002227 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002228 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002229 if (wret < 0)
2230 ret = wret;
Chris Mason409eb952007-08-08 20:17:12 -04002231 ret = -EAGAIN;
Chris Mason409eb952007-08-08 20:17:12 -04002232 break;
Chris Mason20524f02007-03-10 06:35:47 -05002233 }
Chris Mason83e15a22007-03-12 09:03:27 -04002234 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002235 if (path->nodes[i]) {
Chris Mason5f39d392007-10-15 16:14:19 -04002236 free_extent_buffer(path->nodes[i]);
Chris Mason0f827312007-10-15 16:18:56 -04002237 path->nodes[i] = NULL;
Chris Mason83e15a22007-03-12 09:03:27 -04002238 }
Chris Mason20524f02007-03-10 06:35:47 -05002239 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002240out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002241 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04002242 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05002243}
Chris Mason9078a3e2007-04-26 16:46:15 -04002244
Chris Masonbe744172007-05-06 10:15:01 -04002245int btrfs_free_block_groups(struct btrfs_fs_info *info)
2246{
Chris Masonf510cfe2007-10-15 16:14:48 -04002247 u64 start;
2248 u64 end;
Yanb97f9202007-11-01 11:28:41 -04002249 u64 ptr;
Chris Mason96b51792007-10-15 16:15:19 -04002250 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04002251 while(1) {
2252 ret = find_first_extent_bit(&info->block_group_cache, 0,
2253 &start, &end, (unsigned int)-1);
2254 if (ret)
2255 break;
Yanb97f9202007-11-01 11:28:41 -04002256 ret = get_state_private(&info->block_group_cache, start, &ptr);
2257 if (!ret)
2258 kfree((void *)(unsigned long)ptr);
Chris Mason96b51792007-10-15 16:15:19 -04002259 clear_extent_bits(&info->block_group_cache, start,
2260 end, (unsigned int)-1, GFP_NOFS);
2261 }
Chris Masone37c9e62007-05-09 20:13:14 -04002262 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -04002263 ret = find_first_extent_bit(&info->free_space_cache, 0,
2264 &start, &end, EXTENT_DIRTY);
2265 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -04002266 break;
Chris Masonf510cfe2007-10-15 16:14:48 -04002267 clear_extent_dirty(&info->free_space_cache, start,
2268 end, GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04002269 }
Chris Masonbe744172007-05-06 10:15:01 -04002270 return 0;
2271}
2272
Chris Mason98ed5172008-01-03 10:01:48 -05002273static int noinline relocate_inode_pages(struct inode *inode, u64 start,
2274 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05002275{
2276 u64 page_start;
2277 u64 page_end;
2278 u64 delalloc_start;
2279 u64 existing_delalloc;
2280 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05002281 unsigned long i;
2282 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05002283 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05002284 struct file_ra_state *ra;
2285
2286 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002287
2288 mutex_lock(&inode->i_mutex);
Chris Mason4313b392008-01-03 09:08:48 -05002289 i = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05002290 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
2291
Chris Mason4313b392008-01-03 09:08:48 -05002292 file_ra_state_init(ra, inode->i_mapping);
2293 btrfs_force_ra(inode->i_mapping, ra, NULL, i, last_index);
2294 kfree(ra);
Chris Masonedbd8d42007-12-21 16:27:24 -05002295
Chris Mason4313b392008-01-03 09:08:48 -05002296 for (; i <= last_index; i++) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002297 page = grab_cache_page(inode->i_mapping, i);
2298 if (!page)
2299 goto out_unlock;
2300 if (!PageUptodate(page)) {
2301 btrfs_readpage(NULL, page);
2302 lock_page(page);
2303 if (!PageUptodate(page)) {
2304 unlock_page(page);
2305 page_cache_release(page);
2306 goto out_unlock;
2307 }
2308 }
2309 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2310 page_end = page_start + PAGE_CACHE_SIZE - 1;
2311
Chris Masond1310b22008-01-24 16:13:08 -05002312 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002313
2314 delalloc_start = page_start;
Chris Masond1310b22008-01-24 16:13:08 -05002315 existing_delalloc = count_range_bits(io_tree,
2316 &delalloc_start, page_end,
2317 PAGE_CACHE_SIZE, EXTENT_DELALLOC);
Chris Masonedbd8d42007-12-21 16:27:24 -05002318
Chris Masond1310b22008-01-24 16:13:08 -05002319 set_extent_delalloc(io_tree, page_start,
Chris Masonedbd8d42007-12-21 16:27:24 -05002320 page_end, GFP_NOFS);
2321
Chris Masond1310b22008-01-24 16:13:08 -05002322 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002323 set_page_dirty(page);
2324 unlock_page(page);
2325 page_cache_release(page);
2326 }
2327
2328out_unlock:
2329 mutex_unlock(&inode->i_mutex);
2330 return 0;
2331}
2332
Chris Mason4313b392008-01-03 09:08:48 -05002333/*
2334 * note, this releases the path
2335 */
Chris Mason98ed5172008-01-03 10:01:48 -05002336static int noinline relocate_one_reference(struct btrfs_root *extent_root,
Chris Masonedbd8d42007-12-21 16:27:24 -05002337 struct btrfs_path *path,
Chris Mason4313b392008-01-03 09:08:48 -05002338 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002339{
2340 struct inode *inode;
2341 struct btrfs_root *found_root;
Chris Mason4313b392008-01-03 09:08:48 -05002342 struct btrfs_key *root_location;
2343 struct btrfs_extent_ref *ref;
2344 u64 ref_root;
2345 u64 ref_gen;
2346 u64 ref_objectid;
2347 u64 ref_offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05002348 int ret;
2349
Chris Mason4313b392008-01-03 09:08:48 -05002350 ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
2351 struct btrfs_extent_ref);
2352 ref_root = btrfs_ref_root(path->nodes[0], ref);
2353 ref_gen = btrfs_ref_generation(path->nodes[0], ref);
2354 ref_objectid = btrfs_ref_objectid(path->nodes[0], ref);
2355 ref_offset = btrfs_ref_offset(path->nodes[0], ref);
2356 btrfs_release_path(extent_root, path);
2357
2358 root_location = kmalloc(sizeof(*root_location), GFP_NOFS);
2359 root_location->objectid = ref_root;
Chris Masonedbd8d42007-12-21 16:27:24 -05002360 if (ref_gen == 0)
Chris Mason4313b392008-01-03 09:08:48 -05002361 root_location->offset = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002362 else
Chris Mason4313b392008-01-03 09:08:48 -05002363 root_location->offset = (u64)-1;
2364 root_location->type = BTRFS_ROOT_ITEM_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05002365
2366 found_root = btrfs_read_fs_root_no_name(extent_root->fs_info,
Chris Mason4313b392008-01-03 09:08:48 -05002367 root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002368 BUG_ON(!found_root);
Chris Mason4313b392008-01-03 09:08:48 -05002369 kfree(root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002370
2371 if (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
2372 mutex_unlock(&extent_root->fs_info->fs_mutex);
2373 inode = btrfs_iget_locked(extent_root->fs_info->sb,
2374 ref_objectid, found_root);
2375 if (inode->i_state & I_NEW) {
2376 /* the inode and parent dir are two different roots */
2377 BTRFS_I(inode)->root = found_root;
2378 BTRFS_I(inode)->location.objectid = ref_objectid;
2379 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
2380 BTRFS_I(inode)->location.offset = 0;
2381 btrfs_read_locked_inode(inode);
2382 unlock_new_inode(inode);
2383
2384 }
2385 /* this can happen if the reference is not against
2386 * the latest version of the tree root
2387 */
2388 if (is_bad_inode(inode)) {
2389 mutex_lock(&extent_root->fs_info->fs_mutex);
2390 goto out;
2391 }
2392 relocate_inode_pages(inode, ref_offset, extent_key->offset);
2393 /* FIXME, data=ordered will help get rid of this */
2394 filemap_fdatawrite(inode->i_mapping);
2395 iput(inode);
2396 mutex_lock(&extent_root->fs_info->fs_mutex);
2397 } else {
2398 struct btrfs_trans_handle *trans;
2399 struct btrfs_key found_key;
2400 struct extent_buffer *eb;
2401 int level;
2402 int i;
2403
2404 trans = btrfs_start_transaction(found_root, 1);
2405 eb = read_tree_block(found_root, extent_key->objectid,
2406 extent_key->offset);
2407 level = btrfs_header_level(eb);
2408
2409 if (level == 0)
2410 btrfs_item_key_to_cpu(eb, &found_key, 0);
2411 else
2412 btrfs_node_key_to_cpu(eb, &found_key, 0);
2413
2414 free_extent_buffer(eb);
2415
2416 path->lowest_level = level;
Chris Mason8f662a72008-01-02 10:01:11 -05002417 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002418 ret = btrfs_search_slot(trans, found_root, &found_key, path,
2419 0, 1);
2420 path->lowest_level = 0;
2421 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2422 if (!path->nodes[i])
2423 break;
2424 free_extent_buffer(path->nodes[i]);
2425 path->nodes[i] = NULL;
2426 }
2427 btrfs_release_path(found_root, path);
2428 btrfs_end_transaction(trans, found_root);
2429 }
2430
2431out:
2432 return 0;
2433}
2434
Chris Mason98ed5172008-01-03 10:01:48 -05002435static int noinline relocate_one_extent(struct btrfs_root *extent_root,
2436 struct btrfs_path *path,
2437 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002438{
2439 struct btrfs_key key;
2440 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002441 struct extent_buffer *leaf;
Chris Masonedbd8d42007-12-21 16:27:24 -05002442 u32 nritems;
2443 u32 item_size;
2444 int ret = 0;
2445
2446 key.objectid = extent_key->objectid;
2447 key.type = BTRFS_EXTENT_REF_KEY;
2448 key.offset = 0;
2449
2450 while(1) {
2451 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2452
Chris Masonedbd8d42007-12-21 16:27:24 -05002453 if (ret < 0)
2454 goto out;
2455
2456 ret = 0;
2457 leaf = path->nodes[0];
2458 nritems = btrfs_header_nritems(leaf);
2459 if (path->slots[0] == nritems)
2460 goto out;
2461
2462 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2463 if (found_key.objectid != extent_key->objectid)
2464 break;
2465
2466 if (found_key.type != BTRFS_EXTENT_REF_KEY)
2467 break;
2468
2469 key.offset = found_key.offset + 1;
2470 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2471
Chris Mason4313b392008-01-03 09:08:48 -05002472 ret = relocate_one_reference(extent_root, path, extent_key);
Chris Masonedbd8d42007-12-21 16:27:24 -05002473 if (ret)
2474 goto out;
2475 }
2476 ret = 0;
2477out:
2478 btrfs_release_path(extent_root, path);
2479 return ret;
2480}
2481
Chris Masonedbd8d42007-12-21 16:27:24 -05002482int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 new_size)
2483{
2484 struct btrfs_trans_handle *trans;
2485 struct btrfs_root *tree_root = root->fs_info->tree_root;
2486 struct btrfs_path *path;
2487 u64 cur_byte;
2488 u64 total_found;
Chris Masonedbd8d42007-12-21 16:27:24 -05002489 struct btrfs_fs_info *info = root->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05002490 struct extent_io_tree *block_group_cache;
Chris Masonedbd8d42007-12-21 16:27:24 -05002491 struct btrfs_key key;
Yan73e48b22008-01-03 14:14:39 -05002492 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002493 struct extent_buffer *leaf;
2494 u32 nritems;
2495 int ret;
Chris Mason725c8462008-01-04 16:47:16 -05002496 int progress = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002497
2498 btrfs_set_super_total_bytes(&info->super_copy, new_size);
Chris Masonc31f8832008-01-08 15:46:31 -05002499 clear_extent_dirty(&info->free_space_cache, new_size, (u64)-1,
2500 GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002501 block_group_cache = &info->block_group_cache;
2502 path = btrfs_alloc_path();
2503 root = root->fs_info->extent_root;
Chris Mason8f662a72008-01-02 10:01:11 -05002504 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002505
2506again:
2507 total_found = 0;
2508 key.objectid = new_size;
Chris Masonedbd8d42007-12-21 16:27:24 -05002509 key.offset = 0;
2510 key.type = 0;
Yan73e48b22008-01-03 14:14:39 -05002511 cur_byte = key.objectid;
Chris Mason4313b392008-01-03 09:08:48 -05002512
Yan73e48b22008-01-03 14:14:39 -05002513 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2514 if (ret < 0)
2515 goto out;
2516
Chris Mason0b86a832008-03-24 15:01:56 -04002517 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
Yan73e48b22008-01-03 14:14:39 -05002518 if (ret < 0)
2519 goto out;
2520 if (ret == 0) {
2521 leaf = path->nodes[0];
2522 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2523 if (found_key.objectid + found_key.offset > new_size) {
2524 cur_byte = found_key.objectid;
2525 key.objectid = cur_byte;
2526 }
2527 }
2528 btrfs_release_path(root, path);
2529
2530 while(1) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002531 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2532 if (ret < 0)
2533 goto out;
Yan73e48b22008-01-03 14:14:39 -05002534
Chris Masonedbd8d42007-12-21 16:27:24 -05002535 leaf = path->nodes[0];
Chris Masonedbd8d42007-12-21 16:27:24 -05002536 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05002537next:
2538 if (path->slots[0] >= nritems) {
2539 ret = btrfs_next_leaf(root, path);
2540 if (ret < 0)
2541 goto out;
2542 if (ret == 1) {
2543 ret = 0;
2544 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05002545 }
Yan73e48b22008-01-03 14:14:39 -05002546 leaf = path->nodes[0];
2547 nritems = btrfs_header_nritems(leaf);
2548 }
2549
2550 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason725c8462008-01-04 16:47:16 -05002551
2552 if (progress && need_resched()) {
2553 memcpy(&key, &found_key, sizeof(key));
2554 mutex_unlock(&root->fs_info->fs_mutex);
2555 cond_resched();
2556 mutex_lock(&root->fs_info->fs_mutex);
2557 btrfs_release_path(root, path);
2558 btrfs_search_slot(NULL, root, &key, path, 0, 0);
2559 progress = 0;
2560 goto next;
2561 }
2562 progress = 1;
2563
Yan73e48b22008-01-03 14:14:39 -05002564 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_ITEM_KEY ||
2565 found_key.objectid + found_key.offset <= cur_byte) {
2566 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05002567 goto next;
2568 }
Yan73e48b22008-01-03 14:14:39 -05002569
Chris Masonedbd8d42007-12-21 16:27:24 -05002570 total_found++;
2571 cur_byte = found_key.objectid + found_key.offset;
2572 key.objectid = cur_byte;
2573 btrfs_release_path(root, path);
2574 ret = relocate_one_extent(root, path, &found_key);
2575 }
2576
2577 btrfs_release_path(root, path);
2578
2579 if (total_found > 0) {
2580 trans = btrfs_start_transaction(tree_root, 1);
2581 btrfs_commit_transaction(trans, tree_root);
2582
2583 mutex_unlock(&root->fs_info->fs_mutex);
2584 btrfs_clean_old_snapshots(tree_root);
2585 mutex_lock(&root->fs_info->fs_mutex);
2586
2587 trans = btrfs_start_transaction(tree_root, 1);
2588 btrfs_commit_transaction(trans, tree_root);
2589 goto again;
2590 }
2591
2592 trans = btrfs_start_transaction(root, 1);
2593 key.objectid = new_size;
2594 key.offset = 0;
2595 key.type = 0;
2596 while(1) {
Chris Mason4313b392008-01-03 09:08:48 -05002597 u64 ptr;
2598
Chris Masonedbd8d42007-12-21 16:27:24 -05002599 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2600 if (ret < 0)
2601 goto out;
Yan73e48b22008-01-03 14:14:39 -05002602
Chris Masonedbd8d42007-12-21 16:27:24 -05002603 leaf = path->nodes[0];
2604 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05002605bg_next:
2606 if (path->slots[0] >= nritems) {
2607 ret = btrfs_next_leaf(root, path);
2608 if (ret < 0)
2609 break;
2610 if (ret == 1) {
2611 ret = 0;
2612 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05002613 }
Yan73e48b22008-01-03 14:14:39 -05002614 leaf = path->nodes[0];
Chris Mason1372f8e2008-01-04 09:34:54 -05002615 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2616
2617 /*
2618 * btrfs_next_leaf doesn't cow buffers, we have to
2619 * do the search again
2620 */
2621 memcpy(&key, &found_key, sizeof(key));
2622 btrfs_release_path(root, path);
Chris Mason725c8462008-01-04 16:47:16 -05002623 goto resched_check;
Yan73e48b22008-01-03 14:14:39 -05002624 }
2625
2626 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2627 if (btrfs_key_type(&found_key) != BTRFS_BLOCK_GROUP_ITEM_KEY) {
2628 printk("shrinker found key %Lu %u %Lu\n",
2629 found_key.objectid, found_key.type,
2630 found_key.offset);
2631 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05002632 goto bg_next;
2633 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002634 ret = get_state_private(&info->block_group_cache,
2635 found_key.objectid, &ptr);
2636 if (!ret)
2637 kfree((void *)(unsigned long)ptr);
2638
2639 clear_extent_bits(&info->block_group_cache, found_key.objectid,
2640 found_key.objectid + found_key.offset - 1,
2641 (unsigned int)-1, GFP_NOFS);
2642
2643 key.objectid = found_key.objectid + 1;
2644 btrfs_del_item(trans, root, path);
2645 btrfs_release_path(root, path);
Chris Mason725c8462008-01-04 16:47:16 -05002646resched_check:
2647 if (need_resched()) {
2648 mutex_unlock(&root->fs_info->fs_mutex);
2649 cond_resched();
2650 mutex_lock(&root->fs_info->fs_mutex);
2651 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002652 }
2653 clear_extent_dirty(&info->free_space_cache, new_size, (u64)-1,
2654 GFP_NOFS);
2655 btrfs_commit_transaction(trans, root);
2656out:
2657 btrfs_free_path(path);
2658 return ret;
2659}
2660
2661int btrfs_grow_extent_tree(struct btrfs_trans_handle *trans,
2662 struct btrfs_root *root, u64 new_size)
2663{
Chris Mason0b86a832008-03-24 15:01:56 -04002664 btrfs_set_super_total_bytes(&root->fs_info->super_copy, new_size);
Chris Masonedbd8d42007-12-21 16:27:24 -05002665 return 0;
2666}
2667
Chris Mason0b86a832008-03-24 15:01:56 -04002668int find_first_block_group(struct btrfs_root *root, struct btrfs_path *path,
2669 struct btrfs_key *key)
2670{
2671 int ret;
2672 struct btrfs_key found_key;
2673 struct extent_buffer *leaf;
2674 int slot;
2675
2676 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
2677 if (ret < 0)
2678 return ret;
2679 while(1) {
2680 slot = path->slots[0];
2681 leaf = path->nodes[0];
2682 if (slot >= btrfs_header_nritems(leaf)) {
2683 ret = btrfs_next_leaf(root, path);
2684 if (ret == 0)
2685 continue;
2686 if (ret < 0)
2687 goto error;
2688 break;
2689 }
2690 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2691
2692 if (found_key.objectid >= key->objectid &&
2693 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY)
2694 return 0;
2695 path->slots[0]++;
2696 }
2697 ret = -ENOENT;
2698error:
2699 return ret;
2700}
2701
Chris Mason9078a3e2007-04-26 16:46:15 -04002702int btrfs_read_block_groups(struct btrfs_root *root)
2703{
2704 struct btrfs_path *path;
2705 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04002706 int bit;
Chris Mason9078a3e2007-04-26 16:46:15 -04002707 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04002708 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04002709 struct btrfs_space_info *space_info;
Chris Masond1310b22008-01-24 16:13:08 -05002710 struct extent_io_tree *block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002711 struct btrfs_key key;
2712 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04002713 struct extent_buffer *leaf;
Chris Mason96b51792007-10-15 16:15:19 -04002714
2715 block_group_cache = &info->block_group_cache;
Chris Masonbe744172007-05-06 10:15:01 -04002716 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04002717 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04002718 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002719 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04002720 path = btrfs_alloc_path();
2721 if (!path)
2722 return -ENOMEM;
2723
2724 while(1) {
Chris Mason0b86a832008-03-24 15:01:56 -04002725 ret = find_first_block_group(root, path, &key);
2726 if (ret > 0) {
2727 ret = 0;
2728 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04002729 }
Chris Mason0b86a832008-03-24 15:01:56 -04002730 if (ret != 0)
2731 goto error;
2732
Chris Mason5f39d392007-10-15 16:14:19 -04002733 leaf = path->nodes[0];
2734 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason9078a3e2007-04-26 16:46:15 -04002735 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2736 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04002737 ret = -ENOMEM;
Chris Mason9078a3e2007-04-26 16:46:15 -04002738 break;
2739 }
Chris Mason3e1ad542007-05-07 20:03:49 -04002740
Chris Mason5f39d392007-10-15 16:14:19 -04002741 read_extent_buffer(leaf, &cache->item,
2742 btrfs_item_ptr_offset(leaf, path->slots[0]),
2743 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04002744 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Masone37c9e62007-05-09 20:13:14 -04002745 cache->cached = 0;
Yan324ae4d2007-11-16 14:57:08 -05002746 cache->pinned = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04002747
Chris Mason9078a3e2007-04-26 16:46:15 -04002748 key.objectid = found_key.objectid + found_key.offset;
2749 btrfs_release_path(root, path);
Chris Mason0b86a832008-03-24 15:01:56 -04002750 cache->flags = btrfs_block_group_flags(&cache->item);
2751 bit = 0;
2752 if (cache->flags & BTRFS_BLOCK_GROUP_DATA) {
Chris Mason96b51792007-10-15 16:15:19 -04002753 bit = BLOCK_GROUP_DATA;
Chris Mason0b86a832008-03-24 15:01:56 -04002754 } else if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
2755 bit = BLOCK_GROUP_SYSTEM;
2756 } else if (cache->flags & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason96b51792007-10-15 16:15:19 -04002757 bit = BLOCK_GROUP_METADATA;
Chris Mason31f3c992007-04-30 15:25:45 -04002758 }
Chris Mason8790d502008-04-03 16:29:03 -04002759 set_avail_alloc_bits(info, cache->flags);
Chris Mason96b51792007-10-15 16:15:19 -04002760
Chris Mason6324fbf2008-03-24 15:01:59 -04002761 ret = update_space_info(info, cache->flags, found_key.offset,
2762 btrfs_block_group_used(&cache->item),
2763 &space_info);
2764 BUG_ON(ret);
2765 cache->space_info = space_info;
2766
Chris Mason96b51792007-10-15 16:15:19 -04002767 /* use EXTENT_LOCKED to prevent merging */
2768 set_extent_bits(block_group_cache, found_key.objectid,
2769 found_key.objectid + found_key.offset - 1,
2770 bit | EXTENT_LOCKED, GFP_NOFS);
2771 set_state_private(block_group_cache, found_key.objectid,
Jens Axboeae2f5412007-10-19 09:22:59 -04002772 (unsigned long)cache);
Chris Mason96b51792007-10-15 16:15:19 -04002773
Chris Mason9078a3e2007-04-26 16:46:15 -04002774 if (key.objectid >=
Chris Masondb945352007-10-15 16:15:53 -04002775 btrfs_super_total_bytes(&info->super_copy))
Chris Mason9078a3e2007-04-26 16:46:15 -04002776 break;
2777 }
Chris Mason0b86a832008-03-24 15:01:56 -04002778 ret = 0;
2779error:
Chris Mason9078a3e2007-04-26 16:46:15 -04002780 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04002781 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04002782}
Chris Mason6324fbf2008-03-24 15:01:59 -04002783
2784int btrfs_make_block_group(struct btrfs_trans_handle *trans,
2785 struct btrfs_root *root, u64 bytes_used,
2786 u64 type, u64 chunk_tree, u64 chunk_objectid,
2787 u64 size)
2788{
2789 int ret;
2790 int bit = 0;
2791 struct btrfs_root *extent_root;
2792 struct btrfs_block_group_cache *cache;
2793 struct extent_io_tree *block_group_cache;
2794
2795 extent_root = root->fs_info->extent_root;
2796 block_group_cache = &root->fs_info->block_group_cache;
2797
2798 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2799 BUG_ON(!cache);
2800 cache->key.objectid = chunk_objectid;
2801 cache->key.offset = size;
2802 cache->cached = 0;
2803 cache->pinned = 0;
2804 btrfs_set_key_type(&cache->key, BTRFS_BLOCK_GROUP_ITEM_KEY);
2805 memset(&cache->item, 0, sizeof(cache->item));
2806 btrfs_set_block_group_used(&cache->item, bytes_used);
2807 btrfs_set_block_group_chunk_tree(&cache->item, chunk_tree);
2808 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
2809 cache->flags = type;
2810 btrfs_set_block_group_flags(&cache->item, type);
2811
2812 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
2813 &cache->space_info);
2814 BUG_ON(ret);
2815
2816 if (type & BTRFS_BLOCK_GROUP_DATA) {
2817 bit = BLOCK_GROUP_DATA;
2818 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
2819 bit = BLOCK_GROUP_SYSTEM;
2820 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
2821 bit = BLOCK_GROUP_METADATA;
2822 }
2823 set_extent_bits(block_group_cache, chunk_objectid,
2824 chunk_objectid + size - 1,
2825 bit | EXTENT_LOCKED, GFP_NOFS);
2826 set_state_private(block_group_cache, chunk_objectid,
2827 (unsigned long)cache);
2828
2829 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
2830 sizeof(cache->item));
2831 BUG_ON(ret);
2832
2833 finish_current_insert(trans, extent_root);
2834 ret = del_pending_extents(trans, extent_root);
2835 BUG_ON(ret);
2836 return 0;
2837}