blob: 605018c6045cbeeb910ce1a4d147106c6df72375 [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 Masonec44a352008-04-28 15:29:52 -040020#include <linux/writeback.h>
Chris Mason74493f72007-12-11 09:25:06 -050021#include "hash.h"
Miguela5eb62e2008-04-11 15:45:51 -040022#include "crc32c.h"
Chris Masonfec577f2007-02-26 10:40:21 -050023#include "ctree.h"
24#include "disk-io.h"
25#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040026#include "transaction.h"
Chris Mason0b86a832008-03-24 15:01:56 -040027#include "volumes.h"
Chris Masonfec577f2007-02-26 10:40:21 -050028
Chris Mason0b86a832008-03-24 15:01:56 -040029#define BLOCK_GROUP_DATA EXTENT_WRITEBACK
Chris Mason96b51792007-10-15 16:15:19 -040030#define BLOCK_GROUP_METADATA EXTENT_UPTODATE
Chris Mason0b86a832008-03-24 15:01:56 -040031#define BLOCK_GROUP_SYSTEM EXTENT_NEW
32
Chris Mason96b51792007-10-15 16:15:19 -040033#define BLOCK_GROUP_DIRTY EXTENT_DIRTY
34
Chris Masone089f052007-03-16 16:20:31 -040035static int finish_current_insert(struct btrfs_trans_handle *trans, struct
36 btrfs_root *extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -040037static int del_pending_extents(struct btrfs_trans_handle *trans, struct
38 btrfs_root *extent_root);
Yand548ee52008-01-03 13:56:30 -050039
Chris Masonfec577f2007-02-26 10:40:21 -050040
Chris Masone37c9e62007-05-09 20:13:14 -040041static int cache_block_group(struct btrfs_root *root,
42 struct btrfs_block_group_cache *block_group)
43{
44 struct btrfs_path *path;
45 int ret;
46 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -040047 struct extent_buffer *leaf;
Chris Masond1310b22008-01-24 16:13:08 -050048 struct extent_io_tree *free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040049 int slot;
Chris Masone37c9e62007-05-09 20:13:14 -040050 u64 last = 0;
51 u64 hole_size;
Yan7d7d6062007-09-14 16:15:28 -040052 u64 first_free;
Chris Masone37c9e62007-05-09 20:13:14 -040053 int found = 0;
54
Chris Mason00f5c792007-11-30 10:09:33 -050055 if (!block_group)
56 return 0;
57
Chris Masone37c9e62007-05-09 20:13:14 -040058 root = root->fs_info->extent_root;
Chris Masonf510cfe2007-10-15 16:14:48 -040059 free_space_cache = &root->fs_info->free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040060
61 if (block_group->cached)
62 return 0;
Chris Masonf510cfe2007-10-15 16:14:48 -040063
Chris Masone37c9e62007-05-09 20:13:14 -040064 path = btrfs_alloc_path();
65 if (!path)
66 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -040067
Chris Mason2cc58cf2007-08-27 16:49:44 -040068 path->reada = 2;
Yan7d7d6062007-09-14 16:15:28 -040069 first_free = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040070 key.objectid = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040071 key.offset = 0;
72 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
73 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
74 if (ret < 0)
75 return ret;
Chris Mason0b86a832008-03-24 15:01:56 -040076 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
Yand548ee52008-01-03 13:56:30 -050077 if (ret < 0)
78 return ret;
79 if (ret == 0) {
80 leaf = path->nodes[0];
81 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
82 if (key.objectid + key.offset > first_free)
83 first_free = key.objectid + key.offset;
84 }
Chris Masone37c9e62007-05-09 20:13:14 -040085 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -040086 leaf = path->nodes[0];
Chris Masone37c9e62007-05-09 20:13:14 -040087 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -040088 if (slot >= btrfs_header_nritems(leaf)) {
Chris Masone37c9e62007-05-09 20:13:14 -040089 ret = btrfs_next_leaf(root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -040090 if (ret < 0)
91 goto err;
Chris Masonde428b62007-05-18 13:28:27 -040092 if (ret == 0) {
Chris Masone37c9e62007-05-09 20:13:14 -040093 continue;
Chris Masonde428b62007-05-18 13:28:27 -040094 } else {
Chris Masone37c9e62007-05-09 20:13:14 -040095 break;
96 }
97 }
Chris Mason5f39d392007-10-15 16:14:19 -040098 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan7d7d6062007-09-14 16:15:28 -040099 if (key.objectid < block_group->key.objectid) {
Yan7d7d6062007-09-14 16:15:28 -0400100 goto next;
101 }
Chris Masone37c9e62007-05-09 20:13:14 -0400102 if (key.objectid >= block_group->key.objectid +
103 block_group->key.offset) {
Yan7d7d6062007-09-14 16:15:28 -0400104 break;
105 }
106
107 if (btrfs_key_type(&key) == BTRFS_EXTENT_ITEM_KEY) {
108 if (!found) {
109 last = first_free;
110 found = 1;
Chris Masone37c9e62007-05-09 20:13:14 -0400111 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400112 if (key.objectid > last) {
113 hole_size = key.objectid - last;
114 set_extent_dirty(free_space_cache, last,
115 last + hole_size - 1,
116 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -0400117 }
Yan7d7d6062007-09-14 16:15:28 -0400118 last = key.objectid + key.offset;
Chris Masone37c9e62007-05-09 20:13:14 -0400119 }
Yan7d7d6062007-09-14 16:15:28 -0400120next:
Chris Masone37c9e62007-05-09 20:13:14 -0400121 path->slots[0]++;
122 }
123
Yan7d7d6062007-09-14 16:15:28 -0400124 if (!found)
125 last = first_free;
126 if (block_group->key.objectid +
127 block_group->key.offset > last) {
128 hole_size = block_group->key.objectid +
129 block_group->key.offset - last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400130 set_extent_dirty(free_space_cache, last,
131 last + hole_size - 1, GFP_NOFS);
Yan7d7d6062007-09-14 16:15:28 -0400132 }
Chris Masone37c9e62007-05-09 20:13:14 -0400133 block_group->cached = 1;
Chris Mason54aa1f42007-06-22 14:16:25 -0400134err:
Chris Masone37c9e62007-05-09 20:13:14 -0400135 btrfs_free_path(path);
136 return 0;
137}
138
Chris Mason5276aed2007-06-11 21:33:38 -0400139struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
140 btrfs_fs_info *info,
Chris Masondb945352007-10-15 16:15:53 -0400141 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400142{
Chris Masond1310b22008-01-24 16:13:08 -0500143 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -0400144 struct btrfs_block_group_cache *block_group = NULL;
145 u64 ptr;
146 u64 start;
147 u64 end;
Chris Masonbe744172007-05-06 10:15:01 -0400148 int ret;
149
Chris Masona061fc82008-05-07 11:43:44 -0400150 bytenr = max_t(u64, bytenr,
151 BTRFS_SUPER_INFO_OFFSET + BTRFS_SUPER_INFO_SIZE);
Chris Mason96b51792007-10-15 16:15:19 -0400152 block_group_cache = &info->block_group_cache;
153 ret = find_first_extent_bit(block_group_cache,
Chris Masondb945352007-10-15 16:15:53 -0400154 bytenr, &start, &end,
Chris Mason0b86a832008-03-24 15:01:56 -0400155 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA |
156 BLOCK_GROUP_SYSTEM);
Chris Masonbe744172007-05-06 10:15:01 -0400157 if (ret) {
Chris Mason96b51792007-10-15 16:15:19 -0400158 return NULL;
Chris Masonbe744172007-05-06 10:15:01 -0400159 }
Chris Mason96b51792007-10-15 16:15:19 -0400160 ret = get_state_private(block_group_cache, start, &ptr);
161 if (ret)
162 return NULL;
163
Jens Axboeae2f5412007-10-19 09:22:59 -0400164 block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Yan5cf66422007-11-16 14:57:09 -0500165 if (block_group->key.objectid <= bytenr && bytenr <
Chris Mason96b51792007-10-15 16:15:19 -0400166 block_group->key.objectid + block_group->key.offset)
167 return block_group;
Chris Masonbe744172007-05-06 10:15:01 -0400168 return NULL;
169}
Chris Mason0b86a832008-03-24 15:01:56 -0400170
171static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
172{
Chris Mason593060d2008-03-25 16:50:33 -0400173 return (cache->flags & bits) == bits;
Chris Mason0b86a832008-03-24 15:01:56 -0400174}
175
176static int noinline find_search_start(struct btrfs_root *root,
Chris Mason98ed5172008-01-03 10:01:48 -0500177 struct btrfs_block_group_cache **cache_ret,
Chris Mason0b86a832008-03-24 15:01:56 -0400178 u64 *start_ret, int num, int data)
Chris Masone37c9e62007-05-09 20:13:14 -0400179{
Chris Masone37c9e62007-05-09 20:13:14 -0400180 int ret;
181 struct btrfs_block_group_cache *cache = *cache_ret;
Chris Masond7fc6402008-02-18 12:12:38 -0500182 struct extent_io_tree *free_space_cache;
Chris Mason7d1660d2008-03-24 15:02:03 -0400183 struct extent_state *state;
Chris Masone19caa52007-10-15 16:17:44 -0400184 u64 last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400185 u64 start = 0;
Chris Mason257d0ce2007-11-07 21:08:16 -0500186 u64 cache_miss = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500187 u64 total_fs_bytes;
Chris Mason0b86a832008-03-24 15:01:56 -0400188 u64 search_start = *start_ret;
Chris Masonf84a8b32007-11-06 10:26:29 -0500189 int wrapped = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400190
Chris Mason0b86a832008-03-24 15:01:56 -0400191 if (!cache)
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500192 goto out;
Chris Mason8f18cf12008-04-25 16:53:30 -0400193
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 Mason8f18cf12008-04-25 16:53:30 -0400203 if (!block_group_bits(cache, data) || cache->ro) {
Chris Mason0b86a832008-03-24 15:01:56 -0400204 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 Mason8f18cf12008-04-25 16:53:30 -0400228 if (cache->ro)
229 goto new_group;
Chris Mason0b86a832008-03-24 15:01:56 -0400230 if (start + num > cache->key.objectid + cache->key.offset)
Chris Masone37c9e62007-05-09 20:13:14 -0400231 goto new_group;
Chris Masonc31f8832008-01-08 15:46:31 -0500232 if (start + num > total_fs_bytes)
233 goto new_group;
Chris Mason8790d502008-04-03 16:29:03 -0400234 if (!block_group_bits(cache, data)) {
Chris Mason611f0e02008-04-03 16:29:03 -0400235 printk("block group bits don't match %Lu %d\n", cache->flags, data);
Chris Mason8790d502008-04-03 16:29:03 -0400236 }
Chris Mason0b86a832008-03-24 15:01:56 -0400237 *start_ret = start;
238 return 0;
Chris Mason8790d502008-04-03 16:29:03 -0400239 }
240out:
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500241 cache = btrfs_lookup_block_group(root->fs_info, search_start);
242 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -0400243 printk("Unable to find block group for %Lu\n", search_start);
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500244 WARN_ON(1);
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500245 }
Chris Mason0b86a832008-03-24 15:01:56 -0400246 return -ENOSPC;
Chris Masone37c9e62007-05-09 20:13:14 -0400247
248new_group:
Chris Masone19caa52007-10-15 16:17:44 -0400249 last = cache->key.objectid + cache->key.offset;
Chris Masonf84a8b32007-11-06 10:26:29 -0500250wrapped:
Chris Masone19caa52007-10-15 16:17:44 -0400251 cache = btrfs_lookup_block_group(root->fs_info, last);
Chris Masonc31f8832008-01-08 15:46:31 -0500252 if (!cache || cache->key.objectid >= total_fs_bytes) {
Chris Mason0e4de582007-11-26 10:55:49 -0500253no_cache:
Chris Masonf84a8b32007-11-06 10:26:29 -0500254 if (!wrapped) {
255 wrapped = 1;
256 last = search_start;
Chris Masonf84a8b32007-11-06 10:26:29 -0500257 goto wrapped;
258 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500259 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -0400260 }
Chris Mason257d0ce2007-11-07 21:08:16 -0500261 if (cache_miss && !cache->cached) {
262 cache_block_group(root, cache);
263 last = cache_miss;
Chris Mason257d0ce2007-11-07 21:08:16 -0500264 cache = btrfs_lookup_block_group(root->fs_info, last);
265 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500266 cache = btrfs_find_block_group(root, cache, last, data, 0);
Chris Mason0e4de582007-11-26 10:55:49 -0500267 if (!cache)
268 goto no_cache;
Chris Masone37c9e62007-05-09 20:13:14 -0400269 *cache_ret = cache;
Chris Mason257d0ce2007-11-07 21:08:16 -0500270 cache_miss = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400271 goto again;
272}
273
Chris Mason84f54cf2007-06-12 07:43:08 -0400274static u64 div_factor(u64 num, int factor)
275{
Chris Mason257d0ce2007-11-07 21:08:16 -0500276 if (factor == 10)
277 return num;
Chris Mason84f54cf2007-06-12 07:43:08 -0400278 num *= factor;
279 do_div(num, 10);
280 return num;
281}
282
Chris Mason6324fbf2008-03-24 15:01:59 -0400283static int block_group_state_bits(u64 flags)
284{
285 int bits = 0;
286 if (flags & BTRFS_BLOCK_GROUP_DATA)
287 bits |= BLOCK_GROUP_DATA;
288 if (flags & BTRFS_BLOCK_GROUP_METADATA)
289 bits |= BLOCK_GROUP_METADATA;
290 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
291 bits |= BLOCK_GROUP_SYSTEM;
292 return bits;
293}
294
Chris Mason31f3c992007-04-30 15:25:45 -0400295struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
296 struct btrfs_block_group_cache
Chris Masonbe744172007-05-06 10:15:01 -0400297 *hint, u64 search_start,
Chris Masonde428b62007-05-18 13:28:27 -0400298 int data, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400299{
Chris Mason96b51792007-10-15 16:15:19 -0400300 struct btrfs_block_group_cache *cache;
Chris Masond1310b22008-01-24 16:13:08 -0500301 struct extent_io_tree *block_group_cache;
Chris Mason31f3c992007-04-30 15:25:45 -0400302 struct btrfs_block_group_cache *found_group = NULL;
Chris Masoncd1bc462007-04-27 10:08:34 -0400303 struct btrfs_fs_info *info = root->fs_info;
304 u64 used;
Chris Mason31f3c992007-04-30 15:25:45 -0400305 u64 last = 0;
306 u64 hint_last;
Chris Mason96b51792007-10-15 16:15:19 -0400307 u64 start;
308 u64 end;
309 u64 free_check;
310 u64 ptr;
Chris Masonc31f8832008-01-08 15:46:31 -0500311 u64 total_fs_bytes;
Chris Mason96b51792007-10-15 16:15:19 -0400312 int bit;
Chris Masoncd1bc462007-04-27 10:08:34 -0400313 int ret;
Chris Mason31f3c992007-04-30 15:25:45 -0400314 int full_search = 0;
Chris Masonbce4eae2008-04-24 14:42:46 -0400315 int factor = 10;
Chris Masonde428b62007-05-18 13:28:27 -0400316
Chris Mason96b51792007-10-15 16:15:19 -0400317 block_group_cache = &info->block_group_cache;
Chris Masonc31f8832008-01-08 15:46:31 -0500318 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Mason96b51792007-10-15 16:15:19 -0400319
Chris Masona236aed2008-04-29 09:38:00 -0400320 if (data & BTRFS_BLOCK_GROUP_METADATA)
321 factor = 9;
Chris Masonbe744172007-05-06 10:15:01 -0400322
Chris Mason6324fbf2008-03-24 15:01:59 -0400323 bit = block_group_state_bits(data);
Chris Masonbe744172007-05-06 10:15:01 -0400324
Chris Masonc31f8832008-01-08 15:46:31 -0500325 if (search_start && search_start < total_fs_bytes) {
Chris Masonbe744172007-05-06 10:15:01 -0400326 struct btrfs_block_group_cache *shint;
Chris Mason5276aed2007-06-11 21:33:38 -0400327 shint = btrfs_lookup_block_group(info, search_start);
Chris Mason8f18cf12008-04-25 16:53:30 -0400328 if (shint && block_group_bits(shint, data) && !shint->ro) {
Chris Masonbe744172007-05-06 10:15:01 -0400329 used = btrfs_block_group_used(&shint->item);
Yan324ae4d2007-11-16 14:57:08 -0500330 if (used + shint->pinned <
331 div_factor(shint->key.offset, factor)) {
Chris Masonbe744172007-05-06 10:15:01 -0400332 return shint;
333 }
334 }
335 }
Chris Mason8f18cf12008-04-25 16:53:30 -0400336 if (hint && !hint->ro && block_group_bits(hint, data) &&
Chris Mason0b86a832008-03-24 15:01:56 -0400337 hint->key.objectid < total_fs_bytes) {
Chris Mason31f3c992007-04-30 15:25:45 -0400338 used = btrfs_block_group_used(&hint->item);
Yan324ae4d2007-11-16 14:57:08 -0500339 if (used + hint->pinned <
340 div_factor(hint->key.offset, factor)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400341 return hint;
342 }
Chris Masone19caa52007-10-15 16:17:44 -0400343 last = hint->key.objectid + hint->key.offset;
Chris Mason31f3c992007-04-30 15:25:45 -0400344 hint_last = last;
345 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400346 if (hint)
347 hint_last = max(hint->key.objectid, search_start);
348 else
349 hint_last = search_start;
350
Chris Masonc31f8832008-01-08 15:46:31 -0500351 if (hint_last >= total_fs_bytes)
352 hint_last = search_start;
Chris Masone37c9e62007-05-09 20:13:14 -0400353 last = hint_last;
Chris Mason31f3c992007-04-30 15:25:45 -0400354 }
Chris Mason31f3c992007-04-30 15:25:45 -0400355again:
Chris Masoncd1bc462007-04-27 10:08:34 -0400356 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400357 ret = find_first_extent_bit(block_group_cache, last,
358 &start, &end, bit);
359 if (ret)
Chris Masoncd1bc462007-04-27 10:08:34 -0400360 break;
Chris Mason96b51792007-10-15 16:15:19 -0400361
362 ret = get_state_private(block_group_cache, start, &ptr);
363 if (ret)
364 break;
365
Jens Axboeae2f5412007-10-19 09:22:59 -0400366 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400367 last = cache->key.objectid + cache->key.offset;
368 used = btrfs_block_group_used(&cache->item);
369
Chris Masonc31f8832008-01-08 15:46:31 -0500370 if (cache->key.objectid > total_fs_bytes)
371 break;
372
Chris Mason8f18cf12008-04-25 16:53:30 -0400373 if (!cache->ro && block_group_bits(cache, data)) {
Chris Mason8790d502008-04-03 16:29:03 -0400374 if (full_search)
375 free_check = cache->key.offset;
376 else
377 free_check = div_factor(cache->key.offset,
378 factor);
Chris Mason6324fbf2008-03-24 15:01:59 -0400379
Chris Mason8790d502008-04-03 16:29:03 -0400380 if (used + cache->pinned < free_check) {
381 found_group = cache;
382 goto found;
383 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400384 }
Chris Masonde428b62007-05-18 13:28:27 -0400385 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400386 }
Chris Mason31f3c992007-04-30 15:25:45 -0400387 if (!full_search) {
Chris Masonbe744172007-05-06 10:15:01 -0400388 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400389 full_search = 1;
390 goto again;
391 }
Chris Masonbe744172007-05-06 10:15:01 -0400392found:
Chris Mason31f3c992007-04-30 15:25:45 -0400393 return found_group;
Chris Masoncd1bc462007-04-27 10:08:34 -0400394}
395
Chris Mason7bb86312007-12-11 09:25:06 -0500396static u64 hash_extent_ref(u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500397 u64 owner, u64 owner_offset)
398{
399 u32 high_crc = ~(u32)0;
400 u32 low_crc = ~(u32)0;
401 __le64 lenum;
Chris Mason74493f72007-12-11 09:25:06 -0500402 lenum = cpu_to_le64(root_objectid);
Miguela5eb62e2008-04-11 15:45:51 -0400403 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
Chris Mason7bb86312007-12-11 09:25:06 -0500404 lenum = cpu_to_le64(ref_generation);
Miguela5eb62e2008-04-11 15:45:51 -0400405 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500406 if (owner >= BTRFS_FIRST_FREE_OBJECTID) {
407 lenum = cpu_to_le64(owner);
Miguela5eb62e2008-04-11 15:45:51 -0400408 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500409 lenum = cpu_to_le64(owner_offset);
Miguela5eb62e2008-04-11 15:45:51 -0400410 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500411 }
Chris Mason74493f72007-12-11 09:25:06 -0500412 return ((u64)high_crc << 32) | (u64)low_crc;
413}
414
Chris Mason7bb86312007-12-11 09:25:06 -0500415static int match_extent_ref(struct extent_buffer *leaf,
416 struct btrfs_extent_ref *disk_ref,
417 struct btrfs_extent_ref *cpu_ref)
418{
419 int ret;
420 int len;
421
422 if (cpu_ref->objectid)
423 len = sizeof(*cpu_ref);
424 else
425 len = 2 * sizeof(u64);
426 ret = memcmp_extent_buffer(leaf, cpu_ref, (unsigned long)disk_ref,
427 len);
428 return ret == 0;
429}
430
Chris Mason98ed5172008-01-03 10:01:48 -0500431static int noinline lookup_extent_backref(struct btrfs_trans_handle *trans,
432 struct btrfs_root *root,
433 struct btrfs_path *path, u64 bytenr,
434 u64 root_objectid,
435 u64 ref_generation, u64 owner,
436 u64 owner_offset, int del)
Chris Mason7bb86312007-12-11 09:25:06 -0500437{
438 u64 hash;
439 struct btrfs_key key;
440 struct btrfs_key found_key;
441 struct btrfs_extent_ref ref;
442 struct extent_buffer *leaf;
443 struct btrfs_extent_ref *disk_ref;
444 int ret;
445 int ret2;
446
447 btrfs_set_stack_ref_root(&ref, root_objectid);
448 btrfs_set_stack_ref_generation(&ref, ref_generation);
449 btrfs_set_stack_ref_objectid(&ref, owner);
450 btrfs_set_stack_ref_offset(&ref, owner_offset);
451
452 hash = hash_extent_ref(root_objectid, ref_generation, owner,
453 owner_offset);
454 key.offset = hash;
455 key.objectid = bytenr;
456 key.type = BTRFS_EXTENT_REF_KEY;
457
458 while (1) {
459 ret = btrfs_search_slot(trans, root, &key, path,
460 del ? -1 : 0, del);
461 if (ret < 0)
462 goto out;
463 leaf = path->nodes[0];
464 if (ret != 0) {
465 u32 nritems = btrfs_header_nritems(leaf);
466 if (path->slots[0] >= nritems) {
467 ret2 = btrfs_next_leaf(root, path);
468 if (ret2)
469 goto out;
470 leaf = path->nodes[0];
471 }
472 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
473 if (found_key.objectid != bytenr ||
474 found_key.type != BTRFS_EXTENT_REF_KEY)
475 goto out;
476 key.offset = found_key.offset;
477 if (del) {
478 btrfs_release_path(root, path);
479 continue;
480 }
481 }
482 disk_ref = btrfs_item_ptr(path->nodes[0],
483 path->slots[0],
484 struct btrfs_extent_ref);
485 if (match_extent_ref(path->nodes[0], disk_ref, &ref)) {
486 ret = 0;
487 goto out;
488 }
489 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
490 key.offset = found_key.offset + 1;
491 btrfs_release_path(root, path);
492 }
493out:
494 return ret;
495}
496
Chris Masond8d5f3e2007-12-11 12:42:00 -0500497/*
498 * Back reference rules. Back refs have three main goals:
499 *
500 * 1) differentiate between all holders of references to an extent so that
501 * when a reference is dropped we can make sure it was a valid reference
502 * before freeing the extent.
503 *
504 * 2) Provide enough information to quickly find the holders of an extent
505 * if we notice a given block is corrupted or bad.
506 *
507 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
508 * maintenance. This is actually the same as #2, but with a slightly
509 * different use case.
510 *
511 * File extents can be referenced by:
512 *
513 * - multiple snapshots, subvolumes, or different generations in one subvol
514 * - different files inside a single subvolume (in theory, not implemented yet)
515 * - different offsets inside a file (bookend extents in file.c)
516 *
517 * The extent ref structure has fields for:
518 *
519 * - Objectid of the subvolume root
520 * - Generation number of the tree holding the reference
521 * - objectid of the file holding the reference
522 * - offset in the file corresponding to the key holding the reference
523 *
524 * When a file extent is allocated the fields are filled in:
525 * (root_key.objectid, trans->transid, inode objectid, offset in file)
526 *
527 * When a leaf is cow'd new references are added for every file extent found
528 * in the leaf. It looks the same as the create case, but trans->transid
529 * will be different when the block is cow'd.
530 *
531 * (root_key.objectid, trans->transid, inode objectid, offset in file)
532 *
533 * When a file extent is removed either during snapshot deletion or file
534 * truncation, the corresponding back reference is found
535 * by searching for:
536 *
537 * (btrfs_header_owner(leaf), btrfs_header_generation(leaf),
538 * inode objectid, offset in file)
539 *
540 * Btree extents can be referenced by:
541 *
542 * - Different subvolumes
543 * - Different generations of the same subvolume
544 *
545 * Storing sufficient information for a full reverse mapping of a btree
546 * block would require storing the lowest key of the block in the backref,
547 * and it would require updating that lowest key either before write out or
548 * every time it changed. Instead, the objectid of the lowest key is stored
549 * along with the level of the tree block. This provides a hint
550 * about where in the btree the block can be found. Searches through the
551 * btree only need to look for a pointer to that block, so they stop one
552 * level higher than the level recorded in the backref.
553 *
554 * Some btrees do not do reference counting on their extents. These
555 * include the extent tree and the tree of tree roots. Backrefs for these
556 * trees always have a generation of zero.
557 *
558 * When a tree block is created, back references are inserted:
559 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500560 * (root->root_key.objectid, trans->transid or zero, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500561 *
562 * When a tree block is cow'd in a reference counted root,
563 * new back references are added for all the blocks it points to.
564 * These are of the form (trans->transid will have increased since creation):
565 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500566 * (root->root_key.objectid, trans->transid, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500567 *
568 * Because the lowest_key_objectid and the level are just hints
569 * they are not used when backrefs are deleted. When a backref is deleted:
570 *
571 * if backref was for a tree root:
572 * root_objectid = root->root_key.objectid
573 * else
574 * root_objectid = btrfs_header_owner(parent)
575 *
576 * (root_objectid, btrfs_header_generation(parent) or zero, 0, 0)
577 *
578 * Back Reference Key hashing:
579 *
580 * Back references have four fields, each 64 bits long. Unfortunately,
581 * This is hashed into a single 64 bit number and placed into the key offset.
582 * The key objectid corresponds to the first byte in the extent, and the
583 * key type is set to BTRFS_EXTENT_REF_KEY
584 */
Chris Mason7bb86312007-12-11 09:25:06 -0500585int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
586 struct btrfs_root *root,
587 struct btrfs_path *path, u64 bytenr,
588 u64 root_objectid, u64 ref_generation,
589 u64 owner, u64 owner_offset)
Chris Mason74493f72007-12-11 09:25:06 -0500590{
591 u64 hash;
592 struct btrfs_key key;
593 struct btrfs_extent_ref ref;
Chris Mason7bb86312007-12-11 09:25:06 -0500594 struct btrfs_extent_ref *disk_ref;
Chris Mason74493f72007-12-11 09:25:06 -0500595 int ret;
596
597 btrfs_set_stack_ref_root(&ref, root_objectid);
Chris Mason7bb86312007-12-11 09:25:06 -0500598 btrfs_set_stack_ref_generation(&ref, ref_generation);
Chris Mason74493f72007-12-11 09:25:06 -0500599 btrfs_set_stack_ref_objectid(&ref, owner);
600 btrfs_set_stack_ref_offset(&ref, owner_offset);
601
Chris Mason7bb86312007-12-11 09:25:06 -0500602 hash = hash_extent_ref(root_objectid, ref_generation, owner,
603 owner_offset);
Chris Mason74493f72007-12-11 09:25:06 -0500604 key.offset = hash;
605 key.objectid = bytenr;
606 key.type = BTRFS_EXTENT_REF_KEY;
607
608 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(ref));
609 while (ret == -EEXIST) {
Chris Mason7bb86312007-12-11 09:25:06 -0500610 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
611 struct btrfs_extent_ref);
612 if (match_extent_ref(path->nodes[0], disk_ref, &ref))
613 goto out;
614 key.offset++;
615 btrfs_release_path(root, path);
616 ret = btrfs_insert_empty_item(trans, root, path, &key,
617 sizeof(ref));
Chris Mason74493f72007-12-11 09:25:06 -0500618 }
Chris Mason7bb86312007-12-11 09:25:06 -0500619 if (ret)
620 goto out;
621 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
622 struct btrfs_extent_ref);
623 write_extent_buffer(path->nodes[0], &ref, (unsigned long)disk_ref,
624 sizeof(ref));
625 btrfs_mark_buffer_dirty(path->nodes[0]);
626out:
627 btrfs_release_path(root, path);
628 return ret;
Chris Mason74493f72007-12-11 09:25:06 -0500629}
630
Chris Masonb18c6682007-04-17 13:26:50 -0400631int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
632 struct btrfs_root *root,
Chris Mason74493f72007-12-11 09:25:06 -0500633 u64 bytenr, u64 num_bytes,
Chris Mason7bb86312007-12-11 09:25:06 -0500634 u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500635 u64 owner, u64 owner_offset)
Chris Mason02217ed2007-03-02 16:08:05 -0500636{
Chris Mason5caf2a02007-04-02 11:20:42 -0400637 struct btrfs_path *path;
Chris Mason02217ed2007-03-02 16:08:05 -0500638 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400639 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400640 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400641 struct btrfs_extent_item *item;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400642 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500643
Chris Masondb945352007-10-15 16:15:53 -0400644 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400645 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400646 if (!path)
647 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -0400648
Chris Mason3c12ac72008-04-21 12:01:38 -0400649 path->reada = 1;
Chris Masondb945352007-10-15 16:15:53 -0400650 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -0400651 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -0400652 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -0400653 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400654 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400655 if (ret < 0)
656 return ret;
Chris Masona429e512007-04-18 16:15:28 -0400657 if (ret != 0) {
Chris Masona28ec192007-03-06 20:08:01 -0500658 BUG();
Chris Masona429e512007-04-18 16:15:28 -0400659 }
Chris Mason02217ed2007-03-02 16:08:05 -0500660 BUG_ON(ret != 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400661 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400662 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400663 refs = btrfs_extent_refs(l, item);
664 btrfs_set_extent_refs(l, item, refs + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -0400665 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masona28ec192007-03-06 20:08:01 -0500666
Chris Mason5caf2a02007-04-02 11:20:42 -0400667 btrfs_release_path(root->fs_info->extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -0500668
Chris Mason3c12ac72008-04-21 12:01:38 -0400669 path->reada = 1;
Chris Mason7bb86312007-12-11 09:25:06 -0500670 ret = btrfs_insert_extent_backref(trans, root->fs_info->extent_root,
671 path, bytenr, root_objectid,
672 ref_generation, owner, owner_offset);
673 BUG_ON(ret);
Chris Mason9f5fae22007-03-20 14:38:32 -0400674 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400675 del_pending_extents(trans, root->fs_info->extent_root);
Chris Mason74493f72007-12-11 09:25:06 -0500676
677 btrfs_free_path(path);
Chris Mason02217ed2007-03-02 16:08:05 -0500678 return 0;
679}
680
Chris Masone9d0b132007-08-10 14:06:19 -0400681int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
682 struct btrfs_root *root)
683{
684 finish_current_insert(trans, root->fs_info->extent_root);
685 del_pending_extents(trans, root->fs_info->extent_root);
686 return 0;
687}
688
Chris Masonb18c6682007-04-17 13:26:50 -0400689static int lookup_extent_ref(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -0400690 struct btrfs_root *root, u64 bytenr,
691 u64 num_bytes, u32 *refs)
Chris Masona28ec192007-03-06 20:08:01 -0500692{
Chris Mason5caf2a02007-04-02 11:20:42 -0400693 struct btrfs_path *path;
Chris Masona28ec192007-03-06 20:08:01 -0500694 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400695 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400696 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400697 struct btrfs_extent_item *item;
Chris Mason5caf2a02007-04-02 11:20:42 -0400698
Chris Masondb945352007-10-15 16:15:53 -0400699 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400700 path = btrfs_alloc_path();
Chris Mason3c12ac72008-04-21 12:01:38 -0400701 path->reada = 1;
Chris Masondb945352007-10-15 16:15:53 -0400702 key.objectid = bytenr;
703 key.offset = num_bytes;
Chris Mason62e27492007-03-15 12:56:47 -0400704 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5caf2a02007-04-02 11:20:42 -0400705 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400706 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400707 if (ret < 0)
708 goto out;
Chris Mason5f39d392007-10-15 16:14:19 -0400709 if (ret != 0) {
710 btrfs_print_leaf(root, path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400711 printk("failed to find block number %Lu\n", bytenr);
Chris Masona28ec192007-03-06 20:08:01 -0500712 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -0400713 }
714 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400715 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400716 *refs = btrfs_extent_refs(l, item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400717out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400718 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -0500719 return 0;
720}
721
Chris Masonbe20aa92007-12-17 20:14:01 -0500722u32 btrfs_count_snapshots_in_path(struct btrfs_root *root,
723 struct btrfs_path *count_path,
Chris Masona68d5932008-05-08 14:11:56 -0400724 u64 expected_owner,
Chris Masonbe20aa92007-12-17 20:14:01 -0500725 u64 first_extent)
726{
727 struct btrfs_root *extent_root = root->fs_info->extent_root;
728 struct btrfs_path *path;
729 u64 bytenr;
730 u64 found_objectid;
Chris Masona68d5932008-05-08 14:11:56 -0400731 u64 found_owner;
Chris Mason56b453c2008-01-03 09:08:27 -0500732 u64 root_objectid = root->root_key.objectid;
Chris Masonbe20aa92007-12-17 20:14:01 -0500733 u32 total_count = 0;
Chris Masonbbaf5492008-05-08 16:31:21 -0400734 u32 extent_refs;
Chris Masonbe20aa92007-12-17 20:14:01 -0500735 u32 cur_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500736 u32 nritems;
737 int ret;
738 struct btrfs_key key;
739 struct btrfs_key found_key;
740 struct extent_buffer *l;
741 struct btrfs_extent_item *item;
742 struct btrfs_extent_ref *ref_item;
743 int level = -1;
744
745 path = btrfs_alloc_path();
746again:
747 if (level == -1)
748 bytenr = first_extent;
749 else
750 bytenr = count_path->nodes[level]->start;
751
752 cur_count = 0;
753 key.objectid = bytenr;
754 key.offset = 0;
755
756 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
757 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
758 if (ret < 0)
759 goto out;
760 BUG_ON(ret == 0);
761
762 l = path->nodes[0];
763 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
764
765 if (found_key.objectid != bytenr ||
766 found_key.type != BTRFS_EXTENT_ITEM_KEY) {
767 goto out;
768 }
769
770 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Masonbbaf5492008-05-08 16:31:21 -0400771 extent_refs = btrfs_extent_refs(l, item);
Chris Masonbe20aa92007-12-17 20:14:01 -0500772 while (1) {
Chris Masonbd098352008-01-03 13:23:19 -0500773 l = path->nodes[0];
Chris Masonbe20aa92007-12-17 20:14:01 -0500774 nritems = btrfs_header_nritems(l);
775 if (path->slots[0] >= nritems) {
776 ret = btrfs_next_leaf(extent_root, path);
777 if (ret == 0)
778 continue;
779 break;
780 }
781 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
782 if (found_key.objectid != bytenr)
783 break;
Chris Masonbd098352008-01-03 13:23:19 -0500784
Chris Masonbe20aa92007-12-17 20:14:01 -0500785 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
786 path->slots[0]++;
787 continue;
788 }
789
790 cur_count++;
791 ref_item = btrfs_item_ptr(l, path->slots[0],
792 struct btrfs_extent_ref);
793 found_objectid = btrfs_ref_root(l, ref_item);
794
Chris Mason56b453c2008-01-03 09:08:27 -0500795 if (found_objectid != root_objectid) {
796 total_count = 2;
Chris Mason4313b392008-01-03 09:08:48 -0500797 goto out;
Chris Mason56b453c2008-01-03 09:08:27 -0500798 }
Chris Masona68d5932008-05-08 14:11:56 -0400799 if (level == -1) {
800 found_owner = btrfs_ref_objectid(l, ref_item);
801 if (found_owner != expected_owner) {
802 total_count = 2;
803 goto out;
804 }
Chris Masonbbaf5492008-05-08 16:31:21 -0400805 /*
806 * nasty. we don't count a reference held by
807 * the running transaction. This allows nodatacow
808 * to avoid cow most of the time
809 */
810 if (found_owner >= BTRFS_FIRST_FREE_OBJECTID &&
811 btrfs_ref_generation(l, ref_item) ==
812 root->fs_info->generation) {
813 extent_refs--;
814 }
Chris Masona68d5932008-05-08 14:11:56 -0400815 }
Chris Mason56b453c2008-01-03 09:08:27 -0500816 total_count = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500817 path->slots[0]++;
818 }
Chris Masonbbaf5492008-05-08 16:31:21 -0400819 /*
820 * if there is more than one reference against a data extent,
821 * we have to assume the other ref is another snapshot
822 */
823 if (level == -1 && extent_refs > 1) {
824 total_count = 2;
825 goto out;
826 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500827 if (cur_count == 0) {
828 total_count = 0;
829 goto out;
830 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500831 if (level >= 0 && root->node == count_path->nodes[level])
832 goto out;
833 level++;
834 btrfs_release_path(root, path);
835 goto again;
836
837out:
838 btrfs_free_path(path);
839 return total_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500840}
Chris Masonc5739bb2007-04-10 09:27:04 -0400841int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -0500842 struct btrfs_root *root, u64 owner_objectid)
Chris Masonc5739bb2007-04-10 09:27:04 -0400843{
Chris Mason7bb86312007-12-11 09:25:06 -0500844 u64 generation;
845 u64 key_objectid;
846 u64 level;
847 u32 nritems;
848 struct btrfs_disk_key disk_key;
849
850 level = btrfs_header_level(root->node);
851 generation = trans->transid;
852 nritems = btrfs_header_nritems(root->node);
853 if (nritems > 0) {
854 if (level == 0)
855 btrfs_item_key(root->node, &disk_key, 0);
856 else
857 btrfs_node_key(root->node, &disk_key, 0);
858 key_objectid = btrfs_disk_key_objectid(&disk_key);
859 } else {
860 key_objectid = 0;
861 }
Chris Masondb945352007-10-15 16:15:53 -0400862 return btrfs_inc_extent_ref(trans, root, root->node->start,
Chris Mason7bb86312007-12-11 09:25:06 -0500863 root->node->len, owner_objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500864 generation, level, key_objectid);
Chris Masonc5739bb2007-04-10 09:27:04 -0400865}
866
Chris Masone089f052007-03-16 16:20:31 -0400867int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400868 struct extent_buffer *buf)
Chris Mason02217ed2007-03-02 16:08:05 -0500869{
Chris Masondb945352007-10-15 16:15:53 -0400870 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400871 u32 nritems;
872 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -0400873 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -0500874 int i;
Chris Masondb945352007-10-15 16:15:53 -0400875 int level;
Chris Mason6407bf62007-03-27 06:33:00 -0400876 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400877 int faili;
Chris Masona28ec192007-03-06 20:08:01 -0500878
Chris Mason3768f362007-03-13 16:47:54 -0400879 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500880 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400881
Chris Masondb945352007-10-15 16:15:53 -0400882 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400883 nritems = btrfs_header_nritems(buf);
884 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400885 if (level == 0) {
886 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400887 btrfs_item_key_to_cpu(buf, &key, i);
888 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -0400889 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400890 fi = btrfs_item_ptr(buf, i,
Chris Mason6407bf62007-03-27 06:33:00 -0400891 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400892 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason236454df2007-04-19 13:37:44 -0400893 BTRFS_FILE_EXTENT_INLINE)
894 continue;
Chris Masondb945352007-10-15 16:15:53 -0400895 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
896 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -0400897 continue;
Chris Masondb945352007-10-15 16:15:53 -0400898 ret = btrfs_inc_extent_ref(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500899 btrfs_file_extent_disk_num_bytes(buf, fi),
900 root->root_key.objectid, trans->transid,
901 key.objectid, key.offset);
Chris Mason54aa1f42007-06-22 14:16:25 -0400902 if (ret) {
903 faili = i;
904 goto fail;
905 }
Chris Mason6407bf62007-03-27 06:33:00 -0400906 } else {
Chris Masondb945352007-10-15 16:15:53 -0400907 bytenr = btrfs_node_blockptr(buf, i);
Chris Mason6caab482007-12-13 09:48:07 -0500908 btrfs_node_key_to_cpu(buf, &key, i);
Chris Masondb945352007-10-15 16:15:53 -0400909 ret = btrfs_inc_extent_ref(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500910 btrfs_level_size(root, level - 1),
911 root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500912 trans->transid,
913 level - 1, key.objectid);
Chris Mason54aa1f42007-06-22 14:16:25 -0400914 if (ret) {
915 faili = i;
916 goto fail;
917 }
Chris Mason6407bf62007-03-27 06:33:00 -0400918 }
Chris Mason02217ed2007-03-02 16:08:05 -0500919 }
920 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400921fail:
Chris Masonccd467d2007-06-28 15:57:36 -0400922 WARN_ON(1);
Chris Mason7bb86312007-12-11 09:25:06 -0500923#if 0
Chris Mason54aa1f42007-06-22 14:16:25 -0400924 for (i =0; i < faili; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400925 if (level == 0) {
926 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400927 btrfs_item_key_to_cpu(buf, &key, i);
928 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -0400929 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400930 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -0400931 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400932 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -0400933 BTRFS_FILE_EXTENT_INLINE)
934 continue;
Chris Masondb945352007-10-15 16:15:53 -0400935 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
936 if (disk_bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -0400937 continue;
Chris Masondb945352007-10-15 16:15:53 -0400938 err = btrfs_free_extent(trans, root, disk_bytenr,
939 btrfs_file_extent_disk_num_bytes(buf,
Chris Mason5f39d392007-10-15 16:14:19 -0400940 fi), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400941 BUG_ON(err);
942 } else {
Chris Masondb945352007-10-15 16:15:53 -0400943 bytenr = btrfs_node_blockptr(buf, i);
944 err = btrfs_free_extent(trans, root, bytenr,
945 btrfs_level_size(root, level - 1), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400946 BUG_ON(err);
947 }
948 }
Chris Mason7bb86312007-12-11 09:25:06 -0500949#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400950 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -0500951}
952
Chris Mason9078a3e2007-04-26 16:46:15 -0400953static int write_one_cache_group(struct btrfs_trans_handle *trans,
954 struct btrfs_root *root,
955 struct btrfs_path *path,
956 struct btrfs_block_group_cache *cache)
957{
958 int ret;
959 int pending_ret;
960 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400961 unsigned long bi;
962 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -0400963
Chris Mason9078a3e2007-04-26 16:46:15 -0400964 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400965 if (ret < 0)
966 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -0400967 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400968
969 leaf = path->nodes[0];
970 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
971 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
972 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -0400973 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400974fail:
Chris Mason9078a3e2007-04-26 16:46:15 -0400975 finish_current_insert(trans, extent_root);
976 pending_ret = del_pending_extents(trans, extent_root);
977 if (ret)
978 return ret;
979 if (pending_ret)
980 return pending_ret;
981 return 0;
982
983}
984
Chris Mason96b51792007-10-15 16:15:19 -0400985int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
986 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -0400987{
Chris Masond1310b22008-01-24 16:13:08 -0500988 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -0400989 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400990 int ret;
991 int err = 0;
992 int werr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -0400993 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -0400994 u64 last = 0;
995 u64 start;
996 u64 end;
997 u64 ptr;
Chris Mason9078a3e2007-04-26 16:46:15 -0400998
Chris Mason96b51792007-10-15 16:15:19 -0400999 block_group_cache = &root->fs_info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04001000 path = btrfs_alloc_path();
1001 if (!path)
1002 return -ENOMEM;
1003
1004 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -04001005 ret = find_first_extent_bit(block_group_cache, last,
1006 &start, &end, BLOCK_GROUP_DIRTY);
1007 if (ret)
Chris Mason9078a3e2007-04-26 16:46:15 -04001008 break;
Chris Mason54aa1f42007-06-22 14:16:25 -04001009
Chris Mason96b51792007-10-15 16:15:19 -04001010 last = end + 1;
1011 ret = get_state_private(block_group_cache, start, &ptr);
1012 if (ret)
1013 break;
Jens Axboeae2f5412007-10-19 09:22:59 -04001014 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -04001015 err = write_one_cache_group(trans, root,
1016 path, cache);
1017 /*
1018 * if we fail to write the cache group, we want
1019 * to keep it marked dirty in hopes that a later
1020 * write will work
1021 */
1022 if (err) {
1023 werr = err;
1024 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04001025 }
Chris Mason96b51792007-10-15 16:15:19 -04001026 clear_extent_bits(block_group_cache, start, end,
1027 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001028 }
1029 btrfs_free_path(path);
1030 return werr;
1031}
1032
Chris Mason6324fbf2008-03-24 15:01:59 -04001033static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
1034 u64 flags)
1035{
1036 struct list_head *head = &info->space_info;
1037 struct list_head *cur;
1038 struct btrfs_space_info *found;
1039 list_for_each(cur, head) {
1040 found = list_entry(cur, struct btrfs_space_info, list);
1041 if (found->flags == flags)
1042 return found;
1043 }
1044 return NULL;
1045
1046}
1047
Chris Mason593060d2008-03-25 16:50:33 -04001048static int update_space_info(struct btrfs_fs_info *info, u64 flags,
1049 u64 total_bytes, u64 bytes_used,
1050 struct btrfs_space_info **space_info)
1051{
1052 struct btrfs_space_info *found;
1053
1054 found = __find_space_info(info, flags);
1055 if (found) {
1056 found->total_bytes += total_bytes;
1057 found->bytes_used += bytes_used;
Chris Mason8f18cf12008-04-25 16:53:30 -04001058 found->full = 0;
Chris Mason593060d2008-03-25 16:50:33 -04001059 WARN_ON(found->total_bytes < found->bytes_used);
1060 *space_info = found;
1061 return 0;
1062 }
1063 found = kmalloc(sizeof(*found), GFP_NOFS);
1064 if (!found)
1065 return -ENOMEM;
1066
1067 list_add(&found->list, &info->space_info);
1068 found->flags = flags;
1069 found->total_bytes = total_bytes;
1070 found->bytes_used = bytes_used;
1071 found->bytes_pinned = 0;
1072 found->full = 0;
1073 *space_info = found;
1074 return 0;
1075}
1076
Chris Mason8790d502008-04-03 16:29:03 -04001077static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
1078{
1079 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
Chris Mason611f0e02008-04-03 16:29:03 -04001080 BTRFS_BLOCK_GROUP_RAID1 |
Chris Mason321aecc2008-04-16 10:49:51 -04001081 BTRFS_BLOCK_GROUP_RAID10 |
Chris Mason611f0e02008-04-03 16:29:03 -04001082 BTRFS_BLOCK_GROUP_DUP);
Chris Mason8790d502008-04-03 16:29:03 -04001083 if (extra_flags) {
1084 if (flags & BTRFS_BLOCK_GROUP_DATA)
1085 fs_info->avail_data_alloc_bits |= extra_flags;
1086 if (flags & BTRFS_BLOCK_GROUP_METADATA)
1087 fs_info->avail_metadata_alloc_bits |= extra_flags;
1088 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
1089 fs_info->avail_system_alloc_bits |= extra_flags;
1090 }
1091}
Chris Mason593060d2008-03-25 16:50:33 -04001092
Chris Masona061fc82008-05-07 11:43:44 -04001093static u64 reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04001094{
Chris Masona061fc82008-05-07 11:43:44 -04001095 u64 num_devices = root->fs_info->fs_devices->num_devices;
1096
1097 if (num_devices == 1)
1098 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0);
1099 if (num_devices < 4)
1100 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
1101
Chris Masonec44a352008-04-28 15:29:52 -04001102 if ((flags & BTRFS_BLOCK_GROUP_DUP) &&
1103 (flags & (BTRFS_BLOCK_GROUP_RAID1 |
Chris Masona061fc82008-05-07 11:43:44 -04001104 BTRFS_BLOCK_GROUP_RAID10))) {
Chris Masonec44a352008-04-28 15:29:52 -04001105 flags &= ~BTRFS_BLOCK_GROUP_DUP;
Chris Masona061fc82008-05-07 11:43:44 -04001106 }
Chris Masonec44a352008-04-28 15:29:52 -04001107
1108 if ((flags & BTRFS_BLOCK_GROUP_RAID1) &&
Chris Masona061fc82008-05-07 11:43:44 -04001109 (flags & BTRFS_BLOCK_GROUP_RAID10)) {
Chris Masonec44a352008-04-28 15:29:52 -04001110 flags &= ~BTRFS_BLOCK_GROUP_RAID1;
Chris Masona061fc82008-05-07 11:43:44 -04001111 }
Chris Masonec44a352008-04-28 15:29:52 -04001112
1113 if ((flags & BTRFS_BLOCK_GROUP_RAID0) &&
1114 ((flags & BTRFS_BLOCK_GROUP_RAID1) |
1115 (flags & BTRFS_BLOCK_GROUP_RAID10) |
1116 (flags & BTRFS_BLOCK_GROUP_DUP)))
1117 flags &= ~BTRFS_BLOCK_GROUP_RAID0;
1118 return flags;
1119}
1120
Chris Mason6324fbf2008-03-24 15:01:59 -04001121static int do_chunk_alloc(struct btrfs_trans_handle *trans,
1122 struct btrfs_root *extent_root, u64 alloc_bytes,
1123 u64 flags)
1124{
1125 struct btrfs_space_info *space_info;
1126 u64 thresh;
1127 u64 start;
1128 u64 num_bytes;
1129 int ret;
1130
Chris Masona061fc82008-05-07 11:43:44 -04001131 flags = reduce_alloc_profile(extent_root, flags);
Chris Masonec44a352008-04-28 15:29:52 -04001132
Chris Mason6324fbf2008-03-24 15:01:59 -04001133 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04001134 if (!space_info) {
1135 ret = update_space_info(extent_root->fs_info, flags,
1136 0, 0, &space_info);
1137 BUG_ON(ret);
1138 }
Chris Mason6324fbf2008-03-24 15:01:59 -04001139 BUG_ON(!space_info);
1140
1141 if (space_info->full)
1142 return 0;
1143
Chris Mason8790d502008-04-03 16:29:03 -04001144 thresh = div_factor(space_info->total_bytes, 6);
Chris Mason6324fbf2008-03-24 15:01:59 -04001145 if ((space_info->bytes_used + space_info->bytes_pinned + alloc_bytes) <
1146 thresh)
1147 return 0;
1148
1149 ret = btrfs_alloc_chunk(trans, extent_root, &start, &num_bytes, flags);
1150 if (ret == -ENOSPC) {
1151printk("space info full %Lu\n", flags);
1152 space_info->full = 1;
1153 return 0;
1154 }
1155
1156 BUG_ON(ret);
1157
1158 ret = btrfs_make_block_group(trans, extent_root, 0, flags,
Chris Masone17cade2008-04-15 15:41:47 -04001159 BTRFS_FIRST_CHUNK_TREE_OBJECTID, start, num_bytes);
Chris Mason6324fbf2008-03-24 15:01:59 -04001160 BUG_ON(ret);
Chris Mason593060d2008-03-25 16:50:33 -04001161
Chris Mason6324fbf2008-03-24 15:01:59 -04001162 return 0;
1163}
1164
Chris Mason9078a3e2007-04-26 16:46:15 -04001165static int update_block_group(struct btrfs_trans_handle *trans,
1166 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -04001167 u64 bytenr, u64 num_bytes, int alloc,
Chris Mason0b86a832008-03-24 15:01:56 -04001168 int mark_free)
Chris Mason9078a3e2007-04-26 16:46:15 -04001169{
1170 struct btrfs_block_group_cache *cache;
1171 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001172 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001173 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04001174 u64 byte_in_group;
Chris Mason96b51792007-10-15 16:15:19 -04001175 u64 start;
1176 u64 end;
Chris Mason3e1ad542007-05-07 20:03:49 -04001177
Chris Mason9078a3e2007-04-26 16:46:15 -04001178 while(total) {
Chris Masondb945352007-10-15 16:15:53 -04001179 cache = btrfs_lookup_block_group(info, bytenr);
Chris Mason3e1ad542007-05-07 20:03:49 -04001180 if (!cache) {
Chris Mason9078a3e2007-04-26 16:46:15 -04001181 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -04001182 }
Chris Masondb945352007-10-15 16:15:53 -04001183 byte_in_group = bytenr - cache->key.objectid;
1184 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason96b51792007-10-15 16:15:19 -04001185 start = cache->key.objectid;
1186 end = start + cache->key.offset - 1;
1187 set_extent_bits(&info->block_group_cache, start, end,
1188 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001189
1190 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04001191 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04001192 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04001193 old_val += num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001194 cache->space_info->bytes_used += num_bytes;
Chris Masoncd1bc462007-04-27 10:08:34 -04001195 } else {
Chris Masondb945352007-10-15 16:15:53 -04001196 old_val -= num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04001197 cache->space_info->bytes_used -= num_bytes;
Chris Masonf510cfe2007-10-15 16:14:48 -04001198 if (mark_free) {
1199 set_extent_dirty(&info->free_space_cache,
Chris Masondb945352007-10-15 16:15:53 -04001200 bytenr, bytenr + num_bytes - 1,
Chris Masonf510cfe2007-10-15 16:14:48 -04001201 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04001202 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001203 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001204 btrfs_set_block_group_used(&cache->item, old_val);
Chris Masondb945352007-10-15 16:15:53 -04001205 total -= num_bytes;
1206 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001207 }
1208 return 0;
1209}
Chris Mason6324fbf2008-03-24 15:01:59 -04001210
Chris Masona061fc82008-05-07 11:43:44 -04001211static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
1212{
1213 u64 start;
1214 u64 end;
1215 int ret;
1216 ret = find_first_extent_bit(&root->fs_info->block_group_cache,
1217 search_start, &start, &end,
1218 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA |
1219 BLOCK_GROUP_SYSTEM);
1220 if (ret)
1221 return 0;
1222 return start;
1223}
1224
1225
Yan324ae4d2007-11-16 14:57:08 -05001226static int update_pinned_extents(struct btrfs_root *root,
1227 u64 bytenr, u64 num, int pin)
1228{
1229 u64 len;
1230 struct btrfs_block_group_cache *cache;
1231 struct btrfs_fs_info *fs_info = root->fs_info;
1232
1233 if (pin) {
1234 set_extent_dirty(&fs_info->pinned_extents,
1235 bytenr, bytenr + num - 1, GFP_NOFS);
1236 } else {
1237 clear_extent_dirty(&fs_info->pinned_extents,
1238 bytenr, bytenr + num - 1, GFP_NOFS);
1239 }
1240 while (num > 0) {
1241 cache = btrfs_lookup_block_group(fs_info, bytenr);
Chris Masona061fc82008-05-07 11:43:44 -04001242 if (!cache) {
1243 u64 first = first_logical_byte(root, bytenr);
1244 WARN_ON(first < bytenr);
1245 len = min(first - bytenr, num);
1246 } else {
1247 len = min(num, cache->key.offset -
1248 (bytenr - cache->key.objectid));
1249 }
Yan324ae4d2007-11-16 14:57:08 -05001250 if (pin) {
Chris Masona061fc82008-05-07 11:43:44 -04001251 if (cache) {
1252 cache->pinned += len;
1253 cache->space_info->bytes_pinned += len;
1254 }
Yan324ae4d2007-11-16 14:57:08 -05001255 fs_info->total_pinned += len;
1256 } else {
Chris Masona061fc82008-05-07 11:43:44 -04001257 if (cache) {
1258 cache->pinned -= len;
1259 cache->space_info->bytes_pinned -= len;
1260 }
Yan324ae4d2007-11-16 14:57:08 -05001261 fs_info->total_pinned -= len;
1262 }
1263 bytenr += len;
1264 num -= len;
1265 }
1266 return 0;
1267}
Chris Mason9078a3e2007-04-26 16:46:15 -04001268
Chris Masond1310b22008-01-24 16:13:08 -05001269int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy)
Chris Masonccd467d2007-06-28 15:57:36 -04001270{
Chris Masonccd467d2007-06-28 15:57:36 -04001271 u64 last = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001272 u64 start;
1273 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001274 struct extent_io_tree *pinned_extents = &root->fs_info->pinned_extents;
Chris Masonccd467d2007-06-28 15:57:36 -04001275 int ret;
Chris Masonccd467d2007-06-28 15:57:36 -04001276
1277 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001278 ret = find_first_extent_bit(pinned_extents, last,
1279 &start, &end, EXTENT_DIRTY);
1280 if (ret)
Chris Masonccd467d2007-06-28 15:57:36 -04001281 break;
Chris Mason1a5bc162007-10-15 16:15:26 -04001282 set_extent_dirty(copy, start, end, GFP_NOFS);
1283 last = end + 1;
Chris Masonccd467d2007-06-28 15:57:36 -04001284 }
1285 return 0;
1286}
1287
1288int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1289 struct btrfs_root *root,
Chris Masond1310b22008-01-24 16:13:08 -05001290 struct extent_io_tree *unpin)
Chris Masona28ec192007-03-06 20:08:01 -05001291{
Chris Mason1a5bc162007-10-15 16:15:26 -04001292 u64 start;
1293 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05001294 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001295 struct extent_io_tree *free_space_cache;
Chris Masonf510cfe2007-10-15 16:14:48 -04001296 free_space_cache = &root->fs_info->free_space_cache;
Chris Masona28ec192007-03-06 20:08:01 -05001297
1298 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001299 ret = find_first_extent_bit(unpin, 0, &start, &end,
1300 EXTENT_DIRTY);
1301 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05001302 break;
Yan324ae4d2007-11-16 14:57:08 -05001303 update_pinned_extents(root, start, end + 1 - start, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001304 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1305 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
Chris Masona28ec192007-03-06 20:08:01 -05001306 }
1307 return 0;
1308}
1309
Chris Mason98ed5172008-01-03 10:01:48 -05001310static int finish_current_insert(struct btrfs_trans_handle *trans,
1311 struct btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -05001312{
Chris Mason7bb86312007-12-11 09:25:06 -05001313 u64 start;
1314 u64 end;
1315 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001316 struct extent_buffer *eb;
Chris Mason7bb86312007-12-11 09:25:06 -05001317 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001318 struct btrfs_key ins;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001319 struct btrfs_disk_key first;
Chris Mason234b63a2007-03-13 10:46:10 -04001320 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -05001321 int ret;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001322 int level;
Chris Mason1a5bc162007-10-15 16:15:26 -04001323 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001324
Chris Mason5f39d392007-10-15 16:14:19 -04001325 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason62e27492007-03-15 12:56:47 -04001326 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason7bb86312007-12-11 09:25:06 -05001327 path = btrfs_alloc_path();
Chris Mason037e6392007-03-07 11:50:24 -05001328
Chris Mason26b80032007-08-08 20:17:12 -04001329 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001330 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1331 &end, EXTENT_LOCKED);
1332 if (ret)
Chris Mason26b80032007-08-08 20:17:12 -04001333 break;
1334
Chris Mason1a5bc162007-10-15 16:15:26 -04001335 ins.objectid = start;
1336 ins.offset = end + 1 - start;
1337 err = btrfs_insert_item(trans, extent_root, &ins,
1338 &extent_item, sizeof(extent_item));
1339 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1340 GFP_NOFS);
Chris Masonca7a79a2008-05-12 12:59:19 -04001341 eb = read_tree_block(extent_root, ins.objectid, ins.offset,
1342 trans->transid);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001343 level = btrfs_header_level(eb);
1344 if (level == 0) {
1345 btrfs_item_key(eb, &first, 0);
1346 } else {
1347 btrfs_node_key(eb, &first, 0);
1348 }
Chris Mason7bb86312007-12-11 09:25:06 -05001349 err = btrfs_insert_extent_backref(trans, extent_root, path,
1350 start, extent_root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -05001351 0, level,
1352 btrfs_disk_key_objectid(&first));
Chris Mason7bb86312007-12-11 09:25:06 -05001353 BUG_ON(err);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001354 free_extent_buffer(eb);
Chris Mason037e6392007-03-07 11:50:24 -05001355 }
Chris Mason7bb86312007-12-11 09:25:06 -05001356 btrfs_free_path(path);
Chris Mason037e6392007-03-07 11:50:24 -05001357 return 0;
1358}
1359
Chris Masondb945352007-10-15 16:15:53 -04001360static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
1361 int pending)
Chris Masone20d96d2007-03-22 12:13:20 -04001362{
Chris Mason1a5bc162007-10-15 16:15:26 -04001363 int err = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001364 struct extent_buffer *buf;
Chris Mason78fae272007-03-25 11:35:08 -04001365
Chris Masonf4b9aa82007-03-27 11:05:53 -04001366 if (!pending) {
Chris Masondb945352007-10-15 16:15:53 -04001367 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -04001368 if (buf) {
Chris Mason1259ab72008-05-12 13:39:03 -04001369 if (btrfs_buffer_uptodate(buf, 0)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -04001370 u64 transid =
1371 root->fs_info->running_transaction->transid;
Chris Masondc17ff82008-01-08 15:46:30 -05001372 u64 header_transid =
1373 btrfs_header_generation(buf);
Chris Mason6bc34672008-04-04 15:40:00 -04001374 if (header_transid == transid &&
1375 !btrfs_header_flag(buf,
1376 BTRFS_HEADER_FLAG_WRITTEN)) {
Chris Mason55c69072008-01-09 15:55:33 -05001377 clean_tree_block(NULL, root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001378 free_extent_buffer(buf);
Yanc5492282007-11-06 10:25:25 -05001379 return 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001380 }
Chris Masonf4b9aa82007-03-27 11:05:53 -04001381 }
Chris Mason5f39d392007-10-15 16:14:19 -04001382 free_extent_buffer(buf);
Chris Mason8ef97622007-03-26 10:15:30 -04001383 }
Yan324ae4d2007-11-16 14:57:08 -05001384 update_pinned_extents(root, bytenr, num_bytes, 1);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001385 } else {
Chris Mason1a5bc162007-10-15 16:15:26 -04001386 set_extent_bits(&root->fs_info->pending_del,
Chris Masondb945352007-10-15 16:15:53 -04001387 bytenr, bytenr + num_bytes - 1,
1388 EXTENT_LOCKED, GFP_NOFS);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001389 }
Chris Masonbe744172007-05-06 10:15:01 -04001390 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001391 return 0;
1392}
1393
Chris Masona28ec192007-03-06 20:08:01 -05001394/*
1395 * remove an extent from the root, returns 0 on success
1396 */
Chris Masone089f052007-03-16 16:20:31 -04001397static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001398 *root, u64 bytenr, u64 num_bytes,
1399 u64 root_objectid, u64 ref_generation,
1400 u64 owner_objectid, u64 owner_offset, int pin,
Chris Masone37c9e62007-05-09 20:13:14 -04001401 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -05001402{
Chris Mason5caf2a02007-04-02 11:20:42 -04001403 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001404 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -04001405 struct btrfs_fs_info *info = root->fs_info;
1406 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001407 struct extent_buffer *leaf;
Chris Masona28ec192007-03-06 20:08:01 -05001408 int ret;
Chris Mason952fcca2008-02-18 16:33:44 -05001409 int extent_slot = 0;
1410 int found_extent = 0;
1411 int num_to_del = 1;
Chris Mason234b63a2007-03-13 10:46:10 -04001412 struct btrfs_extent_item *ei;
Chris Masoncf27e1e2007-03-13 09:49:06 -04001413 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -05001414
Chris Masondb945352007-10-15 16:15:53 -04001415 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -04001416 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -04001417 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001418 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001419 if (!path)
1420 return -ENOMEM;
1421
Chris Mason3c12ac72008-04-21 12:01:38 -04001422 path->reada = 1;
Chris Mason7bb86312007-12-11 09:25:06 -05001423 ret = lookup_extent_backref(trans, extent_root, path,
1424 bytenr, root_objectid,
1425 ref_generation,
1426 owner_objectid, owner_offset, 1);
1427 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05001428 struct btrfs_key found_key;
1429 extent_slot = path->slots[0];
1430 while(extent_slot > 0) {
1431 extent_slot--;
1432 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
1433 extent_slot);
1434 if (found_key.objectid != bytenr)
1435 break;
1436 if (found_key.type == BTRFS_EXTENT_ITEM_KEY &&
1437 found_key.offset == num_bytes) {
1438 found_extent = 1;
1439 break;
1440 }
1441 if (path->slots[0] - extent_slot > 5)
1442 break;
1443 }
1444 if (!found_extent)
1445 ret = btrfs_del_item(trans, extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -05001446 } else {
1447 btrfs_print_leaf(extent_root, path->nodes[0]);
1448 WARN_ON(1);
1449 printk("Unable to find ref byte nr %Lu root %Lu "
1450 " gen %Lu owner %Lu offset %Lu\n", bytenr,
1451 root_objectid, ref_generation, owner_objectid,
1452 owner_offset);
1453 }
Chris Mason952fcca2008-02-18 16:33:44 -05001454 if (!found_extent) {
1455 btrfs_release_path(extent_root, path);
1456 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
1457 if (ret < 0)
1458 return ret;
1459 BUG_ON(ret);
1460 extent_slot = path->slots[0];
1461 }
Chris Mason5f39d392007-10-15 16:14:19 -04001462
1463 leaf = path->nodes[0];
Chris Mason952fcca2008-02-18 16:33:44 -05001464 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04001465 struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001466 refs = btrfs_extent_refs(leaf, ei);
1467 BUG_ON(refs == 0);
1468 refs -= 1;
1469 btrfs_set_extent_refs(leaf, ei, refs);
Chris Mason952fcca2008-02-18 16:33:44 -05001470
Chris Mason5f39d392007-10-15 16:14:19 -04001471 btrfs_mark_buffer_dirty(leaf);
1472
Chris Mason952fcca2008-02-18 16:33:44 -05001473 if (refs == 0 && found_extent && path->slots[0] == extent_slot + 1) {
1474 /* if the back ref and the extent are next to each other
1475 * they get deleted below in one shot
1476 */
1477 path->slots[0] = extent_slot;
1478 num_to_del = 2;
1479 } else if (found_extent) {
1480 /* otherwise delete the extent back ref */
1481 ret = btrfs_del_item(trans, extent_root, path);
1482 BUG_ON(ret);
1483 /* if refs are 0, we need to setup the path for deletion */
1484 if (refs == 0) {
1485 btrfs_release_path(extent_root, path);
1486 ret = btrfs_search_slot(trans, extent_root, &key, path,
1487 -1, 1);
1488 if (ret < 0)
1489 return ret;
1490 BUG_ON(ret);
1491 }
1492 }
1493
Chris Masoncf27e1e2007-03-13 09:49:06 -04001494 if (refs == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001495 u64 super_used;
1496 u64 root_used;
Chris Mason78fae272007-03-25 11:35:08 -04001497
1498 if (pin) {
Chris Masondb945352007-10-15 16:15:53 -04001499 ret = pin_down_bytes(root, bytenr, num_bytes, 0);
Yanc5492282007-11-06 10:25:25 -05001500 if (ret > 0)
1501 mark_free = 1;
1502 BUG_ON(ret < 0);
Chris Mason78fae272007-03-25 11:35:08 -04001503 }
1504
Josef Bacik58176a92007-08-29 15:47:34 -04001505 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001506 super_used = btrfs_super_bytes_used(&info->super_copy);
1507 btrfs_set_super_bytes_used(&info->super_copy,
1508 super_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001509
1510 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001511 root_used = btrfs_root_used(&root->root_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001512 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -04001513 root_used - num_bytes);
Chris Mason952fcca2008-02-18 16:33:44 -05001514 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
1515 num_to_del);
Chris Mason54aa1f42007-06-22 14:16:25 -04001516 if (ret) {
1517 return ret;
1518 }
Chris Masondb945352007-10-15 16:15:53 -04001519 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001520 mark_free);
Chris Mason9078a3e2007-04-26 16:46:15 -04001521 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05001522 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001523 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001524 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -05001525 return ret;
1526}
1527
1528/*
Chris Masonfec577f2007-02-26 10:40:21 -05001529 * find all the blocks marked as pending in the radix tree and remove
1530 * them from the extent map
1531 */
Chris Masone089f052007-03-16 16:20:31 -04001532static int del_pending_extents(struct btrfs_trans_handle *trans, struct
1533 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -05001534{
1535 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001536 int err = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001537 u64 start;
1538 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001539 struct extent_io_tree *pending_del;
1540 struct extent_io_tree *pinned_extents;
Chris Mason8ef97622007-03-26 10:15:30 -04001541
Chris Mason1a5bc162007-10-15 16:15:26 -04001542 pending_del = &extent_root->fs_info->pending_del;
1543 pinned_extents = &extent_root->fs_info->pinned_extents;
Chris Masonfec577f2007-02-26 10:40:21 -05001544
1545 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001546 ret = find_first_extent_bit(pending_del, 0, &start, &end,
1547 EXTENT_LOCKED);
1548 if (ret)
Chris Masonfec577f2007-02-26 10:40:21 -05001549 break;
Yan324ae4d2007-11-16 14:57:08 -05001550 update_pinned_extents(extent_root, start, end + 1 - start, 1);
Chris Mason1a5bc162007-10-15 16:15:26 -04001551 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
1552 GFP_NOFS);
1553 ret = __free_extent(trans, extent_root,
Chris Mason7bb86312007-12-11 09:25:06 -05001554 start, end + 1 - start,
1555 extent_root->root_key.objectid,
1556 0, 0, 0, 0, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001557 if (ret)
1558 err = ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001559 }
Chris Masone20d96d2007-03-22 12:13:20 -04001560 return err;
Chris Masonfec577f2007-02-26 10:40:21 -05001561}
1562
1563/*
1564 * remove an extent from the root, returns 0 on success
1565 */
Chris Masone089f052007-03-16 16:20:31 -04001566int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001567 *root, u64 bytenr, u64 num_bytes,
1568 u64 root_objectid, u64 ref_generation,
1569 u64 owner_objectid, u64 owner_offset, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -05001570{
Chris Mason9f5fae22007-03-20 14:38:32 -04001571 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -05001572 int pending_ret;
1573 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05001574
Chris Masondb945352007-10-15 16:15:53 -04001575 WARN_ON(num_bytes < root->sectorsize);
Chris Mason7bb86312007-12-11 09:25:06 -05001576 if (!root->ref_cows)
1577 ref_generation = 0;
1578
Chris Masona28ec192007-03-06 20:08:01 -05001579 if (root == extent_root) {
Chris Masondb945352007-10-15 16:15:53 -04001580 pin_down_bytes(root, bytenr, num_bytes, 1);
Chris Masona28ec192007-03-06 20:08:01 -05001581 return 0;
1582 }
Chris Mason7bb86312007-12-11 09:25:06 -05001583 ret = __free_extent(trans, root, bytenr, num_bytes, root_objectid,
1584 ref_generation, owner_objectid, owner_offset,
1585 pin, pin == 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001586 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -05001587 return ret ? ret : pending_ret;
1588}
1589
Chris Mason87ee04e2007-11-30 11:30:34 -05001590static u64 stripe_align(struct btrfs_root *root, u64 val)
1591{
1592 u64 mask = ((u64)root->stripesize - 1);
1593 u64 ret = (val + mask) & ~mask;
1594 return ret;
1595}
1596
Chris Masonfec577f2007-02-26 10:40:21 -05001597/*
1598 * walks the btree of allocated extents and find a hole of a given size.
1599 * The key ins is changed to record the hole:
1600 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04001601 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05001602 * ins->offset == number of blocks
1603 * Any available blocks before search_start are skipped.
1604 */
Chris Mason98ed5172008-01-03 10:01:48 -05001605static int noinline find_free_extent(struct btrfs_trans_handle *trans,
1606 struct btrfs_root *orig_root,
1607 u64 num_bytes, u64 empty_size,
1608 u64 search_start, u64 search_end,
1609 u64 hint_byte, struct btrfs_key *ins,
1610 u64 exclude_start, u64 exclude_nr,
1611 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001612{
Chris Mason87ee04e2007-11-30 11:30:34 -05001613 int ret;
Chris Masona061fc82008-05-07 11:43:44 -04001614 u64 orig_search_start;
Chris Mason9f5fae22007-03-20 14:38:32 -04001615 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -04001616 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001617 u64 total_needed = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04001618 u64 *last_ptr = NULL;
Chris Masonbe08c1b2007-05-03 09:06:49 -04001619 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -04001620 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -04001621 int wrapped = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001622 int empty_cluster = 2 * 1024 * 1024;
Chris Masonfec577f2007-02-26 10:40:21 -05001623
Chris Masondb945352007-10-15 16:15:53 -04001624 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04001625 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
1626
Chris Mason239b14b2008-03-24 15:02:07 -04001627 if (data & BTRFS_BLOCK_GROUP_METADATA) {
1628 last_ptr = &root->fs_info->last_alloc;
Chris Mason8790d502008-04-03 16:29:03 -04001629 empty_cluster = 256 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04001630 }
1631
1632 if ((data & BTRFS_BLOCK_GROUP_DATA) && btrfs_test_opt(root, SSD)) {
1633 last_ptr = &root->fs_info->last_data_alloc;
1634 }
1635
1636 if (last_ptr) {
1637 if (*last_ptr)
1638 hint_byte = *last_ptr;
1639 else {
1640 empty_size += empty_cluster;
1641 }
1642 }
1643
Chris Masona061fc82008-05-07 11:43:44 -04001644 search_start = max(search_start, first_logical_byte(root, 0));
1645 orig_search_start = search_start;
1646
Chris Mason7f93bf82008-03-24 15:01:28 -04001647 if (search_end == (u64)-1)
1648 search_end = btrfs_super_total_bytes(&info->super_copy);
Chris Mason0b86a832008-03-24 15:01:56 -04001649
Chris Masondb945352007-10-15 16:15:53 -04001650 if (hint_byte) {
1651 block_group = btrfs_lookup_block_group(info, hint_byte);
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001652 if (!block_group)
1653 hint_byte = search_start;
Chris Masonbe744172007-05-06 10:15:01 -04001654 block_group = btrfs_find_block_group(root, block_group,
Chris Masondb945352007-10-15 16:15:53 -04001655 hint_byte, data, 1);
Chris Mason239b14b2008-03-24 15:02:07 -04001656 if (last_ptr && *last_ptr == 0 && block_group)
1657 hint_byte = block_group->key.objectid;
Chris Masonbe744172007-05-06 10:15:01 -04001658 } else {
1659 block_group = btrfs_find_block_group(root,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001660 trans->block_group,
1661 search_start, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001662 }
Chris Mason239b14b2008-03-24 15:02:07 -04001663 search_start = max(search_start, hint_byte);
Chris Masonbe744172007-05-06 10:15:01 -04001664
Chris Mason6702ed42007-08-07 16:15:09 -04001665 total_needed += empty_size;
Chris Mason0b86a832008-03-24 15:01:56 -04001666
Chris Masonbe744172007-05-06 10:15:01 -04001667check_failed:
Chris Mason70b043f2007-12-13 09:02:46 -05001668 if (!block_group) {
1669 block_group = btrfs_lookup_block_group(info, search_start);
1670 if (!block_group)
1671 block_group = btrfs_lookup_block_group(info,
1672 orig_search_start);
1673 }
Chris Mason0b86a832008-03-24 15:01:56 -04001674 ret = find_search_start(root, &block_group, &search_start,
1675 total_needed, data);
Chris Mason239b14b2008-03-24 15:02:07 -04001676 if (ret == -ENOSPC && last_ptr && *last_ptr) {
1677 *last_ptr = 0;
1678 block_group = btrfs_lookup_block_group(info,
1679 orig_search_start);
1680 search_start = orig_search_start;
1681 ret = find_search_start(root, &block_group, &search_start,
1682 total_needed, data);
1683 }
1684 if (ret == -ENOSPC)
1685 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001686 if (ret)
1687 goto error;
1688
Chris Mason239b14b2008-03-24 15:02:07 -04001689 if (last_ptr && *last_ptr && search_start != *last_ptr) {
1690 *last_ptr = 0;
1691 if (!empty_size) {
1692 empty_size += empty_cluster;
1693 total_needed += empty_size;
1694 }
1695 block_group = btrfs_lookup_block_group(info,
1696 orig_search_start);
1697 search_start = orig_search_start;
1698 ret = find_search_start(root, &block_group,
1699 &search_start, total_needed, data);
1700 if (ret == -ENOSPC)
1701 goto enospc;
1702 if (ret)
1703 goto error;
1704 }
1705
Chris Mason87ee04e2007-11-30 11:30:34 -05001706 search_start = stripe_align(root, search_start);
Chris Masonfec577f2007-02-26 10:40:21 -05001707 ins->objectid = search_start;
Chris Mason0b86a832008-03-24 15:01:56 -04001708 ins->offset = num_bytes;
Chris Masone37c9e62007-05-09 20:13:14 -04001709
Chris Masondb945352007-10-15 16:15:53 -04001710 if (ins->objectid + num_bytes >= search_end)
Chris Masoncf675822007-09-17 11:00:51 -04001711 goto enospc;
Chris Mason0b86a832008-03-24 15:01:56 -04001712
1713 if (ins->objectid + num_bytes >
1714 block_group->key.objectid + block_group->key.offset) {
Chris Masone19caa52007-10-15 16:17:44 -04001715 search_start = block_group->key.objectid +
1716 block_group->key.offset;
1717 goto new_group;
1718 }
Chris Mason0b86a832008-03-24 15:01:56 -04001719
Chris Mason1a5bc162007-10-15 16:15:26 -04001720 if (test_range_bit(&info->extent_ins, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001721 ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
1722 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001723 goto new_group;
1724 }
Chris Mason0b86a832008-03-24 15:01:56 -04001725
Chris Mason1a5bc162007-10-15 16:15:26 -04001726 if (test_range_bit(&info->pinned_extents, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001727 ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
1728 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001729 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05001730 }
Chris Mason0b86a832008-03-24 15:01:56 -04001731
Chris Masondb945352007-10-15 16:15:53 -04001732 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
Chris Masonf2654de2007-06-26 12:20:46 -04001733 ins->objectid < exclude_start + exclude_nr)) {
1734 search_start = exclude_start + exclude_nr;
1735 goto new_group;
1736 }
Chris Mason0b86a832008-03-24 15:01:56 -04001737
Chris Mason6324fbf2008-03-24 15:01:59 -04001738 if (!(data & BTRFS_BLOCK_GROUP_DATA)) {
Chris Mason5276aed2007-06-11 21:33:38 -04001739 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Mason26b80032007-08-08 20:17:12 -04001740 if (block_group)
1741 trans->block_group = block_group;
Chris Masoncd1bc462007-04-27 10:08:34 -04001742 }
Chris Masondb945352007-10-15 16:15:53 -04001743 ins->offset = num_bytes;
Chris Mason239b14b2008-03-24 15:02:07 -04001744 if (last_ptr) {
1745 *last_ptr = ins->objectid + ins->offset;
1746 if (*last_ptr ==
1747 btrfs_super_total_bytes(&root->fs_info->super_copy)) {
1748 *last_ptr = 0;
1749 }
1750 }
Chris Masonfec577f2007-02-26 10:40:21 -05001751 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04001752
1753new_group:
Chris Masondb945352007-10-15 16:15:53 -04001754 if (search_start + num_bytes >= search_end) {
Chris Masoncf675822007-09-17 11:00:51 -04001755enospc:
Chris Masonbe744172007-05-06 10:15:01 -04001756 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04001757 if (full_scan) {
1758 ret = -ENOSPC;
1759 goto error;
1760 }
Chris Mason6702ed42007-08-07 16:15:09 -04001761 if (wrapped) {
1762 if (!full_scan)
1763 total_needed -= empty_size;
Chris Masonfbdc7622007-05-30 10:22:12 -04001764 full_scan = 1;
Chris Mason6702ed42007-08-07 16:15:09 -04001765 } else
Chris Masonfbdc7622007-05-30 10:22:12 -04001766 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04001767 }
Chris Mason5276aed2007-06-11 21:33:38 -04001768 block_group = btrfs_lookup_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04001769 cond_resched();
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001770 block_group = btrfs_find_block_group(root, block_group,
1771 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04001772 goto check_failed;
1773
Chris Mason0f70abe2007-02-28 16:46:22 -05001774error:
Chris Mason0f70abe2007-02-28 16:46:22 -05001775 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001776}
Chris Masonec44a352008-04-28 15:29:52 -04001777
Chris Masonfec577f2007-02-26 10:40:21 -05001778/*
Chris Masonfec577f2007-02-26 10:40:21 -05001779 * finds a free extent and does all the dirty work required for allocation
1780 * returns the key for the extent through ins, and a tree buffer for
1781 * the first block of the extent through buf.
1782 *
1783 * returns 0 if everything worked, non-zero otherwise.
1784 */
Chris Mason4d775672007-04-20 20:23:12 -04001785int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -05001786 struct btrfs_root *root,
Chris Mason98d20f62008-04-14 09:46:10 -04001787 u64 num_bytes, u64 min_alloc_size,
1788 u64 root_objectid, u64 ref_generation,
Chris Mason7bb86312007-12-11 09:25:06 -05001789 u64 owner, u64 owner_offset,
1790 u64 empty_size, u64 hint_byte,
Chris Masonec44a352008-04-28 15:29:52 -04001791 u64 search_end, struct btrfs_key *ins, u64 data)
Chris Masonfec577f2007-02-26 10:40:21 -05001792{
1793 int ret;
1794 int pending_ret;
Chris Masonc31f8832008-01-08 15:46:31 -05001795 u64 super_used;
1796 u64 root_used;
Chris Masonfbdc7622007-05-30 10:22:12 -04001797 u64 search_start = 0;
Chris Mason8790d502008-04-03 16:29:03 -04001798 u64 alloc_profile;
Chris Mason47e4bb92008-02-01 14:51:59 -05001799 u32 sizes[2];
Chris Mason1261ec42007-03-20 20:35:03 -04001800 struct btrfs_fs_info *info = root->fs_info;
1801 struct btrfs_root *extent_root = info->extent_root;
Chris Mason47e4bb92008-02-01 14:51:59 -05001802 struct btrfs_extent_item *extent_item;
1803 struct btrfs_extent_ref *ref;
Chris Mason7bb86312007-12-11 09:25:06 -05001804 struct btrfs_path *path;
Chris Mason47e4bb92008-02-01 14:51:59 -05001805 struct btrfs_key keys[2];
Chris Mason8f662a72008-01-02 10:01:11 -05001806
Chris Mason6324fbf2008-03-24 15:01:59 -04001807 if (data) {
Chris Mason8790d502008-04-03 16:29:03 -04001808 alloc_profile = info->avail_data_alloc_bits &
1809 info->data_alloc_profile;
1810 data = BTRFS_BLOCK_GROUP_DATA | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04001811 } else if (root == root->fs_info->chunk_root) {
Chris Mason8790d502008-04-03 16:29:03 -04001812 alloc_profile = info->avail_system_alloc_bits &
1813 info->system_alloc_profile;
1814 data = BTRFS_BLOCK_GROUP_SYSTEM | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04001815 } else {
Chris Mason8790d502008-04-03 16:29:03 -04001816 alloc_profile = info->avail_metadata_alloc_bits &
1817 info->metadata_alloc_profile;
1818 data = BTRFS_BLOCK_GROUP_METADATA | alloc_profile;
Chris Mason6324fbf2008-03-24 15:01:59 -04001819 }
Chris Mason98d20f62008-04-14 09:46:10 -04001820again:
Chris Masona061fc82008-05-07 11:43:44 -04001821 data = reduce_alloc_profile(root, data);
Chris Mason3bf3d9e2008-04-26 11:03:32 -04001822 if (root->ref_cows) {
Chris Mason593060d2008-03-25 16:50:33 -04001823 if (!(data & BTRFS_BLOCK_GROUP_METADATA)) {
Chris Mason6324fbf2008-03-24 15:01:59 -04001824 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason239b14b2008-03-24 15:02:07 -04001825 2 * 1024 * 1024,
Chris Mason593060d2008-03-25 16:50:33 -04001826 BTRFS_BLOCK_GROUP_METADATA |
Chris Mason8790d502008-04-03 16:29:03 -04001827 (info->metadata_alloc_profile &
1828 info->avail_metadata_alloc_bits));
Chris Mason6324fbf2008-03-24 15:01:59 -04001829 BUG_ON(ret);
1830 }
1831 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason8790d502008-04-03 16:29:03 -04001832 num_bytes + 2 * 1024 * 1024, data);
Chris Mason6324fbf2008-03-24 15:01:59 -04001833 BUG_ON(ret);
1834 }
Chris Mason0b86a832008-03-24 15:01:56 -04001835
Chris Masondb945352007-10-15 16:15:53 -04001836 WARN_ON(num_bytes < root->sectorsize);
1837 ret = find_free_extent(trans, root, num_bytes, empty_size,
1838 search_start, search_end, hint_byte, ins,
Chris Mason26b80032007-08-08 20:17:12 -04001839 trans->alloc_exclude_start,
1840 trans->alloc_exclude_nr, data);
Chris Mason3b951512008-04-17 11:29:12 -04001841
Chris Mason98d20f62008-04-14 09:46:10 -04001842 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
1843 num_bytes = num_bytes >> 1;
1844 num_bytes = max(num_bytes, min_alloc_size);
1845 goto again;
1846 }
Chris Masonec44a352008-04-28 15:29:52 -04001847 if (ret) {
1848 printk("allocation failed flags %Lu\n", data);
1849 }
Chris Masonccd467d2007-06-28 15:57:36 -04001850 BUG_ON(ret);
Chris Masonf2654de2007-06-26 12:20:46 -04001851 if (ret)
1852 return ret;
1853
Josef Bacik58176a92007-08-29 15:47:34 -04001854 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001855 super_used = btrfs_super_bytes_used(&info->super_copy);
1856 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
Chris Mason26b80032007-08-08 20:17:12 -04001857
Josef Bacik58176a92007-08-29 15:47:34 -04001858 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001859 root_used = btrfs_root_used(&root->root_item);
1860 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001861
Chris Masonf510cfe2007-10-15 16:14:48 -04001862 clear_extent_dirty(&root->fs_info->free_space_cache,
1863 ins->objectid, ins->objectid + ins->offset - 1,
1864 GFP_NOFS);
1865
Chris Mason26b80032007-08-08 20:17:12 -04001866 if (root == extent_root) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001867 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
1868 ins->objectid + ins->offset - 1,
1869 EXTENT_LOCKED, GFP_NOFS);
Chris Mason26b80032007-08-08 20:17:12 -04001870 goto update_block;
1871 }
1872
1873 WARN_ON(trans->alloc_exclude_nr);
1874 trans->alloc_exclude_start = ins->objectid;
1875 trans->alloc_exclude_nr = ins->offset;
Chris Mason037e6392007-03-07 11:50:24 -05001876
Chris Mason47e4bb92008-02-01 14:51:59 -05001877 memcpy(&keys[0], ins, sizeof(*ins));
1878 keys[1].offset = hash_extent_ref(root_objectid, ref_generation,
1879 owner, owner_offset);
1880 keys[1].objectid = ins->objectid;
1881 keys[1].type = BTRFS_EXTENT_REF_KEY;
1882 sizes[0] = sizeof(*extent_item);
1883 sizes[1] = sizeof(*ref);
Chris Mason7bb86312007-12-11 09:25:06 -05001884
1885 path = btrfs_alloc_path();
1886 BUG_ON(!path);
Chris Mason47e4bb92008-02-01 14:51:59 -05001887
1888 ret = btrfs_insert_empty_items(trans, extent_root, path, keys,
1889 sizes, 2);
Chris Mason26b80032007-08-08 20:17:12 -04001890
Chris Masonccd467d2007-06-28 15:57:36 -04001891 BUG_ON(ret);
Chris Mason47e4bb92008-02-01 14:51:59 -05001892 extent_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1893 struct btrfs_extent_item);
1894 btrfs_set_extent_refs(path->nodes[0], extent_item, 1);
1895 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1896 struct btrfs_extent_ref);
1897
1898 btrfs_set_ref_root(path->nodes[0], ref, root_objectid);
1899 btrfs_set_ref_generation(path->nodes[0], ref, ref_generation);
1900 btrfs_set_ref_objectid(path->nodes[0], ref, owner);
1901 btrfs_set_ref_offset(path->nodes[0], ref, owner_offset);
1902
1903 btrfs_mark_buffer_dirty(path->nodes[0]);
1904
1905 trans->alloc_exclude_start = 0;
1906 trans->alloc_exclude_nr = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001907 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001908 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001909 pending_ret = del_pending_extents(trans, extent_root);
Chris Masonf510cfe2007-10-15 16:14:48 -04001910
Chris Masone37c9e62007-05-09 20:13:14 -04001911 if (ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001912 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001913 }
1914 if (pending_ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001915 return pending_ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001916 }
Chris Mason26b80032007-08-08 20:17:12 -04001917
1918update_block:
Chris Mason0b86a832008-03-24 15:01:56 -04001919 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0);
Chris Masonf5947062008-02-04 10:10:13 -05001920 if (ret) {
1921 printk("update block group failed for %Lu %Lu\n",
1922 ins->objectid, ins->offset);
1923 BUG();
1924 }
Chris Mason037e6392007-03-07 11:50:24 -05001925 return 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001926}
1927
1928/*
1929 * helper function to allocate a block for a given tree
1930 * returns the tree buffer or NULL.
1931 */
Chris Mason5f39d392007-10-15 16:14:19 -04001932struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -04001933 struct btrfs_root *root,
Chris Mason7bb86312007-12-11 09:25:06 -05001934 u32 blocksize,
1935 u64 root_objectid, u64 hint,
1936 u64 empty_size)
1937{
1938 u64 ref_generation;
1939
1940 if (root->ref_cows)
1941 ref_generation = trans->transid;
1942 else
1943 ref_generation = 0;
1944
1945
1946 return __btrfs_alloc_free_block(trans, root, blocksize, root_objectid,
1947 ref_generation, 0, 0, hint, empty_size);
1948}
1949
1950/*
1951 * helper function to allocate a block for a given tree
1952 * returns the tree buffer or NULL.
1953 */
1954struct extent_buffer *__btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1955 struct btrfs_root *root,
1956 u32 blocksize,
1957 u64 root_objectid,
1958 u64 ref_generation,
1959 u64 first_objectid,
1960 int level,
1961 u64 hint,
Chris Mason5f39d392007-10-15 16:14:19 -04001962 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05001963{
Chris Masone2fa7222007-03-12 16:22:34 -04001964 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05001965 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04001966 struct extent_buffer *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05001967
Chris Mason98d20f62008-04-14 09:46:10 -04001968 ret = btrfs_alloc_extent(trans, root, blocksize, blocksize,
Chris Mason7bb86312007-12-11 09:25:06 -05001969 root_objectid, ref_generation,
Chris Masonf6dbff52007-12-13 11:13:32 -05001970 level, first_objectid, empty_size, hint,
Chris Masondb945352007-10-15 16:15:53 -04001971 (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05001972 if (ret) {
Chris Mason54aa1f42007-06-22 14:16:25 -04001973 BUG_ON(ret > 0);
1974 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05001975 }
Chris Masondb945352007-10-15 16:15:53 -04001976 buf = btrfs_find_create_tree_block(root, ins.objectid, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04001977 if (!buf) {
Chris Mason7bb86312007-12-11 09:25:06 -05001978 btrfs_free_extent(trans, root, ins.objectid, blocksize,
1979 root->root_key.objectid, ref_generation,
1980 0, 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001981 return ERR_PTR(-ENOMEM);
1982 }
Chris Mason55c69072008-01-09 15:55:33 -05001983 btrfs_set_header_generation(buf, trans->transid);
1984 clean_tree_block(trans, root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001985 btrfs_set_buffer_uptodate(buf);
Chris Mason55c69072008-01-09 15:55:33 -05001986
1987 if (PageDirty(buf->first_page)) {
1988 printk("page %lu dirty\n", buf->first_page->index);
1989 WARN_ON(1);
1990 }
1991
Chris Mason5f39d392007-10-15 16:14:19 -04001992 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
1993 buf->start + buf->len - 1, GFP_NOFS);
Chris Mason9afbb0b2008-02-15 13:19:35 -05001994 if (!btrfs_test_opt(root, SSD))
1995 btrfs_set_buffer_defrag(buf);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001996 trans->blocks_used++;
Chris Masonfec577f2007-02-26 10:40:21 -05001997 return buf;
1998}
Chris Masona28ec192007-03-06 20:08:01 -05001999
Chris Mason98ed5172008-01-03 10:01:48 -05002000static int noinline drop_leaf_ref(struct btrfs_trans_handle *trans,
2001 struct btrfs_root *root,
2002 struct extent_buffer *leaf)
Chris Mason6407bf62007-03-27 06:33:00 -04002003{
Chris Mason7bb86312007-12-11 09:25:06 -05002004 u64 leaf_owner;
2005 u64 leaf_generation;
Chris Mason5f39d392007-10-15 16:14:19 -04002006 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04002007 struct btrfs_file_extent_item *fi;
2008 int i;
2009 int nritems;
2010 int ret;
2011
Chris Mason5f39d392007-10-15 16:14:19 -04002012 BUG_ON(!btrfs_is_leaf(leaf));
2013 nritems = btrfs_header_nritems(leaf);
Chris Mason7bb86312007-12-11 09:25:06 -05002014 leaf_owner = btrfs_header_owner(leaf);
2015 leaf_generation = btrfs_header_generation(leaf);
2016
Chris Mason6407bf62007-03-27 06:33:00 -04002017 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04002018 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04002019
2020 btrfs_item_key_to_cpu(leaf, &key, i);
2021 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04002022 continue;
2023 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002024 if (btrfs_file_extent_type(leaf, fi) ==
2025 BTRFS_FILE_EXTENT_INLINE)
Chris Mason236454df2007-04-19 13:37:44 -04002026 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04002027 /*
2028 * FIXME make sure to insert a trans record that
2029 * repeats the snapshot del on crash
2030 */
Chris Masondb945352007-10-15 16:15:53 -04002031 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
2032 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04002033 continue;
Chris Masondb945352007-10-15 16:15:53 -04002034 ret = btrfs_free_extent(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002035 btrfs_file_extent_disk_num_bytes(leaf, fi),
2036 leaf_owner, leaf_generation,
2037 key.objectid, key.offset, 0);
Chris Mason6407bf62007-03-27 06:33:00 -04002038 BUG_ON(ret);
2039 }
2040 return 0;
2041}
2042
Chris Mason98ed5172008-01-03 10:01:48 -05002043static void noinline reada_walk_down(struct btrfs_root *root,
Chris Masonbea495e2008-01-24 16:13:14 -05002044 struct extent_buffer *node,
2045 int slot)
Chris Masone0115992007-06-19 16:23:05 -04002046{
Chris Masondb945352007-10-15 16:15:53 -04002047 u64 bytenr;
Chris Masonbea495e2008-01-24 16:13:14 -05002048 u64 last = 0;
2049 u32 nritems;
Chris Masone0115992007-06-19 16:23:05 -04002050 u32 refs;
Chris Masondb945352007-10-15 16:15:53 -04002051 u32 blocksize;
Chris Masonbea495e2008-01-24 16:13:14 -05002052 int ret;
2053 int i;
2054 int level;
2055 int skipped = 0;
Chris Masone0115992007-06-19 16:23:05 -04002056
Chris Mason5f39d392007-10-15 16:14:19 -04002057 nritems = btrfs_header_nritems(node);
Chris Masondb945352007-10-15 16:15:53 -04002058 level = btrfs_header_level(node);
Chris Masonbea495e2008-01-24 16:13:14 -05002059 if (level)
2060 return;
2061
2062 for (i = slot; i < nritems && skipped < 32; i++) {
Chris Masondb945352007-10-15 16:15:53 -04002063 bytenr = btrfs_node_blockptr(node, i);
Chris Masonbea495e2008-01-24 16:13:14 -05002064 if (last && ((bytenr > last && bytenr - last > 32 * 1024) ||
2065 (last > bytenr && last - bytenr > 32 * 1024))) {
2066 skipped++;
Chris Masone0115992007-06-19 16:23:05 -04002067 continue;
Chris Masonbea495e2008-01-24 16:13:14 -05002068 }
2069 blocksize = btrfs_level_size(root, level - 1);
2070 if (i != slot) {
2071 ret = lookup_extent_ref(NULL, root, bytenr,
2072 blocksize, &refs);
2073 BUG_ON(ret);
2074 if (refs != 1) {
2075 skipped++;
2076 continue;
2077 }
2078 }
Chris Mason409eb952007-08-08 20:17:12 -04002079 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masonca7a79a2008-05-12 12:59:19 -04002080 ret = readahead_tree_block(root, bytenr, blocksize,
2081 btrfs_node_ptr_generation(node, i));
Chris Masonbea495e2008-01-24 16:13:14 -05002082 last = bytenr + blocksize;
Chris Mason409eb952007-08-08 20:17:12 -04002083 cond_resched();
2084 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone0115992007-06-19 16:23:05 -04002085 if (ret)
2086 break;
2087 }
2088}
2089
Chris Mason9aca1d52007-03-13 11:09:37 -04002090/*
2091 * helper function for drop_snapshot, this walks down the tree dropping ref
2092 * counts as it goes.
2093 */
Chris Mason98ed5172008-01-03 10:01:48 -05002094static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
2095 struct btrfs_root *root,
2096 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002097{
Chris Mason7bb86312007-12-11 09:25:06 -05002098 u64 root_owner;
2099 u64 root_gen;
2100 u64 bytenr;
Chris Masonca7a79a2008-05-12 12:59:19 -04002101 u64 ptr_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04002102 struct extent_buffer *next;
2103 struct extent_buffer *cur;
Chris Mason7bb86312007-12-11 09:25:06 -05002104 struct extent_buffer *parent;
Chris Masondb945352007-10-15 16:15:53 -04002105 u32 blocksize;
Chris Mason20524f02007-03-10 06:35:47 -05002106 int ret;
2107 u32 refs;
2108
Chris Mason5caf2a02007-04-02 11:20:42 -04002109 WARN_ON(*level < 0);
2110 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason5f39d392007-10-15 16:14:19 -04002111 ret = lookup_extent_ref(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002112 path->nodes[*level]->start,
2113 path->nodes[*level]->len, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05002114 BUG_ON(ret);
2115 if (refs > 1)
2116 goto out;
Chris Masone0115992007-06-19 16:23:05 -04002117
Chris Mason9aca1d52007-03-13 11:09:37 -04002118 /*
2119 * walk down to the last node level and free all the leaves
2120 */
Chris Mason6407bf62007-03-27 06:33:00 -04002121 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002122 WARN_ON(*level < 0);
2123 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05002124 cur = path->nodes[*level];
Chris Masone0115992007-06-19 16:23:05 -04002125
Chris Mason5f39d392007-10-15 16:14:19 -04002126 if (btrfs_header_level(cur) != *level)
Chris Mason2c90e5d2007-04-02 10:50:19 -04002127 WARN_ON(1);
Chris Masone0115992007-06-19 16:23:05 -04002128
Chris Mason7518a232007-03-12 12:01:18 -04002129 if (path->slots[*level] >=
Chris Mason5f39d392007-10-15 16:14:19 -04002130 btrfs_header_nritems(cur))
Chris Mason20524f02007-03-10 06:35:47 -05002131 break;
Chris Mason6407bf62007-03-27 06:33:00 -04002132 if (*level == 0) {
2133 ret = drop_leaf_ref(trans, root, cur);
2134 BUG_ON(ret);
2135 break;
2136 }
Chris Masondb945352007-10-15 16:15:53 -04002137 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
Chris Masonca7a79a2008-05-12 12:59:19 -04002138 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
Chris Masondb945352007-10-15 16:15:53 -04002139 blocksize = btrfs_level_size(root, *level - 1);
2140 ret = lookup_extent_ref(trans, root, bytenr, blocksize, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04002141 BUG_ON(ret);
2142 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002143 parent = path->nodes[*level];
2144 root_owner = btrfs_header_owner(parent);
2145 root_gen = btrfs_header_generation(parent);
Chris Mason20524f02007-03-10 06:35:47 -05002146 path->slots[*level]++;
Chris Masondb945352007-10-15 16:15:53 -04002147 ret = btrfs_free_extent(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05002148 blocksize, root_owner,
2149 root_gen, 0, 0, 1);
Chris Mason20524f02007-03-10 06:35:47 -05002150 BUG_ON(ret);
2151 continue;
2152 }
Chris Masondb945352007-10-15 16:15:53 -04002153 next = btrfs_find_tree_block(root, bytenr, blocksize);
Chris Mason1259ab72008-05-12 13:39:03 -04002154 if (!next || !btrfs_buffer_uptodate(next, ptr_gen)) {
Chris Mason5f39d392007-10-15 16:14:19 -04002155 free_extent_buffer(next);
Chris Masonbea495e2008-01-24 16:13:14 -05002156 reada_walk_down(root, cur, path->slots[*level]);
Chris Masone9d0b132007-08-10 14:06:19 -04002157
Chris Mason8790d502008-04-03 16:29:03 -04002158 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masonca7a79a2008-05-12 12:59:19 -04002159 next = read_tree_block(root, bytenr, blocksize,
2160 ptr_gen);
Chris Mason8790d502008-04-03 16:29:03 -04002161 mutex_lock(&root->fs_info->fs_mutex);
2162
2163 /* we've dropped the lock, double check */
Chris Masondb945352007-10-15 16:15:53 -04002164 ret = lookup_extent_ref(trans, root, bytenr,
2165 blocksize, &refs);
Chris Masone9d0b132007-08-10 14:06:19 -04002166 BUG_ON(ret);
2167 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002168 parent = path->nodes[*level];
2169 root_owner = btrfs_header_owner(parent);
2170 root_gen = btrfs_header_generation(parent);
2171
Chris Masone9d0b132007-08-10 14:06:19 -04002172 path->slots[*level]++;
Chris Mason5f39d392007-10-15 16:14:19 -04002173 free_extent_buffer(next);
Chris Mason7bb86312007-12-11 09:25:06 -05002174 ret = btrfs_free_extent(trans, root, bytenr,
2175 blocksize,
2176 root_owner,
2177 root_gen, 0, 0, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04002178 BUG_ON(ret);
2179 continue;
2180 }
2181 }
Chris Mason5caf2a02007-04-02 11:20:42 -04002182 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04002183 if (path->nodes[*level-1])
Chris Mason5f39d392007-10-15 16:14:19 -04002184 free_extent_buffer(path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05002185 path->nodes[*level-1] = next;
Chris Mason5f39d392007-10-15 16:14:19 -04002186 *level = btrfs_header_level(next);
Chris Mason20524f02007-03-10 06:35:47 -05002187 path->slots[*level] = 0;
2188 }
2189out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002190 WARN_ON(*level < 0);
2191 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason7bb86312007-12-11 09:25:06 -05002192
2193 if (path->nodes[*level] == root->node) {
2194 root_owner = root->root_key.objectid;
2195 parent = path->nodes[*level];
2196 } else {
2197 parent = path->nodes[*level + 1];
2198 root_owner = btrfs_header_owner(parent);
2199 }
2200
2201 root_gen = btrfs_header_generation(parent);
Chris Masondb945352007-10-15 16:15:53 -04002202 ret = btrfs_free_extent(trans, root, path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002203 path->nodes[*level]->len,
2204 root_owner, root_gen, 0, 0, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002205 free_extent_buffer(path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05002206 path->nodes[*level] = NULL;
2207 *level += 1;
2208 BUG_ON(ret);
2209 return 0;
2210}
2211
Chris Mason9aca1d52007-03-13 11:09:37 -04002212/*
2213 * helper for dropping snapshots. This walks back up the tree in the path
2214 * to find the first node higher up where we haven't yet gone through
2215 * all the slots
2216 */
Chris Mason98ed5172008-01-03 10:01:48 -05002217static int noinline walk_up_tree(struct btrfs_trans_handle *trans,
2218 struct btrfs_root *root,
2219 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002220{
Chris Mason7bb86312007-12-11 09:25:06 -05002221 u64 root_owner;
2222 u64 root_gen;
2223 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002224 int i;
2225 int slot;
2226 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04002227
Chris Mason234b63a2007-03-13 10:46:10 -04002228 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05002229 slot = path->slots[i];
Chris Mason5f39d392007-10-15 16:14:19 -04002230 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
2231 struct extent_buffer *node;
2232 struct btrfs_disk_key disk_key;
2233 node = path->nodes[i];
Chris Mason20524f02007-03-10 06:35:47 -05002234 path->slots[i]++;
2235 *level = i;
Chris Mason9f3a7422007-08-07 15:52:19 -04002236 WARN_ON(*level == 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002237 btrfs_node_key(node, &disk_key, path->slots[i]);
Chris Mason9f3a7422007-08-07 15:52:19 -04002238 memcpy(&root_item->drop_progress,
Chris Mason5f39d392007-10-15 16:14:19 -04002239 &disk_key, sizeof(disk_key));
Chris Mason9f3a7422007-08-07 15:52:19 -04002240 root_item->drop_level = i;
Chris Mason20524f02007-03-10 06:35:47 -05002241 return 0;
2242 } else {
Chris Mason7bb86312007-12-11 09:25:06 -05002243 if (path->nodes[*level] == root->node) {
2244 root_owner = root->root_key.objectid;
2245 root_gen =
2246 btrfs_header_generation(path->nodes[*level]);
2247 } else {
2248 struct extent_buffer *node;
2249 node = path->nodes[*level + 1];
2250 root_owner = btrfs_header_owner(node);
2251 root_gen = btrfs_header_generation(node);
2252 }
Chris Masone089f052007-03-16 16:20:31 -04002253 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002254 path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002255 path->nodes[*level]->len,
2256 root_owner, root_gen, 0, 0, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04002257 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002258 free_extent_buffer(path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04002259 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05002260 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05002261 }
2262 }
2263 return 1;
2264}
2265
Chris Mason9aca1d52007-03-13 11:09:37 -04002266/*
2267 * drop the reference count on the tree rooted at 'snap'. This traverses
2268 * the tree freeing any blocks that have a ref count of zero after being
2269 * decremented.
2270 */
Chris Masone089f052007-03-16 16:20:31 -04002271int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04002272 *root)
Chris Mason20524f02007-03-10 06:35:47 -05002273{
Chris Mason3768f362007-03-13 16:47:54 -04002274 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04002275 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05002276 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04002277 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05002278 int i;
2279 int orig_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002280 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002281
Chris Mason5caf2a02007-04-02 11:20:42 -04002282 path = btrfs_alloc_path();
2283 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05002284
Chris Mason5f39d392007-10-15 16:14:19 -04002285 level = btrfs_header_level(root->node);
Chris Mason20524f02007-03-10 06:35:47 -05002286 orig_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002287 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2288 path->nodes[level] = root->node;
Chris Masonf510cfe2007-10-15 16:14:48 -04002289 extent_buffer_get(root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -04002290 path->slots[level] = 0;
2291 } else {
2292 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002293 struct btrfs_disk_key found_key;
2294 struct extent_buffer *node;
Chris Mason6702ed42007-08-07 16:15:09 -04002295
Chris Mason9f3a7422007-08-07 15:52:19 -04002296 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Chris Mason6702ed42007-08-07 16:15:09 -04002297 level = root_item->drop_level;
2298 path->lowest_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002299 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason6702ed42007-08-07 16:15:09 -04002300 if (wret < 0) {
Chris Mason9f3a7422007-08-07 15:52:19 -04002301 ret = wret;
2302 goto out;
2303 }
Chris Mason5f39d392007-10-15 16:14:19 -04002304 node = path->nodes[level];
2305 btrfs_node_key(node, &found_key, path->slots[level]);
2306 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2307 sizeof(found_key)));
Chris Mason9f3a7422007-08-07 15:52:19 -04002308 }
Chris Mason20524f02007-03-10 06:35:47 -05002309 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002310 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002311 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002312 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002313 if (wret < 0)
2314 ret = wret;
2315
Chris Mason5caf2a02007-04-02 11:20:42 -04002316 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002317 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002318 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002319 if (wret < 0)
2320 ret = wret;
Chris Mason409eb952007-08-08 20:17:12 -04002321 ret = -EAGAIN;
Chris Mason409eb952007-08-08 20:17:12 -04002322 break;
Chris Mason20524f02007-03-10 06:35:47 -05002323 }
Chris Mason83e15a22007-03-12 09:03:27 -04002324 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002325 if (path->nodes[i]) {
Chris Mason5f39d392007-10-15 16:14:19 -04002326 free_extent_buffer(path->nodes[i]);
Chris Mason0f827312007-10-15 16:18:56 -04002327 path->nodes[i] = NULL;
Chris Mason83e15a22007-03-12 09:03:27 -04002328 }
Chris Mason20524f02007-03-10 06:35:47 -05002329 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002330out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002331 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04002332 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05002333}
Chris Mason9078a3e2007-04-26 16:46:15 -04002334
Chris Masonbe744172007-05-06 10:15:01 -04002335int btrfs_free_block_groups(struct btrfs_fs_info *info)
2336{
Chris Masonf510cfe2007-10-15 16:14:48 -04002337 u64 start;
2338 u64 end;
Yanb97f9202007-11-01 11:28:41 -04002339 u64 ptr;
Chris Mason96b51792007-10-15 16:15:19 -04002340 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04002341 while(1) {
2342 ret = find_first_extent_bit(&info->block_group_cache, 0,
2343 &start, &end, (unsigned int)-1);
2344 if (ret)
2345 break;
Yanb97f9202007-11-01 11:28:41 -04002346 ret = get_state_private(&info->block_group_cache, start, &ptr);
2347 if (!ret)
2348 kfree((void *)(unsigned long)ptr);
Chris Mason96b51792007-10-15 16:15:19 -04002349 clear_extent_bits(&info->block_group_cache, start,
2350 end, (unsigned int)-1, GFP_NOFS);
2351 }
Chris Masone37c9e62007-05-09 20:13:14 -04002352 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -04002353 ret = find_first_extent_bit(&info->free_space_cache, 0,
2354 &start, &end, EXTENT_DIRTY);
2355 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -04002356 break;
Chris Masonf510cfe2007-10-15 16:14:48 -04002357 clear_extent_dirty(&info->free_space_cache, start,
2358 end, GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04002359 }
Chris Masonbe744172007-05-06 10:15:01 -04002360 return 0;
2361}
2362
Chris Mason8e7bf942008-04-28 09:02:36 -04002363static unsigned long calc_ra(unsigned long start, unsigned long last,
2364 unsigned long nr)
2365{
2366 return min(last, start + nr - 1);
2367}
2368
Chris Mason98ed5172008-01-03 10:01:48 -05002369static int noinline relocate_inode_pages(struct inode *inode, u64 start,
2370 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05002371{
2372 u64 page_start;
2373 u64 page_end;
Chris Masonedbd8d42007-12-21 16:27:24 -05002374 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05002375 unsigned long i;
2376 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05002377 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05002378 struct file_ra_state *ra;
Chris Mason8e7bf942008-04-28 09:02:36 -04002379 unsigned long total_read = 0;
2380 unsigned long ra_pages;
Chris Masona061fc82008-05-07 11:43:44 -04002381 struct btrfs_trans_handle *trans;
Chris Mason4313b392008-01-03 09:08:48 -05002382
2383 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002384
2385 mutex_lock(&inode->i_mutex);
Chris Mason4313b392008-01-03 09:08:48 -05002386 i = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05002387 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
2388
Chris Mason8e7bf942008-04-28 09:02:36 -04002389 ra_pages = BTRFS_I(inode)->root->fs_info->bdi.ra_pages;
2390
Chris Mason4313b392008-01-03 09:08:48 -05002391 file_ra_state_init(ra, inode->i_mapping);
Chris Masonedbd8d42007-12-21 16:27:24 -05002392
Chris Mason4313b392008-01-03 09:08:48 -05002393 for (; i <= last_index; i++) {
Chris Mason8e7bf942008-04-28 09:02:36 -04002394 if (total_read % ra_pages == 0) {
2395 btrfs_force_ra(inode->i_mapping, ra, NULL, i,
2396 calc_ra(i, last_index, ra_pages));
2397 }
2398 total_read++;
Chris Masona061fc82008-05-07 11:43:44 -04002399 if (((u64)i << PAGE_CACHE_SHIFT) > inode->i_size)
2400 goto truncate_racing;
2401
Chris Masonedbd8d42007-12-21 16:27:24 -05002402 page = grab_cache_page(inode->i_mapping, i);
Chris Masona061fc82008-05-07 11:43:44 -04002403 if (!page) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002404 goto out_unlock;
Chris Masona061fc82008-05-07 11:43:44 -04002405 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002406 if (!PageUptodate(page)) {
2407 btrfs_readpage(NULL, page);
2408 lock_page(page);
2409 if (!PageUptodate(page)) {
2410 unlock_page(page);
2411 page_cache_release(page);
2412 goto out_unlock;
2413 }
2414 }
Chris Masonec44a352008-04-28 15:29:52 -04002415#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
2416 ClearPageDirty(page);
2417#else
2418 cancel_dirty_page(page, PAGE_CACHE_SIZE);
2419#endif
2420 wait_on_page_writeback(page);
2421 set_page_extent_mapped(page);
Chris Masonedbd8d42007-12-21 16:27:24 -05002422 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2423 page_end = page_start + PAGE_CACHE_SIZE - 1;
2424
Chris Masond1310b22008-01-24 16:13:08 -05002425 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002426
Chris Masond1310b22008-01-24 16:13:08 -05002427 set_extent_delalloc(io_tree, page_start,
Chris Masonedbd8d42007-12-21 16:27:24 -05002428 page_end, GFP_NOFS);
Chris Masona061fc82008-05-07 11:43:44 -04002429 set_page_dirty(page);
Chris Masonedbd8d42007-12-21 16:27:24 -05002430
Chris Masond1310b22008-01-24 16:13:08 -05002431 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002432 unlock_page(page);
2433 page_cache_release(page);
2434 }
Chris Masona061fc82008-05-07 11:43:44 -04002435 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
2436 total_read);
Chris Masonedbd8d42007-12-21 16:27:24 -05002437
2438out_unlock:
Chris Masonec44a352008-04-28 15:29:52 -04002439 kfree(ra);
Chris Masona061fc82008-05-07 11:43:44 -04002440 trans = btrfs_start_transaction(BTRFS_I(inode)->root, 1);
2441 if (trans) {
2442 btrfs_add_ordered_inode(inode);
2443 btrfs_end_transaction(trans, BTRFS_I(inode)->root);
2444 mark_inode_dirty(inode);
2445 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002446 mutex_unlock(&inode->i_mutex);
2447 return 0;
Chris Masona061fc82008-05-07 11:43:44 -04002448
2449truncate_racing:
2450 vmtruncate(inode, inode->i_size);
2451 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
2452 total_read);
2453 goto out_unlock;
Chris Masonedbd8d42007-12-21 16:27:24 -05002454}
2455
Chris Mason4313b392008-01-03 09:08:48 -05002456/*
Chris Masonbf4ef672008-05-08 13:26:18 -04002457 * The back references tell us which tree holds a ref on a block,
2458 * but it is possible for the tree root field in the reference to
2459 * reflect the original root before a snapshot was made. In this
2460 * case we should search through all the children of a given root
2461 * to find potential holders of references on a block.
2462 *
2463 * Instead, we do something a little less fancy and just search
2464 * all the roots for a given key/block combination.
2465 */
2466static int find_root_for_ref(struct btrfs_root *root,
2467 struct btrfs_path *path,
2468 struct btrfs_key *key0,
2469 int level,
2470 int file_key,
2471 struct btrfs_root **found_root,
2472 u64 bytenr)
2473{
2474 struct btrfs_key root_location;
2475 struct btrfs_root *cur_root = *found_root;
2476 struct btrfs_file_extent_item *file_extent;
2477 u64 root_search_start = BTRFS_FS_TREE_OBJECTID;
2478 u64 found_bytenr;
2479 int ret;
2480 int i;
2481
2482 root_location.offset = (u64)-1;
2483 root_location.type = BTRFS_ROOT_ITEM_KEY;
2484 path->lowest_level = level;
2485 path->reada = 0;
2486 while(1) {
2487 ret = btrfs_search_slot(NULL, cur_root, key0, path, 0, 0);
2488 found_bytenr = 0;
2489 if (ret == 0 && file_key) {
2490 struct extent_buffer *leaf = path->nodes[0];
2491 file_extent = btrfs_item_ptr(leaf, path->slots[0],
2492 struct btrfs_file_extent_item);
2493 if (btrfs_file_extent_type(leaf, file_extent) ==
2494 BTRFS_FILE_EXTENT_REG) {
2495 found_bytenr =
2496 btrfs_file_extent_disk_bytenr(leaf,
2497 file_extent);
2498 }
Chris Mason323da792008-05-09 11:46:48 -04002499 } else if (!file_key) {
Chris Masonbf4ef672008-05-08 13:26:18 -04002500 if (path->nodes[level])
2501 found_bytenr = path->nodes[level]->start;
2502 }
2503
2504 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2505 if (!path->nodes[i])
2506 break;
2507 free_extent_buffer(path->nodes[i]);
2508 path->nodes[i] = NULL;
2509 }
2510 btrfs_release_path(cur_root, path);
2511
2512 if (found_bytenr == bytenr) {
2513 *found_root = cur_root;
2514 ret = 0;
2515 goto out;
2516 }
2517 ret = btrfs_search_root(root->fs_info->tree_root,
2518 root_search_start, &root_search_start);
2519 if (ret)
2520 break;
2521
2522 root_location.objectid = root_search_start;
2523 cur_root = btrfs_read_fs_root_no_name(root->fs_info,
2524 &root_location);
2525 if (!cur_root) {
2526 ret = 1;
2527 break;
2528 }
2529 }
2530out:
2531 path->lowest_level = 0;
2532 return ret;
2533}
2534
2535/*
Chris Mason4313b392008-01-03 09:08:48 -05002536 * note, this releases the path
2537 */
Chris Mason98ed5172008-01-03 10:01:48 -05002538static int noinline relocate_one_reference(struct btrfs_root *extent_root,
Chris Masonedbd8d42007-12-21 16:27:24 -05002539 struct btrfs_path *path,
Chris Mason4313b392008-01-03 09:08:48 -05002540 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002541{
2542 struct inode *inode;
2543 struct btrfs_root *found_root;
Chris Masonbf4ef672008-05-08 13:26:18 -04002544 struct btrfs_key root_location;
2545 struct btrfs_key found_key;
Chris Mason4313b392008-01-03 09:08:48 -05002546 struct btrfs_extent_ref *ref;
2547 u64 ref_root;
2548 u64 ref_gen;
2549 u64 ref_objectid;
2550 u64 ref_offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05002551 int ret;
Chris Masonbf4ef672008-05-08 13:26:18 -04002552 int level;
Chris Masonedbd8d42007-12-21 16:27:24 -05002553
Chris Mason4313b392008-01-03 09:08:48 -05002554 ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
2555 struct btrfs_extent_ref);
2556 ref_root = btrfs_ref_root(path->nodes[0], ref);
2557 ref_gen = btrfs_ref_generation(path->nodes[0], ref);
2558 ref_objectid = btrfs_ref_objectid(path->nodes[0], ref);
2559 ref_offset = btrfs_ref_offset(path->nodes[0], ref);
2560 btrfs_release_path(extent_root, path);
2561
Chris Masonbf4ef672008-05-08 13:26:18 -04002562 root_location.objectid = ref_root;
Chris Masonedbd8d42007-12-21 16:27:24 -05002563 if (ref_gen == 0)
Chris Masonbf4ef672008-05-08 13:26:18 -04002564 root_location.offset = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002565 else
Chris Masonbf4ef672008-05-08 13:26:18 -04002566 root_location.offset = (u64)-1;
2567 root_location.type = BTRFS_ROOT_ITEM_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05002568
2569 found_root = btrfs_read_fs_root_no_name(extent_root->fs_info,
Chris Masonbf4ef672008-05-08 13:26:18 -04002570 &root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002571 BUG_ON(!found_root);
2572
2573 if (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
Chris Masonbf4ef672008-05-08 13:26:18 -04002574 found_key.objectid = ref_objectid;
2575 found_key.type = BTRFS_EXTENT_DATA_KEY;
2576 found_key.offset = ref_offset;
2577 level = 0;
2578
2579 ret = find_root_for_ref(extent_root, path, &found_key,
2580 level, 1, &found_root,
2581 extent_key->objectid);
2582
2583 if (ret)
2584 goto out;
2585
Chris Masonedbd8d42007-12-21 16:27:24 -05002586 mutex_unlock(&extent_root->fs_info->fs_mutex);
2587 inode = btrfs_iget_locked(extent_root->fs_info->sb,
2588 ref_objectid, found_root);
2589 if (inode->i_state & I_NEW) {
2590 /* the inode and parent dir are two different roots */
2591 BTRFS_I(inode)->root = found_root;
2592 BTRFS_I(inode)->location.objectid = ref_objectid;
2593 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
2594 BTRFS_I(inode)->location.offset = 0;
2595 btrfs_read_locked_inode(inode);
2596 unlock_new_inode(inode);
2597
2598 }
2599 /* this can happen if the reference is not against
2600 * the latest version of the tree root
2601 */
2602 if (is_bad_inode(inode)) {
2603 mutex_lock(&extent_root->fs_info->fs_mutex);
2604 goto out;
2605 }
2606 relocate_inode_pages(inode, ref_offset, extent_key->offset);
Chris Masonedbd8d42007-12-21 16:27:24 -05002607 iput(inode);
2608 mutex_lock(&extent_root->fs_info->fs_mutex);
2609 } else {
2610 struct btrfs_trans_handle *trans;
Chris Masonedbd8d42007-12-21 16:27:24 -05002611 struct extent_buffer *eb;
Chris Masonedbd8d42007-12-21 16:27:24 -05002612 int i;
2613
Chris Masonedbd8d42007-12-21 16:27:24 -05002614 eb = read_tree_block(found_root, extent_key->objectid,
Chris Masonca7a79a2008-05-12 12:59:19 -04002615 extent_key->offset, 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05002616 level = btrfs_header_level(eb);
2617
2618 if (level == 0)
2619 btrfs_item_key_to_cpu(eb, &found_key, 0);
2620 else
2621 btrfs_node_key_to_cpu(eb, &found_key, 0);
2622
2623 free_extent_buffer(eb);
2624
Chris Masonbf4ef672008-05-08 13:26:18 -04002625 ret = find_root_for_ref(extent_root, path, &found_key,
2626 level, 0, &found_root,
2627 extent_key->objectid);
2628
2629 if (ret)
2630 goto out;
2631
2632 trans = btrfs_start_transaction(found_root, 1);
2633
Chris Masonedbd8d42007-12-21 16:27:24 -05002634 path->lowest_level = level;
Chris Mason8f662a72008-01-02 10:01:11 -05002635 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002636 ret = btrfs_search_slot(trans, found_root, &found_key, path,
2637 0, 1);
2638 path->lowest_level = 0;
2639 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2640 if (!path->nodes[i])
2641 break;
2642 free_extent_buffer(path->nodes[i]);
2643 path->nodes[i] = NULL;
2644 }
2645 btrfs_release_path(found_root, path);
2646 btrfs_end_transaction(trans, found_root);
2647 }
2648
2649out:
2650 return 0;
2651}
2652
Chris Masona061fc82008-05-07 11:43:44 -04002653static int noinline del_extent_zero(struct btrfs_root *extent_root,
2654 struct btrfs_path *path,
2655 struct btrfs_key *extent_key)
2656{
2657 int ret;
2658 struct btrfs_trans_handle *trans;
2659
2660 trans = btrfs_start_transaction(extent_root, 1);
2661 ret = btrfs_search_slot(trans, extent_root, extent_key, path, -1, 1);
2662 if (ret > 0) {
2663 ret = -EIO;
2664 goto out;
2665 }
2666 if (ret < 0)
2667 goto out;
2668 ret = btrfs_del_item(trans, extent_root, path);
2669out:
2670 btrfs_end_transaction(trans, extent_root);
2671 return ret;
2672}
2673
Chris Mason98ed5172008-01-03 10:01:48 -05002674static int noinline relocate_one_extent(struct btrfs_root *extent_root,
2675 struct btrfs_path *path,
2676 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002677{
2678 struct btrfs_key key;
2679 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002680 struct extent_buffer *leaf;
Chris Masonedbd8d42007-12-21 16:27:24 -05002681 u32 nritems;
2682 u32 item_size;
2683 int ret = 0;
2684
Chris Masona061fc82008-05-07 11:43:44 -04002685 if (extent_key->objectid == 0) {
2686 ret = del_extent_zero(extent_root, path, extent_key);
2687 goto out;
2688 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002689 key.objectid = extent_key->objectid;
2690 key.type = BTRFS_EXTENT_REF_KEY;
2691 key.offset = 0;
2692
2693 while(1) {
2694 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2695
Chris Masonedbd8d42007-12-21 16:27:24 -05002696 if (ret < 0)
2697 goto out;
2698
2699 ret = 0;
2700 leaf = path->nodes[0];
2701 nritems = btrfs_header_nritems(leaf);
Chris Masona061fc82008-05-07 11:43:44 -04002702 if (path->slots[0] == nritems) {
2703 ret = btrfs_next_leaf(extent_root, path);
2704 if (ret > 0) {
2705 ret = 0;
2706 goto out;
2707 }
2708 if (ret < 0)
2709 goto out;
Chris Masonbf4ef672008-05-08 13:26:18 -04002710 leaf = path->nodes[0];
Chris Masona061fc82008-05-07 11:43:44 -04002711 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002712
2713 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masona061fc82008-05-07 11:43:44 -04002714 if (found_key.objectid != extent_key->objectid) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002715 break;
Chris Masona061fc82008-05-07 11:43:44 -04002716 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002717
Chris Masona061fc82008-05-07 11:43:44 -04002718 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002719 break;
Chris Masona061fc82008-05-07 11:43:44 -04002720 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002721
2722 key.offset = found_key.offset + 1;
2723 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2724
Chris Mason4313b392008-01-03 09:08:48 -05002725 ret = relocate_one_reference(extent_root, path, extent_key);
Chris Masonedbd8d42007-12-21 16:27:24 -05002726 if (ret)
2727 goto out;
2728 }
2729 ret = 0;
2730out:
2731 btrfs_release_path(extent_root, path);
2732 return ret;
2733}
2734
Chris Masonec44a352008-04-28 15:29:52 -04002735static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
2736{
2737 u64 num_devices;
2738 u64 stripped = BTRFS_BLOCK_GROUP_RAID0 |
2739 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
2740
Chris Masona061fc82008-05-07 11:43:44 -04002741 num_devices = root->fs_info->fs_devices->num_devices;
Chris Masonec44a352008-04-28 15:29:52 -04002742 if (num_devices == 1) {
2743 stripped |= BTRFS_BLOCK_GROUP_DUP;
2744 stripped = flags & ~stripped;
2745
2746 /* turn raid0 into single device chunks */
2747 if (flags & BTRFS_BLOCK_GROUP_RAID0)
2748 return stripped;
2749
2750 /* turn mirroring into duplication */
2751 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
2752 BTRFS_BLOCK_GROUP_RAID10))
2753 return stripped | BTRFS_BLOCK_GROUP_DUP;
2754 return flags;
2755 } else {
2756 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04002757 if (flags & stripped)
2758 return flags;
2759
2760 stripped |= BTRFS_BLOCK_GROUP_DUP;
2761 stripped = flags & ~stripped;
2762
2763 /* switch duplicated blocks with raid1 */
2764 if (flags & BTRFS_BLOCK_GROUP_DUP)
2765 return stripped | BTRFS_BLOCK_GROUP_RAID1;
2766
2767 /* turn single device chunks into raid0 */
2768 return stripped | BTRFS_BLOCK_GROUP_RAID0;
2769 }
2770 return flags;
2771}
2772
Chris Mason8f18cf12008-04-25 16:53:30 -04002773int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 shrink_start)
Chris Masonedbd8d42007-12-21 16:27:24 -05002774{
2775 struct btrfs_trans_handle *trans;
2776 struct btrfs_root *tree_root = root->fs_info->tree_root;
2777 struct btrfs_path *path;
2778 u64 cur_byte;
2779 u64 total_found;
Chris Mason8f18cf12008-04-25 16:53:30 -04002780 u64 shrink_last_byte;
Chris Masonec44a352008-04-28 15:29:52 -04002781 u64 new_alloc_flags;
Chris Mason8f18cf12008-04-25 16:53:30 -04002782 struct btrfs_block_group_cache *shrink_block_group;
Chris Masonedbd8d42007-12-21 16:27:24 -05002783 struct btrfs_fs_info *info = root->fs_info;
Chris Masonedbd8d42007-12-21 16:27:24 -05002784 struct btrfs_key key;
Yan73e48b22008-01-03 14:14:39 -05002785 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002786 struct extent_buffer *leaf;
2787 u32 nritems;
2788 int ret;
Chris Masona061fc82008-05-07 11:43:44 -04002789 int progress;
Chris Masonedbd8d42007-12-21 16:27:24 -05002790
Chris Mason8f18cf12008-04-25 16:53:30 -04002791 shrink_block_group = btrfs_lookup_block_group(root->fs_info,
2792 shrink_start);
2793 BUG_ON(!shrink_block_group);
2794
2795 shrink_last_byte = shrink_start + shrink_block_group->key.offset;
2796
2797 shrink_block_group->space_info->total_bytes -=
2798 shrink_block_group->key.offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05002799 path = btrfs_alloc_path();
2800 root = root->fs_info->extent_root;
Chris Mason8f662a72008-01-02 10:01:11 -05002801 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002802
Chris Mason323da792008-05-09 11:46:48 -04002803 printk("btrfs relocating block group %llu flags %llu\n",
2804 (unsigned long long)shrink_start,
2805 (unsigned long long)shrink_block_group->flags);
2806
Chris Masonedbd8d42007-12-21 16:27:24 -05002807again:
Chris Masonec44a352008-04-28 15:29:52 -04002808 if (btrfs_block_group_used(&shrink_block_group->item) > 0) {
Chris Mason323da792008-05-09 11:46:48 -04002809 u64 calc;
2810
Chris Masonec44a352008-04-28 15:29:52 -04002811 trans = btrfs_start_transaction(root, 1);
2812 new_alloc_flags = update_block_group_flags(root,
2813 shrink_block_group->flags);
Chris Mason323da792008-05-09 11:46:48 -04002814 if (new_alloc_flags != shrink_block_group->flags) {
2815 calc =
2816 btrfs_block_group_used(&shrink_block_group->item);
2817 } else {
2818 calc = shrink_block_group->key.offset;
2819 }
Chris Masonec44a352008-04-28 15:29:52 -04002820 do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason323da792008-05-09 11:46:48 -04002821 calc + 2 * 1024 * 1024, new_alloc_flags);
Chris Masonec44a352008-04-28 15:29:52 -04002822 btrfs_end_transaction(trans, root);
2823 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002824 shrink_block_group->ro = 1;
2825
Chris Masonedbd8d42007-12-21 16:27:24 -05002826 total_found = 0;
Chris Masona061fc82008-05-07 11:43:44 -04002827 progress = 0;
Chris Mason8f18cf12008-04-25 16:53:30 -04002828 key.objectid = shrink_start;
Chris Masonedbd8d42007-12-21 16:27:24 -05002829 key.offset = 0;
2830 key.type = 0;
Yan73e48b22008-01-03 14:14:39 -05002831 cur_byte = key.objectid;
Chris Mason4313b392008-01-03 09:08:48 -05002832
Yan73e48b22008-01-03 14:14:39 -05002833 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2834 if (ret < 0)
2835 goto out;
2836
Chris Mason0b86a832008-03-24 15:01:56 -04002837 ret = btrfs_previous_item(root, path, 0, BTRFS_EXTENT_ITEM_KEY);
Yan73e48b22008-01-03 14:14:39 -05002838 if (ret < 0)
2839 goto out;
Chris Mason8f18cf12008-04-25 16:53:30 -04002840
Yan73e48b22008-01-03 14:14:39 -05002841 if (ret == 0) {
2842 leaf = path->nodes[0];
2843 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04002844 if (found_key.objectid + found_key.offset > shrink_start &&
2845 found_key.objectid < shrink_last_byte) {
Yan73e48b22008-01-03 14:14:39 -05002846 cur_byte = found_key.objectid;
2847 key.objectid = cur_byte;
2848 }
2849 }
2850 btrfs_release_path(root, path);
2851
2852 while(1) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002853 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2854 if (ret < 0)
2855 goto out;
Yan73e48b22008-01-03 14:14:39 -05002856
Chris Masonedbd8d42007-12-21 16:27:24 -05002857 leaf = path->nodes[0];
Chris Masonedbd8d42007-12-21 16:27:24 -05002858 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05002859next:
2860 if (path->slots[0] >= nritems) {
2861 ret = btrfs_next_leaf(root, path);
2862 if (ret < 0)
2863 goto out;
2864 if (ret == 1) {
2865 ret = 0;
2866 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05002867 }
Yan73e48b22008-01-03 14:14:39 -05002868 leaf = path->nodes[0];
2869 nritems = btrfs_header_nritems(leaf);
2870 }
2871
2872 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason725c8462008-01-04 16:47:16 -05002873
Chris Mason8f18cf12008-04-25 16:53:30 -04002874 if (found_key.objectid >= shrink_last_byte)
2875 break;
2876
Chris Mason725c8462008-01-04 16:47:16 -05002877 if (progress && need_resched()) {
2878 memcpy(&key, &found_key, sizeof(key));
2879 mutex_unlock(&root->fs_info->fs_mutex);
2880 cond_resched();
2881 mutex_lock(&root->fs_info->fs_mutex);
2882 btrfs_release_path(root, path);
2883 btrfs_search_slot(NULL, root, &key, path, 0, 0);
2884 progress = 0;
2885 goto next;
2886 }
2887 progress = 1;
2888
Yan73e48b22008-01-03 14:14:39 -05002889 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_ITEM_KEY ||
2890 found_key.objectid + found_key.offset <= cur_byte) {
2891 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05002892 goto next;
2893 }
Yan73e48b22008-01-03 14:14:39 -05002894
Chris Masonedbd8d42007-12-21 16:27:24 -05002895 total_found++;
2896 cur_byte = found_key.objectid + found_key.offset;
2897 key.objectid = cur_byte;
2898 btrfs_release_path(root, path);
2899 ret = relocate_one_extent(root, path, &found_key);
2900 }
2901
2902 btrfs_release_path(root, path);
2903
2904 if (total_found > 0) {
Chris Mason323da792008-05-09 11:46:48 -04002905 printk("btrfs relocate found %llu last extent was %llu\n",
2906 (unsigned long long)total_found,
2907 (unsigned long long)found_key.objectid);
Chris Masonedbd8d42007-12-21 16:27:24 -05002908 trans = btrfs_start_transaction(tree_root, 1);
2909 btrfs_commit_transaction(trans, tree_root);
2910
2911 mutex_unlock(&root->fs_info->fs_mutex);
2912 btrfs_clean_old_snapshots(tree_root);
2913 mutex_lock(&root->fs_info->fs_mutex);
2914
2915 trans = btrfs_start_transaction(tree_root, 1);
2916 btrfs_commit_transaction(trans, tree_root);
2917 goto again;
2918 }
2919
Chris Mason8f18cf12008-04-25 16:53:30 -04002920 /*
2921 * we've freed all the extents, now remove the block
2922 * group item from the tree
2923 */
Chris Masonedbd8d42007-12-21 16:27:24 -05002924 trans = btrfs_start_transaction(root, 1);
Chris Mason8f18cf12008-04-25 16:53:30 -04002925 memcpy(&key, &shrink_block_group->key, sizeof(key));
Chris Mason4313b392008-01-03 09:08:48 -05002926
Chris Mason8f18cf12008-04-25 16:53:30 -04002927 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2928 if (ret > 0)
2929 ret = -EIO;
2930 if (ret < 0)
2931 goto out;
Yan73e48b22008-01-03 14:14:39 -05002932
Chris Mason8f18cf12008-04-25 16:53:30 -04002933 leaf = path->nodes[0];
2934 nritems = btrfs_header_nritems(leaf);
2935 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2936 kfree(shrink_block_group);
Chris Mason1372f8e2008-01-04 09:34:54 -05002937
Chris Mason8f18cf12008-04-25 16:53:30 -04002938 clear_extent_bits(&info->block_group_cache, found_key.objectid,
2939 found_key.objectid + found_key.offset - 1,
2940 (unsigned int)-1, GFP_NOFS);
Yan73e48b22008-01-03 14:14:39 -05002941
Chris Mason8f18cf12008-04-25 16:53:30 -04002942 btrfs_del_item(trans, root, path);
2943 clear_extent_dirty(&info->free_space_cache,
2944 shrink_start, shrink_last_byte - 1,
Chris Masonedbd8d42007-12-21 16:27:24 -05002945 GFP_NOFS);
2946 btrfs_commit_transaction(trans, root);
2947out:
2948 btrfs_free_path(path);
2949 return ret;
2950}
2951
Chris Mason0b86a832008-03-24 15:01:56 -04002952int find_first_block_group(struct btrfs_root *root, struct btrfs_path *path,
2953 struct btrfs_key *key)
2954{
2955 int ret;
2956 struct btrfs_key found_key;
2957 struct extent_buffer *leaf;
2958 int slot;
2959
2960 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
2961 if (ret < 0)
2962 return ret;
2963 while(1) {
2964 slot = path->slots[0];
2965 leaf = path->nodes[0];
2966 if (slot >= btrfs_header_nritems(leaf)) {
2967 ret = btrfs_next_leaf(root, path);
2968 if (ret == 0)
2969 continue;
2970 if (ret < 0)
2971 goto error;
2972 break;
2973 }
2974 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2975
2976 if (found_key.objectid >= key->objectid &&
2977 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY)
2978 return 0;
2979 path->slots[0]++;
2980 }
2981 ret = -ENOENT;
2982error:
2983 return ret;
2984}
2985
Chris Mason9078a3e2007-04-26 16:46:15 -04002986int btrfs_read_block_groups(struct btrfs_root *root)
2987{
2988 struct btrfs_path *path;
2989 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04002990 int bit;
Chris Mason9078a3e2007-04-26 16:46:15 -04002991 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04002992 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04002993 struct btrfs_space_info *space_info;
Chris Masond1310b22008-01-24 16:13:08 -05002994 struct extent_io_tree *block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002995 struct btrfs_key key;
2996 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04002997 struct extent_buffer *leaf;
Chris Mason96b51792007-10-15 16:15:19 -04002998
2999 block_group_cache = &info->block_group_cache;
Chris Masonbe744172007-05-06 10:15:01 -04003000 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04003001 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04003002 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003003 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04003004 path = btrfs_alloc_path();
3005 if (!path)
3006 return -ENOMEM;
3007
3008 while(1) {
Chris Mason0b86a832008-03-24 15:01:56 -04003009 ret = find_first_block_group(root, path, &key);
3010 if (ret > 0) {
3011 ret = 0;
3012 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04003013 }
Chris Mason0b86a832008-03-24 15:01:56 -04003014 if (ret != 0)
3015 goto error;
3016
Chris Mason5f39d392007-10-15 16:14:19 -04003017 leaf = path->nodes[0];
3018 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04003019 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04003020 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04003021 ret = -ENOMEM;
Chris Mason9078a3e2007-04-26 16:46:15 -04003022 break;
3023 }
Chris Mason3e1ad542007-05-07 20:03:49 -04003024
Chris Mason5f39d392007-10-15 16:14:19 -04003025 read_extent_buffer(leaf, &cache->item,
3026 btrfs_item_ptr_offset(leaf, path->slots[0]),
3027 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04003028 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason0b86a832008-03-24 15:01:56 -04003029
Chris Mason9078a3e2007-04-26 16:46:15 -04003030 key.objectid = found_key.objectid + found_key.offset;
3031 btrfs_release_path(root, path);
Chris Mason0b86a832008-03-24 15:01:56 -04003032 cache->flags = btrfs_block_group_flags(&cache->item);
3033 bit = 0;
3034 if (cache->flags & BTRFS_BLOCK_GROUP_DATA) {
Chris Mason96b51792007-10-15 16:15:19 -04003035 bit = BLOCK_GROUP_DATA;
Chris Mason0b86a832008-03-24 15:01:56 -04003036 } else if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
3037 bit = BLOCK_GROUP_SYSTEM;
3038 } else if (cache->flags & BTRFS_BLOCK_GROUP_METADATA) {
Chris Mason96b51792007-10-15 16:15:19 -04003039 bit = BLOCK_GROUP_METADATA;
Chris Mason31f3c992007-04-30 15:25:45 -04003040 }
Chris Mason8790d502008-04-03 16:29:03 -04003041 set_avail_alloc_bits(info, cache->flags);
Chris Mason96b51792007-10-15 16:15:19 -04003042
Chris Mason6324fbf2008-03-24 15:01:59 -04003043 ret = update_space_info(info, cache->flags, found_key.offset,
3044 btrfs_block_group_used(&cache->item),
3045 &space_info);
3046 BUG_ON(ret);
3047 cache->space_info = space_info;
3048
Chris Mason96b51792007-10-15 16:15:19 -04003049 /* use EXTENT_LOCKED to prevent merging */
3050 set_extent_bits(block_group_cache, found_key.objectid,
3051 found_key.objectid + found_key.offset - 1,
3052 bit | EXTENT_LOCKED, GFP_NOFS);
3053 set_state_private(block_group_cache, found_key.objectid,
Jens Axboeae2f5412007-10-19 09:22:59 -04003054 (unsigned long)cache);
Chris Mason96b51792007-10-15 16:15:19 -04003055
Chris Mason9078a3e2007-04-26 16:46:15 -04003056 if (key.objectid >=
Chris Masondb945352007-10-15 16:15:53 -04003057 btrfs_super_total_bytes(&info->super_copy))
Chris Mason9078a3e2007-04-26 16:46:15 -04003058 break;
3059 }
Chris Mason0b86a832008-03-24 15:01:56 -04003060 ret = 0;
3061error:
Chris Mason9078a3e2007-04-26 16:46:15 -04003062 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04003063 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003064}
Chris Mason6324fbf2008-03-24 15:01:59 -04003065
3066int btrfs_make_block_group(struct btrfs_trans_handle *trans,
3067 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04003068 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04003069 u64 size)
3070{
3071 int ret;
3072 int bit = 0;
3073 struct btrfs_root *extent_root;
3074 struct btrfs_block_group_cache *cache;
3075 struct extent_io_tree *block_group_cache;
3076
3077 extent_root = root->fs_info->extent_root;
3078 block_group_cache = &root->fs_info->block_group_cache;
3079
Chris Mason8f18cf12008-04-25 16:53:30 -04003080 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason6324fbf2008-03-24 15:01:59 -04003081 BUG_ON(!cache);
Chris Masone17cade2008-04-15 15:41:47 -04003082 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04003083 cache->key.offset = size;
Chris Masone17cade2008-04-15 15:41:47 -04003084
Chris Mason6324fbf2008-03-24 15:01:59 -04003085 btrfs_set_key_type(&cache->key, BTRFS_BLOCK_GROUP_ITEM_KEY);
3086 memset(&cache->item, 0, sizeof(cache->item));
3087 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04003088 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
3089 cache->flags = type;
3090 btrfs_set_block_group_flags(&cache->item, type);
3091
3092 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
3093 &cache->space_info);
3094 BUG_ON(ret);
3095
Chris Masond18a2c42008-04-04 15:40:00 -04003096 bit = block_group_state_bits(type);
Chris Masone17cade2008-04-15 15:41:47 -04003097 set_extent_bits(block_group_cache, chunk_offset,
3098 chunk_offset + size - 1,
Chris Mason6324fbf2008-03-24 15:01:59 -04003099 bit | EXTENT_LOCKED, GFP_NOFS);
Chris Mason6324fbf2008-03-24 15:01:59 -04003100
Chris Masone17cade2008-04-15 15:41:47 -04003101 set_state_private(block_group_cache, chunk_offset,
3102 (unsigned long)cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04003103 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
3104 sizeof(cache->item));
3105 BUG_ON(ret);
3106
3107 finish_current_insert(trans, extent_root);
3108 ret = del_pending_extents(trans, extent_root);
3109 BUG_ON(ret);
Chris Masond18a2c42008-04-04 15:40:00 -04003110 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason6324fbf2008-03-24 15:01:59 -04003111 return 0;
3112}