blob: a056a2df689af8af0f1b7e5f06a25b1514c77df3 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
Zach Brownec6b9102007-07-11 10:00:37 -040018#include <linux/sched.h>
Chris Masonedbd8d42007-12-21 16:27:24 -050019#include <linux/pagemap.h>
Chris Mason74493f72007-12-11 09:25:06 -050020#include "hash.h"
Miguela5eb62e2008-04-11 15:45:51 -040021#include "crc32c.h"
Chris Masonfec577f2007-02-26 10:40:21 -050022#include "ctree.h"
23#include "disk-io.h"
24#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040025#include "transaction.h"
Chris Mason0b86a832008-03-24 15:01:56 -040026#include "volumes.h"
Chris Masonfec577f2007-02-26 10:40:21 -050027
Chris Mason0b86a832008-03-24 15:01:56 -040028#define BLOCK_GROUP_DATA EXTENT_WRITEBACK
Chris Mason96b51792007-10-15 16:15:19 -040029#define BLOCK_GROUP_METADATA EXTENT_UPTODATE
Chris Mason0b86a832008-03-24 15:01:56 -040030#define BLOCK_GROUP_SYSTEM EXTENT_NEW
31
Chris Mason96b51792007-10-15 16:15:19 -040032#define BLOCK_GROUP_DIRTY EXTENT_DIRTY
33
Chris Masone089f052007-03-16 16:20:31 -040034static int finish_current_insert(struct btrfs_trans_handle *trans, struct
35 btrfs_root *extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -040036static int del_pending_extents(struct btrfs_trans_handle *trans, struct
37 btrfs_root *extent_root);
Chris Mason6324fbf2008-03-24 15:01:59 -040038int btrfs_make_block_group(struct btrfs_trans_handle *trans,
39 struct btrfs_root *root, u64 bytes_used,
40 u64 type, u64 chunk_tree, u64 chunk_objectid,
41 u64 size);
Yand548ee52008-01-03 13:56:30 -050042
Chris Masonfec577f2007-02-26 10:40:21 -050043
Chris Masone37c9e62007-05-09 20:13:14 -040044static int cache_block_group(struct btrfs_root *root,
45 struct btrfs_block_group_cache *block_group)
46{
47 struct btrfs_path *path;
48 int ret;
49 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -040050 struct extent_buffer *leaf;
Chris Masond1310b22008-01-24 16:13:08 -050051 struct extent_io_tree *free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040052 int slot;
Chris Masone37c9e62007-05-09 20:13:14 -040053 u64 last = 0;
54 u64 hole_size;
Yan7d7d6062007-09-14 16:15:28 -040055 u64 first_free;
Chris Masone37c9e62007-05-09 20:13:14 -040056 int found = 0;
57
Chris Mason00f5c792007-11-30 10:09:33 -050058 if (!block_group)
59 return 0;
60
Chris Masone37c9e62007-05-09 20:13:14 -040061 root = root->fs_info->extent_root;
Chris Masonf510cfe2007-10-15 16:14:48 -040062 free_space_cache = &root->fs_info->free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040063
64 if (block_group->cached)
65 return 0;
Chris Masonf510cfe2007-10-15 16:14:48 -040066
Chris Masone37c9e62007-05-09 20:13:14 -040067 path = btrfs_alloc_path();
68 if (!path)
69 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -040070
Chris Mason2cc58cf2007-08-27 16:49:44 -040071 path->reada = 2;
Yan7d7d6062007-09-14 16:15:28 -040072 first_free = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040073 key.objectid = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040074 key.offset = 0;
75 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
76 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
77 if (ret < 0)
78 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -040079 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
Yand548ee52008-01-03 13:56:30 -050080 if (ret < 0)
81 return ret;
82 if (ret == 0) {
83 leaf = path->nodes[0];
84 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
85 if (key.objectid + key.offset > first_free)
86 first_free = key.objectid + key.offset;
87 }
Chris Masone37c9e62007-05-09 20:13:14 -040088 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -040089 leaf = path->nodes[0];
Chris Masone37c9e62007-05-09 20:13:14 -040090 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -040091 if (slot >= btrfs_header_nritems(leaf)) {
Chris Masone37c9e62007-05-09 20:13:14 -040092 ret = btrfs_next_leaf(root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -040093 if (ret < 0)
94 goto err;
Chris Masonde428b62007-05-18 13:28:27 -040095 if (ret == 0) {
Chris Masone37c9e62007-05-09 20:13:14 -040096 continue;
Chris Masonde428b62007-05-18 13:28:27 -040097 } else {
Chris Masone37c9e62007-05-09 20:13:14 -040098 break;
99 }
100 }
Chris Mason5f39d392007-10-15 16:14:19 -0400101 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan7d7d6062007-09-14 16:15:28 -0400102 if (key.objectid < block_group->key.objectid) {
Yan7d7d6062007-09-14 16:15:28 -0400103 goto next;
104 }
Chris Masone37c9e62007-05-09 20:13:14 -0400105 if (key.objectid >= block_group->key.objectid +
106 block_group->key.offset) {
Yan7d7d6062007-09-14 16:15:28 -0400107 break;
108 }
109
110 if (btrfs_key_type(&key) == BTRFS_EXTENT_ITEM_KEY) {
111 if (!found) {
112 last = first_free;
113 found = 1;
Chris Masone37c9e62007-05-09 20:13:14 -0400114 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400115 if (key.objectid > last) {
116 hole_size = key.objectid - last;
117 set_extent_dirty(free_space_cache, last,
118 last + hole_size - 1,
119 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -0400120 }
Yan7d7d6062007-09-14 16:15:28 -0400121 last = key.objectid + key.offset;
Chris Masone37c9e62007-05-09 20:13:14 -0400122 }
Yan7d7d6062007-09-14 16:15:28 -0400123next:
Chris Masone37c9e62007-05-09 20:13:14 -0400124 path->slots[0]++;
125 }
126
Yan7d7d6062007-09-14 16:15:28 -0400127 if (!found)
128 last = first_free;
129 if (block_group->key.objectid +
130 block_group->key.offset > last) {
131 hole_size = block_group->key.objectid +
132 block_group->key.offset - last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400133 set_extent_dirty(free_space_cache, last,
134 last + hole_size - 1, GFP_NOFS);
Yan7d7d6062007-09-14 16:15:28 -0400135 }
Chris Masone37c9e62007-05-09 20:13:14 -0400136 block_group->cached = 1;
Chris Mason54aa1f42007-06-22 14:16:25 -0400137err:
Chris Masone37c9e62007-05-09 20:13:14 -0400138 btrfs_free_path(path);
139 return 0;
140}
141
Chris Mason5276aed2007-06-11 21:33:38 -0400142struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
143 btrfs_fs_info *info,
Chris Masondb945352007-10-15 16:15:53 -0400144 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400145{
Chris Masond1310b22008-01-24 16:13:08 -0500146 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -0400147 struct btrfs_block_group_cache *block_group = NULL;
148 u64 ptr;
149 u64 start;
150 u64 end;
Chris Masonbe744172007-05-06 10:15:01 -0400151 int ret;
152
Chris Mason96b51792007-10-15 16:15:19 -0400153 block_group_cache = &info->block_group_cache;
154 ret = find_first_extent_bit(block_group_cache,
Chris Masondb945352007-10-15 16:15:53 -0400155 bytenr, &start, &end,
Chris Mason0b86a832008-03-24 15:01:56 -0400156 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA |
157 BLOCK_GROUP_SYSTEM);
Chris Masonbe744172007-05-06 10:15:01 -0400158 if (ret) {
Chris Mason96b51792007-10-15 16:15:19 -0400159 return NULL;
Chris Masonbe744172007-05-06 10:15:01 -0400160 }
Chris Mason96b51792007-10-15 16:15:19 -0400161 ret = get_state_private(block_group_cache, start, &ptr);
162 if (ret)
163 return NULL;
164
Jens Axboeae2f5412007-10-19 09:22:59 -0400165 block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Yan5cf66422007-11-16 14:57:09 -0500166 if (block_group->key.objectid <= bytenr && bytenr <
Chris Mason96b51792007-10-15 16:15:19 -0400167 block_group->key.objectid + block_group->key.offset)
168 return block_group;
Chris Masonbe744172007-05-06 10:15:01 -0400169 return NULL;
170}
Chris Mason0b86a832008-03-24 15:01:56 -0400171
172static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
173{
Chris Mason593060d2008-03-25 16:50:33 -0400174 return (cache->flags & bits) == bits;
Chris Mason0b86a832008-03-24 15:01:56 -0400175}
176
177static int noinline find_search_start(struct btrfs_root *root,
Chris Mason98ed5172008-01-03 10:01:48 -0500178 struct btrfs_block_group_cache **cache_ret,
Chris Mason0b86a832008-03-24 15:01:56 -0400179 u64 *start_ret, int num, int data)
Chris Masone37c9e62007-05-09 20:13:14 -0400180{
Chris Masone37c9e62007-05-09 20:13:14 -0400181 int ret;
182 struct btrfs_block_group_cache *cache = *cache_ret;
Chris Masond7fc6402008-02-18 12:12:38 -0500183 struct extent_io_tree *free_space_cache;
Chris Mason7d1660d2008-03-24 15:02:03 -0400184 struct extent_state *state;
Chris Masone19caa52007-10-15 16:17:44 -0400185 u64 last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400186 u64 start = 0;
Chris Mason257d0ce2007-11-07 21:08:16 -0500187 u64 cache_miss = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500188 u64 total_fs_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -0400189 u64 search_start = *start_ret;
Chris Masonf84a8b32007-11-06 10:26:29 -0500190 int wrapped = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400191
Chris Mason0b86a832008-03-24 15:01:56 -0400192 if (!cache)
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500193 goto out;
Chris Masonc31f8832008-01-08 15:46:31 -0500194 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masond7fc6402008-02-18 12:12:38 -0500195 free_space_cache = &root->fs_info->free_space_cache;
196
Chris Masone37c9e62007-05-09 20:13:14 -0400197again:
Chris Mason54aa1f42007-06-22 14:16:25 -0400198 ret = cache_block_group(root, cache);
199 if (ret)
200 goto out;
Chris Masonf84a8b32007-11-06 10:26:29 -0500201
Chris Masone19caa52007-10-15 16:17:44 -0400202 last = max(search_start, cache->key.objectid);
Chris Mason0b86a832008-03-24 15:01:56 -0400203 if (!block_group_bits(cache, data)) {
204 goto new_group;
205 }
Chris Masone19caa52007-10-15 16:17:44 -0400206
Chris Mason7d1660d2008-03-24 15:02:03 -0400207 spin_lock_irq(&free_space_cache->lock);
208 state = find_first_extent_bit_state(free_space_cache, last, EXTENT_DIRTY);
Chris Masone37c9e62007-05-09 20:13:14 -0400209 while(1) {
Chris Mason7d1660d2008-03-24 15:02:03 -0400210 if (!state) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500211 if (!cache_miss)
212 cache_miss = last;
Chris Mason7d1660d2008-03-24 15:02:03 -0400213 spin_unlock_irq(&free_space_cache->lock);
Chris Masone19caa52007-10-15 16:17:44 -0400214 goto new_group;
215 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400216
Chris Mason7d1660d2008-03-24 15:02:03 -0400217 start = max(last, state->start);
218 last = state->end + 1;
Chris Mason257d0ce2007-11-07 21:08:16 -0500219 if (last - start < num) {
220 if (last == cache->key.objectid + cache->key.offset)
221 cache_miss = start;
Chris Mason7d1660d2008-03-24 15:02:03 -0400222 do {
223 state = extent_state_next(state);
224 } while(state && !(state->state & EXTENT_DIRTY));
Chris Masonf510cfe2007-10-15 16:14:48 -0400225 continue;
Chris Mason257d0ce2007-11-07 21:08:16 -0500226 }
Chris Mason7d1660d2008-03-24 15:02:03 -0400227 spin_unlock_irq(&free_space_cache->lock);
Chris Mason0b86a832008-03-24 15:01:56 -0400228 if (start + num > cache->key.objectid + cache->key.offset)
Chris Masone37c9e62007-05-09 20:13:14 -0400229 goto new_group;
Chris Masonc31f8832008-01-08 15:46:31 -0500230 if (start + num > total_fs_bytes)
231 goto new_group;
Chris Mason8790d502008-04-03 16:29:03 -0400232 if (!block_group_bits(cache, data)) {
Chris Mason611f0e02008-04-03 16:29:03 -0400233 printk("block group bits don't match %Lu %d\n", cache->flags, data);
Chris Mason8790d502008-04-03 16:29:03 -0400234 }
Chris Mason0b86a832008-03-24 15:01:56 -0400235 *start_ret = start;
236 return 0;
Chris Mason8790d502008-04-03 16:29:03 -0400237 }
238out:
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500239 cache = btrfs_lookup_block_group(root->fs_info, search_start);
240 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -0400241 printk("Unable to find block group for %Lu\n", search_start);
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500242 WARN_ON(1);
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500243 }
Chris Mason0b86a832008-03-24 15:01:56 -0400244 return -ENOSPC;
Chris Masone37c9e62007-05-09 20:13:14 -0400245
246new_group:
Chris Masone19caa52007-10-15 16:17:44 -0400247 last = cache->key.objectid + cache->key.offset;
Chris Masonf84a8b32007-11-06 10:26:29 -0500248wrapped:
Chris Masone19caa52007-10-15 16:17:44 -0400249 cache = btrfs_lookup_block_group(root->fs_info, last);
Chris Masonc31f8832008-01-08 15:46:31 -0500250 if (!cache || cache->key.objectid >= total_fs_bytes) {
Chris Mason0e4de582007-11-26 10:55:49 -0500251no_cache:
Chris Masonf84a8b32007-11-06 10:26:29 -0500252 if (!wrapped) {
253 wrapped = 1;
254 last = search_start;
Chris Masonf84a8b32007-11-06 10:26:29 -0500255 goto wrapped;
256 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500257 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -0400258 }
Chris Mason257d0ce2007-11-07 21:08:16 -0500259 if (cache_miss && !cache->cached) {
260 cache_block_group(root, cache);
261 last = cache_miss;
Chris Mason257d0ce2007-11-07 21:08:16 -0500262 cache = btrfs_lookup_block_group(root->fs_info, last);
263 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500264 cache = btrfs_find_block_group(root, cache, last, data, 0);
Chris Mason0e4de582007-11-26 10:55:49 -0500265 if (!cache)
266 goto no_cache;
Chris Masone37c9e62007-05-09 20:13:14 -0400267 *cache_ret = cache;
Chris Mason257d0ce2007-11-07 21:08:16 -0500268 cache_miss = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400269 goto again;
270}
271
Chris Mason84f54cf2007-06-12 07:43:08 -0400272static u64 div_factor(u64 num, int factor)
273{
Chris Mason257d0ce2007-11-07 21:08:16 -0500274 if (factor == 10)
275 return num;
Chris Mason84f54cf2007-06-12 07:43:08 -0400276 num *= factor;
277 do_div(num, 10);
278 return num;
279}
280
Chris Mason6324fbf2008-03-24 15:01:59 -0400281static int block_group_state_bits(u64 flags)
282{
283 int bits = 0;
284 if (flags & BTRFS_BLOCK_GROUP_DATA)
285 bits |= BLOCK_GROUP_DATA;
286 if (flags & BTRFS_BLOCK_GROUP_METADATA)
287 bits |= BLOCK_GROUP_METADATA;
288 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
289 bits |= BLOCK_GROUP_SYSTEM;
290 return bits;
291}
292
Chris Mason31f3c992007-04-30 15:25:45 -0400293struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
294 struct btrfs_block_group_cache
Chris Masonbe744172007-05-06 10:15:01 -0400295 *hint, u64 search_start,
Chris Masonde428b62007-05-18 13:28:27 -0400296 int data, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400297{
Chris Mason96b51792007-10-15 16:15:19 -0400298 struct btrfs_block_group_cache *cache;
Chris Masond1310b22008-01-24 16:13:08 -0500299 struct extent_io_tree *block_group_cache;
Chris Mason31f3c992007-04-30 15:25:45 -0400300 struct btrfs_block_group_cache *found_group = NULL;
Chris Masoncd1bc462007-04-27 10:08:34 -0400301 struct btrfs_fs_info *info = root->fs_info;
302 u64 used;
Chris Mason31f3c992007-04-30 15:25:45 -0400303 u64 last = 0;
304 u64 hint_last;
Chris Mason96b51792007-10-15 16:15:19 -0400305 u64 start;
306 u64 end;
307 u64 free_check;
308 u64 ptr;
Chris Masonc31f8832008-01-08 15:46:31 -0500309 u64 total_fs_bytes;
Chris Mason96b51792007-10-15 16:15:19 -0400310 int bit;
Chris Masoncd1bc462007-04-27 10:08:34 -0400311 int ret;
Chris Mason31f3c992007-04-30 15:25:45 -0400312 int full_search = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400313 int factor = 8;
314
Chris Mason96b51792007-10-15 16:15:19 -0400315 block_group_cache = &info->block_group_cache;
Chris Masonc31f8832008-01-08 15:46:31 -0500316 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Mason96b51792007-10-15 16:15:19 -0400317
Chris Masonde428b62007-05-18 13:28:27 -0400318 if (!owner)
Chris Masonf84a8b32007-11-06 10:26:29 -0500319 factor = 8;
Chris Masonbe744172007-05-06 10:15:01 -0400320
Chris Mason6324fbf2008-03-24 15:01:59 -0400321 bit = block_group_state_bits(data);
Chris Masonbe744172007-05-06 10:15:01 -0400322
Chris Masonc31f8832008-01-08 15:46:31 -0500323 if (search_start && search_start < total_fs_bytes) {
Chris Masonbe744172007-05-06 10:15:01 -0400324 struct btrfs_block_group_cache *shint;
Chris Mason5276aed2007-06-11 21:33:38 -0400325 shint = btrfs_lookup_block_group(info, search_start);
Chris Mason0b86a832008-03-24 15:01:56 -0400326 if (shint && block_group_bits(shint, data)) {
Chris Masonbe744172007-05-06 10:15:01 -0400327 used = btrfs_block_group_used(&shint->item);
Yan324ae4d2007-11-16 14:57:08 -0500328 if (used + shint->pinned <
329 div_factor(shint->key.offset, factor)) {
Chris Masonbe744172007-05-06 10:15:01 -0400330 return shint;
331 }
332 }
333 }
Chris Mason0b86a832008-03-24 15:01:56 -0400334 if (hint && block_group_bits(hint, data) &&
335 hint->key.objectid < total_fs_bytes) {
Chris Mason31f3c992007-04-30 15:25:45 -0400336 used = btrfs_block_group_used(&hint->item);
Yan324ae4d2007-11-16 14:57:08 -0500337 if (used + hint->pinned <
338 div_factor(hint->key.offset, factor)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400339 return hint;
340 }
Chris Masone19caa52007-10-15 16:17:44 -0400341 last = hint->key.objectid + hint->key.offset;
Chris Mason31f3c992007-04-30 15:25:45 -0400342 hint_last = last;
343 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400344 if (hint)
345 hint_last = max(hint->key.objectid, search_start);
346 else
347 hint_last = search_start;
348
Chris Masonc31f8832008-01-08 15:46:31 -0500349 if (hint_last >= total_fs_bytes)
350 hint_last = search_start;
Chris Masone37c9e62007-05-09 20:13:14 -0400351 last = hint_last;
Chris Mason31f3c992007-04-30 15:25:45 -0400352 }
Chris Mason31f3c992007-04-30 15:25:45 -0400353again:
Chris Masoncd1bc462007-04-27 10:08:34 -0400354 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400355 ret = find_first_extent_bit(block_group_cache, last,
356 &start, &end, bit);
357 if (ret)
Chris Masoncd1bc462007-04-27 10:08:34 -0400358 break;
Chris Mason96b51792007-10-15 16:15:19 -0400359
360 ret = get_state_private(block_group_cache, start, &ptr);
361 if (ret)
362 break;
363
Jens Axboeae2f5412007-10-19 09:22:59 -0400364 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400365 last = cache->key.objectid + cache->key.offset;
366 used = btrfs_block_group_used(&cache->item);
367
Chris Masonc31f8832008-01-08 15:46:31 -0500368 if (cache->key.objectid > total_fs_bytes)
369 break;
370
Chris Mason8790d502008-04-03 16:29:03 -0400371 if (block_group_bits(cache, data)) {
372 if (full_search)
373 free_check = cache->key.offset;
374 else
375 free_check = div_factor(cache->key.offset,
376 factor);
Chris Mason6324fbf2008-03-24 15:01:59 -0400377
Chris Mason8790d502008-04-03 16:29:03 -0400378 if (used + cache->pinned < free_check) {
379 found_group = cache;
380 goto found;
381 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400382 }
Chris Masonde428b62007-05-18 13:28:27 -0400383 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400384 }
Chris Mason31f3c992007-04-30 15:25:45 -0400385 if (!full_search) {
Chris Masonbe744172007-05-06 10:15:01 -0400386 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400387 full_search = 1;
388 goto again;
389 }
Chris Masonbe744172007-05-06 10:15:01 -0400390found:
Chris Mason31f3c992007-04-30 15:25:45 -0400391 return found_group;
Chris Masoncd1bc462007-04-27 10:08:34 -0400392}
393
Chris Mason7bb86312007-12-11 09:25:06 -0500394static u64 hash_extent_ref(u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500395 u64 owner, u64 owner_offset)
396{
397 u32 high_crc = ~(u32)0;
398 u32 low_crc = ~(u32)0;
399 __le64 lenum;
Chris Mason74493f72007-12-11 09:25:06 -0500400 lenum = cpu_to_le64(root_objectid);
Miguela5eb62e2008-04-11 15:45:51 -0400401 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
Chris Mason7bb86312007-12-11 09:25:06 -0500402 lenum = cpu_to_le64(ref_generation);
Miguela5eb62e2008-04-11 15:45:51 -0400403 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500404 if (owner >= BTRFS_FIRST_FREE_OBJECTID) {
405 lenum = cpu_to_le64(owner);
Miguela5eb62e2008-04-11 15:45:51 -0400406 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500407 lenum = cpu_to_le64(owner_offset);
Miguela5eb62e2008-04-11 15:45:51 -0400408 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500409 }
Chris Mason74493f72007-12-11 09:25:06 -0500410 return ((u64)high_crc << 32) | (u64)low_crc;
411}
412
Chris Mason7bb86312007-12-11 09:25:06 -0500413static int match_extent_ref(struct extent_buffer *leaf,
414 struct btrfs_extent_ref *disk_ref,
415 struct btrfs_extent_ref *cpu_ref)
416{
417 int ret;
418 int len;
419
420 if (cpu_ref->objectid)
421 len = sizeof(*cpu_ref);
422 else
423 len = 2 * sizeof(u64);
424 ret = memcmp_extent_buffer(leaf, cpu_ref, (unsigned long)disk_ref,
425 len);
426 return ret == 0;
427}
428
Chris Mason98ed5172008-01-03 10:01:48 -0500429static int noinline lookup_extent_backref(struct btrfs_trans_handle *trans,
430 struct btrfs_root *root,
431 struct btrfs_path *path, u64 bytenr,
432 u64 root_objectid,
433 u64 ref_generation, u64 owner,
434 u64 owner_offset, int del)
Chris Mason7bb86312007-12-11 09:25:06 -0500435{
436 u64 hash;
437 struct btrfs_key key;
438 struct btrfs_key found_key;
439 struct btrfs_extent_ref ref;
440 struct extent_buffer *leaf;
441 struct btrfs_extent_ref *disk_ref;
442 int ret;
443 int ret2;
444
445 btrfs_set_stack_ref_root(&ref, root_objectid);
446 btrfs_set_stack_ref_generation(&ref, ref_generation);
447 btrfs_set_stack_ref_objectid(&ref, owner);
448 btrfs_set_stack_ref_offset(&ref, owner_offset);
449
450 hash = hash_extent_ref(root_objectid, ref_generation, owner,
451 owner_offset);
452 key.offset = hash;
453 key.objectid = bytenr;
454 key.type = BTRFS_EXTENT_REF_KEY;
455
456 while (1) {
457 ret = btrfs_search_slot(trans, root, &key, path,
458 del ? -1 : 0, del);
459 if (ret < 0)
460 goto out;
461 leaf = path->nodes[0];
462 if (ret != 0) {
463 u32 nritems = btrfs_header_nritems(leaf);
464 if (path->slots[0] >= nritems) {
465 ret2 = btrfs_next_leaf(root, path);
466 if (ret2)
467 goto out;
468 leaf = path->nodes[0];
469 }
470 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
471 if (found_key.objectid != bytenr ||
472 found_key.type != BTRFS_EXTENT_REF_KEY)
473 goto out;
474 key.offset = found_key.offset;
475 if (del) {
476 btrfs_release_path(root, path);
477 continue;
478 }
479 }
480 disk_ref = btrfs_item_ptr(path->nodes[0],
481 path->slots[0],
482 struct btrfs_extent_ref);
483 if (match_extent_ref(path->nodes[0], disk_ref, &ref)) {
484 ret = 0;
485 goto out;
486 }
487 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
488 key.offset = found_key.offset + 1;
489 btrfs_release_path(root, path);
490 }
491out:
492 return ret;
493}
494
Chris Masond8d5f3e2007-12-11 12:42:00 -0500495/*
496 * Back reference rules. Back refs have three main goals:
497 *
498 * 1) differentiate between all holders of references to an extent so that
499 * when a reference is dropped we can make sure it was a valid reference
500 * before freeing the extent.
501 *
502 * 2) Provide enough information to quickly find the holders of an extent
503 * if we notice a given block is corrupted or bad.
504 *
505 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
506 * maintenance. This is actually the same as #2, but with a slightly
507 * different use case.
508 *
509 * File extents can be referenced by:
510 *
511 * - multiple snapshots, subvolumes, or different generations in one subvol
512 * - different files inside a single subvolume (in theory, not implemented yet)
513 * - different offsets inside a file (bookend extents in file.c)
514 *
515 * The extent ref structure has fields for:
516 *
517 * - Objectid of the subvolume root
518 * - Generation number of the tree holding the reference
519 * - objectid of the file holding the reference
520 * - offset in the file corresponding to the key holding the reference
521 *
522 * When a file extent is allocated the fields are filled in:
523 * (root_key.objectid, trans->transid, inode objectid, offset in file)
524 *
525 * When a leaf is cow'd new references are added for every file extent found
526 * in the leaf. It looks the same as the create case, but trans->transid
527 * will be different when the block is cow'd.
528 *
529 * (root_key.objectid, trans->transid, inode objectid, offset in file)
530 *
531 * When a file extent is removed either during snapshot deletion or file
532 * truncation, the corresponding back reference is found
533 * by searching for:
534 *
535 * (btrfs_header_owner(leaf), btrfs_header_generation(leaf),
536 * inode objectid, offset in file)
537 *
538 * Btree extents can be referenced by:
539 *
540 * - Different subvolumes
541 * - Different generations of the same subvolume
542 *
543 * Storing sufficient information for a full reverse mapping of a btree
544 * block would require storing the lowest key of the block in the backref,
545 * and it would require updating that lowest key either before write out or
546 * every time it changed. Instead, the objectid of the lowest key is stored
547 * along with the level of the tree block. This provides a hint
548 * about where in the btree the block can be found. Searches through the
549 * btree only need to look for a pointer to that block, so they stop one
550 * level higher than the level recorded in the backref.
551 *
552 * Some btrees do not do reference counting on their extents. These
553 * include the extent tree and the tree of tree roots. Backrefs for these
554 * trees always have a generation of zero.
555 *
556 * When a tree block is created, back references are inserted:
557 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500558 * (root->root_key.objectid, trans->transid or zero, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500559 *
560 * When a tree block is cow'd in a reference counted root,
561 * new back references are added for all the blocks it points to.
562 * These are of the form (trans->transid will have increased since creation):
563 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500564 * (root->root_key.objectid, trans->transid, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500565 *
566 * Because the lowest_key_objectid and the level are just hints
567 * they are not used when backrefs are deleted. When a backref is deleted:
568 *
569 * if backref was for a tree root:
570 * root_objectid = root->root_key.objectid
571 * else
572 * root_objectid = btrfs_header_owner(parent)
573 *
574 * (root_objectid, btrfs_header_generation(parent) or zero, 0, 0)
575 *
576 * Back Reference Key hashing:
577 *
578 * Back references have four fields, each 64 bits long. Unfortunately,
579 * This is hashed into a single 64 bit number and placed into the key offset.
580 * The key objectid corresponds to the first byte in the extent, and the
581 * key type is set to BTRFS_EXTENT_REF_KEY
582 */
Chris Mason7bb86312007-12-11 09:25:06 -0500583int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
584 struct btrfs_root *root,
585 struct btrfs_path *path, u64 bytenr,
586 u64 root_objectid, u64 ref_generation,
587 u64 owner, u64 owner_offset)
Chris Mason74493f72007-12-11 09:25:06 -0500588{
589 u64 hash;
590 struct btrfs_key key;
591 struct btrfs_extent_ref ref;
Chris Mason7bb86312007-12-11 09:25:06 -0500592 struct btrfs_extent_ref *disk_ref;
Chris Mason74493f72007-12-11 09:25:06 -0500593 int ret;
594
595 btrfs_set_stack_ref_root(&ref, root_objectid);
Chris Mason7bb86312007-12-11 09:25:06 -0500596 btrfs_set_stack_ref_generation(&ref, ref_generation);
Chris Mason74493f72007-12-11 09:25:06 -0500597 btrfs_set_stack_ref_objectid(&ref, owner);
598 btrfs_set_stack_ref_offset(&ref, owner_offset);
599
Chris Mason7bb86312007-12-11 09:25:06 -0500600 hash = hash_extent_ref(root_objectid, ref_generation, owner,
601 owner_offset);
Chris Mason74493f72007-12-11 09:25:06 -0500602 key.offset = hash;
603 key.objectid = bytenr;
604 key.type = BTRFS_EXTENT_REF_KEY;
605
606 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(ref));
607 while (ret == -EEXIST) {
Chris Mason7bb86312007-12-11 09:25:06 -0500608 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
609 struct btrfs_extent_ref);
610 if (match_extent_ref(path->nodes[0], disk_ref, &ref))
611 goto out;
612 key.offset++;
613 btrfs_release_path(root, path);
614 ret = btrfs_insert_empty_item(trans, root, path, &key,
615 sizeof(ref));
Chris Mason74493f72007-12-11 09:25:06 -0500616 }
Chris Mason7bb86312007-12-11 09:25:06 -0500617 if (ret)
618 goto out;
619 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
620 struct btrfs_extent_ref);
621 write_extent_buffer(path->nodes[0], &ref, (unsigned long)disk_ref,
622 sizeof(ref));
623 btrfs_mark_buffer_dirty(path->nodes[0]);
624out:
625 btrfs_release_path(root, path);
626 return ret;
Chris Mason74493f72007-12-11 09:25:06 -0500627}
628
Chris Masonb18c6682007-04-17 13:26:50 -0400629int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
630 struct btrfs_root *root,
Chris Mason74493f72007-12-11 09:25:06 -0500631 u64 bytenr, u64 num_bytes,
Chris Mason7bb86312007-12-11 09:25:06 -0500632 u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500633 u64 owner, u64 owner_offset)
Chris Mason02217ed2007-03-02 16:08:05 -0500634{
Chris Mason5caf2a02007-04-02 11:20:42 -0400635 struct btrfs_path *path;
Chris Mason02217ed2007-03-02 16:08:05 -0500636 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400637 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400638 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400639 struct btrfs_extent_item *item;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400640 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500641
Chris Masondb945352007-10-15 16:15:53 -0400642 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400643 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400644 if (!path)
645 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -0400646
Chris Masonb0331a42008-01-08 15:46:31 -0500647 path->reada = 0;
Chris Masondb945352007-10-15 16:15:53 -0400648 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -0400649 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -0400650 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -0400651 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400652 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400653 if (ret < 0)
654 return ret;
Chris Masona429e512007-04-18 16:15:28 -0400655 if (ret != 0) {
Chris Masona28ec192007-03-06 20:08:01 -0500656 BUG();
Chris Masona429e512007-04-18 16:15:28 -0400657 }
Chris Mason02217ed2007-03-02 16:08:05 -0500658 BUG_ON(ret != 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400659 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400660 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400661 refs = btrfs_extent_refs(l, item);
662 btrfs_set_extent_refs(l, item, refs + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -0400663 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masona28ec192007-03-06 20:08:01 -0500664
Chris Mason5caf2a02007-04-02 11:20:42 -0400665 btrfs_release_path(root->fs_info->extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -0500666
Chris Masonb0331a42008-01-08 15:46:31 -0500667 path->reada = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500668 ret = btrfs_insert_extent_backref(trans, root->fs_info->extent_root,
669 path, bytenr, root_objectid,
670 ref_generation, owner, owner_offset);
671 BUG_ON(ret);
Chris Mason9f5fae22007-03-20 14:38:32 -0400672 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400673 del_pending_extents(trans, root->fs_info->extent_root);
Chris Mason74493f72007-12-11 09:25:06 -0500674
675 btrfs_free_path(path);
Chris Mason02217ed2007-03-02 16:08:05 -0500676 return 0;
677}
678
Chris Masone9d0b132007-08-10 14:06:19 -0400679int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
680 struct btrfs_root *root)
681{
682 finish_current_insert(trans, root->fs_info->extent_root);
683 del_pending_extents(trans, root->fs_info->extent_root);
684 return 0;
685}
686
Chris Masonb18c6682007-04-17 13:26:50 -0400687static int lookup_extent_ref(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -0400688 struct btrfs_root *root, u64 bytenr,
689 u64 num_bytes, u32 *refs)
Chris Masona28ec192007-03-06 20:08:01 -0500690{
Chris Mason5caf2a02007-04-02 11:20:42 -0400691 struct btrfs_path *path;
Chris Masona28ec192007-03-06 20:08:01 -0500692 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400693 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400694 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400695 struct btrfs_extent_item *item;
Chris Mason5caf2a02007-04-02 11:20:42 -0400696
Chris Masondb945352007-10-15 16:15:53 -0400697 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400698 path = btrfs_alloc_path();
Chris Masonb0331a42008-01-08 15:46:31 -0500699 path->reada = 0;
Chris Masondb945352007-10-15 16:15:53 -0400700 key.objectid = bytenr;
701 key.offset = num_bytes;
Chris Mason62e27492007-03-15 12:56:47 -0400702 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5caf2a02007-04-02 11:20:42 -0400703 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400704 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400705 if (ret < 0)
706 goto out;
Chris Mason5f39d392007-10-15 16:14:19 -0400707 if (ret != 0) {
708 btrfs_print_leaf(root, path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400709 printk("failed to find block number %Lu\n", bytenr);
Chris Masona28ec192007-03-06 20:08:01 -0500710 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -0400711 }
712 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400713 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400714 *refs = btrfs_extent_refs(l, item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400715out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400716 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -0500717 return 0;
718}
719
Chris Masonbe20aa92007-12-17 20:14:01 -0500720u32 btrfs_count_snapshots_in_path(struct btrfs_root *root,
721 struct btrfs_path *count_path,
722 u64 first_extent)
723{
724 struct btrfs_root *extent_root = root->fs_info->extent_root;
725 struct btrfs_path *path;
726 u64 bytenr;
727 u64 found_objectid;
Chris Mason56b453c2008-01-03 09:08:27 -0500728 u64 root_objectid = root->root_key.objectid;
Chris Masonbe20aa92007-12-17 20:14:01 -0500729 u32 total_count = 0;
730 u32 cur_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500731 u32 nritems;
732 int ret;
733 struct btrfs_key key;
734 struct btrfs_key found_key;
735 struct extent_buffer *l;
736 struct btrfs_extent_item *item;
737 struct btrfs_extent_ref *ref_item;
738 int level = -1;
739
740 path = btrfs_alloc_path();
741again:
742 if (level == -1)
743 bytenr = first_extent;
744 else
745 bytenr = count_path->nodes[level]->start;
746
747 cur_count = 0;
748 key.objectid = bytenr;
749 key.offset = 0;
750
751 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
752 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
753 if (ret < 0)
754 goto out;
755 BUG_ON(ret == 0);
756
757 l = path->nodes[0];
758 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
759
760 if (found_key.objectid != bytenr ||
761 found_key.type != BTRFS_EXTENT_ITEM_KEY) {
762 goto out;
763 }
764
765 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Masonbe20aa92007-12-17 20:14:01 -0500766 while (1) {
Chris Masonbd098352008-01-03 13:23:19 -0500767 l = path->nodes[0];
Chris Masonbe20aa92007-12-17 20:14:01 -0500768 nritems = btrfs_header_nritems(l);
769 if (path->slots[0] >= nritems) {
770 ret = btrfs_next_leaf(extent_root, path);
771 if (ret == 0)
772 continue;
773 break;
774 }
775 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
776 if (found_key.objectid != bytenr)
777 break;
Chris Masonbd098352008-01-03 13:23:19 -0500778
Chris Masonbe20aa92007-12-17 20:14:01 -0500779 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
780 path->slots[0]++;
781 continue;
782 }
783
784 cur_count++;
785 ref_item = btrfs_item_ptr(l, path->slots[0],
786 struct btrfs_extent_ref);
787 found_objectid = btrfs_ref_root(l, ref_item);
788
Chris Mason56b453c2008-01-03 09:08:27 -0500789 if (found_objectid != root_objectid) {
790 total_count = 2;
Chris Mason4313b392008-01-03 09:08:48 -0500791 goto out;
Chris Mason56b453c2008-01-03 09:08:27 -0500792 }
793 total_count = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500794 path->slots[0]++;
795 }
796 if (cur_count == 0) {
797 total_count = 0;
798 goto out;
799 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500800 if (level >= 0 && root->node == count_path->nodes[level])
801 goto out;
802 level++;
803 btrfs_release_path(root, path);
804 goto again;
805
806out:
807 btrfs_free_path(path);
808 return total_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500809}
Chris Masonc5739bb2007-04-10 09:27:04 -0400810int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -0500811 struct btrfs_root *root, u64 owner_objectid)
Chris Masonc5739bb2007-04-10 09:27:04 -0400812{
Chris Mason7bb86312007-12-11 09:25:06 -0500813 u64 generation;
814 u64 key_objectid;
815 u64 level;
816 u32 nritems;
817 struct btrfs_disk_key disk_key;
818
819 level = btrfs_header_level(root->node);
820 generation = trans->transid;
821 nritems = btrfs_header_nritems(root->node);
822 if (nritems > 0) {
823 if (level == 0)
824 btrfs_item_key(root->node, &disk_key, 0);
825 else
826 btrfs_node_key(root->node, &disk_key, 0);
827 key_objectid = btrfs_disk_key_objectid(&disk_key);
828 } else {
829 key_objectid = 0;
830 }
Chris Masondb945352007-10-15 16:15:53 -0400831 return btrfs_inc_extent_ref(trans, root, root->node->start,
Chris Mason7bb86312007-12-11 09:25:06 -0500832 root->node->len, owner_objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500833 generation, level, key_objectid);
Chris Masonc5739bb2007-04-10 09:27:04 -0400834}
835
Chris Masone089f052007-03-16 16:20:31 -0400836int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400837 struct extent_buffer *buf)
Chris Mason02217ed2007-03-02 16:08:05 -0500838{
Chris Masondb945352007-10-15 16:15:53 -0400839 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400840 u32 nritems;
841 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -0400842 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -0500843 int i;
Chris Masondb945352007-10-15 16:15:53 -0400844 int level;
Chris Mason6407bf62007-03-27 06:33:00 -0400845 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400846 int faili;
Chris Masona28ec192007-03-06 20:08:01 -0500847
Chris Mason3768f362007-03-13 16:47:54 -0400848 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500849 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400850
Chris Masondb945352007-10-15 16:15:53 -0400851 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400852 nritems = btrfs_header_nritems(buf);
853 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400854 if (level == 0) {
855 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400856 btrfs_item_key_to_cpu(buf, &key, i);
857 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -0400858 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400859 fi = btrfs_item_ptr(buf, i,
Chris Mason6407bf62007-03-27 06:33:00 -0400860 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400861 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason236454d2007-04-19 13:37:44 -0400862 BTRFS_FILE_EXTENT_INLINE)
863 continue;
Chris Masondb945352007-10-15 16:15:53 -0400864 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
865 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -0400866 continue;
Chris Masondb945352007-10-15 16:15:53 -0400867 ret = btrfs_inc_extent_ref(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500868 btrfs_file_extent_disk_num_bytes(buf, fi),
869 root->root_key.objectid, trans->transid,
870 key.objectid, key.offset);
Chris Mason54aa1f42007-06-22 14:16:25 -0400871 if (ret) {
872 faili = i;
873 goto fail;
874 }
Chris Mason6407bf62007-03-27 06:33:00 -0400875 } else {
Chris Masondb945352007-10-15 16:15:53 -0400876 bytenr = btrfs_node_blockptr(buf, i);
Chris Mason6caab482007-12-13 09:48:07 -0500877 btrfs_node_key_to_cpu(buf, &key, i);
Chris Masondb945352007-10-15 16:15:53 -0400878 ret = btrfs_inc_extent_ref(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500879 btrfs_level_size(root, level - 1),
880 root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500881 trans->transid,
882 level - 1, key.objectid);
Chris Mason54aa1f42007-06-22 14:16:25 -0400883 if (ret) {
884 faili = i;
885 goto fail;
886 }
Chris Mason6407bf62007-03-27 06:33:00 -0400887 }
Chris Mason02217ed2007-03-02 16:08:05 -0500888 }
889 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400890fail:
Chris Masonccd467d2007-06-28 15:57:36 -0400891 WARN_ON(1);
Chris Mason7bb86312007-12-11 09:25:06 -0500892#if 0
Chris Mason54aa1f42007-06-22 14:16:25 -0400893 for (i =0; i < faili; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400894 if (level == 0) {
895 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400896 btrfs_item_key_to_cpu(buf, &key, i);
897 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -0400898 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400899 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -0400900 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400901 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -0400902 BTRFS_FILE_EXTENT_INLINE)
903 continue;
Chris Masondb945352007-10-15 16:15:53 -0400904 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
905 if (disk_bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -0400906 continue;
Chris Masondb945352007-10-15 16:15:53 -0400907 err = btrfs_free_extent(trans, root, disk_bytenr,
908 btrfs_file_extent_disk_num_bytes(buf,
Chris Mason5f39d392007-10-15 16:14:19 -0400909 fi), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400910 BUG_ON(err);
911 } else {
Chris Masondb945352007-10-15 16:15:53 -0400912 bytenr = btrfs_node_blockptr(buf, i);
913 err = btrfs_free_extent(trans, root, bytenr,
914 btrfs_level_size(root, level - 1), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400915 BUG_ON(err);
916 }
917 }
Chris Mason7bb86312007-12-11 09:25:06 -0500918#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400919 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -0500920}
921
Chris Mason9078a3e2007-04-26 16:46:15 -0400922static int write_one_cache_group(struct btrfs_trans_handle *trans,
923 struct btrfs_root *root,
924 struct btrfs_path *path,
925 struct btrfs_block_group_cache *cache)
926{
927 int ret;
928 int pending_ret;
929 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400930 unsigned long bi;
931 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -0400932
Chris Mason9078a3e2007-04-26 16:46:15 -0400933 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400934 if (ret < 0)
935 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -0400936 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400937
938 leaf = path->nodes[0];
939 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
940 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
941 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -0400942 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400943fail:
Chris Mason9078a3e2007-04-26 16:46:15 -0400944 finish_current_insert(trans, extent_root);
945 pending_ret = del_pending_extents(trans, extent_root);
946 if (ret)
947 return ret;
948 if (pending_ret)
949 return pending_ret;
950 return 0;
951
952}
953
Chris Mason96b51792007-10-15 16:15:19 -0400954int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
955 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -0400956{
Chris Masond1310b22008-01-24 16:13:08 -0500957 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -0400958 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400959 int ret;
960 int err = 0;
961 int werr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -0400962 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -0400963 u64 last = 0;
964 u64 start;
965 u64 end;
966 u64 ptr;
Chris Mason9078a3e2007-04-26 16:46:15 -0400967
Chris Mason96b51792007-10-15 16:15:19 -0400968 block_group_cache = &root->fs_info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400969 path = btrfs_alloc_path();
970 if (!path)
971 return -ENOMEM;
972
973 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400974 ret = find_first_extent_bit(block_group_cache, last,
975 &start, &end, BLOCK_GROUP_DIRTY);
976 if (ret)
Chris Mason9078a3e2007-04-26 16:46:15 -0400977 break;
Chris Mason54aa1f42007-06-22 14:16:25 -0400978
Chris Mason96b51792007-10-15 16:15:19 -0400979 last = end + 1;
980 ret = get_state_private(block_group_cache, start, &ptr);
981 if (ret)
982 break;
983
Jens Axboeae2f5412007-10-19 09:22:59 -0400984 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400985 err = write_one_cache_group(trans, root,
986 path, cache);
987 /*
988 * if we fail to write the cache group, we want
989 * to keep it marked dirty in hopes that a later
990 * write will work
991 */
992 if (err) {
993 werr = err;
994 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -0400995 }
Chris Mason96b51792007-10-15 16:15:19 -0400996 clear_extent_bits(block_group_cache, start, end,
997 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -0400998 }
999 btrfs_free_path(path);
1000 return werr;
1001}
1002
Chris Mason6324fbf2008-03-24 15:01:59 -04001003static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
1004 u64 flags)
1005{
1006 struct list_head *head = &info->space_info;
1007 struct list_head *cur;
1008 struct btrfs_space_info *found;
1009 list_for_each(cur, head) {
1010 found = list_entry(cur, struct btrfs_space_info, list);
1011 if (found->flags == flags)
1012 return found;
1013 }
1014 return NULL;
1015
1016}
1017
Chris Mason593060d2008-03-25 16:50:33 -04001018static int update_space_info(struct btrfs_fs_info *info, u64 flags,
1019 u64 total_bytes, u64 bytes_used,
1020 struct btrfs_space_info **space_info)
1021{
1022 struct btrfs_space_info *found;
1023
1024 found = __find_space_info(info, flags);
1025 if (found) {
1026 found->total_bytes += total_bytes;
1027 found->bytes_used += bytes_used;
1028 WARN_ON(found->total_bytes < found->bytes_used);
1029 *space_info = found;
1030 return 0;
1031 }
1032 found = kmalloc(sizeof(*found), GFP_NOFS);
1033 if (!found)
1034 return -ENOMEM;
1035
1036 list_add(&found->list, &info->space_info);
1037 found->flags = flags;
1038 found->total_bytes = total_bytes;
1039 found->bytes_used = bytes_used;
1040 found->bytes_pinned = 0;
1041 found->full = 0;
1042 *space_info = found;
1043 return 0;
1044}
1045
Chris Mason8790d502008-04-03 16:29:03 -04001046static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
1047{
1048 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
Chris Mason611f0e02008-04-03 16:29:03 -04001049 BTRFS_BLOCK_GROUP_RAID1 |
1050 BTRFS_BLOCK_GROUP_DUP);
Chris Mason8790d502008-04-03 16:29:03 -04001051 if (extra_flags) {
1052 if (flags & BTRFS_BLOCK_GROUP_DATA)
1053 fs_info->avail_data_alloc_bits |= extra_flags;
1054 if (flags & BTRFS_BLOCK_GROUP_METADATA)
1055 fs_info->avail_metadata_alloc_bits |= extra_flags;
1056 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
1057 fs_info->avail_system_alloc_bits |= extra_flags;
1058 }
1059}
Chris Mason593060d2008-03-25 16:50:33 -04001060
Chris Mason6324fbf2008-03-24 15:01:59 -04001061static int do_chunk_alloc(struct btrfs_trans_handle *trans,
1062 struct btrfs_root *extent_root, u64 alloc_bytes,
1063 u64 flags)
1064{
1065 struct btrfs_space_info *space_info;
1066 u64 thresh;
1067 u64 start;
1068 u64 num_bytes;
1069 int ret;
1070
1071 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04001072 if (!space_info) {
1073 ret = update_space_info(extent_root->fs_info, flags,
1074 0, 0, &space_info);
1075 BUG_ON(ret);
1076 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001077 BUG_ON(!space_info);
1078
1079 if (space_info->full)
1080 return 0;
1081
Chris Mason8790d502008-04-03 16:29:03 -04001082 thresh = div_factor(space_info->total_bytes, 6);
Chris Mason6324fbf2008-03-24 15:01:59 -04001083 if ((space_info->bytes_used + space_info->bytes_pinned + alloc_bytes) <
1084 thresh)
1085 return 0;
1086
1087 ret = btrfs_alloc_chunk(trans, extent_root, &start, &num_bytes, flags);
1088 if (ret == -ENOSPC) {
1089printk("space info full %Lu\n", flags);
1090 space_info->full = 1;
1091 return 0;
1092 }
1093
1094 BUG_ON(ret);
1095
1096 ret = btrfs_make_block_group(trans, extent_root, 0, flags,
1097 extent_root->fs_info->chunk_root->root_key.objectid,
1098 start, num_bytes);
1099 BUG_ON(ret);
Chris Mason593060d2008-03-25 16:50:33 -04001100
Chris Mason6324fbf2008-03-24 15:01:59 -04001101 return 0;
1102}
1103
Chris Mason9078a3e2007-04-26 16:46:15 -04001104static int update_block_group(struct btrfs_trans_handle *trans,
1105 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -04001106 u64 bytenr, u64 num_bytes, int alloc,
Chris Mason0b86a832008-03-24 15:01:56 -04001107 int mark_free)
Chris Mason9078a3e2007-04-26 16:46:15 -04001108{
1109 struct btrfs_block_group_cache *cache;
1110 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001111 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001112 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04001113 u64 byte_in_group;
Chris Mason96b51792007-10-15 16:15:19 -04001114 u64 start;
1115 u64 end;
Chris Mason3e1ad542007-05-07 20:03:49 -04001116
Chris Mason9078a3e2007-04-26 16:46:15 -04001117 while(total) {
Chris Masondb945352007-10-15 16:15:53 -04001118 cache = btrfs_lookup_block_group(info, bytenr);
Chris Mason3e1ad542007-05-07 20:03:49 -04001119 if (!cache) {
Chris Mason9078a3e2007-04-26 16:46:15 -04001120 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -04001121 }
Chris Masondb945352007-10-15 16:15:53 -04001122 byte_in_group = bytenr - cache->key.objectid;
1123 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason96b51792007-10-15 16:15:19 -04001124 start = cache->key.objectid;
1125 end = start + cache->key.offset - 1;
1126 set_extent_bits(&info->block_group_cache, start, end,
1127 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001128
1129 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04001130 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04001131 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04001132 old_val += num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001133 cache->space_info->bytes_used += num_bytes;
Chris Masoncd1bc462007-04-27 10:08:34 -04001134 } else {
Chris Masondb945352007-10-15 16:15:53 -04001135 old_val -= num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001136 cache->space_info->bytes_used -= num_bytes;
Chris Masonf510cfe2007-10-15 16:14:48 -04001137 if (mark_free) {
1138 set_extent_dirty(&info->free_space_cache,
Chris Masondb945352007-10-15 16:15:53 -04001139 bytenr, bytenr + num_bytes - 1,
Chris Masonf510cfe2007-10-15 16:14:48 -04001140 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04001141 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001142 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001143 btrfs_set_block_group_used(&cache->item, old_val);
Chris Masondb945352007-10-15 16:15:53 -04001144 total -= num_bytes;
1145 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001146 }
1147 return 0;
1148}
Chris Mason6324fbf2008-03-24 15:01:59 -04001149
Yan324ae4d2007-11-16 14:57:08 -05001150static int update_pinned_extents(struct btrfs_root *root,
1151 u64 bytenr, u64 num, int pin)
1152{
1153 u64 len;
1154 struct btrfs_block_group_cache *cache;
1155 struct btrfs_fs_info *fs_info = root->fs_info;
1156
1157 if (pin) {
1158 set_extent_dirty(&fs_info->pinned_extents,
1159 bytenr, bytenr + num - 1, GFP_NOFS);
1160 } else {
1161 clear_extent_dirty(&fs_info->pinned_extents,
1162 bytenr, bytenr + num - 1, GFP_NOFS);
1163 }
1164 while (num > 0) {
1165 cache = btrfs_lookup_block_group(fs_info, bytenr);
1166 WARN_ON(!cache);
1167 len = min(num, cache->key.offset -
1168 (bytenr - cache->key.objectid));
1169 if (pin) {
1170 cache->pinned += len;
Chris Mason6324fbf2008-03-24 15:01:59 -04001171 cache->space_info->bytes_pinned += len;
Yan324ae4d2007-11-16 14:57:08 -05001172 fs_info->total_pinned += len;
1173 } else {
1174 cache->pinned -= len;
Chris Mason6324fbf2008-03-24 15:01:59 -04001175 cache->space_info->bytes_pinned -= len;
Yan324ae4d2007-11-16 14:57:08 -05001176 fs_info->total_pinned -= len;
1177 }
1178 bytenr += len;
1179 num -= len;
1180 }
1181 return 0;
1182}
Chris Mason9078a3e2007-04-26 16:46:15 -04001183
Chris Masond1310b22008-01-24 16:13:08 -05001184int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy)
Chris Masonccd467d2007-06-28 15:57:36 -04001185{
Chris Masonccd467d2007-06-28 15:57:36 -04001186 u64 last = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001187 u64 start;
1188 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001189 struct extent_io_tree *pinned_extents = &root->fs_info->pinned_extents;
Chris Masonccd467d2007-06-28 15:57:36 -04001190 int ret;
Chris Masonccd467d2007-06-28 15:57:36 -04001191
1192 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001193 ret = find_first_extent_bit(pinned_extents, last,
1194 &start, &end, EXTENT_DIRTY);
1195 if (ret)
Chris Masonccd467d2007-06-28 15:57:36 -04001196 break;
Chris Mason1a5bc162007-10-15 16:15:26 -04001197 set_extent_dirty(copy, start, end, GFP_NOFS);
1198 last = end + 1;
Chris Masonccd467d2007-06-28 15:57:36 -04001199 }
1200 return 0;
1201}
1202
1203int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1204 struct btrfs_root *root,
Chris Masond1310b22008-01-24 16:13:08 -05001205 struct extent_io_tree *unpin)
Chris Masona28ec192007-03-06 20:08:01 -05001206{
Chris Mason1a5bc162007-10-15 16:15:26 -04001207 u64 start;
1208 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05001209 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001210 struct extent_io_tree *free_space_cache;
Chris Masonf510cfe2007-10-15 16:14:48 -04001211 free_space_cache = &root->fs_info->free_space_cache;
Chris Masona28ec192007-03-06 20:08:01 -05001212
1213 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001214 ret = find_first_extent_bit(unpin, 0, &start, &end,
1215 EXTENT_DIRTY);
1216 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05001217 break;
Yan324ae4d2007-11-16 14:57:08 -05001218 update_pinned_extents(root, start, end + 1 - start, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001219 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1220 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
Chris Masona28ec192007-03-06 20:08:01 -05001221 }
1222 return 0;
1223}
1224
Chris Mason98ed5172008-01-03 10:01:48 -05001225static int finish_current_insert(struct btrfs_trans_handle *trans,
1226 struct btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -05001227{
Chris Mason7bb86312007-12-11 09:25:06 -05001228 u64 start;
1229 u64 end;
1230 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001231 struct extent_buffer *eb;
Chris Mason7bb86312007-12-11 09:25:06 -05001232 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001233 struct btrfs_key ins;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001234 struct btrfs_disk_key first;
Chris Mason234b63a2007-03-13 10:46:10 -04001235 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -05001236 int ret;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001237 int level;
Chris Mason1a5bc162007-10-15 16:15:26 -04001238 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001239
Chris Mason5f39d392007-10-15 16:14:19 -04001240 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason62e27492007-03-15 12:56:47 -04001241 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason7bb86312007-12-11 09:25:06 -05001242 path = btrfs_alloc_path();
Chris Mason037e6392007-03-07 11:50:24 -05001243
Chris Mason26b80032007-08-08 20:17:12 -04001244 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001245 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1246 &end, EXTENT_LOCKED);
1247 if (ret)
Chris Mason26b80032007-08-08 20:17:12 -04001248 break;
1249
Chris Mason1a5bc162007-10-15 16:15:26 -04001250 ins.objectid = start;
1251 ins.offset = end + 1 - start;
1252 err = btrfs_insert_item(trans, extent_root, &ins,
1253 &extent_item, sizeof(extent_item));
1254 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1255 GFP_NOFS);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001256 eb = read_tree_block(extent_root, ins.objectid, ins.offset);
1257 level = btrfs_header_level(eb);
1258 if (level == 0) {
1259 btrfs_item_key(eb, &first, 0);
1260 } else {
1261 btrfs_node_key(eb, &first, 0);
1262 }
Chris Mason7bb86312007-12-11 09:25:06 -05001263 err = btrfs_insert_extent_backref(trans, extent_root, path,
1264 start, extent_root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -05001265 0, level,
1266 btrfs_disk_key_objectid(&first));
Chris Mason7bb86312007-12-11 09:25:06 -05001267 BUG_ON(err);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001268 free_extent_buffer(eb);
Chris Mason037e6392007-03-07 11:50:24 -05001269 }
Chris Mason7bb86312007-12-11 09:25:06 -05001270 btrfs_free_path(path);
Chris Mason037e6392007-03-07 11:50:24 -05001271 return 0;
1272}
1273
Chris Masondb945352007-10-15 16:15:53 -04001274static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
1275 int pending)
Chris Masone20d96d2007-03-22 12:13:20 -04001276{
Chris Mason1a5bc162007-10-15 16:15:26 -04001277 int err = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001278 struct extent_buffer *buf;
Chris Mason78fae272007-03-25 11:35:08 -04001279
Chris Masonf4b9aa82007-03-27 11:05:53 -04001280 if (!pending) {
Chris Masondb945352007-10-15 16:15:53 -04001281 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -04001282 if (buf) {
1283 if (btrfs_buffer_uptodate(buf)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -04001284 u64 transid =
1285 root->fs_info->running_transaction->transid;
Chris Masondc17ff82008-01-08 15:46:30 -05001286 u64 header_transid =
1287 btrfs_header_generation(buf);
Chris Mason6bc34672008-04-04 15:40:00 -04001288 if (header_transid == transid &&
1289 !btrfs_header_flag(buf,
1290 BTRFS_HEADER_FLAG_WRITTEN)) {
Chris Mason55c69072008-01-09 15:55:33 -05001291 clean_tree_block(NULL, root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001292 free_extent_buffer(buf);
Yanc5492282007-11-06 10:25:25 -05001293 return 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001294 }
Chris Masonf4b9aa82007-03-27 11:05:53 -04001295 }
Chris Mason5f39d392007-10-15 16:14:19 -04001296 free_extent_buffer(buf);
Chris Mason8ef97622007-03-26 10:15:30 -04001297 }
Yan324ae4d2007-11-16 14:57:08 -05001298 update_pinned_extents(root, bytenr, num_bytes, 1);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001299 } else {
Chris Mason1a5bc162007-10-15 16:15:26 -04001300 set_extent_bits(&root->fs_info->pending_del,
Chris Masondb945352007-10-15 16:15:53 -04001301 bytenr, bytenr + num_bytes - 1,
1302 EXTENT_LOCKED, GFP_NOFS);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001303 }
Chris Masonbe744172007-05-06 10:15:01 -04001304 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001305 return 0;
1306}
1307
Chris Masona28ec192007-03-06 20:08:01 -05001308/*
1309 * remove an extent from the root, returns 0 on success
1310 */
Chris Masone089f052007-03-16 16:20:31 -04001311static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001312 *root, u64 bytenr, u64 num_bytes,
1313 u64 root_objectid, u64 ref_generation,
1314 u64 owner_objectid, u64 owner_offset, int pin,
Chris Masone37c9e62007-05-09 20:13:14 -04001315 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -05001316{
Chris Mason5caf2a02007-04-02 11:20:42 -04001317 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001318 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -04001319 struct btrfs_fs_info *info = root->fs_info;
1320 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001321 struct extent_buffer *leaf;
Chris Masona28ec192007-03-06 20:08:01 -05001322 int ret;
Chris Mason952fcca2008-02-18 16:33:44 -05001323 int extent_slot = 0;
1324 int found_extent = 0;
1325 int num_to_del = 1;
Chris Mason234b63a2007-03-13 10:46:10 -04001326 struct btrfs_extent_item *ei;
Chris Masoncf27e1e2007-03-13 09:49:06 -04001327 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -05001328
Chris Masondb945352007-10-15 16:15:53 -04001329 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -04001330 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -04001331 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001332 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001333 if (!path)
1334 return -ENOMEM;
1335
Chris Masonb0331a42008-01-08 15:46:31 -05001336 path->reada = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001337 ret = lookup_extent_backref(trans, extent_root, path,
1338 bytenr, root_objectid,
1339 ref_generation,
1340 owner_objectid, owner_offset, 1);
1341 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05001342 struct btrfs_key found_key;
1343 extent_slot = path->slots[0];
1344 while(extent_slot > 0) {
1345 extent_slot--;
1346 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1347 extent_slot);
1348 if (found_key.objectid != bytenr)
1349 break;
1350 if (found_key.type == BTRFS_EXTENT_ITEM_KEY &&
1351 found_key.offset == num_bytes) {
1352 found_extent = 1;
1353 break;
1354 }
1355 if (path->slots[0] - extent_slot > 5)
1356 break;
1357 }
1358 if (!found_extent)
1359 ret = btrfs_del_item(trans, extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -05001360 } else {
1361 btrfs_print_leaf(extent_root, path->nodes[0]);
1362 WARN_ON(1);
1363 printk("Unable to find ref byte nr %Lu root %Lu "
1364 " gen %Lu owner %Lu offset %Lu\n", bytenr,
1365 root_objectid, ref_generation, owner_objectid,
1366 owner_offset);
1367 }
Chris Mason952fcca2008-02-18 16:33:44 -05001368 if (!found_extent) {
1369 btrfs_release_path(extent_root, path);
1370 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
1371 if (ret < 0)
1372 return ret;
1373 BUG_ON(ret);
1374 extent_slot = path->slots[0];
1375 }
Chris Mason5f39d392007-10-15 16:14:19 -04001376
1377 leaf = path->nodes[0];
Chris Mason952fcca2008-02-18 16:33:44 -05001378 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04001379 struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001380 refs = btrfs_extent_refs(leaf, ei);
1381 BUG_ON(refs == 0);
1382 refs -= 1;
1383 btrfs_set_extent_refs(leaf, ei, refs);
Chris Mason952fcca2008-02-18 16:33:44 -05001384
Chris Mason5f39d392007-10-15 16:14:19 -04001385 btrfs_mark_buffer_dirty(leaf);
1386
Chris Mason952fcca2008-02-18 16:33:44 -05001387 if (refs == 0 && found_extent && path->slots[0] == extent_slot + 1) {
1388 /* if the back ref and the extent are next to each other
1389 * they get deleted below in one shot
1390 */
1391 path->slots[0] = extent_slot;
1392 num_to_del = 2;
1393 } else if (found_extent) {
1394 /* otherwise delete the extent back ref */
1395 ret = btrfs_del_item(trans, extent_root, path);
1396 BUG_ON(ret);
1397 /* if refs are 0, we need to setup the path for deletion */
1398 if (refs == 0) {
1399 btrfs_release_path(extent_root, path);
1400 ret = btrfs_search_slot(trans, extent_root, &key, path,
1401 -1, 1);
1402 if (ret < 0)
1403 return ret;
1404 BUG_ON(ret);
1405 }
1406 }
1407
Chris Masoncf27e1e2007-03-13 09:49:06 -04001408 if (refs == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001409 u64 super_used;
1410 u64 root_used;
Chris Mason78fae272007-03-25 11:35:08 -04001411
1412 if (pin) {
Chris Masondb945352007-10-15 16:15:53 -04001413 ret = pin_down_bytes(root, bytenr, num_bytes, 0);
Yanc5492282007-11-06 10:25:25 -05001414 if (ret > 0)
1415 mark_free = 1;
1416 BUG_ON(ret < 0);
Chris Mason78fae272007-03-25 11:35:08 -04001417 }
1418
Josef Bacik58176a92007-08-29 15:47:34 -04001419 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001420 super_used = btrfs_super_bytes_used(&info->super_copy);
1421 btrfs_set_super_bytes_used(&info->super_copy,
1422 super_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001423
1424 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001425 root_used = btrfs_root_used(&root->root_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001426 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -04001427 root_used - num_bytes);
Chris Mason952fcca2008-02-18 16:33:44 -05001428 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
1429 num_to_del);
Chris Mason54aa1f42007-06-22 14:16:25 -04001430 if (ret) {
1431 return ret;
1432 }
Chris Masondb945352007-10-15 16:15:53 -04001433 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001434 mark_free);
Chris Mason9078a3e2007-04-26 16:46:15 -04001435 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05001436 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001437 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001438 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -05001439 return ret;
1440}
1441
1442/*
Chris Masonfec577f2007-02-26 10:40:21 -05001443 * find all the blocks marked as pending in the radix tree and remove
1444 * them from the extent map
1445 */
Chris Masone089f052007-03-16 16:20:31 -04001446static int del_pending_extents(struct btrfs_trans_handle *trans, struct
1447 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -05001448{
1449 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001450 int err = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001451 u64 start;
1452 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001453 struct extent_io_tree *pending_del;
1454 struct extent_io_tree *pinned_extents;
Chris Mason8ef97622007-03-26 10:15:30 -04001455
Chris Mason1a5bc162007-10-15 16:15:26 -04001456 pending_del = &extent_root->fs_info->pending_del;
1457 pinned_extents = &extent_root->fs_info->pinned_extents;
Chris Masonfec577f2007-02-26 10:40:21 -05001458
1459 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001460 ret = find_first_extent_bit(pending_del, 0, &start, &end,
1461 EXTENT_LOCKED);
1462 if (ret)
Chris Masonfec577f2007-02-26 10:40:21 -05001463 break;
Yan324ae4d2007-11-16 14:57:08 -05001464 update_pinned_extents(extent_root, start, end + 1 - start, 1);
Chris Mason1a5bc162007-10-15 16:15:26 -04001465 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
1466 GFP_NOFS);
1467 ret = __free_extent(trans, extent_root,
Chris Mason7bb86312007-12-11 09:25:06 -05001468 start, end + 1 - start,
1469 extent_root->root_key.objectid,
1470 0, 0, 0, 0, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001471 if (ret)
1472 err = ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001473 }
Chris Masone20d96d2007-03-22 12:13:20 -04001474 return err;
Chris Masonfec577f2007-02-26 10:40:21 -05001475}
1476
1477/*
1478 * remove an extent from the root, returns 0 on success
1479 */
Chris Masone089f052007-03-16 16:20:31 -04001480int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001481 *root, u64 bytenr, u64 num_bytes,
1482 u64 root_objectid, u64 ref_generation,
1483 u64 owner_objectid, u64 owner_offset, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -05001484{
Chris Mason9f5fae22007-03-20 14:38:32 -04001485 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -05001486 int pending_ret;
1487 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05001488
Chris Masondb945352007-10-15 16:15:53 -04001489 WARN_ON(num_bytes < root->sectorsize);
Chris Mason7bb86312007-12-11 09:25:06 -05001490 if (!root->ref_cows)
1491 ref_generation = 0;
1492
Chris Masona28ec192007-03-06 20:08:01 -05001493 if (root == extent_root) {
Chris Masondb945352007-10-15 16:15:53 -04001494 pin_down_bytes(root, bytenr, num_bytes, 1);
Chris Masona28ec192007-03-06 20:08:01 -05001495 return 0;
1496 }
Chris Mason7bb86312007-12-11 09:25:06 -05001497 ret = __free_extent(trans, root, bytenr, num_bytes, root_objectid,
1498 ref_generation, owner_objectid, owner_offset,
1499 pin, pin == 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001500 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -05001501 return ret ? ret : pending_ret;
1502}
1503
Chris Mason87ee04e2007-11-30 11:30:34 -05001504static u64 stripe_align(struct btrfs_root *root, u64 val)
1505{
1506 u64 mask = ((u64)root->stripesize - 1);
1507 u64 ret = (val + mask) & ~mask;
1508 return ret;
1509}
1510
Chris Masonfec577f2007-02-26 10:40:21 -05001511/*
1512 * walks the btree of allocated extents and find a hole of a given size.
1513 * The key ins is changed to record the hole:
1514 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04001515 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05001516 * ins->offset == number of blocks
1517 * Any available blocks before search_start are skipped.
1518 */
Chris Mason98ed5172008-01-03 10:01:48 -05001519static int noinline find_free_extent(struct btrfs_trans_handle *trans,
1520 struct btrfs_root *orig_root,
1521 u64 num_bytes, u64 empty_size,
1522 u64 search_start, u64 search_end,
1523 u64 hint_byte, struct btrfs_key *ins,
1524 u64 exclude_start, u64 exclude_nr,
1525 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001526{
Chris Mason87ee04e2007-11-30 11:30:34 -05001527 int ret;
Chris Masonbe744172007-05-06 10:15:01 -04001528 u64 orig_search_start = search_start;
Chris Mason9f5fae22007-03-20 14:38:32 -04001529 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -04001530 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001531 u64 total_needed = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04001532 u64 *last_ptr = NULL;
Chris Masonbe08c1b2007-05-03 09:06:49 -04001533 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -04001534 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -04001535 int wrapped = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001536 int empty_cluster = 2 * 1024 * 1024;
Chris Masonfec577f2007-02-26 10:40:21 -05001537
Chris Masondb945352007-10-15 16:15:53 -04001538 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04001539 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
1540
Chris Mason239b14b2008-03-24 15:02:07 -04001541 if (data & BTRFS_BLOCK_GROUP_METADATA) {
1542 last_ptr = &root->fs_info->last_alloc;
Chris Mason8790d502008-04-03 16:29:03 -04001543 empty_cluster = 256 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04001544 }
1545
1546 if ((data & BTRFS_BLOCK_GROUP_DATA) && btrfs_test_opt(root, SSD)) {
1547 last_ptr = &root->fs_info->last_data_alloc;
1548 }
1549
1550 if (last_ptr) {
1551 if (*last_ptr)
1552 hint_byte = *last_ptr;
1553 else {
1554 empty_size += empty_cluster;
1555 }
1556 }
1557
Chris Mason7f93bf82008-03-24 15:01:28 -04001558 if (search_end == (u64)-1)
1559 search_end = btrfs_super_total_bytes(&info->super_copy);
Chris Mason0b86a832008-03-24 15:01:56 -04001560
Chris Masondb945352007-10-15 16:15:53 -04001561 if (hint_byte) {
1562 block_group = btrfs_lookup_block_group(info, hint_byte);
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001563 if (!block_group)
1564 hint_byte = search_start;
Chris Masonbe744172007-05-06 10:15:01 -04001565 block_group = btrfs_find_block_group(root, block_group,
Chris Masondb945352007-10-15 16:15:53 -04001566 hint_byte, data, 1);
Chris Mason239b14b2008-03-24 15:02:07 -04001567 if (last_ptr && *last_ptr == 0 && block_group)
1568 hint_byte = block_group->key.objectid;
Chris Masonbe744172007-05-06 10:15:01 -04001569 } else {
1570 block_group = btrfs_find_block_group(root,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001571 trans->block_group,
1572 search_start, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001573 }
Chris Mason239b14b2008-03-24 15:02:07 -04001574 search_start = max(search_start, hint_byte);
Chris Masonbe744172007-05-06 10:15:01 -04001575
Chris Mason6702ed42007-08-07 16:15:09 -04001576 total_needed += empty_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001577
Chris Masonbe744172007-05-06 10:15:01 -04001578check_failed:
Chris Mason70b043f2007-12-13 09:02:46 -05001579 if (!block_group) {
1580 block_group = btrfs_lookup_block_group(info, search_start);
1581 if (!block_group)
1582 block_group = btrfs_lookup_block_group(info,
1583 orig_search_start);
1584 }
Chris Mason0b86a832008-03-24 15:01:56 -04001585 ret = find_search_start(root, &block_group, &search_start,
1586 total_needed, data);
Chris Mason239b14b2008-03-24 15:02:07 -04001587 if (ret == -ENOSPC && last_ptr && *last_ptr) {
1588 *last_ptr = 0;
1589 block_group = btrfs_lookup_block_group(info,
1590 orig_search_start);
1591 search_start = orig_search_start;
1592 ret = find_search_start(root, &block_group, &search_start,
1593 total_needed, data);
1594 }
1595 if (ret == -ENOSPC)
1596 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001597 if (ret)
1598 goto error;
1599
Chris Mason239b14b2008-03-24 15:02:07 -04001600 if (last_ptr && *last_ptr && search_start != *last_ptr) {
1601 *last_ptr = 0;
1602 if (!empty_size) {
1603 empty_size += empty_cluster;
1604 total_needed += empty_size;
1605 }
1606 block_group = btrfs_lookup_block_group(info,
1607 orig_search_start);
1608 search_start = orig_search_start;
1609 ret = find_search_start(root, &block_group,
1610 &search_start, total_needed, data);
1611 if (ret == -ENOSPC)
1612 goto enospc;
1613 if (ret)
1614 goto error;
1615 }
1616
Chris Mason87ee04e2007-11-30 11:30:34 -05001617 search_start = stripe_align(root, search_start);
Chris Masonfec577f2007-02-26 10:40:21 -05001618 ins->objectid = search_start;
Chris Mason0b86a832008-03-24 15:01:56 -04001619 ins->offset = num_bytes;
Chris Masone37c9e62007-05-09 20:13:14 -04001620
Chris Masondb945352007-10-15 16:15:53 -04001621 if (ins->objectid + num_bytes >= search_end)
Chris Masoncf675822007-09-17 11:00:51 -04001622 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001623
1624 if (ins->objectid + num_bytes >
1625 block_group->key.objectid + block_group->key.offset) {
Chris Masone19caa52007-10-15 16:17:44 -04001626 search_start = block_group->key.objectid +
1627 block_group->key.offset;
1628 goto new_group;
1629 }
Chris Mason0b86a832008-03-24 15:01:56 -04001630
Chris Mason1a5bc162007-10-15 16:15:26 -04001631 if (test_range_bit(&info->extent_ins, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001632 ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
1633 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001634 goto new_group;
1635 }
Chris Mason0b86a832008-03-24 15:01:56 -04001636
Chris Mason1a5bc162007-10-15 16:15:26 -04001637 if (test_range_bit(&info->pinned_extents, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001638 ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
1639 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001640 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05001641 }
Chris Mason0b86a832008-03-24 15:01:56 -04001642
Chris Masondb945352007-10-15 16:15:53 -04001643 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
Chris Masonf2654de2007-06-26 12:20:46 -04001644 ins->objectid < exclude_start + exclude_nr)) {
1645 search_start = exclude_start + exclude_nr;
1646 goto new_group;
1647 }
Chris Mason0b86a832008-03-24 15:01:56 -04001648
Chris Mason6324fbf2008-03-24 15:01:59 -04001649 if (!(data & BTRFS_BLOCK_GROUP_DATA)) {
Chris Mason5276aed2007-06-11 21:33:38 -04001650 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Mason26b80032007-08-08 20:17:12 -04001651 if (block_group)
1652 trans->block_group = block_group;
Chris Masoncd1bc462007-04-27 10:08:34 -04001653 }
Chris Masondb945352007-10-15 16:15:53 -04001654 ins->offset = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04001655 if (last_ptr) {
1656 *last_ptr = ins->objectid + ins->offset;
1657 if (*last_ptr ==
1658 btrfs_super_total_bytes(&root->fs_info->super_copy)) {
1659 *last_ptr = 0;
1660 }
1661 }
Chris Masonfec577f2007-02-26 10:40:21 -05001662 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04001663
1664new_group:
Chris Masondb945352007-10-15 16:15:53 -04001665 if (search_start + num_bytes >= search_end) {
Chris Masoncf675822007-09-17 11:00:51 -04001666enospc:
Chris Masonbe744172007-05-06 10:15:01 -04001667 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04001668 if (full_scan) {
1669 ret = -ENOSPC;
1670 goto error;
1671 }
Chris Mason6702ed42007-08-07 16:15:09 -04001672 if (wrapped) {
1673 if (!full_scan)
1674 total_needed -= empty_size;
Chris Masonfbdc7622007-05-30 10:22:12 -04001675 full_scan = 1;
Chris Mason6702ed42007-08-07 16:15:09 -04001676 } else
Chris Masonfbdc7622007-05-30 10:22:12 -04001677 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04001678 }
Chris Mason5276aed2007-06-11 21:33:38 -04001679 block_group = btrfs_lookup_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04001680 cond_resched();
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001681 block_group = btrfs_find_block_group(root, block_group,
1682 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04001683 goto check_failed;
1684
Chris Mason0f70abe2007-02-28 16:46:22 -05001685error:
Chris Mason0f70abe2007-02-28 16:46:22 -05001686 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001687}
Chris Masonfec577f2007-02-26 10:40:21 -05001688/*
Chris Masonfec577f2007-02-26 10:40:21 -05001689 * finds a free extent and does all the dirty work required for allocation
1690 * returns the key for the extent through ins, and a tree buffer for
1691 * the first block of the extent through buf.
1692 *
1693 * returns 0 if everything worked, non-zero otherwise.
1694 */
Chris Mason4d775672007-04-20 20:23:12 -04001695int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -05001696 struct btrfs_root *root,
1697 u64 num_bytes, u64 root_objectid, u64 ref_generation,
1698 u64 owner, u64 owner_offset,
1699 u64 empty_size, u64 hint_byte,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001700 u64 search_end, struct btrfs_key *ins, int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001701{
1702 int ret;
1703 int pending_ret;
Chris Masonc31f8832008-01-08 15:46:31 -05001704 u64 super_used;
1705 u64 root_used;
Chris Masonfbdc7622007-05-30 10:22:12 -04001706 u64 search_start = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05001707 u64 new_hint;
Chris Mason8790d502008-04-03 16:29:03 -04001708 u64 alloc_profile;
Chris Mason47e4bb92008-02-01 14:51:59 -05001709 u32 sizes[2];
Chris Mason1261ec42007-03-20 20:35:03 -04001710 struct btrfs_fs_info *info = root->fs_info;
1711 struct btrfs_root *extent_root = info->extent_root;
Chris Mason47e4bb92008-02-01 14:51:59 -05001712 struct btrfs_extent_item *extent_item;
1713 struct btrfs_extent_ref *ref;
Chris Mason7bb86312007-12-11 09:25:06 -05001714 struct btrfs_path *path;
Chris Mason47e4bb92008-02-01 14:51:59 -05001715 struct btrfs_key keys[2];
Chris Mason8f662a72008-01-02 10:01:11 -05001716
Chris Mason6324fbf2008-03-24 15:01:59 -04001717 if (data) {
Chris Mason8790d502008-04-03 16:29:03 -04001718 alloc_profile = info->avail_data_alloc_bits &
1719 info->data_alloc_profile;
1720 data = BTRFS_BLOCK_GROUP_DATA | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04001721 } else if (root == root->fs_info->chunk_root) {
Chris Mason8790d502008-04-03 16:29:03 -04001722 alloc_profile = info->avail_system_alloc_bits &
1723 info->system_alloc_profile;
1724 data = BTRFS_BLOCK_GROUP_SYSTEM | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04001725 } else {
Chris Mason8790d502008-04-03 16:29:03 -04001726 alloc_profile = info->avail_metadata_alloc_bits &
1727 info->metadata_alloc_profile;
1728 data = BTRFS_BLOCK_GROUP_METADATA | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04001729 }
1730
1731 if (root->ref_cows) {
Chris Mason593060d2008-03-25 16:50:33 -04001732 if (!(data & BTRFS_BLOCK_GROUP_METADATA)) {
Chris Mason6324fbf2008-03-24 15:01:59 -04001733 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason239b14b2008-03-24 15:02:07 -04001734 2 * 1024 * 1024,
Chris Mason593060d2008-03-25 16:50:33 -04001735 BTRFS_BLOCK_GROUP_METADATA |
Chris Mason8790d502008-04-03 16:29:03 -04001736 (info->metadata_alloc_profile &
1737 info->avail_metadata_alloc_bits));
Chris Mason6324fbf2008-03-24 15:01:59 -04001738 BUG_ON(ret);
1739 }
1740 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason8790d502008-04-03 16:29:03 -04001741 num_bytes + 2 * 1024 * 1024, data);
Chris Mason6324fbf2008-03-24 15:01:59 -04001742 BUG_ON(ret);
1743 }
Chris Mason0b86a832008-03-24 15:01:56 -04001744
Chris Mason8f662a72008-01-02 10:01:11 -05001745 new_hint = max(hint_byte, root->fs_info->alloc_start);
Chris Masonedbd8d42007-12-21 16:27:24 -05001746 if (new_hint < btrfs_super_total_bytes(&info->super_copy))
1747 hint_byte = new_hint;
Chris Mason8f662a72008-01-02 10:01:11 -05001748
Chris Masondb945352007-10-15 16:15:53 -04001749 WARN_ON(num_bytes < root->sectorsize);
1750 ret = find_free_extent(trans, root, num_bytes, empty_size,
1751 search_start, search_end, hint_byte, ins,
Chris Mason26b80032007-08-08 20:17:12 -04001752 trans->alloc_exclude_start,
1753 trans->alloc_exclude_nr, data);
Chris Masonccd467d2007-06-28 15:57:36 -04001754 BUG_ON(ret);
Chris Masonf2654de2007-06-26 12:20:46 -04001755 if (ret)
1756 return ret;
1757
Josef Bacik58176a92007-08-29 15:47:34 -04001758 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001759 super_used = btrfs_super_bytes_used(&info->super_copy);
1760 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
Chris Mason26b80032007-08-08 20:17:12 -04001761
Josef Bacik58176a92007-08-29 15:47:34 -04001762 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001763 root_used = btrfs_root_used(&root->root_item);
1764 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001765
Chris Masonf510cfe2007-10-15 16:14:48 -04001766 clear_extent_dirty(&root->fs_info->free_space_cache,
1767 ins->objectid, ins->objectid + ins->offset - 1,
1768 GFP_NOFS);
1769
Chris Mason26b80032007-08-08 20:17:12 -04001770 if (root == extent_root) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001771 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
1772 ins->objectid + ins->offset - 1,
1773 EXTENT_LOCKED, GFP_NOFS);
Chris Mason26b80032007-08-08 20:17:12 -04001774 goto update_block;
1775 }
1776
1777 WARN_ON(trans->alloc_exclude_nr);
1778 trans->alloc_exclude_start = ins->objectid;
1779 trans->alloc_exclude_nr = ins->offset;
Chris Mason037e6392007-03-07 11:50:24 -05001780
Chris Mason47e4bb92008-02-01 14:51:59 -05001781 memcpy(&keys[0], ins, sizeof(*ins));
1782 keys[1].offset = hash_extent_ref(root_objectid, ref_generation,
1783 owner, owner_offset);
1784 keys[1].objectid = ins->objectid;
1785 keys[1].type = BTRFS_EXTENT_REF_KEY;
1786 sizes[0] = sizeof(*extent_item);
1787 sizes[1] = sizeof(*ref);
Chris Mason7bb86312007-12-11 09:25:06 -05001788
1789 path = btrfs_alloc_path();
1790 BUG_ON(!path);
Chris Mason47e4bb92008-02-01 14:51:59 -05001791
1792 ret = btrfs_insert_empty_items(trans, extent_root, path, keys,
1793 sizes, 2);
Chris Mason26b80032007-08-08 20:17:12 -04001794
Chris Masonccd467d2007-06-28 15:57:36 -04001795 BUG_ON(ret);
Chris Mason47e4bb92008-02-01 14:51:59 -05001796 extent_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1797 struct btrfs_extent_item);
1798 btrfs_set_extent_refs(path->nodes[0], extent_item, 1);
1799 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1800 struct btrfs_extent_ref);
1801
1802 btrfs_set_ref_root(path->nodes[0], ref, root_objectid);
1803 btrfs_set_ref_generation(path->nodes[0], ref, ref_generation);
1804 btrfs_set_ref_objectid(path->nodes[0], ref, owner);
1805 btrfs_set_ref_offset(path->nodes[0], ref, owner_offset);
1806
1807 btrfs_mark_buffer_dirty(path->nodes[0]);
1808
1809 trans->alloc_exclude_start = 0;
1810 trans->alloc_exclude_nr = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001811 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001812 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001813 pending_ret = del_pending_extents(trans, extent_root);
Chris Masonf510cfe2007-10-15 16:14:48 -04001814
Chris Masone37c9e62007-05-09 20:13:14 -04001815 if (ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001816 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001817 }
1818 if (pending_ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001819 return pending_ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001820 }
Chris Mason26b80032007-08-08 20:17:12 -04001821
1822update_block:
Chris Mason0b86a832008-03-24 15:01:56 -04001823 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0);
Chris Masonf5947062008-02-04 10:10:13 -05001824 if (ret) {
1825 printk("update block group failed for %Lu %Lu\n",
1826 ins->objectid, ins->offset);
1827 BUG();
1828 }
Chris Mason037e6392007-03-07 11:50:24 -05001829 return 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001830}
1831
1832/*
1833 * helper function to allocate a block for a given tree
1834 * returns the tree buffer or NULL.
1835 */
Chris Mason5f39d392007-10-15 16:14:19 -04001836struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -04001837 struct btrfs_root *root,
Chris Mason7bb86312007-12-11 09:25:06 -05001838 u32 blocksize,
1839 u64 root_objectid, u64 hint,
1840 u64 empty_size)
1841{
1842 u64 ref_generation;
1843
1844 if (root->ref_cows)
1845 ref_generation = trans->transid;
1846 else
1847 ref_generation = 0;
1848
1849
1850 return __btrfs_alloc_free_block(trans, root, blocksize, root_objectid,
1851 ref_generation, 0, 0, hint, empty_size);
1852}
1853
1854/*
1855 * helper function to allocate a block for a given tree
1856 * returns the tree buffer or NULL.
1857 */
1858struct extent_buffer *__btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1859 struct btrfs_root *root,
1860 u32 blocksize,
1861 u64 root_objectid,
1862 u64 ref_generation,
1863 u64 first_objectid,
1864 int level,
1865 u64 hint,
Chris Mason5f39d392007-10-15 16:14:19 -04001866 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05001867{
Chris Masone2fa7222007-03-12 16:22:34 -04001868 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05001869 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04001870 struct extent_buffer *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05001871
Chris Mason7bb86312007-12-11 09:25:06 -05001872 ret = btrfs_alloc_extent(trans, root, blocksize,
1873 root_objectid, ref_generation,
Chris Masonf6dbff52007-12-13 11:13:32 -05001874 level, first_objectid, empty_size, hint,
Chris Masondb945352007-10-15 16:15:53 -04001875 (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05001876 if (ret) {
Chris Mason54aa1f42007-06-22 14:16:25 -04001877 BUG_ON(ret > 0);
1878 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05001879 }
Chris Masondb945352007-10-15 16:15:53 -04001880 buf = btrfs_find_create_tree_block(root, ins.objectid, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04001881 if (!buf) {
Chris Mason7bb86312007-12-11 09:25:06 -05001882 btrfs_free_extent(trans, root, ins.objectid, blocksize,
1883 root->root_key.objectid, ref_generation,
1884 0, 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001885 return ERR_PTR(-ENOMEM);
1886 }
Chris Mason55c69072008-01-09 15:55:33 -05001887 btrfs_set_header_generation(buf, trans->transid);
1888 clean_tree_block(trans, root, buf);
1889 wait_on_tree_block_writeback(root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001890 btrfs_set_buffer_uptodate(buf);
Chris Mason55c69072008-01-09 15:55:33 -05001891
1892 if (PageDirty(buf->first_page)) {
1893 printk("page %lu dirty\n", buf->first_page->index);
1894 WARN_ON(1);
1895 }
1896
Chris Mason5f39d392007-10-15 16:14:19 -04001897 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
1898 buf->start + buf->len - 1, GFP_NOFS);
Chris Mason9afbb0b2008-02-15 13:19:35 -05001899 if (!btrfs_test_opt(root, SSD))
1900 btrfs_set_buffer_defrag(buf);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001901 trans->blocks_used++;
Chris Masonfec577f2007-02-26 10:40:21 -05001902 return buf;
1903}
Chris Masona28ec192007-03-06 20:08:01 -05001904
Chris Mason98ed5172008-01-03 10:01:48 -05001905static int noinline drop_leaf_ref(struct btrfs_trans_handle *trans,
1906 struct btrfs_root *root,
1907 struct extent_buffer *leaf)
Chris Mason6407bf62007-03-27 06:33:00 -04001908{
Chris Mason7bb86312007-12-11 09:25:06 -05001909 u64 leaf_owner;
1910 u64 leaf_generation;
Chris Mason5f39d392007-10-15 16:14:19 -04001911 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04001912 struct btrfs_file_extent_item *fi;
1913 int i;
1914 int nritems;
1915 int ret;
1916
Chris Mason5f39d392007-10-15 16:14:19 -04001917 BUG_ON(!btrfs_is_leaf(leaf));
1918 nritems = btrfs_header_nritems(leaf);
Chris Mason7bb86312007-12-11 09:25:06 -05001919 leaf_owner = btrfs_header_owner(leaf);
1920 leaf_generation = btrfs_header_generation(leaf);
1921
Chris Mason6407bf62007-03-27 06:33:00 -04001922 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001923 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001924
1925 btrfs_item_key_to_cpu(leaf, &key, i);
1926 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04001927 continue;
1928 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001929 if (btrfs_file_extent_type(leaf, fi) ==
1930 BTRFS_FILE_EXTENT_INLINE)
Chris Mason236454d2007-04-19 13:37:44 -04001931 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04001932 /*
1933 * FIXME make sure to insert a trans record that
1934 * repeats the snapshot del on crash
1935 */
Chris Masondb945352007-10-15 16:15:53 -04001936 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1937 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04001938 continue;
Chris Masondb945352007-10-15 16:15:53 -04001939 ret = btrfs_free_extent(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001940 btrfs_file_extent_disk_num_bytes(leaf, fi),
1941 leaf_owner, leaf_generation,
1942 key.objectid, key.offset, 0);
Chris Mason6407bf62007-03-27 06:33:00 -04001943 BUG_ON(ret);
1944 }
1945 return 0;
1946}
1947
Chris Mason98ed5172008-01-03 10:01:48 -05001948static void noinline reada_walk_down(struct btrfs_root *root,
Chris Masonbea495e2008-01-24 16:13:14 -05001949 struct extent_buffer *node,
1950 int slot)
Chris Masone0115992007-06-19 16:23:05 -04001951{
Chris Masondb945352007-10-15 16:15:53 -04001952 u64 bytenr;
Chris Masonbea495e2008-01-24 16:13:14 -05001953 u64 last = 0;
1954 u32 nritems;
Chris Masone0115992007-06-19 16:23:05 -04001955 u32 refs;
Chris Masondb945352007-10-15 16:15:53 -04001956 u32 blocksize;
Chris Masonbea495e2008-01-24 16:13:14 -05001957 int ret;
1958 int i;
1959 int level;
1960 int skipped = 0;
Chris Masone0115992007-06-19 16:23:05 -04001961
Chris Mason5f39d392007-10-15 16:14:19 -04001962 nritems = btrfs_header_nritems(node);
Chris Masondb945352007-10-15 16:15:53 -04001963 level = btrfs_header_level(node);
Chris Masonbea495e2008-01-24 16:13:14 -05001964 if (level)
1965 return;
1966
1967 for (i = slot; i < nritems && skipped < 32; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001968 bytenr = btrfs_node_blockptr(node, i);
Chris Masonbea495e2008-01-24 16:13:14 -05001969 if (last && ((bytenr > last && bytenr - last > 32 * 1024) ||
1970 (last > bytenr && last - bytenr > 32 * 1024))) {
1971 skipped++;
Chris Masone0115992007-06-19 16:23:05 -04001972 continue;
Chris Masonbea495e2008-01-24 16:13:14 -05001973 }
1974 blocksize = btrfs_level_size(root, level - 1);
1975 if (i != slot) {
1976 ret = lookup_extent_ref(NULL, root, bytenr,
1977 blocksize, &refs);
1978 BUG_ON(ret);
1979 if (refs != 1) {
1980 skipped++;
1981 continue;
1982 }
1983 }
Chris Mason409eb952007-08-08 20:17:12 -04001984 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -04001985 ret = readahead_tree_block(root, bytenr, blocksize);
Chris Masonbea495e2008-01-24 16:13:14 -05001986 last = bytenr + blocksize;
Chris Mason409eb952007-08-08 20:17:12 -04001987 cond_resched();
1988 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone0115992007-06-19 16:23:05 -04001989 if (ret)
1990 break;
1991 }
1992}
1993
Chris Mason9aca1d52007-03-13 11:09:37 -04001994/*
1995 * helper function for drop_snapshot, this walks down the tree dropping ref
1996 * counts as it goes.
1997 */
Chris Mason98ed5172008-01-03 10:01:48 -05001998static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
1999 struct btrfs_root *root,
2000 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002001{
Chris Mason7bb86312007-12-11 09:25:06 -05002002 u64 root_owner;
2003 u64 root_gen;
2004 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04002005 struct extent_buffer *next;
2006 struct extent_buffer *cur;
Chris Mason7bb86312007-12-11 09:25:06 -05002007 struct extent_buffer *parent;
Chris Masondb945352007-10-15 16:15:53 -04002008 u32 blocksize;
Chris Mason20524f02007-03-10 06:35:47 -05002009 int ret;
2010 u32 refs;
2011
Chris Mason5caf2a02007-04-02 11:20:42 -04002012 WARN_ON(*level < 0);
2013 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason5f39d392007-10-15 16:14:19 -04002014 ret = lookup_extent_ref(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002015 path->nodes[*level]->start,
2016 path->nodes[*level]->len, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05002017 BUG_ON(ret);
2018 if (refs > 1)
2019 goto out;
Chris Masone0115992007-06-19 16:23:05 -04002020
Chris Mason9aca1d52007-03-13 11:09:37 -04002021 /*
2022 * walk down to the last node level and free all the leaves
2023 */
Chris Mason6407bf62007-03-27 06:33:00 -04002024 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002025 WARN_ON(*level < 0);
2026 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05002027 cur = path->nodes[*level];
Chris Masone0115992007-06-19 16:23:05 -04002028
Chris Mason5f39d392007-10-15 16:14:19 -04002029 if (btrfs_header_level(cur) != *level)
Chris Mason2c90e5d2007-04-02 10:50:19 -04002030 WARN_ON(1);
Chris Masone0115992007-06-19 16:23:05 -04002031
Chris Mason7518a232007-03-12 12:01:18 -04002032 if (path->slots[*level] >=
Chris Mason5f39d392007-10-15 16:14:19 -04002033 btrfs_header_nritems(cur))
Chris Mason20524f02007-03-10 06:35:47 -05002034 break;
Chris Mason6407bf62007-03-27 06:33:00 -04002035 if (*level == 0) {
2036 ret = drop_leaf_ref(trans, root, cur);
2037 BUG_ON(ret);
2038 break;
2039 }
Chris Masondb945352007-10-15 16:15:53 -04002040 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
2041 blocksize = btrfs_level_size(root, *level - 1);
2042 ret = lookup_extent_ref(trans, root, bytenr, blocksize, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04002043 BUG_ON(ret);
2044 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002045 parent = path->nodes[*level];
2046 root_owner = btrfs_header_owner(parent);
2047 root_gen = btrfs_header_generation(parent);
Chris Mason20524f02007-03-10 06:35:47 -05002048 path->slots[*level]++;
Chris Masondb945352007-10-15 16:15:53 -04002049 ret = btrfs_free_extent(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002050 blocksize, root_owner,
2051 root_gen, 0, 0, 1);
Chris Mason20524f02007-03-10 06:35:47 -05002052 BUG_ON(ret);
2053 continue;
2054 }
Chris Masondb945352007-10-15 16:15:53 -04002055 next = btrfs_find_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04002056 if (!next || !btrfs_buffer_uptodate(next)) {
2057 free_extent_buffer(next);
Chris Masonbea495e2008-01-24 16:13:14 -05002058 reada_walk_down(root, cur, path->slots[*level]);
Chris Masone9d0b132007-08-10 14:06:19 -04002059
Chris Mason8790d502008-04-03 16:29:03 -04002060 mutex_unlock(&root->fs_info->fs_mutex);
2061 next = read_tree_block(root, bytenr, blocksize);
2062 mutex_lock(&root->fs_info->fs_mutex);
2063
2064 /* we've dropped the lock, double check */
Chris Masondb945352007-10-15 16:15:53 -04002065 ret = lookup_extent_ref(trans, root, bytenr,
2066 blocksize, &refs);
Chris Masone9d0b132007-08-10 14:06:19 -04002067 BUG_ON(ret);
2068 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002069 parent = path->nodes[*level];
2070 root_owner = btrfs_header_owner(parent);
2071 root_gen = btrfs_header_generation(parent);
2072
Chris Masone9d0b132007-08-10 14:06:19 -04002073 path->slots[*level]++;
Chris Mason5f39d392007-10-15 16:14:19 -04002074 free_extent_buffer(next);
Chris Mason7bb86312007-12-11 09:25:06 -05002075 ret = btrfs_free_extent(trans, root, bytenr,
2076 blocksize,
2077 root_owner,
2078 root_gen, 0, 0, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04002079 BUG_ON(ret);
2080 continue;
2081 }
Chris Mason0999df52008-04-01 13:48:14 -04002082 } else if (next) {
2083 btrfs_verify_block_csum(root, next);
Chris Masone9d0b132007-08-10 14:06:19 -04002084 }
Chris Mason5caf2a02007-04-02 11:20:42 -04002085 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04002086 if (path->nodes[*level-1])
Chris Mason5f39d392007-10-15 16:14:19 -04002087 free_extent_buffer(path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05002088 path->nodes[*level-1] = next;
Chris Mason5f39d392007-10-15 16:14:19 -04002089 *level = btrfs_header_level(next);
Chris Mason20524f02007-03-10 06:35:47 -05002090 path->slots[*level] = 0;
2091 }
2092out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002093 WARN_ON(*level < 0);
2094 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason7bb86312007-12-11 09:25:06 -05002095
2096 if (path->nodes[*level] == root->node) {
2097 root_owner = root->root_key.objectid;
2098 parent = path->nodes[*level];
2099 } else {
2100 parent = path->nodes[*level + 1];
2101 root_owner = btrfs_header_owner(parent);
2102 }
2103
2104 root_gen = btrfs_header_generation(parent);
Chris Masondb945352007-10-15 16:15:53 -04002105 ret = btrfs_free_extent(trans, root, path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002106 path->nodes[*level]->len,
2107 root_owner, root_gen, 0, 0, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002108 free_extent_buffer(path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05002109 path->nodes[*level] = NULL;
2110 *level += 1;
2111 BUG_ON(ret);
2112 return 0;
2113}
2114
Chris Mason9aca1d52007-03-13 11:09:37 -04002115/*
2116 * helper for dropping snapshots. This walks back up the tree in the path
2117 * to find the first node higher up where we haven't yet gone through
2118 * all the slots
2119 */
Chris Mason98ed5172008-01-03 10:01:48 -05002120static int noinline walk_up_tree(struct btrfs_trans_handle *trans,
2121 struct btrfs_root *root,
2122 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002123{
Chris Mason7bb86312007-12-11 09:25:06 -05002124 u64 root_owner;
2125 u64 root_gen;
2126 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002127 int i;
2128 int slot;
2129 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04002130
Chris Mason234b63a2007-03-13 10:46:10 -04002131 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05002132 slot = path->slots[i];
Chris Mason5f39d392007-10-15 16:14:19 -04002133 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
2134 struct extent_buffer *node;
2135 struct btrfs_disk_key disk_key;
2136 node = path->nodes[i];
Chris Mason20524f02007-03-10 06:35:47 -05002137 path->slots[i]++;
2138 *level = i;
Chris Mason9f3a7422007-08-07 15:52:19 -04002139 WARN_ON(*level == 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002140 btrfs_node_key(node, &disk_key, path->slots[i]);
Chris Mason9f3a7422007-08-07 15:52:19 -04002141 memcpy(&root_item->drop_progress,
Chris Mason5f39d392007-10-15 16:14:19 -04002142 &disk_key, sizeof(disk_key));
Chris Mason9f3a7422007-08-07 15:52:19 -04002143 root_item->drop_level = i;
Chris Mason20524f02007-03-10 06:35:47 -05002144 return 0;
2145 } else {
Chris Mason7bb86312007-12-11 09:25:06 -05002146 if (path->nodes[*level] == root->node) {
2147 root_owner = root->root_key.objectid;
2148 root_gen =
2149 btrfs_header_generation(path->nodes[*level]);
2150 } else {
2151 struct extent_buffer *node;
2152 node = path->nodes[*level + 1];
2153 root_owner = btrfs_header_owner(node);
2154 root_gen = btrfs_header_generation(node);
2155 }
Chris Masone089f052007-03-16 16:20:31 -04002156 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002157 path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002158 path->nodes[*level]->len,
2159 root_owner, root_gen, 0, 0, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04002160 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002161 free_extent_buffer(path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04002162 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05002163 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05002164 }
2165 }
2166 return 1;
2167}
2168
Chris Mason9aca1d52007-03-13 11:09:37 -04002169/*
2170 * drop the reference count on the tree rooted at 'snap'. This traverses
2171 * the tree freeing any blocks that have a ref count of zero after being
2172 * decremented.
2173 */
Chris Masone089f052007-03-16 16:20:31 -04002174int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04002175 *root)
Chris Mason20524f02007-03-10 06:35:47 -05002176{
Chris Mason3768f362007-03-13 16:47:54 -04002177 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04002178 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05002179 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04002180 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05002181 int i;
2182 int orig_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002183 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002184
Chris Mason5caf2a02007-04-02 11:20:42 -04002185 path = btrfs_alloc_path();
2186 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05002187
Chris Mason5f39d392007-10-15 16:14:19 -04002188 level = btrfs_header_level(root->node);
Chris Mason20524f02007-03-10 06:35:47 -05002189 orig_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002190 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2191 path->nodes[level] = root->node;
Chris Masonf510cfe2007-10-15 16:14:48 -04002192 extent_buffer_get(root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -04002193 path->slots[level] = 0;
2194 } else {
2195 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002196 struct btrfs_disk_key found_key;
2197 struct extent_buffer *node;
Chris Mason6702ed42007-08-07 16:15:09 -04002198
Chris Mason9f3a7422007-08-07 15:52:19 -04002199 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Chris Mason6702ed42007-08-07 16:15:09 -04002200 level = root_item->drop_level;
2201 path->lowest_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002202 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason6702ed42007-08-07 16:15:09 -04002203 if (wret < 0) {
Chris Mason9f3a7422007-08-07 15:52:19 -04002204 ret = wret;
2205 goto out;
2206 }
Chris Mason5f39d392007-10-15 16:14:19 -04002207 node = path->nodes[level];
2208 btrfs_node_key(node, &found_key, path->slots[level]);
2209 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2210 sizeof(found_key)));
Chris Mason9f3a7422007-08-07 15:52:19 -04002211 }
Chris Mason20524f02007-03-10 06:35:47 -05002212 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002213 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002214 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002215 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002216 if (wret < 0)
2217 ret = wret;
2218
Chris Mason5caf2a02007-04-02 11:20:42 -04002219 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002220 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002221 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002222 if (wret < 0)
2223 ret = wret;
Chris Mason409eb952007-08-08 20:17:12 -04002224 ret = -EAGAIN;
Chris Mason409eb952007-08-08 20:17:12 -04002225 break;
Chris Mason20524f02007-03-10 06:35:47 -05002226 }
Chris Mason83e15a22007-03-12 09:03:27 -04002227 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002228 if (path->nodes[i]) {
Chris Mason5f39d392007-10-15 16:14:19 -04002229 free_extent_buffer(path->nodes[i]);
Chris Mason0f827312007-10-15 16:18:56 -04002230 path->nodes[i] = NULL;
Chris Mason83e15a22007-03-12 09:03:27 -04002231 }
Chris Mason20524f02007-03-10 06:35:47 -05002232 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002233out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002234 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04002235 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05002236}
Chris Mason9078a3e2007-04-26 16:46:15 -04002237
Chris Masonbe744172007-05-06 10:15:01 -04002238int btrfs_free_block_groups(struct btrfs_fs_info *info)
2239{
Chris Masonf510cfe2007-10-15 16:14:48 -04002240 u64 start;
2241 u64 end;
Yanb97f9202007-11-01 11:28:41 -04002242 u64 ptr;
Chris Mason96b51792007-10-15 16:15:19 -04002243 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04002244 while(1) {
2245 ret = find_first_extent_bit(&info->block_group_cache, 0,
2246 &start, &end, (unsigned int)-1);
2247 if (ret)
2248 break;
Yanb97f9202007-11-01 11:28:41 -04002249 ret = get_state_private(&info->block_group_cache, start, &ptr);
2250 if (!ret)
2251 kfree((void *)(unsigned long)ptr);
Chris Mason96b51792007-10-15 16:15:19 -04002252 clear_extent_bits(&info->block_group_cache, start,
2253 end, (unsigned int)-1, GFP_NOFS);
2254 }
Chris Masone37c9e62007-05-09 20:13:14 -04002255 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -04002256 ret = find_first_extent_bit(&info->free_space_cache, 0,
2257 &start, &end, EXTENT_DIRTY);
2258 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -04002259 break;
Chris Masonf510cfe2007-10-15 16:14:48 -04002260 clear_extent_dirty(&info->free_space_cache, start,
2261 end, GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04002262 }
Chris Masonbe744172007-05-06 10:15:01 -04002263 return 0;
2264}
2265
Chris Mason98ed5172008-01-03 10:01:48 -05002266static int noinline relocate_inode_pages(struct inode *inode, u64 start,
2267 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05002268{
2269 u64 page_start;
2270 u64 page_end;
2271 u64 delalloc_start;
2272 u64 existing_delalloc;
2273 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05002274 unsigned long i;
2275 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05002276 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05002277 struct file_ra_state *ra;
2278
2279 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002280
2281 mutex_lock(&inode->i_mutex);
Chris Mason4313b392008-01-03 09:08:48 -05002282 i = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05002283 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
2284
Chris Mason4313b392008-01-03 09:08:48 -05002285 file_ra_state_init(ra, inode->i_mapping);
2286 btrfs_force_ra(inode->i_mapping, ra, NULL, i, last_index);
2287 kfree(ra);
Chris Masonedbd8d42007-12-21 16:27:24 -05002288
Chris Mason4313b392008-01-03 09:08:48 -05002289 for (; i <= last_index; i++) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002290 page = grab_cache_page(inode->i_mapping, i);
2291 if (!page)
2292 goto out_unlock;
2293 if (!PageUptodate(page)) {
2294 btrfs_readpage(NULL, page);
2295 lock_page(page);
2296 if (!PageUptodate(page)) {
2297 unlock_page(page);
2298 page_cache_release(page);
2299 goto out_unlock;
2300 }
2301 }
2302 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2303 page_end = page_start + PAGE_CACHE_SIZE - 1;
2304
Chris Masond1310b22008-01-24 16:13:08 -05002305 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002306
2307 delalloc_start = page_start;
Chris Masond1310b22008-01-24 16:13:08 -05002308 existing_delalloc = count_range_bits(io_tree,
2309 &delalloc_start, page_end,
2310 PAGE_CACHE_SIZE, EXTENT_DELALLOC);
Chris Masonedbd8d42007-12-21 16:27:24 -05002311
Chris Masond1310b22008-01-24 16:13:08 -05002312 set_extent_delalloc(io_tree, page_start,
Chris Masonedbd8d42007-12-21 16:27:24 -05002313 page_end, GFP_NOFS);
2314
Chris Masond1310b22008-01-24 16:13:08 -05002315 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002316 set_page_dirty(page);
2317 unlock_page(page);
2318 page_cache_release(page);
2319 }
2320
2321out_unlock:
2322 mutex_unlock(&inode->i_mutex);
2323 return 0;
2324}
2325
Chris Mason4313b392008-01-03 09:08:48 -05002326/*
2327 * note, this releases the path
2328 */
Chris Mason98ed5172008-01-03 10:01:48 -05002329static int noinline relocate_one_reference(struct btrfs_root *extent_root,
Chris Masonedbd8d42007-12-21 16:27:24 -05002330 struct btrfs_path *path,
Chris Mason4313b392008-01-03 09:08:48 -05002331 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002332{
2333 struct inode *inode;
2334 struct btrfs_root *found_root;
Chris Mason4313b392008-01-03 09:08:48 -05002335 struct btrfs_key *root_location;
2336 struct btrfs_extent_ref *ref;
2337 u64 ref_root;
2338 u64 ref_gen;
2339 u64 ref_objectid;
2340 u64 ref_offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05002341 int ret;
2342
Chris Mason4313b392008-01-03 09:08:48 -05002343 ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
2344 struct btrfs_extent_ref);
2345 ref_root = btrfs_ref_root(path->nodes[0], ref);
2346 ref_gen = btrfs_ref_generation(path->nodes[0], ref);
2347 ref_objectid = btrfs_ref_objectid(path->nodes[0], ref);
2348 ref_offset = btrfs_ref_offset(path->nodes[0], ref);
2349 btrfs_release_path(extent_root, path);
2350
2351 root_location = kmalloc(sizeof(*root_location), GFP_NOFS);
2352 root_location->objectid = ref_root;
Chris Masonedbd8d42007-12-21 16:27:24 -05002353 if (ref_gen == 0)
Chris Mason4313b392008-01-03 09:08:48 -05002354 root_location->offset = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002355 else
Chris Mason4313b392008-01-03 09:08:48 -05002356 root_location->offset = (u64)-1;
2357 root_location->type = BTRFS_ROOT_ITEM_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05002358
2359 found_root = btrfs_read_fs_root_no_name(extent_root->fs_info,
Chris Mason4313b392008-01-03 09:08:48 -05002360 root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002361 BUG_ON(!found_root);
Chris Mason4313b392008-01-03 09:08:48 -05002362 kfree(root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002363
2364 if (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
2365 mutex_unlock(&extent_root->fs_info->fs_mutex);
2366 inode = btrfs_iget_locked(extent_root->fs_info->sb,
2367 ref_objectid, found_root);
2368 if (inode->i_state & I_NEW) {
2369 /* the inode and parent dir are two different roots */
2370 BTRFS_I(inode)->root = found_root;
2371 BTRFS_I(inode)->location.objectid = ref_objectid;
2372 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
2373 BTRFS_I(inode)->location.offset = 0;
2374 btrfs_read_locked_inode(inode);
2375 unlock_new_inode(inode);
2376
2377 }
2378 /* this can happen if the reference is not against
2379 * the latest version of the tree root
2380 */
2381 if (is_bad_inode(inode)) {
2382 mutex_lock(&extent_root->fs_info->fs_mutex);
2383 goto out;
2384 }
2385 relocate_inode_pages(inode, ref_offset, extent_key->offset);
2386 /* FIXME, data=ordered will help get rid of this */
2387 filemap_fdatawrite(inode->i_mapping);
2388 iput(inode);
2389 mutex_lock(&extent_root->fs_info->fs_mutex);
2390 } else {
2391 struct btrfs_trans_handle *trans;
2392 struct btrfs_key found_key;
2393 struct extent_buffer *eb;
2394 int level;
2395 int i;
2396
2397 trans = btrfs_start_transaction(found_root, 1);
2398 eb = read_tree_block(found_root, extent_key->objectid,
2399 extent_key->offset);
2400 level = btrfs_header_level(eb);
2401
2402 if (level == 0)
2403 btrfs_item_key_to_cpu(eb, &found_key, 0);
2404 else
2405 btrfs_node_key_to_cpu(eb, &found_key, 0);
2406
2407 free_extent_buffer(eb);
2408
2409 path->lowest_level = level;
Chris Mason8f662a72008-01-02 10:01:11 -05002410 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002411 ret = btrfs_search_slot(trans, found_root, &found_key, path,
2412 0, 1);
2413 path->lowest_level = 0;
2414 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2415 if (!path->nodes[i])
2416 break;
2417 free_extent_buffer(path->nodes[i]);
2418 path->nodes[i] = NULL;
2419 }
2420 btrfs_release_path(found_root, path);
2421 btrfs_end_transaction(trans, found_root);
2422 }
2423
2424out:
2425 return 0;
2426}
2427
Chris Mason98ed5172008-01-03 10:01:48 -05002428static int noinline relocate_one_extent(struct btrfs_root *extent_root,
2429 struct btrfs_path *path,
2430 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002431{
2432 struct btrfs_key key;
2433 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002434 struct extent_buffer *leaf;
Chris Masonedbd8d42007-12-21 16:27:24 -05002435 u32 nritems;
2436 u32 item_size;
2437 int ret = 0;
2438
2439 key.objectid = extent_key->objectid;
2440 key.type = BTRFS_EXTENT_REF_KEY;
2441 key.offset = 0;
2442
2443 while(1) {
2444 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2445
Chris Masonedbd8d42007-12-21 16:27:24 -05002446 if (ret < 0)
2447 goto out;
2448
2449 ret = 0;
2450 leaf = path->nodes[0];
2451 nritems = btrfs_header_nritems(leaf);
2452 if (path->slots[0] == nritems)
2453 goto out;
2454
2455 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2456 if (found_key.objectid != extent_key->objectid)
2457 break;
2458
2459 if (found_key.type != BTRFS_EXTENT_REF_KEY)
2460 break;
2461
2462 key.offset = found_key.offset + 1;
2463 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2464
Chris Mason4313b392008-01-03 09:08:48 -05002465 ret = relocate_one_reference(extent_root, path, extent_key);
Chris Masonedbd8d42007-12-21 16:27:24 -05002466 if (ret)
2467 goto out;
2468 }
2469 ret = 0;
2470out:
2471 btrfs_release_path(extent_root, path);
2472 return ret;
2473}
2474
Chris Masonedbd8d42007-12-21 16:27:24 -05002475int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 new_size)
2476{
2477 struct btrfs_trans_handle *trans;
2478 struct btrfs_root *tree_root = root->fs_info->tree_root;
2479 struct btrfs_path *path;
2480 u64 cur_byte;
2481 u64 total_found;
Chris Masonedbd8d42007-12-21 16:27:24 -05002482 struct btrfs_fs_info *info = root->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05002483 struct extent_io_tree *block_group_cache;
Chris Masonedbd8d42007-12-21 16:27:24 -05002484 struct btrfs_key key;
Yan73e48b22008-01-03 14:14:39 -05002485 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002486 struct extent_buffer *leaf;
2487 u32 nritems;
2488 int ret;
Chris Mason725c8462008-01-04 16:47:16 -05002489 int progress = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002490
2491 btrfs_set_super_total_bytes(&info->super_copy, new_size);
Chris Masonc31f8832008-01-08 15:46:31 -05002492 clear_extent_dirty(&info->free_space_cache, new_size, (u64)-1,
2493 GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002494 block_group_cache = &info->block_group_cache;
2495 path = btrfs_alloc_path();
2496 root = root->fs_info->extent_root;
Chris Mason8f662a72008-01-02 10:01:11 -05002497 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002498
2499again:
2500 total_found = 0;
2501 key.objectid = new_size;
Chris Masonedbd8d42007-12-21 16:27:24 -05002502 key.offset = 0;
2503 key.type = 0;
Yan73e48b22008-01-03 14:14:39 -05002504 cur_byte = key.objectid;
Chris Mason4313b392008-01-03 09:08:48 -05002505
Yan73e48b22008-01-03 14:14:39 -05002506 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2507 if (ret < 0)
2508 goto out;
2509
Chris Mason0b86a832008-03-24 15:01:56 -04002510 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
Yan73e48b22008-01-03 14:14:39 -05002511 if (ret < 0)
2512 goto out;
2513 if (ret == 0) {
2514 leaf = path->nodes[0];
2515 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2516 if (found_key.objectid + found_key.offset > new_size) {
2517 cur_byte = found_key.objectid;
2518 key.objectid = cur_byte;
2519 }
2520 }
2521 btrfs_release_path(root, path);
2522
2523 while(1) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002524 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2525 if (ret < 0)
2526 goto out;
Yan73e48b22008-01-03 14:14:39 -05002527
Chris Masonedbd8d42007-12-21 16:27:24 -05002528 leaf = path->nodes[0];
Chris Masonedbd8d42007-12-21 16:27:24 -05002529 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05002530next:
2531 if (path->slots[0] >= nritems) {
2532 ret = btrfs_next_leaf(root, path);
2533 if (ret < 0)
2534 goto out;
2535 if (ret == 1) {
2536 ret = 0;
2537 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05002538 }
Yan73e48b22008-01-03 14:14:39 -05002539 leaf = path->nodes[0];
2540 nritems = btrfs_header_nritems(leaf);
2541 }
2542
2543 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason725c8462008-01-04 16:47:16 -05002544
2545 if (progress && need_resched()) {
2546 memcpy(&key, &found_key, sizeof(key));
2547 mutex_unlock(&root->fs_info->fs_mutex);
2548 cond_resched();
2549 mutex_lock(&root->fs_info->fs_mutex);
2550 btrfs_release_path(root, path);
2551 btrfs_search_slot(NULL, root, &key, path, 0, 0);
2552 progress = 0;
2553 goto next;
2554 }
2555 progress = 1;
2556
Yan73e48b22008-01-03 14:14:39 -05002557 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_ITEM_KEY ||
2558 found_key.objectid + found_key.offset <= cur_byte) {
2559 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05002560 goto next;
2561 }
Yan73e48b22008-01-03 14:14:39 -05002562
Chris Masonedbd8d42007-12-21 16:27:24 -05002563 total_found++;
2564 cur_byte = found_key.objectid + found_key.offset;
2565 key.objectid = cur_byte;
2566 btrfs_release_path(root, path);
2567 ret = relocate_one_extent(root, path, &found_key);
2568 }
2569
2570 btrfs_release_path(root, path);
2571
2572 if (total_found > 0) {
2573 trans = btrfs_start_transaction(tree_root, 1);
2574 btrfs_commit_transaction(trans, tree_root);
2575
2576 mutex_unlock(&root->fs_info->fs_mutex);
2577 btrfs_clean_old_snapshots(tree_root);
2578 mutex_lock(&root->fs_info->fs_mutex);
2579
2580 trans = btrfs_start_transaction(tree_root, 1);
2581 btrfs_commit_transaction(trans, tree_root);
2582 goto again;
2583 }
2584
2585 trans = btrfs_start_transaction(root, 1);
2586 key.objectid = new_size;
2587 key.offset = 0;
2588 key.type = 0;
2589 while(1) {
Chris Mason4313b392008-01-03 09:08:48 -05002590 u64 ptr;
2591
Chris Masonedbd8d42007-12-21 16:27:24 -05002592 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2593 if (ret < 0)
2594 goto out;
Yan73e48b22008-01-03 14:14:39 -05002595
Chris Masonedbd8d42007-12-21 16:27:24 -05002596 leaf = path->nodes[0];
2597 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05002598bg_next:
2599 if (path->slots[0] >= nritems) {
2600 ret = btrfs_next_leaf(root, path);
2601 if (ret < 0)
2602 break;
2603 if (ret == 1) {
2604 ret = 0;
2605 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05002606 }
Yan73e48b22008-01-03 14:14:39 -05002607 leaf = path->nodes[0];
Chris Mason1372f8e2008-01-04 09:34:54 -05002608 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2609
2610 /*
2611 * btrfs_next_leaf doesn't cow buffers, we have to
2612 * do the search again
2613 */
2614 memcpy(&key, &found_key, sizeof(key));
2615 btrfs_release_path(root, path);
Chris Mason725c8462008-01-04 16:47:16 -05002616 goto resched_check;
Yan73e48b22008-01-03 14:14:39 -05002617 }
2618
2619 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2620 if (btrfs_key_type(&found_key) != BTRFS_BLOCK_GROUP_ITEM_KEY) {
2621 printk("shrinker found key %Lu %u %Lu\n",
2622 found_key.objectid, found_key.type,
2623 found_key.offset);
2624 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05002625 goto bg_next;
2626 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002627 ret = get_state_private(&info->block_group_cache,
2628 found_key.objectid, &ptr);
2629 if (!ret)
2630 kfree((void *)(unsigned long)ptr);
2631
2632 clear_extent_bits(&info->block_group_cache, found_key.objectid,
2633 found_key.objectid + found_key.offset - 1,
2634 (unsigned int)-1, GFP_NOFS);
2635
2636 key.objectid = found_key.objectid + 1;
2637 btrfs_del_item(trans, root, path);
2638 btrfs_release_path(root, path);
Chris Mason725c8462008-01-04 16:47:16 -05002639resched_check:
2640 if (need_resched()) {
2641 mutex_unlock(&root->fs_info->fs_mutex);
2642 cond_resched();
2643 mutex_lock(&root->fs_info->fs_mutex);
2644 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002645 }
2646 clear_extent_dirty(&info->free_space_cache, new_size, (u64)-1,
2647 GFP_NOFS);
2648 btrfs_commit_transaction(trans, root);
2649out:
2650 btrfs_free_path(path);
2651 return ret;
2652}
2653
2654int btrfs_grow_extent_tree(struct btrfs_trans_handle *trans,
2655 struct btrfs_root *root, u64 new_size)
2656{
Chris Mason0b86a832008-03-24 15:01:56 -04002657 btrfs_set_super_total_bytes(&root->fs_info->super_copy, new_size);
Chris Masonedbd8d42007-12-21 16:27:24 -05002658 return 0;
2659}
2660
Chris Mason0b86a832008-03-24 15:01:56 -04002661int find_first_block_group(struct btrfs_root *root, struct btrfs_path *path,
2662 struct btrfs_key *key)
2663{
2664 int ret;
2665 struct btrfs_key found_key;
2666 struct extent_buffer *leaf;
2667 int slot;
2668
2669 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
2670 if (ret < 0)
2671 return ret;
2672 while(1) {
2673 slot = path->slots[0];
2674 leaf = path->nodes[0];
2675 if (slot >= btrfs_header_nritems(leaf)) {
2676 ret = btrfs_next_leaf(root, path);
2677 if (ret == 0)
2678 continue;
2679 if (ret < 0)
2680 goto error;
2681 break;
2682 }
2683 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2684
2685 if (found_key.objectid >= key->objectid &&
2686 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY)
2687 return 0;
2688 path->slots[0]++;
2689 }
2690 ret = -ENOENT;
2691error:
2692 return ret;
2693}
2694
Chris Mason9078a3e2007-04-26 16:46:15 -04002695int btrfs_read_block_groups(struct btrfs_root *root)
2696{
2697 struct btrfs_path *path;
2698 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04002699 int bit;
Chris Mason9078a3e2007-04-26 16:46:15 -04002700 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04002701 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04002702 struct btrfs_space_info *space_info;
Chris Masond1310b22008-01-24 16:13:08 -05002703 struct extent_io_tree *block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002704 struct btrfs_key key;
2705 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04002706 struct extent_buffer *leaf;
Chris Mason96b51792007-10-15 16:15:19 -04002707
2708 block_group_cache = &info->block_group_cache;
Chris Masonbe744172007-05-06 10:15:01 -04002709 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04002710 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04002711 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002712 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04002713 path = btrfs_alloc_path();
2714 if (!path)
2715 return -ENOMEM;
2716
2717 while(1) {
Chris Mason0b86a832008-03-24 15:01:56 -04002718 ret = find_first_block_group(root, path, &key);
2719 if (ret > 0) {
2720 ret = 0;
2721 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04002722 }
Chris Mason0b86a832008-03-24 15:01:56 -04002723 if (ret != 0)
2724 goto error;
2725
Chris Mason5f39d392007-10-15 16:14:19 -04002726 leaf = path->nodes[0];
2727 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason9078a3e2007-04-26 16:46:15 -04002728 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2729 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04002730 ret = -ENOMEM;
Chris Mason9078a3e2007-04-26 16:46:15 -04002731 break;
2732 }
Chris Mason3e1ad542007-05-07 20:03:49 -04002733
Chris Mason5f39d392007-10-15 16:14:19 -04002734 read_extent_buffer(leaf, &cache->item,
2735 btrfs_item_ptr_offset(leaf, path->slots[0]),
2736 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04002737 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Masone37c9e62007-05-09 20:13:14 -04002738 cache->cached = 0;
Yan324ae4d2007-11-16 14:57:08 -05002739 cache->pinned = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04002740
Chris Mason9078a3e2007-04-26 16:46:15 -04002741 key.objectid = found_key.objectid + found_key.offset;
2742 btrfs_release_path(root, path);
Chris Mason0b86a832008-03-24 15:01:56 -04002743 cache->flags = btrfs_block_group_flags(&cache->item);
2744 bit = 0;
2745 if (cache->flags & BTRFS_BLOCK_GROUP_DATA) {
Chris Mason96b51792007-10-15 16:15:19 -04002746 bit = BLOCK_GROUP_DATA;
Chris Mason0b86a832008-03-24 15:01:56 -04002747 } else if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
2748 bit = BLOCK_GROUP_SYSTEM;
2749 } else if (cache->flags & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason96b51792007-10-15 16:15:19 -04002750 bit = BLOCK_GROUP_METADATA;
Chris Mason31f3c992007-04-30 15:25:45 -04002751 }
Chris Mason8790d502008-04-03 16:29:03 -04002752 set_avail_alloc_bits(info, cache->flags);
Chris Mason96b51792007-10-15 16:15:19 -04002753
Chris Mason6324fbf2008-03-24 15:01:59 -04002754 ret = update_space_info(info, cache->flags, found_key.offset,
2755 btrfs_block_group_used(&cache->item),
2756 &space_info);
2757 BUG_ON(ret);
2758 cache->space_info = space_info;
2759
Chris Mason96b51792007-10-15 16:15:19 -04002760 /* use EXTENT_LOCKED to prevent merging */
2761 set_extent_bits(block_group_cache, found_key.objectid,
2762 found_key.objectid + found_key.offset - 1,
2763 bit | EXTENT_LOCKED, GFP_NOFS);
2764 set_state_private(block_group_cache, found_key.objectid,
Jens Axboeae2f5412007-10-19 09:22:59 -04002765 (unsigned long)cache);
Chris Mason96b51792007-10-15 16:15:19 -04002766
Chris Mason9078a3e2007-04-26 16:46:15 -04002767 if (key.objectid >=
Chris Masondb945352007-10-15 16:15:53 -04002768 btrfs_super_total_bytes(&info->super_copy))
Chris Mason9078a3e2007-04-26 16:46:15 -04002769 break;
2770 }
Chris Mason0b86a832008-03-24 15:01:56 -04002771 ret = 0;
2772error:
Chris Mason9078a3e2007-04-26 16:46:15 -04002773 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04002774 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04002775}
Chris Mason6324fbf2008-03-24 15:01:59 -04002776
2777int btrfs_make_block_group(struct btrfs_trans_handle *trans,
2778 struct btrfs_root *root, u64 bytes_used,
2779 u64 type, u64 chunk_tree, u64 chunk_objectid,
2780 u64 size)
2781{
2782 int ret;
2783 int bit = 0;
2784 struct btrfs_root *extent_root;
2785 struct btrfs_block_group_cache *cache;
2786 struct extent_io_tree *block_group_cache;
2787
2788 extent_root = root->fs_info->extent_root;
2789 block_group_cache = &root->fs_info->block_group_cache;
2790
2791 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2792 BUG_ON(!cache);
2793 cache->key.objectid = chunk_objectid;
2794 cache->key.offset = size;
2795 cache->cached = 0;
2796 cache->pinned = 0;
2797 btrfs_set_key_type(&cache->key, BTRFS_BLOCK_GROUP_ITEM_KEY);
2798 memset(&cache->item, 0, sizeof(cache->item));
2799 btrfs_set_block_group_used(&cache->item, bytes_used);
2800 btrfs_set_block_group_chunk_tree(&cache->item, chunk_tree);
2801 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
2802 cache->flags = type;
2803 btrfs_set_block_group_flags(&cache->item, type);
2804
2805 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
2806 &cache->space_info);
2807 BUG_ON(ret);
2808
Chris Masond18a2c42008-04-04 15:40:00 -04002809 bit = block_group_state_bits(type);
Chris Mason6324fbf2008-03-24 15:01:59 -04002810 set_extent_bits(block_group_cache, chunk_objectid,
2811 chunk_objectid + size - 1,
2812 bit | EXTENT_LOCKED, GFP_NOFS);
2813 set_state_private(block_group_cache, chunk_objectid,
2814 (unsigned long)cache);
2815
2816 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
2817 sizeof(cache->item));
2818 BUG_ON(ret);
2819
2820 finish_current_insert(trans, extent_root);
2821 ret = del_pending_extents(trans, extent_root);
2822 BUG_ON(ret);
Chris Masond18a2c42008-04-04 15:40:00 -04002823 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason6324fbf2008-03-24 15:01:59 -04002824 return 0;
2825}