blob: a34c289aec2132faae8296b98232befe737e1ab0 [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 Mason0b86a832008-03-24 15:01:56 -0400233 *start_ret = start;
234 return 0;
Chris Mason7d1660d2008-03-24 15:02:03 -0400235 } out:
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500236 cache = btrfs_lookup_block_group(root->fs_info, search_start);
237 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -0400238 printk("Unable to find block group for %Lu\n", search_start);
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500239 WARN_ON(1);
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500240 }
Chris Mason0b86a832008-03-24 15:01:56 -0400241 return -ENOSPC;
Chris Masone37c9e62007-05-09 20:13:14 -0400242
243new_group:
Chris Masone19caa52007-10-15 16:17:44 -0400244 last = cache->key.objectid + cache->key.offset;
Chris Masonf84a8b32007-11-06 10:26:29 -0500245wrapped:
Chris Masone19caa52007-10-15 16:17:44 -0400246 cache = btrfs_lookup_block_group(root->fs_info, last);
Chris Masonc31f8832008-01-08 15:46:31 -0500247 if (!cache || cache->key.objectid >= total_fs_bytes) {
Chris Mason0e4de582007-11-26 10:55:49 -0500248no_cache:
Chris Masonf84a8b32007-11-06 10:26:29 -0500249 if (!wrapped) {
250 wrapped = 1;
251 last = search_start;
Chris Masonf84a8b32007-11-06 10:26:29 -0500252 goto wrapped;
253 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500254 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -0400255 }
Chris Mason257d0ce2007-11-07 21:08:16 -0500256 if (cache_miss && !cache->cached) {
257 cache_block_group(root, cache);
258 last = cache_miss;
Chris Mason257d0ce2007-11-07 21:08:16 -0500259 cache = btrfs_lookup_block_group(root->fs_info, last);
260 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500261 cache = btrfs_find_block_group(root, cache, last, data, 0);
Chris Mason0e4de582007-11-26 10:55:49 -0500262 if (!cache)
263 goto no_cache;
Chris Masone37c9e62007-05-09 20:13:14 -0400264 *cache_ret = cache;
Chris Mason257d0ce2007-11-07 21:08:16 -0500265 cache_miss = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400266 goto again;
267}
268
Chris Mason84f54cf2007-06-12 07:43:08 -0400269static u64 div_factor(u64 num, int factor)
270{
Chris Mason257d0ce2007-11-07 21:08:16 -0500271 if (factor == 10)
272 return num;
Chris Mason84f54cf2007-06-12 07:43:08 -0400273 num *= factor;
274 do_div(num, 10);
275 return num;
276}
277
Chris Mason6324fbf2008-03-24 15:01:59 -0400278static int block_group_state_bits(u64 flags)
279{
280 int bits = 0;
281 if (flags & BTRFS_BLOCK_GROUP_DATA)
282 bits |= BLOCK_GROUP_DATA;
283 if (flags & BTRFS_BLOCK_GROUP_METADATA)
284 bits |= BLOCK_GROUP_METADATA;
285 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
286 bits |= BLOCK_GROUP_SYSTEM;
287 return bits;
288}
289
Chris Mason31f3c992007-04-30 15:25:45 -0400290struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
291 struct btrfs_block_group_cache
Chris Masonbe744172007-05-06 10:15:01 -0400292 *hint, u64 search_start,
Chris Masonde428b62007-05-18 13:28:27 -0400293 int data, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400294{
Chris Mason96b51792007-10-15 16:15:19 -0400295 struct btrfs_block_group_cache *cache;
Chris Masond1310b22008-01-24 16:13:08 -0500296 struct extent_io_tree *block_group_cache;
Chris Mason31f3c992007-04-30 15:25:45 -0400297 struct btrfs_block_group_cache *found_group = NULL;
Chris Masoncd1bc462007-04-27 10:08:34 -0400298 struct btrfs_fs_info *info = root->fs_info;
299 u64 used;
Chris Mason31f3c992007-04-30 15:25:45 -0400300 u64 last = 0;
301 u64 hint_last;
Chris Mason96b51792007-10-15 16:15:19 -0400302 u64 start;
303 u64 end;
304 u64 free_check;
305 u64 ptr;
Chris Masonc31f8832008-01-08 15:46:31 -0500306 u64 total_fs_bytes;
Chris Mason96b51792007-10-15 16:15:19 -0400307 int bit;
Chris Masoncd1bc462007-04-27 10:08:34 -0400308 int ret;
Chris Mason31f3c992007-04-30 15:25:45 -0400309 int full_search = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400310 int factor = 8;
311
Chris Mason96b51792007-10-15 16:15:19 -0400312 block_group_cache = &info->block_group_cache;
Chris Masonc31f8832008-01-08 15:46:31 -0500313 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Mason96b51792007-10-15 16:15:19 -0400314
Chris Masonde428b62007-05-18 13:28:27 -0400315 if (!owner)
Chris Masonf84a8b32007-11-06 10:26:29 -0500316 factor = 8;
Chris Masonbe744172007-05-06 10:15:01 -0400317
Chris Mason6324fbf2008-03-24 15:01:59 -0400318 bit = block_group_state_bits(data);
Chris Masonbe744172007-05-06 10:15:01 -0400319
Chris Masonc31f8832008-01-08 15:46:31 -0500320 if (search_start && search_start < total_fs_bytes) {
Chris Masonbe744172007-05-06 10:15:01 -0400321 struct btrfs_block_group_cache *shint;
Chris Mason5276aed2007-06-11 21:33:38 -0400322 shint = btrfs_lookup_block_group(info, search_start);
Chris Mason0b86a832008-03-24 15:01:56 -0400323 if (shint && block_group_bits(shint, data)) {
Chris Masonbe744172007-05-06 10:15:01 -0400324 used = btrfs_block_group_used(&shint->item);
Yan324ae4d2007-11-16 14:57:08 -0500325 if (used + shint->pinned <
326 div_factor(shint->key.offset, factor)) {
Chris Masonbe744172007-05-06 10:15:01 -0400327 return shint;
328 }
329 }
330 }
Chris Mason0b86a832008-03-24 15:01:56 -0400331 if (hint && block_group_bits(hint, data) &&
332 hint->key.objectid < total_fs_bytes) {
Chris Mason31f3c992007-04-30 15:25:45 -0400333 used = btrfs_block_group_used(&hint->item);
Yan324ae4d2007-11-16 14:57:08 -0500334 if (used + hint->pinned <
335 div_factor(hint->key.offset, factor)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400336 return hint;
337 }
Chris Masone19caa52007-10-15 16:17:44 -0400338 last = hint->key.objectid + hint->key.offset;
Chris Mason31f3c992007-04-30 15:25:45 -0400339 hint_last = last;
340 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400341 if (hint)
342 hint_last = max(hint->key.objectid, search_start);
343 else
344 hint_last = search_start;
345
Chris Masonc31f8832008-01-08 15:46:31 -0500346 if (hint_last >= total_fs_bytes)
347 hint_last = search_start;
Chris Masone37c9e62007-05-09 20:13:14 -0400348 last = hint_last;
Chris Mason31f3c992007-04-30 15:25:45 -0400349 }
Chris Mason31f3c992007-04-30 15:25:45 -0400350again:
Chris Masoncd1bc462007-04-27 10:08:34 -0400351 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400352 ret = find_first_extent_bit(block_group_cache, last,
353 &start, &end, bit);
354 if (ret)
Chris Masoncd1bc462007-04-27 10:08:34 -0400355 break;
Chris Mason96b51792007-10-15 16:15:19 -0400356
357 ret = get_state_private(block_group_cache, start, &ptr);
358 if (ret)
359 break;
360
Jens Axboeae2f5412007-10-19 09:22:59 -0400361 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400362 last = cache->key.objectid + cache->key.offset;
363 used = btrfs_block_group_used(&cache->item);
364
Chris Masonc31f8832008-01-08 15:46:31 -0500365 if (cache->key.objectid > total_fs_bytes)
366 break;
367
Chris Mason96b51792007-10-15 16:15:19 -0400368 if (full_search)
369 free_check = cache->key.offset;
370 else
371 free_check = div_factor(cache->key.offset, factor);
Chris Mason6324fbf2008-03-24 15:01:59 -0400372
Yan324ae4d2007-11-16 14:57:08 -0500373 if (used + cache->pinned < free_check) {
Chris Mason96b51792007-10-15 16:15:19 -0400374 found_group = cache;
375 goto found;
Chris Masoncd1bc462007-04-27 10:08:34 -0400376 }
Chris Masonde428b62007-05-18 13:28:27 -0400377 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400378 }
Chris Mason31f3c992007-04-30 15:25:45 -0400379 if (!full_search) {
Chris Masonbe744172007-05-06 10:15:01 -0400380 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400381 full_search = 1;
382 goto again;
383 }
Chris Masonbe744172007-05-06 10:15:01 -0400384found:
Chris Mason31f3c992007-04-30 15:25:45 -0400385 return found_group;
Chris Masoncd1bc462007-04-27 10:08:34 -0400386}
387
Chris Mason7bb86312007-12-11 09:25:06 -0500388static u64 hash_extent_ref(u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500389 u64 owner, u64 owner_offset)
390{
391 u32 high_crc = ~(u32)0;
392 u32 low_crc = ~(u32)0;
393 __le64 lenum;
394
395 lenum = cpu_to_le64(root_objectid);
396 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Chris Mason7bb86312007-12-11 09:25:06 -0500397 lenum = cpu_to_le64(ref_generation);
398 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500399 if (owner >= BTRFS_FIRST_FREE_OBJECTID) {
400 lenum = cpu_to_le64(owner);
401 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
402 lenum = cpu_to_le64(owner_offset);
403 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
404 }
Chris Mason74493f72007-12-11 09:25:06 -0500405 return ((u64)high_crc << 32) | (u64)low_crc;
406}
407
Chris Mason7bb86312007-12-11 09:25:06 -0500408static int match_extent_ref(struct extent_buffer *leaf,
409 struct btrfs_extent_ref *disk_ref,
410 struct btrfs_extent_ref *cpu_ref)
411{
412 int ret;
413 int len;
414
415 if (cpu_ref->objectid)
416 len = sizeof(*cpu_ref);
417 else
418 len = 2 * sizeof(u64);
419 ret = memcmp_extent_buffer(leaf, cpu_ref, (unsigned long)disk_ref,
420 len);
421 return ret == 0;
422}
423
Chris Mason98ed5172008-01-03 10:01:48 -0500424static int noinline lookup_extent_backref(struct btrfs_trans_handle *trans,
425 struct btrfs_root *root,
426 struct btrfs_path *path, u64 bytenr,
427 u64 root_objectid,
428 u64 ref_generation, u64 owner,
429 u64 owner_offset, int del)
Chris Mason7bb86312007-12-11 09:25:06 -0500430{
431 u64 hash;
432 struct btrfs_key key;
433 struct btrfs_key found_key;
434 struct btrfs_extent_ref ref;
435 struct extent_buffer *leaf;
436 struct btrfs_extent_ref *disk_ref;
437 int ret;
438 int ret2;
439
440 btrfs_set_stack_ref_root(&ref, root_objectid);
441 btrfs_set_stack_ref_generation(&ref, ref_generation);
442 btrfs_set_stack_ref_objectid(&ref, owner);
443 btrfs_set_stack_ref_offset(&ref, owner_offset);
444
445 hash = hash_extent_ref(root_objectid, ref_generation, owner,
446 owner_offset);
447 key.offset = hash;
448 key.objectid = bytenr;
449 key.type = BTRFS_EXTENT_REF_KEY;
450
451 while (1) {
452 ret = btrfs_search_slot(trans, root, &key, path,
453 del ? -1 : 0, del);
454 if (ret < 0)
455 goto out;
456 leaf = path->nodes[0];
457 if (ret != 0) {
458 u32 nritems = btrfs_header_nritems(leaf);
459 if (path->slots[0] >= nritems) {
460 ret2 = btrfs_next_leaf(root, path);
461 if (ret2)
462 goto out;
463 leaf = path->nodes[0];
464 }
465 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
466 if (found_key.objectid != bytenr ||
467 found_key.type != BTRFS_EXTENT_REF_KEY)
468 goto out;
469 key.offset = found_key.offset;
470 if (del) {
471 btrfs_release_path(root, path);
472 continue;
473 }
474 }
475 disk_ref = btrfs_item_ptr(path->nodes[0],
476 path->slots[0],
477 struct btrfs_extent_ref);
478 if (match_extent_ref(path->nodes[0], disk_ref, &ref)) {
479 ret = 0;
480 goto out;
481 }
482 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
483 key.offset = found_key.offset + 1;
484 btrfs_release_path(root, path);
485 }
486out:
487 return ret;
488}
489
Chris Masond8d5f3e2007-12-11 12:42:00 -0500490/*
491 * Back reference rules. Back refs have three main goals:
492 *
493 * 1) differentiate between all holders of references to an extent so that
494 * when a reference is dropped we can make sure it was a valid reference
495 * before freeing the extent.
496 *
497 * 2) Provide enough information to quickly find the holders of an extent
498 * if we notice a given block is corrupted or bad.
499 *
500 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
501 * maintenance. This is actually the same as #2, but with a slightly
502 * different use case.
503 *
504 * File extents can be referenced by:
505 *
506 * - multiple snapshots, subvolumes, or different generations in one subvol
507 * - different files inside a single subvolume (in theory, not implemented yet)
508 * - different offsets inside a file (bookend extents in file.c)
509 *
510 * The extent ref structure has fields for:
511 *
512 * - Objectid of the subvolume root
513 * - Generation number of the tree holding the reference
514 * - objectid of the file holding the reference
515 * - offset in the file corresponding to the key holding the reference
516 *
517 * When a file extent is allocated the fields are filled in:
518 * (root_key.objectid, trans->transid, inode objectid, offset in file)
519 *
520 * When a leaf is cow'd new references are added for every file extent found
521 * in the leaf. It looks the same as the create case, but trans->transid
522 * will be different when the block is cow'd.
523 *
524 * (root_key.objectid, trans->transid, inode objectid, offset in file)
525 *
526 * When a file extent is removed either during snapshot deletion or file
527 * truncation, the corresponding back reference is found
528 * by searching for:
529 *
530 * (btrfs_header_owner(leaf), btrfs_header_generation(leaf),
531 * inode objectid, offset in file)
532 *
533 * Btree extents can be referenced by:
534 *
535 * - Different subvolumes
536 * - Different generations of the same subvolume
537 *
538 * Storing sufficient information for a full reverse mapping of a btree
539 * block would require storing the lowest key of the block in the backref,
540 * and it would require updating that lowest key either before write out or
541 * every time it changed. Instead, the objectid of the lowest key is stored
542 * along with the level of the tree block. This provides a hint
543 * about where in the btree the block can be found. Searches through the
544 * btree only need to look for a pointer to that block, so they stop one
545 * level higher than the level recorded in the backref.
546 *
547 * Some btrees do not do reference counting on their extents. These
548 * include the extent tree and the tree of tree roots. Backrefs for these
549 * trees always have a generation of zero.
550 *
551 * When a tree block is created, back references are inserted:
552 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500553 * (root->root_key.objectid, trans->transid or zero, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500554 *
555 * When a tree block is cow'd in a reference counted root,
556 * new back references are added for all the blocks it points to.
557 * These are of the form (trans->transid will have increased since creation):
558 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500559 * (root->root_key.objectid, trans->transid, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500560 *
561 * Because the lowest_key_objectid and the level are just hints
562 * they are not used when backrefs are deleted. When a backref is deleted:
563 *
564 * if backref was for a tree root:
565 * root_objectid = root->root_key.objectid
566 * else
567 * root_objectid = btrfs_header_owner(parent)
568 *
569 * (root_objectid, btrfs_header_generation(parent) or zero, 0, 0)
570 *
571 * Back Reference Key hashing:
572 *
573 * Back references have four fields, each 64 bits long. Unfortunately,
574 * This is hashed into a single 64 bit number and placed into the key offset.
575 * The key objectid corresponds to the first byte in the extent, and the
576 * key type is set to BTRFS_EXTENT_REF_KEY
577 */
Chris Mason7bb86312007-12-11 09:25:06 -0500578int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
579 struct btrfs_root *root,
580 struct btrfs_path *path, u64 bytenr,
581 u64 root_objectid, u64 ref_generation,
582 u64 owner, u64 owner_offset)
Chris Mason74493f72007-12-11 09:25:06 -0500583{
584 u64 hash;
585 struct btrfs_key key;
586 struct btrfs_extent_ref ref;
Chris Mason7bb86312007-12-11 09:25:06 -0500587 struct btrfs_extent_ref *disk_ref;
Chris Mason74493f72007-12-11 09:25:06 -0500588 int ret;
589
590 btrfs_set_stack_ref_root(&ref, root_objectid);
Chris Mason7bb86312007-12-11 09:25:06 -0500591 btrfs_set_stack_ref_generation(&ref, ref_generation);
Chris Mason74493f72007-12-11 09:25:06 -0500592 btrfs_set_stack_ref_objectid(&ref, owner);
593 btrfs_set_stack_ref_offset(&ref, owner_offset);
594
Chris Mason7bb86312007-12-11 09:25:06 -0500595 hash = hash_extent_ref(root_objectid, ref_generation, owner,
596 owner_offset);
Chris Mason74493f72007-12-11 09:25:06 -0500597 key.offset = hash;
598 key.objectid = bytenr;
599 key.type = BTRFS_EXTENT_REF_KEY;
600
601 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(ref));
602 while (ret == -EEXIST) {
Chris Mason7bb86312007-12-11 09:25:06 -0500603 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
604 struct btrfs_extent_ref);
605 if (match_extent_ref(path->nodes[0], disk_ref, &ref))
606 goto out;
607 key.offset++;
608 btrfs_release_path(root, path);
609 ret = btrfs_insert_empty_item(trans, root, path, &key,
610 sizeof(ref));
Chris Mason74493f72007-12-11 09:25:06 -0500611 }
Chris Mason7bb86312007-12-11 09:25:06 -0500612 if (ret)
613 goto out;
614 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
615 struct btrfs_extent_ref);
616 write_extent_buffer(path->nodes[0], &ref, (unsigned long)disk_ref,
617 sizeof(ref));
618 btrfs_mark_buffer_dirty(path->nodes[0]);
619out:
620 btrfs_release_path(root, path);
621 return ret;
Chris Mason74493f72007-12-11 09:25:06 -0500622}
623
Chris Masonb18c6682007-04-17 13:26:50 -0400624int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
625 struct btrfs_root *root,
Chris Mason74493f72007-12-11 09:25:06 -0500626 u64 bytenr, u64 num_bytes,
Chris Mason7bb86312007-12-11 09:25:06 -0500627 u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500628 u64 owner, u64 owner_offset)
Chris Mason02217ed2007-03-02 16:08:05 -0500629{
Chris Mason5caf2a02007-04-02 11:20:42 -0400630 struct btrfs_path *path;
Chris Mason02217ed2007-03-02 16:08:05 -0500631 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400632 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400633 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400634 struct btrfs_extent_item *item;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400635 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500636
Chris Masondb945352007-10-15 16:15:53 -0400637 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400638 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400639 if (!path)
640 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -0400641
Chris Masonb0331a42008-01-08 15:46:31 -0500642 path->reada = 0;
Chris Masondb945352007-10-15 16:15:53 -0400643 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -0400644 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -0400645 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -0400646 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400647 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400648 if (ret < 0)
649 return ret;
Chris Masona429e512007-04-18 16:15:28 -0400650 if (ret != 0) {
Chris Masona28ec192007-03-06 20:08:01 -0500651 BUG();
Chris Masona429e512007-04-18 16:15:28 -0400652 }
Chris Mason02217ed2007-03-02 16:08:05 -0500653 BUG_ON(ret != 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400654 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400655 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400656 refs = btrfs_extent_refs(l, item);
657 btrfs_set_extent_refs(l, item, refs + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -0400658 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masona28ec192007-03-06 20:08:01 -0500659
Chris Mason5caf2a02007-04-02 11:20:42 -0400660 btrfs_release_path(root->fs_info->extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -0500661
Chris Masonb0331a42008-01-08 15:46:31 -0500662 path->reada = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500663 ret = btrfs_insert_extent_backref(trans, root->fs_info->extent_root,
664 path, bytenr, root_objectid,
665 ref_generation, owner, owner_offset);
666 BUG_ON(ret);
Chris Mason9f5fae22007-03-20 14:38:32 -0400667 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400668 del_pending_extents(trans, root->fs_info->extent_root);
Chris Mason74493f72007-12-11 09:25:06 -0500669
670 btrfs_free_path(path);
Chris Mason02217ed2007-03-02 16:08:05 -0500671 return 0;
672}
673
Chris Masone9d0b132007-08-10 14:06:19 -0400674int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
675 struct btrfs_root *root)
676{
677 finish_current_insert(trans, root->fs_info->extent_root);
678 del_pending_extents(trans, root->fs_info->extent_root);
679 return 0;
680}
681
Chris Masonb18c6682007-04-17 13:26:50 -0400682static int lookup_extent_ref(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -0400683 struct btrfs_root *root, u64 bytenr,
684 u64 num_bytes, u32 *refs)
Chris Masona28ec192007-03-06 20:08:01 -0500685{
Chris Mason5caf2a02007-04-02 11:20:42 -0400686 struct btrfs_path *path;
Chris Masona28ec192007-03-06 20:08:01 -0500687 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400688 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400689 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400690 struct btrfs_extent_item *item;
Chris Mason5caf2a02007-04-02 11:20:42 -0400691
Chris Masondb945352007-10-15 16:15:53 -0400692 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400693 path = btrfs_alloc_path();
Chris Masonb0331a42008-01-08 15:46:31 -0500694 path->reada = 0;
Chris Masondb945352007-10-15 16:15:53 -0400695 key.objectid = bytenr;
696 key.offset = num_bytes;
Chris Mason62e27492007-03-15 12:56:47 -0400697 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5caf2a02007-04-02 11:20:42 -0400698 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400699 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400700 if (ret < 0)
701 goto out;
Chris Mason5f39d392007-10-15 16:14:19 -0400702 if (ret != 0) {
703 btrfs_print_leaf(root, path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400704 printk("failed to find block number %Lu\n", bytenr);
Chris Masona28ec192007-03-06 20:08:01 -0500705 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -0400706 }
707 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400708 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400709 *refs = btrfs_extent_refs(l, item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400710out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400711 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -0500712 return 0;
713}
714
Chris Masonbe20aa92007-12-17 20:14:01 -0500715u32 btrfs_count_snapshots_in_path(struct btrfs_root *root,
716 struct btrfs_path *count_path,
717 u64 first_extent)
718{
719 struct btrfs_root *extent_root = root->fs_info->extent_root;
720 struct btrfs_path *path;
721 u64 bytenr;
722 u64 found_objectid;
Chris Mason56b453c2008-01-03 09:08:27 -0500723 u64 root_objectid = root->root_key.objectid;
Chris Masonbe20aa92007-12-17 20:14:01 -0500724 u32 total_count = 0;
725 u32 cur_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500726 u32 nritems;
727 int ret;
728 struct btrfs_key key;
729 struct btrfs_key found_key;
730 struct extent_buffer *l;
731 struct btrfs_extent_item *item;
732 struct btrfs_extent_ref *ref_item;
733 int level = -1;
734
735 path = btrfs_alloc_path();
736again:
737 if (level == -1)
738 bytenr = first_extent;
739 else
740 bytenr = count_path->nodes[level]->start;
741
742 cur_count = 0;
743 key.objectid = bytenr;
744 key.offset = 0;
745
746 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
747 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
748 if (ret < 0)
749 goto out;
750 BUG_ON(ret == 0);
751
752 l = path->nodes[0];
753 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
754
755 if (found_key.objectid != bytenr ||
756 found_key.type != BTRFS_EXTENT_ITEM_KEY) {
757 goto out;
758 }
759
760 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Masonbe20aa92007-12-17 20:14:01 -0500761 while (1) {
Chris Masonbd098352008-01-03 13:23:19 -0500762 l = path->nodes[0];
Chris Masonbe20aa92007-12-17 20:14:01 -0500763 nritems = btrfs_header_nritems(l);
764 if (path->slots[0] >= nritems) {
765 ret = btrfs_next_leaf(extent_root, path);
766 if (ret == 0)
767 continue;
768 break;
769 }
770 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
771 if (found_key.objectid != bytenr)
772 break;
Chris Masonbd098352008-01-03 13:23:19 -0500773
Chris Masonbe20aa92007-12-17 20:14:01 -0500774 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
775 path->slots[0]++;
776 continue;
777 }
778
779 cur_count++;
780 ref_item = btrfs_item_ptr(l, path->slots[0],
781 struct btrfs_extent_ref);
782 found_objectid = btrfs_ref_root(l, ref_item);
783
Chris Mason56b453c2008-01-03 09:08:27 -0500784 if (found_objectid != root_objectid) {
785 total_count = 2;
Chris Mason4313b392008-01-03 09:08:48 -0500786 goto out;
Chris Mason56b453c2008-01-03 09:08:27 -0500787 }
788 total_count = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500789 path->slots[0]++;
790 }
791 if (cur_count == 0) {
792 total_count = 0;
793 goto out;
794 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500795 if (level >= 0 && root->node == count_path->nodes[level])
796 goto out;
797 level++;
798 btrfs_release_path(root, path);
799 goto again;
800
801out:
802 btrfs_free_path(path);
803 return total_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500804}
Chris Masonc5739bb2007-04-10 09:27:04 -0400805int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -0500806 struct btrfs_root *root, u64 owner_objectid)
Chris Masonc5739bb2007-04-10 09:27:04 -0400807{
Chris Mason7bb86312007-12-11 09:25:06 -0500808 u64 generation;
809 u64 key_objectid;
810 u64 level;
811 u32 nritems;
812 struct btrfs_disk_key disk_key;
813
814 level = btrfs_header_level(root->node);
815 generation = trans->transid;
816 nritems = btrfs_header_nritems(root->node);
817 if (nritems > 0) {
818 if (level == 0)
819 btrfs_item_key(root->node, &disk_key, 0);
820 else
821 btrfs_node_key(root->node, &disk_key, 0);
822 key_objectid = btrfs_disk_key_objectid(&disk_key);
823 } else {
824 key_objectid = 0;
825 }
Chris Masondb945352007-10-15 16:15:53 -0400826 return btrfs_inc_extent_ref(trans, root, root->node->start,
Chris Mason7bb86312007-12-11 09:25:06 -0500827 root->node->len, owner_objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500828 generation, level, key_objectid);
Chris Masonc5739bb2007-04-10 09:27:04 -0400829}
830
Chris Masone089f052007-03-16 16:20:31 -0400831int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400832 struct extent_buffer *buf)
Chris Mason02217ed2007-03-02 16:08:05 -0500833{
Chris Masondb945352007-10-15 16:15:53 -0400834 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400835 u32 nritems;
836 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -0400837 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -0500838 int i;
Chris Masondb945352007-10-15 16:15:53 -0400839 int level;
Chris Mason6407bf62007-03-27 06:33:00 -0400840 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400841 int faili;
Chris Masona28ec192007-03-06 20:08:01 -0500842
Chris Mason3768f362007-03-13 16:47:54 -0400843 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500844 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400845
Chris Masondb945352007-10-15 16:15:53 -0400846 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400847 nritems = btrfs_header_nritems(buf);
848 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400849 if (level == 0) {
850 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400851 btrfs_item_key_to_cpu(buf, &key, i);
852 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -0400853 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400854 fi = btrfs_item_ptr(buf, i,
Chris Mason6407bf62007-03-27 06:33:00 -0400855 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400856 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason236454df2007-04-19 13:37:44 -0400857 BTRFS_FILE_EXTENT_INLINE)
858 continue;
Chris Masondb945352007-10-15 16:15:53 -0400859 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
860 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -0400861 continue;
Chris Masondb945352007-10-15 16:15:53 -0400862 ret = btrfs_inc_extent_ref(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500863 btrfs_file_extent_disk_num_bytes(buf, fi),
864 root->root_key.objectid, trans->transid,
865 key.objectid, key.offset);
Chris Mason54aa1f42007-06-22 14:16:25 -0400866 if (ret) {
867 faili = i;
868 goto fail;
869 }
Chris Mason6407bf62007-03-27 06:33:00 -0400870 } else {
Chris Masondb945352007-10-15 16:15:53 -0400871 bytenr = btrfs_node_blockptr(buf, i);
Chris Mason6caab482007-12-13 09:48:07 -0500872 btrfs_node_key_to_cpu(buf, &key, i);
Chris Masondb945352007-10-15 16:15:53 -0400873 ret = btrfs_inc_extent_ref(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500874 btrfs_level_size(root, level - 1),
875 root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500876 trans->transid,
877 level - 1, key.objectid);
Chris Mason54aa1f42007-06-22 14:16:25 -0400878 if (ret) {
879 faili = i;
880 goto fail;
881 }
Chris Mason6407bf62007-03-27 06:33:00 -0400882 }
Chris Mason02217ed2007-03-02 16:08:05 -0500883 }
884 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400885fail:
Chris Masonccd467d2007-06-28 15:57:36 -0400886 WARN_ON(1);
Chris Mason7bb86312007-12-11 09:25:06 -0500887#if 0
Chris Mason54aa1f42007-06-22 14:16:25 -0400888 for (i =0; i < faili; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400889 if (level == 0) {
890 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400891 btrfs_item_key_to_cpu(buf, &key, i);
892 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -0400893 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400894 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -0400895 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400896 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -0400897 BTRFS_FILE_EXTENT_INLINE)
898 continue;
Chris Masondb945352007-10-15 16:15:53 -0400899 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
900 if (disk_bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -0400901 continue;
Chris Masondb945352007-10-15 16:15:53 -0400902 err = btrfs_free_extent(trans, root, disk_bytenr,
903 btrfs_file_extent_disk_num_bytes(buf,
Chris Mason5f39d392007-10-15 16:14:19 -0400904 fi), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400905 BUG_ON(err);
906 } else {
Chris Masondb945352007-10-15 16:15:53 -0400907 bytenr = btrfs_node_blockptr(buf, i);
908 err = btrfs_free_extent(trans, root, bytenr,
909 btrfs_level_size(root, level - 1), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400910 BUG_ON(err);
911 }
912 }
Chris Mason7bb86312007-12-11 09:25:06 -0500913#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400914 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -0500915}
916
Chris Mason9078a3e2007-04-26 16:46:15 -0400917static int write_one_cache_group(struct btrfs_trans_handle *trans,
918 struct btrfs_root *root,
919 struct btrfs_path *path,
920 struct btrfs_block_group_cache *cache)
921{
922 int ret;
923 int pending_ret;
924 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400925 unsigned long bi;
926 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -0400927
Chris Mason9078a3e2007-04-26 16:46:15 -0400928 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400929 if (ret < 0)
930 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -0400931 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400932
933 leaf = path->nodes[0];
934 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
935 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
936 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -0400937 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400938fail:
Chris Mason9078a3e2007-04-26 16:46:15 -0400939 finish_current_insert(trans, extent_root);
940 pending_ret = del_pending_extents(trans, extent_root);
941 if (ret)
942 return ret;
943 if (pending_ret)
944 return pending_ret;
945 return 0;
946
947}
948
Chris Mason96b51792007-10-15 16:15:19 -0400949int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
950 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -0400951{
Chris Masond1310b22008-01-24 16:13:08 -0500952 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -0400953 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400954 int ret;
955 int err = 0;
956 int werr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -0400957 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -0400958 u64 last = 0;
959 u64 start;
960 u64 end;
961 u64 ptr;
Chris Mason9078a3e2007-04-26 16:46:15 -0400962
Chris Mason96b51792007-10-15 16:15:19 -0400963 block_group_cache = &root->fs_info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400964 path = btrfs_alloc_path();
965 if (!path)
966 return -ENOMEM;
967
968 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400969 ret = find_first_extent_bit(block_group_cache, last,
970 &start, &end, BLOCK_GROUP_DIRTY);
971 if (ret)
Chris Mason9078a3e2007-04-26 16:46:15 -0400972 break;
Chris Mason54aa1f42007-06-22 14:16:25 -0400973
Chris Mason96b51792007-10-15 16:15:19 -0400974 last = end + 1;
975 ret = get_state_private(block_group_cache, start, &ptr);
976 if (ret)
977 break;
978
Jens Axboeae2f5412007-10-19 09:22:59 -0400979 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400980 err = write_one_cache_group(trans, root,
981 path, cache);
982 /*
983 * if we fail to write the cache group, we want
984 * to keep it marked dirty in hopes that a later
985 * write will work
986 */
987 if (err) {
988 werr = err;
989 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -0400990 }
Chris Mason96b51792007-10-15 16:15:19 -0400991 clear_extent_bits(block_group_cache, start, end,
992 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -0400993 }
994 btrfs_free_path(path);
995 return werr;
996}
997
Chris Mason6324fbf2008-03-24 15:01:59 -0400998static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
999 u64 flags)
1000{
1001 struct list_head *head = &info->space_info;
1002 struct list_head *cur;
1003 struct btrfs_space_info *found;
1004 list_for_each(cur, head) {
1005 found = list_entry(cur, struct btrfs_space_info, list);
1006 if (found->flags == flags)
1007 return found;
1008 }
1009 return NULL;
1010
1011}
1012
Chris Mason593060d2008-03-25 16:50:33 -04001013static int update_space_info(struct btrfs_fs_info *info, u64 flags,
1014 u64 total_bytes, u64 bytes_used,
1015 struct btrfs_space_info **space_info)
1016{
1017 struct btrfs_space_info *found;
1018
1019 found = __find_space_info(info, flags);
1020 if (found) {
1021 found->total_bytes += total_bytes;
1022 found->bytes_used += bytes_used;
1023 WARN_ON(found->total_bytes < found->bytes_used);
1024 *space_info = found;
1025 return 0;
1026 }
1027 found = kmalloc(sizeof(*found), GFP_NOFS);
1028 if (!found)
1029 return -ENOMEM;
1030
1031 list_add(&found->list, &info->space_info);
1032 found->flags = flags;
1033 found->total_bytes = total_bytes;
1034 found->bytes_used = bytes_used;
1035 found->bytes_pinned = 0;
1036 found->full = 0;
1037 *space_info = found;
1038 return 0;
1039}
1040
1041
Chris Mason6324fbf2008-03-24 15:01:59 -04001042static int do_chunk_alloc(struct btrfs_trans_handle *trans,
1043 struct btrfs_root *extent_root, u64 alloc_bytes,
1044 u64 flags)
1045{
1046 struct btrfs_space_info *space_info;
1047 u64 thresh;
1048 u64 start;
1049 u64 num_bytes;
1050 int ret;
1051
1052 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04001053 if (!space_info) {
1054 ret = update_space_info(extent_root->fs_info, flags,
1055 0, 0, &space_info);
1056 BUG_ON(ret);
1057 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001058 BUG_ON(!space_info);
1059
1060 if (space_info->full)
1061 return 0;
1062
1063 thresh = div_factor(space_info->total_bytes, 7);
1064 if ((space_info->bytes_used + space_info->bytes_pinned + alloc_bytes) <
1065 thresh)
1066 return 0;
1067
1068 ret = btrfs_alloc_chunk(trans, extent_root, &start, &num_bytes, flags);
1069 if (ret == -ENOSPC) {
1070printk("space info full %Lu\n", flags);
1071 space_info->full = 1;
1072 return 0;
1073 }
1074
1075 BUG_ON(ret);
1076
1077 ret = btrfs_make_block_group(trans, extent_root, 0, flags,
1078 extent_root->fs_info->chunk_root->root_key.objectid,
1079 start, num_bytes);
1080 BUG_ON(ret);
Chris Mason593060d2008-03-25 16:50:33 -04001081
1082 if (flags & BTRFS_BLOCK_GROUP_RAID0) {
1083 if (flags & BTRFS_BLOCK_GROUP_DATA) {
1084 extent_root->fs_info->extra_data_alloc_bits =
1085 BTRFS_BLOCK_GROUP_RAID0;
1086 }
1087 if (flags & BTRFS_BLOCK_GROUP_METADATA) {
1088 extent_root->fs_info->extra_alloc_bits =
1089 BTRFS_BLOCK_GROUP_RAID0;
1090 }
1091 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001092 return 0;
1093}
1094
Chris Mason9078a3e2007-04-26 16:46:15 -04001095static int update_block_group(struct btrfs_trans_handle *trans,
1096 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -04001097 u64 bytenr, u64 num_bytes, int alloc,
Chris Mason0b86a832008-03-24 15:01:56 -04001098 int mark_free)
Chris Mason9078a3e2007-04-26 16:46:15 -04001099{
1100 struct btrfs_block_group_cache *cache;
1101 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001102 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001103 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04001104 u64 byte_in_group;
Chris Mason96b51792007-10-15 16:15:19 -04001105 u64 start;
1106 u64 end;
Chris Mason3e1ad542007-05-07 20:03:49 -04001107
Chris Mason9078a3e2007-04-26 16:46:15 -04001108 while(total) {
Chris Masondb945352007-10-15 16:15:53 -04001109 cache = btrfs_lookup_block_group(info, bytenr);
Chris Mason3e1ad542007-05-07 20:03:49 -04001110 if (!cache) {
Chris Mason9078a3e2007-04-26 16:46:15 -04001111 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -04001112 }
Chris Masondb945352007-10-15 16:15:53 -04001113 byte_in_group = bytenr - cache->key.objectid;
1114 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason96b51792007-10-15 16:15:19 -04001115 start = cache->key.objectid;
1116 end = start + cache->key.offset - 1;
1117 set_extent_bits(&info->block_group_cache, start, end,
1118 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001119
1120 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04001121 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04001122 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04001123 old_val += num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001124 cache->space_info->bytes_used += num_bytes;
Chris Masoncd1bc462007-04-27 10:08:34 -04001125 } else {
Chris Masondb945352007-10-15 16:15:53 -04001126 old_val -= num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001127 cache->space_info->bytes_used -= num_bytes;
Chris Masonf510cfe2007-10-15 16:14:48 -04001128 if (mark_free) {
1129 set_extent_dirty(&info->free_space_cache,
Chris Masondb945352007-10-15 16:15:53 -04001130 bytenr, bytenr + num_bytes - 1,
Chris Masonf510cfe2007-10-15 16:14:48 -04001131 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04001132 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001133 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001134 btrfs_set_block_group_used(&cache->item, old_val);
Chris Masondb945352007-10-15 16:15:53 -04001135 total -= num_bytes;
1136 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001137 }
1138 return 0;
1139}
Chris Mason6324fbf2008-03-24 15:01:59 -04001140
Yan324ae4d2007-11-16 14:57:08 -05001141static int update_pinned_extents(struct btrfs_root *root,
1142 u64 bytenr, u64 num, int pin)
1143{
1144 u64 len;
1145 struct btrfs_block_group_cache *cache;
1146 struct btrfs_fs_info *fs_info = root->fs_info;
1147
1148 if (pin) {
1149 set_extent_dirty(&fs_info->pinned_extents,
1150 bytenr, bytenr + num - 1, GFP_NOFS);
1151 } else {
1152 clear_extent_dirty(&fs_info->pinned_extents,
1153 bytenr, bytenr + num - 1, GFP_NOFS);
1154 }
1155 while (num > 0) {
1156 cache = btrfs_lookup_block_group(fs_info, bytenr);
1157 WARN_ON(!cache);
1158 len = min(num, cache->key.offset -
1159 (bytenr - cache->key.objectid));
1160 if (pin) {
1161 cache->pinned += len;
Chris Mason6324fbf2008-03-24 15:01:59 -04001162 cache->space_info->bytes_pinned += len;
Yan324ae4d2007-11-16 14:57:08 -05001163 fs_info->total_pinned += len;
1164 } else {
1165 cache->pinned -= len;
Chris Mason6324fbf2008-03-24 15:01:59 -04001166 cache->space_info->bytes_pinned -= len;
Yan324ae4d2007-11-16 14:57:08 -05001167 fs_info->total_pinned -= len;
1168 }
1169 bytenr += len;
1170 num -= len;
1171 }
1172 return 0;
1173}
Chris Mason9078a3e2007-04-26 16:46:15 -04001174
Chris Masond1310b22008-01-24 16:13:08 -05001175int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy)
Chris Masonccd467d2007-06-28 15:57:36 -04001176{
Chris Masonccd467d2007-06-28 15:57:36 -04001177 u64 last = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001178 u64 start;
1179 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001180 struct extent_io_tree *pinned_extents = &root->fs_info->pinned_extents;
Chris Masonccd467d2007-06-28 15:57:36 -04001181 int ret;
Chris Masonccd467d2007-06-28 15:57:36 -04001182
1183 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001184 ret = find_first_extent_bit(pinned_extents, last,
1185 &start, &end, EXTENT_DIRTY);
1186 if (ret)
Chris Masonccd467d2007-06-28 15:57:36 -04001187 break;
Chris Mason1a5bc162007-10-15 16:15:26 -04001188 set_extent_dirty(copy, start, end, GFP_NOFS);
1189 last = end + 1;
Chris Masonccd467d2007-06-28 15:57:36 -04001190 }
1191 return 0;
1192}
1193
1194int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1195 struct btrfs_root *root,
Chris Masond1310b22008-01-24 16:13:08 -05001196 struct extent_io_tree *unpin)
Chris Masona28ec192007-03-06 20:08:01 -05001197{
Chris Mason1a5bc162007-10-15 16:15:26 -04001198 u64 start;
1199 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05001200 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001201 struct extent_io_tree *free_space_cache;
Chris Masonf510cfe2007-10-15 16:14:48 -04001202 free_space_cache = &root->fs_info->free_space_cache;
Chris Masona28ec192007-03-06 20:08:01 -05001203
1204 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001205 ret = find_first_extent_bit(unpin, 0, &start, &end,
1206 EXTENT_DIRTY);
1207 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05001208 break;
Yan324ae4d2007-11-16 14:57:08 -05001209 update_pinned_extents(root, start, end + 1 - start, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001210 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1211 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
Chris Masona28ec192007-03-06 20:08:01 -05001212 }
1213 return 0;
1214}
1215
Chris Mason98ed5172008-01-03 10:01:48 -05001216static int finish_current_insert(struct btrfs_trans_handle *trans,
1217 struct btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -05001218{
Chris Mason7bb86312007-12-11 09:25:06 -05001219 u64 start;
1220 u64 end;
1221 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001222 struct extent_buffer *eb;
Chris Mason7bb86312007-12-11 09:25:06 -05001223 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001224 struct btrfs_key ins;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001225 struct btrfs_disk_key first;
Chris Mason234b63a2007-03-13 10:46:10 -04001226 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -05001227 int ret;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001228 int level;
Chris Mason1a5bc162007-10-15 16:15:26 -04001229 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001230
Chris Mason5f39d392007-10-15 16:14:19 -04001231 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason62e27492007-03-15 12:56:47 -04001232 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason7bb86312007-12-11 09:25:06 -05001233 path = btrfs_alloc_path();
Chris Mason037e6392007-03-07 11:50:24 -05001234
Chris Mason26b80032007-08-08 20:17:12 -04001235 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001236 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1237 &end, EXTENT_LOCKED);
1238 if (ret)
Chris Mason26b80032007-08-08 20:17:12 -04001239 break;
1240
Chris Mason1a5bc162007-10-15 16:15:26 -04001241 ins.objectid = start;
1242 ins.offset = end + 1 - start;
1243 err = btrfs_insert_item(trans, extent_root, &ins,
1244 &extent_item, sizeof(extent_item));
1245 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1246 GFP_NOFS);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001247 eb = read_tree_block(extent_root, ins.objectid, ins.offset);
1248 level = btrfs_header_level(eb);
1249 if (level == 0) {
1250 btrfs_item_key(eb, &first, 0);
1251 } else {
1252 btrfs_node_key(eb, &first, 0);
1253 }
Chris Mason7bb86312007-12-11 09:25:06 -05001254 err = btrfs_insert_extent_backref(trans, extent_root, path,
1255 start, extent_root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -05001256 0, level,
1257 btrfs_disk_key_objectid(&first));
Chris Mason7bb86312007-12-11 09:25:06 -05001258 BUG_ON(err);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001259 free_extent_buffer(eb);
Chris Mason037e6392007-03-07 11:50:24 -05001260 }
Chris Mason7bb86312007-12-11 09:25:06 -05001261 btrfs_free_path(path);
Chris Mason037e6392007-03-07 11:50:24 -05001262 return 0;
1263}
1264
Chris Masondb945352007-10-15 16:15:53 -04001265static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
1266 int pending)
Chris Masone20d96d2007-03-22 12:13:20 -04001267{
Chris Mason1a5bc162007-10-15 16:15:26 -04001268 int err = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001269 struct extent_buffer *buf;
Chris Mason78fae272007-03-25 11:35:08 -04001270
Chris Masonf4b9aa82007-03-27 11:05:53 -04001271 if (!pending) {
Chris Masondb945352007-10-15 16:15:53 -04001272 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -04001273 if (buf) {
1274 if (btrfs_buffer_uptodate(buf)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -04001275 u64 transid =
1276 root->fs_info->running_transaction->transid;
Chris Masondc17ff82008-01-08 15:46:30 -05001277 u64 header_transid =
1278 btrfs_header_generation(buf);
1279 if (header_transid == transid) {
Chris Mason55c69072008-01-09 15:55:33 -05001280 clean_tree_block(NULL, root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001281 free_extent_buffer(buf);
Yanc5492282007-11-06 10:25:25 -05001282 return 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001283 }
Chris Masonf4b9aa82007-03-27 11:05:53 -04001284 }
Chris Mason5f39d392007-10-15 16:14:19 -04001285 free_extent_buffer(buf);
Chris Mason8ef97622007-03-26 10:15:30 -04001286 }
Yan324ae4d2007-11-16 14:57:08 -05001287 update_pinned_extents(root, bytenr, num_bytes, 1);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001288 } else {
Chris Mason1a5bc162007-10-15 16:15:26 -04001289 set_extent_bits(&root->fs_info->pending_del,
Chris Masondb945352007-10-15 16:15:53 -04001290 bytenr, bytenr + num_bytes - 1,
1291 EXTENT_LOCKED, GFP_NOFS);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001292 }
Chris Masonbe744172007-05-06 10:15:01 -04001293 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001294 return 0;
1295}
1296
Chris Masona28ec192007-03-06 20:08:01 -05001297/*
1298 * remove an extent from the root, returns 0 on success
1299 */
Chris Masone089f052007-03-16 16:20:31 -04001300static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001301 *root, u64 bytenr, u64 num_bytes,
1302 u64 root_objectid, u64 ref_generation,
1303 u64 owner_objectid, u64 owner_offset, int pin,
Chris Masone37c9e62007-05-09 20:13:14 -04001304 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -05001305{
Chris Mason5caf2a02007-04-02 11:20:42 -04001306 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001307 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -04001308 struct btrfs_fs_info *info = root->fs_info;
1309 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001310 struct extent_buffer *leaf;
Chris Masona28ec192007-03-06 20:08:01 -05001311 int ret;
Chris Mason952fcca2008-02-18 16:33:44 -05001312 int extent_slot = 0;
1313 int found_extent = 0;
1314 int num_to_del = 1;
Chris Mason234b63a2007-03-13 10:46:10 -04001315 struct btrfs_extent_item *ei;
Chris Masoncf27e1e2007-03-13 09:49:06 -04001316 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -05001317
Chris Masondb945352007-10-15 16:15:53 -04001318 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -04001319 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -04001320 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001321 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001322 if (!path)
1323 return -ENOMEM;
1324
Chris Masonb0331a42008-01-08 15:46:31 -05001325 path->reada = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001326 ret = lookup_extent_backref(trans, extent_root, path,
1327 bytenr, root_objectid,
1328 ref_generation,
1329 owner_objectid, owner_offset, 1);
1330 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05001331 struct btrfs_key found_key;
1332 extent_slot = path->slots[0];
1333 while(extent_slot > 0) {
1334 extent_slot--;
1335 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1336 extent_slot);
1337 if (found_key.objectid != bytenr)
1338 break;
1339 if (found_key.type == BTRFS_EXTENT_ITEM_KEY &&
1340 found_key.offset == num_bytes) {
1341 found_extent = 1;
1342 break;
1343 }
1344 if (path->slots[0] - extent_slot > 5)
1345 break;
1346 }
1347 if (!found_extent)
1348 ret = btrfs_del_item(trans, extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -05001349 } else {
1350 btrfs_print_leaf(extent_root, path->nodes[0]);
1351 WARN_ON(1);
1352 printk("Unable to find ref byte nr %Lu root %Lu "
1353 " gen %Lu owner %Lu offset %Lu\n", bytenr,
1354 root_objectid, ref_generation, owner_objectid,
1355 owner_offset);
1356 }
Chris Mason952fcca2008-02-18 16:33:44 -05001357 if (!found_extent) {
1358 btrfs_release_path(extent_root, path);
1359 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
1360 if (ret < 0)
1361 return ret;
1362 BUG_ON(ret);
1363 extent_slot = path->slots[0];
1364 }
Chris Mason5f39d392007-10-15 16:14:19 -04001365
1366 leaf = path->nodes[0];
Chris Mason952fcca2008-02-18 16:33:44 -05001367 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04001368 struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001369 refs = btrfs_extent_refs(leaf, ei);
1370 BUG_ON(refs == 0);
1371 refs -= 1;
1372 btrfs_set_extent_refs(leaf, ei, refs);
Chris Mason952fcca2008-02-18 16:33:44 -05001373
Chris Mason5f39d392007-10-15 16:14:19 -04001374 btrfs_mark_buffer_dirty(leaf);
1375
Chris Mason952fcca2008-02-18 16:33:44 -05001376 if (refs == 0 && found_extent && path->slots[0] == extent_slot + 1) {
1377 /* if the back ref and the extent are next to each other
1378 * they get deleted below in one shot
1379 */
1380 path->slots[0] = extent_slot;
1381 num_to_del = 2;
1382 } else if (found_extent) {
1383 /* otherwise delete the extent back ref */
1384 ret = btrfs_del_item(trans, extent_root, path);
1385 BUG_ON(ret);
1386 /* if refs are 0, we need to setup the path for deletion */
1387 if (refs == 0) {
1388 btrfs_release_path(extent_root, path);
1389 ret = btrfs_search_slot(trans, extent_root, &key, path,
1390 -1, 1);
1391 if (ret < 0)
1392 return ret;
1393 BUG_ON(ret);
1394 }
1395 }
1396
Chris Masoncf27e1e2007-03-13 09:49:06 -04001397 if (refs == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001398 u64 super_used;
1399 u64 root_used;
Chris Mason78fae272007-03-25 11:35:08 -04001400
1401 if (pin) {
Chris Masondb945352007-10-15 16:15:53 -04001402 ret = pin_down_bytes(root, bytenr, num_bytes, 0);
Yanc5492282007-11-06 10:25:25 -05001403 if (ret > 0)
1404 mark_free = 1;
1405 BUG_ON(ret < 0);
Chris Mason78fae272007-03-25 11:35:08 -04001406 }
1407
Josef Bacik58176a92007-08-29 15:47:34 -04001408 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001409 super_used = btrfs_super_bytes_used(&info->super_copy);
1410 btrfs_set_super_bytes_used(&info->super_copy,
1411 super_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001412
1413 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001414 root_used = btrfs_root_used(&root->root_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001415 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -04001416 root_used - num_bytes);
Chris Mason952fcca2008-02-18 16:33:44 -05001417 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
1418 num_to_del);
Chris Mason54aa1f42007-06-22 14:16:25 -04001419 if (ret) {
1420 return ret;
1421 }
Chris Masondb945352007-10-15 16:15:53 -04001422 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001423 mark_free);
Chris Mason9078a3e2007-04-26 16:46:15 -04001424 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05001425 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001426 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001427 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -05001428 return ret;
1429}
1430
1431/*
Chris Masonfec577f2007-02-26 10:40:21 -05001432 * find all the blocks marked as pending in the radix tree and remove
1433 * them from the extent map
1434 */
Chris Masone089f052007-03-16 16:20:31 -04001435static int del_pending_extents(struct btrfs_trans_handle *trans, struct
1436 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -05001437{
1438 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001439 int err = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001440 u64 start;
1441 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001442 struct extent_io_tree *pending_del;
1443 struct extent_io_tree *pinned_extents;
Chris Mason8ef97622007-03-26 10:15:30 -04001444
Chris Mason1a5bc162007-10-15 16:15:26 -04001445 pending_del = &extent_root->fs_info->pending_del;
1446 pinned_extents = &extent_root->fs_info->pinned_extents;
Chris Masonfec577f2007-02-26 10:40:21 -05001447
1448 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001449 ret = find_first_extent_bit(pending_del, 0, &start, &end,
1450 EXTENT_LOCKED);
1451 if (ret)
Chris Masonfec577f2007-02-26 10:40:21 -05001452 break;
Yan324ae4d2007-11-16 14:57:08 -05001453 update_pinned_extents(extent_root, start, end + 1 - start, 1);
Chris Mason1a5bc162007-10-15 16:15:26 -04001454 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
1455 GFP_NOFS);
1456 ret = __free_extent(trans, extent_root,
Chris Mason7bb86312007-12-11 09:25:06 -05001457 start, end + 1 - start,
1458 extent_root->root_key.objectid,
1459 0, 0, 0, 0, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001460 if (ret)
1461 err = ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001462 }
Chris Masone20d96d2007-03-22 12:13:20 -04001463 return err;
Chris Masonfec577f2007-02-26 10:40:21 -05001464}
1465
1466/*
1467 * remove an extent from the root, returns 0 on success
1468 */
Chris Masone089f052007-03-16 16:20:31 -04001469int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001470 *root, u64 bytenr, u64 num_bytes,
1471 u64 root_objectid, u64 ref_generation,
1472 u64 owner_objectid, u64 owner_offset, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -05001473{
Chris Mason9f5fae22007-03-20 14:38:32 -04001474 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -05001475 int pending_ret;
1476 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05001477
Chris Masondb945352007-10-15 16:15:53 -04001478 WARN_ON(num_bytes < root->sectorsize);
Chris Mason7bb86312007-12-11 09:25:06 -05001479 if (!root->ref_cows)
1480 ref_generation = 0;
1481
Chris Masona28ec192007-03-06 20:08:01 -05001482 if (root == extent_root) {
Chris Masondb945352007-10-15 16:15:53 -04001483 pin_down_bytes(root, bytenr, num_bytes, 1);
Chris Masona28ec192007-03-06 20:08:01 -05001484 return 0;
1485 }
Chris Mason7bb86312007-12-11 09:25:06 -05001486 ret = __free_extent(trans, root, bytenr, num_bytes, root_objectid,
1487 ref_generation, owner_objectid, owner_offset,
1488 pin, pin == 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001489 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -05001490 return ret ? ret : pending_ret;
1491}
1492
Chris Mason87ee04e2007-11-30 11:30:34 -05001493static u64 stripe_align(struct btrfs_root *root, u64 val)
1494{
1495 u64 mask = ((u64)root->stripesize - 1);
1496 u64 ret = (val + mask) & ~mask;
1497 return ret;
1498}
1499
Chris Masonfec577f2007-02-26 10:40:21 -05001500/*
1501 * walks the btree of allocated extents and find a hole of a given size.
1502 * The key ins is changed to record the hole:
1503 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04001504 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05001505 * ins->offset == number of blocks
1506 * Any available blocks before search_start are skipped.
1507 */
Chris Mason98ed5172008-01-03 10:01:48 -05001508static int noinline find_free_extent(struct btrfs_trans_handle *trans,
1509 struct btrfs_root *orig_root,
1510 u64 num_bytes, u64 empty_size,
1511 u64 search_start, u64 search_end,
1512 u64 hint_byte, struct btrfs_key *ins,
1513 u64 exclude_start, u64 exclude_nr,
1514 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001515{
Chris Mason87ee04e2007-11-30 11:30:34 -05001516 int ret;
Chris Masonbe744172007-05-06 10:15:01 -04001517 u64 orig_search_start = search_start;
Chris Mason9f5fae22007-03-20 14:38:32 -04001518 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -04001519 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001520 u64 total_needed = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04001521 u64 *last_ptr = NULL;
Chris Masonbe08c1b2007-05-03 09:06:49 -04001522 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -04001523 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -04001524 int wrapped = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001525 int empty_cluster = 2 * 1024 * 1024;
Chris Masonfec577f2007-02-26 10:40:21 -05001526
Chris Masondb945352007-10-15 16:15:53 -04001527 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04001528 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
1529
Chris Mason239b14b2008-03-24 15:02:07 -04001530 if (data & BTRFS_BLOCK_GROUP_METADATA) {
1531 last_ptr = &root->fs_info->last_alloc;
1532 }
1533
1534 if ((data & BTRFS_BLOCK_GROUP_DATA) && btrfs_test_opt(root, SSD)) {
1535 last_ptr = &root->fs_info->last_data_alloc;
1536 }
1537
1538 if (last_ptr) {
1539 if (*last_ptr)
1540 hint_byte = *last_ptr;
1541 else {
1542 empty_size += empty_cluster;
1543 }
1544 }
1545
Chris Mason7f93bf82008-03-24 15:01:28 -04001546 if (search_end == (u64)-1)
1547 search_end = btrfs_super_total_bytes(&info->super_copy);
Chris Mason0b86a832008-03-24 15:01:56 -04001548
Chris Masondb945352007-10-15 16:15:53 -04001549 if (hint_byte) {
1550 block_group = btrfs_lookup_block_group(info, hint_byte);
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001551 if (!block_group)
1552 hint_byte = search_start;
Chris Masonbe744172007-05-06 10:15:01 -04001553 block_group = btrfs_find_block_group(root, block_group,
Chris Masondb945352007-10-15 16:15:53 -04001554 hint_byte, data, 1);
Chris Mason239b14b2008-03-24 15:02:07 -04001555 if (last_ptr && *last_ptr == 0 && block_group)
1556 hint_byte = block_group->key.objectid;
Chris Masonbe744172007-05-06 10:15:01 -04001557 } else {
1558 block_group = btrfs_find_block_group(root,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001559 trans->block_group,
1560 search_start, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001561 }
Chris Mason239b14b2008-03-24 15:02:07 -04001562 search_start = max(search_start, hint_byte);
Chris Masonbe744172007-05-06 10:15:01 -04001563
Chris Mason6702ed42007-08-07 16:15:09 -04001564 total_needed += empty_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001565
Chris Masonbe744172007-05-06 10:15:01 -04001566check_failed:
Chris Mason70b043f2007-12-13 09:02:46 -05001567 if (!block_group) {
1568 block_group = btrfs_lookup_block_group(info, search_start);
1569 if (!block_group)
1570 block_group = btrfs_lookup_block_group(info,
1571 orig_search_start);
1572 }
Chris Mason0b86a832008-03-24 15:01:56 -04001573 ret = find_search_start(root, &block_group, &search_start,
1574 total_needed, data);
Chris Mason239b14b2008-03-24 15:02:07 -04001575 if (ret == -ENOSPC && last_ptr && *last_ptr) {
1576 *last_ptr = 0;
1577 block_group = btrfs_lookup_block_group(info,
1578 orig_search_start);
1579 search_start = orig_search_start;
1580 ret = find_search_start(root, &block_group, &search_start,
1581 total_needed, data);
1582 }
1583 if (ret == -ENOSPC)
1584 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001585 if (ret)
1586 goto error;
1587
Chris Mason239b14b2008-03-24 15:02:07 -04001588 if (last_ptr && *last_ptr && search_start != *last_ptr) {
1589 *last_ptr = 0;
1590 if (!empty_size) {
1591 empty_size += empty_cluster;
1592 total_needed += empty_size;
1593 }
1594 block_group = btrfs_lookup_block_group(info,
1595 orig_search_start);
1596 search_start = orig_search_start;
1597 ret = find_search_start(root, &block_group,
1598 &search_start, total_needed, data);
1599 if (ret == -ENOSPC)
1600 goto enospc;
1601 if (ret)
1602 goto error;
1603 }
1604
Chris Mason87ee04e2007-11-30 11:30:34 -05001605 search_start = stripe_align(root, search_start);
Chris Masonfec577f2007-02-26 10:40:21 -05001606 ins->objectid = search_start;
Chris Mason0b86a832008-03-24 15:01:56 -04001607 ins->offset = num_bytes;
Chris Masone37c9e62007-05-09 20:13:14 -04001608
Chris Masondb945352007-10-15 16:15:53 -04001609 if (ins->objectid + num_bytes >= search_end)
Chris Masoncf675822007-09-17 11:00:51 -04001610 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001611
1612 if (ins->objectid + num_bytes >
1613 block_group->key.objectid + block_group->key.offset) {
Chris Masone19caa52007-10-15 16:17:44 -04001614 search_start = block_group->key.objectid +
1615 block_group->key.offset;
1616 goto new_group;
1617 }
Chris Mason0b86a832008-03-24 15:01:56 -04001618
Chris Mason1a5bc162007-10-15 16:15:26 -04001619 if (test_range_bit(&info->extent_ins, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001620 ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
1621 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001622 goto new_group;
1623 }
Chris Mason0b86a832008-03-24 15:01:56 -04001624
Chris Mason1a5bc162007-10-15 16:15:26 -04001625 if (test_range_bit(&info->pinned_extents, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001626 ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
1627 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001628 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05001629 }
Chris Mason0b86a832008-03-24 15:01:56 -04001630
Chris Masondb945352007-10-15 16:15:53 -04001631 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
Chris Masonf2654de2007-06-26 12:20:46 -04001632 ins->objectid < exclude_start + exclude_nr)) {
1633 search_start = exclude_start + exclude_nr;
1634 goto new_group;
1635 }
Chris Mason0b86a832008-03-24 15:01:56 -04001636
Chris Mason6324fbf2008-03-24 15:01:59 -04001637 if (!(data & BTRFS_BLOCK_GROUP_DATA)) {
Chris Mason5276aed2007-06-11 21:33:38 -04001638 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Mason26b80032007-08-08 20:17:12 -04001639 if (block_group)
1640 trans->block_group = block_group;
Chris Masoncd1bc462007-04-27 10:08:34 -04001641 }
Chris Masondb945352007-10-15 16:15:53 -04001642 ins->offset = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04001643 if (last_ptr) {
1644 *last_ptr = ins->objectid + ins->offset;
1645 if (*last_ptr ==
1646 btrfs_super_total_bytes(&root->fs_info->super_copy)) {
1647 *last_ptr = 0;
1648 }
1649 }
Chris Masonfec577f2007-02-26 10:40:21 -05001650 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04001651
1652new_group:
Chris Masondb945352007-10-15 16:15:53 -04001653 if (search_start + num_bytes >= search_end) {
Chris Masoncf675822007-09-17 11:00:51 -04001654enospc:
Chris Masonbe744172007-05-06 10:15:01 -04001655 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04001656 if (full_scan) {
1657 ret = -ENOSPC;
1658 goto error;
1659 }
Chris Mason6702ed42007-08-07 16:15:09 -04001660 if (wrapped) {
1661 if (!full_scan)
1662 total_needed -= empty_size;
Chris Masonfbdc7622007-05-30 10:22:12 -04001663 full_scan = 1;
Chris Mason6702ed42007-08-07 16:15:09 -04001664 } else
Chris Masonfbdc7622007-05-30 10:22:12 -04001665 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04001666 }
Chris Mason5276aed2007-06-11 21:33:38 -04001667 block_group = btrfs_lookup_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04001668 cond_resched();
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001669 block_group = btrfs_find_block_group(root, block_group,
1670 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04001671 goto check_failed;
1672
Chris Mason0f70abe2007-02-28 16:46:22 -05001673error:
Chris Mason0f70abe2007-02-28 16:46:22 -05001674 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001675}
Chris Masonfec577f2007-02-26 10:40:21 -05001676/*
Chris Masonfec577f2007-02-26 10:40:21 -05001677 * finds a free extent and does all the dirty work required for allocation
1678 * returns the key for the extent through ins, and a tree buffer for
1679 * the first block of the extent through buf.
1680 *
1681 * returns 0 if everything worked, non-zero otherwise.
1682 */
Chris Mason4d775672007-04-20 20:23:12 -04001683int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -05001684 struct btrfs_root *root,
1685 u64 num_bytes, u64 root_objectid, u64 ref_generation,
1686 u64 owner, u64 owner_offset,
1687 u64 empty_size, u64 hint_byte,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001688 u64 search_end, struct btrfs_key *ins, int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001689{
1690 int ret;
1691 int pending_ret;
Chris Masonc31f8832008-01-08 15:46:31 -05001692 u64 super_used;
1693 u64 root_used;
Chris Masonfbdc7622007-05-30 10:22:12 -04001694 u64 search_start = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05001695 u64 new_hint;
Chris Mason47e4bb92008-02-01 14:51:59 -05001696 u32 sizes[2];
Chris Mason1261ec42007-03-20 20:35:03 -04001697 struct btrfs_fs_info *info = root->fs_info;
1698 struct btrfs_root *extent_root = info->extent_root;
Chris Mason47e4bb92008-02-01 14:51:59 -05001699 struct btrfs_extent_item *extent_item;
1700 struct btrfs_extent_ref *ref;
Chris Mason7bb86312007-12-11 09:25:06 -05001701 struct btrfs_path *path;
Chris Mason47e4bb92008-02-01 14:51:59 -05001702 struct btrfs_key keys[2];
Chris Mason593060d2008-03-25 16:50:33 -04001703 int extra_chunk_alloc_bits = 0;
Chris Mason8f662a72008-01-02 10:01:11 -05001704
Chris Mason6324fbf2008-03-24 15:01:59 -04001705 if (data) {
Chris Mason593060d2008-03-25 16:50:33 -04001706 data = BTRFS_BLOCK_GROUP_DATA | info->extra_data_alloc_bits;
Chris Mason6324fbf2008-03-24 15:01:59 -04001707 } else if (root == root->fs_info->chunk_root) {
1708 data = BTRFS_BLOCK_GROUP_SYSTEM;
1709 } else {
Chris Mason593060d2008-03-25 16:50:33 -04001710 data = BTRFS_BLOCK_GROUP_METADATA | info->extra_alloc_bits;
Chris Mason6324fbf2008-03-24 15:01:59 -04001711 }
Chris Mason593060d2008-03-25 16:50:33 -04001712 if (btrfs_super_num_devices(&info->super_copy) > 1 &&
1713 !(data & BTRFS_BLOCK_GROUP_SYSTEM))
1714 extra_chunk_alloc_bits = BTRFS_BLOCK_GROUP_RAID0;
Chris Mason6324fbf2008-03-24 15:01:59 -04001715
1716 if (root->ref_cows) {
Chris Mason593060d2008-03-25 16:50:33 -04001717 if (!(data & BTRFS_BLOCK_GROUP_METADATA)) {
Chris Mason6324fbf2008-03-24 15:01:59 -04001718 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason239b14b2008-03-24 15:02:07 -04001719 2 * 1024 * 1024,
Chris Mason593060d2008-03-25 16:50:33 -04001720 BTRFS_BLOCK_GROUP_METADATA |
1721 info->extra_alloc_bits |
1722 extra_chunk_alloc_bits);
Chris Mason6324fbf2008-03-24 15:01:59 -04001723 BUG_ON(ret);
1724 }
1725 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason593060d2008-03-25 16:50:33 -04001726 num_bytes + 2 * 1024 * 1024, data |
1727 extra_chunk_alloc_bits);
Chris Mason6324fbf2008-03-24 15:01:59 -04001728 BUG_ON(ret);
1729 }
Chris Mason0b86a832008-03-24 15:01:56 -04001730
Chris Mason8f662a72008-01-02 10:01:11 -05001731 new_hint = max(hint_byte, root->fs_info->alloc_start);
Chris Masonedbd8d42007-12-21 16:27:24 -05001732 if (new_hint < btrfs_super_total_bytes(&info->super_copy))
1733 hint_byte = new_hint;
Chris Mason8f662a72008-01-02 10:01:11 -05001734
Chris Masondb945352007-10-15 16:15:53 -04001735 WARN_ON(num_bytes < root->sectorsize);
1736 ret = find_free_extent(trans, root, num_bytes, empty_size,
1737 search_start, search_end, hint_byte, ins,
Chris Mason26b80032007-08-08 20:17:12 -04001738 trans->alloc_exclude_start,
1739 trans->alloc_exclude_nr, data);
Chris Masonccd467d2007-06-28 15:57:36 -04001740 BUG_ON(ret);
Chris Masonf2654de2007-06-26 12:20:46 -04001741 if (ret)
1742 return ret;
1743
Josef Bacik58176a92007-08-29 15:47:34 -04001744 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001745 super_used = btrfs_super_bytes_used(&info->super_copy);
1746 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
Chris Mason26b80032007-08-08 20:17:12 -04001747
Josef Bacik58176a92007-08-29 15:47:34 -04001748 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001749 root_used = btrfs_root_used(&root->root_item);
1750 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001751
Chris Masonf510cfe2007-10-15 16:14:48 -04001752 clear_extent_dirty(&root->fs_info->free_space_cache,
1753 ins->objectid, ins->objectid + ins->offset - 1,
1754 GFP_NOFS);
1755
Chris Mason26b80032007-08-08 20:17:12 -04001756 if (root == extent_root) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001757 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
1758 ins->objectid + ins->offset - 1,
1759 EXTENT_LOCKED, GFP_NOFS);
Chris Mason26b80032007-08-08 20:17:12 -04001760 goto update_block;
1761 }
1762
1763 WARN_ON(trans->alloc_exclude_nr);
1764 trans->alloc_exclude_start = ins->objectid;
1765 trans->alloc_exclude_nr = ins->offset;
Chris Mason037e6392007-03-07 11:50:24 -05001766
Chris Mason47e4bb92008-02-01 14:51:59 -05001767 memcpy(&keys[0], ins, sizeof(*ins));
1768 keys[1].offset = hash_extent_ref(root_objectid, ref_generation,
1769 owner, owner_offset);
1770 keys[1].objectid = ins->objectid;
1771 keys[1].type = BTRFS_EXTENT_REF_KEY;
1772 sizes[0] = sizeof(*extent_item);
1773 sizes[1] = sizeof(*ref);
Chris Mason7bb86312007-12-11 09:25:06 -05001774
1775 path = btrfs_alloc_path();
1776 BUG_ON(!path);
Chris Mason47e4bb92008-02-01 14:51:59 -05001777
1778 ret = btrfs_insert_empty_items(trans, extent_root, path, keys,
1779 sizes, 2);
Chris Mason26b80032007-08-08 20:17:12 -04001780
Chris Masonccd467d2007-06-28 15:57:36 -04001781 BUG_ON(ret);
Chris Mason47e4bb92008-02-01 14:51:59 -05001782 extent_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1783 struct btrfs_extent_item);
1784 btrfs_set_extent_refs(path->nodes[0], extent_item, 1);
1785 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1786 struct btrfs_extent_ref);
1787
1788 btrfs_set_ref_root(path->nodes[0], ref, root_objectid);
1789 btrfs_set_ref_generation(path->nodes[0], ref, ref_generation);
1790 btrfs_set_ref_objectid(path->nodes[0], ref, owner);
1791 btrfs_set_ref_offset(path->nodes[0], ref, owner_offset);
1792
1793 btrfs_mark_buffer_dirty(path->nodes[0]);
1794
1795 trans->alloc_exclude_start = 0;
1796 trans->alloc_exclude_nr = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001797 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001798 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001799 pending_ret = del_pending_extents(trans, extent_root);
Chris Masonf510cfe2007-10-15 16:14:48 -04001800
Chris Masone37c9e62007-05-09 20:13:14 -04001801 if (ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001802 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001803 }
1804 if (pending_ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001805 return pending_ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001806 }
Chris Mason26b80032007-08-08 20:17:12 -04001807
1808update_block:
Chris Mason0b86a832008-03-24 15:01:56 -04001809 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0);
Chris Masonf5947062008-02-04 10:10:13 -05001810 if (ret) {
1811 printk("update block group failed for %Lu %Lu\n",
1812 ins->objectid, ins->offset);
1813 BUG();
1814 }
Chris Mason037e6392007-03-07 11:50:24 -05001815 return 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001816}
1817
1818/*
1819 * helper function to allocate a block for a given tree
1820 * returns the tree buffer or NULL.
1821 */
Chris Mason5f39d392007-10-15 16:14:19 -04001822struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -04001823 struct btrfs_root *root,
Chris Mason7bb86312007-12-11 09:25:06 -05001824 u32 blocksize,
1825 u64 root_objectid, u64 hint,
1826 u64 empty_size)
1827{
1828 u64 ref_generation;
1829
1830 if (root->ref_cows)
1831 ref_generation = trans->transid;
1832 else
1833 ref_generation = 0;
1834
1835
1836 return __btrfs_alloc_free_block(trans, root, blocksize, root_objectid,
1837 ref_generation, 0, 0, hint, empty_size);
1838}
1839
1840/*
1841 * helper function to allocate a block for a given tree
1842 * returns the tree buffer or NULL.
1843 */
1844struct extent_buffer *__btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1845 struct btrfs_root *root,
1846 u32 blocksize,
1847 u64 root_objectid,
1848 u64 ref_generation,
1849 u64 first_objectid,
1850 int level,
1851 u64 hint,
Chris Mason5f39d392007-10-15 16:14:19 -04001852 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05001853{
Chris Masone2fa7222007-03-12 16:22:34 -04001854 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05001855 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04001856 struct extent_buffer *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05001857
Chris Mason7bb86312007-12-11 09:25:06 -05001858 ret = btrfs_alloc_extent(trans, root, blocksize,
1859 root_objectid, ref_generation,
Chris Masonf6dbff52007-12-13 11:13:32 -05001860 level, first_objectid, empty_size, hint,
Chris Masondb945352007-10-15 16:15:53 -04001861 (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05001862 if (ret) {
Chris Mason54aa1f42007-06-22 14:16:25 -04001863 BUG_ON(ret > 0);
1864 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05001865 }
Chris Masondb945352007-10-15 16:15:53 -04001866 buf = btrfs_find_create_tree_block(root, ins.objectid, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04001867 if (!buf) {
Chris Mason7bb86312007-12-11 09:25:06 -05001868 btrfs_free_extent(trans, root, ins.objectid, blocksize,
1869 root->root_key.objectid, ref_generation,
1870 0, 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001871 return ERR_PTR(-ENOMEM);
1872 }
Chris Mason55c69072008-01-09 15:55:33 -05001873 btrfs_set_header_generation(buf, trans->transid);
1874 clean_tree_block(trans, root, buf);
1875 wait_on_tree_block_writeback(root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001876 btrfs_set_buffer_uptodate(buf);
Chris Mason55c69072008-01-09 15:55:33 -05001877
1878 if (PageDirty(buf->first_page)) {
1879 printk("page %lu dirty\n", buf->first_page->index);
1880 WARN_ON(1);
1881 }
1882
Chris Mason5f39d392007-10-15 16:14:19 -04001883 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
1884 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001885 set_extent_bits(&BTRFS_I(root->fs_info->btree_inode)->io_tree,
Chris Mason19c00dd2007-10-15 16:19:22 -04001886 buf->start, buf->start + buf->len - 1,
1887 EXTENT_CSUM, GFP_NOFS);
1888 buf->flags |= EXTENT_CSUM;
Chris Mason9afbb0b2008-02-15 13:19:35 -05001889 if (!btrfs_test_opt(root, SSD))
1890 btrfs_set_buffer_defrag(buf);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001891 trans->blocks_used++;
Chris Masonfec577f2007-02-26 10:40:21 -05001892 return buf;
1893}
Chris Masona28ec192007-03-06 20:08:01 -05001894
Chris Mason98ed5172008-01-03 10:01:48 -05001895static int noinline drop_leaf_ref(struct btrfs_trans_handle *trans,
1896 struct btrfs_root *root,
1897 struct extent_buffer *leaf)
Chris Mason6407bf62007-03-27 06:33:00 -04001898{
Chris Mason7bb86312007-12-11 09:25:06 -05001899 u64 leaf_owner;
1900 u64 leaf_generation;
Chris Mason5f39d392007-10-15 16:14:19 -04001901 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04001902 struct btrfs_file_extent_item *fi;
1903 int i;
1904 int nritems;
1905 int ret;
1906
Chris Mason5f39d392007-10-15 16:14:19 -04001907 BUG_ON(!btrfs_is_leaf(leaf));
1908 nritems = btrfs_header_nritems(leaf);
Chris Mason7bb86312007-12-11 09:25:06 -05001909 leaf_owner = btrfs_header_owner(leaf);
1910 leaf_generation = btrfs_header_generation(leaf);
1911
Chris Mason6407bf62007-03-27 06:33:00 -04001912 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001913 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001914
1915 btrfs_item_key_to_cpu(leaf, &key, i);
1916 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04001917 continue;
1918 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001919 if (btrfs_file_extent_type(leaf, fi) ==
1920 BTRFS_FILE_EXTENT_INLINE)
Chris Mason236454df2007-04-19 13:37:44 -04001921 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04001922 /*
1923 * FIXME make sure to insert a trans record that
1924 * repeats the snapshot del on crash
1925 */
Chris Masondb945352007-10-15 16:15:53 -04001926 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1927 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04001928 continue;
Chris Masondb945352007-10-15 16:15:53 -04001929 ret = btrfs_free_extent(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001930 btrfs_file_extent_disk_num_bytes(leaf, fi),
1931 leaf_owner, leaf_generation,
1932 key.objectid, key.offset, 0);
Chris Mason6407bf62007-03-27 06:33:00 -04001933 BUG_ON(ret);
1934 }
1935 return 0;
1936}
1937
Chris Mason98ed5172008-01-03 10:01:48 -05001938static void noinline reada_walk_down(struct btrfs_root *root,
Chris Masonbea495e2008-01-24 16:13:14 -05001939 struct extent_buffer *node,
1940 int slot)
Chris Masone0115992007-06-19 16:23:05 -04001941{
Chris Masondb945352007-10-15 16:15:53 -04001942 u64 bytenr;
Chris Masonbea495e2008-01-24 16:13:14 -05001943 u64 last = 0;
1944 u32 nritems;
Chris Masone0115992007-06-19 16:23:05 -04001945 u32 refs;
Chris Masondb945352007-10-15 16:15:53 -04001946 u32 blocksize;
Chris Masonbea495e2008-01-24 16:13:14 -05001947 int ret;
1948 int i;
1949 int level;
1950 int skipped = 0;
Chris Masone0115992007-06-19 16:23:05 -04001951
Chris Mason5f39d392007-10-15 16:14:19 -04001952 nritems = btrfs_header_nritems(node);
Chris Masondb945352007-10-15 16:15:53 -04001953 level = btrfs_header_level(node);
Chris Masonbea495e2008-01-24 16:13:14 -05001954 if (level)
1955 return;
1956
1957 for (i = slot; i < nritems && skipped < 32; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001958 bytenr = btrfs_node_blockptr(node, i);
Chris Masonbea495e2008-01-24 16:13:14 -05001959 if (last && ((bytenr > last && bytenr - last > 32 * 1024) ||
1960 (last > bytenr && last - bytenr > 32 * 1024))) {
1961 skipped++;
Chris Masone0115992007-06-19 16:23:05 -04001962 continue;
Chris Masonbea495e2008-01-24 16:13:14 -05001963 }
1964 blocksize = btrfs_level_size(root, level - 1);
1965 if (i != slot) {
1966 ret = lookup_extent_ref(NULL, root, bytenr,
1967 blocksize, &refs);
1968 BUG_ON(ret);
1969 if (refs != 1) {
1970 skipped++;
1971 continue;
1972 }
1973 }
Chris Mason409eb952007-08-08 20:17:12 -04001974 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -04001975 ret = readahead_tree_block(root, bytenr, blocksize);
Chris Masonbea495e2008-01-24 16:13:14 -05001976 last = bytenr + blocksize;
Chris Mason409eb952007-08-08 20:17:12 -04001977 cond_resched();
1978 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone0115992007-06-19 16:23:05 -04001979 if (ret)
1980 break;
1981 }
1982}
1983
Chris Mason9aca1d52007-03-13 11:09:37 -04001984/*
1985 * helper function for drop_snapshot, this walks down the tree dropping ref
1986 * counts as it goes.
1987 */
Chris Mason98ed5172008-01-03 10:01:48 -05001988static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
1989 struct btrfs_root *root,
1990 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05001991{
Chris Mason7bb86312007-12-11 09:25:06 -05001992 u64 root_owner;
1993 u64 root_gen;
1994 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001995 struct extent_buffer *next;
1996 struct extent_buffer *cur;
Chris Mason7bb86312007-12-11 09:25:06 -05001997 struct extent_buffer *parent;
Chris Masondb945352007-10-15 16:15:53 -04001998 u32 blocksize;
Chris Mason20524f02007-03-10 06:35:47 -05001999 int ret;
2000 u32 refs;
2001
Chris Mason5caf2a02007-04-02 11:20:42 -04002002 WARN_ON(*level < 0);
2003 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason5f39d392007-10-15 16:14:19 -04002004 ret = lookup_extent_ref(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002005 path->nodes[*level]->start,
2006 path->nodes[*level]->len, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05002007 BUG_ON(ret);
2008 if (refs > 1)
2009 goto out;
Chris Masone0115992007-06-19 16:23:05 -04002010
Chris Mason9aca1d52007-03-13 11:09:37 -04002011 /*
2012 * walk down to the last node level and free all the leaves
2013 */
Chris Mason6407bf62007-03-27 06:33:00 -04002014 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002015 WARN_ON(*level < 0);
2016 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05002017 cur = path->nodes[*level];
Chris Masone0115992007-06-19 16:23:05 -04002018
Chris Mason5f39d392007-10-15 16:14:19 -04002019 if (btrfs_header_level(cur) != *level)
Chris Mason2c90e5d2007-04-02 10:50:19 -04002020 WARN_ON(1);
Chris Masone0115992007-06-19 16:23:05 -04002021
Chris Mason7518a232007-03-12 12:01:18 -04002022 if (path->slots[*level] >=
Chris Mason5f39d392007-10-15 16:14:19 -04002023 btrfs_header_nritems(cur))
Chris Mason20524f02007-03-10 06:35:47 -05002024 break;
Chris Mason6407bf62007-03-27 06:33:00 -04002025 if (*level == 0) {
2026 ret = drop_leaf_ref(trans, root, cur);
2027 BUG_ON(ret);
2028 break;
2029 }
Chris Masondb945352007-10-15 16:15:53 -04002030 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
2031 blocksize = btrfs_level_size(root, *level - 1);
2032 ret = lookup_extent_ref(trans, root, bytenr, blocksize, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04002033 BUG_ON(ret);
2034 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002035 parent = path->nodes[*level];
2036 root_owner = btrfs_header_owner(parent);
2037 root_gen = btrfs_header_generation(parent);
Chris Mason20524f02007-03-10 06:35:47 -05002038 path->slots[*level]++;
Chris Masondb945352007-10-15 16:15:53 -04002039 ret = btrfs_free_extent(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002040 blocksize, root_owner,
2041 root_gen, 0, 0, 1);
Chris Mason20524f02007-03-10 06:35:47 -05002042 BUG_ON(ret);
2043 continue;
2044 }
Chris Masondb945352007-10-15 16:15:53 -04002045 next = btrfs_find_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04002046 if (!next || !btrfs_buffer_uptodate(next)) {
2047 free_extent_buffer(next);
Chris Masonbea495e2008-01-24 16:13:14 -05002048 reada_walk_down(root, cur, path->slots[*level]);
Chris Masondb945352007-10-15 16:15:53 -04002049 next = read_tree_block(root, bytenr, blocksize);
Chris Masone9d0b132007-08-10 14:06:19 -04002050
Chris Masonecbe2402008-04-01 11:26:07 -04002051 /* we used to drop the lock above, keep the
2052 * code to double check so that we won't forget
2053 * when we drop the lock again in the future
2054 */
Chris Masondb945352007-10-15 16:15:53 -04002055 ret = lookup_extent_ref(trans, root, bytenr,
2056 blocksize, &refs);
Chris Masone9d0b132007-08-10 14:06:19 -04002057 BUG_ON(ret);
2058 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002059 parent = path->nodes[*level];
2060 root_owner = btrfs_header_owner(parent);
2061 root_gen = btrfs_header_generation(parent);
2062
Chris Masone9d0b132007-08-10 14:06:19 -04002063 path->slots[*level]++;
Chris Mason5f39d392007-10-15 16:14:19 -04002064 free_extent_buffer(next);
Chris Mason7bb86312007-12-11 09:25:06 -05002065 ret = btrfs_free_extent(trans, root, bytenr,
2066 blocksize,
2067 root_owner,
2068 root_gen, 0, 0, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04002069 BUG_ON(ret);
2070 continue;
2071 }
Chris Mason0999df52008-04-01 13:48:14 -04002072 } else if (next) {
2073 btrfs_verify_block_csum(root, next);
Chris Masone9d0b132007-08-10 14:06:19 -04002074 }
Chris Mason5caf2a02007-04-02 11:20:42 -04002075 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04002076 if (path->nodes[*level-1])
Chris Mason5f39d392007-10-15 16:14:19 -04002077 free_extent_buffer(path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05002078 path->nodes[*level-1] = next;
Chris Mason5f39d392007-10-15 16:14:19 -04002079 *level = btrfs_header_level(next);
Chris Mason20524f02007-03-10 06:35:47 -05002080 path->slots[*level] = 0;
2081 }
2082out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002083 WARN_ON(*level < 0);
2084 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason7bb86312007-12-11 09:25:06 -05002085
2086 if (path->nodes[*level] == root->node) {
2087 root_owner = root->root_key.objectid;
2088 parent = path->nodes[*level];
2089 } else {
2090 parent = path->nodes[*level + 1];
2091 root_owner = btrfs_header_owner(parent);
2092 }
2093
2094 root_gen = btrfs_header_generation(parent);
Chris Masondb945352007-10-15 16:15:53 -04002095 ret = btrfs_free_extent(trans, root, path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002096 path->nodes[*level]->len,
2097 root_owner, root_gen, 0, 0, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002098 free_extent_buffer(path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05002099 path->nodes[*level] = NULL;
2100 *level += 1;
2101 BUG_ON(ret);
2102 return 0;
2103}
2104
Chris Mason9aca1d52007-03-13 11:09:37 -04002105/*
2106 * helper for dropping snapshots. This walks back up the tree in the path
2107 * to find the first node higher up where we haven't yet gone through
2108 * all the slots
2109 */
Chris Mason98ed5172008-01-03 10:01:48 -05002110static int noinline walk_up_tree(struct btrfs_trans_handle *trans,
2111 struct btrfs_root *root,
2112 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002113{
Chris Mason7bb86312007-12-11 09:25:06 -05002114 u64 root_owner;
2115 u64 root_gen;
2116 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002117 int i;
2118 int slot;
2119 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04002120
Chris Mason234b63a2007-03-13 10:46:10 -04002121 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05002122 slot = path->slots[i];
Chris Mason5f39d392007-10-15 16:14:19 -04002123 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
2124 struct extent_buffer *node;
2125 struct btrfs_disk_key disk_key;
2126 node = path->nodes[i];
Chris Mason20524f02007-03-10 06:35:47 -05002127 path->slots[i]++;
2128 *level = i;
Chris Mason9f3a7422007-08-07 15:52:19 -04002129 WARN_ON(*level == 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002130 btrfs_node_key(node, &disk_key, path->slots[i]);
Chris Mason9f3a7422007-08-07 15:52:19 -04002131 memcpy(&root_item->drop_progress,
Chris Mason5f39d392007-10-15 16:14:19 -04002132 &disk_key, sizeof(disk_key));
Chris Mason9f3a7422007-08-07 15:52:19 -04002133 root_item->drop_level = i;
Chris Mason20524f02007-03-10 06:35:47 -05002134 return 0;
2135 } else {
Chris Mason7bb86312007-12-11 09:25:06 -05002136 if (path->nodes[*level] == root->node) {
2137 root_owner = root->root_key.objectid;
2138 root_gen =
2139 btrfs_header_generation(path->nodes[*level]);
2140 } else {
2141 struct extent_buffer *node;
2142 node = path->nodes[*level + 1];
2143 root_owner = btrfs_header_owner(node);
2144 root_gen = btrfs_header_generation(node);
2145 }
Chris Masone089f052007-03-16 16:20:31 -04002146 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002147 path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002148 path->nodes[*level]->len,
2149 root_owner, root_gen, 0, 0, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04002150 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002151 free_extent_buffer(path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04002152 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05002153 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05002154 }
2155 }
2156 return 1;
2157}
2158
Chris Mason9aca1d52007-03-13 11:09:37 -04002159/*
2160 * drop the reference count on the tree rooted at 'snap'. This traverses
2161 * the tree freeing any blocks that have a ref count of zero after being
2162 * decremented.
2163 */
Chris Masone089f052007-03-16 16:20:31 -04002164int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04002165 *root)
Chris Mason20524f02007-03-10 06:35:47 -05002166{
Chris Mason3768f362007-03-13 16:47:54 -04002167 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04002168 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05002169 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04002170 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05002171 int i;
2172 int orig_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002173 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002174
Chris Mason5caf2a02007-04-02 11:20:42 -04002175 path = btrfs_alloc_path();
2176 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05002177
Chris Mason5f39d392007-10-15 16:14:19 -04002178 level = btrfs_header_level(root->node);
Chris Mason20524f02007-03-10 06:35:47 -05002179 orig_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002180 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2181 path->nodes[level] = root->node;
Chris Masonf510cfe2007-10-15 16:14:48 -04002182 extent_buffer_get(root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -04002183 path->slots[level] = 0;
2184 } else {
2185 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002186 struct btrfs_disk_key found_key;
2187 struct extent_buffer *node;
Chris Mason6702ed42007-08-07 16:15:09 -04002188
Chris Mason9f3a7422007-08-07 15:52:19 -04002189 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Chris Mason6702ed42007-08-07 16:15:09 -04002190 level = root_item->drop_level;
2191 path->lowest_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002192 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason6702ed42007-08-07 16:15:09 -04002193 if (wret < 0) {
Chris Mason9f3a7422007-08-07 15:52:19 -04002194 ret = wret;
2195 goto out;
2196 }
Chris Mason5f39d392007-10-15 16:14:19 -04002197 node = path->nodes[level];
2198 btrfs_node_key(node, &found_key, path->slots[level]);
2199 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2200 sizeof(found_key)));
Chris Mason9f3a7422007-08-07 15:52:19 -04002201 }
Chris Mason20524f02007-03-10 06:35:47 -05002202 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002203 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002204 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002205 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002206 if (wret < 0)
2207 ret = wret;
2208
Chris Mason5caf2a02007-04-02 11:20:42 -04002209 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002210 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002211 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002212 if (wret < 0)
2213 ret = wret;
Chris Mason409eb952007-08-08 20:17:12 -04002214 ret = -EAGAIN;
Chris Mason409eb952007-08-08 20:17:12 -04002215 break;
Chris Mason20524f02007-03-10 06:35:47 -05002216 }
Chris Mason83e15a22007-03-12 09:03:27 -04002217 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002218 if (path->nodes[i]) {
Chris Mason5f39d392007-10-15 16:14:19 -04002219 free_extent_buffer(path->nodes[i]);
Chris Mason0f827312007-10-15 16:18:56 -04002220 path->nodes[i] = NULL;
Chris Mason83e15a22007-03-12 09:03:27 -04002221 }
Chris Mason20524f02007-03-10 06:35:47 -05002222 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002223out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002224 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04002225 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05002226}
Chris Mason9078a3e2007-04-26 16:46:15 -04002227
Chris Masonbe744172007-05-06 10:15:01 -04002228int btrfs_free_block_groups(struct btrfs_fs_info *info)
2229{
Chris Masonf510cfe2007-10-15 16:14:48 -04002230 u64 start;
2231 u64 end;
Yanb97f9202007-11-01 11:28:41 -04002232 u64 ptr;
Chris Mason96b51792007-10-15 16:15:19 -04002233 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04002234 while(1) {
2235 ret = find_first_extent_bit(&info->block_group_cache, 0,
2236 &start, &end, (unsigned int)-1);
2237 if (ret)
2238 break;
Yanb97f9202007-11-01 11:28:41 -04002239 ret = get_state_private(&info->block_group_cache, start, &ptr);
2240 if (!ret)
2241 kfree((void *)(unsigned long)ptr);
Chris Mason96b51792007-10-15 16:15:19 -04002242 clear_extent_bits(&info->block_group_cache, start,
2243 end, (unsigned int)-1, GFP_NOFS);
2244 }
Chris Masone37c9e62007-05-09 20:13:14 -04002245 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -04002246 ret = find_first_extent_bit(&info->free_space_cache, 0,
2247 &start, &end, EXTENT_DIRTY);
2248 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -04002249 break;
Chris Masonf510cfe2007-10-15 16:14:48 -04002250 clear_extent_dirty(&info->free_space_cache, start,
2251 end, GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04002252 }
Chris Masonbe744172007-05-06 10:15:01 -04002253 return 0;
2254}
2255
Chris Mason98ed5172008-01-03 10:01:48 -05002256static int noinline relocate_inode_pages(struct inode *inode, u64 start,
2257 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05002258{
2259 u64 page_start;
2260 u64 page_end;
2261 u64 delalloc_start;
2262 u64 existing_delalloc;
2263 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05002264 unsigned long i;
2265 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05002266 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05002267 struct file_ra_state *ra;
2268
2269 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002270
2271 mutex_lock(&inode->i_mutex);
Chris Mason4313b392008-01-03 09:08:48 -05002272 i = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05002273 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
2274
Chris Mason4313b392008-01-03 09:08:48 -05002275 file_ra_state_init(ra, inode->i_mapping);
2276 btrfs_force_ra(inode->i_mapping, ra, NULL, i, last_index);
2277 kfree(ra);
Chris Masonedbd8d42007-12-21 16:27:24 -05002278
Chris Mason4313b392008-01-03 09:08:48 -05002279 for (; i <= last_index; i++) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002280 page = grab_cache_page(inode->i_mapping, i);
2281 if (!page)
2282 goto out_unlock;
2283 if (!PageUptodate(page)) {
2284 btrfs_readpage(NULL, page);
2285 lock_page(page);
2286 if (!PageUptodate(page)) {
2287 unlock_page(page);
2288 page_cache_release(page);
2289 goto out_unlock;
2290 }
2291 }
2292 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2293 page_end = page_start + PAGE_CACHE_SIZE - 1;
2294
Chris Masond1310b22008-01-24 16:13:08 -05002295 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002296
2297 delalloc_start = page_start;
Chris Masond1310b22008-01-24 16:13:08 -05002298 existing_delalloc = count_range_bits(io_tree,
2299 &delalloc_start, page_end,
2300 PAGE_CACHE_SIZE, EXTENT_DELALLOC);
Chris Masonedbd8d42007-12-21 16:27:24 -05002301
Chris Masond1310b22008-01-24 16:13:08 -05002302 set_extent_delalloc(io_tree, page_start,
Chris Masonedbd8d42007-12-21 16:27:24 -05002303 page_end, GFP_NOFS);
2304
Chris Masond1310b22008-01-24 16:13:08 -05002305 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002306 set_page_dirty(page);
2307 unlock_page(page);
2308 page_cache_release(page);
2309 }
2310
2311out_unlock:
2312 mutex_unlock(&inode->i_mutex);
2313 return 0;
2314}
2315
Chris Mason4313b392008-01-03 09:08:48 -05002316/*
2317 * note, this releases the path
2318 */
Chris Mason98ed5172008-01-03 10:01:48 -05002319static int noinline relocate_one_reference(struct btrfs_root *extent_root,
Chris Masonedbd8d42007-12-21 16:27:24 -05002320 struct btrfs_path *path,
Chris Mason4313b392008-01-03 09:08:48 -05002321 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002322{
2323 struct inode *inode;
2324 struct btrfs_root *found_root;
Chris Mason4313b392008-01-03 09:08:48 -05002325 struct btrfs_key *root_location;
2326 struct btrfs_extent_ref *ref;
2327 u64 ref_root;
2328 u64 ref_gen;
2329 u64 ref_objectid;
2330 u64 ref_offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05002331 int ret;
2332
Chris Mason4313b392008-01-03 09:08:48 -05002333 ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
2334 struct btrfs_extent_ref);
2335 ref_root = btrfs_ref_root(path->nodes[0], ref);
2336 ref_gen = btrfs_ref_generation(path->nodes[0], ref);
2337 ref_objectid = btrfs_ref_objectid(path->nodes[0], ref);
2338 ref_offset = btrfs_ref_offset(path->nodes[0], ref);
2339 btrfs_release_path(extent_root, path);
2340
2341 root_location = kmalloc(sizeof(*root_location), GFP_NOFS);
2342 root_location->objectid = ref_root;
Chris Masonedbd8d42007-12-21 16:27:24 -05002343 if (ref_gen == 0)
Chris Mason4313b392008-01-03 09:08:48 -05002344 root_location->offset = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002345 else
Chris Mason4313b392008-01-03 09:08:48 -05002346 root_location->offset = (u64)-1;
2347 root_location->type = BTRFS_ROOT_ITEM_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05002348
2349 found_root = btrfs_read_fs_root_no_name(extent_root->fs_info,
Chris Mason4313b392008-01-03 09:08:48 -05002350 root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002351 BUG_ON(!found_root);
Chris Mason4313b392008-01-03 09:08:48 -05002352 kfree(root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002353
2354 if (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
2355 mutex_unlock(&extent_root->fs_info->fs_mutex);
2356 inode = btrfs_iget_locked(extent_root->fs_info->sb,
2357 ref_objectid, found_root);
2358 if (inode->i_state & I_NEW) {
2359 /* the inode and parent dir are two different roots */
2360 BTRFS_I(inode)->root = found_root;
2361 BTRFS_I(inode)->location.objectid = ref_objectid;
2362 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
2363 BTRFS_I(inode)->location.offset = 0;
2364 btrfs_read_locked_inode(inode);
2365 unlock_new_inode(inode);
2366
2367 }
2368 /* this can happen if the reference is not against
2369 * the latest version of the tree root
2370 */
2371 if (is_bad_inode(inode)) {
2372 mutex_lock(&extent_root->fs_info->fs_mutex);
2373 goto out;
2374 }
2375 relocate_inode_pages(inode, ref_offset, extent_key->offset);
2376 /* FIXME, data=ordered will help get rid of this */
2377 filemap_fdatawrite(inode->i_mapping);
2378 iput(inode);
2379 mutex_lock(&extent_root->fs_info->fs_mutex);
2380 } else {
2381 struct btrfs_trans_handle *trans;
2382 struct btrfs_key found_key;
2383 struct extent_buffer *eb;
2384 int level;
2385 int i;
2386
2387 trans = btrfs_start_transaction(found_root, 1);
2388 eb = read_tree_block(found_root, extent_key->objectid,
2389 extent_key->offset);
2390 level = btrfs_header_level(eb);
2391
2392 if (level == 0)
2393 btrfs_item_key_to_cpu(eb, &found_key, 0);
2394 else
2395 btrfs_node_key_to_cpu(eb, &found_key, 0);
2396
2397 free_extent_buffer(eb);
2398
2399 path->lowest_level = level;
Chris Mason8f662a72008-01-02 10:01:11 -05002400 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002401 ret = btrfs_search_slot(trans, found_root, &found_key, path,
2402 0, 1);
2403 path->lowest_level = 0;
2404 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2405 if (!path->nodes[i])
2406 break;
2407 free_extent_buffer(path->nodes[i]);
2408 path->nodes[i] = NULL;
2409 }
2410 btrfs_release_path(found_root, path);
2411 btrfs_end_transaction(trans, found_root);
2412 }
2413
2414out:
2415 return 0;
2416}
2417
Chris Mason98ed5172008-01-03 10:01:48 -05002418static int noinline relocate_one_extent(struct btrfs_root *extent_root,
2419 struct btrfs_path *path,
2420 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002421{
2422 struct btrfs_key key;
2423 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002424 struct extent_buffer *leaf;
Chris Masonedbd8d42007-12-21 16:27:24 -05002425 u32 nritems;
2426 u32 item_size;
2427 int ret = 0;
2428
2429 key.objectid = extent_key->objectid;
2430 key.type = BTRFS_EXTENT_REF_KEY;
2431 key.offset = 0;
2432
2433 while(1) {
2434 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2435
Chris Masonedbd8d42007-12-21 16:27:24 -05002436 if (ret < 0)
2437 goto out;
2438
2439 ret = 0;
2440 leaf = path->nodes[0];
2441 nritems = btrfs_header_nritems(leaf);
2442 if (path->slots[0] == nritems)
2443 goto out;
2444
2445 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2446 if (found_key.objectid != extent_key->objectid)
2447 break;
2448
2449 if (found_key.type != BTRFS_EXTENT_REF_KEY)
2450 break;
2451
2452 key.offset = found_key.offset + 1;
2453 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2454
Chris Mason4313b392008-01-03 09:08:48 -05002455 ret = relocate_one_reference(extent_root, path, extent_key);
Chris Masonedbd8d42007-12-21 16:27:24 -05002456 if (ret)
2457 goto out;
2458 }
2459 ret = 0;
2460out:
2461 btrfs_release_path(extent_root, path);
2462 return ret;
2463}
2464
Chris Masonedbd8d42007-12-21 16:27:24 -05002465int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 new_size)
2466{
2467 struct btrfs_trans_handle *trans;
2468 struct btrfs_root *tree_root = root->fs_info->tree_root;
2469 struct btrfs_path *path;
2470 u64 cur_byte;
2471 u64 total_found;
Chris Masonedbd8d42007-12-21 16:27:24 -05002472 struct btrfs_fs_info *info = root->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05002473 struct extent_io_tree *block_group_cache;
Chris Masonedbd8d42007-12-21 16:27:24 -05002474 struct btrfs_key key;
Yan73e48b22008-01-03 14:14:39 -05002475 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002476 struct extent_buffer *leaf;
2477 u32 nritems;
2478 int ret;
Chris Mason725c8462008-01-04 16:47:16 -05002479 int progress = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002480
2481 btrfs_set_super_total_bytes(&info->super_copy, new_size);
Chris Masonc31f8832008-01-08 15:46:31 -05002482 clear_extent_dirty(&info->free_space_cache, new_size, (u64)-1,
2483 GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002484 block_group_cache = &info->block_group_cache;
2485 path = btrfs_alloc_path();
2486 root = root->fs_info->extent_root;
Chris Mason8f662a72008-01-02 10:01:11 -05002487 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002488
2489again:
2490 total_found = 0;
2491 key.objectid = new_size;
Chris Masonedbd8d42007-12-21 16:27:24 -05002492 key.offset = 0;
2493 key.type = 0;
Yan73e48b22008-01-03 14:14:39 -05002494 cur_byte = key.objectid;
Chris Mason4313b392008-01-03 09:08:48 -05002495
Yan73e48b22008-01-03 14:14:39 -05002496 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2497 if (ret < 0)
2498 goto out;
2499
Chris Mason0b86a832008-03-24 15:01:56 -04002500 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
Yan73e48b22008-01-03 14:14:39 -05002501 if (ret < 0)
2502 goto out;
2503 if (ret == 0) {
2504 leaf = path->nodes[0];
2505 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2506 if (found_key.objectid + found_key.offset > new_size) {
2507 cur_byte = found_key.objectid;
2508 key.objectid = cur_byte;
2509 }
2510 }
2511 btrfs_release_path(root, path);
2512
2513 while(1) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002514 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2515 if (ret < 0)
2516 goto out;
Yan73e48b22008-01-03 14:14:39 -05002517
Chris Masonedbd8d42007-12-21 16:27:24 -05002518 leaf = path->nodes[0];
Chris Masonedbd8d42007-12-21 16:27:24 -05002519 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05002520next:
2521 if (path->slots[0] >= nritems) {
2522 ret = btrfs_next_leaf(root, path);
2523 if (ret < 0)
2524 goto out;
2525 if (ret == 1) {
2526 ret = 0;
2527 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05002528 }
Yan73e48b22008-01-03 14:14:39 -05002529 leaf = path->nodes[0];
2530 nritems = btrfs_header_nritems(leaf);
2531 }
2532
2533 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason725c8462008-01-04 16:47:16 -05002534
2535 if (progress && need_resched()) {
2536 memcpy(&key, &found_key, sizeof(key));
2537 mutex_unlock(&root->fs_info->fs_mutex);
2538 cond_resched();
2539 mutex_lock(&root->fs_info->fs_mutex);
2540 btrfs_release_path(root, path);
2541 btrfs_search_slot(NULL, root, &key, path, 0, 0);
2542 progress = 0;
2543 goto next;
2544 }
2545 progress = 1;
2546
Yan73e48b22008-01-03 14:14:39 -05002547 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_ITEM_KEY ||
2548 found_key.objectid + found_key.offset <= cur_byte) {
2549 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05002550 goto next;
2551 }
Yan73e48b22008-01-03 14:14:39 -05002552
Chris Masonedbd8d42007-12-21 16:27:24 -05002553 total_found++;
2554 cur_byte = found_key.objectid + found_key.offset;
2555 key.objectid = cur_byte;
2556 btrfs_release_path(root, path);
2557 ret = relocate_one_extent(root, path, &found_key);
2558 }
2559
2560 btrfs_release_path(root, path);
2561
2562 if (total_found > 0) {
2563 trans = btrfs_start_transaction(tree_root, 1);
2564 btrfs_commit_transaction(trans, tree_root);
2565
2566 mutex_unlock(&root->fs_info->fs_mutex);
2567 btrfs_clean_old_snapshots(tree_root);
2568 mutex_lock(&root->fs_info->fs_mutex);
2569
2570 trans = btrfs_start_transaction(tree_root, 1);
2571 btrfs_commit_transaction(trans, tree_root);
2572 goto again;
2573 }
2574
2575 trans = btrfs_start_transaction(root, 1);
2576 key.objectid = new_size;
2577 key.offset = 0;
2578 key.type = 0;
2579 while(1) {
Chris Mason4313b392008-01-03 09:08:48 -05002580 u64 ptr;
2581
Chris Masonedbd8d42007-12-21 16:27:24 -05002582 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2583 if (ret < 0)
2584 goto out;
Yan73e48b22008-01-03 14:14:39 -05002585
Chris Masonedbd8d42007-12-21 16:27:24 -05002586 leaf = path->nodes[0];
2587 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05002588bg_next:
2589 if (path->slots[0] >= nritems) {
2590 ret = btrfs_next_leaf(root, path);
2591 if (ret < 0)
2592 break;
2593 if (ret == 1) {
2594 ret = 0;
2595 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05002596 }
Yan73e48b22008-01-03 14:14:39 -05002597 leaf = path->nodes[0];
Chris Mason1372f8e2008-01-04 09:34:54 -05002598 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2599
2600 /*
2601 * btrfs_next_leaf doesn't cow buffers, we have to
2602 * do the search again
2603 */
2604 memcpy(&key, &found_key, sizeof(key));
2605 btrfs_release_path(root, path);
Chris Mason725c8462008-01-04 16:47:16 -05002606 goto resched_check;
Yan73e48b22008-01-03 14:14:39 -05002607 }
2608
2609 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2610 if (btrfs_key_type(&found_key) != BTRFS_BLOCK_GROUP_ITEM_KEY) {
2611 printk("shrinker found key %Lu %u %Lu\n",
2612 found_key.objectid, found_key.type,
2613 found_key.offset);
2614 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05002615 goto bg_next;
2616 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002617 ret = get_state_private(&info->block_group_cache,
2618 found_key.objectid, &ptr);
2619 if (!ret)
2620 kfree((void *)(unsigned long)ptr);
2621
2622 clear_extent_bits(&info->block_group_cache, found_key.objectid,
2623 found_key.objectid + found_key.offset - 1,
2624 (unsigned int)-1, GFP_NOFS);
2625
2626 key.objectid = found_key.objectid + 1;
2627 btrfs_del_item(trans, root, path);
2628 btrfs_release_path(root, path);
Chris Mason725c8462008-01-04 16:47:16 -05002629resched_check:
2630 if (need_resched()) {
2631 mutex_unlock(&root->fs_info->fs_mutex);
2632 cond_resched();
2633 mutex_lock(&root->fs_info->fs_mutex);
2634 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002635 }
2636 clear_extent_dirty(&info->free_space_cache, new_size, (u64)-1,
2637 GFP_NOFS);
2638 btrfs_commit_transaction(trans, root);
2639out:
2640 btrfs_free_path(path);
2641 return ret;
2642}
2643
2644int btrfs_grow_extent_tree(struct btrfs_trans_handle *trans,
2645 struct btrfs_root *root, u64 new_size)
2646{
Chris Mason0b86a832008-03-24 15:01:56 -04002647 btrfs_set_super_total_bytes(&root->fs_info->super_copy, new_size);
Chris Masonedbd8d42007-12-21 16:27:24 -05002648 return 0;
2649}
2650
Chris Mason0b86a832008-03-24 15:01:56 -04002651int find_first_block_group(struct btrfs_root *root, struct btrfs_path *path,
2652 struct btrfs_key *key)
2653{
2654 int ret;
2655 struct btrfs_key found_key;
2656 struct extent_buffer *leaf;
2657 int slot;
2658
2659 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
2660 if (ret < 0)
2661 return ret;
2662 while(1) {
2663 slot = path->slots[0];
2664 leaf = path->nodes[0];
2665 if (slot >= btrfs_header_nritems(leaf)) {
2666 ret = btrfs_next_leaf(root, path);
2667 if (ret == 0)
2668 continue;
2669 if (ret < 0)
2670 goto error;
2671 break;
2672 }
2673 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2674
2675 if (found_key.objectid >= key->objectid &&
2676 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY)
2677 return 0;
2678 path->slots[0]++;
2679 }
2680 ret = -ENOENT;
2681error:
2682 return ret;
2683}
2684
Chris Mason9078a3e2007-04-26 16:46:15 -04002685int btrfs_read_block_groups(struct btrfs_root *root)
2686{
2687 struct btrfs_path *path;
2688 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04002689 int bit;
Chris Mason9078a3e2007-04-26 16:46:15 -04002690 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04002691 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04002692 struct btrfs_space_info *space_info;
Chris Masond1310b22008-01-24 16:13:08 -05002693 struct extent_io_tree *block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002694 struct btrfs_key key;
2695 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04002696 struct extent_buffer *leaf;
Chris Mason96b51792007-10-15 16:15:19 -04002697
2698 block_group_cache = &info->block_group_cache;
Chris Masonbe744172007-05-06 10:15:01 -04002699 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04002700 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04002701 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002702 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04002703 path = btrfs_alloc_path();
2704 if (!path)
2705 return -ENOMEM;
2706
2707 while(1) {
Chris Mason0b86a832008-03-24 15:01:56 -04002708 ret = find_first_block_group(root, path, &key);
2709 if (ret > 0) {
2710 ret = 0;
2711 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04002712 }
Chris Mason0b86a832008-03-24 15:01:56 -04002713 if (ret != 0)
2714 goto error;
2715
Chris Mason5f39d392007-10-15 16:14:19 -04002716 leaf = path->nodes[0];
2717 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason9078a3e2007-04-26 16:46:15 -04002718 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2719 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04002720 ret = -ENOMEM;
Chris Mason9078a3e2007-04-26 16:46:15 -04002721 break;
2722 }
Chris Mason3e1ad542007-05-07 20:03:49 -04002723
Chris Mason5f39d392007-10-15 16:14:19 -04002724 read_extent_buffer(leaf, &cache->item,
2725 btrfs_item_ptr_offset(leaf, path->slots[0]),
2726 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04002727 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Masone37c9e62007-05-09 20:13:14 -04002728 cache->cached = 0;
Yan324ae4d2007-11-16 14:57:08 -05002729 cache->pinned = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04002730
Chris Mason9078a3e2007-04-26 16:46:15 -04002731 key.objectid = found_key.objectid + found_key.offset;
2732 btrfs_release_path(root, path);
Chris Mason0b86a832008-03-24 15:01:56 -04002733 cache->flags = btrfs_block_group_flags(&cache->item);
2734 bit = 0;
2735 if (cache->flags & BTRFS_BLOCK_GROUP_DATA) {
Chris Mason96b51792007-10-15 16:15:19 -04002736 bit = BLOCK_GROUP_DATA;
Chris Mason0b86a832008-03-24 15:01:56 -04002737 } else if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
2738 bit = BLOCK_GROUP_SYSTEM;
2739 } else if (cache->flags & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason96b51792007-10-15 16:15:19 -04002740 bit = BLOCK_GROUP_METADATA;
Chris Mason31f3c992007-04-30 15:25:45 -04002741 }
Chris Mason593060d2008-03-25 16:50:33 -04002742 if (cache->flags & BTRFS_BLOCK_GROUP_RAID0) {
2743 if (cache->flags & BTRFS_BLOCK_GROUP_DATA) {
2744 info->extra_data_alloc_bits =
2745 BTRFS_BLOCK_GROUP_RAID0;
2746 }
2747 if (cache->flags & BTRFS_BLOCK_GROUP_METADATA) {
2748 info->extra_alloc_bits =
2749 BTRFS_BLOCK_GROUP_RAID0;
2750 }
2751 }
Chris Mason96b51792007-10-15 16:15:19 -04002752
Chris Mason6324fbf2008-03-24 15:01:59 -04002753 ret = update_space_info(info, cache->flags, found_key.offset,
2754 btrfs_block_group_used(&cache->item),
2755 &space_info);
2756 BUG_ON(ret);
2757 cache->space_info = space_info;
2758
Chris Mason96b51792007-10-15 16:15:19 -04002759 /* use EXTENT_LOCKED to prevent merging */
2760 set_extent_bits(block_group_cache, found_key.objectid,
2761 found_key.objectid + found_key.offset - 1,
2762 bit | EXTENT_LOCKED, GFP_NOFS);
2763 set_state_private(block_group_cache, found_key.objectid,
Jens Axboeae2f5412007-10-19 09:22:59 -04002764 (unsigned long)cache);
Chris Mason96b51792007-10-15 16:15:19 -04002765
Chris Mason9078a3e2007-04-26 16:46:15 -04002766 if (key.objectid >=
Chris Masondb945352007-10-15 16:15:53 -04002767 btrfs_super_total_bytes(&info->super_copy))
Chris Mason9078a3e2007-04-26 16:46:15 -04002768 break;
2769 }
Chris Mason0b86a832008-03-24 15:01:56 -04002770 ret = 0;
2771error:
Chris Mason9078a3e2007-04-26 16:46:15 -04002772 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04002773 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04002774}
Chris Mason6324fbf2008-03-24 15:01:59 -04002775
2776int btrfs_make_block_group(struct btrfs_trans_handle *trans,
2777 struct btrfs_root *root, u64 bytes_used,
2778 u64 type, u64 chunk_tree, u64 chunk_objectid,
2779 u64 size)
2780{
2781 int ret;
2782 int bit = 0;
2783 struct btrfs_root *extent_root;
2784 struct btrfs_block_group_cache *cache;
2785 struct extent_io_tree *block_group_cache;
2786
2787 extent_root = root->fs_info->extent_root;
2788 block_group_cache = &root->fs_info->block_group_cache;
2789
2790 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2791 BUG_ON(!cache);
2792 cache->key.objectid = chunk_objectid;
2793 cache->key.offset = size;
2794 cache->cached = 0;
2795 cache->pinned = 0;
2796 btrfs_set_key_type(&cache->key, BTRFS_BLOCK_GROUP_ITEM_KEY);
2797 memset(&cache->item, 0, sizeof(cache->item));
2798 btrfs_set_block_group_used(&cache->item, bytes_used);
2799 btrfs_set_block_group_chunk_tree(&cache->item, chunk_tree);
2800 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
2801 cache->flags = type;
2802 btrfs_set_block_group_flags(&cache->item, type);
2803
2804 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
2805 &cache->space_info);
2806 BUG_ON(ret);
2807
2808 if (type & BTRFS_BLOCK_GROUP_DATA) {
2809 bit = BLOCK_GROUP_DATA;
2810 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
2811 bit = BLOCK_GROUP_SYSTEM;
2812 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
2813 bit = BLOCK_GROUP_METADATA;
2814 }
2815 set_extent_bits(block_group_cache, chunk_objectid,
2816 chunk_objectid + size - 1,
2817 bit | EXTENT_LOCKED, GFP_NOFS);
2818 set_state_private(block_group_cache, chunk_objectid,
2819 (unsigned long)cache);
2820
2821 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
2822 sizeof(cache->item));
2823 BUG_ON(ret);
2824
2825 finish_current_insert(trans, extent_root);
2826 ret = del_pending_extents(trans, extent_root);
2827 BUG_ON(ret);
2828 return 0;
2829}