blob: b42efc2ded513ec10c38eb7ebcee9247d2f2c825 [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>
David Woodhouse21af8042008-08-12 14:13:26 +010021#include <linux/blkdev.h>
Chris Masonb7a9f292009-02-04 09:23:45 -050022#include <linux/sort.h>
Chris Mason4184ea72009-03-10 12:39:20 -040023#include <linux/rcupdate.h>
Josef Bacik817d52f2009-07-13 21:29:25 -040024#include <linux/kthread.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050026#include "compat.h"
Chris Mason74493f72007-12-11 09:25:06 -050027#include "hash.h"
Chris Masonfec577f2007-02-26 10:40:21 -050028#include "ctree.h"
29#include "disk-io.h"
30#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040031#include "transaction.h"
Chris Mason0b86a832008-03-24 15:01:56 -040032#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040033#include "locking.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040034#include "free-space-cache.h"
Chris Masonfec577f2007-02-26 10:40:21 -050035
Chris Mason0e4f8f82011-04-15 16:05:44 -040036/* control flags for do_chunk_alloc's force field
37 * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk
38 * if we really need one.
39 *
40 * CHUNK_ALLOC_FORCE means it must try to allocate one
41 *
42 * CHUNK_ALLOC_LIMITED means to only try and allocate one
43 * if we have very few chunks already allocated. This is
44 * used as part of the clustering code to help make sure
45 * we have a good pool of storage to cluster in, without
46 * filling the FS with empty chunks
47 *
48 */
49enum {
50 CHUNK_ALLOC_NO_FORCE = 0,
51 CHUNK_ALLOC_FORCE = 1,
52 CHUNK_ALLOC_LIMITED = 2,
53};
54
Josef Bacikf3465ca2008-11-12 14:19:50 -050055static int update_block_group(struct btrfs_trans_handle *trans,
56 struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -040057 u64 bytenr, u64 num_bytes, int alloc);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040058static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
59 struct btrfs_root *root,
60 u64 bytenr, u64 num_bytes, u64 parent,
61 u64 root_objectid, u64 owner_objectid,
62 u64 owner_offset, int refs_to_drop,
63 struct btrfs_delayed_extent_op *extra_op);
64static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
65 struct extent_buffer *leaf,
66 struct btrfs_extent_item *ei);
67static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
68 struct btrfs_root *root,
69 u64 parent, u64 root_objectid,
70 u64 flags, u64 owner, u64 offset,
71 struct btrfs_key *ins, int ref_mod);
72static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
73 struct btrfs_root *root,
74 u64 parent, u64 root_objectid,
75 u64 flags, struct btrfs_disk_key *key,
76 int level, struct btrfs_key *ins);
Josef Bacik6a632092009-02-20 11:00:09 -050077static int do_chunk_alloc(struct btrfs_trans_handle *trans,
78 struct btrfs_root *extent_root, u64 alloc_bytes,
79 u64 flags, int force);
Yan Zheng11833d62009-09-11 16:11:19 -040080static int find_next_key(struct btrfs_path *path, int level,
81 struct btrfs_key *key);
Josef Bacik9ed74f22009-09-11 16:12:44 -040082static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
83 int dump_block_groups);
Josef Bacik6a632092009-02-20 11:00:09 -050084
Josef Bacik817d52f2009-07-13 21:29:25 -040085static noinline int
86block_group_cache_done(struct btrfs_block_group_cache *cache)
87{
88 smp_mb();
89 return cache->cached == BTRFS_CACHE_FINISHED;
90}
91
Josef Bacik0f9dd462008-09-23 13:14:11 -040092static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
93{
94 return (cache->flags & bits) == bits;
95}
96
David Sterba62a45b62011-04-20 15:52:26 +020097static void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
Josef Bacik11dfe352009-11-13 20:12:59 +000098{
99 atomic_inc(&cache->count);
100}
101
102void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
103{
Yan, Zhengf0486c62010-05-16 10:46:25 -0400104 if (atomic_dec_and_test(&cache->count)) {
105 WARN_ON(cache->pinned > 0);
106 WARN_ON(cache->reserved > 0);
107 WARN_ON(cache->reserved_pinned > 0);
Li Zefan34d52cb2011-03-29 13:46:06 +0800108 kfree(cache->free_space_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000109 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400110 }
Josef Bacik11dfe352009-11-13 20:12:59 +0000111}
112
Josef Bacik0f9dd462008-09-23 13:14:11 -0400113/*
114 * this adds the block group to the fs_info rb tree for the block group
115 * cache
116 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500117static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400118 struct btrfs_block_group_cache *block_group)
119{
120 struct rb_node **p;
121 struct rb_node *parent = NULL;
122 struct btrfs_block_group_cache *cache;
123
124 spin_lock(&info->block_group_cache_lock);
125 p = &info->block_group_cache_tree.rb_node;
126
127 while (*p) {
128 parent = *p;
129 cache = rb_entry(parent, struct btrfs_block_group_cache,
130 cache_node);
131 if (block_group->key.objectid < cache->key.objectid) {
132 p = &(*p)->rb_left;
133 } else if (block_group->key.objectid > cache->key.objectid) {
134 p = &(*p)->rb_right;
135 } else {
136 spin_unlock(&info->block_group_cache_lock);
137 return -EEXIST;
138 }
139 }
140
141 rb_link_node(&block_group->cache_node, parent, p);
142 rb_insert_color(&block_group->cache_node,
143 &info->block_group_cache_tree);
144 spin_unlock(&info->block_group_cache_lock);
145
146 return 0;
147}
148
149/*
150 * This will return the block group at or after bytenr if contains is 0, else
151 * it will return the block group that contains the bytenr
152 */
153static struct btrfs_block_group_cache *
154block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
155 int contains)
156{
157 struct btrfs_block_group_cache *cache, *ret = NULL;
158 struct rb_node *n;
159 u64 end, start;
160
161 spin_lock(&info->block_group_cache_lock);
162 n = info->block_group_cache_tree.rb_node;
163
164 while (n) {
165 cache = rb_entry(n, struct btrfs_block_group_cache,
166 cache_node);
167 end = cache->key.objectid + cache->key.offset - 1;
168 start = cache->key.objectid;
169
170 if (bytenr < start) {
171 if (!contains && (!ret || start < ret->key.objectid))
172 ret = cache;
173 n = n->rb_left;
174 } else if (bytenr > start) {
175 if (contains && bytenr <= end) {
176 ret = cache;
177 break;
178 }
179 n = n->rb_right;
180 } else {
181 ret = cache;
182 break;
183 }
184 }
Yan Zhengd2fb3432008-12-11 16:30:39 -0500185 if (ret)
Josef Bacik11dfe352009-11-13 20:12:59 +0000186 btrfs_get_block_group(ret);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400187 spin_unlock(&info->block_group_cache_lock);
188
189 return ret;
190}
191
Yan Zheng11833d62009-09-11 16:11:19 -0400192static int add_excluded_extent(struct btrfs_root *root,
193 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400194{
Yan Zheng11833d62009-09-11 16:11:19 -0400195 u64 end = start + num_bytes - 1;
196 set_extent_bits(&root->fs_info->freed_extents[0],
197 start, end, EXTENT_UPTODATE, GFP_NOFS);
198 set_extent_bits(&root->fs_info->freed_extents[1],
199 start, end, EXTENT_UPTODATE, GFP_NOFS);
200 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400201}
202
Yan Zheng11833d62009-09-11 16:11:19 -0400203static void free_excluded_extents(struct btrfs_root *root,
204 struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400205{
Yan Zheng11833d62009-09-11 16:11:19 -0400206 u64 start, end;
207
208 start = cache->key.objectid;
209 end = start + cache->key.offset - 1;
210
211 clear_extent_bits(&root->fs_info->freed_extents[0],
212 start, end, EXTENT_UPTODATE, GFP_NOFS);
213 clear_extent_bits(&root->fs_info->freed_extents[1],
214 start, end, EXTENT_UPTODATE, GFP_NOFS);
215}
216
217static int exclude_super_stripes(struct btrfs_root *root,
218 struct btrfs_block_group_cache *cache)
219{
Josef Bacik817d52f2009-07-13 21:29:25 -0400220 u64 bytenr;
221 u64 *logical;
222 int stripe_len;
223 int i, nr, ret;
224
Yan, Zheng06b23312009-11-26 09:31:11 +0000225 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
226 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
227 cache->bytes_super += stripe_len;
228 ret = add_excluded_extent(root, cache->key.objectid,
229 stripe_len);
230 BUG_ON(ret);
231 }
232
Josef Bacik817d52f2009-07-13 21:29:25 -0400233 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
234 bytenr = btrfs_sb_offset(i);
235 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
236 cache->key.objectid, bytenr,
237 0, &logical, &nr, &stripe_len);
238 BUG_ON(ret);
Yan Zheng11833d62009-09-11 16:11:19 -0400239
Josef Bacik817d52f2009-07-13 21:29:25 -0400240 while (nr--) {
Josef Bacik1b2da372009-09-11 16:11:20 -0400241 cache->bytes_super += stripe_len;
Yan Zheng11833d62009-09-11 16:11:19 -0400242 ret = add_excluded_extent(root, logical[nr],
243 stripe_len);
244 BUG_ON(ret);
Josef Bacik817d52f2009-07-13 21:29:25 -0400245 }
Yan Zheng11833d62009-09-11 16:11:19 -0400246
Josef Bacik817d52f2009-07-13 21:29:25 -0400247 kfree(logical);
248 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400249 return 0;
250}
251
Yan Zheng11833d62009-09-11 16:11:19 -0400252static struct btrfs_caching_control *
253get_caching_control(struct btrfs_block_group_cache *cache)
254{
255 struct btrfs_caching_control *ctl;
256
257 spin_lock(&cache->lock);
258 if (cache->cached != BTRFS_CACHE_STARTED) {
259 spin_unlock(&cache->lock);
260 return NULL;
261 }
262
Josef Bacikdde5abe2010-09-16 16:17:03 -0400263 /* We're loading it the fast way, so we don't have a caching_ctl. */
264 if (!cache->caching_ctl) {
265 spin_unlock(&cache->lock);
266 return NULL;
267 }
268
Yan Zheng11833d62009-09-11 16:11:19 -0400269 ctl = cache->caching_ctl;
270 atomic_inc(&ctl->count);
271 spin_unlock(&cache->lock);
272 return ctl;
273}
274
275static void put_caching_control(struct btrfs_caching_control *ctl)
276{
277 if (atomic_dec_and_test(&ctl->count))
278 kfree(ctl);
279}
280
Josef Bacik0f9dd462008-09-23 13:14:11 -0400281/*
282 * this is only called by cache_block_group, since we could have freed extents
283 * we need to check the pinned_extents for any extents that can't be used yet
284 * since their free space will be released as soon as the transaction commits.
285 */
Josef Bacik817d52f2009-07-13 21:29:25 -0400286static u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400287 struct btrfs_fs_info *info, u64 start, u64 end)
288{
Josef Bacik817d52f2009-07-13 21:29:25 -0400289 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400290 int ret;
291
292 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400293 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400294 &extent_start, &extent_end,
Yan Zheng11833d62009-09-11 16:11:19 -0400295 EXTENT_DIRTY | EXTENT_UPTODATE);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400296 if (ret)
297 break;
298
Yan, Zheng06b23312009-11-26 09:31:11 +0000299 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400300 start = extent_end + 1;
301 } else if (extent_start > start && extent_start < end) {
302 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400303 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500304 ret = btrfs_add_free_space(block_group, start,
305 size);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400306 BUG_ON(ret);
307 start = extent_end + 1;
308 } else {
309 break;
310 }
311 }
312
313 if (start < end) {
314 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400315 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500316 ret = btrfs_add_free_space(block_group, start, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400317 BUG_ON(ret);
318 }
319
Josef Bacik817d52f2009-07-13 21:29:25 -0400320 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400321}
322
Josef Bacik817d52f2009-07-13 21:29:25 -0400323static int caching_kthread(void *data)
Chris Masone37c9e62007-05-09 20:13:14 -0400324{
Josef Bacik817d52f2009-07-13 21:29:25 -0400325 struct btrfs_block_group_cache *block_group = data;
326 struct btrfs_fs_info *fs_info = block_group->fs_info;
Yan Zheng11833d62009-09-11 16:11:19 -0400327 struct btrfs_caching_control *caching_ctl = block_group->caching_ctl;
328 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400329 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400330 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400331 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400332 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400333 u64 last = 0;
334 u32 nritems;
335 int ret = 0;
Chris Masonf510cfe2007-10-15 16:14:48 -0400336
Chris Masone37c9e62007-05-09 20:13:14 -0400337 path = btrfs_alloc_path();
338 if (!path)
339 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -0400340
Josef Bacik817d52f2009-07-13 21:29:25 -0400341 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400342
Chris Mason5cd57b22008-06-25 16:01:30 -0400343 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400344 * We don't want to deadlock with somebody trying to allocate a new
345 * extent for the extent root while also trying to search the extent
346 * root to add free space. So we skip locking and search the commit
347 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400348 */
349 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400350 path->search_commit_root = 1;
Josef Bacik026fd312011-05-13 10:32:11 -0400351 path->reada = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400352
Yan Zhenge4404d62008-12-12 10:03:26 -0500353 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400354 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400355 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400356again:
Yan Zheng11833d62009-09-11 16:11:19 -0400357 mutex_lock(&caching_ctl->mutex);
Chris Mason013f1b12009-07-31 14:57:55 -0400358 /* need to make sure the commit_root doesn't disappear */
359 down_read(&fs_info->extent_commit_sem);
360
Yan Zheng11833d62009-09-11 16:11:19 -0400361 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400362 if (ret < 0)
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400363 goto err;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500364
Yan Zheng11833d62009-09-11 16:11:19 -0400365 leaf = path->nodes[0];
366 nritems = btrfs_header_nritems(leaf);
367
Chris Masond3977122009-01-05 21:25:51 -0500368 while (1) {
David Sterba7841cb22011-05-31 18:07:27 +0200369 if (btrfs_fs_closing(fs_info) > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400370 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400371 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400372 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400373
Yan Zheng11833d62009-09-11 16:11:19 -0400374 if (path->slots[0] < nritems) {
375 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
376 } else {
377 ret = find_next_key(path, 0, &key);
378 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400379 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400380
Josef Bacik589d8ad2011-05-11 17:30:53 -0400381 if (need_resched() ||
382 btrfs_next_leaf(extent_root, path)) {
383 caching_ctl->progress = last;
Chris Masonff5714c2011-05-28 07:00:39 -0400384 btrfs_release_path(path);
Josef Bacik589d8ad2011-05-11 17:30:53 -0400385 up_read(&fs_info->extent_commit_sem);
386 mutex_unlock(&caching_ctl->mutex);
Yan Zheng11833d62009-09-11 16:11:19 -0400387 cond_resched();
Josef Bacik589d8ad2011-05-11 17:30:53 -0400388 goto again;
389 }
390 leaf = path->nodes[0];
391 nritems = btrfs_header_nritems(leaf);
392 continue;
Yan Zheng11833d62009-09-11 16:11:19 -0400393 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400394
Yan Zheng11833d62009-09-11 16:11:19 -0400395 if (key.objectid < block_group->key.objectid) {
396 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400397 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400398 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400399
Chris Masone37c9e62007-05-09 20:13:14 -0400400 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400401 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400402 break;
Yan7d7d6062007-09-14 16:15:28 -0400403
Yan Zheng11833d62009-09-11 16:11:19 -0400404 if (key.type == BTRFS_EXTENT_ITEM_KEY) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400405 total_found += add_new_free_space(block_group,
406 fs_info, last,
407 key.objectid);
Yan7d7d6062007-09-14 16:15:28 -0400408 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400409
Yan Zheng11833d62009-09-11 16:11:19 -0400410 if (total_found > (1024 * 1024 * 2)) {
411 total_found = 0;
412 wake_up(&caching_ctl->wait);
413 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400414 }
Chris Masone37c9e62007-05-09 20:13:14 -0400415 path->slots[0]++;
416 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400417 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400418
419 total_found += add_new_free_space(block_group, fs_info, last,
420 block_group->key.objectid +
421 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400422 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400423
424 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400425 block_group->caching_ctl = NULL;
Josef Bacik817d52f2009-07-13 21:29:25 -0400426 block_group->cached = BTRFS_CACHE_FINISHED;
427 spin_unlock(&block_group->lock);
428
Chris Mason54aa1f42007-06-22 14:16:25 -0400429err:
Chris Masone37c9e62007-05-09 20:13:14 -0400430 btrfs_free_path(path);
Yan Zheng276e6802009-07-30 09:40:40 -0400431 up_read(&fs_info->extent_commit_sem);
Josef Bacik817d52f2009-07-13 21:29:25 -0400432
Yan Zheng11833d62009-09-11 16:11:19 -0400433 free_excluded_extents(extent_root, block_group);
434
435 mutex_unlock(&caching_ctl->mutex);
436 wake_up(&caching_ctl->wait);
437
438 put_caching_control(caching_ctl);
439 atomic_dec(&block_group->space_info->caching_threads);
Josef Bacik11dfe352009-11-13 20:12:59 +0000440 btrfs_put_block_group(block_group);
441
Josef Bacik817d52f2009-07-13 21:29:25 -0400442 return 0;
443}
444
Josef Bacik9d66e232010-08-25 16:54:15 -0400445static int cache_block_group(struct btrfs_block_group_cache *cache,
446 struct btrfs_trans_handle *trans,
Josef Bacikb8399de2010-12-08 09:15:11 -0500447 struct btrfs_root *root,
Josef Bacik9d66e232010-08-25 16:54:15 -0400448 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400449{
Yan Zheng11833d62009-09-11 16:11:19 -0400450 struct btrfs_fs_info *fs_info = cache->fs_info;
451 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400452 struct task_struct *tsk;
453 int ret = 0;
454
Yan Zheng11833d62009-09-11 16:11:19 -0400455 smp_mb();
456 if (cache->cached != BTRFS_CACHE_NO)
457 return 0;
458
Josef Bacik9d66e232010-08-25 16:54:15 -0400459 /*
460 * We can't do the read from on-disk cache during a commit since we need
Josef Bacikb8399de2010-12-08 09:15:11 -0500461 * to have the normal tree locking. Also if we are currently trying to
462 * allocate blocks for the tree root we can't do the fast caching since
463 * we likely hold important locks.
Josef Bacik9d66e232010-08-25 16:54:15 -0400464 */
Li Dongyangf7039b12011-03-24 10:24:28 +0000465 if (trans && (!trans->transaction->in_commit) &&
Josef Bacikb8399de2010-12-08 09:15:11 -0500466 (root && root != root->fs_info->tree_root)) {
Josef Bacik9d66e232010-08-25 16:54:15 -0400467 spin_lock(&cache->lock);
468 if (cache->cached != BTRFS_CACHE_NO) {
469 spin_unlock(&cache->lock);
470 return 0;
471 }
472 cache->cached = BTRFS_CACHE_STARTED;
473 spin_unlock(&cache->lock);
474
475 ret = load_free_space_cache(fs_info, cache);
476
477 spin_lock(&cache->lock);
478 if (ret == 1) {
479 cache->cached = BTRFS_CACHE_FINISHED;
480 cache->last_byte_to_unpin = (u64)-1;
481 } else {
482 cache->cached = BTRFS_CACHE_NO;
483 }
484 spin_unlock(&cache->lock);
Josef Bacik3c148742011-02-02 15:53:47 +0000485 if (ret == 1) {
486 free_excluded_extents(fs_info->extent_root, cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400487 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000488 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400489 }
490
491 if (load_cache_only)
492 return 0;
493
Miao Xiefc0e4a32011-03-24 11:41:21 +0000494 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
Yan Zheng11833d62009-09-11 16:11:19 -0400495 BUG_ON(!caching_ctl);
496
497 INIT_LIST_HEAD(&caching_ctl->list);
498 mutex_init(&caching_ctl->mutex);
499 init_waitqueue_head(&caching_ctl->wait);
500 caching_ctl->block_group = cache;
501 caching_ctl->progress = cache->key.objectid;
502 /* one for caching kthread, one for caching block group list */
503 atomic_set(&caching_ctl->count, 2);
504
Josef Bacik817d52f2009-07-13 21:29:25 -0400505 spin_lock(&cache->lock);
506 if (cache->cached != BTRFS_CACHE_NO) {
507 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400508 kfree(caching_ctl);
509 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400510 }
Yan Zheng11833d62009-09-11 16:11:19 -0400511 cache->caching_ctl = caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400512 cache->cached = BTRFS_CACHE_STARTED;
513 spin_unlock(&cache->lock);
514
Yan Zheng11833d62009-09-11 16:11:19 -0400515 down_write(&fs_info->extent_commit_sem);
516 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
517 up_write(&fs_info->extent_commit_sem);
518
519 atomic_inc(&cache->space_info->caching_threads);
Josef Bacik11dfe352009-11-13 20:12:59 +0000520 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400521
Josef Bacik817d52f2009-07-13 21:29:25 -0400522 tsk = kthread_run(caching_kthread, cache, "btrfs-cache-%llu\n",
523 cache->key.objectid);
524 if (IS_ERR(tsk)) {
525 ret = PTR_ERR(tsk);
526 printk(KERN_ERR "error running thread %d\n", ret);
527 BUG();
528 }
529
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400530 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400531}
532
Josef Bacik0f9dd462008-09-23 13:14:11 -0400533/*
534 * return the block group that starts at or after bytenr
535 */
Chris Masond3977122009-01-05 21:25:51 -0500536static struct btrfs_block_group_cache *
537btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400538{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400539 struct btrfs_block_group_cache *cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400540
Josef Bacik0f9dd462008-09-23 13:14:11 -0400541 cache = block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400542
Josef Bacik0f9dd462008-09-23 13:14:11 -0400543 return cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400544}
545
Josef Bacik0f9dd462008-09-23 13:14:11 -0400546/*
Sankar P9f556842009-05-14 13:52:22 -0400547 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400548 */
Chris Masond3977122009-01-05 21:25:51 -0500549struct btrfs_block_group_cache *btrfs_lookup_block_group(
550 struct btrfs_fs_info *info,
551 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400552{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400553 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -0400554
Josef Bacik0f9dd462008-09-23 13:14:11 -0400555 cache = block_group_cache_tree_search(info, bytenr, 1);
Chris Mason96b51792007-10-15 16:15:19 -0400556
Josef Bacik0f9dd462008-09-23 13:14:11 -0400557 return cache;
Chris Masonbe744172007-05-06 10:15:01 -0400558}
Chris Mason0b86a832008-03-24 15:01:56 -0400559
Josef Bacik0f9dd462008-09-23 13:14:11 -0400560static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
561 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400562{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400563 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400564 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400565
Yan, Zhengb742bb82010-05-16 10:46:24 -0400566 flags &= BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_SYSTEM |
567 BTRFS_BLOCK_GROUP_METADATA;
568
Chris Mason4184ea72009-03-10 12:39:20 -0400569 rcu_read_lock();
570 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400571 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400572 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400573 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400574 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400575 }
Chris Mason4184ea72009-03-10 12:39:20 -0400576 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400577 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400578}
579
Chris Mason4184ea72009-03-10 12:39:20 -0400580/*
581 * after adding space to the filesystem, we need to clear the full flags
582 * on all the space infos.
583 */
584void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
585{
586 struct list_head *head = &info->space_info;
587 struct btrfs_space_info *found;
588
589 rcu_read_lock();
590 list_for_each_entry_rcu(found, head, list)
591 found->full = 0;
592 rcu_read_unlock();
593}
594
Josef Bacik80eb2342008-10-29 14:49:05 -0400595static u64 div_factor(u64 num, int factor)
596{
597 if (factor == 10)
598 return num;
599 num *= factor;
600 do_div(num, 10);
601 return num;
602}
603
Chris Masone5bc2452010-10-26 13:37:56 -0400604static u64 div_factor_fine(u64 num, int factor)
605{
606 if (factor == 100)
607 return num;
608 num *= factor;
609 do_div(num, 100);
610 return num;
611}
612
Yan Zhengd2fb3432008-12-11 16:30:39 -0500613u64 btrfs_find_block_group(struct btrfs_root *root,
614 u64 search_start, u64 search_hint, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400615{
Chris Mason96b51792007-10-15 16:15:19 -0400616 struct btrfs_block_group_cache *cache;
Chris Masoncd1bc462007-04-27 10:08:34 -0400617 u64 used;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500618 u64 last = max(search_hint, search_start);
619 u64 group_start = 0;
Chris Mason31f3c992007-04-30 15:25:45 -0400620 int full_search = 0;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500621 int factor = 9;
Chris Mason0ef3e662008-05-24 14:04:53 -0400622 int wrapped = 0;
Chris Mason31f3c992007-04-30 15:25:45 -0400623again:
Zheng Yane8569812008-09-26 10:05:48 -0400624 while (1) {
625 cache = btrfs_lookup_first_block_group(root->fs_info, last);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400626 if (!cache)
Chris Masoncd1bc462007-04-27 10:08:34 -0400627 break;
Chris Mason96b51792007-10-15 16:15:19 -0400628
Chris Masonc286ac42008-07-22 23:06:41 -0400629 spin_lock(&cache->lock);
Chris Mason96b51792007-10-15 16:15:19 -0400630 last = cache->key.objectid + cache->key.offset;
631 used = btrfs_block_group_used(&cache->item);
632
Yan Zhengd2fb3432008-12-11 16:30:39 -0500633 if ((full_search || !cache->ro) &&
634 block_group_bits(cache, BTRFS_BLOCK_GROUP_METADATA)) {
Zheng Yane8569812008-09-26 10:05:48 -0400635 if (used + cache->pinned + cache->reserved <
Yan Zhengd2fb3432008-12-11 16:30:39 -0500636 div_factor(cache->key.offset, factor)) {
637 group_start = cache->key.objectid;
Chris Masonc286ac42008-07-22 23:06:41 -0400638 spin_unlock(&cache->lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -0400639 btrfs_put_block_group(cache);
Chris Mason8790d502008-04-03 16:29:03 -0400640 goto found;
641 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400642 }
Chris Masonc286ac42008-07-22 23:06:41 -0400643 spin_unlock(&cache->lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -0400644 btrfs_put_block_group(cache);
Chris Masonde428b62007-05-18 13:28:27 -0400645 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400646 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400647 if (!wrapped) {
648 last = search_start;
649 wrapped = 1;
650 goto again;
651 }
652 if (!full_search && factor < 10) {
Chris Masonbe744172007-05-06 10:15:01 -0400653 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400654 full_search = 1;
Chris Mason0ef3e662008-05-24 14:04:53 -0400655 factor = 10;
Chris Mason31f3c992007-04-30 15:25:45 -0400656 goto again;
657 }
Chris Masonbe744172007-05-06 10:15:01 -0400658found:
Yan Zhengd2fb3432008-12-11 16:30:39 -0500659 return group_start;
Chris Mason925baed2008-06-25 16:01:30 -0400660}
Josef Bacik0f9dd462008-09-23 13:14:11 -0400661
Chris Masone02119d2008-09-05 16:13:11 -0400662/* simple helper to search for an existing extent at a given offset */
Zheng Yan31840ae2008-09-23 13:14:14 -0400663int btrfs_lookup_extent(struct btrfs_root *root, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400664{
665 int ret;
666 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400667 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400668
Zheng Yan31840ae2008-09-23 13:14:14 -0400669 path = btrfs_alloc_path();
670 BUG_ON(!path);
Chris Masone02119d2008-09-05 16:13:11 -0400671 key.objectid = start;
672 key.offset = len;
673 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
674 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
675 0, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400676 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500677 return ret;
678}
679
Chris Masond8d5f3e2007-12-11 12:42:00 -0500680/*
Yan, Zhenga22285a2010-05-16 10:48:46 -0400681 * helper function to lookup reference count and flags of extent.
682 *
683 * the head node for delayed ref is used to store the sum of all the
684 * reference count modifications queued up in the rbtree. the head
685 * node may also store the extent flags to set. This way you can check
686 * to see what the reference count and extent flags would be if all of
687 * the delayed refs are not processed.
688 */
689int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
690 struct btrfs_root *root, u64 bytenr,
691 u64 num_bytes, u64 *refs, u64 *flags)
692{
693 struct btrfs_delayed_ref_head *head;
694 struct btrfs_delayed_ref_root *delayed_refs;
695 struct btrfs_path *path;
696 struct btrfs_extent_item *ei;
697 struct extent_buffer *leaf;
698 struct btrfs_key key;
699 u32 item_size;
700 u64 num_refs;
701 u64 extent_flags;
702 int ret;
703
704 path = btrfs_alloc_path();
705 if (!path)
706 return -ENOMEM;
707
708 key.objectid = bytenr;
709 key.type = BTRFS_EXTENT_ITEM_KEY;
710 key.offset = num_bytes;
711 if (!trans) {
712 path->skip_locking = 1;
713 path->search_commit_root = 1;
714 }
715again:
716 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
717 &key, path, 0, 0);
718 if (ret < 0)
719 goto out_free;
720
721 if (ret == 0) {
722 leaf = path->nodes[0];
723 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
724 if (item_size >= sizeof(*ei)) {
725 ei = btrfs_item_ptr(leaf, path->slots[0],
726 struct btrfs_extent_item);
727 num_refs = btrfs_extent_refs(leaf, ei);
728 extent_flags = btrfs_extent_flags(leaf, ei);
729 } else {
730#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
731 struct btrfs_extent_item_v0 *ei0;
732 BUG_ON(item_size != sizeof(*ei0));
733 ei0 = btrfs_item_ptr(leaf, path->slots[0],
734 struct btrfs_extent_item_v0);
735 num_refs = btrfs_extent_refs_v0(leaf, ei0);
736 /* FIXME: this isn't correct for data */
737 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
738#else
739 BUG();
740#endif
741 }
742 BUG_ON(num_refs == 0);
743 } else {
744 num_refs = 0;
745 extent_flags = 0;
746 ret = 0;
747 }
748
749 if (!trans)
750 goto out;
751
752 delayed_refs = &trans->transaction->delayed_refs;
753 spin_lock(&delayed_refs->lock);
754 head = btrfs_find_delayed_ref_head(trans, bytenr);
755 if (head) {
756 if (!mutex_trylock(&head->mutex)) {
757 atomic_inc(&head->node.refs);
758 spin_unlock(&delayed_refs->lock);
759
David Sterbab3b4aa72011-04-21 01:20:15 +0200760 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400761
David Sterba8cc33e52011-05-02 15:29:25 +0200762 /*
763 * Mutex was contended, block until it's released and try
764 * again
765 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400766 mutex_lock(&head->mutex);
767 mutex_unlock(&head->mutex);
768 btrfs_put_delayed_ref(&head->node);
769 goto again;
770 }
771 if (head->extent_op && head->extent_op->update_flags)
772 extent_flags |= head->extent_op->flags_to_set;
773 else
774 BUG_ON(num_refs == 0);
775
776 num_refs += head->node.ref_mod;
777 mutex_unlock(&head->mutex);
778 }
779 spin_unlock(&delayed_refs->lock);
780out:
781 WARN_ON(num_refs == 0);
782 if (refs)
783 *refs = num_refs;
784 if (flags)
785 *flags = extent_flags;
786out_free:
787 btrfs_free_path(path);
788 return ret;
789}
790
791/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500792 * Back reference rules. Back refs have three main goals:
793 *
794 * 1) differentiate between all holders of references to an extent so that
795 * when a reference is dropped we can make sure it was a valid reference
796 * before freeing the extent.
797 *
798 * 2) Provide enough information to quickly find the holders of an extent
799 * if we notice a given block is corrupted or bad.
800 *
801 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
802 * maintenance. This is actually the same as #2, but with a slightly
803 * different use case.
804 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400805 * There are two kinds of back refs. The implicit back refs is optimized
806 * for pointers in non-shared tree blocks. For a given pointer in a block,
807 * back refs of this kind provide information about the block's owner tree
808 * and the pointer's key. These information allow us to find the block by
809 * b-tree searching. The full back refs is for pointers in tree blocks not
810 * referenced by their owner trees. The location of tree block is recorded
811 * in the back refs. Actually the full back refs is generic, and can be
812 * used in all cases the implicit back refs is used. The major shortcoming
813 * of the full back refs is its overhead. Every time a tree block gets
814 * COWed, we have to update back refs entry for all pointers in it.
815 *
816 * For a newly allocated tree block, we use implicit back refs for
817 * pointers in it. This means most tree related operations only involve
818 * implicit back refs. For a tree block created in old transaction, the
819 * only way to drop a reference to it is COW it. So we can detect the
820 * event that tree block loses its owner tree's reference and do the
821 * back refs conversion.
822 *
823 * When a tree block is COW'd through a tree, there are four cases:
824 *
825 * The reference count of the block is one and the tree is the block's
826 * owner tree. Nothing to do in this case.
827 *
828 * The reference count of the block is one and the tree is not the
829 * block's owner tree. In this case, full back refs is used for pointers
830 * in the block. Remove these full back refs, add implicit back refs for
831 * every pointers in the new block.
832 *
833 * The reference count of the block is greater than one and the tree is
834 * the block's owner tree. In this case, implicit back refs is used for
835 * pointers in the block. Add full back refs for every pointers in the
836 * block, increase lower level extents' reference counts. The original
837 * implicit back refs are entailed to the new block.
838 *
839 * The reference count of the block is greater than one and the tree is
840 * not the block's owner tree. Add implicit back refs for every pointer in
841 * the new block, increase lower level extents' reference count.
842 *
843 * Back Reference Key composing:
844 *
845 * The key objectid corresponds to the first byte in the extent,
846 * The key type is used to differentiate between types of back refs.
847 * There are different meanings of the key offset for different types
848 * of back refs.
849 *
Chris Masond8d5f3e2007-12-11 12:42:00 -0500850 * File extents can be referenced by:
851 *
852 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -0400853 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -0500854 * - different offsets inside a file (bookend extents in file.c)
855 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400856 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500857 *
858 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -0500859 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400860 * - original offset in the file
861 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -0400862 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400863 * The key offset for the implicit back refs is hash of the first
864 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500865 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400866 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500867 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400868 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500869 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400870 * The key offset for the implicit back refs is the first byte of
871 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500872 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400873 * When a file extent is allocated, The implicit back refs is used.
874 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500875 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400876 * (root_key.objectid, inode objectid, offset in file, 1)
877 *
878 * When a file extent is removed file truncation, we find the
879 * corresponding implicit back refs and check the following fields:
880 *
881 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500882 *
883 * Btree extents can be referenced by:
884 *
885 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -0500886 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400887 * Both the implicit back refs and the full back refs for tree blocks
888 * only consist of key. The key offset for the implicit back refs is
889 * objectid of block's owner tree. The key offset for the full back refs
890 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500891 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400892 * When implicit back refs is used, information about the lowest key and
893 * level of the tree block are required. These information are stored in
894 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500895 */
Zheng Yan31840ae2008-09-23 13:14:14 -0400896
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400897#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
898static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
899 struct btrfs_root *root,
900 struct btrfs_path *path,
901 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -0500902{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400903 struct btrfs_extent_item *item;
904 struct btrfs_extent_item_v0 *ei0;
905 struct btrfs_extent_ref_v0 *ref0;
906 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -0400907 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400908 struct btrfs_key key;
909 struct btrfs_key found_key;
910 u32 new_size = sizeof(*item);
911 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -0500912 int ret;
913
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400914 leaf = path->nodes[0];
915 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -0500916
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400917 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
918 ei0 = btrfs_item_ptr(leaf, path->slots[0],
919 struct btrfs_extent_item_v0);
920 refs = btrfs_extent_refs_v0(leaf, ei0);
921
922 if (owner == (u64)-1) {
923 while (1) {
924 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
925 ret = btrfs_next_leaf(root, path);
926 if (ret < 0)
927 return ret;
928 BUG_ON(ret > 0);
929 leaf = path->nodes[0];
930 }
931 btrfs_item_key_to_cpu(leaf, &found_key,
932 path->slots[0]);
933 BUG_ON(key.objectid != found_key.objectid);
934 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
935 path->slots[0]++;
936 continue;
937 }
938 ref0 = btrfs_item_ptr(leaf, path->slots[0],
939 struct btrfs_extent_ref_v0);
940 owner = btrfs_ref_objectid_v0(leaf, ref0);
941 break;
942 }
943 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200944 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400945
946 if (owner < BTRFS_FIRST_FREE_OBJECTID)
947 new_size += sizeof(*bi);
948
949 new_size -= sizeof(*ei0);
950 ret = btrfs_search_slot(trans, root, &key, path,
951 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -0400952 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400953 return ret;
954 BUG_ON(ret);
955
956 ret = btrfs_extend_item(trans, root, path, new_size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400957
958 leaf = path->nodes[0];
959 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
960 btrfs_set_extent_refs(leaf, item, refs);
961 /* FIXME: get real generation */
962 btrfs_set_extent_generation(leaf, item, 0);
963 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
964 btrfs_set_extent_flags(leaf, item,
965 BTRFS_EXTENT_FLAG_TREE_BLOCK |
966 BTRFS_BLOCK_FLAG_FULL_BACKREF);
967 bi = (struct btrfs_tree_block_info *)(item + 1);
968 /* FIXME: get first key of the block */
969 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
970 btrfs_set_tree_block_level(leaf, bi, (int)owner);
971 } else {
972 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
973 }
974 btrfs_mark_buffer_dirty(leaf);
975 return 0;
976}
977#endif
978
979static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
980{
981 u32 high_crc = ~(u32)0;
982 u32 low_crc = ~(u32)0;
983 __le64 lenum;
984
985 lenum = cpu_to_le64(root_objectid);
David Woodhouse163e7832009-04-19 13:02:41 +0100986 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400987 lenum = cpu_to_le64(owner);
David Woodhouse163e7832009-04-19 13:02:41 +0100988 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400989 lenum = cpu_to_le64(offset);
David Woodhouse163e7832009-04-19 13:02:41 +0100990 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400991
992 return ((u64)high_crc << 31) ^ (u64)low_crc;
993}
994
995static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
996 struct btrfs_extent_data_ref *ref)
997{
998 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
999 btrfs_extent_data_ref_objectid(leaf, ref),
1000 btrfs_extent_data_ref_offset(leaf, ref));
1001}
1002
1003static int match_extent_data_ref(struct extent_buffer *leaf,
1004 struct btrfs_extent_data_ref *ref,
1005 u64 root_objectid, u64 owner, u64 offset)
1006{
1007 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1008 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1009 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1010 return 0;
1011 return 1;
1012}
1013
1014static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
1015 struct btrfs_root *root,
1016 struct btrfs_path *path,
1017 u64 bytenr, u64 parent,
1018 u64 root_objectid,
1019 u64 owner, u64 offset)
1020{
1021 struct btrfs_key key;
1022 struct btrfs_extent_data_ref *ref;
1023 struct extent_buffer *leaf;
1024 u32 nritems;
1025 int ret;
1026 int recow;
1027 int err = -ENOENT;
1028
1029 key.objectid = bytenr;
1030 if (parent) {
1031 key.type = BTRFS_SHARED_DATA_REF_KEY;
1032 key.offset = parent;
1033 } else {
1034 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1035 key.offset = hash_extent_data_ref(root_objectid,
1036 owner, offset);
1037 }
1038again:
1039 recow = 0;
1040 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1041 if (ret < 0) {
1042 err = ret;
1043 goto fail;
1044 }
1045
1046 if (parent) {
1047 if (!ret)
1048 return 0;
1049#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1050 key.type = BTRFS_EXTENT_REF_V0_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02001051 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001052 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1053 if (ret < 0) {
1054 err = ret;
1055 goto fail;
1056 }
1057 if (!ret)
1058 return 0;
1059#endif
1060 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001061 }
1062
1063 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001064 nritems = btrfs_header_nritems(leaf);
1065 while (1) {
1066 if (path->slots[0] >= nritems) {
1067 ret = btrfs_next_leaf(root, path);
1068 if (ret < 0)
1069 err = ret;
1070 if (ret)
1071 goto fail;
1072
1073 leaf = path->nodes[0];
1074 nritems = btrfs_header_nritems(leaf);
1075 recow = 1;
1076 }
1077
1078 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1079 if (key.objectid != bytenr ||
1080 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1081 goto fail;
1082
1083 ref = btrfs_item_ptr(leaf, path->slots[0],
1084 struct btrfs_extent_data_ref);
1085
1086 if (match_extent_data_ref(leaf, ref, root_objectid,
1087 owner, offset)) {
1088 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001089 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001090 goto again;
1091 }
1092 err = 0;
1093 break;
1094 }
1095 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001096 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001097fail:
1098 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001099}
1100
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001101static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1102 struct btrfs_root *root,
1103 struct btrfs_path *path,
1104 u64 bytenr, u64 parent,
1105 u64 root_objectid, u64 owner,
1106 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001107{
1108 struct btrfs_key key;
1109 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001110 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001111 u32 num_refs;
1112 int ret;
1113
1114 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001115 if (parent) {
1116 key.type = BTRFS_SHARED_DATA_REF_KEY;
1117 key.offset = parent;
1118 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001119 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001120 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1121 key.offset = hash_extent_data_ref(root_objectid,
1122 owner, offset);
1123 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001124 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001125
1126 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1127 if (ret && ret != -EEXIST)
1128 goto fail;
1129
1130 leaf = path->nodes[0];
1131 if (parent) {
1132 struct btrfs_shared_data_ref *ref;
1133 ref = btrfs_item_ptr(leaf, path->slots[0],
1134 struct btrfs_shared_data_ref);
1135 if (ret == 0) {
1136 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1137 } else {
1138 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1139 num_refs += refs_to_add;
1140 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1141 }
1142 } else {
1143 struct btrfs_extent_data_ref *ref;
1144 while (ret == -EEXIST) {
1145 ref = btrfs_item_ptr(leaf, path->slots[0],
1146 struct btrfs_extent_data_ref);
1147 if (match_extent_data_ref(leaf, ref, root_objectid,
1148 owner, offset))
1149 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001150 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001151 key.offset++;
1152 ret = btrfs_insert_empty_item(trans, root, path, &key,
1153 size);
1154 if (ret && ret != -EEXIST)
1155 goto fail;
1156
1157 leaf = path->nodes[0];
1158 }
1159 ref = btrfs_item_ptr(leaf, path->slots[0],
1160 struct btrfs_extent_data_ref);
1161 if (ret == 0) {
1162 btrfs_set_extent_data_ref_root(leaf, ref,
1163 root_objectid);
1164 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1165 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1166 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1167 } else {
1168 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1169 num_refs += refs_to_add;
1170 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1171 }
1172 }
1173 btrfs_mark_buffer_dirty(leaf);
1174 ret = 0;
1175fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001176 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001177 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001178}
1179
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001180static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1181 struct btrfs_root *root,
1182 struct btrfs_path *path,
1183 int refs_to_drop)
Zheng Yan31840ae2008-09-23 13:14:14 -04001184{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001185 struct btrfs_key key;
1186 struct btrfs_extent_data_ref *ref1 = NULL;
1187 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001188 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001189 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001190 int ret = 0;
1191
1192 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001193 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1194
1195 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1196 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1197 struct btrfs_extent_data_ref);
1198 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1199 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1200 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1201 struct btrfs_shared_data_ref);
1202 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1203#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1204 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1205 struct btrfs_extent_ref_v0 *ref0;
1206 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1207 struct btrfs_extent_ref_v0);
1208 num_refs = btrfs_ref_count_v0(leaf, ref0);
1209#endif
1210 } else {
1211 BUG();
1212 }
1213
Chris Mason56bec292009-03-13 10:10:06 -04001214 BUG_ON(num_refs < refs_to_drop);
1215 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001216
Zheng Yan31840ae2008-09-23 13:14:14 -04001217 if (num_refs == 0) {
1218 ret = btrfs_del_item(trans, root, path);
1219 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001220 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1221 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1222 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1223 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1224#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1225 else {
1226 struct btrfs_extent_ref_v0 *ref0;
1227 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1228 struct btrfs_extent_ref_v0);
1229 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1230 }
1231#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001232 btrfs_mark_buffer_dirty(leaf);
1233 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001234 return ret;
1235}
1236
1237static noinline u32 extent_data_ref_count(struct btrfs_root *root,
1238 struct btrfs_path *path,
1239 struct btrfs_extent_inline_ref *iref)
1240{
1241 struct btrfs_key key;
1242 struct extent_buffer *leaf;
1243 struct btrfs_extent_data_ref *ref1;
1244 struct btrfs_shared_data_ref *ref2;
1245 u32 num_refs = 0;
1246
1247 leaf = path->nodes[0];
1248 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1249 if (iref) {
1250 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1251 BTRFS_EXTENT_DATA_REF_KEY) {
1252 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1253 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1254 } else {
1255 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1256 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1257 }
1258 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1259 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1260 struct btrfs_extent_data_ref);
1261 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1262 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1263 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1264 struct btrfs_shared_data_ref);
1265 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1266#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1267 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1268 struct btrfs_extent_ref_v0 *ref0;
1269 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1270 struct btrfs_extent_ref_v0);
1271 num_refs = btrfs_ref_count_v0(leaf, ref0);
1272#endif
1273 } else {
1274 WARN_ON(1);
1275 }
1276 return num_refs;
1277}
1278
1279static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1280 struct btrfs_root *root,
1281 struct btrfs_path *path,
1282 u64 bytenr, u64 parent,
1283 u64 root_objectid)
1284{
1285 struct btrfs_key key;
1286 int ret;
1287
1288 key.objectid = bytenr;
1289 if (parent) {
1290 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1291 key.offset = parent;
1292 } else {
1293 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1294 key.offset = root_objectid;
1295 }
1296
1297 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1298 if (ret > 0)
1299 ret = -ENOENT;
1300#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1301 if (ret == -ENOENT && parent) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001302 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001303 key.type = BTRFS_EXTENT_REF_V0_KEY;
1304 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1305 if (ret > 0)
1306 ret = -ENOENT;
1307 }
1308#endif
1309 return ret;
1310}
1311
1312static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1313 struct btrfs_root *root,
1314 struct btrfs_path *path,
1315 u64 bytenr, u64 parent,
1316 u64 root_objectid)
1317{
1318 struct btrfs_key key;
1319 int ret;
1320
1321 key.objectid = bytenr;
1322 if (parent) {
1323 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1324 key.offset = parent;
1325 } else {
1326 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1327 key.offset = root_objectid;
1328 }
1329
1330 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001331 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001332 return ret;
1333}
1334
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001335static inline int extent_ref_type(u64 parent, u64 owner)
1336{
1337 int type;
1338 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1339 if (parent > 0)
1340 type = BTRFS_SHARED_BLOCK_REF_KEY;
1341 else
1342 type = BTRFS_TREE_BLOCK_REF_KEY;
1343 } else {
1344 if (parent > 0)
1345 type = BTRFS_SHARED_DATA_REF_KEY;
1346 else
1347 type = BTRFS_EXTENT_DATA_REF_KEY;
1348 }
1349 return type;
1350}
1351
Yan Zheng2c47e6052009-06-27 21:07:35 -04001352static int find_next_key(struct btrfs_path *path, int level,
1353 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001354
1355{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001356 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001357 if (!path->nodes[level])
1358 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001359 if (path->slots[level] + 1 >=
1360 btrfs_header_nritems(path->nodes[level]))
1361 continue;
1362 if (level == 0)
1363 btrfs_item_key_to_cpu(path->nodes[level], key,
1364 path->slots[level] + 1);
1365 else
1366 btrfs_node_key_to_cpu(path->nodes[level], key,
1367 path->slots[level] + 1);
1368 return 0;
1369 }
1370 return 1;
1371}
1372
1373/*
1374 * look for inline back ref. if back ref is found, *ref_ret is set
1375 * to the address of inline back ref, and 0 is returned.
1376 *
1377 * if back ref isn't found, *ref_ret is set to the address where it
1378 * should be inserted, and -ENOENT is returned.
1379 *
1380 * if insert is true and there are too many inline back refs, the path
1381 * points to the extent item, and -EAGAIN is returned.
1382 *
1383 * NOTE: inline back refs are ordered in the same way that back ref
1384 * items in the tree are ordered.
1385 */
1386static noinline_for_stack
1387int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1388 struct btrfs_root *root,
1389 struct btrfs_path *path,
1390 struct btrfs_extent_inline_ref **ref_ret,
1391 u64 bytenr, u64 num_bytes,
1392 u64 parent, u64 root_objectid,
1393 u64 owner, u64 offset, int insert)
1394{
1395 struct btrfs_key key;
1396 struct extent_buffer *leaf;
1397 struct btrfs_extent_item *ei;
1398 struct btrfs_extent_inline_ref *iref;
1399 u64 flags;
1400 u64 item_size;
1401 unsigned long ptr;
1402 unsigned long end;
1403 int extra_size;
1404 int type;
1405 int want;
1406 int ret;
1407 int err = 0;
1408
1409 key.objectid = bytenr;
1410 key.type = BTRFS_EXTENT_ITEM_KEY;
1411 key.offset = num_bytes;
1412
1413 want = extent_ref_type(parent, owner);
1414 if (insert) {
1415 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001416 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001417 } else
1418 extra_size = -1;
1419 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1420 if (ret < 0) {
1421 err = ret;
1422 goto out;
1423 }
1424 BUG_ON(ret);
1425
1426 leaf = path->nodes[0];
1427 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1428#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1429 if (item_size < sizeof(*ei)) {
1430 if (!insert) {
1431 err = -ENOENT;
1432 goto out;
1433 }
1434 ret = convert_extent_item_v0(trans, root, path, owner,
1435 extra_size);
1436 if (ret < 0) {
1437 err = ret;
1438 goto out;
1439 }
1440 leaf = path->nodes[0];
1441 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1442 }
1443#endif
1444 BUG_ON(item_size < sizeof(*ei));
1445
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001446 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1447 flags = btrfs_extent_flags(leaf, ei);
1448
1449 ptr = (unsigned long)(ei + 1);
1450 end = (unsigned long)ei + item_size;
1451
1452 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
1453 ptr += sizeof(struct btrfs_tree_block_info);
1454 BUG_ON(ptr > end);
1455 } else {
1456 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_DATA));
1457 }
1458
1459 err = -ENOENT;
1460 while (1) {
1461 if (ptr >= end) {
1462 WARN_ON(ptr > end);
1463 break;
1464 }
1465 iref = (struct btrfs_extent_inline_ref *)ptr;
1466 type = btrfs_extent_inline_ref_type(leaf, iref);
1467 if (want < type)
1468 break;
1469 if (want > type) {
1470 ptr += btrfs_extent_inline_ref_size(type);
1471 continue;
1472 }
1473
1474 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1475 struct btrfs_extent_data_ref *dref;
1476 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1477 if (match_extent_data_ref(leaf, dref, root_objectid,
1478 owner, offset)) {
1479 err = 0;
1480 break;
1481 }
1482 if (hash_extent_data_ref_item(leaf, dref) <
1483 hash_extent_data_ref(root_objectid, owner, offset))
1484 break;
1485 } else {
1486 u64 ref_offset;
1487 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1488 if (parent > 0) {
1489 if (parent == ref_offset) {
1490 err = 0;
1491 break;
1492 }
1493 if (ref_offset < parent)
1494 break;
1495 } else {
1496 if (root_objectid == ref_offset) {
1497 err = 0;
1498 break;
1499 }
1500 if (ref_offset < root_objectid)
1501 break;
1502 }
1503 }
1504 ptr += btrfs_extent_inline_ref_size(type);
1505 }
1506 if (err == -ENOENT && insert) {
1507 if (item_size + extra_size >=
1508 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1509 err = -EAGAIN;
1510 goto out;
1511 }
1512 /*
1513 * To add new inline back ref, we have to make sure
1514 * there is no corresponding back ref item.
1515 * For simplicity, we just do not add new inline back
1516 * ref if there is any kind of item for this block
1517 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001518 if (find_next_key(path, 0, &key) == 0 &&
1519 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001520 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001521 err = -EAGAIN;
1522 goto out;
1523 }
1524 }
1525 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1526out:
Yan Zheng85d41982009-06-11 08:51:10 -04001527 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001528 path->keep_locks = 0;
1529 btrfs_unlock_up_safe(path, 1);
1530 }
1531 return err;
1532}
1533
1534/*
1535 * helper to add new inline back ref
1536 */
1537static noinline_for_stack
1538int setup_inline_extent_backref(struct btrfs_trans_handle *trans,
1539 struct btrfs_root *root,
1540 struct btrfs_path *path,
1541 struct btrfs_extent_inline_ref *iref,
1542 u64 parent, u64 root_objectid,
1543 u64 owner, u64 offset, int refs_to_add,
1544 struct btrfs_delayed_extent_op *extent_op)
1545{
1546 struct extent_buffer *leaf;
1547 struct btrfs_extent_item *ei;
1548 unsigned long ptr;
1549 unsigned long end;
1550 unsigned long item_offset;
1551 u64 refs;
1552 int size;
1553 int type;
1554 int ret;
1555
1556 leaf = path->nodes[0];
1557 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1558 item_offset = (unsigned long)iref - (unsigned long)ei;
1559
1560 type = extent_ref_type(parent, owner);
1561 size = btrfs_extent_inline_ref_size(type);
1562
1563 ret = btrfs_extend_item(trans, root, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001564
1565 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1566 refs = btrfs_extent_refs(leaf, ei);
1567 refs += refs_to_add;
1568 btrfs_set_extent_refs(leaf, ei, refs);
1569 if (extent_op)
1570 __run_delayed_extent_op(extent_op, leaf, ei);
1571
1572 ptr = (unsigned long)ei + item_offset;
1573 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1574 if (ptr < end - size)
1575 memmove_extent_buffer(leaf, ptr + size, ptr,
1576 end - size - ptr);
1577
1578 iref = (struct btrfs_extent_inline_ref *)ptr;
1579 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1580 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1581 struct btrfs_extent_data_ref *dref;
1582 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1583 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1584 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1585 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1586 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1587 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1588 struct btrfs_shared_data_ref *sref;
1589 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1590 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1591 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1592 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1593 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1594 } else {
1595 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1596 }
1597 btrfs_mark_buffer_dirty(leaf);
1598 return 0;
1599}
1600
1601static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1602 struct btrfs_root *root,
1603 struct btrfs_path *path,
1604 struct btrfs_extent_inline_ref **ref_ret,
1605 u64 bytenr, u64 num_bytes, u64 parent,
1606 u64 root_objectid, u64 owner, u64 offset)
1607{
1608 int ret;
1609
1610 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1611 bytenr, num_bytes, parent,
1612 root_objectid, owner, offset, 0);
1613 if (ret != -ENOENT)
1614 return ret;
1615
David Sterbab3b4aa72011-04-21 01:20:15 +02001616 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001617 *ref_ret = NULL;
1618
1619 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1620 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1621 root_objectid);
1622 } else {
1623 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1624 root_objectid, owner, offset);
1625 }
1626 return ret;
1627}
1628
1629/*
1630 * helper to update/remove inline back ref
1631 */
1632static noinline_for_stack
1633int update_inline_extent_backref(struct btrfs_trans_handle *trans,
1634 struct btrfs_root *root,
1635 struct btrfs_path *path,
1636 struct btrfs_extent_inline_ref *iref,
1637 int refs_to_mod,
1638 struct btrfs_delayed_extent_op *extent_op)
1639{
1640 struct extent_buffer *leaf;
1641 struct btrfs_extent_item *ei;
1642 struct btrfs_extent_data_ref *dref = NULL;
1643 struct btrfs_shared_data_ref *sref = NULL;
1644 unsigned long ptr;
1645 unsigned long end;
1646 u32 item_size;
1647 int size;
1648 int type;
1649 int ret;
1650 u64 refs;
1651
1652 leaf = path->nodes[0];
1653 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1654 refs = btrfs_extent_refs(leaf, ei);
1655 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1656 refs += refs_to_mod;
1657 btrfs_set_extent_refs(leaf, ei, refs);
1658 if (extent_op)
1659 __run_delayed_extent_op(extent_op, leaf, ei);
1660
1661 type = btrfs_extent_inline_ref_type(leaf, iref);
1662
1663 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1664 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1665 refs = btrfs_extent_data_ref_count(leaf, dref);
1666 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1667 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1668 refs = btrfs_shared_data_ref_count(leaf, sref);
1669 } else {
1670 refs = 1;
1671 BUG_ON(refs_to_mod != -1);
1672 }
1673
1674 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1675 refs += refs_to_mod;
1676
1677 if (refs > 0) {
1678 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1679 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1680 else
1681 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1682 } else {
1683 size = btrfs_extent_inline_ref_size(type);
1684 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1685 ptr = (unsigned long)iref;
1686 end = (unsigned long)ei + item_size;
1687 if (ptr + size < end)
1688 memmove_extent_buffer(leaf, ptr, ptr + size,
1689 end - ptr - size);
1690 item_size -= size;
1691 ret = btrfs_truncate_item(trans, root, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001692 }
1693 btrfs_mark_buffer_dirty(leaf);
1694 return 0;
1695}
1696
1697static noinline_for_stack
1698int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1699 struct btrfs_root *root,
1700 struct btrfs_path *path,
1701 u64 bytenr, u64 num_bytes, u64 parent,
1702 u64 root_objectid, u64 owner,
1703 u64 offset, int refs_to_add,
1704 struct btrfs_delayed_extent_op *extent_op)
1705{
1706 struct btrfs_extent_inline_ref *iref;
1707 int ret;
1708
1709 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1710 bytenr, num_bytes, parent,
1711 root_objectid, owner, offset, 1);
1712 if (ret == 0) {
1713 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
1714 ret = update_inline_extent_backref(trans, root, path, iref,
1715 refs_to_add, extent_op);
1716 } else if (ret == -ENOENT) {
1717 ret = setup_inline_extent_backref(trans, root, path, iref,
1718 parent, root_objectid,
1719 owner, offset, refs_to_add,
1720 extent_op);
1721 }
1722 return ret;
1723}
1724
1725static int insert_extent_backref(struct btrfs_trans_handle *trans,
1726 struct btrfs_root *root,
1727 struct btrfs_path *path,
1728 u64 bytenr, u64 parent, u64 root_objectid,
1729 u64 owner, u64 offset, int refs_to_add)
1730{
1731 int ret;
1732 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1733 BUG_ON(refs_to_add != 1);
1734 ret = insert_tree_block_ref(trans, root, path, bytenr,
1735 parent, root_objectid);
1736 } else {
1737 ret = insert_extent_data_ref(trans, root, path, bytenr,
1738 parent, root_objectid,
1739 owner, offset, refs_to_add);
1740 }
1741 return ret;
1742}
1743
1744static int remove_extent_backref(struct btrfs_trans_handle *trans,
1745 struct btrfs_root *root,
1746 struct btrfs_path *path,
1747 struct btrfs_extent_inline_ref *iref,
1748 int refs_to_drop, int is_data)
1749{
1750 int ret;
1751
1752 BUG_ON(!is_data && refs_to_drop != 1);
1753 if (iref) {
1754 ret = update_inline_extent_backref(trans, root, path, iref,
1755 -refs_to_drop, NULL);
1756 } else if (is_data) {
1757 ret = remove_extent_data_ref(trans, root, path, refs_to_drop);
1758 } else {
1759 ret = btrfs_del_item(trans, root, path);
1760 }
1761 return ret;
1762}
1763
Li Dongyang5378e602011-03-24 10:24:27 +00001764static int btrfs_issue_discard(struct block_device *bdev,
Chris Mason15916de2008-11-19 21:17:22 -05001765 u64 start, u64 len)
1766{
Li Dongyang5378e602011-03-24 10:24:27 +00001767 return blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_NOFS, 0);
Chris Mason15916de2008-11-19 21:17:22 -05001768}
Chris Mason15916de2008-11-19 21:17:22 -05001769
Liu Hui1f3c79a2009-01-05 15:57:51 -05001770static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00001771 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05001772{
Liu Hui1f3c79a2009-01-05 15:57:51 -05001773 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00001774 u64 discarded_bytes = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001775 struct btrfs_multi_bio *multi = NULL;
1776
Christoph Hellwige244a0a2009-10-14 09:24:59 -04001777
Liu Hui1f3c79a2009-01-05 15:57:51 -05001778 /* Tell the block device(s) that the sectors can be discarded */
Li Dongyang5378e602011-03-24 10:24:27 +00001779 ret = btrfs_map_block(&root->fs_info->mapping_tree, REQ_DISCARD,
1780 bytenr, &num_bytes, &multi, 0);
Liu Hui1f3c79a2009-01-05 15:57:51 -05001781 if (!ret) {
1782 struct btrfs_bio_stripe *stripe = multi->stripes;
1783 int i;
1784
Liu Hui1f3c79a2009-01-05 15:57:51 -05001785
1786 for (i = 0; i < multi->num_stripes; i++, stripe++) {
Li Dongyang5378e602011-03-24 10:24:27 +00001787 ret = btrfs_issue_discard(stripe->dev->bdev,
1788 stripe->physical,
1789 stripe->length);
1790 if (!ret)
1791 discarded_bytes += stripe->length;
1792 else if (ret != -EOPNOTSUPP)
1793 break;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001794 }
1795 kfree(multi);
1796 }
Li Dongyang5378e602011-03-24 10:24:27 +00001797 if (discarded_bytes && ret == -EOPNOTSUPP)
1798 ret = 0;
1799
1800 if (actual_bytes)
1801 *actual_bytes = discarded_bytes;
1802
Liu Hui1f3c79a2009-01-05 15:57:51 -05001803
1804 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001805}
1806
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001807int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1808 struct btrfs_root *root,
1809 u64 bytenr, u64 num_bytes, u64 parent,
1810 u64 root_objectid, u64 owner, u64 offset)
Zheng Yan31840ae2008-09-23 13:14:14 -04001811{
1812 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001813 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
1814 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04001815
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001816 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1817 ret = btrfs_add_delayed_tree_ref(trans, bytenr, num_bytes,
1818 parent, root_objectid, (int)owner,
1819 BTRFS_ADD_DELAYED_REF, NULL);
1820 } else {
1821 ret = btrfs_add_delayed_data_ref(trans, bytenr, num_bytes,
1822 parent, root_objectid, owner, offset,
1823 BTRFS_ADD_DELAYED_REF, NULL);
1824 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001825 return ret;
1826}
1827
Chris Mason925baed2008-06-25 16:01:30 -04001828static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001829 struct btrfs_root *root,
1830 u64 bytenr, u64 num_bytes,
1831 u64 parent, u64 root_objectid,
1832 u64 owner, u64 offset, int refs_to_add,
1833 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04001834{
Chris Mason5caf2a02007-04-02 11:20:42 -04001835 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001836 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04001837 struct btrfs_extent_item *item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001838 u64 refs;
1839 int ret;
1840 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001841
Chris Mason5caf2a02007-04-02 11:20:42 -04001842 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001843 if (!path)
1844 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04001845
Chris Mason3c12ac72008-04-21 12:01:38 -04001846 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001847 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001848 /* this will setup the path even if it fails to insert the back ref */
1849 ret = insert_inline_extent_backref(trans, root->fs_info->extent_root,
1850 path, bytenr, num_bytes, parent,
1851 root_objectid, owner, offset,
1852 refs_to_add, extent_op);
1853 if (ret == 0)
1854 goto out;
Zheng Yan31840ae2008-09-23 13:14:14 -04001855
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001856 if (ret != -EAGAIN) {
1857 err = ret;
1858 goto out;
Chris Masonb9473432009-03-13 11:00:37 -04001859 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001860
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001861 leaf = path->nodes[0];
1862 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1863 refs = btrfs_extent_refs(leaf, item);
1864 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
1865 if (extent_op)
1866 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04001867
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001868 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02001869 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001870
Chris Mason3c12ac72008-04-21 12:01:38 -04001871 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001872 path->leave_spinning = 1;
1873
Chris Mason56bec292009-03-13 10:10:06 -04001874 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04001875 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001876 path, bytenr, parent, root_objectid,
1877 owner, offset, refs_to_add);
Chris Mason7bb86312007-12-11 09:25:06 -05001878 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001879out:
Chris Mason74493f72007-12-11 09:25:06 -05001880 btrfs_free_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001881 return err;
Chris Mason02217ed2007-03-02 16:08:05 -05001882}
1883
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001884static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
1885 struct btrfs_root *root,
1886 struct btrfs_delayed_ref_node *node,
1887 struct btrfs_delayed_extent_op *extent_op,
1888 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04001889{
Chris Mason56bec292009-03-13 10:10:06 -04001890 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001891 struct btrfs_delayed_data_ref *ref;
1892 struct btrfs_key ins;
1893 u64 parent = 0;
1894 u64 ref_root = 0;
1895 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04001896
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001897 ins.objectid = node->bytenr;
1898 ins.offset = node->num_bytes;
1899 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04001900
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001901 ref = btrfs_delayed_node_to_data_ref(node);
1902 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
1903 parent = ref->parent;
1904 else
1905 ref_root = ref->root;
1906
1907 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
1908 if (extent_op) {
1909 BUG_ON(extent_op->update_key);
1910 flags |= extent_op->flags_to_set;
1911 }
1912 ret = alloc_reserved_file_extent(trans, root,
1913 parent, ref_root, flags,
1914 ref->objectid, ref->offset,
1915 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001916 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
1917 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
1918 node->num_bytes, parent,
1919 ref_root, ref->objectid,
1920 ref->offset, node->ref_mod,
1921 extent_op);
1922 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
1923 ret = __btrfs_free_extent(trans, root, node->bytenr,
1924 node->num_bytes, parent,
1925 ref_root, ref->objectid,
1926 ref->offset, node->ref_mod,
1927 extent_op);
1928 } else {
1929 BUG();
1930 }
Chris Mason56bec292009-03-13 10:10:06 -04001931 return ret;
1932}
1933
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001934static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
1935 struct extent_buffer *leaf,
1936 struct btrfs_extent_item *ei)
1937{
1938 u64 flags = btrfs_extent_flags(leaf, ei);
1939 if (extent_op->update_flags) {
1940 flags |= extent_op->flags_to_set;
1941 btrfs_set_extent_flags(leaf, ei, flags);
1942 }
1943
1944 if (extent_op->update_key) {
1945 struct btrfs_tree_block_info *bi;
1946 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
1947 bi = (struct btrfs_tree_block_info *)(ei + 1);
1948 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
1949 }
1950}
1951
1952static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
1953 struct btrfs_root *root,
1954 struct btrfs_delayed_ref_node *node,
1955 struct btrfs_delayed_extent_op *extent_op)
1956{
1957 struct btrfs_key key;
1958 struct btrfs_path *path;
1959 struct btrfs_extent_item *ei;
1960 struct extent_buffer *leaf;
1961 u32 item_size;
1962 int ret;
1963 int err = 0;
1964
1965 path = btrfs_alloc_path();
1966 if (!path)
1967 return -ENOMEM;
1968
1969 key.objectid = node->bytenr;
1970 key.type = BTRFS_EXTENT_ITEM_KEY;
1971 key.offset = node->num_bytes;
1972
1973 path->reada = 1;
1974 path->leave_spinning = 1;
1975 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
1976 path, 0, 1);
1977 if (ret < 0) {
1978 err = ret;
1979 goto out;
1980 }
1981 if (ret > 0) {
1982 err = -EIO;
1983 goto out;
1984 }
1985
1986 leaf = path->nodes[0];
1987 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1988#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1989 if (item_size < sizeof(*ei)) {
1990 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
1991 path, (u64)-1, 0);
1992 if (ret < 0) {
1993 err = ret;
1994 goto out;
1995 }
1996 leaf = path->nodes[0];
1997 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1998 }
1999#endif
2000 BUG_ON(item_size < sizeof(*ei));
2001 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2002 __run_delayed_extent_op(extent_op, leaf, ei);
2003
2004 btrfs_mark_buffer_dirty(leaf);
2005out:
2006 btrfs_free_path(path);
2007 return err;
2008}
2009
2010static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2011 struct btrfs_root *root,
2012 struct btrfs_delayed_ref_node *node,
2013 struct btrfs_delayed_extent_op *extent_op,
2014 int insert_reserved)
2015{
2016 int ret = 0;
2017 struct btrfs_delayed_tree_ref *ref;
2018 struct btrfs_key ins;
2019 u64 parent = 0;
2020 u64 ref_root = 0;
2021
2022 ins.objectid = node->bytenr;
2023 ins.offset = node->num_bytes;
2024 ins.type = BTRFS_EXTENT_ITEM_KEY;
2025
2026 ref = btrfs_delayed_node_to_tree_ref(node);
2027 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2028 parent = ref->parent;
2029 else
2030 ref_root = ref->root;
2031
2032 BUG_ON(node->ref_mod != 1);
2033 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
2034 BUG_ON(!extent_op || !extent_op->update_flags ||
2035 !extent_op->update_key);
2036 ret = alloc_reserved_tree_block(trans, root,
2037 parent, ref_root,
2038 extent_op->flags_to_set,
2039 &extent_op->key,
2040 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002041 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2042 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2043 node->num_bytes, parent, ref_root,
2044 ref->level, 0, 1, extent_op);
2045 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2046 ret = __btrfs_free_extent(trans, root, node->bytenr,
2047 node->num_bytes, parent, ref_root,
2048 ref->level, 0, 1, extent_op);
2049 } else {
2050 BUG();
2051 }
2052 return ret;
2053}
2054
Chris Mason56bec292009-03-13 10:10:06 -04002055/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002056static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2057 struct btrfs_root *root,
2058 struct btrfs_delayed_ref_node *node,
2059 struct btrfs_delayed_extent_op *extent_op,
2060 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002061{
Josef Bacikeb099672009-02-12 09:27:38 -05002062 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002063 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002064 struct btrfs_delayed_ref_head *head;
2065 /*
2066 * we've hit the end of the chain and we were supposed
2067 * to insert this extent into the tree. But, it got
2068 * deleted before we ever needed to insert it, so all
2069 * we have to do is clean up the accounting
2070 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002071 BUG_ON(extent_op);
2072 head = btrfs_delayed_node_to_head(node);
Chris Mason56bec292009-03-13 10:10:06 -04002073 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002074 btrfs_pin_extent(root, node->bytenr,
2075 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002076 if (head->is_data) {
2077 ret = btrfs_del_csums(trans, root,
2078 node->bytenr,
2079 node->num_bytes);
2080 BUG_ON(ret);
2081 }
Chris Mason56bec292009-03-13 10:10:06 -04002082 }
Chris Mason56bec292009-03-13 10:10:06 -04002083 mutex_unlock(&head->mutex);
2084 return 0;
2085 }
Josef Bacikeb099672009-02-12 09:27:38 -05002086
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002087 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2088 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2089 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2090 insert_reserved);
2091 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2092 node->type == BTRFS_SHARED_DATA_REF_KEY)
2093 ret = run_delayed_data_ref(trans, root, node, extent_op,
2094 insert_reserved);
2095 else
2096 BUG();
2097 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002098}
2099
Chris Mason56bec292009-03-13 10:10:06 -04002100static noinline struct btrfs_delayed_ref_node *
2101select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002102{
Chris Mason56bec292009-03-13 10:10:06 -04002103 struct rb_node *node;
2104 struct btrfs_delayed_ref_node *ref;
2105 int action = BTRFS_ADD_DELAYED_REF;
2106again:
2107 /*
2108 * select delayed ref of type BTRFS_ADD_DELAYED_REF first.
2109 * this prevents ref count from going down to zero when
2110 * there still are pending delayed ref.
2111 */
2112 node = rb_prev(&head->node.rb_node);
2113 while (1) {
2114 if (!node)
2115 break;
2116 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2117 rb_node);
2118 if (ref->bytenr != head->node.bytenr)
2119 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002120 if (ref->action == action)
Chris Mason56bec292009-03-13 10:10:06 -04002121 return ref;
2122 node = rb_prev(node);
Chris Mason5f39d392007-10-15 16:14:19 -04002123 }
Chris Mason56bec292009-03-13 10:10:06 -04002124 if (action == BTRFS_ADD_DELAYED_REF) {
2125 action = BTRFS_DROP_DELAYED_REF;
2126 goto again;
2127 }
2128 return NULL;
2129}
2130
Chris Masonc3e69d52009-03-13 10:17:05 -04002131static noinline int run_clustered_refs(struct btrfs_trans_handle *trans,
2132 struct btrfs_root *root,
2133 struct list_head *cluster)
Chris Mason56bec292009-03-13 10:10:06 -04002134{
Chris Mason56bec292009-03-13 10:10:06 -04002135 struct btrfs_delayed_ref_root *delayed_refs;
2136 struct btrfs_delayed_ref_node *ref;
2137 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002138 struct btrfs_delayed_extent_op *extent_op;
Chris Mason56bec292009-03-13 10:10:06 -04002139 int ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002140 int count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002141 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002142
2143 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002144 while (1) {
2145 if (!locked_ref) {
Chris Masonc3e69d52009-03-13 10:17:05 -04002146 /* pick a new head ref from the cluster list */
2147 if (list_empty(cluster))
Chris Mason56bec292009-03-13 10:10:06 -04002148 break;
Chris Mason56bec292009-03-13 10:10:06 -04002149
Chris Masonc3e69d52009-03-13 10:17:05 -04002150 locked_ref = list_entry(cluster->next,
2151 struct btrfs_delayed_ref_head, cluster);
2152
2153 /* grab the lock that says we are going to process
2154 * all the refs for this head */
2155 ret = btrfs_delayed_ref_lock(trans, locked_ref);
2156
2157 /*
2158 * we may have dropped the spin lock to get the head
2159 * mutex lock, and that might have given someone else
2160 * time to free the head. If that's true, it has been
2161 * removed from our list and we can move on.
2162 */
2163 if (ret == -EAGAIN) {
2164 locked_ref = NULL;
2165 count++;
2166 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002167 }
2168 }
2169
2170 /*
2171 * record the must insert reserved flag before we
2172 * drop the spin lock.
2173 */
2174 must_insert_reserved = locked_ref->must_insert_reserved;
2175 locked_ref->must_insert_reserved = 0;
2176
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002177 extent_op = locked_ref->extent_op;
2178 locked_ref->extent_op = NULL;
2179
Chris Mason56bec292009-03-13 10:10:06 -04002180 /*
2181 * locked_ref is the head node, so we have to go one
2182 * node back for any delayed ref updates
2183 */
Chris Mason56bec292009-03-13 10:10:06 -04002184 ref = select_delayed_ref(locked_ref);
2185 if (!ref) {
2186 /* All delayed refs have been processed, Go ahead
2187 * and send the head node to run_one_delayed_ref,
2188 * so that any accounting fixes can happen
2189 */
2190 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002191
2192 if (extent_op && must_insert_reserved) {
2193 kfree(extent_op);
2194 extent_op = NULL;
2195 }
2196
2197 if (extent_op) {
2198 spin_unlock(&delayed_refs->lock);
2199
2200 ret = run_delayed_extent_op(trans, root,
2201 ref, extent_op);
2202 BUG_ON(ret);
2203 kfree(extent_op);
2204
2205 cond_resched();
2206 spin_lock(&delayed_refs->lock);
2207 continue;
2208 }
2209
Chris Masonc3e69d52009-03-13 10:17:05 -04002210 list_del_init(&locked_ref->cluster);
Chris Mason56bec292009-03-13 10:10:06 -04002211 locked_ref = NULL;
2212 }
2213
2214 ref->in_tree = 0;
2215 rb_erase(&ref->rb_node, &delayed_refs->root);
2216 delayed_refs->num_entries--;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002217
Chris Mason56bec292009-03-13 10:10:06 -04002218 spin_unlock(&delayed_refs->lock);
2219
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002220 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002221 must_insert_reserved);
2222 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04002223
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002224 btrfs_put_delayed_ref(ref);
2225 kfree(extent_op);
Chris Masonc3e69d52009-03-13 10:17:05 -04002226 count++;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002227
Chris Mason1887be62009-03-13 10:11:24 -04002228 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002229 spin_lock(&delayed_refs->lock);
2230 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002231 return count;
2232}
2233
2234/*
2235 * this starts processing the delayed reference count updates and
2236 * extent insertions we have queued up so far. count can be
2237 * 0, which means to process everything in the tree at the start
2238 * of the run (but not newly added entries), or it can be some target
2239 * number you'd like to process.
2240 */
2241int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2242 struct btrfs_root *root, unsigned long count)
2243{
2244 struct rb_node *node;
2245 struct btrfs_delayed_ref_root *delayed_refs;
2246 struct btrfs_delayed_ref_node *ref;
2247 struct list_head cluster;
2248 int ret;
2249 int run_all = count == (unsigned long)-1;
2250 int run_most = 0;
2251
2252 if (root == root->fs_info->extent_root)
2253 root = root->fs_info->tree_root;
2254
2255 delayed_refs = &trans->transaction->delayed_refs;
2256 INIT_LIST_HEAD(&cluster);
2257again:
2258 spin_lock(&delayed_refs->lock);
2259 if (count == 0) {
2260 count = delayed_refs->num_entries * 2;
2261 run_most = 1;
2262 }
2263 while (1) {
2264 if (!(run_all || run_most) &&
2265 delayed_refs->num_heads_ready < 64)
2266 break;
2267
2268 /*
2269 * go find something we can process in the rbtree. We start at
2270 * the beginning of the tree, and then build a cluster
2271 * of refs to process starting at the first one we are able to
2272 * lock
2273 */
2274 ret = btrfs_find_ref_cluster(trans, &cluster,
2275 delayed_refs->run_delayed_start);
2276 if (ret)
2277 break;
2278
2279 ret = run_clustered_refs(trans, root, &cluster);
2280 BUG_ON(ret < 0);
2281
2282 count -= min_t(unsigned long, ret, count);
2283
2284 if (count == 0)
2285 break;
2286 }
2287
Chris Mason56bec292009-03-13 10:10:06 -04002288 if (run_all) {
Chris Mason56bec292009-03-13 10:10:06 -04002289 node = rb_first(&delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04002290 if (!node)
Chris Mason56bec292009-03-13 10:10:06 -04002291 goto out;
Chris Masonc3e69d52009-03-13 10:17:05 -04002292 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002293
2294 while (node) {
2295 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2296 rb_node);
2297 if (btrfs_delayed_ref_is_head(ref)) {
2298 struct btrfs_delayed_ref_head *head;
2299
2300 head = btrfs_delayed_node_to_head(ref);
2301 atomic_inc(&ref->refs);
2302
2303 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02002304 /*
2305 * Mutex was contended, block until it's
2306 * released and try again
2307 */
Chris Mason56bec292009-03-13 10:10:06 -04002308 mutex_lock(&head->mutex);
2309 mutex_unlock(&head->mutex);
2310
2311 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002312 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002313 goto again;
2314 }
2315 node = rb_next(node);
2316 }
2317 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002318 schedule_timeout(1);
2319 goto again;
2320 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002321out:
Chris Masonc3e69d52009-03-13 10:17:05 -04002322 spin_unlock(&delayed_refs->lock);
Chris Masona28ec192007-03-06 20:08:01 -05002323 return 0;
2324}
2325
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002326int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2327 struct btrfs_root *root,
2328 u64 bytenr, u64 num_bytes, u64 flags,
2329 int is_data)
2330{
2331 struct btrfs_delayed_extent_op *extent_op;
2332 int ret;
2333
2334 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
2335 if (!extent_op)
2336 return -ENOMEM;
2337
2338 extent_op->flags_to_set = flags;
2339 extent_op->update_flags = 1;
2340 extent_op->update_key = 0;
2341 extent_op->is_data = is_data ? 1 : 0;
2342
2343 ret = btrfs_add_delayed_extent_op(trans, bytenr, num_bytes, extent_op);
2344 if (ret)
2345 kfree(extent_op);
2346 return ret;
2347}
2348
2349static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2350 struct btrfs_root *root,
2351 struct btrfs_path *path,
2352 u64 objectid, u64 offset, u64 bytenr)
2353{
2354 struct btrfs_delayed_ref_head *head;
2355 struct btrfs_delayed_ref_node *ref;
2356 struct btrfs_delayed_data_ref *data_ref;
2357 struct btrfs_delayed_ref_root *delayed_refs;
2358 struct rb_node *node;
2359 int ret = 0;
2360
2361 ret = -ENOENT;
2362 delayed_refs = &trans->transaction->delayed_refs;
2363 spin_lock(&delayed_refs->lock);
2364 head = btrfs_find_delayed_ref_head(trans, bytenr);
2365 if (!head)
2366 goto out;
2367
2368 if (!mutex_trylock(&head->mutex)) {
2369 atomic_inc(&head->node.refs);
2370 spin_unlock(&delayed_refs->lock);
2371
David Sterbab3b4aa72011-04-21 01:20:15 +02002372 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002373
David Sterba8cc33e52011-05-02 15:29:25 +02002374 /*
2375 * Mutex was contended, block until it's released and let
2376 * caller try again
2377 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002378 mutex_lock(&head->mutex);
2379 mutex_unlock(&head->mutex);
2380 btrfs_put_delayed_ref(&head->node);
2381 return -EAGAIN;
2382 }
2383
2384 node = rb_prev(&head->node.rb_node);
2385 if (!node)
2386 goto out_unlock;
2387
2388 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2389
2390 if (ref->bytenr != bytenr)
2391 goto out_unlock;
2392
2393 ret = 1;
2394 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY)
2395 goto out_unlock;
2396
2397 data_ref = btrfs_delayed_node_to_data_ref(ref);
2398
2399 node = rb_prev(node);
2400 if (node) {
2401 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2402 if (ref->bytenr == bytenr)
2403 goto out_unlock;
2404 }
2405
2406 if (data_ref->root != root->root_key.objectid ||
2407 data_ref->objectid != objectid || data_ref->offset != offset)
2408 goto out_unlock;
2409
2410 ret = 0;
2411out_unlock:
2412 mutex_unlock(&head->mutex);
2413out:
2414 spin_unlock(&delayed_refs->lock);
2415 return ret;
2416}
2417
2418static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2419 struct btrfs_root *root,
2420 struct btrfs_path *path,
2421 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05002422{
2423 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04002424 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002425 struct btrfs_extent_data_ref *ref;
2426 struct btrfs_extent_inline_ref *iref;
2427 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05002428 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002429 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04002430 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05002431
Chris Masonbe20aa92007-12-17 20:14:01 -05002432 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04002433 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04002434 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05002435
Chris Masonbe20aa92007-12-17 20:14:01 -05002436 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2437 if (ret < 0)
2438 goto out;
2439 BUG_ON(ret == 0);
Yan Zheng80ff3852008-10-30 14:20:02 -04002440
2441 ret = -ENOENT;
2442 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04002443 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002444
Zheng Yan31840ae2008-09-23 13:14:14 -04002445 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04002446 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002447 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05002448
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002449 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05002450 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002451
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002452 ret = 1;
2453 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2454#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2455 if (item_size < sizeof(*ei)) {
2456 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2457 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002458 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002459#endif
2460 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2461
2462 if (item_size != sizeof(*ei) +
2463 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2464 goto out;
2465
2466 if (btrfs_extent_generation(leaf, ei) <=
2467 btrfs_root_last_snapshot(&root->root_item))
2468 goto out;
2469
2470 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2471 if (btrfs_extent_inline_ref_type(leaf, iref) !=
2472 BTRFS_EXTENT_DATA_REF_KEY)
2473 goto out;
2474
2475 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2476 if (btrfs_extent_refs(leaf, ei) !=
2477 btrfs_extent_data_ref_count(leaf, ref) ||
2478 btrfs_extent_data_ref_root(leaf, ref) !=
2479 root->root_key.objectid ||
2480 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
2481 btrfs_extent_data_ref_offset(leaf, ref) != offset)
2482 goto out;
2483
Yan Zhengf321e492008-07-30 09:26:11 -04002484 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05002485out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002486 return ret;
2487}
2488
2489int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
2490 struct btrfs_root *root,
2491 u64 objectid, u64 offset, u64 bytenr)
2492{
2493 struct btrfs_path *path;
2494 int ret;
2495 int ret2;
2496
2497 path = btrfs_alloc_path();
2498 if (!path)
2499 return -ENOENT;
2500
2501 do {
2502 ret = check_committed_ref(trans, root, path, objectid,
2503 offset, bytenr);
2504 if (ret && ret != -ENOENT)
2505 goto out;
2506
2507 ret2 = check_delayed_ref(trans, root, path, objectid,
2508 offset, bytenr);
2509 } while (ret2 == -EAGAIN);
2510
2511 if (ret2 && ret2 != -ENOENT) {
2512 ret = ret2;
2513 goto out;
2514 }
2515
2516 if (ret != -ENOENT || ret2 != -ENOENT)
2517 ret = 0;
2518out:
Yan Zhengf321e492008-07-30 09:26:11 -04002519 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002520 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
2521 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04002522 return ret;
2523}
2524
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002525static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05002526 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002527 struct extent_buffer *buf,
2528 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04002529{
2530 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002531 u64 num_bytes;
2532 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04002533 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04002534 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04002535 struct btrfs_key key;
2536 struct btrfs_file_extent_item *fi;
2537 int i;
2538 int level;
2539 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04002540 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002541 u64, u64, u64, u64, u64, u64);
Zheng Yan31840ae2008-09-23 13:14:14 -04002542
2543 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04002544 nritems = btrfs_header_nritems(buf);
2545 level = btrfs_header_level(buf);
2546
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002547 if (!root->ref_cows && level == 0)
2548 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05002549
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002550 if (inc)
2551 process_func = btrfs_inc_extent_ref;
2552 else
2553 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04002554
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002555 if (full_backref)
2556 parent = buf->start;
2557 else
2558 parent = 0;
2559
Zheng Yan31840ae2008-09-23 13:14:14 -04002560 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04002561 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002562 btrfs_item_key_to_cpu(buf, &key, i);
2563 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04002564 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04002565 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04002566 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002567 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04002568 BTRFS_FILE_EXTENT_INLINE)
2569 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04002570 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
2571 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04002572 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04002573
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002574 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
2575 key.offset -= btrfs_file_extent_offset(buf, fi);
2576 ret = process_func(trans, root, bytenr, num_bytes,
2577 parent, ref_root, key.objectid,
2578 key.offset);
2579 if (ret)
2580 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05002581 } else {
2582 bytenr = btrfs_node_blockptr(buf, i);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002583 num_bytes = btrfs_level_size(root, level - 1);
2584 ret = process_func(trans, root, bytenr, num_bytes,
2585 parent, ref_root, level - 1, 0);
2586 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04002587 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04002588 }
2589 }
Zheng Yan31840ae2008-09-23 13:14:14 -04002590 return 0;
2591fail:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002592 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04002593 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002594}
2595
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002596int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2597 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04002598{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002599 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
2600}
Zheng Yan31840ae2008-09-23 13:14:14 -04002601
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002602int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2603 struct extent_buffer *buf, int full_backref)
2604{
2605 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04002606}
2607
Chris Mason9078a3e2007-04-26 16:46:15 -04002608static int write_one_cache_group(struct btrfs_trans_handle *trans,
2609 struct btrfs_root *root,
2610 struct btrfs_path *path,
2611 struct btrfs_block_group_cache *cache)
2612{
2613 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04002614 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04002615 unsigned long bi;
2616 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04002617
Chris Mason9078a3e2007-04-26 16:46:15 -04002618 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04002619 if (ret < 0)
2620 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -04002621 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002622
2623 leaf = path->nodes[0];
2624 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
2625 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
2626 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002627 btrfs_release_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04002628fail:
Chris Mason9078a3e2007-04-26 16:46:15 -04002629 if (ret)
2630 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04002631 return 0;
2632
2633}
2634
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002635static struct btrfs_block_group_cache *
2636next_block_group(struct btrfs_root *root,
2637 struct btrfs_block_group_cache *cache)
2638{
2639 struct rb_node *node;
2640 spin_lock(&root->fs_info->block_group_cache_lock);
2641 node = rb_next(&cache->cache_node);
2642 btrfs_put_block_group(cache);
2643 if (node) {
2644 cache = rb_entry(node, struct btrfs_block_group_cache,
2645 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00002646 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002647 } else
2648 cache = NULL;
2649 spin_unlock(&root->fs_info->block_group_cache_lock);
2650 return cache;
2651}
2652
Josef Bacik0af3d002010-06-21 14:48:16 -04002653static int cache_save_setup(struct btrfs_block_group_cache *block_group,
2654 struct btrfs_trans_handle *trans,
2655 struct btrfs_path *path)
2656{
2657 struct btrfs_root *root = block_group->fs_info->tree_root;
2658 struct inode *inode = NULL;
2659 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05002660 int dcs = BTRFS_DC_ERROR;
Josef Bacik0af3d002010-06-21 14:48:16 -04002661 int num_pages = 0;
2662 int retries = 0;
2663 int ret = 0;
2664
2665 /*
2666 * If this block group is smaller than 100 megs don't bother caching the
2667 * block group.
2668 */
2669 if (block_group->key.offset < (100 * 1024 * 1024)) {
2670 spin_lock(&block_group->lock);
2671 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
2672 spin_unlock(&block_group->lock);
2673 return 0;
2674 }
2675
2676again:
2677 inode = lookup_free_space_inode(root, block_group, path);
2678 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
2679 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02002680 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04002681 goto out;
2682 }
2683
2684 if (IS_ERR(inode)) {
2685 BUG_ON(retries);
2686 retries++;
2687
2688 if (block_group->ro)
2689 goto out_free;
2690
2691 ret = create_free_space_inode(root, trans, block_group, path);
2692 if (ret)
2693 goto out_free;
2694 goto again;
2695 }
2696
2697 /*
2698 * We want to set the generation to 0, that way if anything goes wrong
2699 * from here on out we know not to trust this cache when we load up next
2700 * time.
2701 */
2702 BTRFS_I(inode)->generation = 0;
2703 ret = btrfs_update_inode(trans, root, inode);
2704 WARN_ON(ret);
2705
2706 if (i_size_read(inode) > 0) {
2707 ret = btrfs_truncate_free_space_cache(root, trans, path,
2708 inode);
2709 if (ret)
2710 goto out_put;
2711 }
2712
2713 spin_lock(&block_group->lock);
2714 if (block_group->cached != BTRFS_CACHE_FINISHED) {
Josef Bacik2b209822010-12-03 13:17:53 -05002715 /* We're not cached, don't bother trying to write stuff out */
2716 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04002717 spin_unlock(&block_group->lock);
2718 goto out_put;
2719 }
2720 spin_unlock(&block_group->lock);
2721
2722 num_pages = (int)div64_u64(block_group->key.offset, 1024 * 1024 * 1024);
2723 if (!num_pages)
2724 num_pages = 1;
2725
2726 /*
2727 * Just to make absolutely sure we have enough space, we're going to
2728 * preallocate 12 pages worth of space for each block group. In
2729 * practice we ought to use at most 8, but we need extra space so we can
2730 * add our header and have a terminator between the extents and the
2731 * bitmaps.
2732 */
2733 num_pages *= 16;
2734 num_pages *= PAGE_CACHE_SIZE;
2735
2736 ret = btrfs_check_data_free_space(inode, num_pages);
2737 if (ret)
2738 goto out_put;
2739
2740 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
2741 num_pages, num_pages,
2742 &alloc_hint);
Josef Bacik2b209822010-12-03 13:17:53 -05002743 if (!ret)
2744 dcs = BTRFS_DC_SETUP;
Josef Bacik0af3d002010-06-21 14:48:16 -04002745 btrfs_free_reserved_data_space(inode, num_pages);
2746out_put:
2747 iput(inode);
2748out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02002749 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04002750out:
2751 spin_lock(&block_group->lock);
Josef Bacik2b209822010-12-03 13:17:53 -05002752 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04002753 spin_unlock(&block_group->lock);
2754
2755 return ret;
2756}
2757
Chris Mason96b51792007-10-15 16:15:19 -04002758int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
2759 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04002760{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002761 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002762 int err = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002763 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04002764 u64 last = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002765
2766 path = btrfs_alloc_path();
2767 if (!path)
2768 return -ENOMEM;
2769
Josef Bacik0af3d002010-06-21 14:48:16 -04002770again:
2771 while (1) {
2772 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2773 while (cache) {
2774 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
2775 break;
2776 cache = next_block_group(root, cache);
2777 }
2778 if (!cache) {
2779 if (last == 0)
2780 break;
2781 last = 0;
2782 continue;
2783 }
2784 err = cache_save_setup(cache, trans, path);
2785 last = cache->key.objectid + cache->key.offset;
2786 btrfs_put_block_group(cache);
2787 }
2788
Chris Masond3977122009-01-05 21:25:51 -05002789 while (1) {
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002790 if (last == 0) {
2791 err = btrfs_run_delayed_refs(trans, root,
2792 (unsigned long)-1);
2793 BUG_ON(err);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002794 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002795
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002796 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2797 while (cache) {
Josef Bacik0af3d002010-06-21 14:48:16 -04002798 if (cache->disk_cache_state == BTRFS_DC_CLEAR) {
2799 btrfs_put_block_group(cache);
2800 goto again;
2801 }
2802
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002803 if (cache->dirty)
2804 break;
2805 cache = next_block_group(root, cache);
2806 }
2807 if (!cache) {
2808 if (last == 0)
2809 break;
2810 last = 0;
Chris Mason96b51792007-10-15 16:15:19 -04002811 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04002812 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002813
Josef Bacik0cb59c92010-07-02 12:14:14 -04002814 if (cache->disk_cache_state == BTRFS_DC_SETUP)
2815 cache->disk_cache_state = BTRFS_DC_NEED_WRITE;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002816 cache->dirty = 0;
2817 last = cache->key.objectid + cache->key.offset;
2818
2819 err = write_one_cache_group(trans, root, path, cache);
2820 BUG_ON(err);
2821 btrfs_put_block_group(cache);
Chris Mason9078a3e2007-04-26 16:46:15 -04002822 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002823
Josef Bacik0cb59c92010-07-02 12:14:14 -04002824 while (1) {
2825 /*
2826 * I don't think this is needed since we're just marking our
2827 * preallocated extent as written, but just in case it can't
2828 * hurt.
2829 */
2830 if (last == 0) {
2831 err = btrfs_run_delayed_refs(trans, root,
2832 (unsigned long)-1);
2833 BUG_ON(err);
2834 }
2835
2836 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2837 while (cache) {
2838 /*
2839 * Really this shouldn't happen, but it could if we
2840 * couldn't write the entire preallocated extent and
2841 * splitting the extent resulted in a new block.
2842 */
2843 if (cache->dirty) {
2844 btrfs_put_block_group(cache);
2845 goto again;
2846 }
2847 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
2848 break;
2849 cache = next_block_group(root, cache);
2850 }
2851 if (!cache) {
2852 if (last == 0)
2853 break;
2854 last = 0;
2855 continue;
2856 }
2857
2858 btrfs_write_out_cache(root, trans, cache, path);
2859
2860 /*
2861 * If we didn't have an error then the cache state is still
2862 * NEED_WRITE, so we can set it to WRITTEN.
2863 */
2864 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
2865 cache->disk_cache_state = BTRFS_DC_WRITTEN;
2866 last = cache->key.objectid + cache->key.offset;
2867 btrfs_put_block_group(cache);
2868 }
2869
Chris Mason9078a3e2007-04-26 16:46:15 -04002870 btrfs_free_path(path);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002871 return 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002872}
2873
Yan Zhengd2fb3432008-12-11 16:30:39 -05002874int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
2875{
2876 struct btrfs_block_group_cache *block_group;
2877 int readonly = 0;
2878
2879 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
2880 if (!block_group || block_group->ro)
2881 readonly = 1;
2882 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002883 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002884 return readonly;
2885}
2886
Chris Mason593060d2008-03-25 16:50:33 -04002887static int update_space_info(struct btrfs_fs_info *info, u64 flags,
2888 u64 total_bytes, u64 bytes_used,
2889 struct btrfs_space_info **space_info)
2890{
2891 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04002892 int i;
2893 int factor;
2894
2895 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
2896 BTRFS_BLOCK_GROUP_RAID10))
2897 factor = 2;
2898 else
2899 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04002900
2901 found = __find_space_info(info, flags);
2902 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04002903 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04002904 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04002905 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04002906 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04002907 found->disk_used += bytes_used * factor;
Chris Mason8f18cf12008-04-25 16:53:30 -04002908 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04002909 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04002910 *space_info = found;
2911 return 0;
2912 }
Yan Zhengc146afa2008-11-12 14:34:12 -05002913 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04002914 if (!found)
2915 return -ENOMEM;
2916
Yan, Zhengb742bb82010-05-16 10:46:24 -04002917 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
2918 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04002919 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002920 spin_lock_init(&found->lock);
Yan, Zhengb742bb82010-05-16 10:46:24 -04002921 found->flags = flags & (BTRFS_BLOCK_GROUP_DATA |
2922 BTRFS_BLOCK_GROUP_SYSTEM |
2923 BTRFS_BLOCK_GROUP_METADATA);
Chris Mason593060d2008-03-25 16:50:33 -04002924 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04002925 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04002926 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04002927 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04002928 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04002929 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05002930 found->bytes_readonly = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04002931 found->bytes_may_use = 0;
Chris Mason593060d2008-03-25 16:50:33 -04002932 found->full = 0;
Chris Mason0e4f8f82011-04-15 16:05:44 -04002933 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04002934 found->chunk_alloc = 0;
Chris Mason593060d2008-03-25 16:50:33 -04002935 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04002936 list_add_rcu(&found->list, &info->space_info);
Josef Bacik817d52f2009-07-13 21:29:25 -04002937 atomic_set(&found->caching_threads, 0);
Chris Mason593060d2008-03-25 16:50:33 -04002938 return 0;
2939}
2940
Chris Mason8790d502008-04-03 16:29:03 -04002941static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
2942{
2943 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
Chris Mason611f0e02008-04-03 16:29:03 -04002944 BTRFS_BLOCK_GROUP_RAID1 |
Chris Mason321aecc2008-04-16 10:49:51 -04002945 BTRFS_BLOCK_GROUP_RAID10 |
Chris Mason611f0e02008-04-03 16:29:03 -04002946 BTRFS_BLOCK_GROUP_DUP);
Chris Mason8790d502008-04-03 16:29:03 -04002947 if (extra_flags) {
2948 if (flags & BTRFS_BLOCK_GROUP_DATA)
2949 fs_info->avail_data_alloc_bits |= extra_flags;
2950 if (flags & BTRFS_BLOCK_GROUP_METADATA)
2951 fs_info->avail_metadata_alloc_bits |= extra_flags;
2952 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
2953 fs_info->avail_system_alloc_bits |= extra_flags;
2954 }
2955}
Chris Mason593060d2008-03-25 16:50:33 -04002956
Yan Zheng2b820322008-11-17 21:11:30 -05002957u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04002958{
Chris Masoncd02dca2010-12-13 14:56:23 -05002959 /*
2960 * we add in the count of missing devices because we want
2961 * to make sure that any RAID levels on a degraded FS
2962 * continue to be honored.
2963 */
2964 u64 num_devices = root->fs_info->fs_devices->rw_devices +
2965 root->fs_info->fs_devices->missing_devices;
Chris Masona061fc82008-05-07 11:43:44 -04002966
2967 if (num_devices == 1)
2968 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0);
2969 if (num_devices < 4)
2970 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
2971
Chris Masonec44a352008-04-28 15:29:52 -04002972 if ((flags & BTRFS_BLOCK_GROUP_DUP) &&
2973 (flags & (BTRFS_BLOCK_GROUP_RAID1 |
Chris Masona061fc82008-05-07 11:43:44 -04002974 BTRFS_BLOCK_GROUP_RAID10))) {
Chris Masonec44a352008-04-28 15:29:52 -04002975 flags &= ~BTRFS_BLOCK_GROUP_DUP;
Chris Masona061fc82008-05-07 11:43:44 -04002976 }
Chris Masonec44a352008-04-28 15:29:52 -04002977
2978 if ((flags & BTRFS_BLOCK_GROUP_RAID1) &&
Chris Masona061fc82008-05-07 11:43:44 -04002979 (flags & BTRFS_BLOCK_GROUP_RAID10)) {
Chris Masonec44a352008-04-28 15:29:52 -04002980 flags &= ~BTRFS_BLOCK_GROUP_RAID1;
Chris Masona061fc82008-05-07 11:43:44 -04002981 }
Chris Masonec44a352008-04-28 15:29:52 -04002982
2983 if ((flags & BTRFS_BLOCK_GROUP_RAID0) &&
2984 ((flags & BTRFS_BLOCK_GROUP_RAID1) |
2985 (flags & BTRFS_BLOCK_GROUP_RAID10) |
2986 (flags & BTRFS_BLOCK_GROUP_DUP)))
2987 flags &= ~BTRFS_BLOCK_GROUP_RAID0;
2988 return flags;
2989}
2990
Yan, Zhengb742bb82010-05-16 10:46:24 -04002991static u64 get_alloc_profile(struct btrfs_root *root, u64 flags)
Josef Bacik6a632092009-02-20 11:00:09 -05002992{
Yan, Zhengb742bb82010-05-16 10:46:24 -04002993 if (flags & BTRFS_BLOCK_GROUP_DATA)
2994 flags |= root->fs_info->avail_data_alloc_bits &
2995 root->fs_info->data_alloc_profile;
2996 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
2997 flags |= root->fs_info->avail_system_alloc_bits &
2998 root->fs_info->system_alloc_profile;
2999 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3000 flags |= root->fs_info->avail_metadata_alloc_bits &
3001 root->fs_info->metadata_alloc_profile;
3002 return btrfs_reduce_alloc_profile(root, flags);
3003}
Josef Bacik6a632092009-02-20 11:00:09 -05003004
Miao Xie6d07bce2011-01-05 10:07:31 +00003005u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003006{
3007 u64 flags;
Josef Bacik6a632092009-02-20 11:00:09 -05003008
Yan, Zhengb742bb82010-05-16 10:46:24 -04003009 if (data)
3010 flags = BTRFS_BLOCK_GROUP_DATA;
3011 else if (root == root->fs_info->chunk_root)
3012 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3013 else
3014 flags = BTRFS_BLOCK_GROUP_METADATA;
3015
3016 return get_alloc_profile(root, flags);
Josef Bacik6a632092009-02-20 11:00:09 -05003017}
3018
3019void btrfs_set_inode_space_info(struct btrfs_root *root, struct inode *inode)
3020{
Josef Bacik6a632092009-02-20 11:00:09 -05003021 BTRFS_I(inode)->space_info = __find_space_info(root->fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04003022 BTRFS_BLOCK_GROUP_DATA);
Josef Bacik6a632092009-02-20 11:00:09 -05003023}
3024
3025/*
3026 * This will check the space that the inode allocates from to make sure we have
3027 * enough space for bytes.
3028 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003029int btrfs_check_data_free_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003030{
3031 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003032 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikab6e24102010-03-19 14:38:13 +00003033 u64 used;
Josef Bacik0af3d002010-06-21 14:48:16 -04003034 int ret = 0, committed = 0, alloc_chunk = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003035
3036 /* make sure bytes are sectorsize aligned */
3037 bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
3038
Li Zefan82d59022011-04-20 10:33:24 +08003039 if (root == root->fs_info->tree_root ||
3040 BTRFS_I(inode)->location.objectid == BTRFS_FREE_INO_OBJECTID) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003041 alloc_chunk = 0;
3042 committed = 1;
3043 }
3044
Josef Bacik6a632092009-02-20 11:00:09 -05003045 data_sinfo = BTRFS_I(inode)->space_info;
Chris Mason33b4d472009-09-22 14:45:50 -04003046 if (!data_sinfo)
3047 goto alloc;
3048
Josef Bacik6a632092009-02-20 11:00:09 -05003049again:
3050 /* make sure we have enough space to handle the data first */
3051 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003052 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3053 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3054 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00003055
3056 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003057 struct btrfs_trans_handle *trans;
3058
Josef Bacik6a632092009-02-20 11:00:09 -05003059 /*
3060 * if we don't have enough free bytes in this space then we need
3061 * to alloc a new chunk.
3062 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003063 if (!data_sinfo->full && alloc_chunk) {
Josef Bacik6a632092009-02-20 11:00:09 -05003064 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05003065
Chris Mason0e4f8f82011-04-15 16:05:44 -04003066 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05003067 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04003068alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05003069 alloc_target = btrfs_get_alloc_profile(root, 1);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003070 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003071 if (IS_ERR(trans))
3072 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05003073
3074 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
3075 bytes + 2 * 1024 * 1024,
Chris Mason0e4f8f82011-04-15 16:05:44 -04003076 alloc_target,
3077 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05003078 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00003079 if (ret < 0) {
3080 if (ret != -ENOSPC)
3081 return ret;
3082 else
3083 goto commit_trans;
3084 }
Chris Mason33b4d472009-09-22 14:45:50 -04003085
3086 if (!data_sinfo) {
3087 btrfs_set_inode_space_info(root, inode);
3088 data_sinfo = BTRFS_I(inode)->space_info;
3089 }
Josef Bacik6a632092009-02-20 11:00:09 -05003090 goto again;
3091 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003092
3093 /*
3094 * If we have less pinned bytes than we want to allocate then
3095 * don't bother committing the transaction, it won't help us.
3096 */
3097 if (data_sinfo->bytes_pinned < bytes)
3098 committed = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003099 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003100
3101 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00003102commit_trans:
Josef Bacika4abeea2011-04-11 17:25:13 -04003103 if (!committed &&
3104 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003105 committed = 1;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003106 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003107 if (IS_ERR(trans))
3108 return PTR_ERR(trans);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003109 ret = btrfs_commit_transaction(trans, root);
3110 if (ret)
3111 return ret;
3112 goto again;
3113 }
3114
Josef Bacik6a632092009-02-20 11:00:09 -05003115 return -ENOSPC;
3116 }
3117 data_sinfo->bytes_may_use += bytes;
3118 BTRFS_I(inode)->reserved_bytes += bytes;
3119 spin_unlock(&data_sinfo->lock);
3120
Josef Bacik9ed74f22009-09-11 16:12:44 -04003121 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003122}
3123
3124/*
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003125 * called when we are clearing an delalloc extent from the
3126 * inode's io_tree or there was an error for whatever reason
3127 * after calling btrfs_check_data_free_space
Josef Bacik6a632092009-02-20 11:00:09 -05003128 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003129void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003130{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003131 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003132 struct btrfs_space_info *data_sinfo;
3133
3134 /* make sure bytes are sectorsize aligned */
3135 bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
3136
3137 data_sinfo = BTRFS_I(inode)->space_info;
3138 spin_lock(&data_sinfo->lock);
3139 data_sinfo->bytes_may_use -= bytes;
3140 BTRFS_I(inode)->reserved_bytes -= bytes;
3141 spin_unlock(&data_sinfo->lock);
3142}
3143
Josef Bacik97e728d2009-04-21 17:40:57 -04003144static void force_metadata_allocation(struct btrfs_fs_info *info)
3145{
3146 struct list_head *head = &info->space_info;
3147 struct btrfs_space_info *found;
3148
3149 rcu_read_lock();
3150 list_for_each_entry_rcu(found, head, list) {
3151 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003152 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04003153 }
3154 rcu_read_unlock();
3155}
3156
Chris Masone5bc2452010-10-26 13:37:56 -04003157static int should_alloc_chunk(struct btrfs_root *root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04003158 struct btrfs_space_info *sinfo, u64 alloc_bytes,
3159 int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04003160{
3161 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003162 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04003163 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04003164
Chris Mason0e4f8f82011-04-15 16:05:44 -04003165 if (force == CHUNK_ALLOC_FORCE)
3166 return 1;
3167
3168 /*
3169 * in limited mode, we want to have some free space up to
3170 * about 1% of the FS size.
3171 */
3172 if (force == CHUNK_ALLOC_LIMITED) {
3173 thresh = btrfs_super_total_bytes(&root->fs_info->super_copy);
3174 thresh = max_t(u64, 64 * 1024 * 1024,
3175 div_factor_fine(thresh, 1));
3176
3177 if (num_bytes - num_allocated < thresh)
3178 return 1;
3179 }
3180
3181 /*
3182 * we have two similar checks here, one based on percentage
3183 * and once based on a hard number of 256MB. The idea
3184 * is that if we have a good amount of free
3185 * room, don't allocate a chunk. A good mount is
3186 * less than 80% utilized of the chunks we have allocated,
3187 * or more than 256MB free
3188 */
3189 if (num_allocated + alloc_bytes + 256 * 1024 * 1024 < num_bytes)
Yan, Zheng424499d2010-05-16 10:46:25 -04003190 return 0;
3191
Chris Mason0e4f8f82011-04-15 16:05:44 -04003192 if (num_allocated + alloc_bytes < div_factor(num_bytes, 8))
Yan, Zheng424499d2010-05-16 10:46:25 -04003193 return 0;
3194
Chris Masone5bc2452010-10-26 13:37:56 -04003195 thresh = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Mason0e4f8f82011-04-15 16:05:44 -04003196
3197 /* 256MB or 5% of the FS */
Chris Masone5bc2452010-10-26 13:37:56 -04003198 thresh = max_t(u64, 256 * 1024 * 1024, div_factor_fine(thresh, 5));
3199
3200 if (num_bytes > thresh && sinfo->bytes_used < div_factor(num_bytes, 3))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04003201 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04003202 return 1;
3203}
3204
Chris Mason6324fbf2008-03-24 15:01:59 -04003205static int do_chunk_alloc(struct btrfs_trans_handle *trans,
3206 struct btrfs_root *extent_root, u64 alloc_bytes,
Chris Mason0ef3e662008-05-24 14:04:53 -04003207 u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04003208{
3209 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04003210 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04003211 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003212 int ret = 0;
3213
Yan Zheng2b820322008-11-17 21:11:30 -05003214 flags = btrfs_reduce_alloc_profile(extent_root, flags);
Chris Masonec44a352008-04-28 15:29:52 -04003215
Chris Mason6324fbf2008-03-24 15:01:59 -04003216 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04003217 if (!space_info) {
3218 ret = update_space_info(extent_root->fs_info, flags,
3219 0, 0, &space_info);
3220 BUG_ON(ret);
3221 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003222 BUG_ON(!space_info);
3223
Josef Bacik6d741192011-04-11 20:20:11 -04003224again:
Josef Bacik25179202008-10-29 14:49:05 -04003225 spin_lock(&space_info->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003226 if (space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003227 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04003228 if (space_info->full) {
3229 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04003230 return 0;
Josef Bacik25179202008-10-29 14:49:05 -04003231 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003232
Chris Mason0e4f8f82011-04-15 16:05:44 -04003233 if (!should_alloc_chunk(extent_root, space_info, alloc_bytes, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04003234 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04003235 return 0;
3236 } else if (space_info->chunk_alloc) {
3237 wait_for_alloc = 1;
3238 } else {
3239 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04003240 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003241
Josef Bacik25179202008-10-29 14:49:05 -04003242 spin_unlock(&space_info->lock);
3243
Josef Bacik6d741192011-04-11 20:20:11 -04003244 mutex_lock(&fs_info->chunk_mutex);
3245
3246 /*
3247 * The chunk_mutex is held throughout the entirety of a chunk
3248 * allocation, so once we've acquired the chunk_mutex we know that the
3249 * other guy is done and we need to recheck and see if we should
3250 * allocate.
3251 */
3252 if (wait_for_alloc) {
3253 mutex_unlock(&fs_info->chunk_mutex);
3254 wait_for_alloc = 0;
3255 goto again;
3256 }
3257
Josef Bacik97e728d2009-04-21 17:40:57 -04003258 /*
Josef Bacik67377732010-09-16 16:19:09 -04003259 * If we have mixed data/metadata chunks we want to make sure we keep
3260 * allocating mixed chunks instead of individual chunks.
3261 */
3262 if (btrfs_mixed_space_info(space_info))
3263 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
3264
3265 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04003266 * if we're doing a data chunk, go ahead and make sure that
3267 * we keep a reasonable number of metadata chunks allocated in the
3268 * FS as well.
3269 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04003270 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04003271 fs_info->data_chunk_allocations++;
3272 if (!(fs_info->data_chunk_allocations %
3273 fs_info->metadata_ratio))
3274 force_metadata_allocation(fs_info);
3275 }
3276
Yan Zheng2b820322008-11-17 21:11:30 -05003277 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003278 spin_lock(&space_info->lock);
Chris Masond3977122009-01-05 21:25:51 -05003279 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04003280 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04003281 else
3282 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04003283
Chris Mason0e4f8f82011-04-15 16:05:44 -04003284 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003285 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003286 spin_unlock(&space_info->lock);
Yan Zhengc146afa2008-11-12 14:34:12 -05003287 mutex_unlock(&extent_root->fs_info->chunk_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003288 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04003289}
3290
Yan, Zheng5da9d012010-05-16 10:46:25 -04003291/*
3292 * shrink metadata reservation for delalloc
3293 */
3294static int shrink_delalloc(struct btrfs_trans_handle *trans,
Josef Bacik0019f102010-10-15 15:18:40 -04003295 struct btrfs_root *root, u64 to_reclaim, int sync)
Yan, Zheng5da9d012010-05-16 10:46:25 -04003296{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003297 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04003298 struct btrfs_space_info *space_info;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003299 u64 reserved;
3300 u64 max_reclaim;
3301 u64 reclaimed = 0;
Josef Bacikb1953bc2011-01-21 21:10:01 +00003302 long time_left;
Chris Masonbf9022e2010-10-26 13:40:45 -04003303 int nr_pages = (2 * 1024 * 1024) >> PAGE_CACHE_SHIFT;
Josef Bacikb1953bc2011-01-21 21:10:01 +00003304 int loops = 0;
Chris Mason36e39c42011-03-12 07:08:42 -05003305 unsigned long progress;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003306
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003307 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04003308 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04003309
3310 smp_mb();
Josef Bacik0019f102010-10-15 15:18:40 -04003311 reserved = space_info->bytes_reserved;
Chris Mason36e39c42011-03-12 07:08:42 -05003312 progress = space_info->reservation_progress;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003313
3314 if (reserved == 0)
3315 return 0;
3316
Sergei Trofimovichc4f675c2011-05-20 20:20:30 +00003317 /* nothing to shrink - nothing to reclaim */
3318 if (root->fs_info->delalloc_bytes == 0)
3319 return 0;
3320
Yan, Zheng5da9d012010-05-16 10:46:25 -04003321 max_reclaim = min(reserved, to_reclaim);
3322
Josef Bacikb1953bc2011-01-21 21:10:01 +00003323 while (loops < 1024) {
Chris Masonbf9022e2010-10-26 13:40:45 -04003324 /* have the flusher threads jump in and do some IO */
3325 smp_mb();
3326 nr_pages = min_t(unsigned long, nr_pages,
3327 root->fs_info->delalloc_bytes >> PAGE_CACHE_SHIFT);
3328 writeback_inodes_sb_nr_if_idle(root->fs_info->sb, nr_pages);
Yan, Zheng5da9d012010-05-16 10:46:25 -04003329
Josef Bacik0019f102010-10-15 15:18:40 -04003330 spin_lock(&space_info->lock);
Chris Mason36e39c42011-03-12 07:08:42 -05003331 if (reserved > space_info->bytes_reserved)
Josef Bacik0019f102010-10-15 15:18:40 -04003332 reclaimed += reserved - space_info->bytes_reserved;
3333 reserved = space_info->bytes_reserved;
3334 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04003335
Chris Mason36e39c42011-03-12 07:08:42 -05003336 loops++;
3337
Yan, Zheng5da9d012010-05-16 10:46:25 -04003338 if (reserved == 0 || reclaimed >= max_reclaim)
3339 break;
3340
3341 if (trans && trans->transaction->blocked)
3342 return -EAGAIN;
Chris Masonbf9022e2010-10-26 13:40:45 -04003343
Chris Mason36e39c42011-03-12 07:08:42 -05003344 time_left = schedule_timeout_interruptible(1);
Josef Bacikb1953bc2011-01-21 21:10:01 +00003345
3346 /* We were interrupted, exit */
3347 if (time_left)
3348 break;
3349
Chris Mason36e39c42011-03-12 07:08:42 -05003350 /* we've kicked the IO a few times, if anything has been freed,
3351 * exit. There is no sense in looping here for a long time
3352 * when we really need to commit the transaction, or there are
3353 * just too many writers without enough free space
3354 */
3355
3356 if (loops > 3) {
3357 smp_mb();
3358 if (progress != space_info->reservation_progress)
3359 break;
3360 }
Chris Masonbf9022e2010-10-26 13:40:45 -04003361
Yan, Zheng5da9d012010-05-16 10:46:25 -04003362 }
3363 return reclaimed >= to_reclaim;
3364}
3365
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003366/*
3367 * Retries tells us how many times we've called reserve_metadata_bytes. The
3368 * idea is if this is the first call (retries == 0) then we will add to our
3369 * reserved count if we can't make the allocation in order to hold our place
3370 * while we go and try and free up space. That way for retries > 1 we don't try
3371 * and add space, we just check to see if the amount of unused space is >= the
3372 * total space, meaning that our reservation is valid.
3373 *
3374 * However if we don't intend to retry this reservation, pass -1 as retries so
3375 * that it short circuits this logic.
3376 */
3377static int reserve_metadata_bytes(struct btrfs_trans_handle *trans,
3378 struct btrfs_root *root,
3379 struct btrfs_block_rsv *block_rsv,
3380 u64 orig_bytes, int flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003381{
3382 struct btrfs_space_info *space_info = block_rsv->space_info;
3383 u64 unused;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003384 u64 num_bytes = orig_bytes;
3385 int retries = 0;
3386 int ret = 0;
3387 bool reserved = false;
Josef Bacik38227932010-10-26 12:52:53 -04003388 bool committed = false;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003389
3390again:
3391 ret = -ENOSPC;
3392 if (reserved)
3393 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003394
3395 spin_lock(&space_info->lock);
3396 unused = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik6d487552010-10-15 15:13:32 -04003397 space_info->bytes_pinned + space_info->bytes_readonly +
3398 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003399
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003400 /*
3401 * The idea here is that we've not already over-reserved the block group
3402 * then we can go ahead and save our reservation first and then start
3403 * flushing if we need to. Otherwise if we've already overcommitted
3404 * lets start flushing stuff first and then come back and try to make
3405 * our reservation.
3406 */
3407 if (unused <= space_info->total_bytes) {
Arne Jansen6f334342010-11-12 23:17:56 +00003408 unused = space_info->total_bytes - unused;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003409 if (unused >= num_bytes) {
3410 if (!reserved)
3411 space_info->bytes_reserved += orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003412 ret = 0;
3413 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003414 /*
3415 * Ok set num_bytes to orig_bytes since we aren't
3416 * overocmmitted, this way we only try and reclaim what
3417 * we need.
3418 */
3419 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003420 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003421 } else {
3422 /*
3423 * Ok we're over committed, set num_bytes to the overcommitted
3424 * amount plus the amount of bytes that we need for this
3425 * reservation.
3426 */
3427 num_bytes = unused - space_info->total_bytes +
3428 (orig_bytes * (retries + 1));
Yan, Zhengf0486c62010-05-16 10:46:25 -04003429 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003430
3431 /*
3432 * Couldn't make our reservation, save our place so while we're trying
3433 * to reclaim space we can actually use it instead of somebody else
3434 * stealing it from us.
3435 */
3436 if (ret && !reserved) {
3437 space_info->bytes_reserved += orig_bytes;
3438 reserved = true;
3439 }
3440
Yan, Zhengf0486c62010-05-16 10:46:25 -04003441 spin_unlock(&space_info->lock);
3442
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003443 if (!ret)
3444 return 0;
3445
3446 if (!flush)
3447 goto out;
3448
3449 /*
3450 * We do synchronous shrinking since we don't actually unreserve
3451 * metadata until after the IO is completed.
3452 */
3453 ret = shrink_delalloc(trans, root, num_bytes, 1);
3454 if (ret > 0)
3455 return 0;
3456 else if (ret < 0)
3457 goto out;
3458
3459 /*
3460 * So if we were overcommitted it's possible that somebody else flushed
3461 * out enough space and we simply didn't have enough space to reclaim,
3462 * so go back around and try again.
3463 */
3464 if (retries < 2) {
3465 retries++;
3466 goto again;
3467 }
3468
3469 spin_lock(&space_info->lock);
3470 /*
3471 * Not enough space to be reclaimed, don't bother committing the
3472 * transaction.
3473 */
3474 if (space_info->bytes_pinned < orig_bytes)
3475 ret = -ENOSPC;
3476 spin_unlock(&space_info->lock);
3477 if (ret)
3478 goto out;
3479
3480 ret = -EAGAIN;
Josef Bacik38227932010-10-26 12:52:53 -04003481 if (trans || committed)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003482 goto out;
3483
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003484 ret = -ENOSPC;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003485 trans = btrfs_join_transaction(root);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003486 if (IS_ERR(trans))
3487 goto out;
3488 ret = btrfs_commit_transaction(trans, root);
Josef Bacik38227932010-10-26 12:52:53 -04003489 if (!ret) {
3490 trans = NULL;
3491 committed = true;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003492 goto again;
Josef Bacik38227932010-10-26 12:52:53 -04003493 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003494
3495out:
3496 if (reserved) {
3497 spin_lock(&space_info->lock);
3498 space_info->bytes_reserved -= orig_bytes;
3499 spin_unlock(&space_info->lock);
3500 }
3501
Yan, Zhengf0486c62010-05-16 10:46:25 -04003502 return ret;
3503}
3504
3505static struct btrfs_block_rsv *get_block_rsv(struct btrfs_trans_handle *trans,
3506 struct btrfs_root *root)
3507{
3508 struct btrfs_block_rsv *block_rsv;
3509 if (root->ref_cows)
3510 block_rsv = trans->block_rsv;
3511 else
3512 block_rsv = root->block_rsv;
3513
3514 if (!block_rsv)
3515 block_rsv = &root->fs_info->empty_block_rsv;
3516
3517 return block_rsv;
3518}
3519
3520static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
3521 u64 num_bytes)
3522{
3523 int ret = -ENOSPC;
3524 spin_lock(&block_rsv->lock);
3525 if (block_rsv->reserved >= num_bytes) {
3526 block_rsv->reserved -= num_bytes;
3527 if (block_rsv->reserved < block_rsv->size)
3528 block_rsv->full = 0;
3529 ret = 0;
3530 }
3531 spin_unlock(&block_rsv->lock);
3532 return ret;
3533}
3534
3535static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
3536 u64 num_bytes, int update_size)
3537{
3538 spin_lock(&block_rsv->lock);
3539 block_rsv->reserved += num_bytes;
3540 if (update_size)
3541 block_rsv->size += num_bytes;
3542 else if (block_rsv->reserved >= block_rsv->size)
3543 block_rsv->full = 1;
3544 spin_unlock(&block_rsv->lock);
3545}
3546
David Sterba62a45b62011-04-20 15:52:26 +02003547static void block_rsv_release_bytes(struct btrfs_block_rsv *block_rsv,
3548 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003549{
3550 struct btrfs_space_info *space_info = block_rsv->space_info;
3551
3552 spin_lock(&block_rsv->lock);
3553 if (num_bytes == (u64)-1)
3554 num_bytes = block_rsv->size;
3555 block_rsv->size -= num_bytes;
3556 if (block_rsv->reserved >= block_rsv->size) {
3557 num_bytes = block_rsv->reserved - block_rsv->size;
3558 block_rsv->reserved = block_rsv->size;
3559 block_rsv->full = 1;
3560 } else {
3561 num_bytes = 0;
3562 }
3563 spin_unlock(&block_rsv->lock);
3564
3565 if (num_bytes > 0) {
3566 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00003567 spin_lock(&dest->lock);
3568 if (!dest->full) {
3569 u64 bytes_to_add;
3570
3571 bytes_to_add = dest->size - dest->reserved;
3572 bytes_to_add = min(num_bytes, bytes_to_add);
3573 dest->reserved += bytes_to_add;
3574 if (dest->reserved >= dest->size)
3575 dest->full = 1;
3576 num_bytes -= bytes_to_add;
3577 }
3578 spin_unlock(&dest->lock);
3579 }
3580 if (num_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04003581 spin_lock(&space_info->lock);
3582 space_info->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05003583 space_info->reservation_progress++;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003584 spin_unlock(&space_info->lock);
3585 }
3586 }
3587}
3588
3589static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
3590 struct btrfs_block_rsv *dst, u64 num_bytes)
3591{
3592 int ret;
3593
3594 ret = block_rsv_use_bytes(src, num_bytes);
3595 if (ret)
3596 return ret;
3597
3598 block_rsv_add_bytes(dst, num_bytes, 1);
3599 return 0;
3600}
3601
3602void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv)
3603{
3604 memset(rsv, 0, sizeof(*rsv));
3605 spin_lock_init(&rsv->lock);
3606 atomic_set(&rsv->usage, 1);
3607 rsv->priority = 6;
3608 INIT_LIST_HEAD(&rsv->list);
3609}
3610
3611struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root)
3612{
3613 struct btrfs_block_rsv *block_rsv;
3614 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003615
3616 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
3617 if (!block_rsv)
3618 return NULL;
3619
3620 btrfs_init_block_rsv(block_rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003621 block_rsv->space_info = __find_space_info(fs_info,
3622 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003623 return block_rsv;
3624}
3625
3626void btrfs_free_block_rsv(struct btrfs_root *root,
3627 struct btrfs_block_rsv *rsv)
3628{
3629 if (rsv && atomic_dec_and_test(&rsv->usage)) {
3630 btrfs_block_rsv_release(root, rsv, (u64)-1);
3631 if (!rsv->durable)
3632 kfree(rsv);
3633 }
3634}
3635
3636/*
3637 * make the block_rsv struct be able to capture freed space.
3638 * the captured space will re-add to the the block_rsv struct
3639 * after transaction commit
3640 */
3641void btrfs_add_durable_block_rsv(struct btrfs_fs_info *fs_info,
3642 struct btrfs_block_rsv *block_rsv)
3643{
3644 block_rsv->durable = 1;
3645 mutex_lock(&fs_info->durable_block_rsv_mutex);
3646 list_add_tail(&block_rsv->list, &fs_info->durable_block_rsv_list);
3647 mutex_unlock(&fs_info->durable_block_rsv_mutex);
3648}
3649
3650int btrfs_block_rsv_add(struct btrfs_trans_handle *trans,
3651 struct btrfs_root *root,
3652 struct btrfs_block_rsv *block_rsv,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003653 u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003654{
3655 int ret;
3656
3657 if (num_bytes == 0)
3658 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003659
3660 ret = reserve_metadata_bytes(trans, root, block_rsv, num_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003661 if (!ret) {
3662 block_rsv_add_bytes(block_rsv, num_bytes, 1);
3663 return 0;
3664 }
3665
Yan, Zhengf0486c62010-05-16 10:46:25 -04003666 return ret;
3667}
3668
3669int btrfs_block_rsv_check(struct btrfs_trans_handle *trans,
3670 struct btrfs_root *root,
3671 struct btrfs_block_rsv *block_rsv,
3672 u64 min_reserved, int min_factor)
3673{
3674 u64 num_bytes = 0;
3675 int commit_trans = 0;
3676 int ret = -ENOSPC;
3677
3678 if (!block_rsv)
3679 return 0;
3680
3681 spin_lock(&block_rsv->lock);
3682 if (min_factor > 0)
3683 num_bytes = div_factor(block_rsv->size, min_factor);
3684 if (min_reserved > num_bytes)
3685 num_bytes = min_reserved;
3686
3687 if (block_rsv->reserved >= num_bytes) {
3688 ret = 0;
3689 } else {
3690 num_bytes -= block_rsv->reserved;
3691 if (block_rsv->durable &&
3692 block_rsv->freed[0] + block_rsv->freed[1] >= num_bytes)
3693 commit_trans = 1;
3694 }
3695 spin_unlock(&block_rsv->lock);
3696 if (!ret)
3697 return 0;
3698
3699 if (block_rsv->refill_used) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003700 ret = reserve_metadata_bytes(trans, root, block_rsv,
3701 num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003702 if (!ret) {
3703 block_rsv_add_bytes(block_rsv, num_bytes, 0);
3704 return 0;
3705 }
3706 }
3707
3708 if (commit_trans) {
3709 if (trans)
3710 return -EAGAIN;
3711
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003712 trans = btrfs_join_transaction(root);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003713 BUG_ON(IS_ERR(trans));
3714 ret = btrfs_commit_transaction(trans, root);
3715 return 0;
3716 }
3717
Yan, Zhengf0486c62010-05-16 10:46:25 -04003718 return -ENOSPC;
3719}
3720
3721int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
3722 struct btrfs_block_rsv *dst_rsv,
3723 u64 num_bytes)
3724{
3725 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3726}
3727
3728void btrfs_block_rsv_release(struct btrfs_root *root,
3729 struct btrfs_block_rsv *block_rsv,
3730 u64 num_bytes)
3731{
3732 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
3733 if (global_rsv->full || global_rsv == block_rsv ||
3734 block_rsv->space_info != global_rsv->space_info)
3735 global_rsv = NULL;
3736 block_rsv_release_bytes(block_rsv, global_rsv, num_bytes);
3737}
3738
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003739/*
3740 * helper to calculate size of global block reservation.
3741 * the desired value is sum of space used by extent tree,
3742 * checksum tree and root tree
3743 */
3744static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
3745{
3746 struct btrfs_space_info *sinfo;
3747 u64 num_bytes;
3748 u64 meta_used;
3749 u64 data_used;
3750 int csum_size = btrfs_super_csum_size(&fs_info->super_copy);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003751
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003752 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
3753 spin_lock(&sinfo->lock);
3754 data_used = sinfo->bytes_used;
3755 spin_unlock(&sinfo->lock);
3756
3757 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
3758 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04003759 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
3760 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003761 meta_used = sinfo->bytes_used;
3762 spin_unlock(&sinfo->lock);
3763
3764 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
3765 csum_size * 2;
3766 num_bytes += div64_u64(data_used + meta_used, 50);
3767
3768 if (num_bytes * 3 > meta_used)
3769 num_bytes = div64_u64(meta_used, 3);
3770
3771 return ALIGN(num_bytes, fs_info->extent_root->leafsize << 10);
3772}
3773
3774static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
3775{
3776 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
3777 struct btrfs_space_info *sinfo = block_rsv->space_info;
3778 u64 num_bytes;
3779
3780 num_bytes = calc_global_metadata_size(fs_info);
3781
3782 spin_lock(&block_rsv->lock);
3783 spin_lock(&sinfo->lock);
3784
3785 block_rsv->size = num_bytes;
3786
3787 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04003788 sinfo->bytes_reserved + sinfo->bytes_readonly +
3789 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003790
3791 if (sinfo->total_bytes > num_bytes) {
3792 num_bytes = sinfo->total_bytes - num_bytes;
3793 block_rsv->reserved += num_bytes;
3794 sinfo->bytes_reserved += num_bytes;
3795 }
3796
3797 if (block_rsv->reserved >= block_rsv->size) {
3798 num_bytes = block_rsv->reserved - block_rsv->size;
3799 sinfo->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05003800 sinfo->reservation_progress++;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003801 block_rsv->reserved = block_rsv->size;
3802 block_rsv->full = 1;
3803 }
David Sterba182608c2011-05-05 13:13:16 +02003804
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003805 spin_unlock(&sinfo->lock);
3806 spin_unlock(&block_rsv->lock);
3807}
3808
Yan, Zhengf0486c62010-05-16 10:46:25 -04003809static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
3810{
3811 struct btrfs_space_info *space_info;
3812
3813 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
3814 fs_info->chunk_block_rsv.space_info = space_info;
3815 fs_info->chunk_block_rsv.priority = 10;
3816
3817 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003818 fs_info->global_block_rsv.space_info = space_info;
3819 fs_info->global_block_rsv.priority = 10;
3820 fs_info->global_block_rsv.refill_used = 1;
3821 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003822 fs_info->trans_block_rsv.space_info = space_info;
3823 fs_info->empty_block_rsv.space_info = space_info;
3824 fs_info->empty_block_rsv.priority = 10;
3825
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003826 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
3827 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
3828 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
3829 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003830 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003831
3832 btrfs_add_durable_block_rsv(fs_info, &fs_info->global_block_rsv);
3833
3834 btrfs_add_durable_block_rsv(fs_info, &fs_info->delalloc_block_rsv);
3835
3836 update_global_block_rsv(fs_info);
3837}
3838
3839static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
3840{
3841 block_rsv_release_bytes(&fs_info->global_block_rsv, NULL, (u64)-1);
3842 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
3843 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
3844 WARN_ON(fs_info->trans_block_rsv.size > 0);
3845 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
3846 WARN_ON(fs_info->chunk_block_rsv.size > 0);
3847 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003848}
3849
Josef Bacikfcb80c22011-05-03 10:40:22 -04003850int btrfs_truncate_reserve_metadata(struct btrfs_trans_handle *trans,
3851 struct btrfs_root *root,
3852 struct btrfs_block_rsv *rsv)
3853{
3854 struct btrfs_block_rsv *trans_rsv = &root->fs_info->trans_block_rsv;
3855 u64 num_bytes;
3856 int ret;
3857
3858 /*
3859 * Truncate should be freeing data, but give us 2 items just in case it
3860 * needs to use some space. We may want to be smarter about this in the
3861 * future.
3862 */
Chris Masonff5714c2011-05-28 07:00:39 -04003863 num_bytes = btrfs_calc_trans_metadata_size(root, 2);
Josef Bacikfcb80c22011-05-03 10:40:22 -04003864
3865 /* We already have enough bytes, just return */
3866 if (rsv->reserved >= num_bytes)
3867 return 0;
3868
3869 num_bytes -= rsv->reserved;
3870
3871 /*
3872 * You should have reserved enough space before hand to do this, so this
3873 * should not fail.
3874 */
3875 ret = block_rsv_migrate_bytes(trans_rsv, rsv, num_bytes);
3876 BUG_ON(ret);
3877
3878 return 0;
3879}
3880
Yan, Zhenga22285a2010-05-16 10:48:46 -04003881int btrfs_trans_reserve_metadata(struct btrfs_trans_handle *trans,
3882 struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003883 int num_items)
Yan, Zhenga22285a2010-05-16 10:48:46 -04003884{
3885 u64 num_bytes;
3886 int ret;
3887
3888 if (num_items == 0 || root->fs_info->chunk_root == root)
3889 return 0;
3890
Miao Xie16cdcec2011-04-22 18:12:22 +08003891 num_bytes = btrfs_calc_trans_metadata_size(root, num_items);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003892 ret = btrfs_block_rsv_add(trans, root, &root->fs_info->trans_block_rsv,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003893 num_bytes);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003894 if (!ret) {
3895 trans->bytes_reserved += num_bytes;
3896 trans->block_rsv = &root->fs_info->trans_block_rsv;
3897 }
3898 return ret;
3899}
3900
3901void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
3902 struct btrfs_root *root)
3903{
3904 if (!trans->bytes_reserved)
3905 return;
3906
3907 BUG_ON(trans->block_rsv != &root->fs_info->trans_block_rsv);
3908 btrfs_block_rsv_release(root, trans->block_rsv,
3909 trans->bytes_reserved);
3910 trans->bytes_reserved = 0;
3911}
3912
Yan, Zhengd68fc572010-05-16 10:49:58 -04003913int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
3914 struct inode *inode)
3915{
3916 struct btrfs_root *root = BTRFS_I(inode)->root;
3917 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
3918 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
3919
3920 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04003921 * We need to hold space in order to delete our orphan item once we've
3922 * added it, so this takes the reservation so we can release it later
3923 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04003924 */
Chris Masonff5714c2011-05-28 07:00:39 -04003925 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003926 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3927}
3928
3929void btrfs_orphan_release_metadata(struct inode *inode)
3930{
3931 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonff5714c2011-05-28 07:00:39 -04003932 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003933 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
3934}
3935
Yan, Zhenga22285a2010-05-16 10:48:46 -04003936int btrfs_snap_reserve_metadata(struct btrfs_trans_handle *trans,
3937 struct btrfs_pending_snapshot *pending)
3938{
3939 struct btrfs_root *root = pending->root;
3940 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
3941 struct btrfs_block_rsv *dst_rsv = &pending->block_rsv;
3942 /*
3943 * two for root back/forward refs, two for directory entries
3944 * and one for root of the snapshot.
3945 */
Miao Xie16cdcec2011-04-22 18:12:22 +08003946 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003947 dst_rsv->space_info = src_rsv->space_info;
3948 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3949}
3950
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003951static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes)
3952{
3953 return num_bytes >>= 3;
3954}
3955
3956int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
3957{
3958 struct btrfs_root *root = BTRFS_I(inode)->root;
3959 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
3960 u64 to_reserve;
3961 int nr_extents;
Josef Bacik57a45ced2011-01-25 16:30:38 -05003962 int reserved_extents;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003963 int ret;
3964
3965 if (btrfs_transaction_in_commit(root->fs_info))
3966 schedule_timeout(1);
3967
3968 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003969
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003970 nr_extents = atomic_read(&BTRFS_I(inode)->outstanding_extents) + 1;
Josef Bacik57a45ced2011-01-25 16:30:38 -05003971 reserved_extents = atomic_read(&BTRFS_I(inode)->reserved_extents);
3972
3973 if (nr_extents > reserved_extents) {
3974 nr_extents -= reserved_extents;
Miao Xie16cdcec2011-04-22 18:12:22 +08003975 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003976 } else {
3977 nr_extents = 0;
3978 to_reserve = 0;
3979 }
Josef Bacik57a45ced2011-01-25 16:30:38 -05003980
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003981 to_reserve += calc_csum_metadata_size(inode, num_bytes);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003982 ret = reserve_metadata_bytes(NULL, root, block_rsv, to_reserve, 1);
3983 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003984 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003985
Josef Bacik57a45ced2011-01-25 16:30:38 -05003986 atomic_add(nr_extents, &BTRFS_I(inode)->reserved_extents);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003987 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003988
3989 block_rsv_add_bytes(block_rsv, to_reserve, 1);
3990
3991 if (block_rsv->size > 512 * 1024 * 1024)
Josef Bacik0019f102010-10-15 15:18:40 -04003992 shrink_delalloc(NULL, root, to_reserve, 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003993
3994 return 0;
3995}
3996
3997void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
3998{
3999 struct btrfs_root *root = BTRFS_I(inode)->root;
4000 u64 to_free;
4001 int nr_extents;
Josef Bacik57a45ced2011-01-25 16:30:38 -05004002 int reserved_extents;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004003
4004 num_bytes = ALIGN(num_bytes, root->sectorsize);
4005 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik3c148742011-02-02 15:53:47 +00004006 WARN_ON(atomic_read(&BTRFS_I(inode)->outstanding_extents) < 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004007
Josef Bacik57a45ced2011-01-25 16:30:38 -05004008 reserved_extents = atomic_read(&BTRFS_I(inode)->reserved_extents);
4009 do {
4010 int old, new;
4011
4012 nr_extents = atomic_read(&BTRFS_I(inode)->outstanding_extents);
4013 if (nr_extents >= reserved_extents) {
4014 nr_extents = 0;
4015 break;
4016 }
4017 old = reserved_extents;
4018 nr_extents = reserved_extents - nr_extents;
4019 new = reserved_extents - nr_extents;
4020 old = atomic_cmpxchg(&BTRFS_I(inode)->reserved_extents,
4021 reserved_extents, new);
4022 if (likely(old == reserved_extents))
4023 break;
4024 reserved_extents = old;
4025 } while (1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004026
4027 to_free = calc_csum_metadata_size(inode, num_bytes);
4028 if (nr_extents > 0)
Miao Xie16cdcec2011-04-22 18:12:22 +08004029 to_free += btrfs_calc_trans_metadata_size(root, nr_extents);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004030
4031 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
4032 to_free);
4033}
4034
4035int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
4036{
4037 int ret;
4038
4039 ret = btrfs_check_data_free_space(inode, num_bytes);
4040 if (ret)
4041 return ret;
4042
4043 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
4044 if (ret) {
4045 btrfs_free_reserved_data_space(inode, num_bytes);
4046 return ret;
4047 }
4048
4049 return 0;
4050}
4051
4052void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
4053{
4054 btrfs_delalloc_release_metadata(inode, num_bytes);
4055 btrfs_free_reserved_data_space(inode, num_bytes);
4056}
4057
Chris Mason9078a3e2007-04-26 16:46:15 -04004058static int update_block_group(struct btrfs_trans_handle *trans,
4059 struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04004060 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04004061{
Josef Bacik0af3d002010-06-21 14:48:16 -04004062 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04004063 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04004064 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004065 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04004066 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04004067 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04004068
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004069 /* block accounting for super block */
4070 spin_lock(&info->delalloc_lock);
4071 old_val = btrfs_super_bytes_used(&info->super_copy);
4072 if (alloc)
4073 old_val += num_bytes;
4074 else
4075 old_val -= num_bytes;
4076 btrfs_set_super_bytes_used(&info->super_copy, old_val);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004077 spin_unlock(&info->delalloc_lock);
4078
Chris Masond3977122009-01-05 21:25:51 -05004079 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04004080 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004081 if (!cache)
Chris Mason9078a3e2007-04-26 16:46:15 -04004082 return -1;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004083 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
4084 BTRFS_BLOCK_GROUP_RAID1 |
4085 BTRFS_BLOCK_GROUP_RAID10))
4086 factor = 2;
4087 else
4088 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04004089 /*
4090 * If this block group has free space cache written out, we
4091 * need to make sure to load it if we are removing space. This
4092 * is because we need the unpinning stage to actually add the
4093 * space back to the block group, otherwise we will leak space.
4094 */
4095 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Josef Bacikb8399de2010-12-08 09:15:11 -05004096 cache_block_group(cache, trans, NULL, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04004097
Chris Masondb945352007-10-15 16:15:53 -04004098 byte_in_group = bytenr - cache->key.objectid;
4099 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04004100
Josef Bacik25179202008-10-29 14:49:05 -04004101 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04004102 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04004103
4104 if (btrfs_super_cache_generation(&info->super_copy) != 0 &&
4105 cache->disk_cache_state < BTRFS_DC_CLEAR)
4106 cache->disk_cache_state = BTRFS_DC_CLEAR;
4107
Josef Bacik0f9dd462008-09-23 13:14:11 -04004108 cache->dirty = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04004109 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04004110 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04004111 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04004112 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04004113 btrfs_set_block_group_used(&cache->item, old_val);
4114 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04004115 cache->space_info->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05004116 cache->space_info->reservation_progress++;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004117 cache->space_info->bytes_used += num_bytes;
4118 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04004119 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04004120 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04004121 } else {
Chris Masondb945352007-10-15 16:15:53 -04004122 old_val -= num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04004123 btrfs_set_block_group_used(&cache->item, old_val);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004124 cache->pinned += num_bytes;
4125 cache->space_info->bytes_pinned += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004126 cache->space_info->bytes_used -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004127 cache->space_info->disk_used -= num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04004128 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04004129 spin_unlock(&cache->space_info->lock);
Liu Hui1f3c79a2009-01-05 15:57:51 -05004130
Yan, Zhengf0486c62010-05-16 10:46:25 -04004131 set_extent_dirty(info->pinned_extents,
4132 bytenr, bytenr + num_bytes - 1,
4133 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04004134 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04004135 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04004136 total -= num_bytes;
4137 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004138 }
4139 return 0;
4140}
Chris Mason6324fbf2008-03-24 15:01:59 -04004141
Chris Masona061fc82008-05-07 11:43:44 -04004142static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
4143{
Josef Bacik0f9dd462008-09-23 13:14:11 -04004144 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004145 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004146
4147 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
4148 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04004149 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004150
Yan Zhengd2fb3432008-12-11 16:30:39 -05004151 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04004152 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05004153
4154 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04004155}
4156
Yan, Zhengf0486c62010-05-16 10:46:25 -04004157static int pin_down_extent(struct btrfs_root *root,
4158 struct btrfs_block_group_cache *cache,
4159 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05004160{
Yan Zheng11833d62009-09-11 16:11:19 -04004161 spin_lock(&cache->space_info->lock);
4162 spin_lock(&cache->lock);
4163 cache->pinned += num_bytes;
4164 cache->space_info->bytes_pinned += num_bytes;
4165 if (reserved) {
4166 cache->reserved -= num_bytes;
4167 cache->space_info->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05004168 cache->space_info->reservation_progress++;
Yan324ae4d2007-11-16 14:57:08 -05004169 }
Yan Zheng11833d62009-09-11 16:11:19 -04004170 spin_unlock(&cache->lock);
4171 spin_unlock(&cache->space_info->lock);
4172
Yan, Zhengf0486c62010-05-16 10:46:25 -04004173 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
4174 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05004175 return 0;
4176}
Chris Mason9078a3e2007-04-26 16:46:15 -04004177
Yan, Zhengf0486c62010-05-16 10:46:25 -04004178/*
4179 * this function must be called within transaction
4180 */
4181int btrfs_pin_extent(struct btrfs_root *root,
4182 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04004183{
Yan, Zhengf0486c62010-05-16 10:46:25 -04004184 struct btrfs_block_group_cache *cache;
4185
4186 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
4187 BUG_ON(!cache);
4188
4189 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
4190
4191 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04004192 return 0;
4193}
Zheng Yane8569812008-09-26 10:05:48 -04004194
Yan, Zhengf0486c62010-05-16 10:46:25 -04004195/*
4196 * update size of reserved extents. this function may return -EAGAIN
4197 * if 'reserve' is true or 'sinfo' is false.
4198 */
Li Dongyangb4d00d52011-03-24 10:24:25 +00004199int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
4200 u64 num_bytes, int reserve, int sinfo)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004201{
4202 int ret = 0;
4203 if (sinfo) {
4204 struct btrfs_space_info *space_info = cache->space_info;
4205 spin_lock(&space_info->lock);
4206 spin_lock(&cache->lock);
4207 if (reserve) {
4208 if (cache->ro) {
4209 ret = -EAGAIN;
4210 } else {
4211 cache->reserved += num_bytes;
4212 space_info->bytes_reserved += num_bytes;
4213 }
4214 } else {
4215 if (cache->ro)
4216 space_info->bytes_readonly += num_bytes;
4217 cache->reserved -= num_bytes;
4218 space_info->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05004219 space_info->reservation_progress++;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004220 }
4221 spin_unlock(&cache->lock);
4222 spin_unlock(&space_info->lock);
4223 } else {
4224 spin_lock(&cache->lock);
4225 if (cache->ro) {
4226 ret = -EAGAIN;
4227 } else {
4228 if (reserve)
4229 cache->reserved += num_bytes;
4230 else
4231 cache->reserved -= num_bytes;
4232 }
4233 spin_unlock(&cache->lock);
4234 }
4235 return ret;
4236}
4237
Yan Zheng11833d62009-09-11 16:11:19 -04004238int btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
4239 struct btrfs_root *root)
4240{
4241 struct btrfs_fs_info *fs_info = root->fs_info;
4242 struct btrfs_caching_control *next;
4243 struct btrfs_caching_control *caching_ctl;
4244 struct btrfs_block_group_cache *cache;
4245
4246 down_write(&fs_info->extent_commit_sem);
4247
4248 list_for_each_entry_safe(caching_ctl, next,
4249 &fs_info->caching_block_groups, list) {
4250 cache = caching_ctl->block_group;
4251 if (block_group_cache_done(cache)) {
4252 cache->last_byte_to_unpin = (u64)-1;
4253 list_del_init(&caching_ctl->list);
4254 put_caching_control(caching_ctl);
4255 } else {
4256 cache->last_byte_to_unpin = caching_ctl->progress;
4257 }
4258 }
4259
4260 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
4261 fs_info->pinned_extents = &fs_info->freed_extents[1];
4262 else
4263 fs_info->pinned_extents = &fs_info->freed_extents[0];
4264
4265 up_write(&fs_info->extent_commit_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004266
4267 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04004268 return 0;
4269}
4270
4271static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
4272{
4273 struct btrfs_fs_info *fs_info = root->fs_info;
4274 struct btrfs_block_group_cache *cache = NULL;
4275 u64 len;
4276
4277 while (start <= end) {
4278 if (!cache ||
4279 start >= cache->key.objectid + cache->key.offset) {
4280 if (cache)
4281 btrfs_put_block_group(cache);
4282 cache = btrfs_lookup_block_group(fs_info, start);
4283 BUG_ON(!cache);
4284 }
4285
4286 len = cache->key.objectid + cache->key.offset - start;
4287 len = min(len, end + 1 - start);
4288
4289 if (start < cache->last_byte_to_unpin) {
4290 len = min(len, cache->last_byte_to_unpin - start);
4291 btrfs_add_free_space(cache, start, len);
4292 }
Josef Bacik25179202008-10-29 14:49:05 -04004293
Yan, Zhengf0486c62010-05-16 10:46:25 -04004294 start += len;
4295
Josef Bacik25179202008-10-29 14:49:05 -04004296 spin_lock(&cache->space_info->lock);
4297 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04004298 cache->pinned -= len;
4299 cache->space_info->bytes_pinned -= len;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004300 if (cache->ro) {
4301 cache->space_info->bytes_readonly += len;
4302 } else if (cache->reserved_pinned > 0) {
4303 len = min(len, cache->reserved_pinned);
4304 cache->reserved_pinned -= len;
4305 cache->space_info->bytes_reserved += len;
4306 }
Josef Bacik25179202008-10-29 14:49:05 -04004307 spin_unlock(&cache->lock);
4308 spin_unlock(&cache->space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04004309 }
4310
4311 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04004312 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04004313 return 0;
4314}
4315
4316int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04004317 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05004318{
Yan Zheng11833d62009-09-11 16:11:19 -04004319 struct btrfs_fs_info *fs_info = root->fs_info;
4320 struct extent_io_tree *unpin;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004321 struct btrfs_block_rsv *block_rsv;
4322 struct btrfs_block_rsv *next_rsv;
Chris Mason1a5bc162007-10-15 16:15:26 -04004323 u64 start;
4324 u64 end;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004325 int idx;
Chris Masona28ec192007-03-06 20:08:01 -05004326 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05004327
Yan Zheng11833d62009-09-11 16:11:19 -04004328 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
4329 unpin = &fs_info->freed_extents[1];
4330 else
4331 unpin = &fs_info->freed_extents[0];
4332
Chris Masond3977122009-01-05 21:25:51 -05004333 while (1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04004334 ret = find_first_extent_bit(unpin, 0, &start, &end,
4335 EXTENT_DIRTY);
4336 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05004337 break;
Liu Hui1f3c79a2009-01-05 15:57:51 -05004338
Li Dongyang5378e602011-03-24 10:24:27 +00004339 if (btrfs_test_opt(root, DISCARD))
4340 ret = btrfs_discard_extent(root, start,
4341 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05004342
Chris Mason1a5bc162007-10-15 16:15:26 -04004343 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Yan Zheng11833d62009-09-11 16:11:19 -04004344 unpin_extent_range(root, start, end);
Chris Masonb9473432009-03-13 11:00:37 -04004345 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05004346 }
Josef Bacik817d52f2009-07-13 21:29:25 -04004347
Yan, Zhengf0486c62010-05-16 10:46:25 -04004348 mutex_lock(&fs_info->durable_block_rsv_mutex);
4349 list_for_each_entry_safe(block_rsv, next_rsv,
4350 &fs_info->durable_block_rsv_list, list) {
Chris Masona28ec192007-03-06 20:08:01 -05004351
Yan, Zhengf0486c62010-05-16 10:46:25 -04004352 idx = trans->transid & 0x1;
4353 if (block_rsv->freed[idx] > 0) {
4354 block_rsv_add_bytes(block_rsv,
4355 block_rsv->freed[idx], 0);
4356 block_rsv->freed[idx] = 0;
Chris Mason8ef97622007-03-26 10:15:30 -04004357 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004358 if (atomic_read(&block_rsv->usage) == 0) {
4359 btrfs_block_rsv_release(root, block_rsv, (u64)-1);
Zheng Yan31840ae2008-09-23 13:14:14 -04004360
Yan, Zhengf0486c62010-05-16 10:46:25 -04004361 if (block_rsv->freed[0] == 0 &&
4362 block_rsv->freed[1] == 0) {
4363 list_del_init(&block_rsv->list);
4364 kfree(block_rsv);
4365 }
4366 } else {
4367 btrfs_block_rsv_release(root, block_rsv, 0);
4368 }
4369 }
4370 mutex_unlock(&fs_info->durable_block_rsv_mutex);
4371
Chris Masone20d96d2007-03-22 12:13:20 -04004372 return 0;
4373}
4374
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004375static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
4376 struct btrfs_root *root,
4377 u64 bytenr, u64 num_bytes, u64 parent,
4378 u64 root_objectid, u64 owner_objectid,
4379 u64 owner_offset, int refs_to_drop,
4380 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05004381{
Chris Masone2fa7222007-03-12 16:22:34 -04004382 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004383 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04004384 struct btrfs_fs_info *info = root->fs_info;
4385 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04004386 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004387 struct btrfs_extent_item *ei;
4388 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05004389 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004390 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05004391 int extent_slot = 0;
4392 int found_extent = 0;
4393 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004394 u32 item_size;
4395 u64 refs;
Chris Mason037e6392007-03-07 11:50:24 -05004396
Chris Mason5caf2a02007-04-02 11:20:42 -04004397 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04004398 if (!path)
4399 return -ENOMEM;
4400
Chris Mason3c12ac72008-04-21 12:01:38 -04004401 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04004402 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004403
4404 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
4405 BUG_ON(!is_data && refs_to_drop != 1);
4406
4407 ret = lookup_extent_backref(trans, extent_root, path, &iref,
4408 bytenr, num_bytes, parent,
4409 root_objectid, owner_objectid,
4410 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05004411 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05004412 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004413 while (extent_slot >= 0) {
4414 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05004415 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004416 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05004417 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004418 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
4419 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05004420 found_extent = 1;
4421 break;
4422 }
4423 if (path->slots[0] - extent_slot > 5)
4424 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004425 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05004426 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004427#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4428 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
4429 if (found_extent && item_size < sizeof(*ei))
4430 found_extent = 0;
4431#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04004432 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004433 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04004434 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004435 NULL, refs_to_drop,
4436 is_data);
Zheng Yan31840ae2008-09-23 13:14:14 -04004437 BUG_ON(ret);
David Sterbab3b4aa72011-04-21 01:20:15 +02004438 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04004439 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004440
4441 key.objectid = bytenr;
4442 key.type = BTRFS_EXTENT_ITEM_KEY;
4443 key.offset = num_bytes;
4444
Zheng Yan31840ae2008-09-23 13:14:14 -04004445 ret = btrfs_search_slot(trans, extent_root,
4446 &key, path, -1, 1);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004447 if (ret) {
4448 printk(KERN_ERR "umm, got %d back from search"
Chris Masond3977122009-01-05 21:25:51 -05004449 ", was looking for %llu\n", ret,
4450 (unsigned long long)bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004451 btrfs_print_leaf(extent_root, path->nodes[0]);
4452 }
Zheng Yan31840ae2008-09-23 13:14:14 -04004453 BUG_ON(ret);
4454 extent_slot = path->slots[0];
4455 }
Chris Mason7bb86312007-12-11 09:25:06 -05004456 } else {
4457 btrfs_print_leaf(extent_root, path->nodes[0]);
4458 WARN_ON(1);
Chris Masond3977122009-01-05 21:25:51 -05004459 printk(KERN_ERR "btrfs unable to find ref byte nr %llu "
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004460 "parent %llu root %llu owner %llu offset %llu\n",
Chris Masond3977122009-01-05 21:25:51 -05004461 (unsigned long long)bytenr,
Chris Mason56bec292009-03-13 10:10:06 -04004462 (unsigned long long)parent,
Chris Masond3977122009-01-05 21:25:51 -05004463 (unsigned long long)root_objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004464 (unsigned long long)owner_objectid,
4465 (unsigned long long)owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05004466 }
Chris Mason5f39d392007-10-15 16:14:19 -04004467
4468 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004469 item_size = btrfs_item_size_nr(leaf, extent_slot);
4470#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4471 if (item_size < sizeof(*ei)) {
4472 BUG_ON(found_extent || extent_slot != path->slots[0]);
4473 ret = convert_extent_item_v0(trans, extent_root, path,
4474 owner_objectid, 0);
4475 BUG_ON(ret < 0);
4476
David Sterbab3b4aa72011-04-21 01:20:15 +02004477 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004478 path->leave_spinning = 1;
4479
4480 key.objectid = bytenr;
4481 key.type = BTRFS_EXTENT_ITEM_KEY;
4482 key.offset = num_bytes;
4483
4484 ret = btrfs_search_slot(trans, extent_root, &key, path,
4485 -1, 1);
4486 if (ret) {
4487 printk(KERN_ERR "umm, got %d back from search"
4488 ", was looking for %llu\n", ret,
4489 (unsigned long long)bytenr);
4490 btrfs_print_leaf(extent_root, path->nodes[0]);
4491 }
4492 BUG_ON(ret);
4493 extent_slot = path->slots[0];
4494 leaf = path->nodes[0];
4495 item_size = btrfs_item_size_nr(leaf, extent_slot);
4496 }
4497#endif
4498 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05004499 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04004500 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004501 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID) {
4502 struct btrfs_tree_block_info *bi;
4503 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
4504 bi = (struct btrfs_tree_block_info *)(ei + 1);
4505 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05004506 }
4507
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004508 refs = btrfs_extent_refs(leaf, ei);
4509 BUG_ON(refs < refs_to_drop);
4510 refs -= refs_to_drop;
4511
4512 if (refs > 0) {
4513 if (extent_op)
4514 __run_delayed_extent_op(extent_op, leaf, ei);
4515 /*
4516 * In the case of inline back ref, reference count will
4517 * be updated by remove_extent_backref
4518 */
4519 if (iref) {
4520 BUG_ON(!found_extent);
4521 } else {
4522 btrfs_set_extent_refs(leaf, ei, refs);
4523 btrfs_mark_buffer_dirty(leaf);
4524 }
4525 if (found_extent) {
4526 ret = remove_extent_backref(trans, extent_root, path,
4527 iref, refs_to_drop,
4528 is_data);
4529 BUG_ON(ret);
4530 }
4531 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004532 if (found_extent) {
4533 BUG_ON(is_data && refs_to_drop !=
4534 extent_data_ref_count(root, path, iref));
4535 if (iref) {
4536 BUG_ON(path->slots[0] != extent_slot);
4537 } else {
4538 BUG_ON(path->slots[0] != extent_slot + 1);
4539 path->slots[0] = extent_slot;
4540 num_to_del = 2;
4541 }
Chris Mason78fae272007-03-25 11:35:08 -04004542 }
Chris Masonb9473432009-03-13 11:00:37 -04004543
Chris Mason952fcca2008-02-18 16:33:44 -05004544 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
4545 num_to_del);
Zheng Yan31840ae2008-09-23 13:14:14 -04004546 BUG_ON(ret);
David Sterbab3b4aa72011-04-21 01:20:15 +02004547 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01004548
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004549 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05004550 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
4551 BUG_ON(ret);
Chris Masond57e62b2009-03-31 13:47:50 -04004552 } else {
4553 invalidate_mapping_pages(info->btree_inode->i_mapping,
4554 bytenr >> PAGE_CACHE_SHIFT,
4555 (bytenr + num_bytes - 1) >> PAGE_CACHE_SHIFT);
Chris Mason459931e2008-12-10 09:10:46 -05004556 }
4557
Yan, Zhengf0486c62010-05-16 10:46:25 -04004558 ret = update_block_group(trans, root, bytenr, num_bytes, 0);
Chris Masondcbdd4d2008-12-16 13:51:01 -05004559 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05004560 }
Chris Mason5caf2a02007-04-02 11:20:42 -04004561 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05004562 return ret;
4563}
4564
4565/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04004566 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04004567 * delayed ref for that extent as well. This searches the delayed ref tree for
4568 * a given extent, and if there are no other delayed refs to be processed, it
4569 * removes it from the tree.
4570 */
4571static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
4572 struct btrfs_root *root, u64 bytenr)
4573{
4574 struct btrfs_delayed_ref_head *head;
4575 struct btrfs_delayed_ref_root *delayed_refs;
4576 struct btrfs_delayed_ref_node *ref;
4577 struct rb_node *node;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004578 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04004579
4580 delayed_refs = &trans->transaction->delayed_refs;
4581 spin_lock(&delayed_refs->lock);
4582 head = btrfs_find_delayed_ref_head(trans, bytenr);
4583 if (!head)
4584 goto out;
4585
4586 node = rb_prev(&head->node.rb_node);
4587 if (!node)
4588 goto out;
4589
4590 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
4591
4592 /* there are still entries for this ref, we can't drop it */
4593 if (ref->bytenr == bytenr)
4594 goto out;
4595
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004596 if (head->extent_op) {
4597 if (!head->must_insert_reserved)
4598 goto out;
4599 kfree(head->extent_op);
4600 head->extent_op = NULL;
4601 }
4602
Chris Mason1887be62009-03-13 10:11:24 -04004603 /*
4604 * waiting for the lock here would deadlock. If someone else has it
4605 * locked they are already in the process of dropping it anyway
4606 */
4607 if (!mutex_trylock(&head->mutex))
4608 goto out;
4609
4610 /*
4611 * at this point we have a head with no other entries. Go
4612 * ahead and process it.
4613 */
4614 head->node.in_tree = 0;
4615 rb_erase(&head->node.rb_node, &delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04004616
Chris Mason1887be62009-03-13 10:11:24 -04004617 delayed_refs->num_entries--;
4618
4619 /*
4620 * we don't take a ref on the node because we're removing it from the
4621 * tree, so we just steal the ref the tree was holding.
4622 */
Chris Masonc3e69d52009-03-13 10:17:05 -04004623 delayed_refs->num_heads--;
4624 if (list_empty(&head->cluster))
4625 delayed_refs->num_heads_ready--;
4626
4627 list_del_init(&head->cluster);
Chris Mason1887be62009-03-13 10:11:24 -04004628 spin_unlock(&delayed_refs->lock);
4629
Yan, Zhengf0486c62010-05-16 10:46:25 -04004630 BUG_ON(head->extent_op);
4631 if (head->must_insert_reserved)
4632 ret = 1;
4633
4634 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04004635 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004636 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04004637out:
4638 spin_unlock(&delayed_refs->lock);
4639 return 0;
4640}
4641
Yan, Zhengf0486c62010-05-16 10:46:25 -04004642void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
4643 struct btrfs_root *root,
4644 struct extent_buffer *buf,
4645 u64 parent, int last_ref)
4646{
4647 struct btrfs_block_rsv *block_rsv;
4648 struct btrfs_block_group_cache *cache = NULL;
4649 int ret;
4650
4651 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4652 ret = btrfs_add_delayed_tree_ref(trans, buf->start, buf->len,
4653 parent, root->root_key.objectid,
4654 btrfs_header_level(buf),
4655 BTRFS_DROP_DELAYED_REF, NULL);
4656 BUG_ON(ret);
4657 }
4658
4659 if (!last_ref)
4660 return;
4661
4662 block_rsv = get_block_rsv(trans, root);
4663 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
Yan, Zheng3bf84a52010-05-31 09:04:46 +00004664 if (block_rsv->space_info != cache->space_info)
4665 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004666
4667 if (btrfs_header_generation(buf) == trans->transid) {
4668 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4669 ret = check_ref_cleanup(trans, root, buf->start);
4670 if (!ret)
4671 goto pin;
4672 }
4673
4674 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
4675 pin_down_extent(root, cache, buf->start, buf->len, 1);
4676 goto pin;
4677 }
4678
4679 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
4680
4681 btrfs_add_free_space(cache, buf->start, buf->len);
Li Dongyangb4d00d52011-03-24 10:24:25 +00004682 ret = btrfs_update_reserved_bytes(cache, buf->len, 0, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004683 if (ret == -EAGAIN) {
4684 /* block group became read-only */
Li Dongyangb4d00d52011-03-24 10:24:25 +00004685 btrfs_update_reserved_bytes(cache, buf->len, 0, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004686 goto out;
4687 }
4688
4689 ret = 1;
4690 spin_lock(&block_rsv->lock);
4691 if (block_rsv->reserved < block_rsv->size) {
4692 block_rsv->reserved += buf->len;
4693 ret = 0;
4694 }
4695 spin_unlock(&block_rsv->lock);
4696
4697 if (ret) {
4698 spin_lock(&cache->space_info->lock);
4699 cache->space_info->bytes_reserved -= buf->len;
Chris Mason36e39c42011-03-12 07:08:42 -05004700 cache->space_info->reservation_progress++;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004701 spin_unlock(&cache->space_info->lock);
4702 }
4703 goto out;
4704 }
4705pin:
4706 if (block_rsv->durable && !cache->ro) {
4707 ret = 0;
4708 spin_lock(&cache->lock);
4709 if (!cache->ro) {
4710 cache->reserved_pinned += buf->len;
4711 ret = 1;
4712 }
4713 spin_unlock(&cache->lock);
4714
4715 if (ret) {
4716 spin_lock(&block_rsv->lock);
4717 block_rsv->freed[trans->transid & 0x1] += buf->len;
4718 spin_unlock(&block_rsv->lock);
4719 }
4720 }
4721out:
Josef Bacika826d6d2011-03-16 13:42:43 -04004722 /*
4723 * Deleting the buffer, clear the corrupt flag since it doesn't matter
4724 * anymore.
4725 */
4726 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004727 btrfs_put_block_group(cache);
4728}
4729
Chris Mason925baed2008-06-25 16:01:30 -04004730int btrfs_free_extent(struct btrfs_trans_handle *trans,
Zheng Yan31840ae2008-09-23 13:14:14 -04004731 struct btrfs_root *root,
4732 u64 bytenr, u64 num_bytes, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004733 u64 root_objectid, u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04004734{
4735 int ret;
4736
Chris Mason56bec292009-03-13 10:10:06 -04004737 /*
4738 * tree log blocks never actually go into the extent allocation
4739 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04004740 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004741 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
4742 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04004743 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04004744 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04004745 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004746 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
4747 ret = btrfs_add_delayed_tree_ref(trans, bytenr, num_bytes,
4748 parent, root_objectid, (int)owner,
4749 BTRFS_DROP_DELAYED_REF, NULL);
Chris Mason1887be62009-03-13 10:11:24 -04004750 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004751 } else {
4752 ret = btrfs_add_delayed_data_ref(trans, bytenr, num_bytes,
4753 parent, root_objectid, owner,
4754 offset, BTRFS_DROP_DELAYED_REF, NULL);
4755 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04004756 }
Chris Mason925baed2008-06-25 16:01:30 -04004757 return ret;
4758}
4759
Chris Mason87ee04e2007-11-30 11:30:34 -05004760static u64 stripe_align(struct btrfs_root *root, u64 val)
4761{
4762 u64 mask = ((u64)root->stripesize - 1);
4763 u64 ret = (val + mask) & ~mask;
4764 return ret;
4765}
4766
Chris Masonfec577f2007-02-26 10:40:21 -05004767/*
Josef Bacik817d52f2009-07-13 21:29:25 -04004768 * when we wait for progress in the block group caching, its because
4769 * our allocation attempt failed at least once. So, we must sleep
4770 * and let some progress happen before we try again.
4771 *
4772 * This function will sleep at least once waiting for new free space to
4773 * show up, and then it will check the block group free space numbers
4774 * for our min num_bytes. Another option is to have it go ahead
4775 * and look in the rbtree for a free extent of a given size, but this
4776 * is a good start.
4777 */
4778static noinline int
4779wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
4780 u64 num_bytes)
4781{
Yan Zheng11833d62009-09-11 16:11:19 -04004782 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04004783 DEFINE_WAIT(wait);
4784
Yan Zheng11833d62009-09-11 16:11:19 -04004785 caching_ctl = get_caching_control(cache);
4786 if (!caching_ctl)
Josef Bacik817d52f2009-07-13 21:29:25 -04004787 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -04004788
Yan Zheng11833d62009-09-11 16:11:19 -04004789 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08004790 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04004791
4792 put_caching_control(caching_ctl);
4793 return 0;
4794}
4795
4796static noinline int
4797wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
4798{
4799 struct btrfs_caching_control *caching_ctl;
4800 DEFINE_WAIT(wait);
4801
4802 caching_ctl = get_caching_control(cache);
4803 if (!caching_ctl)
4804 return 0;
4805
4806 wait_event(caching_ctl->wait, block_group_cache_done(cache));
4807
4808 put_caching_control(caching_ctl);
Josef Bacik817d52f2009-07-13 21:29:25 -04004809 return 0;
4810}
4811
Yan, Zhengb742bb82010-05-16 10:46:24 -04004812static int get_block_group_index(struct btrfs_block_group_cache *cache)
4813{
4814 int index;
4815 if (cache->flags & BTRFS_BLOCK_GROUP_RAID10)
4816 index = 0;
4817 else if (cache->flags & BTRFS_BLOCK_GROUP_RAID1)
4818 index = 1;
4819 else if (cache->flags & BTRFS_BLOCK_GROUP_DUP)
4820 index = 2;
4821 else if (cache->flags & BTRFS_BLOCK_GROUP_RAID0)
4822 index = 3;
4823 else
4824 index = 4;
4825 return index;
4826}
4827
Josef Bacik817d52f2009-07-13 21:29:25 -04004828enum btrfs_loop_type {
Josef Bacikccf0e722009-11-10 21:23:48 -05004829 LOOP_FIND_IDEAL = 0,
Josef Bacik817d52f2009-07-13 21:29:25 -04004830 LOOP_CACHING_NOWAIT = 1,
4831 LOOP_CACHING_WAIT = 2,
4832 LOOP_ALLOC_CHUNK = 3,
4833 LOOP_NO_EMPTY_SIZE = 4,
4834};
4835
4836/*
Chris Masonfec577f2007-02-26 10:40:21 -05004837 * walks the btree of allocated extents and find a hole of a given size.
4838 * The key ins is changed to record the hole:
4839 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04004840 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05004841 * ins->offset == number of blocks
4842 * Any available blocks before search_start are skipped.
4843 */
Chris Masond3977122009-01-05 21:25:51 -05004844static noinline int find_free_extent(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05004845 struct btrfs_root *orig_root,
4846 u64 num_bytes, u64 empty_size,
4847 u64 search_start, u64 search_end,
4848 u64 hint_byte, struct btrfs_key *ins,
Chris Mason98ed5172008-01-03 10:01:48 -05004849 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05004850{
Josef Bacik80eb2342008-10-29 14:49:05 -04004851 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05004852 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04004853 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04004854 struct btrfs_block_group_cache *block_group = NULL;
Chris Mason239b14b2008-03-24 15:02:07 -04004855 int empty_cluster = 2 * 1024 * 1024;
Chris Mason0ef3e662008-05-24 14:04:53 -04004856 int allowed_chunk_alloc = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05004857 int done_chunk_alloc = 0;
Josef Bacik80eb2342008-10-29 14:49:05 -04004858 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04004859 int last_ptr_loop = 0;
4860 int loop = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004861 int index = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -04004862 bool found_uncached_bg = false;
Josef Bacik0a243252009-09-11 16:11:20 -04004863 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04004864 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04004865 bool use_cluster = true;
Josef Bacikccf0e722009-11-10 21:23:48 -05004866 u64 ideal_cache_percent = 0;
4867 u64 ideal_cache_offset = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05004868
Chris Masondb945352007-10-15 16:15:53 -04004869 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04004870 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
Josef Bacik80eb2342008-10-29 14:49:05 -04004871 ins->objectid = 0;
4872 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04004873
Josef Bacik2552d172009-04-03 10:14:19 -04004874 space_info = __find_space_info(root->fs_info, data);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00004875 if (!space_info) {
4876 printk(KERN_ERR "No space info for %d\n", data);
4877 return -ENOSPC;
4878 }
Josef Bacik2552d172009-04-03 10:14:19 -04004879
Josef Bacik67377732010-09-16 16:19:09 -04004880 /*
4881 * If the space info is for both data and metadata it means we have a
4882 * small filesystem and we can't use the clustering stuff.
4883 */
4884 if (btrfs_mixed_space_info(space_info))
4885 use_cluster = false;
4886
Chris Mason0ef3e662008-05-24 14:04:53 -04004887 if (orig_root->ref_cows || empty_size)
4888 allowed_chunk_alloc = 1;
4889
Josef Bacik67377732010-09-16 16:19:09 -04004890 if (data & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04004891 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05004892 if (!btrfs_test_opt(root, SSD))
4893 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04004894 }
4895
Josef Bacik67377732010-09-16 16:19:09 -04004896 if ((data & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
4897 btrfs_test_opt(root, SSD)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04004898 last_ptr = &root->fs_info->data_alloc_cluster;
4899 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04004900
Chris Mason239b14b2008-03-24 15:02:07 -04004901 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04004902 spin_lock(&last_ptr->lock);
4903 if (last_ptr->block_group)
4904 hint_byte = last_ptr->window_start;
4905 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04004906 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04004907
Chris Masona061fc82008-05-07 11:43:44 -04004908 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04004909 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04004910
Josef Bacik817d52f2009-07-13 21:29:25 -04004911 if (!last_ptr)
Chris Masonfa9c0d792009-04-03 09:47:43 -04004912 empty_cluster = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04004913
Josef Bacik2552d172009-04-03 10:14:19 -04004914 if (search_start == hint_byte) {
Josef Bacikccf0e722009-11-10 21:23:48 -05004915ideal_cache:
Josef Bacik2552d172009-04-03 10:14:19 -04004916 block_group = btrfs_lookup_block_group(root->fs_info,
4917 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04004918 /*
4919 * we don't want to use the block group if it doesn't match our
4920 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05004921 *
4922 * However if we are re-searching with an ideal block group
4923 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04004924 */
4925 if (block_group && block_group_bits(block_group, data) &&
Josef Bacikccf0e722009-11-10 21:23:48 -05004926 (block_group->cached != BTRFS_CACHE_NO ||
4927 search_start == ideal_cache_offset)) {
Josef Bacik2552d172009-04-03 10:14:19 -04004928 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04004929 if (list_empty(&block_group->list) ||
4930 block_group->ro) {
4931 /*
4932 * someone is removing this block group,
4933 * we can't jump into the have_block_group
4934 * target because our list pointers are not
4935 * valid
4936 */
4937 btrfs_put_block_group(block_group);
4938 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05004939 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04004940 index = get_block_group_index(block_group);
Chris Mason44fb5512009-06-04 15:34:51 -04004941 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05004942 }
Josef Bacik2552d172009-04-03 10:14:19 -04004943 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04004944 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04004945 }
Chris Mason42e70e72008-11-07 18:17:11 -05004946 }
Josef Bacik2552d172009-04-03 10:14:19 -04004947search:
Josef Bacik80eb2342008-10-29 14:49:05 -04004948 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04004949 list_for_each_entry(block_group, &space_info->block_groups[index],
4950 list) {
Josef Bacik6226cb02009-04-03 10:14:18 -04004951 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04004952 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05004953
Josef Bacik11dfe352009-11-13 20:12:59 +00004954 btrfs_get_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04004955 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05004956
Chris Mason83a50de2010-12-13 15:06:46 -05004957 /*
4958 * this can happen if we end up cycling through all the
4959 * raid types, but we want to make sure we only allocate
4960 * for the proper type.
4961 */
4962 if (!block_group_bits(block_group, data)) {
4963 u64 extra = BTRFS_BLOCK_GROUP_DUP |
4964 BTRFS_BLOCK_GROUP_RAID1 |
4965 BTRFS_BLOCK_GROUP_RAID10;
4966
4967 /*
4968 * if they asked for extra copies and this block group
4969 * doesn't provide them, bail. This does allow us to
4970 * fill raid0 from raid1.
4971 */
4972 if ((data & extra) && !(block_group->flags & extra))
4973 goto loop;
4974 }
4975
Josef Bacik2552d172009-04-03 10:14:19 -04004976have_block_group:
Josef Bacik817d52f2009-07-13 21:29:25 -04004977 if (unlikely(block_group->cached == BTRFS_CACHE_NO)) {
Josef Bacikccf0e722009-11-10 21:23:48 -05004978 u64 free_percent;
4979
Josef Bacikb8399de2010-12-08 09:15:11 -05004980 ret = cache_block_group(block_group, trans,
4981 orig_root, 1);
Josef Bacik9d66e232010-08-25 16:54:15 -04004982 if (block_group->cached == BTRFS_CACHE_FINISHED)
4983 goto have_block_group;
4984
Josef Bacikccf0e722009-11-10 21:23:48 -05004985 free_percent = btrfs_block_group_used(&block_group->item);
4986 free_percent *= 100;
4987 free_percent = div64_u64(free_percent,
4988 block_group->key.offset);
4989 free_percent = 100 - free_percent;
4990 if (free_percent > ideal_cache_percent &&
4991 likely(!block_group->ro)) {
4992 ideal_cache_offset = block_group->key.objectid;
4993 ideal_cache_percent = free_percent;
4994 }
4995
Josef Bacik817d52f2009-07-13 21:29:25 -04004996 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05004997 * We only want to start kthread caching if we are at
4998 * the point where we will wait for caching to make
4999 * progress, or if our ideal search is over and we've
5000 * found somebody to start caching.
Josef Bacik817d52f2009-07-13 21:29:25 -04005001 */
5002 if (loop > LOOP_CACHING_NOWAIT ||
Josef Bacikccf0e722009-11-10 21:23:48 -05005003 (loop > LOOP_FIND_IDEAL &&
5004 atomic_read(&space_info->caching_threads) < 2)) {
Josef Bacikb8399de2010-12-08 09:15:11 -05005005 ret = cache_block_group(block_group, trans,
5006 orig_root, 0);
Josef Bacik817d52f2009-07-13 21:29:25 -04005007 BUG_ON(ret);
Josef Bacik2552d172009-04-03 10:14:19 -04005008 }
Josef Bacikccf0e722009-11-10 21:23:48 -05005009 found_uncached_bg = true;
5010
5011 /*
5012 * If loop is set for cached only, try the next block
5013 * group.
5014 */
5015 if (loop == LOOP_FIND_IDEAL)
5016 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05005017 }
5018
Josef Bacik817d52f2009-07-13 21:29:25 -04005019 cached = block_group_cache_done(block_group);
Josef Bacikccf0e722009-11-10 21:23:48 -05005020 if (unlikely(!cached))
Josef Bacik817d52f2009-07-13 21:29:25 -04005021 found_uncached_bg = true;
5022
Josef Bacikea6a4782008-11-20 12:16:16 -05005023 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04005024 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005025
Chris Masonff5714c2011-05-28 07:00:39 -04005026 spin_lock(&block_group->free_space_ctl->tree_lock);
Josef Bacikcca1c812011-05-13 11:07:12 -04005027 if (cached &&
Chris Masonff5714c2011-05-28 07:00:39 -04005028 block_group->free_space_ctl->free_space <
5029 num_bytes + empty_size) {
5030 spin_unlock(&block_group->free_space_ctl->tree_lock);
Josef Bacikcca1c812011-05-13 11:07:12 -04005031 goto loop;
5032 }
Chris Masonff5714c2011-05-28 07:00:39 -04005033 spin_unlock(&block_group->free_space_ctl->tree_lock);
Josef Bacikcca1c812011-05-13 11:07:12 -04005034
Josef Bacik0a243252009-09-11 16:11:20 -04005035 /*
5036 * Ok we want to try and use the cluster allocator, so lets look
5037 * there, unless we are on LOOP_NO_EMPTY_SIZE, since we will
5038 * have tried the cluster allocator plenty of times at this
5039 * point and not have found anything, so we are likely way too
5040 * fragmented for the clustering stuff to find anything, so lets
5041 * just skip it and let the allocator find whatever block it can
5042 * find
5043 */
5044 if (last_ptr && loop < LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005045 /*
5046 * the refill lock keeps out other
5047 * people trying to start a new cluster
5048 */
5049 spin_lock(&last_ptr->refill_lock);
Chris Mason44fb5512009-06-04 15:34:51 -04005050 if (last_ptr->block_group &&
5051 (last_ptr->block_group->ro ||
5052 !block_group_bits(last_ptr->block_group, data))) {
5053 offset = 0;
5054 goto refill_cluster;
5055 }
5056
Chris Masonfa9c0d792009-04-03 09:47:43 -04005057 offset = btrfs_alloc_from_cluster(block_group, last_ptr,
5058 num_bytes, search_start);
5059 if (offset) {
5060 /* we have a block, we're done */
5061 spin_unlock(&last_ptr->refill_lock);
5062 goto checks;
5063 }
5064
5065 spin_lock(&last_ptr->lock);
5066 /*
5067 * whoops, this cluster doesn't actually point to
5068 * this block group. Get a ref on the block
5069 * group is does point to and try again
5070 */
5071 if (!last_ptr_loop && last_ptr->block_group &&
5072 last_ptr->block_group != block_group) {
5073
5074 btrfs_put_block_group(block_group);
5075 block_group = last_ptr->block_group;
Josef Bacik11dfe352009-11-13 20:12:59 +00005076 btrfs_get_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005077 spin_unlock(&last_ptr->lock);
5078 spin_unlock(&last_ptr->refill_lock);
5079
5080 last_ptr_loop = 1;
5081 search_start = block_group->key.objectid;
Chris Mason44fb5512009-06-04 15:34:51 -04005082 /*
5083 * we know this block group is properly
5084 * in the list because
5085 * btrfs_remove_block_group, drops the
5086 * cluster before it removes the block
5087 * group from the list
5088 */
Chris Masonfa9c0d792009-04-03 09:47:43 -04005089 goto have_block_group;
5090 }
5091 spin_unlock(&last_ptr->lock);
Chris Mason44fb5512009-06-04 15:34:51 -04005092refill_cluster:
Chris Masonfa9c0d792009-04-03 09:47:43 -04005093 /*
5094 * this cluster didn't work out, free it and
5095 * start over
5096 */
5097 btrfs_return_cluster_to_free_space(NULL, last_ptr);
5098
5099 last_ptr_loop = 0;
5100
5101 /* allocate a cluster in this block group */
Chris Mason451d7582009-06-09 20:28:34 -04005102 ret = btrfs_find_space_cluster(trans, root,
Chris Masonfa9c0d792009-04-03 09:47:43 -04005103 block_group, last_ptr,
5104 offset, num_bytes,
5105 empty_cluster + empty_size);
5106 if (ret == 0) {
5107 /*
5108 * now pull our allocation out of this
5109 * cluster
5110 */
5111 offset = btrfs_alloc_from_cluster(block_group,
5112 last_ptr, num_bytes,
5113 search_start);
5114 if (offset) {
5115 /* we found one, proceed */
5116 spin_unlock(&last_ptr->refill_lock);
5117 goto checks;
5118 }
Josef Bacik0a243252009-09-11 16:11:20 -04005119 } else if (!cached && loop > LOOP_CACHING_NOWAIT
5120 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005121 spin_unlock(&last_ptr->refill_lock);
5122
Josef Bacik0a243252009-09-11 16:11:20 -04005123 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04005124 wait_block_group_cache_progress(block_group,
5125 num_bytes + empty_cluster + empty_size);
5126 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005127 }
Josef Bacik817d52f2009-07-13 21:29:25 -04005128
Chris Masonfa9c0d792009-04-03 09:47:43 -04005129 /*
5130 * at this point we either didn't find a cluster
5131 * or we weren't able to allocate a block from our
5132 * cluster. Free the cluster we've been trying
5133 * to use, and go to the next block group
5134 */
Josef Bacik0a243252009-09-11 16:11:20 -04005135 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005136 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04005137 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005138 }
5139
Josef Bacik6226cb02009-04-03 10:14:18 -04005140 offset = btrfs_find_space_for_alloc(block_group, search_start,
5141 num_bytes, empty_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005142 /*
5143 * If we didn't find a chunk, and we haven't failed on this
5144 * block group before, and this block group is in the middle of
5145 * caching and we are ok with waiting, then go ahead and wait
5146 * for progress to be made, and set failed_alloc to true.
5147 *
5148 * If failed_alloc is true then we've already waited on this
5149 * block group once and should move on to the next block group.
5150 */
5151 if (!offset && !failed_alloc && !cached &&
5152 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005153 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005154 num_bytes + empty_size);
5155 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04005156 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005157 } else if (!offset) {
5158 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04005159 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04005160checks:
Josef Bacik6226cb02009-04-03 10:14:18 -04005161 search_start = stripe_align(root, offset);
Josef Bacik2552d172009-04-03 10:14:19 -04005162 /* move on to the next group */
Josef Bacik6226cb02009-04-03 10:14:18 -04005163 if (search_start + num_bytes >= search_end) {
5164 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04005165 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04005166 }
Chris Masone37c9e62007-05-09 20:13:14 -04005167
Josef Bacik2552d172009-04-03 10:14:19 -04005168 /* move on to the next group */
5169 if (search_start + num_bytes >
Josef Bacik6226cb02009-04-03 10:14:18 -04005170 block_group->key.objectid + block_group->key.offset) {
5171 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04005172 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04005173 }
Josef Bacik80eb2342008-10-29 14:49:05 -04005174
Josef Bacik2552d172009-04-03 10:14:19 -04005175 ins->objectid = search_start;
5176 ins->offset = num_bytes;
5177
Josef Bacik6226cb02009-04-03 10:14:18 -04005178 if (offset < search_start)
5179 btrfs_add_free_space(block_group, offset,
5180 search_start - offset);
5181 BUG_ON(offset > search_start);
5182
Li Dongyangb4d00d52011-03-24 10:24:25 +00005183 ret = btrfs_update_reserved_bytes(block_group, num_bytes, 1,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005184 (data & BTRFS_BLOCK_GROUP_DATA));
5185 if (ret == -EAGAIN) {
5186 btrfs_add_free_space(block_group, offset, num_bytes);
5187 goto loop;
5188 }
Yan Zheng11833d62009-09-11 16:11:19 -04005189
Josef Bacik2552d172009-04-03 10:14:19 -04005190 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005191 ins->objectid = search_start;
5192 ins->offset = num_bytes;
5193
5194 if (offset < search_start)
5195 btrfs_add_free_space(block_group, offset,
5196 search_start - offset);
5197 BUG_ON(offset > search_start);
Josef Bacikd82a6f12011-05-11 15:26:06 -04005198 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04005199 break;
5200loop:
Josef Bacik0a243252009-09-11 16:11:20 -04005201 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005202 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005203 BUG_ON(index != get_block_group_index(block_group));
Chris Masonfa9c0d792009-04-03 09:47:43 -04005204 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04005205 }
5206 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05005207
Yan, Zhengb742bb82010-05-16 10:46:24 -04005208 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
5209 goto search;
5210
Josef Bacikccf0e722009-11-10 21:23:48 -05005211 /* LOOP_FIND_IDEAL, only search caching/cached bg's, and don't wait for
5212 * for them to make caching progress. Also
5213 * determine the best possible bg to cache
5214 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
5215 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04005216 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
5217 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
5218 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
5219 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04005220 */
Josef Bacik723bda22011-05-27 16:11:38 -04005221 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04005222 index = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05005223 if (loop == LOOP_FIND_IDEAL && found_uncached_bg) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005224 found_uncached_bg = false;
Josef Bacikccf0e722009-11-10 21:23:48 -05005225 loop++;
5226 if (!ideal_cache_percent &&
5227 atomic_read(&space_info->caching_threads))
Josef Bacik817d52f2009-07-13 21:29:25 -04005228 goto search;
Josef Bacikccf0e722009-11-10 21:23:48 -05005229
5230 /*
5231 * 1 of the following 2 things have happened so far
5232 *
5233 * 1) We found an ideal block group for caching that
5234 * is mostly full and will cache quickly, so we might
5235 * as well wait for it.
5236 *
5237 * 2) We searched for cached only and we didn't find
5238 * anything, and we didn't start any caching kthreads
5239 * either, so chances are we will loop through and
5240 * start a couple caching kthreads, and then come back
5241 * around and just wait for them. This will be slower
5242 * because we will have 2 caching kthreads reading at
5243 * the same time when we could have just started one
5244 * and waited for it to get far enough to give us an
5245 * allocation, so go ahead and go to the wait caching
5246 * loop.
5247 */
5248 loop = LOOP_CACHING_WAIT;
5249 search_start = ideal_cache_offset;
5250 ideal_cache_percent = 0;
5251 goto ideal_cache;
5252 } else if (loop == LOOP_FIND_IDEAL) {
5253 /*
5254 * Didn't find a uncached bg, wait on anything we find
5255 * next.
5256 */
5257 loop = LOOP_CACHING_WAIT;
5258 goto search;
5259 }
5260
Josef Bacik723bda22011-05-27 16:11:38 -04005261 loop++;
Josef Bacik817d52f2009-07-13 21:29:25 -04005262
5263 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik723bda22011-05-27 16:11:38 -04005264 if (allowed_chunk_alloc) {
5265 ret = do_chunk_alloc(trans, root, num_bytes +
5266 2 * 1024 * 1024, data,
5267 CHUNK_ALLOC_LIMITED);
5268 allowed_chunk_alloc = 0;
5269 if (ret == 1)
5270 done_chunk_alloc = 1;
5271 } else if (!done_chunk_alloc &&
5272 space_info->force_alloc ==
5273 CHUNK_ALLOC_NO_FORCE) {
5274 space_info->force_alloc = CHUNK_ALLOC_LIMITED;
5275 }
5276
5277 /*
5278 * We didn't allocate a chunk, go ahead and drop the
5279 * empty size and loop again.
5280 */
5281 if (!done_chunk_alloc)
5282 loop = LOOP_NO_EMPTY_SIZE;
5283 }
5284
5285 if (loop == LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005286 empty_size = 0;
5287 empty_cluster = 0;
5288 }
Chris Mason42e70e72008-11-07 18:17:11 -05005289
Josef Bacik723bda22011-05-27 16:11:38 -04005290 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04005291 } else if (!ins->objectid) {
5292 ret = -ENOSPC;
Josef Bacikd82a6f12011-05-11 15:26:06 -04005293 } else if (ins->objectid) {
Josef Bacik2552d172009-04-03 10:14:19 -04005294 ret = 0;
5295 }
Chris Mason0b86a832008-03-24 15:01:56 -04005296
Chris Mason0f70abe2007-02-28 16:46:22 -05005297 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05005298}
Chris Masonec44a352008-04-28 15:29:52 -04005299
Josef Bacik9ed74f22009-09-11 16:12:44 -04005300static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
5301 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04005302{
5303 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005304 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005305
Josef Bacik9ed74f22009-09-11 16:12:44 -04005306 spin_lock(&info->lock);
Chris Masond3977122009-01-05 21:25:51 -05005307 printk(KERN_INFO "space_info has %llu free, is %sfull\n",
5308 (unsigned long long)(info->total_bytes - info->bytes_used -
Josef Bacik9ed74f22009-09-11 16:12:44 -04005309 info->bytes_pinned - info->bytes_reserved -
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005310 info->bytes_readonly),
Chris Masond3977122009-01-05 21:25:51 -05005311 (info->full) ? "" : "not ");
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005312 printk(KERN_INFO "space_info total=%llu, used=%llu, pinned=%llu, "
5313 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Joel Becker21380932009-04-21 12:38:29 -07005314 (unsigned long long)info->total_bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -04005315 (unsigned long long)info->bytes_used,
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005316 (unsigned long long)info->bytes_pinned,
5317 (unsigned long long)info->bytes_reserved,
5318 (unsigned long long)info->bytes_may_use,
5319 (unsigned long long)info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005320 spin_unlock(&info->lock);
5321
5322 if (!dump_block_groups)
5323 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005324
Josef Bacik80eb2342008-10-29 14:49:05 -04005325 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04005326again:
5327 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04005328 spin_lock(&cache->lock);
Chris Masond3977122009-01-05 21:25:51 -05005329 printk(KERN_INFO "block group %llu has %llu bytes, %llu used "
5330 "%llu pinned %llu reserved\n",
5331 (unsigned long long)cache->key.objectid,
5332 (unsigned long long)cache->key.offset,
5333 (unsigned long long)btrfs_block_group_used(&cache->item),
5334 (unsigned long long)cache->pinned,
5335 (unsigned long long)cache->reserved);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005336 btrfs_dump_free_space(cache, bytes);
5337 spin_unlock(&cache->lock);
5338 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04005339 if (++index < BTRFS_NR_RAID_TYPES)
5340 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04005341 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005342}
Zheng Yane8569812008-09-26 10:05:48 -04005343
Yan Zheng11833d62009-09-11 16:11:19 -04005344int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
5345 struct btrfs_root *root,
5346 u64 num_bytes, u64 min_alloc_size,
5347 u64 empty_size, u64 hint_byte,
5348 u64 search_end, struct btrfs_key *ins,
5349 u64 data)
Chris Masonfec577f2007-02-26 10:40:21 -05005350{
5351 int ret;
Chris Masonfbdc7622007-05-30 10:22:12 -04005352 u64 search_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005353
Josef Bacik6a632092009-02-20 11:00:09 -05005354 data = btrfs_get_alloc_profile(root, data);
Chris Mason98d20f62008-04-14 09:46:10 -04005355again:
Chris Mason0ef3e662008-05-24 14:04:53 -04005356 /*
5357 * the only place that sets empty_size is btrfs_realloc_node, which
5358 * is not called recursively on allocations
5359 */
Josef Bacik83d3c962009-12-07 21:45:59 +00005360 if (empty_size || root->ref_cows)
Chris Mason6324fbf2008-03-24 15:01:59 -04005361 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04005362 num_bytes + 2 * 1024 * 1024, data,
5363 CHUNK_ALLOC_NO_FORCE);
Chris Mason0b86a832008-03-24 15:01:56 -04005364
Chris Masondb945352007-10-15 16:15:53 -04005365 WARN_ON(num_bytes < root->sectorsize);
5366 ret = find_free_extent(trans, root, num_bytes, empty_size,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005367 search_start, search_end, hint_byte,
5368 ins, data);
Chris Mason3b951512008-04-17 11:29:12 -04005369
Chris Mason98d20f62008-04-14 09:46:10 -04005370 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
5371 num_bytes = num_bytes >> 1;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005372 num_bytes = num_bytes & ~(root->sectorsize - 1);
Chris Mason98d20f62008-04-14 09:46:10 -04005373 num_bytes = max(num_bytes, min_alloc_size);
Chris Mason0ef3e662008-05-24 14:04:53 -04005374 do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04005375 num_bytes, data, CHUNK_ALLOC_FORCE);
Chris Mason98d20f62008-04-14 09:46:10 -04005376 goto again;
5377 }
Chris Mason91435652011-02-16 13:10:41 -05005378 if (ret == -ENOSPC && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04005379 struct btrfs_space_info *sinfo;
5380
5381 sinfo = __find_space_info(root->fs_info, data);
Chris Masond3977122009-01-05 21:25:51 -05005382 printk(KERN_ERR "btrfs allocation failed flags %llu, "
5383 "wanted %llu\n", (unsigned long long)data,
5384 (unsigned long long)num_bytes);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005385 dump_space_info(sinfo, num_bytes, 1);
Chris Mason925baed2008-06-25 16:01:30 -04005386 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04005387
liubo1abe9b82011-03-24 11:18:59 +00005388 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
5389
Josef Bacik0f9dd462008-09-23 13:14:11 -04005390 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005391}
5392
Chris Mason65b51a02008-08-01 15:11:20 -04005393int btrfs_free_reserved_extent(struct btrfs_root *root, u64 start, u64 len)
5394{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005395 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05005396 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005397
Josef Bacik0f9dd462008-09-23 13:14:11 -04005398 cache = btrfs_lookup_block_group(root->fs_info, start);
5399 if (!cache) {
Chris Masond3977122009-01-05 21:25:51 -05005400 printk(KERN_ERR "Unable to find block group for %llu\n",
5401 (unsigned long long)start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005402 return -ENOSPC;
5403 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05005404
Li Dongyang5378e602011-03-24 10:24:27 +00005405 if (btrfs_test_opt(root, DISCARD))
5406 ret = btrfs_discard_extent(root, start, len, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05005407
Josef Bacik0f9dd462008-09-23 13:14:11 -04005408 btrfs_add_free_space(cache, start, len);
Li Dongyangb4d00d52011-03-24 10:24:25 +00005409 btrfs_update_reserved_bytes(cache, len, 0, 1);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005410 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04005411
liubo1abe9b82011-03-24 11:18:59 +00005412 trace_btrfs_reserved_extent_free(root, start, len);
5413
Chris Masone6dcd2d2008-07-17 12:53:50 -04005414 return ret;
5415}
5416
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005417static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5418 struct btrfs_root *root,
5419 u64 parent, u64 root_objectid,
5420 u64 flags, u64 owner, u64 offset,
5421 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04005422{
5423 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005424 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005425 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005426 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005427 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005428 struct extent_buffer *leaf;
5429 int type;
5430 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04005431
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005432 if (parent > 0)
5433 type = BTRFS_SHARED_DATA_REF_KEY;
5434 else
5435 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04005436
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005437 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05005438
5439 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00005440 if (!path)
5441 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05005442
Chris Masonb9473432009-03-13 11:00:37 -04005443 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005444 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
5445 ins, size);
Chris Masonccd467d2007-06-28 15:57:36 -04005446 BUG_ON(ret);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005447
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005448 leaf = path->nodes[0];
5449 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05005450 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005451 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
5452 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
5453 btrfs_set_extent_flags(leaf, extent_item,
5454 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05005455
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005456 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
5457 btrfs_set_extent_inline_ref_type(leaf, iref, type);
5458 if (parent > 0) {
5459 struct btrfs_shared_data_ref *ref;
5460 ref = (struct btrfs_shared_data_ref *)(iref + 1);
5461 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
5462 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
5463 } else {
5464 struct btrfs_extent_data_ref *ref;
5465 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
5466 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
5467 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
5468 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
5469 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
5470 }
Chris Mason47e4bb92008-02-01 14:51:59 -05005471
5472 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05005473 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04005474
Yan, Zhengf0486c62010-05-16 10:46:25 -04005475 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Chris Masonf5947062008-02-04 10:10:13 -05005476 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05005477 printk(KERN_ERR "btrfs update block group failed for %llu "
5478 "%llu\n", (unsigned long long)ins->objectid,
5479 (unsigned long long)ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05005480 BUG();
5481 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005482 return ret;
5483}
5484
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005485static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
5486 struct btrfs_root *root,
5487 u64 parent, u64 root_objectid,
5488 u64 flags, struct btrfs_disk_key *key,
5489 int level, struct btrfs_key *ins)
5490{
5491 int ret;
5492 struct btrfs_fs_info *fs_info = root->fs_info;
5493 struct btrfs_extent_item *extent_item;
5494 struct btrfs_tree_block_info *block_info;
5495 struct btrfs_extent_inline_ref *iref;
5496 struct btrfs_path *path;
5497 struct extent_buffer *leaf;
5498 u32 size = sizeof(*extent_item) + sizeof(*block_info) + sizeof(*iref);
5499
5500 path = btrfs_alloc_path();
5501 BUG_ON(!path);
5502
5503 path->leave_spinning = 1;
5504 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
5505 ins, size);
5506 BUG_ON(ret);
5507
5508 leaf = path->nodes[0];
5509 extent_item = btrfs_item_ptr(leaf, path->slots[0],
5510 struct btrfs_extent_item);
5511 btrfs_set_extent_refs(leaf, extent_item, 1);
5512 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
5513 btrfs_set_extent_flags(leaf, extent_item,
5514 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
5515 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
5516
5517 btrfs_set_tree_block_key(leaf, block_info, key);
5518 btrfs_set_tree_block_level(leaf, block_info, level);
5519
5520 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
5521 if (parent > 0) {
5522 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
5523 btrfs_set_extent_inline_ref_type(leaf, iref,
5524 BTRFS_SHARED_BLOCK_REF_KEY);
5525 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
5526 } else {
5527 btrfs_set_extent_inline_ref_type(leaf, iref,
5528 BTRFS_TREE_BLOCK_REF_KEY);
5529 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
5530 }
5531
5532 btrfs_mark_buffer_dirty(leaf);
5533 btrfs_free_path(path);
5534
Yan, Zhengf0486c62010-05-16 10:46:25 -04005535 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005536 if (ret) {
5537 printk(KERN_ERR "btrfs update block group failed for %llu "
5538 "%llu\n", (unsigned long long)ins->objectid,
5539 (unsigned long long)ins->offset);
5540 BUG();
5541 }
5542 return ret;
5543}
5544
5545int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5546 struct btrfs_root *root,
5547 u64 root_objectid, u64 owner,
5548 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04005549{
5550 int ret;
Chris Mason1c2308f2008-09-23 13:14:13 -04005551
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005552 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04005553
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005554 ret = btrfs_add_delayed_data_ref(trans, ins->objectid, ins->offset,
5555 0, root_objectid, owner, offset,
5556 BTRFS_ADD_DELAYED_EXTENT, NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005557 return ret;
5558}
Chris Masone02119d2008-09-05 16:13:11 -04005559
5560/*
5561 * this is used by the tree logging recovery code. It records that
5562 * an extent has been allocated and makes sure to clear the free
5563 * space cache bits as well
5564 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005565int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
5566 struct btrfs_root *root,
5567 u64 root_objectid, u64 owner, u64 offset,
5568 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04005569{
5570 int ret;
5571 struct btrfs_block_group_cache *block_group;
Yan Zheng11833d62009-09-11 16:11:19 -04005572 struct btrfs_caching_control *caching_ctl;
5573 u64 start = ins->objectid;
5574 u64 num_bytes = ins->offset;
Chris Masone02119d2008-09-05 16:13:11 -04005575
Chris Masone02119d2008-09-05 16:13:11 -04005576 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacikb8399de2010-12-08 09:15:11 -05005577 cache_block_group(block_group, trans, NULL, 0);
Yan Zheng11833d62009-09-11 16:11:19 -04005578 caching_ctl = get_caching_control(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04005579
Yan Zheng11833d62009-09-11 16:11:19 -04005580 if (!caching_ctl) {
5581 BUG_ON(!block_group_cache_done(block_group));
5582 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5583 BUG_ON(ret);
5584 } else {
5585 mutex_lock(&caching_ctl->mutex);
5586
5587 if (start >= caching_ctl->progress) {
5588 ret = add_excluded_extent(root, start, num_bytes);
5589 BUG_ON(ret);
5590 } else if (start + num_bytes <= caching_ctl->progress) {
5591 ret = btrfs_remove_free_space(block_group,
5592 start, num_bytes);
5593 BUG_ON(ret);
5594 } else {
5595 num_bytes = caching_ctl->progress - start;
5596 ret = btrfs_remove_free_space(block_group,
5597 start, num_bytes);
5598 BUG_ON(ret);
5599
5600 start = caching_ctl->progress;
5601 num_bytes = ins->objectid + ins->offset -
5602 caching_ctl->progress;
5603 ret = add_excluded_extent(root, start, num_bytes);
5604 BUG_ON(ret);
5605 }
5606
5607 mutex_unlock(&caching_ctl->mutex);
5608 put_caching_control(caching_ctl);
5609 }
5610
Li Dongyangb4d00d52011-03-24 10:24:25 +00005611 ret = btrfs_update_reserved_bytes(block_group, ins->offset, 1, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005612 BUG_ON(ret);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005613 btrfs_put_block_group(block_group);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005614 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
5615 0, owner, offset, ins, 1);
Chris Masone02119d2008-09-05 16:13:11 -04005616 return ret;
5617}
5618
Chris Mason65b51a02008-08-01 15:11:20 -04005619struct extent_buffer *btrfs_init_new_buffer(struct btrfs_trans_handle *trans,
5620 struct btrfs_root *root,
Chris Mason4008c042009-02-12 14:09:45 -05005621 u64 bytenr, u32 blocksize,
5622 int level)
Chris Mason65b51a02008-08-01 15:11:20 -04005623{
5624 struct extent_buffer *buf;
5625
5626 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
5627 if (!buf)
5628 return ERR_PTR(-ENOMEM);
5629 btrfs_set_header_generation(buf, trans->transid);
Chris Mason4008c042009-02-12 14:09:45 -05005630 btrfs_set_buffer_lockdep_class(buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04005631 btrfs_tree_lock(buf);
5632 clean_tree_block(trans, root, buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005633
5634 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04005635 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005636
Chris Masond0c803c2008-09-11 16:17:57 -04005637 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00005638 /*
5639 * we allow two log transactions at a time, use different
5640 * EXENT bit to differentiate dirty pages.
5641 */
5642 if (root->log_transid % 2 == 0)
5643 set_extent_dirty(&root->dirty_log_pages, buf->start,
5644 buf->start + buf->len - 1, GFP_NOFS);
5645 else
5646 set_extent_new(&root->dirty_log_pages, buf->start,
5647 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04005648 } else {
5649 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
5650 buf->start + buf->len - 1, GFP_NOFS);
5651 }
Chris Mason65b51a02008-08-01 15:11:20 -04005652 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005653 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04005654 return buf;
5655}
5656
Yan, Zhengf0486c62010-05-16 10:46:25 -04005657static struct btrfs_block_rsv *
5658use_block_rsv(struct btrfs_trans_handle *trans,
5659 struct btrfs_root *root, u32 blocksize)
5660{
5661 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00005662 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005663 int ret;
5664
5665 block_rsv = get_block_rsv(trans, root);
5666
5667 if (block_rsv->size == 0) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005668 ret = reserve_metadata_bytes(trans, root, block_rsv,
5669 blocksize, 0);
Josef Bacik68a82272011-01-24 21:43:20 +00005670 /*
5671 * If we couldn't reserve metadata bytes try and use some from
5672 * the global reserve.
5673 */
5674 if (ret && block_rsv != global_rsv) {
5675 ret = block_rsv_use_bytes(global_rsv, blocksize);
5676 if (!ret)
5677 return global_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005678 return ERR_PTR(ret);
Josef Bacik68a82272011-01-24 21:43:20 +00005679 } else if (ret) {
5680 return ERR_PTR(ret);
5681 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005682 return block_rsv;
5683 }
5684
5685 ret = block_rsv_use_bytes(block_rsv, blocksize);
5686 if (!ret)
5687 return block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00005688 if (ret) {
5689 WARN_ON(1);
5690 ret = reserve_metadata_bytes(trans, root, block_rsv, blocksize,
5691 0);
5692 if (!ret) {
5693 spin_lock(&block_rsv->lock);
5694 block_rsv->size += blocksize;
5695 spin_unlock(&block_rsv->lock);
5696 return block_rsv;
5697 } else if (ret && block_rsv != global_rsv) {
5698 ret = block_rsv_use_bytes(global_rsv, blocksize);
5699 if (!ret)
5700 return global_rsv;
5701 }
5702 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005703
Yan, Zhengf0486c62010-05-16 10:46:25 -04005704 return ERR_PTR(-ENOSPC);
5705}
5706
5707static void unuse_block_rsv(struct btrfs_block_rsv *block_rsv, u32 blocksize)
5708{
5709 block_rsv_add_bytes(block_rsv, blocksize, 0);
5710 block_rsv_release_bytes(block_rsv, NULL, 0);
5711}
5712
Chris Masonfec577f2007-02-26 10:40:21 -05005713/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04005714 * finds a free extent and does all the dirty work required for allocation
5715 * returns the key for the extent through ins, and a tree buffer for
5716 * the first block of the extent through buf.
5717 *
Chris Masonfec577f2007-02-26 10:40:21 -05005718 * returns the tree buffer or NULL.
5719 */
Chris Mason5f39d392007-10-15 16:14:19 -04005720struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005721 struct btrfs_root *root, u32 blocksize,
5722 u64 parent, u64 root_objectid,
5723 struct btrfs_disk_key *key, int level,
5724 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05005725{
Chris Masone2fa7222007-03-12 16:22:34 -04005726 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005727 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04005728 struct extent_buffer *buf;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005729 u64 flags = 0;
5730 int ret;
Chris Masonfec577f2007-02-26 10:40:21 -05005731
Yan, Zhengf0486c62010-05-16 10:46:25 -04005732
5733 block_rsv = use_block_rsv(trans, root, blocksize);
5734 if (IS_ERR(block_rsv))
5735 return ERR_CAST(block_rsv);
5736
5737 ret = btrfs_reserve_extent(trans, root, blocksize, blocksize,
5738 empty_size, hint, (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05005739 if (ret) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005740 unuse_block_rsv(block_rsv, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04005741 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05005742 }
Chris Mason55c69072008-01-09 15:55:33 -05005743
Chris Mason4008c042009-02-12 14:09:45 -05005744 buf = btrfs_init_new_buffer(trans, root, ins.objectid,
5745 blocksize, level);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005746 BUG_ON(IS_ERR(buf));
5747
5748 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
5749 if (parent == 0)
5750 parent = ins.objectid;
5751 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
5752 } else
5753 BUG_ON(parent > 0);
5754
5755 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
5756 struct btrfs_delayed_extent_op *extent_op;
5757 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
5758 BUG_ON(!extent_op);
5759 if (key)
5760 memcpy(&extent_op->key, key, sizeof(extent_op->key));
5761 else
5762 memset(&extent_op->key, 0, sizeof(extent_op->key));
5763 extent_op->flags_to_set = flags;
5764 extent_op->update_key = 1;
5765 extent_op->update_flags = 1;
5766 extent_op->is_data = 0;
5767
5768 ret = btrfs_add_delayed_tree_ref(trans, ins.objectid,
5769 ins.offset, parent, root_objectid,
5770 level, BTRFS_ADD_DELAYED_EXTENT,
5771 extent_op);
5772 BUG_ON(ret);
5773 }
Chris Masonfec577f2007-02-26 10:40:21 -05005774 return buf;
5775}
Chris Masona28ec192007-03-06 20:08:01 -05005776
Yan Zheng2c47e6052009-06-27 21:07:35 -04005777struct walk_control {
5778 u64 refs[BTRFS_MAX_LEVEL];
5779 u64 flags[BTRFS_MAX_LEVEL];
5780 struct btrfs_key update_progress;
5781 int stage;
5782 int level;
5783 int shared_level;
5784 int update_ref;
5785 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005786 int reada_slot;
5787 int reada_count;
Yan Zheng2c47e6052009-06-27 21:07:35 -04005788};
5789
5790#define DROP_REFERENCE 1
5791#define UPDATE_BACKREF 2
5792
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005793static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
5794 struct btrfs_root *root,
5795 struct walk_control *wc,
5796 struct btrfs_path *path)
5797{
5798 u64 bytenr;
5799 u64 generation;
5800 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005801 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005802 u32 nritems;
5803 u32 blocksize;
5804 struct btrfs_key key;
5805 struct extent_buffer *eb;
5806 int ret;
5807 int slot;
5808 int nread = 0;
5809
5810 if (path->slots[wc->level] < wc->reada_slot) {
5811 wc->reada_count = wc->reada_count * 2 / 3;
5812 wc->reada_count = max(wc->reada_count, 2);
5813 } else {
5814 wc->reada_count = wc->reada_count * 3 / 2;
5815 wc->reada_count = min_t(int, wc->reada_count,
5816 BTRFS_NODEPTRS_PER_BLOCK(root));
5817 }
5818
5819 eb = path->nodes[wc->level];
5820 nritems = btrfs_header_nritems(eb);
5821 blocksize = btrfs_level_size(root, wc->level - 1);
5822
5823 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
5824 if (nread >= wc->reada_count)
5825 break;
5826
5827 cond_resched();
5828 bytenr = btrfs_node_blockptr(eb, slot);
5829 generation = btrfs_node_ptr_generation(eb, slot);
5830
5831 if (slot == path->slots[wc->level])
5832 goto reada;
5833
5834 if (wc->stage == UPDATE_BACKREF &&
5835 generation <= root->root_key.offset)
5836 continue;
5837
Yan, Zheng94fcca92009-10-09 09:25:16 -04005838 /* We don't lock the tree block, it's OK to be racy here */
5839 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
5840 &refs, &flags);
5841 BUG_ON(ret);
5842 BUG_ON(refs == 0);
5843
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005844 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005845 if (refs == 1)
5846 goto reada;
5847
Yan, Zheng94fcca92009-10-09 09:25:16 -04005848 if (wc->level == 1 &&
5849 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5850 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005851 if (!wc->update_ref ||
5852 generation <= root->root_key.offset)
5853 continue;
5854 btrfs_node_key_to_cpu(eb, &key, slot);
5855 ret = btrfs_comp_cpu_keys(&key,
5856 &wc->update_progress);
5857 if (ret < 0)
5858 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005859 } else {
5860 if (wc->level == 1 &&
5861 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5862 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005863 }
5864reada:
5865 ret = readahead_tree_block(root, bytenr, blocksize,
5866 generation);
5867 if (ret)
5868 break;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005869 nread++;
5870 }
5871 wc->reada_slot = slot;
5872}
5873
Chris Mason9aca1d52007-03-13 11:09:37 -04005874/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04005875 * hepler to process tree block while walking down the tree.
5876 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04005877 * when wc->stage == UPDATE_BACKREF, this function updates
5878 * back refs for pointers in the block.
5879 *
5880 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04005881 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04005882static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
5883 struct btrfs_root *root,
5884 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04005885 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04005886{
5887 int level = wc->level;
5888 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04005889 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
5890 int ret;
5891
5892 if (wc->stage == UPDATE_BACKREF &&
5893 btrfs_header_owner(eb) != root->root_key.objectid)
5894 return 1;
5895
5896 /*
5897 * when reference count of tree block is 1, it won't increase
5898 * again. once full backref flag is set, we never clear it.
5899 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04005900 if (lookup_info &&
5901 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
5902 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04005903 BUG_ON(!path->locks[level]);
5904 ret = btrfs_lookup_extent_info(trans, root,
5905 eb->start, eb->len,
5906 &wc->refs[level],
5907 &wc->flags[level]);
5908 BUG_ON(ret);
5909 BUG_ON(wc->refs[level] == 0);
5910 }
5911
Yan Zheng2c47e6052009-06-27 21:07:35 -04005912 if (wc->stage == DROP_REFERENCE) {
5913 if (wc->refs[level] > 1)
5914 return 1;
5915
5916 if (path->locks[level] && !wc->keep_locks) {
5917 btrfs_tree_unlock(eb);
5918 path->locks[level] = 0;
5919 }
5920 return 0;
5921 }
5922
5923 /* wc->stage == UPDATE_BACKREF */
5924 if (!(wc->flags[level] & flag)) {
5925 BUG_ON(!path->locks[level]);
5926 ret = btrfs_inc_ref(trans, root, eb, 1);
5927 BUG_ON(ret);
5928 ret = btrfs_dec_ref(trans, root, eb, 0);
5929 BUG_ON(ret);
5930 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
5931 eb->len, flag, 0);
5932 BUG_ON(ret);
5933 wc->flags[level] |= flag;
5934 }
5935
5936 /*
5937 * the block is shared by multiple trees, so it's not good to
5938 * keep the tree lock
5939 */
5940 if (path->locks[level] && level > 0) {
5941 btrfs_tree_unlock(eb);
5942 path->locks[level] = 0;
5943 }
5944 return 0;
5945}
5946
5947/*
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005948 * hepler to process tree block pointer.
5949 *
5950 * when wc->stage == DROP_REFERENCE, this function checks
5951 * reference count of the block pointed to. if the block
5952 * is shared and we need update back refs for the subtree
5953 * rooted at the block, this function changes wc->stage to
5954 * UPDATE_BACKREF. if the block is shared and there is no
5955 * need to update back, this function drops the reference
5956 * to the block.
5957 *
5958 * NOTE: return value 1 means we should stop walking down.
5959 */
5960static noinline int do_walk_down(struct btrfs_trans_handle *trans,
5961 struct btrfs_root *root,
5962 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04005963 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005964{
5965 u64 bytenr;
5966 u64 generation;
5967 u64 parent;
5968 u32 blocksize;
5969 struct btrfs_key key;
5970 struct extent_buffer *next;
5971 int level = wc->level;
5972 int reada = 0;
5973 int ret = 0;
5974
5975 generation = btrfs_node_ptr_generation(path->nodes[level],
5976 path->slots[level]);
5977 /*
5978 * if the lower level block was created before the snapshot
5979 * was created, we know there is no need to update back refs
5980 * for the subtree
5981 */
5982 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04005983 generation <= root->root_key.offset) {
5984 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005985 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005986 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005987
5988 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
5989 blocksize = btrfs_level_size(root, level - 1);
5990
5991 next = btrfs_find_tree_block(root, bytenr, blocksize);
5992 if (!next) {
5993 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
Miao Xie90d2c51d2010-03-25 12:37:12 +00005994 if (!next)
5995 return -ENOMEM;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005996 reada = 1;
5997 }
5998 btrfs_tree_lock(next);
5999 btrfs_set_lock_blocking(next);
6000
Yan, Zheng94fcca92009-10-09 09:25:16 -04006001 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
6002 &wc->refs[level - 1],
6003 &wc->flags[level - 1]);
6004 BUG_ON(ret);
6005 BUG_ON(wc->refs[level - 1] == 0);
6006 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006007
Yan, Zheng94fcca92009-10-09 09:25:16 -04006008 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006009 if (wc->refs[level - 1] > 1) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04006010 if (level == 1 &&
6011 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
6012 goto skip;
6013
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006014 if (!wc->update_ref ||
6015 generation <= root->root_key.offset)
6016 goto skip;
6017
6018 btrfs_node_key_to_cpu(path->nodes[level], &key,
6019 path->slots[level]);
6020 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
6021 if (ret < 0)
6022 goto skip;
6023
6024 wc->stage = UPDATE_BACKREF;
6025 wc->shared_level = level - 1;
6026 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04006027 } else {
6028 if (level == 1 &&
6029 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
6030 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006031 }
6032
6033 if (!btrfs_buffer_uptodate(next, generation)) {
6034 btrfs_tree_unlock(next);
6035 free_extent_buffer(next);
6036 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006037 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006038 }
6039
6040 if (!next) {
6041 if (reada && level == 1)
6042 reada_walk_down(trans, root, wc, path);
6043 next = read_tree_block(root, bytenr, blocksize, generation);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00006044 if (!next)
6045 return -EIO;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006046 btrfs_tree_lock(next);
6047 btrfs_set_lock_blocking(next);
6048 }
6049
6050 level--;
6051 BUG_ON(level != btrfs_header_level(next));
6052 path->nodes[level] = next;
6053 path->slots[level] = 0;
6054 path->locks[level] = 1;
6055 wc->level = level;
6056 if (wc->level == 1)
6057 wc->reada_slot = 0;
6058 return 0;
6059skip:
6060 wc->refs[level - 1] = 0;
6061 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006062 if (wc->stage == DROP_REFERENCE) {
6063 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
6064 parent = path->nodes[level]->start;
6065 } else {
6066 BUG_ON(root->root_key.objectid !=
6067 btrfs_header_owner(path->nodes[level]));
6068 parent = 0;
6069 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006070
Yan, Zheng94fcca92009-10-09 09:25:16 -04006071 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
6072 root->root_key.objectid, level - 1, 0);
6073 BUG_ON(ret);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006074 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006075 btrfs_tree_unlock(next);
6076 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04006077 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006078 return 1;
6079}
6080
6081/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04006082 * hepler to process tree block while walking up the tree.
6083 *
6084 * when wc->stage == DROP_REFERENCE, this function drops
6085 * reference count on the block.
6086 *
6087 * when wc->stage == UPDATE_BACKREF, this function changes
6088 * wc->stage back to DROP_REFERENCE if we changed wc->stage
6089 * to UPDATE_BACKREF previously while processing the block.
6090 *
6091 * NOTE: return value 1 means we should stop walking up.
6092 */
6093static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
6094 struct btrfs_root *root,
6095 struct btrfs_path *path,
6096 struct walk_control *wc)
6097{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006098 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006099 int level = wc->level;
6100 struct extent_buffer *eb = path->nodes[level];
6101 u64 parent = 0;
6102
6103 if (wc->stage == UPDATE_BACKREF) {
6104 BUG_ON(wc->shared_level < level);
6105 if (level < wc->shared_level)
6106 goto out;
6107
Yan Zheng2c47e6052009-06-27 21:07:35 -04006108 ret = find_next_key(path, level + 1, &wc->update_progress);
6109 if (ret > 0)
6110 wc->update_ref = 0;
6111
6112 wc->stage = DROP_REFERENCE;
6113 wc->shared_level = -1;
6114 path->slots[level] = 0;
6115
6116 /*
6117 * check reference count again if the block isn't locked.
6118 * we should start walking down the tree again if reference
6119 * count is one.
6120 */
6121 if (!path->locks[level]) {
6122 BUG_ON(level == 0);
6123 btrfs_tree_lock(eb);
6124 btrfs_set_lock_blocking(eb);
6125 path->locks[level] = 1;
6126
6127 ret = btrfs_lookup_extent_info(trans, root,
6128 eb->start, eb->len,
6129 &wc->refs[level],
6130 &wc->flags[level]);
6131 BUG_ON(ret);
6132 BUG_ON(wc->refs[level] == 0);
6133 if (wc->refs[level] == 1) {
6134 btrfs_tree_unlock(eb);
6135 path->locks[level] = 0;
6136 return 1;
6137 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006138 }
6139 }
6140
6141 /* wc->stage == DROP_REFERENCE */
6142 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
6143
6144 if (wc->refs[level] == 1) {
6145 if (level == 0) {
6146 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6147 ret = btrfs_dec_ref(trans, root, eb, 1);
6148 else
6149 ret = btrfs_dec_ref(trans, root, eb, 0);
6150 BUG_ON(ret);
6151 }
6152 /* make block locked assertion in clean_tree_block happy */
6153 if (!path->locks[level] &&
6154 btrfs_header_generation(eb) == trans->transid) {
6155 btrfs_tree_lock(eb);
6156 btrfs_set_lock_blocking(eb);
6157 path->locks[level] = 1;
6158 }
6159 clean_tree_block(trans, root, eb);
6160 }
6161
6162 if (eb == root->node) {
6163 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6164 parent = eb->start;
6165 else
6166 BUG_ON(root->root_key.objectid !=
6167 btrfs_header_owner(eb));
6168 } else {
6169 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6170 parent = path->nodes[level + 1]->start;
6171 else
6172 BUG_ON(root->root_key.objectid !=
6173 btrfs_header_owner(path->nodes[level + 1]));
6174 }
6175
Yan, Zhengf0486c62010-05-16 10:46:25 -04006176 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006177out:
6178 wc->refs[level] = 0;
6179 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006180 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006181}
6182
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006183static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
6184 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04006185 struct btrfs_path *path,
6186 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04006187{
Yan Zheng2c47e6052009-06-27 21:07:35 -04006188 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006189 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006190 int ret;
6191
Yan Zheng2c47e6052009-06-27 21:07:35 -04006192 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04006193 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006194 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04006195 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006196
Yan Zheng2c47e6052009-06-27 21:07:35 -04006197 if (level == 0)
6198 break;
6199
Yan, Zheng7a7965f2010-02-01 02:41:17 +00006200 if (path->slots[level] >=
6201 btrfs_header_nritems(path->nodes[level]))
6202 break;
6203
Yan, Zheng94fcca92009-10-09 09:25:16 -04006204 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006205 if (ret > 0) {
6206 path->slots[level]++;
6207 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00006208 } else if (ret < 0)
6209 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006210 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006211 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04006212 return 0;
6213}
6214
Chris Masond3977122009-01-05 21:25:51 -05006215static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05006216 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04006217 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04006218 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05006219{
Yan Zheng2c47e6052009-06-27 21:07:35 -04006220 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05006221 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04006222
Yan Zheng2c47e6052009-06-27 21:07:35 -04006223 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
6224 while (level < max_level && path->nodes[level]) {
6225 wc->level = level;
6226 if (path->slots[level] + 1 <
6227 btrfs_header_nritems(path->nodes[level])) {
6228 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05006229 return 0;
6230 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006231 ret = walk_up_proc(trans, root, path, wc);
6232 if (ret > 0)
6233 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05006234
Yan Zheng2c47e6052009-06-27 21:07:35 -04006235 if (path->locks[level]) {
6236 btrfs_tree_unlock(path->nodes[level]);
6237 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006238 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006239 free_extent_buffer(path->nodes[level]);
6240 path->nodes[level] = NULL;
6241 level++;
Chris Mason20524f02007-03-10 06:35:47 -05006242 }
6243 }
6244 return 1;
6245}
6246
Chris Mason9aca1d52007-03-13 11:09:37 -04006247/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04006248 * drop a subvolume tree.
6249 *
6250 * this function traverses the tree freeing any blocks that only
6251 * referenced by the tree.
6252 *
6253 * when a shared tree block is found. this function decreases its
6254 * reference count by one. if update_ref is true, this function
6255 * also make sure backrefs for the shared block and all lower level
6256 * blocks are properly updated.
Chris Mason9aca1d52007-03-13 11:09:37 -04006257 */
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006258int btrfs_drop_snapshot(struct btrfs_root *root,
6259 struct btrfs_block_rsv *block_rsv, int update_ref)
Chris Mason20524f02007-03-10 06:35:47 -05006260{
Chris Mason5caf2a02007-04-02 11:20:42 -04006261 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006262 struct btrfs_trans_handle *trans;
6263 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04006264 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006265 struct walk_control *wc;
6266 struct btrfs_key key;
6267 int err = 0;
6268 int ret;
6269 int level;
Chris Mason20524f02007-03-10 06:35:47 -05006270
Chris Mason5caf2a02007-04-02 11:20:42 -04006271 path = btrfs_alloc_path();
6272 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05006273
Yan Zheng2c47e6052009-06-27 21:07:35 -04006274 wc = kzalloc(sizeof(*wc), GFP_NOFS);
6275 BUG_ON(!wc);
6276
Yan, Zhenga22285a2010-05-16 10:48:46 -04006277 trans = btrfs_start_transaction(tree_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00006278 BUG_ON(IS_ERR(trans));
6279
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006280 if (block_rsv)
6281 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006282
Chris Mason9f3a7422007-08-07 15:52:19 -04006283 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006284 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006285 path->nodes[level] = btrfs_lock_root_node(root);
6286 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04006287 path->slots[level] = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006288 path->locks[level] = 1;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006289 memset(&wc->update_progress, 0,
6290 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04006291 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04006292 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006293 memcpy(&wc->update_progress, &key,
6294 sizeof(wc->update_progress));
6295
Chris Mason6702ed42007-08-07 16:15:09 -04006296 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006297 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04006298 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006299 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6300 path->lowest_level = 0;
6301 if (ret < 0) {
6302 err = ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04006303 goto out;
6304 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006305 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006306
Chris Mason7d9eb122008-07-08 14:19:17 -04006307 /*
6308 * unlock our path, this is safe because only this
6309 * function is allowed to delete this snapshot
6310 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006311 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04006312
Yan Zheng2c47e6052009-06-27 21:07:35 -04006313 level = btrfs_header_level(root->node);
6314 while (1) {
6315 btrfs_tree_lock(path->nodes[level]);
6316 btrfs_set_lock_blocking(path->nodes[level]);
6317
6318 ret = btrfs_lookup_extent_info(trans, root,
6319 path->nodes[level]->start,
6320 path->nodes[level]->len,
6321 &wc->refs[level],
6322 &wc->flags[level]);
6323 BUG_ON(ret);
6324 BUG_ON(wc->refs[level] == 0);
6325
6326 if (level == root_item->drop_level)
6327 break;
6328
6329 btrfs_tree_unlock(path->nodes[level]);
6330 WARN_ON(wc->refs[level] != 1);
6331 level--;
6332 }
6333 }
6334
6335 wc->level = level;
6336 wc->shared_level = -1;
6337 wc->stage = DROP_REFERENCE;
6338 wc->update_ref = update_ref;
6339 wc->keep_locks = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006340 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006341
6342 while (1) {
6343 ret = walk_down_tree(trans, root, path, wc);
6344 if (ret < 0) {
6345 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04006346 break;
6347 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006348
6349 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
6350 if (ret < 0) {
6351 err = ret;
6352 break;
6353 }
6354
6355 if (ret > 0) {
6356 BUG_ON(wc->stage != DROP_REFERENCE);
6357 break;
6358 }
6359
6360 if (wc->stage == DROP_REFERENCE) {
6361 level = wc->level;
6362 btrfs_node_key(path->nodes[level],
6363 &root_item->drop_progress,
6364 path->slots[level]);
6365 root_item->drop_level = level;
6366 }
6367
6368 BUG_ON(wc->level == 0);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006369 if (btrfs_should_end_transaction(trans, tree_root)) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006370 ret = btrfs_update_root(trans, tree_root,
6371 &root->root_key,
6372 root_item);
6373 BUG_ON(ret);
6374
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006375 btrfs_end_transaction_throttle(trans, tree_root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006376 trans = btrfs_start_transaction(tree_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00006377 BUG_ON(IS_ERR(trans));
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006378 if (block_rsv)
6379 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04006380 }
Chris Mason20524f02007-03-10 06:35:47 -05006381 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006382 btrfs_release_path(path);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006383 BUG_ON(err);
6384
6385 ret = btrfs_del_root(trans, tree_root, &root->root_key);
6386 BUG_ON(ret);
6387
Yan, Zheng76dda932009-09-21 16:00:26 -04006388 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
6389 ret = btrfs_find_last_root(tree_root, root->root_key.objectid,
6390 NULL, NULL);
6391 BUG_ON(ret < 0);
6392 if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05006393 /* if we fail to delete the orphan item this time
6394 * around, it'll get picked up the next time.
6395 *
6396 * The most common failure here is just -ENOENT.
6397 */
6398 btrfs_del_orphan_item(trans, tree_root,
6399 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04006400 }
6401 }
6402
6403 if (root->in_radix) {
6404 btrfs_free_fs_root(tree_root->fs_info, root);
6405 } else {
6406 free_extent_buffer(root->node);
6407 free_extent_buffer(root->commit_root);
6408 kfree(root);
6409 }
Chris Mason9f3a7422007-08-07 15:52:19 -04006410out:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006411 btrfs_end_transaction_throttle(trans, tree_root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006412 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04006413 btrfs_free_path(path);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006414 return err;
Chris Mason20524f02007-03-10 06:35:47 -05006415}
Chris Mason9078a3e2007-04-26 16:46:15 -04006416
Yan Zheng2c47e6052009-06-27 21:07:35 -04006417/*
6418 * drop subtree rooted at tree block 'node'.
6419 *
6420 * NOTE: this function will unlock and release tree block 'node'
6421 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04006422int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
6423 struct btrfs_root *root,
6424 struct extent_buffer *node,
6425 struct extent_buffer *parent)
6426{
6427 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006428 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006429 int level;
6430 int parent_level;
6431 int ret = 0;
6432 int wret;
6433
Yan Zheng2c47e6052009-06-27 21:07:35 -04006434 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
6435
Yan Zhengf82d02d2008-10-29 14:49:05 -04006436 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00006437 if (!path)
6438 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006439
Yan Zheng2c47e6052009-06-27 21:07:35 -04006440 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00006441 if (!wc) {
6442 btrfs_free_path(path);
6443 return -ENOMEM;
6444 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006445
Chris Masonb9447ef2009-03-09 11:45:38 -04006446 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006447 parent_level = btrfs_header_level(parent);
6448 extent_buffer_get(parent);
6449 path->nodes[parent_level] = parent;
6450 path->slots[parent_level] = btrfs_header_nritems(parent);
6451
Chris Masonb9447ef2009-03-09 11:45:38 -04006452 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006453 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006454 path->nodes[level] = node;
6455 path->slots[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006456 path->locks[level] = 1;
6457
6458 wc->refs[parent_level] = 1;
6459 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
6460 wc->level = level;
6461 wc->shared_level = -1;
6462 wc->stage = DROP_REFERENCE;
6463 wc->update_ref = 0;
6464 wc->keep_locks = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006465 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006466
6467 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006468 wret = walk_down_tree(trans, root, path, wc);
6469 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04006470 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006471 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006472 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04006473
Yan Zheng2c47e6052009-06-27 21:07:35 -04006474 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006475 if (wret < 0)
6476 ret = wret;
6477 if (wret != 0)
6478 break;
6479 }
6480
Yan Zheng2c47e6052009-06-27 21:07:35 -04006481 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006482 btrfs_free_path(path);
6483 return ret;
6484}
6485
Chris Masonec44a352008-04-28 15:29:52 -04006486static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
6487{
6488 u64 num_devices;
6489 u64 stripped = BTRFS_BLOCK_GROUP_RAID0 |
6490 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
6491
Chris Masoncd02dca2010-12-13 14:56:23 -05006492 /*
6493 * we add in the count of missing devices because we want
6494 * to make sure that any RAID levels on a degraded FS
6495 * continue to be honored.
6496 */
6497 num_devices = root->fs_info->fs_devices->rw_devices +
6498 root->fs_info->fs_devices->missing_devices;
6499
Chris Masonec44a352008-04-28 15:29:52 -04006500 if (num_devices == 1) {
6501 stripped |= BTRFS_BLOCK_GROUP_DUP;
6502 stripped = flags & ~stripped;
6503
6504 /* turn raid0 into single device chunks */
6505 if (flags & BTRFS_BLOCK_GROUP_RAID0)
6506 return stripped;
6507
6508 /* turn mirroring into duplication */
6509 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
6510 BTRFS_BLOCK_GROUP_RAID10))
6511 return stripped | BTRFS_BLOCK_GROUP_DUP;
6512 return flags;
6513 } else {
6514 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04006515 if (flags & stripped)
6516 return flags;
6517
6518 stripped |= BTRFS_BLOCK_GROUP_DUP;
6519 stripped = flags & ~stripped;
6520
6521 /* switch duplicated blocks with raid1 */
6522 if (flags & BTRFS_BLOCK_GROUP_DUP)
6523 return stripped | BTRFS_BLOCK_GROUP_RAID1;
6524
6525 /* turn single device chunks into raid0 */
6526 return stripped | BTRFS_BLOCK_GROUP_RAID0;
6527 }
6528 return flags;
6529}
6530
Yan, Zhengf0486c62010-05-16 10:46:25 -04006531static int set_block_group_ro(struct btrfs_block_group_cache *cache)
Chris Mason0ef3e662008-05-24 14:04:53 -04006532{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006533 struct btrfs_space_info *sinfo = cache->space_info;
6534 u64 num_bytes;
6535 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04006536
Yan, Zhengf0486c62010-05-16 10:46:25 -04006537 if (cache->ro)
6538 return 0;
Chris Masonc286ac42008-07-22 23:06:41 -04006539
Yan, Zhengf0486c62010-05-16 10:46:25 -04006540 spin_lock(&sinfo->lock);
6541 spin_lock(&cache->lock);
6542 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
6543 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04006544
Yan, Zhengf0486c62010-05-16 10:46:25 -04006545 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
6546 sinfo->bytes_may_use + sinfo->bytes_readonly +
Chris Mason65e53412010-12-24 06:41:52 -05006547 cache->reserved_pinned + num_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04006548 sinfo->bytes_readonly += num_bytes;
6549 sinfo->bytes_reserved += cache->reserved_pinned;
6550 cache->reserved_pinned = 0;
6551 cache->ro = 1;
6552 ret = 0;
6553 }
Chris Mason65e53412010-12-24 06:41:52 -05006554
Yan, Zhengf0486c62010-05-16 10:46:25 -04006555 spin_unlock(&cache->lock);
6556 spin_unlock(&sinfo->lock);
6557 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04006558}
6559
Yan, Zhengf0486c62010-05-16 10:46:25 -04006560int btrfs_set_block_group_ro(struct btrfs_root *root,
6561 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006562
6563{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006564 struct btrfs_trans_handle *trans;
6565 u64 alloc_flags;
6566 int ret;
6567
6568 BUG_ON(cache->ro);
6569
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006570 trans = btrfs_join_transaction(root);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006571 BUG_ON(IS_ERR(trans));
6572
6573 alloc_flags = update_block_group_flags(root, cache->flags);
6574 if (alloc_flags != cache->flags)
Chris Mason0e4f8f82011-04-15 16:05:44 -04006575 do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags,
6576 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006577
6578 ret = set_block_group_ro(cache);
6579 if (!ret)
6580 goto out;
6581 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Chris Mason0e4f8f82011-04-15 16:05:44 -04006582 ret = do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags,
6583 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006584 if (ret < 0)
6585 goto out;
6586 ret = set_block_group_ro(cache);
6587out:
6588 btrfs_end_transaction(trans, root);
6589 return ret;
6590}
6591
Chris Masonc87f08c2011-02-16 13:57:04 -05006592int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
6593 struct btrfs_root *root, u64 type)
6594{
6595 u64 alloc_flags = get_alloc_profile(root, type);
Chris Mason0e4f8f82011-04-15 16:05:44 -04006596 return do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags,
6597 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05006598}
6599
Miao Xie6d07bce2011-01-05 10:07:31 +00006600/*
6601 * helper to account the unused space of all the readonly block group in the
6602 * list. takes mirrors into account.
6603 */
6604static u64 __btrfs_get_ro_block_group_free_space(struct list_head *groups_list)
6605{
6606 struct btrfs_block_group_cache *block_group;
6607 u64 free_bytes = 0;
6608 int factor;
6609
6610 list_for_each_entry(block_group, groups_list, list) {
6611 spin_lock(&block_group->lock);
6612
6613 if (!block_group->ro) {
6614 spin_unlock(&block_group->lock);
6615 continue;
6616 }
6617
6618 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
6619 BTRFS_BLOCK_GROUP_RAID10 |
6620 BTRFS_BLOCK_GROUP_DUP))
6621 factor = 2;
6622 else
6623 factor = 1;
6624
6625 free_bytes += (block_group->key.offset -
6626 btrfs_block_group_used(&block_group->item)) *
6627 factor;
6628
6629 spin_unlock(&block_group->lock);
6630 }
6631
6632 return free_bytes;
6633}
6634
6635/*
6636 * helper to account the unused space of all the readonly block group in the
6637 * space_info. takes mirrors into account.
6638 */
6639u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
6640{
6641 int i;
6642 u64 free_bytes = 0;
6643
6644 spin_lock(&sinfo->lock);
6645
6646 for(i = 0; i < BTRFS_NR_RAID_TYPES; i++)
6647 if (!list_empty(&sinfo->block_groups[i]))
6648 free_bytes += __btrfs_get_ro_block_group_free_space(
6649 &sinfo->block_groups[i]);
6650
6651 spin_unlock(&sinfo->lock);
6652
6653 return free_bytes;
6654}
6655
Yan, Zhengf0486c62010-05-16 10:46:25 -04006656int btrfs_set_block_group_rw(struct btrfs_root *root,
6657 struct btrfs_block_group_cache *cache)
6658{
6659 struct btrfs_space_info *sinfo = cache->space_info;
6660 u64 num_bytes;
6661
6662 BUG_ON(!cache->ro);
6663
6664 spin_lock(&sinfo->lock);
6665 spin_lock(&cache->lock);
6666 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
6667 cache->bytes_super - btrfs_block_group_used(&cache->item);
6668 sinfo->bytes_readonly -= num_bytes;
6669 cache->ro = 0;
6670 spin_unlock(&cache->lock);
6671 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006672 return 0;
6673}
6674
Josef Bacikba1bf482009-09-11 16:11:19 -04006675/*
6676 * checks to see if its even possible to relocate this block group.
6677 *
6678 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
6679 * ok to go ahead and try.
6680 */
6681int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04006682{
Zheng Yan1a40e232008-09-26 10:09:34 -04006683 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04006684 struct btrfs_space_info *space_info;
6685 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
6686 struct btrfs_device *device;
6687 int full = 0;
6688 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05006689
Josef Bacikba1bf482009-09-11 16:11:19 -04006690 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04006691
Josef Bacikba1bf482009-09-11 16:11:19 -04006692 /* odd, couldn't find the block group, leave it alone */
6693 if (!block_group)
6694 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05006695
Josef Bacikba1bf482009-09-11 16:11:19 -04006696 /* no bytes used, we're good */
6697 if (!btrfs_block_group_used(&block_group->item))
6698 goto out;
Chris Mason323da792008-05-09 11:46:48 -04006699
Josef Bacikba1bf482009-09-11 16:11:19 -04006700 space_info = block_group->space_info;
6701 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04006702
Josef Bacikba1bf482009-09-11 16:11:19 -04006703 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04006704
Josef Bacikba1bf482009-09-11 16:11:19 -04006705 /*
6706 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04006707 * relocate it unless we're able to allocate a new chunk below.
6708 *
6709 * Otherwise, we need to make sure we have room in the space to handle
6710 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04006711 */
Chris Mason7ce618d2009-09-22 14:48:44 -04006712 if ((space_info->total_bytes != block_group->key.offset) &&
6713 (space_info->bytes_used + space_info->bytes_reserved +
Josef Bacikba1bf482009-09-11 16:11:19 -04006714 space_info->bytes_pinned + space_info->bytes_readonly +
6715 btrfs_block_group_used(&block_group->item) <
Chris Mason7ce618d2009-09-22 14:48:44 -04006716 space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04006717 spin_unlock(&space_info->lock);
6718 goto out;
6719 }
6720 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04006721
Josef Bacikba1bf482009-09-11 16:11:19 -04006722 /*
6723 * ok we don't have enough space, but maybe we have free space on our
6724 * devices to allocate new chunks for relocation, so loop through our
6725 * alloc devices and guess if we have enough space. However, if we
6726 * were marked as full, then we know there aren't enough chunks, and we
6727 * can just return.
6728 */
6729 ret = -1;
6730 if (full)
6731 goto out;
Chris Mason4313b392008-01-03 09:08:48 -05006732
Josef Bacikba1bf482009-09-11 16:11:19 -04006733 mutex_lock(&root->fs_info->chunk_mutex);
6734 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
6735 u64 min_free = btrfs_block_group_used(&block_group->item);
Miao Xie7bfc8372011-01-05 10:07:26 +00006736 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04006737
Josef Bacikba1bf482009-09-11 16:11:19 -04006738 /*
6739 * check to make sure we can actually find a chunk with enough
6740 * space to fit our block group in.
6741 */
6742 if (device->total_bytes > device->bytes_used + min_free) {
6743 ret = find_free_dev_extent(NULL, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00006744 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04006745 if (!ret)
Yan73e48b22008-01-03 14:14:39 -05006746 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04006747 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05006748 }
Chris Masonedbd8d42007-12-21 16:27:24 -05006749 }
Josef Bacikba1bf482009-09-11 16:11:19 -04006750 mutex_unlock(&root->fs_info->chunk_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05006751out:
Josef Bacikba1bf482009-09-11 16:11:19 -04006752 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05006753 return ret;
6754}
6755
Christoph Hellwigb2950862008-12-02 09:54:17 -05006756static int find_first_block_group(struct btrfs_root *root,
6757 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04006758{
Chris Mason925baed2008-06-25 16:01:30 -04006759 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006760 struct btrfs_key found_key;
6761 struct extent_buffer *leaf;
6762 int slot;
6763
6764 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
6765 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04006766 goto out;
6767
Chris Masond3977122009-01-05 21:25:51 -05006768 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006769 slot = path->slots[0];
6770 leaf = path->nodes[0];
6771 if (slot >= btrfs_header_nritems(leaf)) {
6772 ret = btrfs_next_leaf(root, path);
6773 if (ret == 0)
6774 continue;
6775 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04006776 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04006777 break;
6778 }
6779 btrfs_item_key_to_cpu(leaf, &found_key, slot);
6780
6781 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04006782 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
6783 ret = 0;
6784 goto out;
6785 }
Chris Mason0b86a832008-03-24 15:01:56 -04006786 path->slots[0]++;
6787 }
Chris Mason925baed2008-06-25 16:01:30 -04006788out:
Chris Mason0b86a832008-03-24 15:01:56 -04006789 return ret;
6790}
6791
Josef Bacik0af3d002010-06-21 14:48:16 -04006792void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
6793{
6794 struct btrfs_block_group_cache *block_group;
6795 u64 last = 0;
6796
6797 while (1) {
6798 struct inode *inode;
6799
6800 block_group = btrfs_lookup_first_block_group(info, last);
6801 while (block_group) {
6802 spin_lock(&block_group->lock);
6803 if (block_group->iref)
6804 break;
6805 spin_unlock(&block_group->lock);
6806 block_group = next_block_group(info->tree_root,
6807 block_group);
6808 }
6809 if (!block_group) {
6810 if (last == 0)
6811 break;
6812 last = 0;
6813 continue;
6814 }
6815
6816 inode = block_group->inode;
6817 block_group->iref = 0;
6818 block_group->inode = NULL;
6819 spin_unlock(&block_group->lock);
6820 iput(inode);
6821 last = block_group->key.objectid + block_group->key.offset;
6822 btrfs_put_block_group(block_group);
6823 }
6824}
6825
Zheng Yan1a40e232008-09-26 10:09:34 -04006826int btrfs_free_block_groups(struct btrfs_fs_info *info)
6827{
6828 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04006829 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04006830 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04006831 struct rb_node *n;
6832
Yan Zheng11833d62009-09-11 16:11:19 -04006833 down_write(&info->extent_commit_sem);
6834 while (!list_empty(&info->caching_block_groups)) {
6835 caching_ctl = list_entry(info->caching_block_groups.next,
6836 struct btrfs_caching_control, list);
6837 list_del(&caching_ctl->list);
6838 put_caching_control(caching_ctl);
6839 }
6840 up_write(&info->extent_commit_sem);
6841
Zheng Yan1a40e232008-09-26 10:09:34 -04006842 spin_lock(&info->block_group_cache_lock);
6843 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
6844 block_group = rb_entry(n, struct btrfs_block_group_cache,
6845 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04006846 rb_erase(&block_group->cache_node,
6847 &info->block_group_cache_tree);
Yan Zhengd899e052008-10-30 14:25:28 -04006848 spin_unlock(&info->block_group_cache_lock);
6849
Josef Bacik80eb2342008-10-29 14:49:05 -04006850 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04006851 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04006852 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05006853
Josef Bacik817d52f2009-07-13 21:29:25 -04006854 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04006855 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04006856
Josef Bacik3c148742011-02-02 15:53:47 +00006857 /*
6858 * We haven't cached this block group, which means we could
6859 * possibly have excluded extents on this block group.
6860 */
6861 if (block_group->cached == BTRFS_CACHE_NO)
6862 free_excluded_extents(info->extent_root, block_group);
6863
Josef Bacik817d52f2009-07-13 21:29:25 -04006864 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00006865 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04006866
6867 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04006868 }
6869 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04006870
6871 /* now that all the block groups are freed, go through and
6872 * free all the space_info structs. This is only called during
6873 * the final stages of unmount, and so we know nobody is
6874 * using them. We call synchronize_rcu() once before we start,
6875 * just to be on the safe side.
6876 */
6877 synchronize_rcu();
6878
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006879 release_global_block_rsv(info);
6880
Chris Mason4184ea72009-03-10 12:39:20 -04006881 while(!list_empty(&info->space_info)) {
6882 space_info = list_entry(info->space_info.next,
6883 struct btrfs_space_info,
6884 list);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006885 if (space_info->bytes_pinned > 0 ||
6886 space_info->bytes_reserved > 0) {
6887 WARN_ON(1);
6888 dump_space_info(space_info, 0, 0);
6889 }
Chris Mason4184ea72009-03-10 12:39:20 -04006890 list_del(&space_info->list);
6891 kfree(space_info);
6892 }
Zheng Yan1a40e232008-09-26 10:09:34 -04006893 return 0;
6894}
6895
Yan, Zhengb742bb82010-05-16 10:46:24 -04006896static void __link_block_group(struct btrfs_space_info *space_info,
6897 struct btrfs_block_group_cache *cache)
6898{
6899 int index = get_block_group_index(cache);
6900
6901 down_write(&space_info->groups_sem);
6902 list_add_tail(&cache->list, &space_info->block_groups[index]);
6903 up_write(&space_info->groups_sem);
6904}
6905
Chris Mason9078a3e2007-04-26 16:46:15 -04006906int btrfs_read_block_groups(struct btrfs_root *root)
6907{
6908 struct btrfs_path *path;
6909 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04006910 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04006911 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04006912 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04006913 struct btrfs_key key;
6914 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04006915 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04006916 int need_clear = 0;
6917 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04006918
Chris Masonbe744172007-05-06 10:15:01 -04006919 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04006920 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04006921 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04006922 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04006923 path = btrfs_alloc_path();
6924 if (!path)
6925 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04006926 path->reada = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04006927
Josef Bacik0af3d002010-06-21 14:48:16 -04006928 cache_gen = btrfs_super_cache_generation(&root->fs_info->super_copy);
6929 if (cache_gen != 0 &&
6930 btrfs_super_generation(&root->fs_info->super_copy) != cache_gen)
6931 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04006932 if (btrfs_test_opt(root, CLEAR_CACHE))
6933 need_clear = 1;
Josef Bacik8216ef82010-10-28 16:55:47 -04006934 if (!btrfs_test_opt(root, SPACE_CACHE) && cache_gen)
6935 printk(KERN_INFO "btrfs: disk space caching is enabled\n");
Josef Bacik0af3d002010-06-21 14:48:16 -04006936
Chris Masond3977122009-01-05 21:25:51 -05006937 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04006938 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -04006939 if (ret > 0)
6940 break;
Chris Mason0b86a832008-03-24 15:01:56 -04006941 if (ret != 0)
6942 goto error;
Chris Mason5f39d392007-10-15 16:14:19 -04006943 leaf = path->nodes[0];
6944 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04006945 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04006946 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04006947 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006948 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04006949 }
Li Zefan34d52cb2011-03-29 13:46:06 +08006950 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
6951 GFP_NOFS);
6952 if (!cache->free_space_ctl) {
6953 kfree(cache);
6954 ret = -ENOMEM;
6955 goto error;
6956 }
Chris Mason3e1ad542007-05-07 20:03:49 -04006957
Yan Zhengd2fb3432008-12-11 16:30:39 -05006958 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04006959 spin_lock_init(&cache->lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04006960 cache->fs_info = info;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006961 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006962 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik96303082009-07-13 21:29:25 -04006963
Josef Bacik0af3d002010-06-21 14:48:16 -04006964 if (need_clear)
6965 cache->disk_cache_state = BTRFS_DC_CLEAR;
6966
Chris Mason5f39d392007-10-15 16:14:19 -04006967 read_extent_buffer(leaf, &cache->item,
6968 btrfs_item_ptr_offset(leaf, path->slots[0]),
6969 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04006970 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason0b86a832008-03-24 15:01:56 -04006971
Chris Mason9078a3e2007-04-26 16:46:15 -04006972 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +02006973 btrfs_release_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04006974 cache->flags = btrfs_block_group_flags(&cache->item);
Josef Bacik817d52f2009-07-13 21:29:25 -04006975 cache->sectorsize = root->sectorsize;
6976
Li Zefan34d52cb2011-03-29 13:46:06 +08006977 btrfs_init_free_space_ctl(cache);
6978
Josef Bacik817d52f2009-07-13 21:29:25 -04006979 /*
Josef Bacik3c148742011-02-02 15:53:47 +00006980 * We need to exclude the super stripes now so that the space
6981 * info has super bytes accounted for, otherwise we'll think
6982 * we have more space than we actually do.
6983 */
6984 exclude_super_stripes(root, cache);
6985
6986 /*
Josef Bacik817d52f2009-07-13 21:29:25 -04006987 * check for two cases, either we are full, and therefore
6988 * don't need to bother with the caching work since we won't
6989 * find any space, or we are empty, and we can just add all
6990 * the space in and be done with it. This saves us _alot_ of
6991 * time, particularly in the full case.
6992 */
6993 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -04006994 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04006995 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04006996 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04006997 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04006998 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04006999 cache->cached = BTRFS_CACHE_FINISHED;
7000 add_new_free_space(cache, root->fs_info,
7001 found_key.objectid,
7002 found_key.objectid +
7003 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04007004 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04007005 }
Chris Mason96b51792007-10-15 16:15:19 -04007006
Chris Mason6324fbf2008-03-24 15:01:59 -04007007 ret = update_space_info(info, cache->flags, found_key.offset,
7008 btrfs_block_group_used(&cache->item),
7009 &space_info);
7010 BUG_ON(ret);
7011 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04007012 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007013 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04007014 spin_unlock(&cache->space_info->lock);
7015
Yan, Zhengb742bb82010-05-16 10:46:24 -04007016 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04007017
Josef Bacik0f9dd462008-09-23 13:14:11 -04007018 ret = btrfs_add_block_group_cache(root->fs_info, cache);
7019 BUG_ON(ret);
Chris Mason75ccf472008-09-30 19:24:06 -04007020
7021 set_avail_alloc_bits(root->fs_info, cache->flags);
Yan Zheng2b820322008-11-17 21:11:30 -05007022 if (btrfs_chunk_readonly(root, cache->key.objectid))
Yan, Zhengf0486c62010-05-16 10:46:25 -04007023 set_block_group_ro(cache);
Chris Mason9078a3e2007-04-26 16:46:15 -04007024 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04007025
7026 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
7027 if (!(get_alloc_profile(root, space_info->flags) &
7028 (BTRFS_BLOCK_GROUP_RAID10 |
7029 BTRFS_BLOCK_GROUP_RAID1 |
7030 BTRFS_BLOCK_GROUP_DUP)))
7031 continue;
7032 /*
7033 * avoid allocating from un-mirrored block group if there are
7034 * mirrored block groups.
7035 */
7036 list_for_each_entry(cache, &space_info->block_groups[3], list)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007037 set_block_group_ro(cache);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007038 list_for_each_entry(cache, &space_info->block_groups[4], list)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007039 set_block_group_ro(cache);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007040 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007041
7042 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04007043 ret = 0;
7044error:
Chris Mason9078a3e2007-04-26 16:46:15 -04007045 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04007046 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04007047}
Chris Mason6324fbf2008-03-24 15:01:59 -04007048
7049int btrfs_make_block_group(struct btrfs_trans_handle *trans,
7050 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04007051 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04007052 u64 size)
7053{
7054 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04007055 struct btrfs_root *extent_root;
7056 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04007057
7058 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04007059
Chris Mason12fcfd22009-03-24 10:24:20 -04007060 root->fs_info->last_trans_log_full_commit = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04007061
Chris Mason8f18cf12008-04-25 16:53:30 -04007062 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007063 if (!cache)
7064 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +08007065 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
7066 GFP_NOFS);
7067 if (!cache->free_space_ctl) {
7068 kfree(cache);
7069 return -ENOMEM;
7070 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04007071
Chris Masone17cade2008-04-15 15:41:47 -04007072 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04007073 cache->key.offset = size;
Yan Zhengd2fb3432008-12-11 16:30:39 -05007074 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Josef Bacik96303082009-07-13 21:29:25 -04007075 cache->sectorsize = root->sectorsize;
Josef Bacik0af3d002010-06-21 14:48:16 -04007076 cache->fs_info = root->fs_info;
Josef Bacik96303082009-07-13 21:29:25 -04007077
Yan Zhengd2fb3432008-12-11 16:30:39 -05007078 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04007079 spin_lock_init(&cache->lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007080 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007081 INIT_LIST_HEAD(&cache->cluster_list);
Chris Mason0ef3e662008-05-24 14:04:53 -04007082
Li Zefan34d52cb2011-03-29 13:46:06 +08007083 btrfs_init_free_space_ctl(cache);
7084
Chris Mason6324fbf2008-03-24 15:01:59 -04007085 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04007086 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
7087 cache->flags = type;
7088 btrfs_set_block_group_flags(&cache->item, type);
7089
Yan Zheng11833d62009-09-11 16:11:19 -04007090 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04007091 cache->cached = BTRFS_CACHE_FINISHED;
Yan Zheng11833d62009-09-11 16:11:19 -04007092 exclude_super_stripes(root, cache);
Josef Bacik96303082009-07-13 21:29:25 -04007093
Josef Bacik817d52f2009-07-13 21:29:25 -04007094 add_new_free_space(cache, root->fs_info, chunk_offset,
7095 chunk_offset + size);
7096
Yan Zheng11833d62009-09-11 16:11:19 -04007097 free_excluded_extents(root, cache);
7098
Chris Mason6324fbf2008-03-24 15:01:59 -04007099 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
7100 &cache->space_info);
7101 BUG_ON(ret);
Josef Bacik1b2da372009-09-11 16:11:20 -04007102
7103 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007104 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04007105 spin_unlock(&cache->space_info->lock);
7106
Yan, Zhengb742bb82010-05-16 10:46:24 -04007107 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04007108
Josef Bacik0f9dd462008-09-23 13:14:11 -04007109 ret = btrfs_add_block_group_cache(root->fs_info, cache);
7110 BUG_ON(ret);
Chris Masonc286ac42008-07-22 23:06:41 -04007111
Chris Mason6324fbf2008-03-24 15:01:59 -04007112 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
7113 sizeof(cache->item));
7114 BUG_ON(ret);
7115
Chris Masond18a2c42008-04-04 15:40:00 -04007116 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04007117
Chris Mason6324fbf2008-03-24 15:01:59 -04007118 return 0;
7119}
Zheng Yan1a40e232008-09-26 10:09:34 -04007120
7121int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
7122 struct btrfs_root *root, u64 group_start)
7123{
7124 struct btrfs_path *path;
7125 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04007126 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -04007127 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04007128 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04007129 struct inode *inode;
Zheng Yan1a40e232008-09-26 10:09:34 -04007130 int ret;
Josef Bacik89a55892010-10-14 14:52:27 -04007131 int factor;
Zheng Yan1a40e232008-09-26 10:09:34 -04007132
Zheng Yan1a40e232008-09-26 10:09:34 -04007133 root = root->fs_info->extent_root;
7134
7135 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
7136 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05007137 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04007138
liubo9f7c43c2011-03-07 02:13:33 +00007139 /*
7140 * Free the reserved super bytes from this block group before
7141 * remove it.
7142 */
7143 free_excluded_extents(root, block_group);
7144
Zheng Yan1a40e232008-09-26 10:09:34 -04007145 memcpy(&key, &block_group->key, sizeof(key));
Josef Bacik89a55892010-10-14 14:52:27 -04007146 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
7147 BTRFS_BLOCK_GROUP_RAID1 |
7148 BTRFS_BLOCK_GROUP_RAID10))
7149 factor = 2;
7150 else
7151 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04007152
Chris Mason44fb5512009-06-04 15:34:51 -04007153 /* make sure this block group isn't part of an allocation cluster */
7154 cluster = &root->fs_info->data_alloc_cluster;
7155 spin_lock(&cluster->refill_lock);
7156 btrfs_return_cluster_to_free_space(block_group, cluster);
7157 spin_unlock(&cluster->refill_lock);
7158
7159 /*
7160 * make sure this block group isn't part of a metadata
7161 * allocation cluster
7162 */
7163 cluster = &root->fs_info->meta_alloc_cluster;
7164 spin_lock(&cluster->refill_lock);
7165 btrfs_return_cluster_to_free_space(block_group, cluster);
7166 spin_unlock(&cluster->refill_lock);
7167
Zheng Yan1a40e232008-09-26 10:09:34 -04007168 path = btrfs_alloc_path();
7169 BUG_ON(!path);
7170
Josef Bacik0af3d002010-06-21 14:48:16 -04007171 inode = lookup_free_space_inode(root, block_group, path);
7172 if (!IS_ERR(inode)) {
7173 btrfs_orphan_add(trans, inode);
7174 clear_nlink(inode);
7175 /* One for the block groups ref */
7176 spin_lock(&block_group->lock);
7177 if (block_group->iref) {
7178 block_group->iref = 0;
7179 block_group->inode = NULL;
7180 spin_unlock(&block_group->lock);
7181 iput(inode);
7182 } else {
7183 spin_unlock(&block_group->lock);
7184 }
7185 /* One for our lookup ref */
7186 iput(inode);
7187 }
7188
7189 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
7190 key.offset = block_group->key.objectid;
7191 key.type = 0;
7192
7193 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
7194 if (ret < 0)
7195 goto out;
7196 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02007197 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04007198 if (ret == 0) {
7199 ret = btrfs_del_item(trans, tree_root, path);
7200 if (ret)
7201 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02007202 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04007203 }
7204
Yan Zheng3dfdb932009-01-21 10:49:16 -05007205 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04007206 rb_erase(&block_group->cache_node,
7207 &root->fs_info->block_group_cache_tree);
Yan Zheng3dfdb932009-01-21 10:49:16 -05007208 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04007209
Josef Bacik80eb2342008-10-29 14:49:05 -04007210 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04007211 /*
7212 * we must use list_del_init so people can check to see if they
7213 * are still on the list after taking the semaphore
7214 */
7215 list_del_init(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04007216 up_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04007217
Josef Bacik817d52f2009-07-13 21:29:25 -04007218 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04007219 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04007220
7221 btrfs_remove_free_space_cache(block_group);
7222
Yan Zhengc146afa2008-11-12 14:34:12 -05007223 spin_lock(&block_group->space_info->lock);
7224 block_group->space_info->total_bytes -= block_group->key.offset;
7225 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -04007226 block_group->space_info->disk_total -= block_group->key.offset * factor;
Yan Zhengc146afa2008-11-12 14:34:12 -05007227 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04007228
Josef Bacik0af3d002010-06-21 14:48:16 -04007229 memcpy(&key, &block_group->key, sizeof(key));
7230
Chris Mason283bb192009-07-24 16:30:55 -04007231 btrfs_clear_space_info_full(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05007232
Chris Masonfa9c0d792009-04-03 09:47:43 -04007233 btrfs_put_block_group(block_group);
7234 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04007235
7236 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
7237 if (ret > 0)
7238 ret = -EIO;
7239 if (ret < 0)
7240 goto out;
7241
7242 ret = btrfs_del_item(trans, root, path);
7243out:
7244 btrfs_free_path(path);
7245 return ret;
7246}
liuboacce9522011-01-06 19:30:25 +08007247
liuboc59021f2011-03-07 02:13:14 +00007248int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
7249{
7250 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +00007251 struct btrfs_super_block *disk_super;
7252 u64 features;
7253 u64 flags;
7254 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +00007255 int ret;
7256
liubo1aba86d2011-04-08 08:44:37 +00007257 disk_super = &fs_info->super_copy;
7258 if (!btrfs_super_root(disk_super))
7259 return 1;
liuboc59021f2011-03-07 02:13:14 +00007260
liubo1aba86d2011-04-08 08:44:37 +00007261 features = btrfs_super_incompat_flags(disk_super);
7262 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
7263 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +00007264
liubo1aba86d2011-04-08 08:44:37 +00007265 flags = BTRFS_BLOCK_GROUP_SYSTEM;
7266 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +00007267 if (ret)
liubo1aba86d2011-04-08 08:44:37 +00007268 goto out;
liuboc59021f2011-03-07 02:13:14 +00007269
liubo1aba86d2011-04-08 08:44:37 +00007270 if (mixed) {
7271 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
7272 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
7273 } else {
7274 flags = BTRFS_BLOCK_GROUP_METADATA;
7275 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
7276 if (ret)
7277 goto out;
7278
7279 flags = BTRFS_BLOCK_GROUP_DATA;
7280 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
7281 }
7282out:
liuboc59021f2011-03-07 02:13:14 +00007283 return ret;
7284}
7285
liuboacce9522011-01-06 19:30:25 +08007286int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
7287{
7288 return unpin_extent_range(root, start, end);
7289}
7290
7291int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00007292 u64 num_bytes, u64 *actual_bytes)
liuboacce9522011-01-06 19:30:25 +08007293{
Li Dongyang5378e602011-03-24 10:24:27 +00007294 return btrfs_discard_extent(root, bytenr, num_bytes, actual_bytes);
liuboacce9522011-01-06 19:30:25 +08007295}
Li Dongyangf7039b12011-03-24 10:24:28 +00007296
7297int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
7298{
7299 struct btrfs_fs_info *fs_info = root->fs_info;
7300 struct btrfs_block_group_cache *cache = NULL;
7301 u64 group_trimmed;
7302 u64 start;
7303 u64 end;
7304 u64 trimmed = 0;
7305 int ret = 0;
7306
7307 cache = btrfs_lookup_block_group(fs_info, range->start);
7308
7309 while (cache) {
7310 if (cache->key.objectid >= (range->start + range->len)) {
7311 btrfs_put_block_group(cache);
7312 break;
7313 }
7314
7315 start = max(range->start, cache->key.objectid);
7316 end = min(range->start + range->len,
7317 cache->key.objectid + cache->key.offset);
7318
7319 if (end - start >= range->minlen) {
7320 if (!block_group_cache_done(cache)) {
7321 ret = cache_block_group(cache, NULL, root, 0);
7322 if (!ret)
7323 wait_block_group_cache_done(cache);
7324 }
7325 ret = btrfs_trim_block_group(cache,
7326 &group_trimmed,
7327 start,
7328 end,
7329 range->minlen);
7330
7331 trimmed += group_trimmed;
7332 if (ret) {
7333 btrfs_put_block_group(cache);
7334 break;
7335 }
7336 }
7337
7338 cache = next_block_group(fs_info->tree_root, cache);
7339 }
7340
7341 range->len = trimmed;
7342 return ret;
7343}