blob: 5e392804ab15eec31925c4314f91d5db0c34a0e0 [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 Mason6324fbf2008-03-24 15:01:59 -0400175 return (cache->flags & 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 Mason6324fbf2008-03-24 15:01:59 -0400377 if (full_search) {
378 printk("failed on cache %Lu used %Lu total %Lu\n",
379 cache->key.objectid, used, cache->key.offset);
380 }
Chris Masonde428b62007-05-18 13:28:27 -0400381 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400382 }
Chris Mason31f3c992007-04-30 15:25:45 -0400383 if (!full_search) {
Chris Masonbe744172007-05-06 10:15:01 -0400384 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400385 full_search = 1;
386 goto again;
387 }
Chris Masonbe744172007-05-06 10:15:01 -0400388found:
Chris Mason31f3c992007-04-30 15:25:45 -0400389 return found_group;
Chris Masoncd1bc462007-04-27 10:08:34 -0400390}
391
Chris Mason7bb86312007-12-11 09:25:06 -0500392static u64 hash_extent_ref(u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500393 u64 owner, u64 owner_offset)
394{
395 u32 high_crc = ~(u32)0;
396 u32 low_crc = ~(u32)0;
397 __le64 lenum;
398
399 lenum = cpu_to_le64(root_objectid);
400 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Chris Mason7bb86312007-12-11 09:25:06 -0500401 lenum = cpu_to_le64(ref_generation);
402 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500403 if (owner >= BTRFS_FIRST_FREE_OBJECTID) {
404 lenum = cpu_to_le64(owner);
405 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
406 lenum = cpu_to_le64(owner_offset);
407 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
408 }
Chris Mason74493f72007-12-11 09:25:06 -0500409 return ((u64)high_crc << 32) | (u64)low_crc;
410}
411
Chris Mason7bb86312007-12-11 09:25:06 -0500412static int match_extent_ref(struct extent_buffer *leaf,
413 struct btrfs_extent_ref *disk_ref,
414 struct btrfs_extent_ref *cpu_ref)
415{
416 int ret;
417 int len;
418
419 if (cpu_ref->objectid)
420 len = sizeof(*cpu_ref);
421 else
422 len = 2 * sizeof(u64);
423 ret = memcmp_extent_buffer(leaf, cpu_ref, (unsigned long)disk_ref,
424 len);
425 return ret == 0;
426}
427
Chris Mason98ed5172008-01-03 10:01:48 -0500428static int noinline lookup_extent_backref(struct btrfs_trans_handle *trans,
429 struct btrfs_root *root,
430 struct btrfs_path *path, u64 bytenr,
431 u64 root_objectid,
432 u64 ref_generation, u64 owner,
433 u64 owner_offset, int del)
Chris Mason7bb86312007-12-11 09:25:06 -0500434{
435 u64 hash;
436 struct btrfs_key key;
437 struct btrfs_key found_key;
438 struct btrfs_extent_ref ref;
439 struct extent_buffer *leaf;
440 struct btrfs_extent_ref *disk_ref;
441 int ret;
442 int ret2;
443
444 btrfs_set_stack_ref_root(&ref, root_objectid);
445 btrfs_set_stack_ref_generation(&ref, ref_generation);
446 btrfs_set_stack_ref_objectid(&ref, owner);
447 btrfs_set_stack_ref_offset(&ref, owner_offset);
448
449 hash = hash_extent_ref(root_objectid, ref_generation, owner,
450 owner_offset);
451 key.offset = hash;
452 key.objectid = bytenr;
453 key.type = BTRFS_EXTENT_REF_KEY;
454
455 while (1) {
456 ret = btrfs_search_slot(trans, root, &key, path,
457 del ? -1 : 0, del);
458 if (ret < 0)
459 goto out;
460 leaf = path->nodes[0];
461 if (ret != 0) {
462 u32 nritems = btrfs_header_nritems(leaf);
463 if (path->slots[0] >= nritems) {
464 ret2 = btrfs_next_leaf(root, path);
465 if (ret2)
466 goto out;
467 leaf = path->nodes[0];
468 }
469 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
470 if (found_key.objectid != bytenr ||
471 found_key.type != BTRFS_EXTENT_REF_KEY)
472 goto out;
473 key.offset = found_key.offset;
474 if (del) {
475 btrfs_release_path(root, path);
476 continue;
477 }
478 }
479 disk_ref = btrfs_item_ptr(path->nodes[0],
480 path->slots[0],
481 struct btrfs_extent_ref);
482 if (match_extent_ref(path->nodes[0], disk_ref, &ref)) {
483 ret = 0;
484 goto out;
485 }
486 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
487 key.offset = found_key.offset + 1;
488 btrfs_release_path(root, path);
489 }
490out:
491 return ret;
492}
493
Chris Masond8d5f3e2007-12-11 12:42:00 -0500494/*
495 * Back reference rules. Back refs have three main goals:
496 *
497 * 1) differentiate between all holders of references to an extent so that
498 * when a reference is dropped we can make sure it was a valid reference
499 * before freeing the extent.
500 *
501 * 2) Provide enough information to quickly find the holders of an extent
502 * if we notice a given block is corrupted or bad.
503 *
504 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
505 * maintenance. This is actually the same as #2, but with a slightly
506 * different use case.
507 *
508 * File extents can be referenced by:
509 *
510 * - multiple snapshots, subvolumes, or different generations in one subvol
511 * - different files inside a single subvolume (in theory, not implemented yet)
512 * - different offsets inside a file (bookend extents in file.c)
513 *
514 * The extent ref structure has fields for:
515 *
516 * - Objectid of the subvolume root
517 * - Generation number of the tree holding the reference
518 * - objectid of the file holding the reference
519 * - offset in the file corresponding to the key holding the reference
520 *
521 * When a file extent is allocated the fields are filled in:
522 * (root_key.objectid, trans->transid, inode objectid, offset in file)
523 *
524 * When a leaf is cow'd new references are added for every file extent found
525 * in the leaf. It looks the same as the create case, but trans->transid
526 * will be different when the block is cow'd.
527 *
528 * (root_key.objectid, trans->transid, inode objectid, offset in file)
529 *
530 * When a file extent is removed either during snapshot deletion or file
531 * truncation, the corresponding back reference is found
532 * by searching for:
533 *
534 * (btrfs_header_owner(leaf), btrfs_header_generation(leaf),
535 * inode objectid, offset in file)
536 *
537 * Btree extents can be referenced by:
538 *
539 * - Different subvolumes
540 * - Different generations of the same subvolume
541 *
542 * Storing sufficient information for a full reverse mapping of a btree
543 * block would require storing the lowest key of the block in the backref,
544 * and it would require updating that lowest key either before write out or
545 * every time it changed. Instead, the objectid of the lowest key is stored
546 * along with the level of the tree block. This provides a hint
547 * about where in the btree the block can be found. Searches through the
548 * btree only need to look for a pointer to that block, so they stop one
549 * level higher than the level recorded in the backref.
550 *
551 * Some btrees do not do reference counting on their extents. These
552 * include the extent tree and the tree of tree roots. Backrefs for these
553 * trees always have a generation of zero.
554 *
555 * When a tree block is created, back references are inserted:
556 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500557 * (root->root_key.objectid, trans->transid or zero, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500558 *
559 * When a tree block is cow'd in a reference counted root,
560 * new back references are added for all the blocks it points to.
561 * These are of the form (trans->transid will have increased since creation):
562 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500563 * (root->root_key.objectid, trans->transid, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500564 *
565 * Because the lowest_key_objectid and the level are just hints
566 * they are not used when backrefs are deleted. When a backref is deleted:
567 *
568 * if backref was for a tree root:
569 * root_objectid = root->root_key.objectid
570 * else
571 * root_objectid = btrfs_header_owner(parent)
572 *
573 * (root_objectid, btrfs_header_generation(parent) or zero, 0, 0)
574 *
575 * Back Reference Key hashing:
576 *
577 * Back references have four fields, each 64 bits long. Unfortunately,
578 * This is hashed into a single 64 bit number and placed into the key offset.
579 * The key objectid corresponds to the first byte in the extent, and the
580 * key type is set to BTRFS_EXTENT_REF_KEY
581 */
Chris Mason7bb86312007-12-11 09:25:06 -0500582int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
583 struct btrfs_root *root,
584 struct btrfs_path *path, u64 bytenr,
585 u64 root_objectid, u64 ref_generation,
586 u64 owner, u64 owner_offset)
Chris Mason74493f72007-12-11 09:25:06 -0500587{
588 u64 hash;
589 struct btrfs_key key;
590 struct btrfs_extent_ref ref;
Chris Mason7bb86312007-12-11 09:25:06 -0500591 struct btrfs_extent_ref *disk_ref;
Chris Mason74493f72007-12-11 09:25:06 -0500592 int ret;
593
594 btrfs_set_stack_ref_root(&ref, root_objectid);
Chris Mason7bb86312007-12-11 09:25:06 -0500595 btrfs_set_stack_ref_generation(&ref, ref_generation);
Chris Mason74493f72007-12-11 09:25:06 -0500596 btrfs_set_stack_ref_objectid(&ref, owner);
597 btrfs_set_stack_ref_offset(&ref, owner_offset);
598
Chris Mason7bb86312007-12-11 09:25:06 -0500599 hash = hash_extent_ref(root_objectid, ref_generation, owner,
600 owner_offset);
Chris Mason74493f72007-12-11 09:25:06 -0500601 key.offset = hash;
602 key.objectid = bytenr;
603 key.type = BTRFS_EXTENT_REF_KEY;
604
605 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(ref));
606 while (ret == -EEXIST) {
Chris Mason7bb86312007-12-11 09:25:06 -0500607 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
608 struct btrfs_extent_ref);
609 if (match_extent_ref(path->nodes[0], disk_ref, &ref))
610 goto out;
611 key.offset++;
612 btrfs_release_path(root, path);
613 ret = btrfs_insert_empty_item(trans, root, path, &key,
614 sizeof(ref));
Chris Mason74493f72007-12-11 09:25:06 -0500615 }
Chris Mason7bb86312007-12-11 09:25:06 -0500616 if (ret)
617 goto out;
618 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
619 struct btrfs_extent_ref);
620 write_extent_buffer(path->nodes[0], &ref, (unsigned long)disk_ref,
621 sizeof(ref));
622 btrfs_mark_buffer_dirty(path->nodes[0]);
623out:
624 btrfs_release_path(root, path);
625 return ret;
Chris Mason74493f72007-12-11 09:25:06 -0500626}
627
Chris Masonb18c6682007-04-17 13:26:50 -0400628int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
629 struct btrfs_root *root,
Chris Mason74493f72007-12-11 09:25:06 -0500630 u64 bytenr, u64 num_bytes,
Chris Mason7bb86312007-12-11 09:25:06 -0500631 u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500632 u64 owner, u64 owner_offset)
Chris Mason02217ed2007-03-02 16:08:05 -0500633{
Chris Mason5caf2a02007-04-02 11:20:42 -0400634 struct btrfs_path *path;
Chris Mason02217ed2007-03-02 16:08:05 -0500635 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400636 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400637 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400638 struct btrfs_extent_item *item;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400639 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500640
Chris Masondb945352007-10-15 16:15:53 -0400641 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400642 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400643 if (!path)
644 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -0400645
Chris Masonb0331a42008-01-08 15:46:31 -0500646 path->reada = 0;
Chris Masondb945352007-10-15 16:15:53 -0400647 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -0400648 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -0400649 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -0400650 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400651 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400652 if (ret < 0)
653 return ret;
Chris Masona429e512007-04-18 16:15:28 -0400654 if (ret != 0) {
Chris Masona28ec192007-03-06 20:08:01 -0500655 BUG();
Chris Masona429e512007-04-18 16:15:28 -0400656 }
Chris Mason02217ed2007-03-02 16:08:05 -0500657 BUG_ON(ret != 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400658 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400659 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400660 refs = btrfs_extent_refs(l, item);
661 btrfs_set_extent_refs(l, item, refs + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -0400662 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masona28ec192007-03-06 20:08:01 -0500663
Chris Mason5caf2a02007-04-02 11:20:42 -0400664 btrfs_release_path(root->fs_info->extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -0500665
Chris Masonb0331a42008-01-08 15:46:31 -0500666 path->reada = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500667 ret = btrfs_insert_extent_backref(trans, root->fs_info->extent_root,
668 path, bytenr, root_objectid,
669 ref_generation, owner, owner_offset);
670 BUG_ON(ret);
Chris Mason9f5fae22007-03-20 14:38:32 -0400671 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400672 del_pending_extents(trans, root->fs_info->extent_root);
Chris Mason74493f72007-12-11 09:25:06 -0500673
674 btrfs_free_path(path);
Chris Mason02217ed2007-03-02 16:08:05 -0500675 return 0;
676}
677
Chris Masone9d0b132007-08-10 14:06:19 -0400678int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
679 struct btrfs_root *root)
680{
681 finish_current_insert(trans, root->fs_info->extent_root);
682 del_pending_extents(trans, root->fs_info->extent_root);
683 return 0;
684}
685
Chris Masonb18c6682007-04-17 13:26:50 -0400686static int lookup_extent_ref(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -0400687 struct btrfs_root *root, u64 bytenr,
688 u64 num_bytes, u32 *refs)
Chris Masona28ec192007-03-06 20:08:01 -0500689{
Chris Mason5caf2a02007-04-02 11:20:42 -0400690 struct btrfs_path *path;
Chris Masona28ec192007-03-06 20:08:01 -0500691 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400692 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400693 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400694 struct btrfs_extent_item *item;
Chris Mason5caf2a02007-04-02 11:20:42 -0400695
Chris Masondb945352007-10-15 16:15:53 -0400696 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400697 path = btrfs_alloc_path();
Chris Masonb0331a42008-01-08 15:46:31 -0500698 path->reada = 0;
Chris Masondb945352007-10-15 16:15:53 -0400699 key.objectid = bytenr;
700 key.offset = num_bytes;
Chris Mason62e27492007-03-15 12:56:47 -0400701 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5caf2a02007-04-02 11:20:42 -0400702 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400703 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400704 if (ret < 0)
705 goto out;
Chris Mason5f39d392007-10-15 16:14:19 -0400706 if (ret != 0) {
707 btrfs_print_leaf(root, path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400708 printk("failed to find block number %Lu\n", bytenr);
Chris Masona28ec192007-03-06 20:08:01 -0500709 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -0400710 }
711 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400712 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400713 *refs = btrfs_extent_refs(l, item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400714out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400715 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -0500716 return 0;
717}
718
Chris Masonbe20aa92007-12-17 20:14:01 -0500719u32 btrfs_count_snapshots_in_path(struct btrfs_root *root,
720 struct btrfs_path *count_path,
721 u64 first_extent)
722{
723 struct btrfs_root *extent_root = root->fs_info->extent_root;
724 struct btrfs_path *path;
725 u64 bytenr;
726 u64 found_objectid;
Chris Mason56b453c2008-01-03 09:08:27 -0500727 u64 root_objectid = root->root_key.objectid;
Chris Masonbe20aa92007-12-17 20:14:01 -0500728 u32 total_count = 0;
729 u32 cur_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500730 u32 nritems;
731 int ret;
732 struct btrfs_key key;
733 struct btrfs_key found_key;
734 struct extent_buffer *l;
735 struct btrfs_extent_item *item;
736 struct btrfs_extent_ref *ref_item;
737 int level = -1;
738
739 path = btrfs_alloc_path();
740again:
741 if (level == -1)
742 bytenr = first_extent;
743 else
744 bytenr = count_path->nodes[level]->start;
745
746 cur_count = 0;
747 key.objectid = bytenr;
748 key.offset = 0;
749
750 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
751 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
752 if (ret < 0)
753 goto out;
754 BUG_ON(ret == 0);
755
756 l = path->nodes[0];
757 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
758
759 if (found_key.objectid != bytenr ||
760 found_key.type != BTRFS_EXTENT_ITEM_KEY) {
761 goto out;
762 }
763
764 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Masonbe20aa92007-12-17 20:14:01 -0500765 while (1) {
Chris Masonbd098352008-01-03 13:23:19 -0500766 l = path->nodes[0];
Chris Masonbe20aa92007-12-17 20:14:01 -0500767 nritems = btrfs_header_nritems(l);
768 if (path->slots[0] >= nritems) {
769 ret = btrfs_next_leaf(extent_root, path);
770 if (ret == 0)
771 continue;
772 break;
773 }
774 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
775 if (found_key.objectid != bytenr)
776 break;
Chris Masonbd098352008-01-03 13:23:19 -0500777
Chris Masonbe20aa92007-12-17 20:14:01 -0500778 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
779 path->slots[0]++;
780 continue;
781 }
782
783 cur_count++;
784 ref_item = btrfs_item_ptr(l, path->slots[0],
785 struct btrfs_extent_ref);
786 found_objectid = btrfs_ref_root(l, ref_item);
787
Chris Mason56b453c2008-01-03 09:08:27 -0500788 if (found_objectid != root_objectid) {
789 total_count = 2;
Chris Mason4313b392008-01-03 09:08:48 -0500790 goto out;
Chris Mason56b453c2008-01-03 09:08:27 -0500791 }
792 total_count = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500793 path->slots[0]++;
794 }
795 if (cur_count == 0) {
796 total_count = 0;
797 goto out;
798 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500799 if (level >= 0 && root->node == count_path->nodes[level])
800 goto out;
801 level++;
802 btrfs_release_path(root, path);
803 goto again;
804
805out:
806 btrfs_free_path(path);
807 return total_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500808}
Chris Masonc5739bb2007-04-10 09:27:04 -0400809int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -0500810 struct btrfs_root *root, u64 owner_objectid)
Chris Masonc5739bb2007-04-10 09:27:04 -0400811{
Chris Mason7bb86312007-12-11 09:25:06 -0500812 u64 generation;
813 u64 key_objectid;
814 u64 level;
815 u32 nritems;
816 struct btrfs_disk_key disk_key;
817
818 level = btrfs_header_level(root->node);
819 generation = trans->transid;
820 nritems = btrfs_header_nritems(root->node);
821 if (nritems > 0) {
822 if (level == 0)
823 btrfs_item_key(root->node, &disk_key, 0);
824 else
825 btrfs_node_key(root->node, &disk_key, 0);
826 key_objectid = btrfs_disk_key_objectid(&disk_key);
827 } else {
828 key_objectid = 0;
829 }
Chris Masondb945352007-10-15 16:15:53 -0400830 return btrfs_inc_extent_ref(trans, root, root->node->start,
Chris Mason7bb86312007-12-11 09:25:06 -0500831 root->node->len, owner_objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500832 generation, level, key_objectid);
Chris Masonc5739bb2007-04-10 09:27:04 -0400833}
834
Chris Masone089f052007-03-16 16:20:31 -0400835int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400836 struct extent_buffer *buf)
Chris Mason02217ed2007-03-02 16:08:05 -0500837{
Chris Masondb945352007-10-15 16:15:53 -0400838 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400839 u32 nritems;
840 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -0400841 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -0500842 int i;
Chris Masondb945352007-10-15 16:15:53 -0400843 int level;
Chris Mason6407bf62007-03-27 06:33:00 -0400844 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400845 int faili;
Chris Masona28ec192007-03-06 20:08:01 -0500846
Chris Mason3768f362007-03-13 16:47:54 -0400847 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500848 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400849
Chris Masondb945352007-10-15 16:15:53 -0400850 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400851 nritems = btrfs_header_nritems(buf);
852 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400853 if (level == 0) {
854 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400855 btrfs_item_key_to_cpu(buf, &key, i);
856 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -0400857 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400858 fi = btrfs_item_ptr(buf, i,
Chris Mason6407bf62007-03-27 06:33:00 -0400859 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400860 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason236454d2007-04-19 13:37:44 -0400861 BTRFS_FILE_EXTENT_INLINE)
862 continue;
Chris Masondb945352007-10-15 16:15:53 -0400863 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
864 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -0400865 continue;
Chris Masondb945352007-10-15 16:15:53 -0400866 ret = btrfs_inc_extent_ref(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500867 btrfs_file_extent_disk_num_bytes(buf, fi),
868 root->root_key.objectid, trans->transid,
869 key.objectid, key.offset);
Chris Mason54aa1f42007-06-22 14:16:25 -0400870 if (ret) {
871 faili = i;
872 goto fail;
873 }
Chris Mason6407bf62007-03-27 06:33:00 -0400874 } else {
Chris Masondb945352007-10-15 16:15:53 -0400875 bytenr = btrfs_node_blockptr(buf, i);
Chris Mason6caab482007-12-13 09:48:07 -0500876 btrfs_node_key_to_cpu(buf, &key, i);
Chris Masondb945352007-10-15 16:15:53 -0400877 ret = btrfs_inc_extent_ref(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500878 btrfs_level_size(root, level - 1),
879 root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500880 trans->transid,
881 level - 1, key.objectid);
Chris Mason54aa1f42007-06-22 14:16:25 -0400882 if (ret) {
883 faili = i;
884 goto fail;
885 }
Chris Mason6407bf62007-03-27 06:33:00 -0400886 }
Chris Mason02217ed2007-03-02 16:08:05 -0500887 }
888 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400889fail:
Chris Masonccd467d2007-06-28 15:57:36 -0400890 WARN_ON(1);
Chris Mason7bb86312007-12-11 09:25:06 -0500891#if 0
Chris Mason54aa1f42007-06-22 14:16:25 -0400892 for (i =0; i < faili; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400893 if (level == 0) {
894 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400895 btrfs_item_key_to_cpu(buf, &key, i);
896 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -0400897 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400898 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -0400899 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400900 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -0400901 BTRFS_FILE_EXTENT_INLINE)
902 continue;
Chris Masondb945352007-10-15 16:15:53 -0400903 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
904 if (disk_bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -0400905 continue;
Chris Masondb945352007-10-15 16:15:53 -0400906 err = btrfs_free_extent(trans, root, disk_bytenr,
907 btrfs_file_extent_disk_num_bytes(buf,
Chris Mason5f39d392007-10-15 16:14:19 -0400908 fi), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400909 BUG_ON(err);
910 } else {
Chris Masondb945352007-10-15 16:15:53 -0400911 bytenr = btrfs_node_blockptr(buf, i);
912 err = btrfs_free_extent(trans, root, bytenr,
913 btrfs_level_size(root, level - 1), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400914 BUG_ON(err);
915 }
916 }
Chris Mason7bb86312007-12-11 09:25:06 -0500917#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400918 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -0500919}
920
Chris Mason9078a3e2007-04-26 16:46:15 -0400921static int write_one_cache_group(struct btrfs_trans_handle *trans,
922 struct btrfs_root *root,
923 struct btrfs_path *path,
924 struct btrfs_block_group_cache *cache)
925{
926 int ret;
927 int pending_ret;
928 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400929 unsigned long bi;
930 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -0400931
Chris Mason9078a3e2007-04-26 16:46:15 -0400932 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400933 if (ret < 0)
934 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -0400935 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400936
937 leaf = path->nodes[0];
938 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
939 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
940 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -0400941 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400942fail:
Chris Mason9078a3e2007-04-26 16:46:15 -0400943 finish_current_insert(trans, extent_root);
944 pending_ret = del_pending_extents(trans, extent_root);
945 if (ret)
946 return ret;
947 if (pending_ret)
948 return pending_ret;
949 return 0;
950
951}
952
Chris Mason96b51792007-10-15 16:15:19 -0400953int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
954 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -0400955{
Chris Masond1310b22008-01-24 16:13:08 -0500956 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -0400957 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400958 int ret;
959 int err = 0;
960 int werr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -0400961 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -0400962 u64 last = 0;
963 u64 start;
964 u64 end;
965 u64 ptr;
Chris Mason9078a3e2007-04-26 16:46:15 -0400966
Chris Mason96b51792007-10-15 16:15:19 -0400967 block_group_cache = &root->fs_info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400968 path = btrfs_alloc_path();
969 if (!path)
970 return -ENOMEM;
971
972 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400973 ret = find_first_extent_bit(block_group_cache, last,
974 &start, &end, BLOCK_GROUP_DIRTY);
975 if (ret)
Chris Mason9078a3e2007-04-26 16:46:15 -0400976 break;
Chris Mason54aa1f42007-06-22 14:16:25 -0400977
Chris Mason96b51792007-10-15 16:15:19 -0400978 last = end + 1;
979 ret = get_state_private(block_group_cache, start, &ptr);
980 if (ret)
981 break;
982
Jens Axboeae2f5412007-10-19 09:22:59 -0400983 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400984 err = write_one_cache_group(trans, root,
985 path, cache);
986 /*
987 * if we fail to write the cache group, we want
988 * to keep it marked dirty in hopes that a later
989 * write will work
990 */
991 if (err) {
992 werr = err;
993 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -0400994 }
Chris Mason96b51792007-10-15 16:15:19 -0400995 clear_extent_bits(block_group_cache, start, end,
996 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -0400997 }
998 btrfs_free_path(path);
999 return werr;
1000}
1001
Chris Mason6324fbf2008-03-24 15:01:59 -04001002static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
1003 u64 flags)
1004{
1005 struct list_head *head = &info->space_info;
1006 struct list_head *cur;
1007 struct btrfs_space_info *found;
1008 list_for_each(cur, head) {
1009 found = list_entry(cur, struct btrfs_space_info, list);
1010 if (found->flags == flags)
1011 return found;
1012 }
1013 return NULL;
1014
1015}
1016
1017static int do_chunk_alloc(struct btrfs_trans_handle *trans,
1018 struct btrfs_root *extent_root, u64 alloc_bytes,
1019 u64 flags)
1020{
1021 struct btrfs_space_info *space_info;
1022 u64 thresh;
1023 u64 start;
1024 u64 num_bytes;
1025 int ret;
1026
1027 space_info = __find_space_info(extent_root->fs_info, flags);
1028 BUG_ON(!space_info);
1029
1030 if (space_info->full)
1031 return 0;
1032
1033 thresh = div_factor(space_info->total_bytes, 7);
1034 if ((space_info->bytes_used + space_info->bytes_pinned + alloc_bytes) <
1035 thresh)
1036 return 0;
1037
1038 ret = btrfs_alloc_chunk(trans, extent_root, &start, &num_bytes, flags);
1039 if (ret == -ENOSPC) {
1040printk("space info full %Lu\n", flags);
1041 space_info->full = 1;
1042 return 0;
1043 }
1044
1045 BUG_ON(ret);
1046
1047 ret = btrfs_make_block_group(trans, extent_root, 0, flags,
1048 extent_root->fs_info->chunk_root->root_key.objectid,
1049 start, num_bytes);
1050 BUG_ON(ret);
1051 return 0;
1052}
1053
Chris Mason9078a3e2007-04-26 16:46:15 -04001054static int update_block_group(struct btrfs_trans_handle *trans,
1055 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -04001056 u64 bytenr, u64 num_bytes, int alloc,
Chris Mason0b86a832008-03-24 15:01:56 -04001057 int mark_free)
Chris Mason9078a3e2007-04-26 16:46:15 -04001058{
1059 struct btrfs_block_group_cache *cache;
1060 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001061 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001062 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04001063 u64 byte_in_group;
Chris Mason96b51792007-10-15 16:15:19 -04001064 u64 start;
1065 u64 end;
Chris Mason3e1ad542007-05-07 20:03:49 -04001066
Chris Mason9078a3e2007-04-26 16:46:15 -04001067 while(total) {
Chris Masondb945352007-10-15 16:15:53 -04001068 cache = btrfs_lookup_block_group(info, bytenr);
Chris Mason3e1ad542007-05-07 20:03:49 -04001069 if (!cache) {
Chris Mason9078a3e2007-04-26 16:46:15 -04001070 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -04001071 }
Chris Masondb945352007-10-15 16:15:53 -04001072 byte_in_group = bytenr - cache->key.objectid;
1073 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason96b51792007-10-15 16:15:19 -04001074 start = cache->key.objectid;
1075 end = start + cache->key.offset - 1;
1076 set_extent_bits(&info->block_group_cache, start, end,
1077 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001078
1079 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04001080 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04001081 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04001082 old_val += num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001083 cache->space_info->bytes_used += num_bytes;
Chris Masoncd1bc462007-04-27 10:08:34 -04001084 } else {
Chris Masondb945352007-10-15 16:15:53 -04001085 old_val -= num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001086 cache->space_info->bytes_used -= num_bytes;
Chris Masonf510cfe2007-10-15 16:14:48 -04001087 if (mark_free) {
1088 set_extent_dirty(&info->free_space_cache,
Chris Masondb945352007-10-15 16:15:53 -04001089 bytenr, bytenr + num_bytes - 1,
Chris Masonf510cfe2007-10-15 16:14:48 -04001090 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04001091 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001092 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001093 btrfs_set_block_group_used(&cache->item, old_val);
Chris Masondb945352007-10-15 16:15:53 -04001094 total -= num_bytes;
1095 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001096 }
1097 return 0;
1098}
Chris Mason6324fbf2008-03-24 15:01:59 -04001099
Yan324ae4d2007-11-16 14:57:08 -05001100static int update_pinned_extents(struct btrfs_root *root,
1101 u64 bytenr, u64 num, int pin)
1102{
1103 u64 len;
1104 struct btrfs_block_group_cache *cache;
1105 struct btrfs_fs_info *fs_info = root->fs_info;
1106
1107 if (pin) {
1108 set_extent_dirty(&fs_info->pinned_extents,
1109 bytenr, bytenr + num - 1, GFP_NOFS);
1110 } else {
1111 clear_extent_dirty(&fs_info->pinned_extents,
1112 bytenr, bytenr + num - 1, GFP_NOFS);
1113 }
1114 while (num > 0) {
1115 cache = btrfs_lookup_block_group(fs_info, bytenr);
1116 WARN_ON(!cache);
1117 len = min(num, cache->key.offset -
1118 (bytenr - cache->key.objectid));
1119 if (pin) {
1120 cache->pinned += len;
Chris Mason6324fbf2008-03-24 15:01:59 -04001121 cache->space_info->bytes_pinned += len;
Yan324ae4d2007-11-16 14:57:08 -05001122 fs_info->total_pinned += len;
1123 } else {
1124 cache->pinned -= len;
Chris Mason6324fbf2008-03-24 15:01:59 -04001125 cache->space_info->bytes_pinned -= len;
Yan324ae4d2007-11-16 14:57:08 -05001126 fs_info->total_pinned -= len;
1127 }
1128 bytenr += len;
1129 num -= len;
1130 }
1131 return 0;
1132}
Chris Mason9078a3e2007-04-26 16:46:15 -04001133
Chris Masond1310b22008-01-24 16:13:08 -05001134int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy)
Chris Masonccd467d2007-06-28 15:57:36 -04001135{
Chris Masonccd467d2007-06-28 15:57:36 -04001136 u64 last = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001137 u64 start;
1138 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001139 struct extent_io_tree *pinned_extents = &root->fs_info->pinned_extents;
Chris Masonccd467d2007-06-28 15:57:36 -04001140 int ret;
Chris Masonccd467d2007-06-28 15:57:36 -04001141
1142 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001143 ret = find_first_extent_bit(pinned_extents, last,
1144 &start, &end, EXTENT_DIRTY);
1145 if (ret)
Chris Masonccd467d2007-06-28 15:57:36 -04001146 break;
Chris Mason1a5bc162007-10-15 16:15:26 -04001147 set_extent_dirty(copy, start, end, GFP_NOFS);
1148 last = end + 1;
Chris Masonccd467d2007-06-28 15:57:36 -04001149 }
1150 return 0;
1151}
1152
1153int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1154 struct btrfs_root *root,
Chris Masond1310b22008-01-24 16:13:08 -05001155 struct extent_io_tree *unpin)
Chris Masona28ec192007-03-06 20:08:01 -05001156{
Chris Mason1a5bc162007-10-15 16:15:26 -04001157 u64 start;
1158 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05001159 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001160 struct extent_io_tree *free_space_cache;
Chris Masonf510cfe2007-10-15 16:14:48 -04001161 free_space_cache = &root->fs_info->free_space_cache;
Chris Masona28ec192007-03-06 20:08:01 -05001162
1163 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001164 ret = find_first_extent_bit(unpin, 0, &start, &end,
1165 EXTENT_DIRTY);
1166 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05001167 break;
Yan324ae4d2007-11-16 14:57:08 -05001168 update_pinned_extents(root, start, end + 1 - start, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001169 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1170 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
Chris Masona28ec192007-03-06 20:08:01 -05001171 }
1172 return 0;
1173}
1174
Chris Mason98ed5172008-01-03 10:01:48 -05001175static int finish_current_insert(struct btrfs_trans_handle *trans,
1176 struct btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -05001177{
Chris Mason7bb86312007-12-11 09:25:06 -05001178 u64 start;
1179 u64 end;
1180 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001181 struct extent_buffer *eb;
Chris Mason7bb86312007-12-11 09:25:06 -05001182 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001183 struct btrfs_key ins;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001184 struct btrfs_disk_key first;
Chris Mason234b63a2007-03-13 10:46:10 -04001185 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -05001186 int ret;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001187 int level;
Chris Mason1a5bc162007-10-15 16:15:26 -04001188 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001189
Chris Mason5f39d392007-10-15 16:14:19 -04001190 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason62e27492007-03-15 12:56:47 -04001191 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason7bb86312007-12-11 09:25:06 -05001192 path = btrfs_alloc_path();
Chris Mason037e6392007-03-07 11:50:24 -05001193
Chris Mason26b80032007-08-08 20:17:12 -04001194 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001195 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1196 &end, EXTENT_LOCKED);
1197 if (ret)
Chris Mason26b80032007-08-08 20:17:12 -04001198 break;
1199
Chris Mason1a5bc162007-10-15 16:15:26 -04001200 ins.objectid = start;
1201 ins.offset = end + 1 - start;
1202 err = btrfs_insert_item(trans, extent_root, &ins,
1203 &extent_item, sizeof(extent_item));
1204 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1205 GFP_NOFS);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001206 eb = read_tree_block(extent_root, ins.objectid, ins.offset);
1207 level = btrfs_header_level(eb);
1208 if (level == 0) {
1209 btrfs_item_key(eb, &first, 0);
1210 } else {
1211 btrfs_node_key(eb, &first, 0);
1212 }
Chris Mason7bb86312007-12-11 09:25:06 -05001213 err = btrfs_insert_extent_backref(trans, extent_root, path,
1214 start, extent_root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -05001215 0, level,
1216 btrfs_disk_key_objectid(&first));
Chris Mason7bb86312007-12-11 09:25:06 -05001217 BUG_ON(err);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001218 free_extent_buffer(eb);
Chris Mason037e6392007-03-07 11:50:24 -05001219 }
Chris Mason7bb86312007-12-11 09:25:06 -05001220 btrfs_free_path(path);
Chris Mason037e6392007-03-07 11:50:24 -05001221 return 0;
1222}
1223
Chris Masondb945352007-10-15 16:15:53 -04001224static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
1225 int pending)
Chris Masone20d96d2007-03-22 12:13:20 -04001226{
Chris Mason1a5bc162007-10-15 16:15:26 -04001227 int err = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001228 struct extent_buffer *buf;
Chris Mason78fae272007-03-25 11:35:08 -04001229
Chris Masonf4b9aa82007-03-27 11:05:53 -04001230 if (!pending) {
Chris Masondb945352007-10-15 16:15:53 -04001231 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -04001232 if (buf) {
1233 if (btrfs_buffer_uptodate(buf)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -04001234 u64 transid =
1235 root->fs_info->running_transaction->transid;
Chris Masondc17ff82008-01-08 15:46:30 -05001236 u64 header_transid =
1237 btrfs_header_generation(buf);
1238 if (header_transid == transid) {
Chris Mason55c69072008-01-09 15:55:33 -05001239 clean_tree_block(NULL, root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001240 free_extent_buffer(buf);
Yanc5492282007-11-06 10:25:25 -05001241 return 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001242 }
Chris Masonf4b9aa82007-03-27 11:05:53 -04001243 }
Chris Mason5f39d392007-10-15 16:14:19 -04001244 free_extent_buffer(buf);
Chris Mason8ef97622007-03-26 10:15:30 -04001245 }
Yan324ae4d2007-11-16 14:57:08 -05001246 update_pinned_extents(root, bytenr, num_bytes, 1);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001247 } else {
Chris Mason1a5bc162007-10-15 16:15:26 -04001248 set_extent_bits(&root->fs_info->pending_del,
Chris Masondb945352007-10-15 16:15:53 -04001249 bytenr, bytenr + num_bytes - 1,
1250 EXTENT_LOCKED, GFP_NOFS);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001251 }
Chris Masonbe744172007-05-06 10:15:01 -04001252 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001253 return 0;
1254}
1255
Chris Masona28ec192007-03-06 20:08:01 -05001256/*
1257 * remove an extent from the root, returns 0 on success
1258 */
Chris Masone089f052007-03-16 16:20:31 -04001259static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001260 *root, u64 bytenr, u64 num_bytes,
1261 u64 root_objectid, u64 ref_generation,
1262 u64 owner_objectid, u64 owner_offset, int pin,
Chris Masone37c9e62007-05-09 20:13:14 -04001263 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -05001264{
Chris Mason5caf2a02007-04-02 11:20:42 -04001265 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001266 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -04001267 struct btrfs_fs_info *info = root->fs_info;
1268 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001269 struct extent_buffer *leaf;
Chris Masona28ec192007-03-06 20:08:01 -05001270 int ret;
Chris Mason952fcca2008-02-18 16:33:44 -05001271 int extent_slot = 0;
1272 int found_extent = 0;
1273 int num_to_del = 1;
Chris Mason234b63a2007-03-13 10:46:10 -04001274 struct btrfs_extent_item *ei;
Chris Masoncf27e1e2007-03-13 09:49:06 -04001275 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -05001276
Chris Masondb945352007-10-15 16:15:53 -04001277 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -04001278 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -04001279 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001280 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001281 if (!path)
1282 return -ENOMEM;
1283
Chris Masonb0331a42008-01-08 15:46:31 -05001284 path->reada = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001285 ret = lookup_extent_backref(trans, extent_root, path,
1286 bytenr, root_objectid,
1287 ref_generation,
1288 owner_objectid, owner_offset, 1);
1289 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05001290 struct btrfs_key found_key;
1291 extent_slot = path->slots[0];
1292 while(extent_slot > 0) {
1293 extent_slot--;
1294 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1295 extent_slot);
1296 if (found_key.objectid != bytenr)
1297 break;
1298 if (found_key.type == BTRFS_EXTENT_ITEM_KEY &&
1299 found_key.offset == num_bytes) {
1300 found_extent = 1;
1301 break;
1302 }
1303 if (path->slots[0] - extent_slot > 5)
1304 break;
1305 }
1306 if (!found_extent)
1307 ret = btrfs_del_item(trans, extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -05001308 } else {
1309 btrfs_print_leaf(extent_root, path->nodes[0]);
1310 WARN_ON(1);
1311 printk("Unable to find ref byte nr %Lu root %Lu "
1312 " gen %Lu owner %Lu offset %Lu\n", bytenr,
1313 root_objectid, ref_generation, owner_objectid,
1314 owner_offset);
1315 }
Chris Mason952fcca2008-02-18 16:33:44 -05001316 if (!found_extent) {
1317 btrfs_release_path(extent_root, path);
1318 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
1319 if (ret < 0)
1320 return ret;
1321 BUG_ON(ret);
1322 extent_slot = path->slots[0];
1323 }
Chris Mason5f39d392007-10-15 16:14:19 -04001324
1325 leaf = path->nodes[0];
Chris Mason952fcca2008-02-18 16:33:44 -05001326 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04001327 struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001328 refs = btrfs_extent_refs(leaf, ei);
1329 BUG_ON(refs == 0);
1330 refs -= 1;
1331 btrfs_set_extent_refs(leaf, ei, refs);
Chris Mason952fcca2008-02-18 16:33:44 -05001332
Chris Mason5f39d392007-10-15 16:14:19 -04001333 btrfs_mark_buffer_dirty(leaf);
1334
Chris Mason952fcca2008-02-18 16:33:44 -05001335 if (refs == 0 && found_extent && path->slots[0] == extent_slot + 1) {
1336 /* if the back ref and the extent are next to each other
1337 * they get deleted below in one shot
1338 */
1339 path->slots[0] = extent_slot;
1340 num_to_del = 2;
1341 } else if (found_extent) {
1342 /* otherwise delete the extent back ref */
1343 ret = btrfs_del_item(trans, extent_root, path);
1344 BUG_ON(ret);
1345 /* if refs are 0, we need to setup the path for deletion */
1346 if (refs == 0) {
1347 btrfs_release_path(extent_root, path);
1348 ret = btrfs_search_slot(trans, extent_root, &key, path,
1349 -1, 1);
1350 if (ret < 0)
1351 return ret;
1352 BUG_ON(ret);
1353 }
1354 }
1355
Chris Masoncf27e1e2007-03-13 09:49:06 -04001356 if (refs == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001357 u64 super_used;
1358 u64 root_used;
Chris Mason78fae272007-03-25 11:35:08 -04001359
1360 if (pin) {
Chris Masondb945352007-10-15 16:15:53 -04001361 ret = pin_down_bytes(root, bytenr, num_bytes, 0);
Yanc5492282007-11-06 10:25:25 -05001362 if (ret > 0)
1363 mark_free = 1;
1364 BUG_ON(ret < 0);
Chris Mason78fae272007-03-25 11:35:08 -04001365 }
1366
Josef Bacik58176a92007-08-29 15:47:34 -04001367 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001368 super_used = btrfs_super_bytes_used(&info->super_copy);
1369 btrfs_set_super_bytes_used(&info->super_copy,
1370 super_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001371
1372 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001373 root_used = btrfs_root_used(&root->root_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001374 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -04001375 root_used - num_bytes);
Chris Mason952fcca2008-02-18 16:33:44 -05001376 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
1377 num_to_del);
Chris Mason54aa1f42007-06-22 14:16:25 -04001378 if (ret) {
1379 return ret;
1380 }
Chris Masondb945352007-10-15 16:15:53 -04001381 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001382 mark_free);
Chris Mason9078a3e2007-04-26 16:46:15 -04001383 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05001384 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001385 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001386 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -05001387 return ret;
1388}
1389
1390/*
Chris Masonfec577f2007-02-26 10:40:21 -05001391 * find all the blocks marked as pending in the radix tree and remove
1392 * them from the extent map
1393 */
Chris Masone089f052007-03-16 16:20:31 -04001394static int del_pending_extents(struct btrfs_trans_handle *trans, struct
1395 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -05001396{
1397 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001398 int err = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001399 u64 start;
1400 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001401 struct extent_io_tree *pending_del;
1402 struct extent_io_tree *pinned_extents;
Chris Mason8ef97622007-03-26 10:15:30 -04001403
Chris Mason1a5bc162007-10-15 16:15:26 -04001404 pending_del = &extent_root->fs_info->pending_del;
1405 pinned_extents = &extent_root->fs_info->pinned_extents;
Chris Masonfec577f2007-02-26 10:40:21 -05001406
1407 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001408 ret = find_first_extent_bit(pending_del, 0, &start, &end,
1409 EXTENT_LOCKED);
1410 if (ret)
Chris Masonfec577f2007-02-26 10:40:21 -05001411 break;
Yan324ae4d2007-11-16 14:57:08 -05001412 update_pinned_extents(extent_root, start, end + 1 - start, 1);
Chris Mason1a5bc162007-10-15 16:15:26 -04001413 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
1414 GFP_NOFS);
1415 ret = __free_extent(trans, extent_root,
Chris Mason7bb86312007-12-11 09:25:06 -05001416 start, end + 1 - start,
1417 extent_root->root_key.objectid,
1418 0, 0, 0, 0, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001419 if (ret)
1420 err = ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001421 }
Chris Masone20d96d2007-03-22 12:13:20 -04001422 return err;
Chris Masonfec577f2007-02-26 10:40:21 -05001423}
1424
1425/*
1426 * remove an extent from the root, returns 0 on success
1427 */
Chris Masone089f052007-03-16 16:20:31 -04001428int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001429 *root, u64 bytenr, u64 num_bytes,
1430 u64 root_objectid, u64 ref_generation,
1431 u64 owner_objectid, u64 owner_offset, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -05001432{
Chris Mason9f5fae22007-03-20 14:38:32 -04001433 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -05001434 int pending_ret;
1435 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05001436
Chris Masondb945352007-10-15 16:15:53 -04001437 WARN_ON(num_bytes < root->sectorsize);
Chris Mason7bb86312007-12-11 09:25:06 -05001438 if (!root->ref_cows)
1439 ref_generation = 0;
1440
Chris Masona28ec192007-03-06 20:08:01 -05001441 if (root == extent_root) {
Chris Masondb945352007-10-15 16:15:53 -04001442 pin_down_bytes(root, bytenr, num_bytes, 1);
Chris Masona28ec192007-03-06 20:08:01 -05001443 return 0;
1444 }
Chris Mason7bb86312007-12-11 09:25:06 -05001445 ret = __free_extent(trans, root, bytenr, num_bytes, root_objectid,
1446 ref_generation, owner_objectid, owner_offset,
1447 pin, pin == 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001448 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -05001449 return ret ? ret : pending_ret;
1450}
1451
Chris Mason87ee04e2007-11-30 11:30:34 -05001452static u64 stripe_align(struct btrfs_root *root, u64 val)
1453{
1454 u64 mask = ((u64)root->stripesize - 1);
1455 u64 ret = (val + mask) & ~mask;
1456 return ret;
1457}
1458
Chris Masonfec577f2007-02-26 10:40:21 -05001459/*
1460 * walks the btree of allocated extents and find a hole of a given size.
1461 * The key ins is changed to record the hole:
1462 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04001463 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05001464 * ins->offset == number of blocks
1465 * Any available blocks before search_start are skipped.
1466 */
Chris Mason98ed5172008-01-03 10:01:48 -05001467static int noinline find_free_extent(struct btrfs_trans_handle *trans,
1468 struct btrfs_root *orig_root,
1469 u64 num_bytes, u64 empty_size,
1470 u64 search_start, u64 search_end,
1471 u64 hint_byte, struct btrfs_key *ins,
1472 u64 exclude_start, u64 exclude_nr,
1473 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001474{
Chris Mason87ee04e2007-11-30 11:30:34 -05001475 int ret;
Chris Masonbe744172007-05-06 10:15:01 -04001476 u64 orig_search_start = search_start;
Chris Mason9f5fae22007-03-20 14:38:32 -04001477 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -04001478 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001479 u64 total_needed = num_bytes;
Chris Masonbe08c1b2007-05-03 09:06:49 -04001480 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -04001481 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -04001482 int wrapped = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001483
Chris Masondb945352007-10-15 16:15:53 -04001484 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04001485 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
1486
Chris Mason7f93bf82008-03-24 15:01:28 -04001487 if (search_end == (u64)-1)
1488 search_end = btrfs_super_total_bytes(&info->super_copy);
Chris Mason0b86a832008-03-24 15:01:56 -04001489
Chris Masondb945352007-10-15 16:15:53 -04001490 if (hint_byte) {
1491 block_group = btrfs_lookup_block_group(info, hint_byte);
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001492 if (!block_group)
1493 hint_byte = search_start;
Chris Masonbe744172007-05-06 10:15:01 -04001494 block_group = btrfs_find_block_group(root, block_group,
Chris Masondb945352007-10-15 16:15:53 -04001495 hint_byte, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001496 } else {
1497 block_group = btrfs_find_block_group(root,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001498 trans->block_group,
1499 search_start, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001500 }
1501
Chris Mason6702ed42007-08-07 16:15:09 -04001502 total_needed += empty_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001503
Chris Masonbe744172007-05-06 10:15:01 -04001504check_failed:
Chris Mason70b043f2007-12-13 09:02:46 -05001505 if (!block_group) {
1506 block_group = btrfs_lookup_block_group(info, search_start);
1507 if (!block_group)
1508 block_group = btrfs_lookup_block_group(info,
1509 orig_search_start);
1510 }
Chris Mason0b86a832008-03-24 15:01:56 -04001511 ret = find_search_start(root, &block_group, &search_start,
1512 total_needed, data);
1513 if (ret)
1514 goto error;
1515
Chris Mason87ee04e2007-11-30 11:30:34 -05001516 search_start = stripe_align(root, search_start);
Chris Masonfec577f2007-02-26 10:40:21 -05001517 ins->objectid = search_start;
Chris Mason0b86a832008-03-24 15:01:56 -04001518 ins->offset = num_bytes;
Chris Masone37c9e62007-05-09 20:13:14 -04001519
Chris Masondb945352007-10-15 16:15:53 -04001520 if (ins->objectid + num_bytes >= search_end)
Chris Masoncf675822007-09-17 11:00:51 -04001521 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001522
1523 if (ins->objectid + num_bytes >
1524 block_group->key.objectid + block_group->key.offset) {
Chris Masone19caa52007-10-15 16:17:44 -04001525 search_start = block_group->key.objectid +
1526 block_group->key.offset;
1527 goto new_group;
1528 }
Chris Mason0b86a832008-03-24 15:01:56 -04001529
Chris Mason1a5bc162007-10-15 16:15:26 -04001530 if (test_range_bit(&info->extent_ins, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001531 ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
1532 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001533 goto new_group;
1534 }
Chris Mason0b86a832008-03-24 15:01:56 -04001535
Chris Mason1a5bc162007-10-15 16:15:26 -04001536 if (test_range_bit(&info->pinned_extents, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001537 ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
1538 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001539 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05001540 }
Chris Mason0b86a832008-03-24 15:01:56 -04001541
Chris Masondb945352007-10-15 16:15:53 -04001542 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
Chris Masonf2654de2007-06-26 12:20:46 -04001543 ins->objectid < exclude_start + exclude_nr)) {
1544 search_start = exclude_start + exclude_nr;
1545 goto new_group;
1546 }
Chris Mason0b86a832008-03-24 15:01:56 -04001547
Chris Mason6324fbf2008-03-24 15:01:59 -04001548 if (!(data & BTRFS_BLOCK_GROUP_DATA)) {
Chris Mason5276aed2007-06-11 21:33:38 -04001549 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Mason26b80032007-08-08 20:17:12 -04001550 if (block_group)
1551 trans->block_group = block_group;
Chris Masoncd1bc462007-04-27 10:08:34 -04001552 }
Chris Masondb945352007-10-15 16:15:53 -04001553 ins->offset = num_bytes;
Chris Masonfec577f2007-02-26 10:40:21 -05001554 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04001555
1556new_group:
Chris Masondb945352007-10-15 16:15:53 -04001557 if (search_start + num_bytes >= search_end) {
Chris Masoncf675822007-09-17 11:00:51 -04001558enospc:
Chris Masonbe744172007-05-06 10:15:01 -04001559 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04001560 if (full_scan) {
1561 ret = -ENOSPC;
1562 goto error;
1563 }
Chris Mason6702ed42007-08-07 16:15:09 -04001564 if (wrapped) {
1565 if (!full_scan)
1566 total_needed -= empty_size;
Chris Masonfbdc7622007-05-30 10:22:12 -04001567 full_scan = 1;
Chris Mason6702ed42007-08-07 16:15:09 -04001568 } else
Chris Masonfbdc7622007-05-30 10:22:12 -04001569 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04001570 }
Chris Mason5276aed2007-06-11 21:33:38 -04001571 block_group = btrfs_lookup_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04001572 cond_resched();
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001573 block_group = btrfs_find_block_group(root, block_group,
1574 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04001575 goto check_failed;
1576
Chris Mason0f70abe2007-02-28 16:46:22 -05001577error:
Chris Mason0f70abe2007-02-28 16:46:22 -05001578 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001579}
Chris Masonfec577f2007-02-26 10:40:21 -05001580/*
Chris Masonfec577f2007-02-26 10:40:21 -05001581 * finds a free extent and does all the dirty work required for allocation
1582 * returns the key for the extent through ins, and a tree buffer for
1583 * the first block of the extent through buf.
1584 *
1585 * returns 0 if everything worked, non-zero otherwise.
1586 */
Chris Mason4d775672007-04-20 20:23:12 -04001587int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -05001588 struct btrfs_root *root,
1589 u64 num_bytes, u64 root_objectid, u64 ref_generation,
1590 u64 owner, u64 owner_offset,
1591 u64 empty_size, u64 hint_byte,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001592 u64 search_end, struct btrfs_key *ins, int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001593{
1594 int ret;
1595 int pending_ret;
Chris Masonc31f8832008-01-08 15:46:31 -05001596 u64 super_used;
1597 u64 root_used;
Chris Masonfbdc7622007-05-30 10:22:12 -04001598 u64 search_start = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05001599 u64 new_hint;
Chris Mason47e4bb92008-02-01 14:51:59 -05001600 u32 sizes[2];
Chris Mason1261ec42007-03-20 20:35:03 -04001601 struct btrfs_fs_info *info = root->fs_info;
1602 struct btrfs_root *extent_root = info->extent_root;
Chris Mason47e4bb92008-02-01 14:51:59 -05001603 struct btrfs_extent_item *extent_item;
1604 struct btrfs_extent_ref *ref;
Chris Mason7bb86312007-12-11 09:25:06 -05001605 struct btrfs_path *path;
Chris Mason47e4bb92008-02-01 14:51:59 -05001606 struct btrfs_key keys[2];
Chris Mason8f662a72008-01-02 10:01:11 -05001607
Chris Mason6324fbf2008-03-24 15:01:59 -04001608 if (data) {
1609 data = BTRFS_BLOCK_GROUP_DATA;
1610 } else if (root == root->fs_info->chunk_root) {
1611 data = BTRFS_BLOCK_GROUP_SYSTEM;
1612 } else {
1613 data = BTRFS_BLOCK_GROUP_METADATA;
1614 }
1615
1616 if (root->ref_cows) {
1617 if (data != BTRFS_BLOCK_GROUP_METADATA) {
1618 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
1619 num_bytes,
1620 BTRFS_BLOCK_GROUP_METADATA);
1621 BUG_ON(ret);
1622 }
1623 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
1624 num_bytes, data);
1625 BUG_ON(ret);
1626 }
Chris Mason0b86a832008-03-24 15:01:56 -04001627
Chris Mason8f662a72008-01-02 10:01:11 -05001628 new_hint = max(hint_byte, root->fs_info->alloc_start);
Chris Masonedbd8d42007-12-21 16:27:24 -05001629 if (new_hint < btrfs_super_total_bytes(&info->super_copy))
1630 hint_byte = new_hint;
Chris Mason8f662a72008-01-02 10:01:11 -05001631
Chris Masondb945352007-10-15 16:15:53 -04001632 WARN_ON(num_bytes < root->sectorsize);
1633 ret = find_free_extent(trans, root, num_bytes, empty_size,
1634 search_start, search_end, hint_byte, ins,
Chris Mason26b80032007-08-08 20:17:12 -04001635 trans->alloc_exclude_start,
1636 trans->alloc_exclude_nr, data);
Chris Masonccd467d2007-06-28 15:57:36 -04001637 BUG_ON(ret);
Chris Masonf2654de2007-06-26 12:20:46 -04001638 if (ret)
1639 return ret;
1640
Josef Bacik58176a92007-08-29 15:47:34 -04001641 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001642 super_used = btrfs_super_bytes_used(&info->super_copy);
1643 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
Chris Mason26b80032007-08-08 20:17:12 -04001644
Josef Bacik58176a92007-08-29 15:47:34 -04001645 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001646 root_used = btrfs_root_used(&root->root_item);
1647 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001648
Chris Masonf510cfe2007-10-15 16:14:48 -04001649 clear_extent_dirty(&root->fs_info->free_space_cache,
1650 ins->objectid, ins->objectid + ins->offset - 1,
1651 GFP_NOFS);
1652
Chris Mason26b80032007-08-08 20:17:12 -04001653 if (root == extent_root) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001654 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
1655 ins->objectid + ins->offset - 1,
1656 EXTENT_LOCKED, GFP_NOFS);
Chris Mason26b80032007-08-08 20:17:12 -04001657 goto update_block;
1658 }
1659
1660 WARN_ON(trans->alloc_exclude_nr);
1661 trans->alloc_exclude_start = ins->objectid;
1662 trans->alloc_exclude_nr = ins->offset;
Chris Mason037e6392007-03-07 11:50:24 -05001663
Chris Mason47e4bb92008-02-01 14:51:59 -05001664 memcpy(&keys[0], ins, sizeof(*ins));
1665 keys[1].offset = hash_extent_ref(root_objectid, ref_generation,
1666 owner, owner_offset);
1667 keys[1].objectid = ins->objectid;
1668 keys[1].type = BTRFS_EXTENT_REF_KEY;
1669 sizes[0] = sizeof(*extent_item);
1670 sizes[1] = sizeof(*ref);
Chris Mason7bb86312007-12-11 09:25:06 -05001671
1672 path = btrfs_alloc_path();
1673 BUG_ON(!path);
Chris Mason47e4bb92008-02-01 14:51:59 -05001674
1675 ret = btrfs_insert_empty_items(trans, extent_root, path, keys,
1676 sizes, 2);
Chris Mason26b80032007-08-08 20:17:12 -04001677
Chris Masonccd467d2007-06-28 15:57:36 -04001678 BUG_ON(ret);
Chris Mason47e4bb92008-02-01 14:51:59 -05001679 extent_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1680 struct btrfs_extent_item);
1681 btrfs_set_extent_refs(path->nodes[0], extent_item, 1);
1682 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1683 struct btrfs_extent_ref);
1684
1685 btrfs_set_ref_root(path->nodes[0], ref, root_objectid);
1686 btrfs_set_ref_generation(path->nodes[0], ref, ref_generation);
1687 btrfs_set_ref_objectid(path->nodes[0], ref, owner);
1688 btrfs_set_ref_offset(path->nodes[0], ref, owner_offset);
1689
1690 btrfs_mark_buffer_dirty(path->nodes[0]);
1691
1692 trans->alloc_exclude_start = 0;
1693 trans->alloc_exclude_nr = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001694 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001695 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001696 pending_ret = del_pending_extents(trans, extent_root);
Chris Masonf510cfe2007-10-15 16:14:48 -04001697
Chris Masone37c9e62007-05-09 20:13:14 -04001698 if (ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001699 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001700 }
1701 if (pending_ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001702 return pending_ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001703 }
Chris Mason26b80032007-08-08 20:17:12 -04001704
1705update_block:
Chris Mason0b86a832008-03-24 15:01:56 -04001706 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0);
Chris Masonf5947062008-02-04 10:10:13 -05001707 if (ret) {
1708 printk("update block group failed for %Lu %Lu\n",
1709 ins->objectid, ins->offset);
1710 BUG();
1711 }
Chris Mason037e6392007-03-07 11:50:24 -05001712 return 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001713}
1714
1715/*
1716 * helper function to allocate a block for a given tree
1717 * returns the tree buffer or NULL.
1718 */
Chris Mason5f39d392007-10-15 16:14:19 -04001719struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -04001720 struct btrfs_root *root,
Chris Mason7bb86312007-12-11 09:25:06 -05001721 u32 blocksize,
1722 u64 root_objectid, u64 hint,
1723 u64 empty_size)
1724{
1725 u64 ref_generation;
1726
1727 if (root->ref_cows)
1728 ref_generation = trans->transid;
1729 else
1730 ref_generation = 0;
1731
1732
1733 return __btrfs_alloc_free_block(trans, root, blocksize, root_objectid,
1734 ref_generation, 0, 0, hint, empty_size);
1735}
1736
1737/*
1738 * helper function to allocate a block for a given tree
1739 * returns the tree buffer or NULL.
1740 */
1741struct extent_buffer *__btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1742 struct btrfs_root *root,
1743 u32 blocksize,
1744 u64 root_objectid,
1745 u64 ref_generation,
1746 u64 first_objectid,
1747 int level,
1748 u64 hint,
Chris Mason5f39d392007-10-15 16:14:19 -04001749 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05001750{
Chris Masone2fa7222007-03-12 16:22:34 -04001751 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05001752 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04001753 struct extent_buffer *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05001754
Chris Mason7bb86312007-12-11 09:25:06 -05001755 ret = btrfs_alloc_extent(trans, root, blocksize,
1756 root_objectid, ref_generation,
Chris Masonf6dbff52007-12-13 11:13:32 -05001757 level, first_objectid, empty_size, hint,
Chris Masondb945352007-10-15 16:15:53 -04001758 (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05001759 if (ret) {
Chris Mason54aa1f42007-06-22 14:16:25 -04001760 BUG_ON(ret > 0);
1761 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05001762 }
Chris Masondb945352007-10-15 16:15:53 -04001763 buf = btrfs_find_create_tree_block(root, ins.objectid, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04001764 if (!buf) {
Chris Mason7bb86312007-12-11 09:25:06 -05001765 btrfs_free_extent(trans, root, ins.objectid, blocksize,
1766 root->root_key.objectid, ref_generation,
1767 0, 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001768 return ERR_PTR(-ENOMEM);
1769 }
Chris Mason55c69072008-01-09 15:55:33 -05001770 btrfs_set_header_generation(buf, trans->transid);
1771 clean_tree_block(trans, root, buf);
1772 wait_on_tree_block_writeback(root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001773 btrfs_set_buffer_uptodate(buf);
Chris Mason55c69072008-01-09 15:55:33 -05001774
1775 if (PageDirty(buf->first_page)) {
1776 printk("page %lu dirty\n", buf->first_page->index);
1777 WARN_ON(1);
1778 }
1779
Chris Mason5f39d392007-10-15 16:14:19 -04001780 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
1781 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001782 set_extent_bits(&BTRFS_I(root->fs_info->btree_inode)->io_tree,
Chris Mason19c00dd2007-10-15 16:19:22 -04001783 buf->start, buf->start + buf->len - 1,
1784 EXTENT_CSUM, GFP_NOFS);
1785 buf->flags |= EXTENT_CSUM;
Chris Mason9afbb0b2008-02-15 13:19:35 -05001786 if (!btrfs_test_opt(root, SSD))
1787 btrfs_set_buffer_defrag(buf);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001788 trans->blocks_used++;
Chris Masonfec577f2007-02-26 10:40:21 -05001789 return buf;
1790}
Chris Masona28ec192007-03-06 20:08:01 -05001791
Chris Mason98ed5172008-01-03 10:01:48 -05001792static int noinline drop_leaf_ref(struct btrfs_trans_handle *trans,
1793 struct btrfs_root *root,
1794 struct extent_buffer *leaf)
Chris Mason6407bf62007-03-27 06:33:00 -04001795{
Chris Mason7bb86312007-12-11 09:25:06 -05001796 u64 leaf_owner;
1797 u64 leaf_generation;
Chris Mason5f39d392007-10-15 16:14:19 -04001798 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04001799 struct btrfs_file_extent_item *fi;
1800 int i;
1801 int nritems;
1802 int ret;
1803
Chris Mason5f39d392007-10-15 16:14:19 -04001804 BUG_ON(!btrfs_is_leaf(leaf));
1805 nritems = btrfs_header_nritems(leaf);
Chris Mason7bb86312007-12-11 09:25:06 -05001806 leaf_owner = btrfs_header_owner(leaf);
1807 leaf_generation = btrfs_header_generation(leaf);
1808
Chris Mason6407bf62007-03-27 06:33:00 -04001809 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001810 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001811
1812 btrfs_item_key_to_cpu(leaf, &key, i);
1813 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04001814 continue;
1815 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001816 if (btrfs_file_extent_type(leaf, fi) ==
1817 BTRFS_FILE_EXTENT_INLINE)
Chris Mason236454d2007-04-19 13:37:44 -04001818 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04001819 /*
1820 * FIXME make sure to insert a trans record that
1821 * repeats the snapshot del on crash
1822 */
Chris Masondb945352007-10-15 16:15:53 -04001823 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1824 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04001825 continue;
Chris Masondb945352007-10-15 16:15:53 -04001826 ret = btrfs_free_extent(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001827 btrfs_file_extent_disk_num_bytes(leaf, fi),
1828 leaf_owner, leaf_generation,
1829 key.objectid, key.offset, 0);
Chris Mason6407bf62007-03-27 06:33:00 -04001830 BUG_ON(ret);
1831 }
1832 return 0;
1833}
1834
Chris Mason98ed5172008-01-03 10:01:48 -05001835static void noinline reada_walk_down(struct btrfs_root *root,
Chris Masonbea495e2008-01-24 16:13:14 -05001836 struct extent_buffer *node,
1837 int slot)
Chris Masone0115992007-06-19 16:23:05 -04001838{
Chris Masondb945352007-10-15 16:15:53 -04001839 u64 bytenr;
Chris Masonbea495e2008-01-24 16:13:14 -05001840 u64 last = 0;
1841 u32 nritems;
Chris Masone0115992007-06-19 16:23:05 -04001842 u32 refs;
Chris Masondb945352007-10-15 16:15:53 -04001843 u32 blocksize;
Chris Masonbea495e2008-01-24 16:13:14 -05001844 int ret;
1845 int i;
1846 int level;
1847 int skipped = 0;
Chris Masone0115992007-06-19 16:23:05 -04001848
Chris Mason5f39d392007-10-15 16:14:19 -04001849 nritems = btrfs_header_nritems(node);
Chris Masondb945352007-10-15 16:15:53 -04001850 level = btrfs_header_level(node);
Chris Masonbea495e2008-01-24 16:13:14 -05001851 if (level)
1852 return;
1853
1854 for (i = slot; i < nritems && skipped < 32; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001855 bytenr = btrfs_node_blockptr(node, i);
Chris Masonbea495e2008-01-24 16:13:14 -05001856 if (last && ((bytenr > last && bytenr - last > 32 * 1024) ||
1857 (last > bytenr && last - bytenr > 32 * 1024))) {
1858 skipped++;
Chris Masone0115992007-06-19 16:23:05 -04001859 continue;
Chris Masonbea495e2008-01-24 16:13:14 -05001860 }
1861 blocksize = btrfs_level_size(root, level - 1);
1862 if (i != slot) {
1863 ret = lookup_extent_ref(NULL, root, bytenr,
1864 blocksize, &refs);
1865 BUG_ON(ret);
1866 if (refs != 1) {
1867 skipped++;
1868 continue;
1869 }
1870 }
Chris Mason409eb952007-08-08 20:17:12 -04001871 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -04001872 ret = readahead_tree_block(root, bytenr, blocksize);
Chris Masonbea495e2008-01-24 16:13:14 -05001873 last = bytenr + blocksize;
Chris Mason409eb952007-08-08 20:17:12 -04001874 cond_resched();
1875 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone0115992007-06-19 16:23:05 -04001876 if (ret)
1877 break;
1878 }
1879}
1880
Chris Mason9aca1d52007-03-13 11:09:37 -04001881/*
1882 * helper function for drop_snapshot, this walks down the tree dropping ref
1883 * counts as it goes.
1884 */
Chris Mason98ed5172008-01-03 10:01:48 -05001885static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
1886 struct btrfs_root *root,
1887 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05001888{
Chris Mason7bb86312007-12-11 09:25:06 -05001889 u64 root_owner;
1890 u64 root_gen;
1891 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001892 struct extent_buffer *next;
1893 struct extent_buffer *cur;
Chris Mason7bb86312007-12-11 09:25:06 -05001894 struct extent_buffer *parent;
Chris Masondb945352007-10-15 16:15:53 -04001895 u32 blocksize;
Chris Mason20524f02007-03-10 06:35:47 -05001896 int ret;
1897 u32 refs;
1898
Chris Mason5caf2a02007-04-02 11:20:42 -04001899 WARN_ON(*level < 0);
1900 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason5f39d392007-10-15 16:14:19 -04001901 ret = lookup_extent_ref(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04001902 path->nodes[*level]->start,
1903 path->nodes[*level]->len, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05001904 BUG_ON(ret);
1905 if (refs > 1)
1906 goto out;
Chris Masone0115992007-06-19 16:23:05 -04001907
Chris Mason9aca1d52007-03-13 11:09:37 -04001908 /*
1909 * walk down to the last node level and free all the leaves
1910 */
Chris Mason6407bf62007-03-27 06:33:00 -04001911 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001912 WARN_ON(*level < 0);
1913 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05001914 cur = path->nodes[*level];
Chris Masone0115992007-06-19 16:23:05 -04001915
Chris Mason5f39d392007-10-15 16:14:19 -04001916 if (btrfs_header_level(cur) != *level)
Chris Mason2c90e5d2007-04-02 10:50:19 -04001917 WARN_ON(1);
Chris Masone0115992007-06-19 16:23:05 -04001918
Chris Mason7518a232007-03-12 12:01:18 -04001919 if (path->slots[*level] >=
Chris Mason5f39d392007-10-15 16:14:19 -04001920 btrfs_header_nritems(cur))
Chris Mason20524f02007-03-10 06:35:47 -05001921 break;
Chris Mason6407bf62007-03-27 06:33:00 -04001922 if (*level == 0) {
1923 ret = drop_leaf_ref(trans, root, cur);
1924 BUG_ON(ret);
1925 break;
1926 }
Chris Masondb945352007-10-15 16:15:53 -04001927 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
1928 blocksize = btrfs_level_size(root, *level - 1);
1929 ret = lookup_extent_ref(trans, root, bytenr, blocksize, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04001930 BUG_ON(ret);
1931 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05001932 parent = path->nodes[*level];
1933 root_owner = btrfs_header_owner(parent);
1934 root_gen = btrfs_header_generation(parent);
Chris Mason20524f02007-03-10 06:35:47 -05001935 path->slots[*level]++;
Chris Masondb945352007-10-15 16:15:53 -04001936 ret = btrfs_free_extent(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001937 blocksize, root_owner,
1938 root_gen, 0, 0, 1);
Chris Mason20524f02007-03-10 06:35:47 -05001939 BUG_ON(ret);
1940 continue;
1941 }
Chris Masondb945352007-10-15 16:15:53 -04001942 next = btrfs_find_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001943 if (!next || !btrfs_buffer_uptodate(next)) {
1944 free_extent_buffer(next);
Chris Masonbea495e2008-01-24 16:13:14 -05001945 reada_walk_down(root, cur, path->slots[*level]);
Chris Masone9d0b132007-08-10 14:06:19 -04001946 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -04001947 next = read_tree_block(root, bytenr, blocksize);
Chris Masone9d0b132007-08-10 14:06:19 -04001948 mutex_lock(&root->fs_info->fs_mutex);
1949
1950 /* we dropped the lock, check one more time */
Chris Masondb945352007-10-15 16:15:53 -04001951 ret = lookup_extent_ref(trans, root, bytenr,
1952 blocksize, &refs);
Chris Masone9d0b132007-08-10 14:06:19 -04001953 BUG_ON(ret);
1954 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05001955 parent = path->nodes[*level];
1956 root_owner = btrfs_header_owner(parent);
1957 root_gen = btrfs_header_generation(parent);
1958
Chris Masone9d0b132007-08-10 14:06:19 -04001959 path->slots[*level]++;
Chris Mason5f39d392007-10-15 16:14:19 -04001960 free_extent_buffer(next);
Chris Mason7bb86312007-12-11 09:25:06 -05001961 ret = btrfs_free_extent(trans, root, bytenr,
1962 blocksize,
1963 root_owner,
1964 root_gen, 0, 0, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04001965 BUG_ON(ret);
1966 continue;
1967 }
1968 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001969 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04001970 if (path->nodes[*level-1])
Chris Mason5f39d392007-10-15 16:14:19 -04001971 free_extent_buffer(path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05001972 path->nodes[*level-1] = next;
Chris Mason5f39d392007-10-15 16:14:19 -04001973 *level = btrfs_header_level(next);
Chris Mason20524f02007-03-10 06:35:47 -05001974 path->slots[*level] = 0;
1975 }
1976out:
Chris Mason5caf2a02007-04-02 11:20:42 -04001977 WARN_ON(*level < 0);
1978 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason7bb86312007-12-11 09:25:06 -05001979
1980 if (path->nodes[*level] == root->node) {
1981 root_owner = root->root_key.objectid;
1982 parent = path->nodes[*level];
1983 } else {
1984 parent = path->nodes[*level + 1];
1985 root_owner = btrfs_header_owner(parent);
1986 }
1987
1988 root_gen = btrfs_header_generation(parent);
Chris Masondb945352007-10-15 16:15:53 -04001989 ret = btrfs_free_extent(trans, root, path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05001990 path->nodes[*level]->len,
1991 root_owner, root_gen, 0, 0, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001992 free_extent_buffer(path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05001993 path->nodes[*level] = NULL;
1994 *level += 1;
1995 BUG_ON(ret);
1996 return 0;
1997}
1998
Chris Mason9aca1d52007-03-13 11:09:37 -04001999/*
2000 * helper for dropping snapshots. This walks back up the tree in the path
2001 * to find the first node higher up where we haven't yet gone through
2002 * all the slots
2003 */
Chris Mason98ed5172008-01-03 10:01:48 -05002004static int noinline walk_up_tree(struct btrfs_trans_handle *trans,
2005 struct btrfs_root *root,
2006 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002007{
Chris Mason7bb86312007-12-11 09:25:06 -05002008 u64 root_owner;
2009 u64 root_gen;
2010 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002011 int i;
2012 int slot;
2013 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04002014
Chris Mason234b63a2007-03-13 10:46:10 -04002015 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05002016 slot = path->slots[i];
Chris Mason5f39d392007-10-15 16:14:19 -04002017 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
2018 struct extent_buffer *node;
2019 struct btrfs_disk_key disk_key;
2020 node = path->nodes[i];
Chris Mason20524f02007-03-10 06:35:47 -05002021 path->slots[i]++;
2022 *level = i;
Chris Mason9f3a7422007-08-07 15:52:19 -04002023 WARN_ON(*level == 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002024 btrfs_node_key(node, &disk_key, path->slots[i]);
Chris Mason9f3a7422007-08-07 15:52:19 -04002025 memcpy(&root_item->drop_progress,
Chris Mason5f39d392007-10-15 16:14:19 -04002026 &disk_key, sizeof(disk_key));
Chris Mason9f3a7422007-08-07 15:52:19 -04002027 root_item->drop_level = i;
Chris Mason20524f02007-03-10 06:35:47 -05002028 return 0;
2029 } else {
Chris Mason7bb86312007-12-11 09:25:06 -05002030 if (path->nodes[*level] == root->node) {
2031 root_owner = root->root_key.objectid;
2032 root_gen =
2033 btrfs_header_generation(path->nodes[*level]);
2034 } else {
2035 struct extent_buffer *node;
2036 node = path->nodes[*level + 1];
2037 root_owner = btrfs_header_owner(node);
2038 root_gen = btrfs_header_generation(node);
2039 }
Chris Masone089f052007-03-16 16:20:31 -04002040 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002041 path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002042 path->nodes[*level]->len,
2043 root_owner, root_gen, 0, 0, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04002044 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002045 free_extent_buffer(path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04002046 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05002047 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05002048 }
2049 }
2050 return 1;
2051}
2052
Chris Mason9aca1d52007-03-13 11:09:37 -04002053/*
2054 * drop the reference count on the tree rooted at 'snap'. This traverses
2055 * the tree freeing any blocks that have a ref count of zero after being
2056 * decremented.
2057 */
Chris Masone089f052007-03-16 16:20:31 -04002058int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04002059 *root)
Chris Mason20524f02007-03-10 06:35:47 -05002060{
Chris Mason3768f362007-03-13 16:47:54 -04002061 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04002062 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05002063 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04002064 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05002065 int i;
2066 int orig_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002067 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002068
Chris Mason5caf2a02007-04-02 11:20:42 -04002069 path = btrfs_alloc_path();
2070 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05002071
Chris Mason5f39d392007-10-15 16:14:19 -04002072 level = btrfs_header_level(root->node);
Chris Mason20524f02007-03-10 06:35:47 -05002073 orig_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002074 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2075 path->nodes[level] = root->node;
Chris Masonf510cfe2007-10-15 16:14:48 -04002076 extent_buffer_get(root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -04002077 path->slots[level] = 0;
2078 } else {
2079 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002080 struct btrfs_disk_key found_key;
2081 struct extent_buffer *node;
Chris Mason6702ed42007-08-07 16:15:09 -04002082
Chris Mason9f3a7422007-08-07 15:52:19 -04002083 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Chris Mason6702ed42007-08-07 16:15:09 -04002084 level = root_item->drop_level;
2085 path->lowest_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002086 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason6702ed42007-08-07 16:15:09 -04002087 if (wret < 0) {
Chris Mason9f3a7422007-08-07 15:52:19 -04002088 ret = wret;
2089 goto out;
2090 }
Chris Mason5f39d392007-10-15 16:14:19 -04002091 node = path->nodes[level];
2092 btrfs_node_key(node, &found_key, path->slots[level]);
2093 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2094 sizeof(found_key)));
Chris Mason9f3a7422007-08-07 15:52:19 -04002095 }
Chris Mason20524f02007-03-10 06:35:47 -05002096 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002097 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002098 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002099 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002100 if (wret < 0)
2101 ret = wret;
2102
Chris Mason5caf2a02007-04-02 11:20:42 -04002103 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002104 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002105 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002106 if (wret < 0)
2107 ret = wret;
Chris Mason409eb952007-08-08 20:17:12 -04002108 ret = -EAGAIN;
Chris Mason409eb952007-08-08 20:17:12 -04002109 break;
Chris Mason20524f02007-03-10 06:35:47 -05002110 }
Chris Mason83e15a22007-03-12 09:03:27 -04002111 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002112 if (path->nodes[i]) {
Chris Mason5f39d392007-10-15 16:14:19 -04002113 free_extent_buffer(path->nodes[i]);
Chris Mason0f827312007-10-15 16:18:56 -04002114 path->nodes[i] = NULL;
Chris Mason83e15a22007-03-12 09:03:27 -04002115 }
Chris Mason20524f02007-03-10 06:35:47 -05002116 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002117out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002118 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04002119 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05002120}
Chris Mason9078a3e2007-04-26 16:46:15 -04002121
Chris Masonbe744172007-05-06 10:15:01 -04002122int btrfs_free_block_groups(struct btrfs_fs_info *info)
2123{
Chris Masonf510cfe2007-10-15 16:14:48 -04002124 u64 start;
2125 u64 end;
Yanb97f9202007-11-01 11:28:41 -04002126 u64 ptr;
Chris Mason96b51792007-10-15 16:15:19 -04002127 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04002128 while(1) {
2129 ret = find_first_extent_bit(&info->block_group_cache, 0,
2130 &start, &end, (unsigned int)-1);
2131 if (ret)
2132 break;
Yanb97f9202007-11-01 11:28:41 -04002133 ret = get_state_private(&info->block_group_cache, start, &ptr);
2134 if (!ret)
2135 kfree((void *)(unsigned long)ptr);
Chris Mason96b51792007-10-15 16:15:19 -04002136 clear_extent_bits(&info->block_group_cache, start,
2137 end, (unsigned int)-1, GFP_NOFS);
2138 }
Chris Masone37c9e62007-05-09 20:13:14 -04002139 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -04002140 ret = find_first_extent_bit(&info->free_space_cache, 0,
2141 &start, &end, EXTENT_DIRTY);
2142 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -04002143 break;
Chris Masonf510cfe2007-10-15 16:14:48 -04002144 clear_extent_dirty(&info->free_space_cache, start,
2145 end, GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04002146 }
Chris Masonbe744172007-05-06 10:15:01 -04002147 return 0;
2148}
2149
Chris Mason98ed5172008-01-03 10:01:48 -05002150static int noinline relocate_inode_pages(struct inode *inode, u64 start,
2151 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05002152{
2153 u64 page_start;
2154 u64 page_end;
2155 u64 delalloc_start;
2156 u64 existing_delalloc;
2157 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05002158 unsigned long i;
2159 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05002160 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05002161 struct file_ra_state *ra;
2162
2163 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002164
2165 mutex_lock(&inode->i_mutex);
Chris Mason4313b392008-01-03 09:08:48 -05002166 i = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05002167 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
2168
Chris Mason4313b392008-01-03 09:08:48 -05002169 file_ra_state_init(ra, inode->i_mapping);
2170 btrfs_force_ra(inode->i_mapping, ra, NULL, i, last_index);
2171 kfree(ra);
Chris Masonedbd8d42007-12-21 16:27:24 -05002172
Chris Mason4313b392008-01-03 09:08:48 -05002173 for (; i <= last_index; i++) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002174 page = grab_cache_page(inode->i_mapping, i);
2175 if (!page)
2176 goto out_unlock;
2177 if (!PageUptodate(page)) {
2178 btrfs_readpage(NULL, page);
2179 lock_page(page);
2180 if (!PageUptodate(page)) {
2181 unlock_page(page);
2182 page_cache_release(page);
2183 goto out_unlock;
2184 }
2185 }
2186 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2187 page_end = page_start + PAGE_CACHE_SIZE - 1;
2188
Chris Masond1310b22008-01-24 16:13:08 -05002189 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002190
2191 delalloc_start = page_start;
Chris Masond1310b22008-01-24 16:13:08 -05002192 existing_delalloc = count_range_bits(io_tree,
2193 &delalloc_start, page_end,
2194 PAGE_CACHE_SIZE, EXTENT_DELALLOC);
Chris Masonedbd8d42007-12-21 16:27:24 -05002195
Chris Masond1310b22008-01-24 16:13:08 -05002196 set_extent_delalloc(io_tree, page_start,
Chris Masonedbd8d42007-12-21 16:27:24 -05002197 page_end, GFP_NOFS);
2198
Chris Masond1310b22008-01-24 16:13:08 -05002199 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002200 set_page_dirty(page);
2201 unlock_page(page);
2202 page_cache_release(page);
2203 }
2204
2205out_unlock:
2206 mutex_unlock(&inode->i_mutex);
2207 return 0;
2208}
2209
Chris Mason4313b392008-01-03 09:08:48 -05002210/*
2211 * note, this releases the path
2212 */
Chris Mason98ed5172008-01-03 10:01:48 -05002213static int noinline relocate_one_reference(struct btrfs_root *extent_root,
Chris Masonedbd8d42007-12-21 16:27:24 -05002214 struct btrfs_path *path,
Chris Mason4313b392008-01-03 09:08:48 -05002215 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002216{
2217 struct inode *inode;
2218 struct btrfs_root *found_root;
Chris Mason4313b392008-01-03 09:08:48 -05002219 struct btrfs_key *root_location;
2220 struct btrfs_extent_ref *ref;
2221 u64 ref_root;
2222 u64 ref_gen;
2223 u64 ref_objectid;
2224 u64 ref_offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05002225 int ret;
2226
Chris Mason4313b392008-01-03 09:08:48 -05002227 ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
2228 struct btrfs_extent_ref);
2229 ref_root = btrfs_ref_root(path->nodes[0], ref);
2230 ref_gen = btrfs_ref_generation(path->nodes[0], ref);
2231 ref_objectid = btrfs_ref_objectid(path->nodes[0], ref);
2232 ref_offset = btrfs_ref_offset(path->nodes[0], ref);
2233 btrfs_release_path(extent_root, path);
2234
2235 root_location = kmalloc(sizeof(*root_location), GFP_NOFS);
2236 root_location->objectid = ref_root;
Chris Masonedbd8d42007-12-21 16:27:24 -05002237 if (ref_gen == 0)
Chris Mason4313b392008-01-03 09:08:48 -05002238 root_location->offset = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002239 else
Chris Mason4313b392008-01-03 09:08:48 -05002240 root_location->offset = (u64)-1;
2241 root_location->type = BTRFS_ROOT_ITEM_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05002242
2243 found_root = btrfs_read_fs_root_no_name(extent_root->fs_info,
Chris Mason4313b392008-01-03 09:08:48 -05002244 root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002245 BUG_ON(!found_root);
Chris Mason4313b392008-01-03 09:08:48 -05002246 kfree(root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002247
2248 if (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
2249 mutex_unlock(&extent_root->fs_info->fs_mutex);
2250 inode = btrfs_iget_locked(extent_root->fs_info->sb,
2251 ref_objectid, found_root);
2252 if (inode->i_state & I_NEW) {
2253 /* the inode and parent dir are two different roots */
2254 BTRFS_I(inode)->root = found_root;
2255 BTRFS_I(inode)->location.objectid = ref_objectid;
2256 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
2257 BTRFS_I(inode)->location.offset = 0;
2258 btrfs_read_locked_inode(inode);
2259 unlock_new_inode(inode);
2260
2261 }
2262 /* this can happen if the reference is not against
2263 * the latest version of the tree root
2264 */
2265 if (is_bad_inode(inode)) {
2266 mutex_lock(&extent_root->fs_info->fs_mutex);
2267 goto out;
2268 }
2269 relocate_inode_pages(inode, ref_offset, extent_key->offset);
2270 /* FIXME, data=ordered will help get rid of this */
2271 filemap_fdatawrite(inode->i_mapping);
2272 iput(inode);
2273 mutex_lock(&extent_root->fs_info->fs_mutex);
2274 } else {
2275 struct btrfs_trans_handle *trans;
2276 struct btrfs_key found_key;
2277 struct extent_buffer *eb;
2278 int level;
2279 int i;
2280
2281 trans = btrfs_start_transaction(found_root, 1);
2282 eb = read_tree_block(found_root, extent_key->objectid,
2283 extent_key->offset);
2284 level = btrfs_header_level(eb);
2285
2286 if (level == 0)
2287 btrfs_item_key_to_cpu(eb, &found_key, 0);
2288 else
2289 btrfs_node_key_to_cpu(eb, &found_key, 0);
2290
2291 free_extent_buffer(eb);
2292
2293 path->lowest_level = level;
Chris Mason8f662a72008-01-02 10:01:11 -05002294 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002295 ret = btrfs_search_slot(trans, found_root, &found_key, path,
2296 0, 1);
2297 path->lowest_level = 0;
2298 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2299 if (!path->nodes[i])
2300 break;
2301 free_extent_buffer(path->nodes[i]);
2302 path->nodes[i] = NULL;
2303 }
2304 btrfs_release_path(found_root, path);
2305 btrfs_end_transaction(trans, found_root);
2306 }
2307
2308out:
2309 return 0;
2310}
2311
Chris Mason98ed5172008-01-03 10:01:48 -05002312static int noinline relocate_one_extent(struct btrfs_root *extent_root,
2313 struct btrfs_path *path,
2314 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002315{
2316 struct btrfs_key key;
2317 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002318 struct extent_buffer *leaf;
Chris Masonedbd8d42007-12-21 16:27:24 -05002319 u32 nritems;
2320 u32 item_size;
2321 int ret = 0;
2322
2323 key.objectid = extent_key->objectid;
2324 key.type = BTRFS_EXTENT_REF_KEY;
2325 key.offset = 0;
2326
2327 while(1) {
2328 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2329
Chris Masonedbd8d42007-12-21 16:27:24 -05002330 if (ret < 0)
2331 goto out;
2332
2333 ret = 0;
2334 leaf = path->nodes[0];
2335 nritems = btrfs_header_nritems(leaf);
2336 if (path->slots[0] == nritems)
2337 goto out;
2338
2339 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2340 if (found_key.objectid != extent_key->objectid)
2341 break;
2342
2343 if (found_key.type != BTRFS_EXTENT_REF_KEY)
2344 break;
2345
2346 key.offset = found_key.offset + 1;
2347 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2348
Chris Mason4313b392008-01-03 09:08:48 -05002349 ret = relocate_one_reference(extent_root, path, extent_key);
Chris Masonedbd8d42007-12-21 16:27:24 -05002350 if (ret)
2351 goto out;
2352 }
2353 ret = 0;
2354out:
2355 btrfs_release_path(extent_root, path);
2356 return ret;
2357}
2358
Chris Masonedbd8d42007-12-21 16:27:24 -05002359int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 new_size)
2360{
2361 struct btrfs_trans_handle *trans;
2362 struct btrfs_root *tree_root = root->fs_info->tree_root;
2363 struct btrfs_path *path;
2364 u64 cur_byte;
2365 u64 total_found;
Chris Masonedbd8d42007-12-21 16:27:24 -05002366 struct btrfs_fs_info *info = root->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05002367 struct extent_io_tree *block_group_cache;
Chris Masonedbd8d42007-12-21 16:27:24 -05002368 struct btrfs_key key;
Yan73e48b22008-01-03 14:14:39 -05002369 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002370 struct extent_buffer *leaf;
2371 u32 nritems;
2372 int ret;
Chris Mason725c8462008-01-04 16:47:16 -05002373 int progress = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002374
2375 btrfs_set_super_total_bytes(&info->super_copy, new_size);
Chris Masonc31f8832008-01-08 15:46:31 -05002376 clear_extent_dirty(&info->free_space_cache, new_size, (u64)-1,
2377 GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002378 block_group_cache = &info->block_group_cache;
2379 path = btrfs_alloc_path();
2380 root = root->fs_info->extent_root;
Chris Mason8f662a72008-01-02 10:01:11 -05002381 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002382
2383again:
2384 total_found = 0;
2385 key.objectid = new_size;
Chris Masonedbd8d42007-12-21 16:27:24 -05002386 key.offset = 0;
2387 key.type = 0;
Yan73e48b22008-01-03 14:14:39 -05002388 cur_byte = key.objectid;
Chris Mason4313b392008-01-03 09:08:48 -05002389
Yan73e48b22008-01-03 14:14:39 -05002390 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2391 if (ret < 0)
2392 goto out;
2393
Chris Mason0b86a832008-03-24 15:01:56 -04002394 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
Yan73e48b22008-01-03 14:14:39 -05002395 if (ret < 0)
2396 goto out;
2397 if (ret == 0) {
2398 leaf = path->nodes[0];
2399 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2400 if (found_key.objectid + found_key.offset > new_size) {
2401 cur_byte = found_key.objectid;
2402 key.objectid = cur_byte;
2403 }
2404 }
2405 btrfs_release_path(root, path);
2406
2407 while(1) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002408 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2409 if (ret < 0)
2410 goto out;
Yan73e48b22008-01-03 14:14:39 -05002411
Chris Masonedbd8d42007-12-21 16:27:24 -05002412 leaf = path->nodes[0];
Chris Masonedbd8d42007-12-21 16:27:24 -05002413 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05002414next:
2415 if (path->slots[0] >= nritems) {
2416 ret = btrfs_next_leaf(root, path);
2417 if (ret < 0)
2418 goto out;
2419 if (ret == 1) {
2420 ret = 0;
2421 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05002422 }
Yan73e48b22008-01-03 14:14:39 -05002423 leaf = path->nodes[0];
2424 nritems = btrfs_header_nritems(leaf);
2425 }
2426
2427 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason725c8462008-01-04 16:47:16 -05002428
2429 if (progress && need_resched()) {
2430 memcpy(&key, &found_key, sizeof(key));
2431 mutex_unlock(&root->fs_info->fs_mutex);
2432 cond_resched();
2433 mutex_lock(&root->fs_info->fs_mutex);
2434 btrfs_release_path(root, path);
2435 btrfs_search_slot(NULL, root, &key, path, 0, 0);
2436 progress = 0;
2437 goto next;
2438 }
2439 progress = 1;
2440
Yan73e48b22008-01-03 14:14:39 -05002441 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_ITEM_KEY ||
2442 found_key.objectid + found_key.offset <= cur_byte) {
2443 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05002444 goto next;
2445 }
Yan73e48b22008-01-03 14:14:39 -05002446
Chris Masonedbd8d42007-12-21 16:27:24 -05002447 total_found++;
2448 cur_byte = found_key.objectid + found_key.offset;
2449 key.objectid = cur_byte;
2450 btrfs_release_path(root, path);
2451 ret = relocate_one_extent(root, path, &found_key);
2452 }
2453
2454 btrfs_release_path(root, path);
2455
2456 if (total_found > 0) {
2457 trans = btrfs_start_transaction(tree_root, 1);
2458 btrfs_commit_transaction(trans, tree_root);
2459
2460 mutex_unlock(&root->fs_info->fs_mutex);
2461 btrfs_clean_old_snapshots(tree_root);
2462 mutex_lock(&root->fs_info->fs_mutex);
2463
2464 trans = btrfs_start_transaction(tree_root, 1);
2465 btrfs_commit_transaction(trans, tree_root);
2466 goto again;
2467 }
2468
2469 trans = btrfs_start_transaction(root, 1);
2470 key.objectid = new_size;
2471 key.offset = 0;
2472 key.type = 0;
2473 while(1) {
Chris Mason4313b392008-01-03 09:08:48 -05002474 u64 ptr;
2475
Chris Masonedbd8d42007-12-21 16:27:24 -05002476 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2477 if (ret < 0)
2478 goto out;
Yan73e48b22008-01-03 14:14:39 -05002479
Chris Masonedbd8d42007-12-21 16:27:24 -05002480 leaf = path->nodes[0];
2481 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05002482bg_next:
2483 if (path->slots[0] >= nritems) {
2484 ret = btrfs_next_leaf(root, path);
2485 if (ret < 0)
2486 break;
2487 if (ret == 1) {
2488 ret = 0;
2489 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05002490 }
Yan73e48b22008-01-03 14:14:39 -05002491 leaf = path->nodes[0];
Chris Mason1372f8e2008-01-04 09:34:54 -05002492 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2493
2494 /*
2495 * btrfs_next_leaf doesn't cow buffers, we have to
2496 * do the search again
2497 */
2498 memcpy(&key, &found_key, sizeof(key));
2499 btrfs_release_path(root, path);
Chris Mason725c8462008-01-04 16:47:16 -05002500 goto resched_check;
Yan73e48b22008-01-03 14:14:39 -05002501 }
2502
2503 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2504 if (btrfs_key_type(&found_key) != BTRFS_BLOCK_GROUP_ITEM_KEY) {
2505 printk("shrinker found key %Lu %u %Lu\n",
2506 found_key.objectid, found_key.type,
2507 found_key.offset);
2508 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05002509 goto bg_next;
2510 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002511 ret = get_state_private(&info->block_group_cache,
2512 found_key.objectid, &ptr);
2513 if (!ret)
2514 kfree((void *)(unsigned long)ptr);
2515
2516 clear_extent_bits(&info->block_group_cache, found_key.objectid,
2517 found_key.objectid + found_key.offset - 1,
2518 (unsigned int)-1, GFP_NOFS);
2519
2520 key.objectid = found_key.objectid + 1;
2521 btrfs_del_item(trans, root, path);
2522 btrfs_release_path(root, path);
Chris Mason725c8462008-01-04 16:47:16 -05002523resched_check:
2524 if (need_resched()) {
2525 mutex_unlock(&root->fs_info->fs_mutex);
2526 cond_resched();
2527 mutex_lock(&root->fs_info->fs_mutex);
2528 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002529 }
2530 clear_extent_dirty(&info->free_space_cache, new_size, (u64)-1,
2531 GFP_NOFS);
2532 btrfs_commit_transaction(trans, root);
2533out:
2534 btrfs_free_path(path);
2535 return ret;
2536}
2537
2538int btrfs_grow_extent_tree(struct btrfs_trans_handle *trans,
2539 struct btrfs_root *root, u64 new_size)
2540{
Chris Mason0b86a832008-03-24 15:01:56 -04002541 btrfs_set_super_total_bytes(&root->fs_info->super_copy, new_size);
Chris Masonedbd8d42007-12-21 16:27:24 -05002542 return 0;
2543}
2544
Chris Mason0b86a832008-03-24 15:01:56 -04002545int find_first_block_group(struct btrfs_root *root, struct btrfs_path *path,
2546 struct btrfs_key *key)
2547{
2548 int ret;
2549 struct btrfs_key found_key;
2550 struct extent_buffer *leaf;
2551 int slot;
2552
2553 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
2554 if (ret < 0)
2555 return ret;
2556 while(1) {
2557 slot = path->slots[0];
2558 leaf = path->nodes[0];
2559 if (slot >= btrfs_header_nritems(leaf)) {
2560 ret = btrfs_next_leaf(root, path);
2561 if (ret == 0)
2562 continue;
2563 if (ret < 0)
2564 goto error;
2565 break;
2566 }
2567 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2568
2569 if (found_key.objectid >= key->objectid &&
2570 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY)
2571 return 0;
2572 path->slots[0]++;
2573 }
2574 ret = -ENOENT;
2575error:
2576 return ret;
2577}
2578
Chris Mason6324fbf2008-03-24 15:01:59 -04002579static int update_space_info(struct btrfs_fs_info *info, u64 flags,
2580 u64 total_bytes, u64 bytes_used,
2581 struct btrfs_space_info **space_info)
2582{
2583 struct btrfs_space_info *found;
2584
2585 found = __find_space_info(info, flags);
2586 if (found) {
2587 found->total_bytes += total_bytes;
2588 found->bytes_used += bytes_used;
2589 WARN_ON(found->total_bytes < found->bytes_used);
2590 *space_info = found;
2591 return 0;
2592 }
2593 found = kmalloc(sizeof(*found), GFP_NOFS);
2594 if (!found)
2595 return -ENOMEM;
2596
2597 list_add(&found->list, &info->space_info);
2598 found->flags = flags;
2599 found->total_bytes = total_bytes;
2600 found->bytes_used = bytes_used;
2601 found->bytes_pinned = 0;
2602 found->full = 0;
2603 *space_info = found;
2604 return 0;
2605}
2606
Chris Mason9078a3e2007-04-26 16:46:15 -04002607int btrfs_read_block_groups(struct btrfs_root *root)
2608{
2609 struct btrfs_path *path;
2610 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04002611 int bit;
Chris Mason9078a3e2007-04-26 16:46:15 -04002612 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04002613 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04002614 struct btrfs_space_info *space_info;
Chris Masond1310b22008-01-24 16:13:08 -05002615 struct extent_io_tree *block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002616 struct btrfs_key key;
2617 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04002618 struct extent_buffer *leaf;
Chris Mason96b51792007-10-15 16:15:19 -04002619
2620 block_group_cache = &info->block_group_cache;
Chris Masonbe744172007-05-06 10:15:01 -04002621 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04002622 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04002623 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002624 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04002625 path = btrfs_alloc_path();
2626 if (!path)
2627 return -ENOMEM;
2628
2629 while(1) {
Chris Mason0b86a832008-03-24 15:01:56 -04002630 ret = find_first_block_group(root, path, &key);
2631 if (ret > 0) {
2632 ret = 0;
2633 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04002634 }
Chris Mason0b86a832008-03-24 15:01:56 -04002635 if (ret != 0)
2636 goto error;
2637
Chris Mason5f39d392007-10-15 16:14:19 -04002638 leaf = path->nodes[0];
2639 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason9078a3e2007-04-26 16:46:15 -04002640 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2641 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04002642 ret = -ENOMEM;
Chris Mason9078a3e2007-04-26 16:46:15 -04002643 break;
2644 }
Chris Mason3e1ad542007-05-07 20:03:49 -04002645
Chris Mason5f39d392007-10-15 16:14:19 -04002646 read_extent_buffer(leaf, &cache->item,
2647 btrfs_item_ptr_offset(leaf, path->slots[0]),
2648 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04002649 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Masone37c9e62007-05-09 20:13:14 -04002650 cache->cached = 0;
Yan324ae4d2007-11-16 14:57:08 -05002651 cache->pinned = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04002652
Chris Mason9078a3e2007-04-26 16:46:15 -04002653 key.objectid = found_key.objectid + found_key.offset;
2654 btrfs_release_path(root, path);
Chris Mason0b86a832008-03-24 15:01:56 -04002655 cache->flags = btrfs_block_group_flags(&cache->item);
2656 bit = 0;
2657 if (cache->flags & BTRFS_BLOCK_GROUP_DATA) {
Chris Mason96b51792007-10-15 16:15:19 -04002658 bit = BLOCK_GROUP_DATA;
Chris Mason0b86a832008-03-24 15:01:56 -04002659 } else if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
2660 bit = BLOCK_GROUP_SYSTEM;
2661 } else if (cache->flags & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason96b51792007-10-15 16:15:19 -04002662 bit = BLOCK_GROUP_METADATA;
Chris Mason31f3c992007-04-30 15:25:45 -04002663 }
Chris Mason96b51792007-10-15 16:15:19 -04002664
Chris Mason6324fbf2008-03-24 15:01:59 -04002665 ret = update_space_info(info, cache->flags, found_key.offset,
2666 btrfs_block_group_used(&cache->item),
2667 &space_info);
2668 BUG_ON(ret);
2669 cache->space_info = space_info;
2670
Chris Mason96b51792007-10-15 16:15:19 -04002671 /* use EXTENT_LOCKED to prevent merging */
2672 set_extent_bits(block_group_cache, found_key.objectid,
2673 found_key.objectid + found_key.offset - 1,
2674 bit | EXTENT_LOCKED, GFP_NOFS);
2675 set_state_private(block_group_cache, found_key.objectid,
Jens Axboeae2f5412007-10-19 09:22:59 -04002676 (unsigned long)cache);
Chris Mason96b51792007-10-15 16:15:19 -04002677
Chris Mason9078a3e2007-04-26 16:46:15 -04002678 if (key.objectid >=
Chris Masondb945352007-10-15 16:15:53 -04002679 btrfs_super_total_bytes(&info->super_copy))
Chris Mason9078a3e2007-04-26 16:46:15 -04002680 break;
2681 }
Chris Mason0b86a832008-03-24 15:01:56 -04002682 ret = 0;
2683error:
Chris Mason9078a3e2007-04-26 16:46:15 -04002684 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04002685 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04002686}
Chris Mason6324fbf2008-03-24 15:01:59 -04002687
2688int btrfs_make_block_group(struct btrfs_trans_handle *trans,
2689 struct btrfs_root *root, u64 bytes_used,
2690 u64 type, u64 chunk_tree, u64 chunk_objectid,
2691 u64 size)
2692{
2693 int ret;
2694 int bit = 0;
2695 struct btrfs_root *extent_root;
2696 struct btrfs_block_group_cache *cache;
2697 struct extent_io_tree *block_group_cache;
2698
2699 extent_root = root->fs_info->extent_root;
2700 block_group_cache = &root->fs_info->block_group_cache;
2701
2702 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2703 BUG_ON(!cache);
2704 cache->key.objectid = chunk_objectid;
2705 cache->key.offset = size;
2706 cache->cached = 0;
2707 cache->pinned = 0;
2708 btrfs_set_key_type(&cache->key, BTRFS_BLOCK_GROUP_ITEM_KEY);
2709 memset(&cache->item, 0, sizeof(cache->item));
2710 btrfs_set_block_group_used(&cache->item, bytes_used);
2711 btrfs_set_block_group_chunk_tree(&cache->item, chunk_tree);
2712 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
2713 cache->flags = type;
2714 btrfs_set_block_group_flags(&cache->item, type);
2715
2716 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
2717 &cache->space_info);
2718 BUG_ON(ret);
2719
2720 if (type & BTRFS_BLOCK_GROUP_DATA) {
2721 bit = BLOCK_GROUP_DATA;
2722 } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
2723 bit = BLOCK_GROUP_SYSTEM;
2724 } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
2725 bit = BLOCK_GROUP_METADATA;
2726 }
2727 set_extent_bits(block_group_cache, chunk_objectid,
2728 chunk_objectid + size - 1,
2729 bit | EXTENT_LOCKED, GFP_NOFS);
2730 set_state_private(block_group_cache, chunk_objectid,
2731 (unsigned long)cache);
2732
2733 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
2734 sizeof(cache->item));
2735 BUG_ON(ret);
2736
2737 finish_current_insert(trans, extent_root);
2738 ret = del_pending_extents(trans, extent_root);
2739 BUG_ON(ret);
2740 return 0;
2741}