blob: 1ba2cc58eab5eca00562dc96a71a30d7027d5087 [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
Josef Bacik11dfe352009-11-13 20:12:59 +000097void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
98{
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);
Josef Bacik11dfe352009-11-13 20:12:59 +0000108 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400109 }
Josef Bacik11dfe352009-11-13 20:12:59 +0000110}
111
Josef Bacik0f9dd462008-09-23 13:14:11 -0400112/*
113 * this adds the block group to the fs_info rb tree for the block group
114 * cache
115 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500116static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400117 struct btrfs_block_group_cache *block_group)
118{
119 struct rb_node **p;
120 struct rb_node *parent = NULL;
121 struct btrfs_block_group_cache *cache;
122
123 spin_lock(&info->block_group_cache_lock);
124 p = &info->block_group_cache_tree.rb_node;
125
126 while (*p) {
127 parent = *p;
128 cache = rb_entry(parent, struct btrfs_block_group_cache,
129 cache_node);
130 if (block_group->key.objectid < cache->key.objectid) {
131 p = &(*p)->rb_left;
132 } else if (block_group->key.objectid > cache->key.objectid) {
133 p = &(*p)->rb_right;
134 } else {
135 spin_unlock(&info->block_group_cache_lock);
136 return -EEXIST;
137 }
138 }
139
140 rb_link_node(&block_group->cache_node, parent, p);
141 rb_insert_color(&block_group->cache_node,
142 &info->block_group_cache_tree);
143 spin_unlock(&info->block_group_cache_lock);
144
145 return 0;
146}
147
148/*
149 * This will return the block group at or after bytenr if contains is 0, else
150 * it will return the block group that contains the bytenr
151 */
152static struct btrfs_block_group_cache *
153block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
154 int contains)
155{
156 struct btrfs_block_group_cache *cache, *ret = NULL;
157 struct rb_node *n;
158 u64 end, start;
159
160 spin_lock(&info->block_group_cache_lock);
161 n = info->block_group_cache_tree.rb_node;
162
163 while (n) {
164 cache = rb_entry(n, struct btrfs_block_group_cache,
165 cache_node);
166 end = cache->key.objectid + cache->key.offset - 1;
167 start = cache->key.objectid;
168
169 if (bytenr < start) {
170 if (!contains && (!ret || start < ret->key.objectid))
171 ret = cache;
172 n = n->rb_left;
173 } else if (bytenr > start) {
174 if (contains && bytenr <= end) {
175 ret = cache;
176 break;
177 }
178 n = n->rb_right;
179 } else {
180 ret = cache;
181 break;
182 }
183 }
Yan Zhengd2fb3432008-12-11 16:30:39 -0500184 if (ret)
Josef Bacik11dfe352009-11-13 20:12:59 +0000185 btrfs_get_block_group(ret);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400186 spin_unlock(&info->block_group_cache_lock);
187
188 return ret;
189}
190
Yan Zheng11833d62009-09-11 16:11:19 -0400191static int add_excluded_extent(struct btrfs_root *root,
192 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400193{
Yan Zheng11833d62009-09-11 16:11:19 -0400194 u64 end = start + num_bytes - 1;
195 set_extent_bits(&root->fs_info->freed_extents[0],
196 start, end, EXTENT_UPTODATE, GFP_NOFS);
197 set_extent_bits(&root->fs_info->freed_extents[1],
198 start, end, EXTENT_UPTODATE, GFP_NOFS);
199 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400200}
201
Yan Zheng11833d62009-09-11 16:11:19 -0400202static void free_excluded_extents(struct btrfs_root *root,
203 struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400204{
Yan Zheng11833d62009-09-11 16:11:19 -0400205 u64 start, end;
206
207 start = cache->key.objectid;
208 end = start + cache->key.offset - 1;
209
210 clear_extent_bits(&root->fs_info->freed_extents[0],
211 start, end, EXTENT_UPTODATE, GFP_NOFS);
212 clear_extent_bits(&root->fs_info->freed_extents[1],
213 start, end, EXTENT_UPTODATE, GFP_NOFS);
214}
215
216static int exclude_super_stripes(struct btrfs_root *root,
217 struct btrfs_block_group_cache *cache)
218{
Josef Bacik817d52f2009-07-13 21:29:25 -0400219 u64 bytenr;
220 u64 *logical;
221 int stripe_len;
222 int i, nr, ret;
223
Yan, Zheng06b23312009-11-26 09:31:11 +0000224 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
225 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
226 cache->bytes_super += stripe_len;
227 ret = add_excluded_extent(root, cache->key.objectid,
228 stripe_len);
229 BUG_ON(ret);
230 }
231
Josef Bacik817d52f2009-07-13 21:29:25 -0400232 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
233 bytenr = btrfs_sb_offset(i);
234 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
235 cache->key.objectid, bytenr,
236 0, &logical, &nr, &stripe_len);
237 BUG_ON(ret);
Yan Zheng11833d62009-09-11 16:11:19 -0400238
Josef Bacik817d52f2009-07-13 21:29:25 -0400239 while (nr--) {
Josef Bacik1b2da372009-09-11 16:11:20 -0400240 cache->bytes_super += stripe_len;
Yan Zheng11833d62009-09-11 16:11:19 -0400241 ret = add_excluded_extent(root, logical[nr],
242 stripe_len);
243 BUG_ON(ret);
Josef Bacik817d52f2009-07-13 21:29:25 -0400244 }
Yan Zheng11833d62009-09-11 16:11:19 -0400245
Josef Bacik817d52f2009-07-13 21:29:25 -0400246 kfree(logical);
247 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400248 return 0;
249}
250
Yan Zheng11833d62009-09-11 16:11:19 -0400251static struct btrfs_caching_control *
252get_caching_control(struct btrfs_block_group_cache *cache)
253{
254 struct btrfs_caching_control *ctl;
255
256 spin_lock(&cache->lock);
257 if (cache->cached != BTRFS_CACHE_STARTED) {
258 spin_unlock(&cache->lock);
259 return NULL;
260 }
261
Josef Bacikdde5abe2010-09-16 16:17:03 -0400262 /* We're loading it the fast way, so we don't have a caching_ctl. */
263 if (!cache->caching_ctl) {
264 spin_unlock(&cache->lock);
265 return NULL;
266 }
267
Yan Zheng11833d62009-09-11 16:11:19 -0400268 ctl = cache->caching_ctl;
269 atomic_inc(&ctl->count);
270 spin_unlock(&cache->lock);
271 return ctl;
272}
273
274static void put_caching_control(struct btrfs_caching_control *ctl)
275{
276 if (atomic_dec_and_test(&ctl->count))
277 kfree(ctl);
278}
279
Josef Bacik0f9dd462008-09-23 13:14:11 -0400280/*
281 * this is only called by cache_block_group, since we could have freed extents
282 * we need to check the pinned_extents for any extents that can't be used yet
283 * since their free space will be released as soon as the transaction commits.
284 */
Josef Bacik817d52f2009-07-13 21:29:25 -0400285static u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400286 struct btrfs_fs_info *info, u64 start, u64 end)
287{
Josef Bacik817d52f2009-07-13 21:29:25 -0400288 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400289 int ret;
290
291 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400292 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400293 &extent_start, &extent_end,
Yan Zheng11833d62009-09-11 16:11:19 -0400294 EXTENT_DIRTY | EXTENT_UPTODATE);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400295 if (ret)
296 break;
297
Yan, Zheng06b23312009-11-26 09:31:11 +0000298 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400299 start = extent_end + 1;
300 } else if (extent_start > start && extent_start < end) {
301 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400302 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500303 ret = btrfs_add_free_space(block_group, start,
304 size);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400305 BUG_ON(ret);
306 start = extent_end + 1;
307 } else {
308 break;
309 }
310 }
311
312 if (start < end) {
313 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400314 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500315 ret = btrfs_add_free_space(block_group, start, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400316 BUG_ON(ret);
317 }
318
Josef Bacik817d52f2009-07-13 21:29:25 -0400319 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400320}
321
Josef Bacik817d52f2009-07-13 21:29:25 -0400322static int caching_kthread(void *data)
Chris Masone37c9e62007-05-09 20:13:14 -0400323{
Josef Bacik817d52f2009-07-13 21:29:25 -0400324 struct btrfs_block_group_cache *block_group = data;
325 struct btrfs_fs_info *fs_info = block_group->fs_info;
Yan Zheng11833d62009-09-11 16:11:19 -0400326 struct btrfs_caching_control *caching_ctl = block_group->caching_ctl;
327 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400328 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400329 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400330 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400331 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400332 u64 last = 0;
333 u32 nritems;
334 int ret = 0;
Chris Masonf510cfe2007-10-15 16:14:48 -0400335
Chris Masone37c9e62007-05-09 20:13:14 -0400336 path = btrfs_alloc_path();
337 if (!path)
338 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -0400339
Josef Bacik817d52f2009-07-13 21:29:25 -0400340 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400341
Chris Mason5cd57b22008-06-25 16:01:30 -0400342 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400343 * We don't want to deadlock with somebody trying to allocate a new
344 * extent for the extent root while also trying to search the extent
345 * root to add free space. So we skip locking and search the commit
346 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400347 */
348 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400349 path->search_commit_root = 1;
Josef Bacik026fd312011-05-13 10:32:11 -0400350 path->reada = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400351
Yan Zhenge4404d62008-12-12 10:03:26 -0500352 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400353 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400354 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400355again:
Yan Zheng11833d62009-09-11 16:11:19 -0400356 mutex_lock(&caching_ctl->mutex);
Chris Mason013f1b12009-07-31 14:57:55 -0400357 /* need to make sure the commit_root doesn't disappear */
358 down_read(&fs_info->extent_commit_sem);
359
Yan Zheng11833d62009-09-11 16:11:19 -0400360 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400361 if (ret < 0)
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400362 goto err;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500363
Yan Zheng11833d62009-09-11 16:11:19 -0400364 leaf = path->nodes[0];
365 nritems = btrfs_header_nritems(leaf);
366
Chris Masond3977122009-01-05 21:25:51 -0500367 while (1) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400368 smp_mb();
Yan Zheng11833d62009-09-11 16:11:19 -0400369 if (fs_info->closing > 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;
384 btrfs_release_path(extent_root, path);
385 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
760 btrfs_release_path(root->fs_info->extent_root, path);
761
762 mutex_lock(&head->mutex);
763 mutex_unlock(&head->mutex);
764 btrfs_put_delayed_ref(&head->node);
765 goto again;
766 }
767 if (head->extent_op && head->extent_op->update_flags)
768 extent_flags |= head->extent_op->flags_to_set;
769 else
770 BUG_ON(num_refs == 0);
771
772 num_refs += head->node.ref_mod;
773 mutex_unlock(&head->mutex);
774 }
775 spin_unlock(&delayed_refs->lock);
776out:
777 WARN_ON(num_refs == 0);
778 if (refs)
779 *refs = num_refs;
780 if (flags)
781 *flags = extent_flags;
782out_free:
783 btrfs_free_path(path);
784 return ret;
785}
786
787/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500788 * Back reference rules. Back refs have three main goals:
789 *
790 * 1) differentiate between all holders of references to an extent so that
791 * when a reference is dropped we can make sure it was a valid reference
792 * before freeing the extent.
793 *
794 * 2) Provide enough information to quickly find the holders of an extent
795 * if we notice a given block is corrupted or bad.
796 *
797 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
798 * maintenance. This is actually the same as #2, but with a slightly
799 * different use case.
800 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400801 * There are two kinds of back refs. The implicit back refs is optimized
802 * for pointers in non-shared tree blocks. For a given pointer in a block,
803 * back refs of this kind provide information about the block's owner tree
804 * and the pointer's key. These information allow us to find the block by
805 * b-tree searching. The full back refs is for pointers in tree blocks not
806 * referenced by their owner trees. The location of tree block is recorded
807 * in the back refs. Actually the full back refs is generic, and can be
808 * used in all cases the implicit back refs is used. The major shortcoming
809 * of the full back refs is its overhead. Every time a tree block gets
810 * COWed, we have to update back refs entry for all pointers in it.
811 *
812 * For a newly allocated tree block, we use implicit back refs for
813 * pointers in it. This means most tree related operations only involve
814 * implicit back refs. For a tree block created in old transaction, the
815 * only way to drop a reference to it is COW it. So we can detect the
816 * event that tree block loses its owner tree's reference and do the
817 * back refs conversion.
818 *
819 * When a tree block is COW'd through a tree, there are four cases:
820 *
821 * The reference count of the block is one and the tree is the block's
822 * owner tree. Nothing to do in this case.
823 *
824 * The reference count of the block is one and the tree is not the
825 * block's owner tree. In this case, full back refs is used for pointers
826 * in the block. Remove these full back refs, add implicit back refs for
827 * every pointers in the new block.
828 *
829 * The reference count of the block is greater than one and the tree is
830 * the block's owner tree. In this case, implicit back refs is used for
831 * pointers in the block. Add full back refs for every pointers in the
832 * block, increase lower level extents' reference counts. The original
833 * implicit back refs are entailed to the new block.
834 *
835 * The reference count of the block is greater than one and the tree is
836 * not the block's owner tree. Add implicit back refs for every pointer in
837 * the new block, increase lower level extents' reference count.
838 *
839 * Back Reference Key composing:
840 *
841 * The key objectid corresponds to the first byte in the extent,
842 * The key type is used to differentiate between types of back refs.
843 * There are different meanings of the key offset for different types
844 * of back refs.
845 *
Chris Masond8d5f3e2007-12-11 12:42:00 -0500846 * File extents can be referenced by:
847 *
848 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -0400849 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -0500850 * - different offsets inside a file (bookend extents in file.c)
851 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400852 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500853 *
854 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -0500855 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400856 * - original offset in the file
857 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -0400858 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400859 * The key offset for the implicit back refs is hash of the first
860 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500861 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400862 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500863 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400864 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500865 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400866 * The key offset for the implicit back refs is the first byte of
867 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500868 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400869 * When a file extent is allocated, The implicit back refs is used.
870 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500871 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400872 * (root_key.objectid, inode objectid, offset in file, 1)
873 *
874 * When a file extent is removed file truncation, we find the
875 * corresponding implicit back refs and check the following fields:
876 *
877 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500878 *
879 * Btree extents can be referenced by:
880 *
881 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -0500882 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400883 * Both the implicit back refs and the full back refs for tree blocks
884 * only consist of key. The key offset for the implicit back refs is
885 * objectid of block's owner tree. The key offset for the full back refs
886 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500887 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400888 * When implicit back refs is used, information about the lowest key and
889 * level of the tree block are required. These information are stored in
890 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500891 */
Zheng Yan31840ae2008-09-23 13:14:14 -0400892
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400893#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
894static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
895 struct btrfs_root *root,
896 struct btrfs_path *path,
897 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -0500898{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400899 struct btrfs_extent_item *item;
900 struct btrfs_extent_item_v0 *ei0;
901 struct btrfs_extent_ref_v0 *ref0;
902 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -0400903 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400904 struct btrfs_key key;
905 struct btrfs_key found_key;
906 u32 new_size = sizeof(*item);
907 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -0500908 int ret;
909
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400910 leaf = path->nodes[0];
911 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -0500912
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400913 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
914 ei0 = btrfs_item_ptr(leaf, path->slots[0],
915 struct btrfs_extent_item_v0);
916 refs = btrfs_extent_refs_v0(leaf, ei0);
917
918 if (owner == (u64)-1) {
919 while (1) {
920 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
921 ret = btrfs_next_leaf(root, path);
922 if (ret < 0)
923 return ret;
924 BUG_ON(ret > 0);
925 leaf = path->nodes[0];
926 }
927 btrfs_item_key_to_cpu(leaf, &found_key,
928 path->slots[0]);
929 BUG_ON(key.objectid != found_key.objectid);
930 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
931 path->slots[0]++;
932 continue;
933 }
934 ref0 = btrfs_item_ptr(leaf, path->slots[0],
935 struct btrfs_extent_ref_v0);
936 owner = btrfs_ref_objectid_v0(leaf, ref0);
937 break;
938 }
939 }
940 btrfs_release_path(root, path);
941
942 if (owner < BTRFS_FIRST_FREE_OBJECTID)
943 new_size += sizeof(*bi);
944
945 new_size -= sizeof(*ei0);
946 ret = btrfs_search_slot(trans, root, &key, path,
947 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -0400948 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400949 return ret;
950 BUG_ON(ret);
951
952 ret = btrfs_extend_item(trans, root, path, new_size);
953 BUG_ON(ret);
954
955 leaf = path->nodes[0];
956 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
957 btrfs_set_extent_refs(leaf, item, refs);
958 /* FIXME: get real generation */
959 btrfs_set_extent_generation(leaf, item, 0);
960 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
961 btrfs_set_extent_flags(leaf, item,
962 BTRFS_EXTENT_FLAG_TREE_BLOCK |
963 BTRFS_BLOCK_FLAG_FULL_BACKREF);
964 bi = (struct btrfs_tree_block_info *)(item + 1);
965 /* FIXME: get first key of the block */
966 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
967 btrfs_set_tree_block_level(leaf, bi, (int)owner);
968 } else {
969 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
970 }
971 btrfs_mark_buffer_dirty(leaf);
972 return 0;
973}
974#endif
975
976static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
977{
978 u32 high_crc = ~(u32)0;
979 u32 low_crc = ~(u32)0;
980 __le64 lenum;
981
982 lenum = cpu_to_le64(root_objectid);
David Woodhouse163e7832009-04-19 13:02:41 +0100983 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400984 lenum = cpu_to_le64(owner);
David Woodhouse163e7832009-04-19 13:02:41 +0100985 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400986 lenum = cpu_to_le64(offset);
David Woodhouse163e7832009-04-19 13:02:41 +0100987 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400988
989 return ((u64)high_crc << 31) ^ (u64)low_crc;
990}
991
992static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
993 struct btrfs_extent_data_ref *ref)
994{
995 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
996 btrfs_extent_data_ref_objectid(leaf, ref),
997 btrfs_extent_data_ref_offset(leaf, ref));
998}
999
1000static int match_extent_data_ref(struct extent_buffer *leaf,
1001 struct btrfs_extent_data_ref *ref,
1002 u64 root_objectid, u64 owner, u64 offset)
1003{
1004 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1005 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1006 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1007 return 0;
1008 return 1;
1009}
1010
1011static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
1012 struct btrfs_root *root,
1013 struct btrfs_path *path,
1014 u64 bytenr, u64 parent,
1015 u64 root_objectid,
1016 u64 owner, u64 offset)
1017{
1018 struct btrfs_key key;
1019 struct btrfs_extent_data_ref *ref;
1020 struct extent_buffer *leaf;
1021 u32 nritems;
1022 int ret;
1023 int recow;
1024 int err = -ENOENT;
1025
1026 key.objectid = bytenr;
1027 if (parent) {
1028 key.type = BTRFS_SHARED_DATA_REF_KEY;
1029 key.offset = parent;
1030 } else {
1031 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1032 key.offset = hash_extent_data_ref(root_objectid,
1033 owner, offset);
1034 }
1035again:
1036 recow = 0;
1037 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1038 if (ret < 0) {
1039 err = ret;
1040 goto fail;
1041 }
1042
1043 if (parent) {
1044 if (!ret)
1045 return 0;
1046#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1047 key.type = BTRFS_EXTENT_REF_V0_KEY;
1048 btrfs_release_path(root, path);
1049 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1050 if (ret < 0) {
1051 err = ret;
1052 goto fail;
1053 }
1054 if (!ret)
1055 return 0;
1056#endif
1057 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001058 }
1059
1060 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001061 nritems = btrfs_header_nritems(leaf);
1062 while (1) {
1063 if (path->slots[0] >= nritems) {
1064 ret = btrfs_next_leaf(root, path);
1065 if (ret < 0)
1066 err = ret;
1067 if (ret)
1068 goto fail;
1069
1070 leaf = path->nodes[0];
1071 nritems = btrfs_header_nritems(leaf);
1072 recow = 1;
1073 }
1074
1075 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1076 if (key.objectid != bytenr ||
1077 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1078 goto fail;
1079
1080 ref = btrfs_item_ptr(leaf, path->slots[0],
1081 struct btrfs_extent_data_ref);
1082
1083 if (match_extent_data_ref(leaf, ref, root_objectid,
1084 owner, offset)) {
1085 if (recow) {
1086 btrfs_release_path(root, path);
1087 goto again;
1088 }
1089 err = 0;
1090 break;
1091 }
1092 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001093 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001094fail:
1095 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001096}
1097
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001098static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1099 struct btrfs_root *root,
1100 struct btrfs_path *path,
1101 u64 bytenr, u64 parent,
1102 u64 root_objectid, u64 owner,
1103 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001104{
1105 struct btrfs_key key;
1106 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001107 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001108 u32 num_refs;
1109 int ret;
1110
1111 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001112 if (parent) {
1113 key.type = BTRFS_SHARED_DATA_REF_KEY;
1114 key.offset = parent;
1115 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001116 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001117 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1118 key.offset = hash_extent_data_ref(root_objectid,
1119 owner, offset);
1120 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001121 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001122
1123 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1124 if (ret && ret != -EEXIST)
1125 goto fail;
1126
1127 leaf = path->nodes[0];
1128 if (parent) {
1129 struct btrfs_shared_data_ref *ref;
1130 ref = btrfs_item_ptr(leaf, path->slots[0],
1131 struct btrfs_shared_data_ref);
1132 if (ret == 0) {
1133 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1134 } else {
1135 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1136 num_refs += refs_to_add;
1137 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1138 }
1139 } else {
1140 struct btrfs_extent_data_ref *ref;
1141 while (ret == -EEXIST) {
1142 ref = btrfs_item_ptr(leaf, path->slots[0],
1143 struct btrfs_extent_data_ref);
1144 if (match_extent_data_ref(leaf, ref, root_objectid,
1145 owner, offset))
1146 break;
1147 btrfs_release_path(root, path);
1148 key.offset++;
1149 ret = btrfs_insert_empty_item(trans, root, path, &key,
1150 size);
1151 if (ret && ret != -EEXIST)
1152 goto fail;
1153
1154 leaf = path->nodes[0];
1155 }
1156 ref = btrfs_item_ptr(leaf, path->slots[0],
1157 struct btrfs_extent_data_ref);
1158 if (ret == 0) {
1159 btrfs_set_extent_data_ref_root(leaf, ref,
1160 root_objectid);
1161 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1162 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1163 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1164 } else {
1165 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1166 num_refs += refs_to_add;
1167 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1168 }
1169 }
1170 btrfs_mark_buffer_dirty(leaf);
1171 ret = 0;
1172fail:
Chris Mason7bb86312007-12-11 09:25:06 -05001173 btrfs_release_path(root, path);
1174 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001175}
1176
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001177static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1178 struct btrfs_root *root,
1179 struct btrfs_path *path,
1180 int refs_to_drop)
Zheng Yan31840ae2008-09-23 13:14:14 -04001181{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001182 struct btrfs_key key;
1183 struct btrfs_extent_data_ref *ref1 = NULL;
1184 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001185 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001186 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001187 int ret = 0;
1188
1189 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001190 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1191
1192 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1193 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1194 struct btrfs_extent_data_ref);
1195 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1196 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1197 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1198 struct btrfs_shared_data_ref);
1199 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1200#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1201 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1202 struct btrfs_extent_ref_v0 *ref0;
1203 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1204 struct btrfs_extent_ref_v0);
1205 num_refs = btrfs_ref_count_v0(leaf, ref0);
1206#endif
1207 } else {
1208 BUG();
1209 }
1210
Chris Mason56bec292009-03-13 10:10:06 -04001211 BUG_ON(num_refs < refs_to_drop);
1212 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001213
Zheng Yan31840ae2008-09-23 13:14:14 -04001214 if (num_refs == 0) {
1215 ret = btrfs_del_item(trans, root, path);
1216 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001217 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1218 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1219 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1220 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1221#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1222 else {
1223 struct btrfs_extent_ref_v0 *ref0;
1224 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1225 struct btrfs_extent_ref_v0);
1226 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1227 }
1228#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001229 btrfs_mark_buffer_dirty(leaf);
1230 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001231 return ret;
1232}
1233
1234static noinline u32 extent_data_ref_count(struct btrfs_root *root,
1235 struct btrfs_path *path,
1236 struct btrfs_extent_inline_ref *iref)
1237{
1238 struct btrfs_key key;
1239 struct extent_buffer *leaf;
1240 struct btrfs_extent_data_ref *ref1;
1241 struct btrfs_shared_data_ref *ref2;
1242 u32 num_refs = 0;
1243
1244 leaf = path->nodes[0];
1245 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1246 if (iref) {
1247 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1248 BTRFS_EXTENT_DATA_REF_KEY) {
1249 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1250 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1251 } else {
1252 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1253 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1254 }
1255 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1256 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1257 struct btrfs_extent_data_ref);
1258 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1259 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1260 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1261 struct btrfs_shared_data_ref);
1262 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1263#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1264 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1265 struct btrfs_extent_ref_v0 *ref0;
1266 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1267 struct btrfs_extent_ref_v0);
1268 num_refs = btrfs_ref_count_v0(leaf, ref0);
1269#endif
1270 } else {
1271 WARN_ON(1);
1272 }
1273 return num_refs;
1274}
1275
1276static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1277 struct btrfs_root *root,
1278 struct btrfs_path *path,
1279 u64 bytenr, u64 parent,
1280 u64 root_objectid)
1281{
1282 struct btrfs_key key;
1283 int ret;
1284
1285 key.objectid = bytenr;
1286 if (parent) {
1287 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1288 key.offset = parent;
1289 } else {
1290 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1291 key.offset = root_objectid;
1292 }
1293
1294 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1295 if (ret > 0)
1296 ret = -ENOENT;
1297#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1298 if (ret == -ENOENT && parent) {
1299 btrfs_release_path(root, path);
1300 key.type = BTRFS_EXTENT_REF_V0_KEY;
1301 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1302 if (ret > 0)
1303 ret = -ENOENT;
1304 }
1305#endif
1306 return ret;
1307}
1308
1309static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1310 struct btrfs_root *root,
1311 struct btrfs_path *path,
1312 u64 bytenr, u64 parent,
1313 u64 root_objectid)
1314{
1315 struct btrfs_key key;
1316 int ret;
1317
1318 key.objectid = bytenr;
1319 if (parent) {
1320 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1321 key.offset = parent;
1322 } else {
1323 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1324 key.offset = root_objectid;
1325 }
1326
1327 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04001328 btrfs_release_path(root, path);
1329 return ret;
1330}
1331
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001332static inline int extent_ref_type(u64 parent, u64 owner)
1333{
1334 int type;
1335 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1336 if (parent > 0)
1337 type = BTRFS_SHARED_BLOCK_REF_KEY;
1338 else
1339 type = BTRFS_TREE_BLOCK_REF_KEY;
1340 } else {
1341 if (parent > 0)
1342 type = BTRFS_SHARED_DATA_REF_KEY;
1343 else
1344 type = BTRFS_EXTENT_DATA_REF_KEY;
1345 }
1346 return type;
1347}
1348
Yan Zheng2c47e6052009-06-27 21:07:35 -04001349static int find_next_key(struct btrfs_path *path, int level,
1350 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001351
1352{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001353 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001354 if (!path->nodes[level])
1355 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001356 if (path->slots[level] + 1 >=
1357 btrfs_header_nritems(path->nodes[level]))
1358 continue;
1359 if (level == 0)
1360 btrfs_item_key_to_cpu(path->nodes[level], key,
1361 path->slots[level] + 1);
1362 else
1363 btrfs_node_key_to_cpu(path->nodes[level], key,
1364 path->slots[level] + 1);
1365 return 0;
1366 }
1367 return 1;
1368}
1369
1370/*
1371 * look for inline back ref. if back ref is found, *ref_ret is set
1372 * to the address of inline back ref, and 0 is returned.
1373 *
1374 * if back ref isn't found, *ref_ret is set to the address where it
1375 * should be inserted, and -ENOENT is returned.
1376 *
1377 * if insert is true and there are too many inline back refs, the path
1378 * points to the extent item, and -EAGAIN is returned.
1379 *
1380 * NOTE: inline back refs are ordered in the same way that back ref
1381 * items in the tree are ordered.
1382 */
1383static noinline_for_stack
1384int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1385 struct btrfs_root *root,
1386 struct btrfs_path *path,
1387 struct btrfs_extent_inline_ref **ref_ret,
1388 u64 bytenr, u64 num_bytes,
1389 u64 parent, u64 root_objectid,
1390 u64 owner, u64 offset, int insert)
1391{
1392 struct btrfs_key key;
1393 struct extent_buffer *leaf;
1394 struct btrfs_extent_item *ei;
1395 struct btrfs_extent_inline_ref *iref;
1396 u64 flags;
1397 u64 item_size;
1398 unsigned long ptr;
1399 unsigned long end;
1400 int extra_size;
1401 int type;
1402 int want;
1403 int ret;
1404 int err = 0;
1405
1406 key.objectid = bytenr;
1407 key.type = BTRFS_EXTENT_ITEM_KEY;
1408 key.offset = num_bytes;
1409
1410 want = extent_ref_type(parent, owner);
1411 if (insert) {
1412 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001413 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001414 } else
1415 extra_size = -1;
1416 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1417 if (ret < 0) {
1418 err = ret;
1419 goto out;
1420 }
1421 BUG_ON(ret);
1422
1423 leaf = path->nodes[0];
1424 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1425#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1426 if (item_size < sizeof(*ei)) {
1427 if (!insert) {
1428 err = -ENOENT;
1429 goto out;
1430 }
1431 ret = convert_extent_item_v0(trans, root, path, owner,
1432 extra_size);
1433 if (ret < 0) {
1434 err = ret;
1435 goto out;
1436 }
1437 leaf = path->nodes[0];
1438 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1439 }
1440#endif
1441 BUG_ON(item_size < sizeof(*ei));
1442
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001443 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1444 flags = btrfs_extent_flags(leaf, ei);
1445
1446 ptr = (unsigned long)(ei + 1);
1447 end = (unsigned long)ei + item_size;
1448
1449 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
1450 ptr += sizeof(struct btrfs_tree_block_info);
1451 BUG_ON(ptr > end);
1452 } else {
1453 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_DATA));
1454 }
1455
1456 err = -ENOENT;
1457 while (1) {
1458 if (ptr >= end) {
1459 WARN_ON(ptr > end);
1460 break;
1461 }
1462 iref = (struct btrfs_extent_inline_ref *)ptr;
1463 type = btrfs_extent_inline_ref_type(leaf, iref);
1464 if (want < type)
1465 break;
1466 if (want > type) {
1467 ptr += btrfs_extent_inline_ref_size(type);
1468 continue;
1469 }
1470
1471 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1472 struct btrfs_extent_data_ref *dref;
1473 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1474 if (match_extent_data_ref(leaf, dref, root_objectid,
1475 owner, offset)) {
1476 err = 0;
1477 break;
1478 }
1479 if (hash_extent_data_ref_item(leaf, dref) <
1480 hash_extent_data_ref(root_objectid, owner, offset))
1481 break;
1482 } else {
1483 u64 ref_offset;
1484 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1485 if (parent > 0) {
1486 if (parent == ref_offset) {
1487 err = 0;
1488 break;
1489 }
1490 if (ref_offset < parent)
1491 break;
1492 } else {
1493 if (root_objectid == ref_offset) {
1494 err = 0;
1495 break;
1496 }
1497 if (ref_offset < root_objectid)
1498 break;
1499 }
1500 }
1501 ptr += btrfs_extent_inline_ref_size(type);
1502 }
1503 if (err == -ENOENT && insert) {
1504 if (item_size + extra_size >=
1505 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1506 err = -EAGAIN;
1507 goto out;
1508 }
1509 /*
1510 * To add new inline back ref, we have to make sure
1511 * there is no corresponding back ref item.
1512 * For simplicity, we just do not add new inline back
1513 * ref if there is any kind of item for this block
1514 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001515 if (find_next_key(path, 0, &key) == 0 &&
1516 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001517 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001518 err = -EAGAIN;
1519 goto out;
1520 }
1521 }
1522 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1523out:
Yan Zheng85d41982009-06-11 08:51:10 -04001524 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001525 path->keep_locks = 0;
1526 btrfs_unlock_up_safe(path, 1);
1527 }
1528 return err;
1529}
1530
1531/*
1532 * helper to add new inline back ref
1533 */
1534static noinline_for_stack
1535int setup_inline_extent_backref(struct btrfs_trans_handle *trans,
1536 struct btrfs_root *root,
1537 struct btrfs_path *path,
1538 struct btrfs_extent_inline_ref *iref,
1539 u64 parent, u64 root_objectid,
1540 u64 owner, u64 offset, int refs_to_add,
1541 struct btrfs_delayed_extent_op *extent_op)
1542{
1543 struct extent_buffer *leaf;
1544 struct btrfs_extent_item *ei;
1545 unsigned long ptr;
1546 unsigned long end;
1547 unsigned long item_offset;
1548 u64 refs;
1549 int size;
1550 int type;
1551 int ret;
1552
1553 leaf = path->nodes[0];
1554 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1555 item_offset = (unsigned long)iref - (unsigned long)ei;
1556
1557 type = extent_ref_type(parent, owner);
1558 size = btrfs_extent_inline_ref_size(type);
1559
1560 ret = btrfs_extend_item(trans, root, path, size);
1561 BUG_ON(ret);
1562
1563 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1564 refs = btrfs_extent_refs(leaf, ei);
1565 refs += refs_to_add;
1566 btrfs_set_extent_refs(leaf, ei, refs);
1567 if (extent_op)
1568 __run_delayed_extent_op(extent_op, leaf, ei);
1569
1570 ptr = (unsigned long)ei + item_offset;
1571 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1572 if (ptr < end - size)
1573 memmove_extent_buffer(leaf, ptr + size, ptr,
1574 end - size - ptr);
1575
1576 iref = (struct btrfs_extent_inline_ref *)ptr;
1577 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1578 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1579 struct btrfs_extent_data_ref *dref;
1580 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1581 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1582 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1583 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1584 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1585 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1586 struct btrfs_shared_data_ref *sref;
1587 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1588 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1589 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1590 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1591 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1592 } else {
1593 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1594 }
1595 btrfs_mark_buffer_dirty(leaf);
1596 return 0;
1597}
1598
1599static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1600 struct btrfs_root *root,
1601 struct btrfs_path *path,
1602 struct btrfs_extent_inline_ref **ref_ret,
1603 u64 bytenr, u64 num_bytes, u64 parent,
1604 u64 root_objectid, u64 owner, u64 offset)
1605{
1606 int ret;
1607
1608 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1609 bytenr, num_bytes, parent,
1610 root_objectid, owner, offset, 0);
1611 if (ret != -ENOENT)
1612 return ret;
1613
1614 btrfs_release_path(root, path);
1615 *ref_ret = NULL;
1616
1617 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1618 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1619 root_objectid);
1620 } else {
1621 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1622 root_objectid, owner, offset);
1623 }
1624 return ret;
1625}
1626
1627/*
1628 * helper to update/remove inline back ref
1629 */
1630static noinline_for_stack
1631int update_inline_extent_backref(struct btrfs_trans_handle *trans,
1632 struct btrfs_root *root,
1633 struct btrfs_path *path,
1634 struct btrfs_extent_inline_ref *iref,
1635 int refs_to_mod,
1636 struct btrfs_delayed_extent_op *extent_op)
1637{
1638 struct extent_buffer *leaf;
1639 struct btrfs_extent_item *ei;
1640 struct btrfs_extent_data_ref *dref = NULL;
1641 struct btrfs_shared_data_ref *sref = NULL;
1642 unsigned long ptr;
1643 unsigned long end;
1644 u32 item_size;
1645 int size;
1646 int type;
1647 int ret;
1648 u64 refs;
1649
1650 leaf = path->nodes[0];
1651 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1652 refs = btrfs_extent_refs(leaf, ei);
1653 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1654 refs += refs_to_mod;
1655 btrfs_set_extent_refs(leaf, ei, refs);
1656 if (extent_op)
1657 __run_delayed_extent_op(extent_op, leaf, ei);
1658
1659 type = btrfs_extent_inline_ref_type(leaf, iref);
1660
1661 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1662 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1663 refs = btrfs_extent_data_ref_count(leaf, dref);
1664 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1665 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1666 refs = btrfs_shared_data_ref_count(leaf, sref);
1667 } else {
1668 refs = 1;
1669 BUG_ON(refs_to_mod != -1);
1670 }
1671
1672 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1673 refs += refs_to_mod;
1674
1675 if (refs > 0) {
1676 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1677 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1678 else
1679 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1680 } else {
1681 size = btrfs_extent_inline_ref_size(type);
1682 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1683 ptr = (unsigned long)iref;
1684 end = (unsigned long)ei + item_size;
1685 if (ptr + size < end)
1686 memmove_extent_buffer(leaf, ptr, ptr + size,
1687 end - ptr - size);
1688 item_size -= size;
1689 ret = btrfs_truncate_item(trans, root, path, item_size, 1);
1690 BUG_ON(ret);
1691 }
1692 btrfs_mark_buffer_dirty(leaf);
1693 return 0;
1694}
1695
1696static noinline_for_stack
1697int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1698 struct btrfs_root *root,
1699 struct btrfs_path *path,
1700 u64 bytenr, u64 num_bytes, u64 parent,
1701 u64 root_objectid, u64 owner,
1702 u64 offset, int refs_to_add,
1703 struct btrfs_delayed_extent_op *extent_op)
1704{
1705 struct btrfs_extent_inline_ref *iref;
1706 int ret;
1707
1708 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1709 bytenr, num_bytes, parent,
1710 root_objectid, owner, offset, 1);
1711 if (ret == 0) {
1712 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
1713 ret = update_inline_extent_backref(trans, root, path, iref,
1714 refs_to_add, extent_op);
1715 } else if (ret == -ENOENT) {
1716 ret = setup_inline_extent_backref(trans, root, path, iref,
1717 parent, root_objectid,
1718 owner, offset, refs_to_add,
1719 extent_op);
1720 }
1721 return ret;
1722}
1723
1724static int insert_extent_backref(struct btrfs_trans_handle *trans,
1725 struct btrfs_root *root,
1726 struct btrfs_path *path,
1727 u64 bytenr, u64 parent, u64 root_objectid,
1728 u64 owner, u64 offset, int refs_to_add)
1729{
1730 int ret;
1731 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1732 BUG_ON(refs_to_add != 1);
1733 ret = insert_tree_block_ref(trans, root, path, bytenr,
1734 parent, root_objectid);
1735 } else {
1736 ret = insert_extent_data_ref(trans, root, path, bytenr,
1737 parent, root_objectid,
1738 owner, offset, refs_to_add);
1739 }
1740 return ret;
1741}
1742
1743static int remove_extent_backref(struct btrfs_trans_handle *trans,
1744 struct btrfs_root *root,
1745 struct btrfs_path *path,
1746 struct btrfs_extent_inline_ref *iref,
1747 int refs_to_drop, int is_data)
1748{
1749 int ret;
1750
1751 BUG_ON(!is_data && refs_to_drop != 1);
1752 if (iref) {
1753 ret = update_inline_extent_backref(trans, root, path, iref,
1754 -refs_to_drop, NULL);
1755 } else if (is_data) {
1756 ret = remove_extent_data_ref(trans, root, path, refs_to_drop);
1757 } else {
1758 ret = btrfs_del_item(trans, root, path);
1759 }
1760 return ret;
1761}
1762
Li Dongyang5378e602011-03-24 10:24:27 +00001763static int btrfs_issue_discard(struct block_device *bdev,
Chris Mason15916de2008-11-19 21:17:22 -05001764 u64 start, u64 len)
1765{
Li Dongyang5378e602011-03-24 10:24:27 +00001766 return blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_NOFS, 0);
Chris Mason15916de2008-11-19 21:17:22 -05001767}
Chris Mason15916de2008-11-19 21:17:22 -05001768
Liu Hui1f3c79a2009-01-05 15:57:51 -05001769static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00001770 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05001771{
Liu Hui1f3c79a2009-01-05 15:57:51 -05001772 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00001773 u64 discarded_bytes = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001774 struct btrfs_multi_bio *multi = NULL;
1775
Christoph Hellwige244a0a2009-10-14 09:24:59 -04001776
Liu Hui1f3c79a2009-01-05 15:57:51 -05001777 /* Tell the block device(s) that the sectors can be discarded */
Li Dongyang5378e602011-03-24 10:24:27 +00001778 ret = btrfs_map_block(&root->fs_info->mapping_tree, REQ_DISCARD,
1779 bytenr, &num_bytes, &multi, 0);
Liu Hui1f3c79a2009-01-05 15:57:51 -05001780 if (!ret) {
1781 struct btrfs_bio_stripe *stripe = multi->stripes;
1782 int i;
1783
Liu Hui1f3c79a2009-01-05 15:57:51 -05001784
1785 for (i = 0; i < multi->num_stripes; i++, stripe++) {
Li Dongyang5378e602011-03-24 10:24:27 +00001786 ret = btrfs_issue_discard(stripe->dev->bdev,
1787 stripe->physical,
1788 stripe->length);
1789 if (!ret)
1790 discarded_bytes += stripe->length;
1791 else if (ret != -EOPNOTSUPP)
1792 break;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001793 }
1794 kfree(multi);
1795 }
Li Dongyang5378e602011-03-24 10:24:27 +00001796 if (discarded_bytes && ret == -EOPNOTSUPP)
1797 ret = 0;
1798
1799 if (actual_bytes)
1800 *actual_bytes = discarded_bytes;
1801
Liu Hui1f3c79a2009-01-05 15:57:51 -05001802
1803 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001804}
1805
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001806int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1807 struct btrfs_root *root,
1808 u64 bytenr, u64 num_bytes, u64 parent,
1809 u64 root_objectid, u64 owner, u64 offset)
Zheng Yan31840ae2008-09-23 13:14:14 -04001810{
1811 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001812 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
1813 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04001814
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001815 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1816 ret = btrfs_add_delayed_tree_ref(trans, bytenr, num_bytes,
1817 parent, root_objectid, (int)owner,
1818 BTRFS_ADD_DELAYED_REF, NULL);
1819 } else {
1820 ret = btrfs_add_delayed_data_ref(trans, bytenr, num_bytes,
1821 parent, root_objectid, owner, offset,
1822 BTRFS_ADD_DELAYED_REF, NULL);
1823 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001824 return ret;
1825}
1826
Chris Mason925baed2008-06-25 16:01:30 -04001827static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001828 struct btrfs_root *root,
1829 u64 bytenr, u64 num_bytes,
1830 u64 parent, u64 root_objectid,
1831 u64 owner, u64 offset, int refs_to_add,
1832 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04001833{
Chris Mason5caf2a02007-04-02 11:20:42 -04001834 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001835 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04001836 struct btrfs_extent_item *item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001837 u64 refs;
1838 int ret;
1839 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001840
Chris Mason5caf2a02007-04-02 11:20:42 -04001841 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001842 if (!path)
1843 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04001844
Chris Mason3c12ac72008-04-21 12:01:38 -04001845 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001846 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001847 /* this will setup the path even if it fails to insert the back ref */
1848 ret = insert_inline_extent_backref(trans, root->fs_info->extent_root,
1849 path, bytenr, num_bytes, parent,
1850 root_objectid, owner, offset,
1851 refs_to_add, extent_op);
1852 if (ret == 0)
1853 goto out;
Zheng Yan31840ae2008-09-23 13:14:14 -04001854
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001855 if (ret != -EAGAIN) {
1856 err = ret;
1857 goto out;
Chris Masonb9473432009-03-13 11:00:37 -04001858 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001859
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001860 leaf = path->nodes[0];
1861 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1862 refs = btrfs_extent_refs(leaf, item);
1863 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
1864 if (extent_op)
1865 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04001866
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001867 btrfs_mark_buffer_dirty(leaf);
Chris Mason5caf2a02007-04-02 11:20:42 -04001868 btrfs_release_path(root->fs_info->extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -05001869
Chris Mason3c12ac72008-04-21 12:01:38 -04001870 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001871 path->leave_spinning = 1;
1872
Chris Mason56bec292009-03-13 10:10:06 -04001873 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04001874 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001875 path, bytenr, parent, root_objectid,
1876 owner, offset, refs_to_add);
Chris Mason7bb86312007-12-11 09:25:06 -05001877 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001878out:
Chris Mason74493f72007-12-11 09:25:06 -05001879 btrfs_free_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001880 return err;
Chris Mason02217ed2007-03-02 16:08:05 -05001881}
1882
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001883static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
1884 struct btrfs_root *root,
1885 struct btrfs_delayed_ref_node *node,
1886 struct btrfs_delayed_extent_op *extent_op,
1887 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04001888{
Chris Mason56bec292009-03-13 10:10:06 -04001889 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001890 struct btrfs_delayed_data_ref *ref;
1891 struct btrfs_key ins;
1892 u64 parent = 0;
1893 u64 ref_root = 0;
1894 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04001895
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001896 ins.objectid = node->bytenr;
1897 ins.offset = node->num_bytes;
1898 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04001899
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001900 ref = btrfs_delayed_node_to_data_ref(node);
1901 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
1902 parent = ref->parent;
1903 else
1904 ref_root = ref->root;
1905
1906 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
1907 if (extent_op) {
1908 BUG_ON(extent_op->update_key);
1909 flags |= extent_op->flags_to_set;
1910 }
1911 ret = alloc_reserved_file_extent(trans, root,
1912 parent, ref_root, flags,
1913 ref->objectid, ref->offset,
1914 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001915 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
1916 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
1917 node->num_bytes, parent,
1918 ref_root, ref->objectid,
1919 ref->offset, node->ref_mod,
1920 extent_op);
1921 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
1922 ret = __btrfs_free_extent(trans, root, node->bytenr,
1923 node->num_bytes, parent,
1924 ref_root, ref->objectid,
1925 ref->offset, node->ref_mod,
1926 extent_op);
1927 } else {
1928 BUG();
1929 }
Chris Mason56bec292009-03-13 10:10:06 -04001930 return ret;
1931}
1932
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001933static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
1934 struct extent_buffer *leaf,
1935 struct btrfs_extent_item *ei)
1936{
1937 u64 flags = btrfs_extent_flags(leaf, ei);
1938 if (extent_op->update_flags) {
1939 flags |= extent_op->flags_to_set;
1940 btrfs_set_extent_flags(leaf, ei, flags);
1941 }
1942
1943 if (extent_op->update_key) {
1944 struct btrfs_tree_block_info *bi;
1945 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
1946 bi = (struct btrfs_tree_block_info *)(ei + 1);
1947 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
1948 }
1949}
1950
1951static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
1952 struct btrfs_root *root,
1953 struct btrfs_delayed_ref_node *node,
1954 struct btrfs_delayed_extent_op *extent_op)
1955{
1956 struct btrfs_key key;
1957 struct btrfs_path *path;
1958 struct btrfs_extent_item *ei;
1959 struct extent_buffer *leaf;
1960 u32 item_size;
1961 int ret;
1962 int err = 0;
1963
1964 path = btrfs_alloc_path();
1965 if (!path)
1966 return -ENOMEM;
1967
1968 key.objectid = node->bytenr;
1969 key.type = BTRFS_EXTENT_ITEM_KEY;
1970 key.offset = node->num_bytes;
1971
1972 path->reada = 1;
1973 path->leave_spinning = 1;
1974 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
1975 path, 0, 1);
1976 if (ret < 0) {
1977 err = ret;
1978 goto out;
1979 }
1980 if (ret > 0) {
1981 err = -EIO;
1982 goto out;
1983 }
1984
1985 leaf = path->nodes[0];
1986 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1987#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1988 if (item_size < sizeof(*ei)) {
1989 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
1990 path, (u64)-1, 0);
1991 if (ret < 0) {
1992 err = ret;
1993 goto out;
1994 }
1995 leaf = path->nodes[0];
1996 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1997 }
1998#endif
1999 BUG_ON(item_size < sizeof(*ei));
2000 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2001 __run_delayed_extent_op(extent_op, leaf, ei);
2002
2003 btrfs_mark_buffer_dirty(leaf);
2004out:
2005 btrfs_free_path(path);
2006 return err;
2007}
2008
2009static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2010 struct btrfs_root *root,
2011 struct btrfs_delayed_ref_node *node,
2012 struct btrfs_delayed_extent_op *extent_op,
2013 int insert_reserved)
2014{
2015 int ret = 0;
2016 struct btrfs_delayed_tree_ref *ref;
2017 struct btrfs_key ins;
2018 u64 parent = 0;
2019 u64 ref_root = 0;
2020
2021 ins.objectid = node->bytenr;
2022 ins.offset = node->num_bytes;
2023 ins.type = BTRFS_EXTENT_ITEM_KEY;
2024
2025 ref = btrfs_delayed_node_to_tree_ref(node);
2026 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2027 parent = ref->parent;
2028 else
2029 ref_root = ref->root;
2030
2031 BUG_ON(node->ref_mod != 1);
2032 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
2033 BUG_ON(!extent_op || !extent_op->update_flags ||
2034 !extent_op->update_key);
2035 ret = alloc_reserved_tree_block(trans, root,
2036 parent, ref_root,
2037 extent_op->flags_to_set,
2038 &extent_op->key,
2039 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002040 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2041 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2042 node->num_bytes, parent, ref_root,
2043 ref->level, 0, 1, extent_op);
2044 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2045 ret = __btrfs_free_extent(trans, root, node->bytenr,
2046 node->num_bytes, parent, ref_root,
2047 ref->level, 0, 1, extent_op);
2048 } else {
2049 BUG();
2050 }
2051 return ret;
2052}
2053
Chris Mason56bec292009-03-13 10:10:06 -04002054/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002055static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2056 struct btrfs_root *root,
2057 struct btrfs_delayed_ref_node *node,
2058 struct btrfs_delayed_extent_op *extent_op,
2059 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002060{
Josef Bacikeb099672009-02-12 09:27:38 -05002061 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002062 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002063 struct btrfs_delayed_ref_head *head;
2064 /*
2065 * we've hit the end of the chain and we were supposed
2066 * to insert this extent into the tree. But, it got
2067 * deleted before we ever needed to insert it, so all
2068 * we have to do is clean up the accounting
2069 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002070 BUG_ON(extent_op);
2071 head = btrfs_delayed_node_to_head(node);
Chris Mason56bec292009-03-13 10:10:06 -04002072 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002073 btrfs_pin_extent(root, node->bytenr,
2074 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002075 if (head->is_data) {
2076 ret = btrfs_del_csums(trans, root,
2077 node->bytenr,
2078 node->num_bytes);
2079 BUG_ON(ret);
2080 }
Chris Mason56bec292009-03-13 10:10:06 -04002081 }
Chris Mason56bec292009-03-13 10:10:06 -04002082 mutex_unlock(&head->mutex);
2083 return 0;
2084 }
Josef Bacikeb099672009-02-12 09:27:38 -05002085
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002086 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2087 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2088 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2089 insert_reserved);
2090 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2091 node->type == BTRFS_SHARED_DATA_REF_KEY)
2092 ret = run_delayed_data_ref(trans, root, node, extent_op,
2093 insert_reserved);
2094 else
2095 BUG();
2096 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002097}
2098
Chris Mason56bec292009-03-13 10:10:06 -04002099static noinline struct btrfs_delayed_ref_node *
2100select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002101{
Chris Mason56bec292009-03-13 10:10:06 -04002102 struct rb_node *node;
2103 struct btrfs_delayed_ref_node *ref;
2104 int action = BTRFS_ADD_DELAYED_REF;
2105again:
2106 /*
2107 * select delayed ref of type BTRFS_ADD_DELAYED_REF first.
2108 * this prevents ref count from going down to zero when
2109 * there still are pending delayed ref.
2110 */
2111 node = rb_prev(&head->node.rb_node);
2112 while (1) {
2113 if (!node)
2114 break;
2115 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2116 rb_node);
2117 if (ref->bytenr != head->node.bytenr)
2118 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002119 if (ref->action == action)
Chris Mason56bec292009-03-13 10:10:06 -04002120 return ref;
2121 node = rb_prev(node);
Chris Mason5f39d392007-10-15 16:14:19 -04002122 }
Chris Mason56bec292009-03-13 10:10:06 -04002123 if (action == BTRFS_ADD_DELAYED_REF) {
2124 action = BTRFS_DROP_DELAYED_REF;
2125 goto again;
2126 }
2127 return NULL;
2128}
2129
Chris Masonc3e69d52009-03-13 10:17:05 -04002130static noinline int run_clustered_refs(struct btrfs_trans_handle *trans,
2131 struct btrfs_root *root,
2132 struct list_head *cluster)
Chris Mason56bec292009-03-13 10:10:06 -04002133{
Chris Mason56bec292009-03-13 10:10:06 -04002134 struct btrfs_delayed_ref_root *delayed_refs;
2135 struct btrfs_delayed_ref_node *ref;
2136 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002137 struct btrfs_delayed_extent_op *extent_op;
Chris Mason56bec292009-03-13 10:10:06 -04002138 int ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002139 int count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002140 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002141
2142 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002143 while (1) {
2144 if (!locked_ref) {
Chris Masonc3e69d52009-03-13 10:17:05 -04002145 /* pick a new head ref from the cluster list */
2146 if (list_empty(cluster))
Chris Mason56bec292009-03-13 10:10:06 -04002147 break;
Chris Mason56bec292009-03-13 10:10:06 -04002148
Chris Masonc3e69d52009-03-13 10:17:05 -04002149 locked_ref = list_entry(cluster->next,
2150 struct btrfs_delayed_ref_head, cluster);
2151
2152 /* grab the lock that says we are going to process
2153 * all the refs for this head */
2154 ret = btrfs_delayed_ref_lock(trans, locked_ref);
2155
2156 /*
2157 * we may have dropped the spin lock to get the head
2158 * mutex lock, and that might have given someone else
2159 * time to free the head. If that's true, it has been
2160 * removed from our list and we can move on.
2161 */
2162 if (ret == -EAGAIN) {
2163 locked_ref = NULL;
2164 count++;
2165 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002166 }
2167 }
2168
2169 /*
2170 * record the must insert reserved flag before we
2171 * drop the spin lock.
2172 */
2173 must_insert_reserved = locked_ref->must_insert_reserved;
2174 locked_ref->must_insert_reserved = 0;
2175
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002176 extent_op = locked_ref->extent_op;
2177 locked_ref->extent_op = NULL;
2178
Chris Mason56bec292009-03-13 10:10:06 -04002179 /*
2180 * locked_ref is the head node, so we have to go one
2181 * node back for any delayed ref updates
2182 */
Chris Mason56bec292009-03-13 10:10:06 -04002183 ref = select_delayed_ref(locked_ref);
2184 if (!ref) {
2185 /* All delayed refs have been processed, Go ahead
2186 * and send the head node to run_one_delayed_ref,
2187 * so that any accounting fixes can happen
2188 */
2189 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002190
2191 if (extent_op && must_insert_reserved) {
2192 kfree(extent_op);
2193 extent_op = NULL;
2194 }
2195
2196 if (extent_op) {
2197 spin_unlock(&delayed_refs->lock);
2198
2199 ret = run_delayed_extent_op(trans, root,
2200 ref, extent_op);
2201 BUG_ON(ret);
2202 kfree(extent_op);
2203
2204 cond_resched();
2205 spin_lock(&delayed_refs->lock);
2206 continue;
2207 }
2208
Chris Masonc3e69d52009-03-13 10:17:05 -04002209 list_del_init(&locked_ref->cluster);
Chris Mason56bec292009-03-13 10:10:06 -04002210 locked_ref = NULL;
2211 }
2212
2213 ref->in_tree = 0;
2214 rb_erase(&ref->rb_node, &delayed_refs->root);
2215 delayed_refs->num_entries--;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002216
Chris Mason56bec292009-03-13 10:10:06 -04002217 spin_unlock(&delayed_refs->lock);
2218
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002219 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002220 must_insert_reserved);
2221 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04002222
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002223 btrfs_put_delayed_ref(ref);
2224 kfree(extent_op);
Chris Masonc3e69d52009-03-13 10:17:05 -04002225 count++;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002226
Chris Mason1887be62009-03-13 10:11:24 -04002227 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002228 spin_lock(&delayed_refs->lock);
2229 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002230 return count;
2231}
2232
2233/*
2234 * this starts processing the delayed reference count updates and
2235 * extent insertions we have queued up so far. count can be
2236 * 0, which means to process everything in the tree at the start
2237 * of the run (but not newly added entries), or it can be some target
2238 * number you'd like to process.
2239 */
2240int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2241 struct btrfs_root *root, unsigned long count)
2242{
2243 struct rb_node *node;
2244 struct btrfs_delayed_ref_root *delayed_refs;
2245 struct btrfs_delayed_ref_node *ref;
2246 struct list_head cluster;
2247 int ret;
2248 int run_all = count == (unsigned long)-1;
2249 int run_most = 0;
2250
2251 if (root == root->fs_info->extent_root)
2252 root = root->fs_info->tree_root;
2253
2254 delayed_refs = &trans->transaction->delayed_refs;
2255 INIT_LIST_HEAD(&cluster);
2256again:
2257 spin_lock(&delayed_refs->lock);
2258 if (count == 0) {
2259 count = delayed_refs->num_entries * 2;
2260 run_most = 1;
2261 }
2262 while (1) {
2263 if (!(run_all || run_most) &&
2264 delayed_refs->num_heads_ready < 64)
2265 break;
2266
2267 /*
2268 * go find something we can process in the rbtree. We start at
2269 * the beginning of the tree, and then build a cluster
2270 * of refs to process starting at the first one we are able to
2271 * lock
2272 */
2273 ret = btrfs_find_ref_cluster(trans, &cluster,
2274 delayed_refs->run_delayed_start);
2275 if (ret)
2276 break;
2277
2278 ret = run_clustered_refs(trans, root, &cluster);
2279 BUG_ON(ret < 0);
2280
2281 count -= min_t(unsigned long, ret, count);
2282
2283 if (count == 0)
2284 break;
2285 }
2286
Chris Mason56bec292009-03-13 10:10:06 -04002287 if (run_all) {
Chris Mason56bec292009-03-13 10:10:06 -04002288 node = rb_first(&delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04002289 if (!node)
Chris Mason56bec292009-03-13 10:10:06 -04002290 goto out;
Chris Masonc3e69d52009-03-13 10:17:05 -04002291 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002292
2293 while (node) {
2294 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2295 rb_node);
2296 if (btrfs_delayed_ref_is_head(ref)) {
2297 struct btrfs_delayed_ref_head *head;
2298
2299 head = btrfs_delayed_node_to_head(ref);
2300 atomic_inc(&ref->refs);
2301
2302 spin_unlock(&delayed_refs->lock);
2303 mutex_lock(&head->mutex);
2304 mutex_unlock(&head->mutex);
2305
2306 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002307 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002308 goto again;
2309 }
2310 node = rb_next(node);
2311 }
2312 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002313 schedule_timeout(1);
2314 goto again;
2315 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002316out:
Chris Masonc3e69d52009-03-13 10:17:05 -04002317 spin_unlock(&delayed_refs->lock);
Chris Masona28ec192007-03-06 20:08:01 -05002318 return 0;
2319}
2320
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002321int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2322 struct btrfs_root *root,
2323 u64 bytenr, u64 num_bytes, u64 flags,
2324 int is_data)
2325{
2326 struct btrfs_delayed_extent_op *extent_op;
2327 int ret;
2328
2329 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
2330 if (!extent_op)
2331 return -ENOMEM;
2332
2333 extent_op->flags_to_set = flags;
2334 extent_op->update_flags = 1;
2335 extent_op->update_key = 0;
2336 extent_op->is_data = is_data ? 1 : 0;
2337
2338 ret = btrfs_add_delayed_extent_op(trans, bytenr, num_bytes, extent_op);
2339 if (ret)
2340 kfree(extent_op);
2341 return ret;
2342}
2343
2344static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2345 struct btrfs_root *root,
2346 struct btrfs_path *path,
2347 u64 objectid, u64 offset, u64 bytenr)
2348{
2349 struct btrfs_delayed_ref_head *head;
2350 struct btrfs_delayed_ref_node *ref;
2351 struct btrfs_delayed_data_ref *data_ref;
2352 struct btrfs_delayed_ref_root *delayed_refs;
2353 struct rb_node *node;
2354 int ret = 0;
2355
2356 ret = -ENOENT;
2357 delayed_refs = &trans->transaction->delayed_refs;
2358 spin_lock(&delayed_refs->lock);
2359 head = btrfs_find_delayed_ref_head(trans, bytenr);
2360 if (!head)
2361 goto out;
2362
2363 if (!mutex_trylock(&head->mutex)) {
2364 atomic_inc(&head->node.refs);
2365 spin_unlock(&delayed_refs->lock);
2366
2367 btrfs_release_path(root->fs_info->extent_root, path);
2368
2369 mutex_lock(&head->mutex);
2370 mutex_unlock(&head->mutex);
2371 btrfs_put_delayed_ref(&head->node);
2372 return -EAGAIN;
2373 }
2374
2375 node = rb_prev(&head->node.rb_node);
2376 if (!node)
2377 goto out_unlock;
2378
2379 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2380
2381 if (ref->bytenr != bytenr)
2382 goto out_unlock;
2383
2384 ret = 1;
2385 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY)
2386 goto out_unlock;
2387
2388 data_ref = btrfs_delayed_node_to_data_ref(ref);
2389
2390 node = rb_prev(node);
2391 if (node) {
2392 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2393 if (ref->bytenr == bytenr)
2394 goto out_unlock;
2395 }
2396
2397 if (data_ref->root != root->root_key.objectid ||
2398 data_ref->objectid != objectid || data_ref->offset != offset)
2399 goto out_unlock;
2400
2401 ret = 0;
2402out_unlock:
2403 mutex_unlock(&head->mutex);
2404out:
2405 spin_unlock(&delayed_refs->lock);
2406 return ret;
2407}
2408
2409static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2410 struct btrfs_root *root,
2411 struct btrfs_path *path,
2412 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05002413{
2414 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04002415 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002416 struct btrfs_extent_data_ref *ref;
2417 struct btrfs_extent_inline_ref *iref;
2418 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05002419 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002420 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04002421 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05002422
Chris Masonbe20aa92007-12-17 20:14:01 -05002423 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04002424 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04002425 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05002426
Chris Masonbe20aa92007-12-17 20:14:01 -05002427 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2428 if (ret < 0)
2429 goto out;
2430 BUG_ON(ret == 0);
Yan Zheng80ff3852008-10-30 14:20:02 -04002431
2432 ret = -ENOENT;
2433 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04002434 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002435
Zheng Yan31840ae2008-09-23 13:14:14 -04002436 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04002437 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002438 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05002439
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002440 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05002441 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002442
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002443 ret = 1;
2444 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2445#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2446 if (item_size < sizeof(*ei)) {
2447 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2448 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002449 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002450#endif
2451 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2452
2453 if (item_size != sizeof(*ei) +
2454 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2455 goto out;
2456
2457 if (btrfs_extent_generation(leaf, ei) <=
2458 btrfs_root_last_snapshot(&root->root_item))
2459 goto out;
2460
2461 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2462 if (btrfs_extent_inline_ref_type(leaf, iref) !=
2463 BTRFS_EXTENT_DATA_REF_KEY)
2464 goto out;
2465
2466 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2467 if (btrfs_extent_refs(leaf, ei) !=
2468 btrfs_extent_data_ref_count(leaf, ref) ||
2469 btrfs_extent_data_ref_root(leaf, ref) !=
2470 root->root_key.objectid ||
2471 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
2472 btrfs_extent_data_ref_offset(leaf, ref) != offset)
2473 goto out;
2474
Yan Zhengf321e492008-07-30 09:26:11 -04002475 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05002476out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002477 return ret;
2478}
2479
2480int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
2481 struct btrfs_root *root,
2482 u64 objectid, u64 offset, u64 bytenr)
2483{
2484 struct btrfs_path *path;
2485 int ret;
2486 int ret2;
2487
2488 path = btrfs_alloc_path();
2489 if (!path)
2490 return -ENOENT;
2491
2492 do {
2493 ret = check_committed_ref(trans, root, path, objectid,
2494 offset, bytenr);
2495 if (ret && ret != -ENOENT)
2496 goto out;
2497
2498 ret2 = check_delayed_ref(trans, root, path, objectid,
2499 offset, bytenr);
2500 } while (ret2 == -EAGAIN);
2501
2502 if (ret2 && ret2 != -ENOENT) {
2503 ret = ret2;
2504 goto out;
2505 }
2506
2507 if (ret != -ENOENT || ret2 != -ENOENT)
2508 ret = 0;
2509out:
Yan Zhengf321e492008-07-30 09:26:11 -04002510 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002511 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
2512 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04002513 return ret;
2514}
2515
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002516#if 0
Zheng Yan31840ae2008-09-23 13:14:14 -04002517int btrfs_cache_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2518 struct extent_buffer *buf, u32 nr_extents)
Chris Mason02217ed2007-03-02 16:08:05 -05002519{
Chris Mason5f39d392007-10-15 16:14:19 -04002520 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04002521 struct btrfs_file_extent_item *fi;
Zheng Yane4657682008-09-26 10:04:53 -04002522 u64 root_gen;
2523 u32 nritems;
Chris Mason02217ed2007-03-02 16:08:05 -05002524 int i;
Chris Masondb945352007-10-15 16:15:53 -04002525 int level;
Zheng Yan31840ae2008-09-23 13:14:14 -04002526 int ret = 0;
Zheng Yane4657682008-09-26 10:04:53 -04002527 int shared = 0;
Chris Masona28ec192007-03-06 20:08:01 -05002528
Chris Mason3768f362007-03-13 16:47:54 -04002529 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -05002530 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002531
Zheng Yane4657682008-09-26 10:04:53 -04002532 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
2533 shared = 0;
2534 root_gen = root->root_key.offset;
2535 } else {
2536 shared = 1;
2537 root_gen = trans->transid - 1;
2538 }
2539
Chris Masondb945352007-10-15 16:15:53 -04002540 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -04002541 nritems = btrfs_header_nritems(buf);
Chris Mason4a096752008-07-21 10:29:44 -04002542
Zheng Yan31840ae2008-09-23 13:14:14 -04002543 if (level == 0) {
Yan Zheng31153d82008-07-28 15:32:19 -04002544 struct btrfs_leaf_ref *ref;
2545 struct btrfs_extent_info *info;
2546
Zheng Yan31840ae2008-09-23 13:14:14 -04002547 ref = btrfs_alloc_leaf_ref(root, nr_extents);
Yan Zheng31153d82008-07-28 15:32:19 -04002548 if (!ref) {
Zheng Yan31840ae2008-09-23 13:14:14 -04002549 ret = -ENOMEM;
Yan Zheng31153d82008-07-28 15:32:19 -04002550 goto out;
2551 }
2552
Zheng Yane4657682008-09-26 10:04:53 -04002553 ref->root_gen = root_gen;
Yan Zheng31153d82008-07-28 15:32:19 -04002554 ref->bytenr = buf->start;
2555 ref->owner = btrfs_header_owner(buf);
2556 ref->generation = btrfs_header_generation(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04002557 ref->nritems = nr_extents;
Yan Zheng31153d82008-07-28 15:32:19 -04002558 info = ref->extents;
Yanbcc63ab2008-07-30 16:29:20 -04002559
Zheng Yan31840ae2008-09-23 13:14:14 -04002560 for (i = 0; nr_extents > 0 && i < nritems; i++) {
Yan Zheng31153d82008-07-28 15:32:19 -04002561 u64 disk_bytenr;
2562 btrfs_item_key_to_cpu(buf, &key, i);
2563 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
2564 continue;
2565 fi = btrfs_item_ptr(buf, i,
2566 struct btrfs_file_extent_item);
2567 if (btrfs_file_extent_type(buf, fi) ==
2568 BTRFS_FILE_EXTENT_INLINE)
2569 continue;
2570 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
2571 if (disk_bytenr == 0)
2572 continue;
2573
2574 info->bytenr = disk_bytenr;
2575 info->num_bytes =
2576 btrfs_file_extent_disk_num_bytes(buf, fi);
2577 info->objectid = key.objectid;
2578 info->offset = key.offset;
2579 info++;
2580 }
2581
Zheng Yane4657682008-09-26 10:04:53 -04002582 ret = btrfs_add_leaf_ref(root, ref, shared);
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002583 if (ret == -EEXIST && shared) {
2584 struct btrfs_leaf_ref *old;
2585 old = btrfs_lookup_leaf_ref(root, ref->bytenr);
2586 BUG_ON(!old);
2587 btrfs_remove_leaf_ref(root, old);
2588 btrfs_free_leaf_ref(root, old);
2589 ret = btrfs_add_leaf_ref(root, ref, shared);
2590 }
Yan Zheng31153d82008-07-28 15:32:19 -04002591 WARN_ON(ret);
Yanbcc63ab2008-07-30 16:29:20 -04002592 btrfs_free_leaf_ref(root, ref);
Yan Zheng31153d82008-07-28 15:32:19 -04002593 }
2594out:
Zheng Yan31840ae2008-09-23 13:14:14 -04002595 return ret;
2596}
2597
Chris Masonb7a9f292009-02-04 09:23:45 -05002598/* when a block goes through cow, we update the reference counts of
2599 * everything that block points to. The internal pointers of the block
2600 * can be in just about any order, and it is likely to have clusters of
2601 * things that are close together and clusters of things that are not.
2602 *
2603 * To help reduce the seeks that come with updating all of these reference
2604 * counts, sort them by byte number before actual updates are done.
2605 *
2606 * struct refsort is used to match byte number to slot in the btree block.
2607 * we sort based on the byte number and then use the slot to actually
2608 * find the item.
Chris Masonbd56b302009-02-04 09:27:02 -05002609 *
2610 * struct refsort is smaller than strcut btrfs_item and smaller than
2611 * struct btrfs_key_ptr. Since we're currently limited to the page size
2612 * for a btree block, there's no way for a kmalloc of refsorts for a
2613 * single node to be bigger than a page.
Chris Masonb7a9f292009-02-04 09:23:45 -05002614 */
2615struct refsort {
2616 u64 bytenr;
2617 u32 slot;
2618};
2619
2620/*
2621 * for passing into sort()
2622 */
2623static int refsort_cmp(const void *a_void, const void *b_void)
2624{
2625 const struct refsort *a = a_void;
2626 const struct refsort *b = b_void;
2627
2628 if (a->bytenr < b->bytenr)
2629 return -1;
2630 if (a->bytenr > b->bytenr)
2631 return 1;
2632 return 0;
2633}
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002634#endif
Chris Masonb7a9f292009-02-04 09:23:45 -05002635
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002636static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05002637 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002638 struct extent_buffer *buf,
2639 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04002640{
2641 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002642 u64 num_bytes;
2643 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04002644 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04002645 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04002646 struct btrfs_key key;
2647 struct btrfs_file_extent_item *fi;
2648 int i;
2649 int level;
2650 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04002651 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002652 u64, u64, u64, u64, u64, u64);
Zheng Yan31840ae2008-09-23 13:14:14 -04002653
2654 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04002655 nritems = btrfs_header_nritems(buf);
2656 level = btrfs_header_level(buf);
2657
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002658 if (!root->ref_cows && level == 0)
2659 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05002660
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002661 if (inc)
2662 process_func = btrfs_inc_extent_ref;
2663 else
2664 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04002665
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002666 if (full_backref)
2667 parent = buf->start;
2668 else
2669 parent = 0;
2670
Zheng Yan31840ae2008-09-23 13:14:14 -04002671 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04002672 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002673 btrfs_item_key_to_cpu(buf, &key, i);
2674 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04002675 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04002676 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04002677 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002678 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04002679 BTRFS_FILE_EXTENT_INLINE)
2680 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04002681 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
2682 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04002683 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04002684
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002685 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
2686 key.offset -= btrfs_file_extent_offset(buf, fi);
2687 ret = process_func(trans, root, bytenr, num_bytes,
2688 parent, ref_root, key.objectid,
2689 key.offset);
2690 if (ret)
2691 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05002692 } else {
2693 bytenr = btrfs_node_blockptr(buf, i);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002694 num_bytes = btrfs_level_size(root, level - 1);
2695 ret = process_func(trans, root, bytenr, num_bytes,
2696 parent, ref_root, level - 1, 0);
2697 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04002698 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04002699 }
2700 }
Zheng Yan31840ae2008-09-23 13:14:14 -04002701 return 0;
2702fail:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002703 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04002704 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002705}
2706
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002707int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2708 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04002709{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002710 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
2711}
Zheng Yan31840ae2008-09-23 13:14:14 -04002712
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002713int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2714 struct extent_buffer *buf, int full_backref)
2715{
2716 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04002717}
2718
Chris Mason9078a3e2007-04-26 16:46:15 -04002719static int write_one_cache_group(struct btrfs_trans_handle *trans,
2720 struct btrfs_root *root,
2721 struct btrfs_path *path,
2722 struct btrfs_block_group_cache *cache)
2723{
2724 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04002725 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04002726 unsigned long bi;
2727 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04002728
Chris Mason9078a3e2007-04-26 16:46:15 -04002729 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04002730 if (ret < 0)
2731 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -04002732 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002733
2734 leaf = path->nodes[0];
2735 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
2736 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
2737 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -04002738 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -04002739fail:
Chris Mason9078a3e2007-04-26 16:46:15 -04002740 if (ret)
2741 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04002742 return 0;
2743
2744}
2745
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002746static struct btrfs_block_group_cache *
2747next_block_group(struct btrfs_root *root,
2748 struct btrfs_block_group_cache *cache)
2749{
2750 struct rb_node *node;
2751 spin_lock(&root->fs_info->block_group_cache_lock);
2752 node = rb_next(&cache->cache_node);
2753 btrfs_put_block_group(cache);
2754 if (node) {
2755 cache = rb_entry(node, struct btrfs_block_group_cache,
2756 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00002757 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002758 } else
2759 cache = NULL;
2760 spin_unlock(&root->fs_info->block_group_cache_lock);
2761 return cache;
2762}
2763
Josef Bacik0af3d002010-06-21 14:48:16 -04002764static int cache_save_setup(struct btrfs_block_group_cache *block_group,
2765 struct btrfs_trans_handle *trans,
2766 struct btrfs_path *path)
2767{
2768 struct btrfs_root *root = block_group->fs_info->tree_root;
2769 struct inode *inode = NULL;
2770 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05002771 int dcs = BTRFS_DC_ERROR;
Josef Bacik0af3d002010-06-21 14:48:16 -04002772 int num_pages = 0;
2773 int retries = 0;
2774 int ret = 0;
2775
2776 /*
2777 * If this block group is smaller than 100 megs don't bother caching the
2778 * block group.
2779 */
2780 if (block_group->key.offset < (100 * 1024 * 1024)) {
2781 spin_lock(&block_group->lock);
2782 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
2783 spin_unlock(&block_group->lock);
2784 return 0;
2785 }
2786
2787again:
2788 inode = lookup_free_space_inode(root, block_group, path);
2789 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
2790 ret = PTR_ERR(inode);
2791 btrfs_release_path(root, path);
2792 goto out;
2793 }
2794
2795 if (IS_ERR(inode)) {
2796 BUG_ON(retries);
2797 retries++;
2798
2799 if (block_group->ro)
2800 goto out_free;
2801
2802 ret = create_free_space_inode(root, trans, block_group, path);
2803 if (ret)
2804 goto out_free;
2805 goto again;
2806 }
2807
2808 /*
2809 * We want to set the generation to 0, that way if anything goes wrong
2810 * from here on out we know not to trust this cache when we load up next
2811 * time.
2812 */
2813 BTRFS_I(inode)->generation = 0;
2814 ret = btrfs_update_inode(trans, root, inode);
2815 WARN_ON(ret);
2816
2817 if (i_size_read(inode) > 0) {
2818 ret = btrfs_truncate_free_space_cache(root, trans, path,
2819 inode);
2820 if (ret)
2821 goto out_put;
2822 }
2823
2824 spin_lock(&block_group->lock);
2825 if (block_group->cached != BTRFS_CACHE_FINISHED) {
Josef Bacik2b209822010-12-03 13:17:53 -05002826 /* We're not cached, don't bother trying to write stuff out */
2827 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04002828 spin_unlock(&block_group->lock);
2829 goto out_put;
2830 }
2831 spin_unlock(&block_group->lock);
2832
2833 num_pages = (int)div64_u64(block_group->key.offset, 1024 * 1024 * 1024);
2834 if (!num_pages)
2835 num_pages = 1;
2836
2837 /*
2838 * Just to make absolutely sure we have enough space, we're going to
2839 * preallocate 12 pages worth of space for each block group. In
2840 * practice we ought to use at most 8, but we need extra space so we can
2841 * add our header and have a terminator between the extents and the
2842 * bitmaps.
2843 */
2844 num_pages *= 16;
2845 num_pages *= PAGE_CACHE_SIZE;
2846
2847 ret = btrfs_check_data_free_space(inode, num_pages);
2848 if (ret)
2849 goto out_put;
2850
2851 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
2852 num_pages, num_pages,
2853 &alloc_hint);
Josef Bacik2b209822010-12-03 13:17:53 -05002854 if (!ret)
2855 dcs = BTRFS_DC_SETUP;
Josef Bacik0af3d002010-06-21 14:48:16 -04002856 btrfs_free_reserved_data_space(inode, num_pages);
2857out_put:
2858 iput(inode);
2859out_free:
2860 btrfs_release_path(root, path);
2861out:
2862 spin_lock(&block_group->lock);
Josef Bacik2b209822010-12-03 13:17:53 -05002863 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04002864 spin_unlock(&block_group->lock);
2865
2866 return ret;
2867}
2868
Chris Mason96b51792007-10-15 16:15:19 -04002869int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
2870 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04002871{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002872 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002873 int err = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002874 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04002875 u64 last = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002876
2877 path = btrfs_alloc_path();
2878 if (!path)
2879 return -ENOMEM;
2880
Josef Bacik0af3d002010-06-21 14:48:16 -04002881again:
2882 while (1) {
2883 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2884 while (cache) {
2885 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
2886 break;
2887 cache = next_block_group(root, cache);
2888 }
2889 if (!cache) {
2890 if (last == 0)
2891 break;
2892 last = 0;
2893 continue;
2894 }
2895 err = cache_save_setup(cache, trans, path);
2896 last = cache->key.objectid + cache->key.offset;
2897 btrfs_put_block_group(cache);
2898 }
2899
Chris Masond3977122009-01-05 21:25:51 -05002900 while (1) {
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002901 if (last == 0) {
2902 err = btrfs_run_delayed_refs(trans, root,
2903 (unsigned long)-1);
2904 BUG_ON(err);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002905 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002906
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002907 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2908 while (cache) {
Josef Bacik0af3d002010-06-21 14:48:16 -04002909 if (cache->disk_cache_state == BTRFS_DC_CLEAR) {
2910 btrfs_put_block_group(cache);
2911 goto again;
2912 }
2913
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002914 if (cache->dirty)
2915 break;
2916 cache = next_block_group(root, cache);
2917 }
2918 if (!cache) {
2919 if (last == 0)
2920 break;
2921 last = 0;
Chris Mason96b51792007-10-15 16:15:19 -04002922 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04002923 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002924
Josef Bacik0cb59c92010-07-02 12:14:14 -04002925 if (cache->disk_cache_state == BTRFS_DC_SETUP)
2926 cache->disk_cache_state = BTRFS_DC_NEED_WRITE;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002927 cache->dirty = 0;
2928 last = cache->key.objectid + cache->key.offset;
2929
2930 err = write_one_cache_group(trans, root, path, cache);
2931 BUG_ON(err);
2932 btrfs_put_block_group(cache);
Chris Mason9078a3e2007-04-26 16:46:15 -04002933 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002934
Josef Bacik0cb59c92010-07-02 12:14:14 -04002935 while (1) {
2936 /*
2937 * I don't think this is needed since we're just marking our
2938 * preallocated extent as written, but just in case it can't
2939 * hurt.
2940 */
2941 if (last == 0) {
2942 err = btrfs_run_delayed_refs(trans, root,
2943 (unsigned long)-1);
2944 BUG_ON(err);
2945 }
2946
2947 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2948 while (cache) {
2949 /*
2950 * Really this shouldn't happen, but it could if we
2951 * couldn't write the entire preallocated extent and
2952 * splitting the extent resulted in a new block.
2953 */
2954 if (cache->dirty) {
2955 btrfs_put_block_group(cache);
2956 goto again;
2957 }
2958 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
2959 break;
2960 cache = next_block_group(root, cache);
2961 }
2962 if (!cache) {
2963 if (last == 0)
2964 break;
2965 last = 0;
2966 continue;
2967 }
2968
2969 btrfs_write_out_cache(root, trans, cache, path);
2970
2971 /*
2972 * If we didn't have an error then the cache state is still
2973 * NEED_WRITE, so we can set it to WRITTEN.
2974 */
2975 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
2976 cache->disk_cache_state = BTRFS_DC_WRITTEN;
2977 last = cache->key.objectid + cache->key.offset;
2978 btrfs_put_block_group(cache);
2979 }
2980
Chris Mason9078a3e2007-04-26 16:46:15 -04002981 btrfs_free_path(path);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002982 return 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002983}
2984
Yan Zhengd2fb3432008-12-11 16:30:39 -05002985int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
2986{
2987 struct btrfs_block_group_cache *block_group;
2988 int readonly = 0;
2989
2990 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
2991 if (!block_group || block_group->ro)
2992 readonly = 1;
2993 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002994 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002995 return readonly;
2996}
2997
Chris Mason593060d2008-03-25 16:50:33 -04002998static int update_space_info(struct btrfs_fs_info *info, u64 flags,
2999 u64 total_bytes, u64 bytes_used,
3000 struct btrfs_space_info **space_info)
3001{
3002 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003003 int i;
3004 int factor;
3005
3006 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3007 BTRFS_BLOCK_GROUP_RAID10))
3008 factor = 2;
3009 else
3010 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04003011
3012 found = __find_space_info(info, flags);
3013 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04003014 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003015 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003016 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003017 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003018 found->disk_used += bytes_used * factor;
Chris Mason8f18cf12008-04-25 16:53:30 -04003019 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003020 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003021 *space_info = found;
3022 return 0;
3023 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003024 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04003025 if (!found)
3026 return -ENOMEM;
3027
Yan, Zhengb742bb82010-05-16 10:46:24 -04003028 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
3029 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003030 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003031 spin_lock_init(&found->lock);
Yan, Zhengb742bb82010-05-16 10:46:24 -04003032 found->flags = flags & (BTRFS_BLOCK_GROUP_DATA |
3033 BTRFS_BLOCK_GROUP_SYSTEM |
3034 BTRFS_BLOCK_GROUP_METADATA);
Chris Mason593060d2008-03-25 16:50:33 -04003035 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003036 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003037 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003038 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003039 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003040 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003041 found->bytes_readonly = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003042 found->bytes_may_use = 0;
Chris Mason593060d2008-03-25 16:50:33 -04003043 found->full = 0;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003044 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003045 found->chunk_alloc = 0;
Chris Mason593060d2008-03-25 16:50:33 -04003046 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003047 list_add_rcu(&found->list, &info->space_info);
Josef Bacik817d52f2009-07-13 21:29:25 -04003048 atomic_set(&found->caching_threads, 0);
Chris Mason593060d2008-03-25 16:50:33 -04003049 return 0;
3050}
3051
Chris Mason8790d502008-04-03 16:29:03 -04003052static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3053{
3054 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
Chris Mason611f0e02008-04-03 16:29:03 -04003055 BTRFS_BLOCK_GROUP_RAID1 |
Chris Mason321aecc2008-04-16 10:49:51 -04003056 BTRFS_BLOCK_GROUP_RAID10 |
Chris Mason611f0e02008-04-03 16:29:03 -04003057 BTRFS_BLOCK_GROUP_DUP);
Chris Mason8790d502008-04-03 16:29:03 -04003058 if (extra_flags) {
3059 if (flags & BTRFS_BLOCK_GROUP_DATA)
3060 fs_info->avail_data_alloc_bits |= extra_flags;
3061 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3062 fs_info->avail_metadata_alloc_bits |= extra_flags;
3063 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3064 fs_info->avail_system_alloc_bits |= extra_flags;
3065 }
3066}
Chris Mason593060d2008-03-25 16:50:33 -04003067
Yan Zheng2b820322008-11-17 21:11:30 -05003068u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003069{
Chris Masoncd02dca2010-12-13 14:56:23 -05003070 /*
3071 * we add in the count of missing devices because we want
3072 * to make sure that any RAID levels on a degraded FS
3073 * continue to be honored.
3074 */
3075 u64 num_devices = root->fs_info->fs_devices->rw_devices +
3076 root->fs_info->fs_devices->missing_devices;
Chris Masona061fc82008-05-07 11:43:44 -04003077
3078 if (num_devices == 1)
3079 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0);
3080 if (num_devices < 4)
3081 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
3082
Chris Masonec44a352008-04-28 15:29:52 -04003083 if ((flags & BTRFS_BLOCK_GROUP_DUP) &&
3084 (flags & (BTRFS_BLOCK_GROUP_RAID1 |
Chris Masona061fc82008-05-07 11:43:44 -04003085 BTRFS_BLOCK_GROUP_RAID10))) {
Chris Masonec44a352008-04-28 15:29:52 -04003086 flags &= ~BTRFS_BLOCK_GROUP_DUP;
Chris Masona061fc82008-05-07 11:43:44 -04003087 }
Chris Masonec44a352008-04-28 15:29:52 -04003088
3089 if ((flags & BTRFS_BLOCK_GROUP_RAID1) &&
Chris Masona061fc82008-05-07 11:43:44 -04003090 (flags & BTRFS_BLOCK_GROUP_RAID10)) {
Chris Masonec44a352008-04-28 15:29:52 -04003091 flags &= ~BTRFS_BLOCK_GROUP_RAID1;
Chris Masona061fc82008-05-07 11:43:44 -04003092 }
Chris Masonec44a352008-04-28 15:29:52 -04003093
3094 if ((flags & BTRFS_BLOCK_GROUP_RAID0) &&
3095 ((flags & BTRFS_BLOCK_GROUP_RAID1) |
3096 (flags & BTRFS_BLOCK_GROUP_RAID10) |
3097 (flags & BTRFS_BLOCK_GROUP_DUP)))
3098 flags &= ~BTRFS_BLOCK_GROUP_RAID0;
3099 return flags;
3100}
3101
Yan, Zhengb742bb82010-05-16 10:46:24 -04003102static u64 get_alloc_profile(struct btrfs_root *root, u64 flags)
Josef Bacik6a632092009-02-20 11:00:09 -05003103{
Yan, Zhengb742bb82010-05-16 10:46:24 -04003104 if (flags & BTRFS_BLOCK_GROUP_DATA)
3105 flags |= root->fs_info->avail_data_alloc_bits &
3106 root->fs_info->data_alloc_profile;
3107 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3108 flags |= root->fs_info->avail_system_alloc_bits &
3109 root->fs_info->system_alloc_profile;
3110 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3111 flags |= root->fs_info->avail_metadata_alloc_bits &
3112 root->fs_info->metadata_alloc_profile;
3113 return btrfs_reduce_alloc_profile(root, flags);
3114}
Josef Bacik6a632092009-02-20 11:00:09 -05003115
Miao Xie6d07bce2011-01-05 10:07:31 +00003116u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003117{
3118 u64 flags;
Josef Bacik6a632092009-02-20 11:00:09 -05003119
Yan, Zhengb742bb82010-05-16 10:46:24 -04003120 if (data)
3121 flags = BTRFS_BLOCK_GROUP_DATA;
3122 else if (root == root->fs_info->chunk_root)
3123 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3124 else
3125 flags = BTRFS_BLOCK_GROUP_METADATA;
3126
3127 return get_alloc_profile(root, flags);
Josef Bacik6a632092009-02-20 11:00:09 -05003128}
3129
3130void btrfs_set_inode_space_info(struct btrfs_root *root, struct inode *inode)
3131{
Josef Bacik6a632092009-02-20 11:00:09 -05003132 BTRFS_I(inode)->space_info = __find_space_info(root->fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04003133 BTRFS_BLOCK_GROUP_DATA);
Josef Bacik6a632092009-02-20 11:00:09 -05003134}
3135
3136/*
3137 * This will check the space that the inode allocates from to make sure we have
3138 * enough space for bytes.
3139 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003140int btrfs_check_data_free_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003141{
3142 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003143 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikab6e24102010-03-19 14:38:13 +00003144 u64 used;
Josef Bacik0af3d002010-06-21 14:48:16 -04003145 int ret = 0, committed = 0, alloc_chunk = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003146
3147 /* make sure bytes are sectorsize aligned */
3148 bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
3149
Josef Bacik0af3d002010-06-21 14:48:16 -04003150 if (root == root->fs_info->tree_root) {
3151 alloc_chunk = 0;
3152 committed = 1;
3153 }
3154
Josef Bacik6a632092009-02-20 11:00:09 -05003155 data_sinfo = BTRFS_I(inode)->space_info;
Chris Mason33b4d472009-09-22 14:45:50 -04003156 if (!data_sinfo)
3157 goto alloc;
3158
Josef Bacik6a632092009-02-20 11:00:09 -05003159again:
3160 /* make sure we have enough space to handle the data first */
3161 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003162 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3163 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3164 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00003165
3166 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003167 struct btrfs_trans_handle *trans;
3168
Josef Bacik6a632092009-02-20 11:00:09 -05003169 /*
3170 * if we don't have enough free bytes in this space then we need
3171 * to alloc a new chunk.
3172 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003173 if (!data_sinfo->full && alloc_chunk) {
Josef Bacik6a632092009-02-20 11:00:09 -05003174 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05003175
Chris Mason0e4f8f82011-04-15 16:05:44 -04003176 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05003177 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04003178alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05003179 alloc_target = btrfs_get_alloc_profile(root, 1);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003180 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003181 if (IS_ERR(trans))
3182 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05003183
3184 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
3185 bytes + 2 * 1024 * 1024,
Chris Mason0e4f8f82011-04-15 16:05:44 -04003186 alloc_target,
3187 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05003188 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00003189 if (ret < 0) {
3190 if (ret != -ENOSPC)
3191 return ret;
3192 else
3193 goto commit_trans;
3194 }
Chris Mason33b4d472009-09-22 14:45:50 -04003195
3196 if (!data_sinfo) {
3197 btrfs_set_inode_space_info(root, inode);
3198 data_sinfo = BTRFS_I(inode)->space_info;
3199 }
Josef Bacik6a632092009-02-20 11:00:09 -05003200 goto again;
3201 }
3202 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003203
3204 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00003205commit_trans:
Josef Bacika4abeea2011-04-11 17:25:13 -04003206 if (!committed &&
3207 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003208 committed = 1;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003209 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003210 if (IS_ERR(trans))
3211 return PTR_ERR(trans);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003212 ret = btrfs_commit_transaction(trans, root);
3213 if (ret)
3214 return ret;
3215 goto again;
3216 }
3217
Chris Mason933b5852010-05-26 11:31:00 -04003218#if 0 /* I hope we never need this code again, just in case */
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003219 printk(KERN_ERR "no space left, need %llu, %llu bytes_used, "
3220 "%llu bytes_reserved, " "%llu bytes_pinned, "
3221 "%llu bytes_readonly, %llu may use %llu total\n",
3222 (unsigned long long)bytes,
Joel Becker21380932009-04-21 12:38:29 -07003223 (unsigned long long)data_sinfo->bytes_used,
3224 (unsigned long long)data_sinfo->bytes_reserved,
3225 (unsigned long long)data_sinfo->bytes_pinned,
3226 (unsigned long long)data_sinfo->bytes_readonly,
3227 (unsigned long long)data_sinfo->bytes_may_use,
3228 (unsigned long long)data_sinfo->total_bytes);
Chris Mason933b5852010-05-26 11:31:00 -04003229#endif
Josef Bacik6a632092009-02-20 11:00:09 -05003230 return -ENOSPC;
3231 }
3232 data_sinfo->bytes_may_use += bytes;
3233 BTRFS_I(inode)->reserved_bytes += bytes;
3234 spin_unlock(&data_sinfo->lock);
3235
Josef Bacik9ed74f22009-09-11 16:12:44 -04003236 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003237}
3238
3239/*
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003240 * called when we are clearing an delalloc extent from the
3241 * inode's io_tree or there was an error for whatever reason
3242 * after calling btrfs_check_data_free_space
Josef Bacik6a632092009-02-20 11:00:09 -05003243 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003244void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003245{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003246 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003247 struct btrfs_space_info *data_sinfo;
3248
3249 /* make sure bytes are sectorsize aligned */
3250 bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
3251
3252 data_sinfo = BTRFS_I(inode)->space_info;
3253 spin_lock(&data_sinfo->lock);
3254 data_sinfo->bytes_may_use -= bytes;
3255 BTRFS_I(inode)->reserved_bytes -= bytes;
3256 spin_unlock(&data_sinfo->lock);
3257}
3258
Josef Bacik97e728d2009-04-21 17:40:57 -04003259static void force_metadata_allocation(struct btrfs_fs_info *info)
3260{
3261 struct list_head *head = &info->space_info;
3262 struct btrfs_space_info *found;
3263
3264 rcu_read_lock();
3265 list_for_each_entry_rcu(found, head, list) {
3266 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003267 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04003268 }
3269 rcu_read_unlock();
3270}
3271
Chris Masone5bc2452010-10-26 13:37:56 -04003272static int should_alloc_chunk(struct btrfs_root *root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04003273 struct btrfs_space_info *sinfo, u64 alloc_bytes,
3274 int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04003275{
3276 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003277 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04003278 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04003279
Chris Mason0e4f8f82011-04-15 16:05:44 -04003280 if (force == CHUNK_ALLOC_FORCE)
3281 return 1;
3282
3283 /*
3284 * in limited mode, we want to have some free space up to
3285 * about 1% of the FS size.
3286 */
3287 if (force == CHUNK_ALLOC_LIMITED) {
3288 thresh = btrfs_super_total_bytes(&root->fs_info->super_copy);
3289 thresh = max_t(u64, 64 * 1024 * 1024,
3290 div_factor_fine(thresh, 1));
3291
3292 if (num_bytes - num_allocated < thresh)
3293 return 1;
3294 }
3295
3296 /*
3297 * we have two similar checks here, one based on percentage
3298 * and once based on a hard number of 256MB. The idea
3299 * is that if we have a good amount of free
3300 * room, don't allocate a chunk. A good mount is
3301 * less than 80% utilized of the chunks we have allocated,
3302 * or more than 256MB free
3303 */
3304 if (num_allocated + alloc_bytes + 256 * 1024 * 1024 < num_bytes)
Yan, Zheng424499d2010-05-16 10:46:25 -04003305 return 0;
3306
Chris Mason0e4f8f82011-04-15 16:05:44 -04003307 if (num_allocated + alloc_bytes < div_factor(num_bytes, 8))
Yan, Zheng424499d2010-05-16 10:46:25 -04003308 return 0;
3309
Chris Masone5bc2452010-10-26 13:37:56 -04003310 thresh = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Mason0e4f8f82011-04-15 16:05:44 -04003311
3312 /* 256MB or 5% of the FS */
Chris Masone5bc2452010-10-26 13:37:56 -04003313 thresh = max_t(u64, 256 * 1024 * 1024, div_factor_fine(thresh, 5));
3314
3315 if (num_bytes > thresh && sinfo->bytes_used < div_factor(num_bytes, 3))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04003316 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04003317 return 1;
3318}
3319
Chris Mason6324fbf2008-03-24 15:01:59 -04003320static int do_chunk_alloc(struct btrfs_trans_handle *trans,
3321 struct btrfs_root *extent_root, u64 alloc_bytes,
Chris Mason0ef3e662008-05-24 14:04:53 -04003322 u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04003323{
3324 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04003325 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04003326 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003327 int ret = 0;
3328
Yan Zheng2b820322008-11-17 21:11:30 -05003329 flags = btrfs_reduce_alloc_profile(extent_root, flags);
Chris Masonec44a352008-04-28 15:29:52 -04003330
Chris Mason6324fbf2008-03-24 15:01:59 -04003331 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04003332 if (!space_info) {
3333 ret = update_space_info(extent_root->fs_info, flags,
3334 0, 0, &space_info);
3335 BUG_ON(ret);
3336 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003337 BUG_ON(!space_info);
3338
Josef Bacik6d741192011-04-11 20:20:11 -04003339again:
Josef Bacik25179202008-10-29 14:49:05 -04003340 spin_lock(&space_info->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003341 if (space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003342 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04003343 if (space_info->full) {
3344 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04003345 return 0;
Josef Bacik25179202008-10-29 14:49:05 -04003346 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003347
Chris Mason0e4f8f82011-04-15 16:05:44 -04003348 if (!should_alloc_chunk(extent_root, space_info, alloc_bytes, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04003349 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04003350 return 0;
3351 } else if (space_info->chunk_alloc) {
3352 wait_for_alloc = 1;
3353 } else {
3354 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04003355 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003356
Josef Bacik25179202008-10-29 14:49:05 -04003357 spin_unlock(&space_info->lock);
3358
Josef Bacik6d741192011-04-11 20:20:11 -04003359 mutex_lock(&fs_info->chunk_mutex);
3360
3361 /*
3362 * The chunk_mutex is held throughout the entirety of a chunk
3363 * allocation, so once we've acquired the chunk_mutex we know that the
3364 * other guy is done and we need to recheck and see if we should
3365 * allocate.
3366 */
3367 if (wait_for_alloc) {
3368 mutex_unlock(&fs_info->chunk_mutex);
3369 wait_for_alloc = 0;
3370 goto again;
3371 }
3372
Josef Bacik97e728d2009-04-21 17:40:57 -04003373 /*
Josef Bacik67377732010-09-16 16:19:09 -04003374 * If we have mixed data/metadata chunks we want to make sure we keep
3375 * allocating mixed chunks instead of individual chunks.
3376 */
3377 if (btrfs_mixed_space_info(space_info))
3378 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
3379
3380 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04003381 * if we're doing a data chunk, go ahead and make sure that
3382 * we keep a reasonable number of metadata chunks allocated in the
3383 * FS as well.
3384 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04003385 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04003386 fs_info->data_chunk_allocations++;
3387 if (!(fs_info->data_chunk_allocations %
3388 fs_info->metadata_ratio))
3389 force_metadata_allocation(fs_info);
3390 }
3391
Yan Zheng2b820322008-11-17 21:11:30 -05003392 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003393 spin_lock(&space_info->lock);
Chris Masond3977122009-01-05 21:25:51 -05003394 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04003395 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04003396 else
3397 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04003398
Chris Mason0e4f8f82011-04-15 16:05:44 -04003399 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003400 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003401 spin_unlock(&space_info->lock);
Yan Zhengc146afa2008-11-12 14:34:12 -05003402 mutex_unlock(&extent_root->fs_info->chunk_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003403 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04003404}
3405
Yan, Zheng5da9d012010-05-16 10:46:25 -04003406/*
3407 * shrink metadata reservation for delalloc
3408 */
3409static int shrink_delalloc(struct btrfs_trans_handle *trans,
Josef Bacik0019f102010-10-15 15:18:40 -04003410 struct btrfs_root *root, u64 to_reclaim, int sync)
Yan, Zheng5da9d012010-05-16 10:46:25 -04003411{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003412 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04003413 struct btrfs_space_info *space_info;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003414 u64 reserved;
3415 u64 max_reclaim;
3416 u64 reclaimed = 0;
Josef Bacikb1953bc2011-01-21 21:10:01 +00003417 long time_left;
Chris Masonbf9022e2010-10-26 13:40:45 -04003418 int nr_pages = (2 * 1024 * 1024) >> PAGE_CACHE_SHIFT;
Josef Bacikb1953bc2011-01-21 21:10:01 +00003419 int loops = 0;
Chris Mason36e39c42011-03-12 07:08:42 -05003420 unsigned long progress;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003421
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003422 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04003423 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04003424
3425 smp_mb();
Josef Bacik0019f102010-10-15 15:18:40 -04003426 reserved = space_info->bytes_reserved;
Chris Mason36e39c42011-03-12 07:08:42 -05003427 progress = space_info->reservation_progress;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003428
3429 if (reserved == 0)
3430 return 0;
3431
3432 max_reclaim = min(reserved, to_reclaim);
3433
Josef Bacikb1953bc2011-01-21 21:10:01 +00003434 while (loops < 1024) {
Chris Masonbf9022e2010-10-26 13:40:45 -04003435 /* have the flusher threads jump in and do some IO */
3436 smp_mb();
3437 nr_pages = min_t(unsigned long, nr_pages,
3438 root->fs_info->delalloc_bytes >> PAGE_CACHE_SHIFT);
3439 writeback_inodes_sb_nr_if_idle(root->fs_info->sb, nr_pages);
Yan, Zheng5da9d012010-05-16 10:46:25 -04003440
Josef Bacik0019f102010-10-15 15:18:40 -04003441 spin_lock(&space_info->lock);
Chris Mason36e39c42011-03-12 07:08:42 -05003442 if (reserved > space_info->bytes_reserved)
Josef Bacik0019f102010-10-15 15:18:40 -04003443 reclaimed += reserved - space_info->bytes_reserved;
3444 reserved = space_info->bytes_reserved;
3445 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04003446
Chris Mason36e39c42011-03-12 07:08:42 -05003447 loops++;
3448
Yan, Zheng5da9d012010-05-16 10:46:25 -04003449 if (reserved == 0 || reclaimed >= max_reclaim)
3450 break;
3451
3452 if (trans && trans->transaction->blocked)
3453 return -EAGAIN;
Chris Masonbf9022e2010-10-26 13:40:45 -04003454
Chris Mason36e39c42011-03-12 07:08:42 -05003455 time_left = schedule_timeout_interruptible(1);
Josef Bacikb1953bc2011-01-21 21:10:01 +00003456
3457 /* We were interrupted, exit */
3458 if (time_left)
3459 break;
3460
Chris Mason36e39c42011-03-12 07:08:42 -05003461 /* we've kicked the IO a few times, if anything has been freed,
3462 * exit. There is no sense in looping here for a long time
3463 * when we really need to commit the transaction, or there are
3464 * just too many writers without enough free space
3465 */
3466
3467 if (loops > 3) {
3468 smp_mb();
3469 if (progress != space_info->reservation_progress)
3470 break;
3471 }
Chris Masonbf9022e2010-10-26 13:40:45 -04003472
Yan, Zheng5da9d012010-05-16 10:46:25 -04003473 }
3474 return reclaimed >= to_reclaim;
3475}
3476
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003477/*
3478 * Retries tells us how many times we've called reserve_metadata_bytes. The
3479 * idea is if this is the first call (retries == 0) then we will add to our
3480 * reserved count if we can't make the allocation in order to hold our place
3481 * while we go and try and free up space. That way for retries > 1 we don't try
3482 * and add space, we just check to see if the amount of unused space is >= the
3483 * total space, meaning that our reservation is valid.
3484 *
3485 * However if we don't intend to retry this reservation, pass -1 as retries so
3486 * that it short circuits this logic.
3487 */
3488static int reserve_metadata_bytes(struct btrfs_trans_handle *trans,
3489 struct btrfs_root *root,
3490 struct btrfs_block_rsv *block_rsv,
3491 u64 orig_bytes, int flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003492{
3493 struct btrfs_space_info *space_info = block_rsv->space_info;
3494 u64 unused;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003495 u64 num_bytes = orig_bytes;
3496 int retries = 0;
3497 int ret = 0;
3498 bool reserved = false;
Josef Bacik38227932010-10-26 12:52:53 -04003499 bool committed = false;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003500
3501again:
3502 ret = -ENOSPC;
3503 if (reserved)
3504 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003505
3506 spin_lock(&space_info->lock);
3507 unused = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik6d487552010-10-15 15:13:32 -04003508 space_info->bytes_pinned + space_info->bytes_readonly +
3509 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003510
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003511 /*
3512 * The idea here is that we've not already over-reserved the block group
3513 * then we can go ahead and save our reservation first and then start
3514 * flushing if we need to. Otherwise if we've already overcommitted
3515 * lets start flushing stuff first and then come back and try to make
3516 * our reservation.
3517 */
3518 if (unused <= space_info->total_bytes) {
Arne Jansen6f334342010-11-12 23:17:56 +00003519 unused = space_info->total_bytes - unused;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003520 if (unused >= num_bytes) {
3521 if (!reserved)
3522 space_info->bytes_reserved += orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003523 ret = 0;
3524 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003525 /*
3526 * Ok set num_bytes to orig_bytes since we aren't
3527 * overocmmitted, this way we only try and reclaim what
3528 * we need.
3529 */
3530 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003531 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003532 } else {
3533 /*
3534 * Ok we're over committed, set num_bytes to the overcommitted
3535 * amount plus the amount of bytes that we need for this
3536 * reservation.
3537 */
3538 num_bytes = unused - space_info->total_bytes +
3539 (orig_bytes * (retries + 1));
Yan, Zhengf0486c62010-05-16 10:46:25 -04003540 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003541
3542 /*
3543 * Couldn't make our reservation, save our place so while we're trying
3544 * to reclaim space we can actually use it instead of somebody else
3545 * stealing it from us.
3546 */
3547 if (ret && !reserved) {
3548 space_info->bytes_reserved += orig_bytes;
3549 reserved = true;
3550 }
3551
Yan, Zhengf0486c62010-05-16 10:46:25 -04003552 spin_unlock(&space_info->lock);
3553
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003554 if (!ret)
3555 return 0;
3556
3557 if (!flush)
3558 goto out;
3559
3560 /*
3561 * We do synchronous shrinking since we don't actually unreserve
3562 * metadata until after the IO is completed.
3563 */
3564 ret = shrink_delalloc(trans, root, num_bytes, 1);
3565 if (ret > 0)
3566 return 0;
3567 else if (ret < 0)
3568 goto out;
3569
3570 /*
3571 * So if we were overcommitted it's possible that somebody else flushed
3572 * out enough space and we simply didn't have enough space to reclaim,
3573 * so go back around and try again.
3574 */
3575 if (retries < 2) {
3576 retries++;
3577 goto again;
3578 }
3579
3580 spin_lock(&space_info->lock);
3581 /*
3582 * Not enough space to be reclaimed, don't bother committing the
3583 * transaction.
3584 */
3585 if (space_info->bytes_pinned < orig_bytes)
3586 ret = -ENOSPC;
3587 spin_unlock(&space_info->lock);
3588 if (ret)
3589 goto out;
3590
3591 ret = -EAGAIN;
Josef Bacik38227932010-10-26 12:52:53 -04003592 if (trans || committed)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003593 goto out;
3594
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003595 ret = -ENOSPC;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003596 trans = btrfs_join_transaction(root);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003597 if (IS_ERR(trans))
3598 goto out;
3599 ret = btrfs_commit_transaction(trans, root);
Josef Bacik38227932010-10-26 12:52:53 -04003600 if (!ret) {
3601 trans = NULL;
3602 committed = true;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003603 goto again;
Josef Bacik38227932010-10-26 12:52:53 -04003604 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003605
3606out:
3607 if (reserved) {
3608 spin_lock(&space_info->lock);
3609 space_info->bytes_reserved -= orig_bytes;
3610 spin_unlock(&space_info->lock);
3611 }
3612
Yan, Zhengf0486c62010-05-16 10:46:25 -04003613 return ret;
3614}
3615
3616static struct btrfs_block_rsv *get_block_rsv(struct btrfs_trans_handle *trans,
3617 struct btrfs_root *root)
3618{
3619 struct btrfs_block_rsv *block_rsv;
3620 if (root->ref_cows)
3621 block_rsv = trans->block_rsv;
3622 else
3623 block_rsv = root->block_rsv;
3624
3625 if (!block_rsv)
3626 block_rsv = &root->fs_info->empty_block_rsv;
3627
3628 return block_rsv;
3629}
3630
3631static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
3632 u64 num_bytes)
3633{
3634 int ret = -ENOSPC;
3635 spin_lock(&block_rsv->lock);
3636 if (block_rsv->reserved >= num_bytes) {
3637 block_rsv->reserved -= num_bytes;
3638 if (block_rsv->reserved < block_rsv->size)
3639 block_rsv->full = 0;
3640 ret = 0;
3641 }
3642 spin_unlock(&block_rsv->lock);
3643 return ret;
3644}
3645
3646static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
3647 u64 num_bytes, int update_size)
3648{
3649 spin_lock(&block_rsv->lock);
3650 block_rsv->reserved += num_bytes;
3651 if (update_size)
3652 block_rsv->size += num_bytes;
3653 else if (block_rsv->reserved >= block_rsv->size)
3654 block_rsv->full = 1;
3655 spin_unlock(&block_rsv->lock);
3656}
3657
3658void block_rsv_release_bytes(struct btrfs_block_rsv *block_rsv,
3659 struct btrfs_block_rsv *dest, u64 num_bytes)
3660{
3661 struct btrfs_space_info *space_info = block_rsv->space_info;
3662
3663 spin_lock(&block_rsv->lock);
3664 if (num_bytes == (u64)-1)
3665 num_bytes = block_rsv->size;
3666 block_rsv->size -= num_bytes;
3667 if (block_rsv->reserved >= block_rsv->size) {
3668 num_bytes = block_rsv->reserved - block_rsv->size;
3669 block_rsv->reserved = block_rsv->size;
3670 block_rsv->full = 1;
3671 } else {
3672 num_bytes = 0;
3673 }
3674 spin_unlock(&block_rsv->lock);
3675
3676 if (num_bytes > 0) {
3677 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00003678 spin_lock(&dest->lock);
3679 if (!dest->full) {
3680 u64 bytes_to_add;
3681
3682 bytes_to_add = dest->size - dest->reserved;
3683 bytes_to_add = min(num_bytes, bytes_to_add);
3684 dest->reserved += bytes_to_add;
3685 if (dest->reserved >= dest->size)
3686 dest->full = 1;
3687 num_bytes -= bytes_to_add;
3688 }
3689 spin_unlock(&dest->lock);
3690 }
3691 if (num_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04003692 spin_lock(&space_info->lock);
3693 space_info->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05003694 space_info->reservation_progress++;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003695 spin_unlock(&space_info->lock);
3696 }
3697 }
3698}
3699
3700static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
3701 struct btrfs_block_rsv *dst, u64 num_bytes)
3702{
3703 int ret;
3704
3705 ret = block_rsv_use_bytes(src, num_bytes);
3706 if (ret)
3707 return ret;
3708
3709 block_rsv_add_bytes(dst, num_bytes, 1);
3710 return 0;
3711}
3712
3713void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv)
3714{
3715 memset(rsv, 0, sizeof(*rsv));
3716 spin_lock_init(&rsv->lock);
3717 atomic_set(&rsv->usage, 1);
3718 rsv->priority = 6;
3719 INIT_LIST_HEAD(&rsv->list);
3720}
3721
3722struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root)
3723{
3724 struct btrfs_block_rsv *block_rsv;
3725 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003726
3727 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
3728 if (!block_rsv)
3729 return NULL;
3730
3731 btrfs_init_block_rsv(block_rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003732 block_rsv->space_info = __find_space_info(fs_info,
3733 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003734 return block_rsv;
3735}
3736
3737void btrfs_free_block_rsv(struct btrfs_root *root,
3738 struct btrfs_block_rsv *rsv)
3739{
3740 if (rsv && atomic_dec_and_test(&rsv->usage)) {
3741 btrfs_block_rsv_release(root, rsv, (u64)-1);
3742 if (!rsv->durable)
3743 kfree(rsv);
3744 }
3745}
3746
3747/*
3748 * make the block_rsv struct be able to capture freed space.
3749 * the captured space will re-add to the the block_rsv struct
3750 * after transaction commit
3751 */
3752void btrfs_add_durable_block_rsv(struct btrfs_fs_info *fs_info,
3753 struct btrfs_block_rsv *block_rsv)
3754{
3755 block_rsv->durable = 1;
3756 mutex_lock(&fs_info->durable_block_rsv_mutex);
3757 list_add_tail(&block_rsv->list, &fs_info->durable_block_rsv_list);
3758 mutex_unlock(&fs_info->durable_block_rsv_mutex);
3759}
3760
3761int btrfs_block_rsv_add(struct btrfs_trans_handle *trans,
3762 struct btrfs_root *root,
3763 struct btrfs_block_rsv *block_rsv,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003764 u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003765{
3766 int ret;
3767
3768 if (num_bytes == 0)
3769 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003770
3771 ret = reserve_metadata_bytes(trans, root, block_rsv, num_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003772 if (!ret) {
3773 block_rsv_add_bytes(block_rsv, num_bytes, 1);
3774 return 0;
3775 }
3776
Yan, Zhengf0486c62010-05-16 10:46:25 -04003777 return ret;
3778}
3779
3780int btrfs_block_rsv_check(struct btrfs_trans_handle *trans,
3781 struct btrfs_root *root,
3782 struct btrfs_block_rsv *block_rsv,
3783 u64 min_reserved, int min_factor)
3784{
3785 u64 num_bytes = 0;
3786 int commit_trans = 0;
3787 int ret = -ENOSPC;
3788
3789 if (!block_rsv)
3790 return 0;
3791
3792 spin_lock(&block_rsv->lock);
3793 if (min_factor > 0)
3794 num_bytes = div_factor(block_rsv->size, min_factor);
3795 if (min_reserved > num_bytes)
3796 num_bytes = min_reserved;
3797
3798 if (block_rsv->reserved >= num_bytes) {
3799 ret = 0;
3800 } else {
3801 num_bytes -= block_rsv->reserved;
3802 if (block_rsv->durable &&
3803 block_rsv->freed[0] + block_rsv->freed[1] >= num_bytes)
3804 commit_trans = 1;
3805 }
3806 spin_unlock(&block_rsv->lock);
3807 if (!ret)
3808 return 0;
3809
3810 if (block_rsv->refill_used) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003811 ret = reserve_metadata_bytes(trans, root, block_rsv,
3812 num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003813 if (!ret) {
3814 block_rsv_add_bytes(block_rsv, num_bytes, 0);
3815 return 0;
3816 }
3817 }
3818
3819 if (commit_trans) {
3820 if (trans)
3821 return -EAGAIN;
3822
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003823 trans = btrfs_join_transaction(root);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003824 BUG_ON(IS_ERR(trans));
3825 ret = btrfs_commit_transaction(trans, root);
3826 return 0;
3827 }
3828
Yan, Zhengf0486c62010-05-16 10:46:25 -04003829 return -ENOSPC;
3830}
3831
3832int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
3833 struct btrfs_block_rsv *dst_rsv,
3834 u64 num_bytes)
3835{
3836 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3837}
3838
3839void btrfs_block_rsv_release(struct btrfs_root *root,
3840 struct btrfs_block_rsv *block_rsv,
3841 u64 num_bytes)
3842{
3843 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
3844 if (global_rsv->full || global_rsv == block_rsv ||
3845 block_rsv->space_info != global_rsv->space_info)
3846 global_rsv = NULL;
3847 block_rsv_release_bytes(block_rsv, global_rsv, num_bytes);
3848}
3849
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003850/*
3851 * helper to calculate size of global block reservation.
3852 * the desired value is sum of space used by extent tree,
3853 * checksum tree and root tree
3854 */
3855static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
3856{
3857 struct btrfs_space_info *sinfo;
3858 u64 num_bytes;
3859 u64 meta_used;
3860 u64 data_used;
3861 int csum_size = btrfs_super_csum_size(&fs_info->super_copy);
3862#if 0
3863 /*
3864 * per tree used space accounting can be inaccuracy, so we
3865 * can't rely on it.
3866 */
3867 spin_lock(&fs_info->extent_root->accounting_lock);
3868 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item);
3869 spin_unlock(&fs_info->extent_root->accounting_lock);
3870
3871 spin_lock(&fs_info->csum_root->accounting_lock);
3872 num_bytes += btrfs_root_used(&fs_info->csum_root->root_item);
3873 spin_unlock(&fs_info->csum_root->accounting_lock);
3874
3875 spin_lock(&fs_info->tree_root->accounting_lock);
3876 num_bytes += btrfs_root_used(&fs_info->tree_root->root_item);
3877 spin_unlock(&fs_info->tree_root->accounting_lock);
3878#endif
3879 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
3880 spin_lock(&sinfo->lock);
3881 data_used = sinfo->bytes_used;
3882 spin_unlock(&sinfo->lock);
3883
3884 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
3885 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04003886 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
3887 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003888 meta_used = sinfo->bytes_used;
3889 spin_unlock(&sinfo->lock);
3890
3891 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
3892 csum_size * 2;
3893 num_bytes += div64_u64(data_used + meta_used, 50);
3894
3895 if (num_bytes * 3 > meta_used)
3896 num_bytes = div64_u64(meta_used, 3);
3897
3898 return ALIGN(num_bytes, fs_info->extent_root->leafsize << 10);
3899}
3900
3901static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
3902{
3903 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
3904 struct btrfs_space_info *sinfo = block_rsv->space_info;
3905 u64 num_bytes;
3906
3907 num_bytes = calc_global_metadata_size(fs_info);
3908
3909 spin_lock(&block_rsv->lock);
3910 spin_lock(&sinfo->lock);
3911
3912 block_rsv->size = num_bytes;
3913
3914 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04003915 sinfo->bytes_reserved + sinfo->bytes_readonly +
3916 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003917
3918 if (sinfo->total_bytes > num_bytes) {
3919 num_bytes = sinfo->total_bytes - num_bytes;
3920 block_rsv->reserved += num_bytes;
3921 sinfo->bytes_reserved += num_bytes;
3922 }
3923
3924 if (block_rsv->reserved >= block_rsv->size) {
3925 num_bytes = block_rsv->reserved - block_rsv->size;
3926 sinfo->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05003927 sinfo->reservation_progress++;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003928 block_rsv->reserved = block_rsv->size;
3929 block_rsv->full = 1;
3930 }
3931#if 0
3932 printk(KERN_INFO"global block rsv size %llu reserved %llu\n",
3933 block_rsv->size, block_rsv->reserved);
3934#endif
3935 spin_unlock(&sinfo->lock);
3936 spin_unlock(&block_rsv->lock);
3937}
3938
Yan, Zhengf0486c62010-05-16 10:46:25 -04003939static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
3940{
3941 struct btrfs_space_info *space_info;
3942
3943 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
3944 fs_info->chunk_block_rsv.space_info = space_info;
3945 fs_info->chunk_block_rsv.priority = 10;
3946
3947 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003948 fs_info->global_block_rsv.space_info = space_info;
3949 fs_info->global_block_rsv.priority = 10;
3950 fs_info->global_block_rsv.refill_used = 1;
3951 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003952 fs_info->trans_block_rsv.space_info = space_info;
3953 fs_info->empty_block_rsv.space_info = space_info;
3954 fs_info->empty_block_rsv.priority = 10;
3955
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003956 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
3957 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
3958 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
3959 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003960 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003961
3962 btrfs_add_durable_block_rsv(fs_info, &fs_info->global_block_rsv);
3963
3964 btrfs_add_durable_block_rsv(fs_info, &fs_info->delalloc_block_rsv);
3965
3966 update_global_block_rsv(fs_info);
3967}
3968
3969static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
3970{
3971 block_rsv_release_bytes(&fs_info->global_block_rsv, NULL, (u64)-1);
3972 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
3973 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
3974 WARN_ON(fs_info->trans_block_rsv.size > 0);
3975 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
3976 WARN_ON(fs_info->chunk_block_rsv.size > 0);
3977 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003978}
3979
Yan, Zhenga22285a2010-05-16 10:48:46 -04003980static u64 calc_trans_metadata_size(struct btrfs_root *root, int num_items)
3981{
3982 return (root->leafsize + root->nodesize * (BTRFS_MAX_LEVEL - 1)) *
3983 3 * num_items;
3984}
3985
Josef Bacikfcb80c22011-05-03 10:40:22 -04003986int btrfs_truncate_reserve_metadata(struct btrfs_trans_handle *trans,
3987 struct btrfs_root *root,
3988 struct btrfs_block_rsv *rsv)
3989{
3990 struct btrfs_block_rsv *trans_rsv = &root->fs_info->trans_block_rsv;
3991 u64 num_bytes;
3992 int ret;
3993
3994 /*
3995 * Truncate should be freeing data, but give us 2 items just in case it
3996 * needs to use some space. We may want to be smarter about this in the
3997 * future.
3998 */
3999 num_bytes = calc_trans_metadata_size(root, 2);
4000
4001 /* We already have enough bytes, just return */
4002 if (rsv->reserved >= num_bytes)
4003 return 0;
4004
4005 num_bytes -= rsv->reserved;
4006
4007 /*
4008 * You should have reserved enough space before hand to do this, so this
4009 * should not fail.
4010 */
4011 ret = block_rsv_migrate_bytes(trans_rsv, rsv, num_bytes);
4012 BUG_ON(ret);
4013
4014 return 0;
4015}
4016
Yan, Zhenga22285a2010-05-16 10:48:46 -04004017int btrfs_trans_reserve_metadata(struct btrfs_trans_handle *trans,
4018 struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004019 int num_items)
Yan, Zhenga22285a2010-05-16 10:48:46 -04004020{
4021 u64 num_bytes;
4022 int ret;
4023
4024 if (num_items == 0 || root->fs_info->chunk_root == root)
4025 return 0;
4026
4027 num_bytes = calc_trans_metadata_size(root, num_items);
4028 ret = btrfs_block_rsv_add(trans, root, &root->fs_info->trans_block_rsv,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004029 num_bytes);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004030 if (!ret) {
4031 trans->bytes_reserved += num_bytes;
4032 trans->block_rsv = &root->fs_info->trans_block_rsv;
4033 }
4034 return ret;
4035}
4036
4037void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
4038 struct btrfs_root *root)
4039{
4040 if (!trans->bytes_reserved)
4041 return;
4042
4043 BUG_ON(trans->block_rsv != &root->fs_info->trans_block_rsv);
4044 btrfs_block_rsv_release(root, trans->block_rsv,
4045 trans->bytes_reserved);
4046 trans->bytes_reserved = 0;
4047}
4048
Yan, Zhengd68fc572010-05-16 10:49:58 -04004049int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
4050 struct inode *inode)
4051{
4052 struct btrfs_root *root = BTRFS_I(inode)->root;
4053 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
4054 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
4055
4056 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04004057 * We need to hold space in order to delete our orphan item once we've
4058 * added it, so this takes the reservation so we can release it later
4059 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04004060 */
Josef Bacikfcb80c22011-05-03 10:40:22 -04004061 u64 num_bytes = calc_trans_metadata_size(root, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004062 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4063}
4064
4065void btrfs_orphan_release_metadata(struct inode *inode)
4066{
4067 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04004068 u64 num_bytes = calc_trans_metadata_size(root, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004069 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
4070}
4071
Yan, Zhenga22285a2010-05-16 10:48:46 -04004072int btrfs_snap_reserve_metadata(struct btrfs_trans_handle *trans,
4073 struct btrfs_pending_snapshot *pending)
4074{
4075 struct btrfs_root *root = pending->root;
4076 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
4077 struct btrfs_block_rsv *dst_rsv = &pending->block_rsv;
4078 /*
4079 * two for root back/forward refs, two for directory entries
4080 * and one for root of the snapshot.
4081 */
4082 u64 num_bytes = calc_trans_metadata_size(root, 5);
4083 dst_rsv->space_info = src_rsv->space_info;
4084 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4085}
4086
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004087static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes)
4088{
4089 return num_bytes >>= 3;
4090}
4091
4092int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
4093{
4094 struct btrfs_root *root = BTRFS_I(inode)->root;
4095 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
4096 u64 to_reserve;
4097 int nr_extents;
Josef Bacik57a45ced2011-01-25 16:30:38 -05004098 int reserved_extents;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004099 int ret;
4100
4101 if (btrfs_transaction_in_commit(root->fs_info))
4102 schedule_timeout(1);
4103
4104 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004105
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004106 nr_extents = atomic_read(&BTRFS_I(inode)->outstanding_extents) + 1;
Josef Bacik57a45ced2011-01-25 16:30:38 -05004107 reserved_extents = atomic_read(&BTRFS_I(inode)->reserved_extents);
4108
4109 if (nr_extents > reserved_extents) {
4110 nr_extents -= reserved_extents;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004111 to_reserve = calc_trans_metadata_size(root, nr_extents);
4112 } else {
4113 nr_extents = 0;
4114 to_reserve = 0;
4115 }
Josef Bacik57a45ced2011-01-25 16:30:38 -05004116
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004117 to_reserve += calc_csum_metadata_size(inode, num_bytes);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004118 ret = reserve_metadata_bytes(NULL, root, block_rsv, to_reserve, 1);
4119 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004120 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004121
Josef Bacik57a45ced2011-01-25 16:30:38 -05004122 atomic_add(nr_extents, &BTRFS_I(inode)->reserved_extents);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004123 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004124
4125 block_rsv_add_bytes(block_rsv, to_reserve, 1);
4126
4127 if (block_rsv->size > 512 * 1024 * 1024)
Josef Bacik0019f102010-10-15 15:18:40 -04004128 shrink_delalloc(NULL, root, to_reserve, 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004129
4130 return 0;
4131}
4132
4133void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
4134{
4135 struct btrfs_root *root = BTRFS_I(inode)->root;
4136 u64 to_free;
4137 int nr_extents;
Josef Bacik57a45ced2011-01-25 16:30:38 -05004138 int reserved_extents;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004139
4140 num_bytes = ALIGN(num_bytes, root->sectorsize);
4141 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik3c148742011-02-02 15:53:47 +00004142 WARN_ON(atomic_read(&BTRFS_I(inode)->outstanding_extents) < 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004143
Josef Bacik57a45ced2011-01-25 16:30:38 -05004144 reserved_extents = atomic_read(&BTRFS_I(inode)->reserved_extents);
4145 do {
4146 int old, new;
4147
4148 nr_extents = atomic_read(&BTRFS_I(inode)->outstanding_extents);
4149 if (nr_extents >= reserved_extents) {
4150 nr_extents = 0;
4151 break;
4152 }
4153 old = reserved_extents;
4154 nr_extents = reserved_extents - nr_extents;
4155 new = reserved_extents - nr_extents;
4156 old = atomic_cmpxchg(&BTRFS_I(inode)->reserved_extents,
4157 reserved_extents, new);
4158 if (likely(old == reserved_extents))
4159 break;
4160 reserved_extents = old;
4161 } while (1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004162
4163 to_free = calc_csum_metadata_size(inode, num_bytes);
4164 if (nr_extents > 0)
4165 to_free += calc_trans_metadata_size(root, nr_extents);
4166
4167 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
4168 to_free);
4169}
4170
4171int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
4172{
4173 int ret;
4174
4175 ret = btrfs_check_data_free_space(inode, num_bytes);
4176 if (ret)
4177 return ret;
4178
4179 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
4180 if (ret) {
4181 btrfs_free_reserved_data_space(inode, num_bytes);
4182 return ret;
4183 }
4184
4185 return 0;
4186}
4187
4188void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
4189{
4190 btrfs_delalloc_release_metadata(inode, num_bytes);
4191 btrfs_free_reserved_data_space(inode, num_bytes);
4192}
4193
Chris Mason9078a3e2007-04-26 16:46:15 -04004194static int update_block_group(struct btrfs_trans_handle *trans,
4195 struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04004196 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04004197{
Josef Bacik0af3d002010-06-21 14:48:16 -04004198 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04004199 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04004200 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004201 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04004202 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04004203 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04004204
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004205 /* block accounting for super block */
4206 spin_lock(&info->delalloc_lock);
4207 old_val = btrfs_super_bytes_used(&info->super_copy);
4208 if (alloc)
4209 old_val += num_bytes;
4210 else
4211 old_val -= num_bytes;
4212 btrfs_set_super_bytes_used(&info->super_copy, old_val);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004213 spin_unlock(&info->delalloc_lock);
4214
Chris Masond3977122009-01-05 21:25:51 -05004215 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04004216 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004217 if (!cache)
Chris Mason9078a3e2007-04-26 16:46:15 -04004218 return -1;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004219 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
4220 BTRFS_BLOCK_GROUP_RAID1 |
4221 BTRFS_BLOCK_GROUP_RAID10))
4222 factor = 2;
4223 else
4224 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04004225 /*
4226 * If this block group has free space cache written out, we
4227 * need to make sure to load it if we are removing space. This
4228 * is because we need the unpinning stage to actually add the
4229 * space back to the block group, otherwise we will leak space.
4230 */
4231 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Josef Bacikb8399de2010-12-08 09:15:11 -05004232 cache_block_group(cache, trans, NULL, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04004233
Chris Masondb945352007-10-15 16:15:53 -04004234 byte_in_group = bytenr - cache->key.objectid;
4235 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04004236
Josef Bacik25179202008-10-29 14:49:05 -04004237 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04004238 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04004239
4240 if (btrfs_super_cache_generation(&info->super_copy) != 0 &&
4241 cache->disk_cache_state < BTRFS_DC_CLEAR)
4242 cache->disk_cache_state = BTRFS_DC_CLEAR;
4243
Josef Bacik0f9dd462008-09-23 13:14:11 -04004244 cache->dirty = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04004245 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04004246 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04004247 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04004248 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04004249 btrfs_set_block_group_used(&cache->item, old_val);
4250 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04004251 cache->space_info->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05004252 cache->space_info->reservation_progress++;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004253 cache->space_info->bytes_used += num_bytes;
4254 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04004255 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04004256 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04004257 } else {
Chris Masondb945352007-10-15 16:15:53 -04004258 old_val -= num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04004259 btrfs_set_block_group_used(&cache->item, old_val);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004260 cache->pinned += num_bytes;
4261 cache->space_info->bytes_pinned += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004262 cache->space_info->bytes_used -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004263 cache->space_info->disk_used -= num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04004264 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04004265 spin_unlock(&cache->space_info->lock);
Liu Hui1f3c79a2009-01-05 15:57:51 -05004266
Yan, Zhengf0486c62010-05-16 10:46:25 -04004267 set_extent_dirty(info->pinned_extents,
4268 bytenr, bytenr + num_bytes - 1,
4269 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04004270 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04004271 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04004272 total -= num_bytes;
4273 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004274 }
4275 return 0;
4276}
Chris Mason6324fbf2008-03-24 15:01:59 -04004277
Chris Masona061fc82008-05-07 11:43:44 -04004278static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
4279{
Josef Bacik0f9dd462008-09-23 13:14:11 -04004280 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004281 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004282
4283 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
4284 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04004285 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004286
Yan Zhengd2fb3432008-12-11 16:30:39 -05004287 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04004288 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05004289
4290 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04004291}
4292
Yan, Zhengf0486c62010-05-16 10:46:25 -04004293static int pin_down_extent(struct btrfs_root *root,
4294 struct btrfs_block_group_cache *cache,
4295 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05004296{
Yan Zheng11833d62009-09-11 16:11:19 -04004297 spin_lock(&cache->space_info->lock);
4298 spin_lock(&cache->lock);
4299 cache->pinned += num_bytes;
4300 cache->space_info->bytes_pinned += num_bytes;
4301 if (reserved) {
4302 cache->reserved -= num_bytes;
4303 cache->space_info->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05004304 cache->space_info->reservation_progress++;
Yan324ae4d2007-11-16 14:57:08 -05004305 }
Yan Zheng11833d62009-09-11 16:11:19 -04004306 spin_unlock(&cache->lock);
4307 spin_unlock(&cache->space_info->lock);
4308
Yan, Zhengf0486c62010-05-16 10:46:25 -04004309 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
4310 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05004311 return 0;
4312}
Chris Mason9078a3e2007-04-26 16:46:15 -04004313
Yan, Zhengf0486c62010-05-16 10:46:25 -04004314/*
4315 * this function must be called within transaction
4316 */
4317int btrfs_pin_extent(struct btrfs_root *root,
4318 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04004319{
Yan, Zhengf0486c62010-05-16 10:46:25 -04004320 struct btrfs_block_group_cache *cache;
4321
4322 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
4323 BUG_ON(!cache);
4324
4325 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
4326
4327 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04004328 return 0;
4329}
Zheng Yane8569812008-09-26 10:05:48 -04004330
Yan, Zhengf0486c62010-05-16 10:46:25 -04004331/*
4332 * update size of reserved extents. this function may return -EAGAIN
4333 * if 'reserve' is true or 'sinfo' is false.
4334 */
Li Dongyangb4d00d52011-03-24 10:24:25 +00004335int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
4336 u64 num_bytes, int reserve, int sinfo)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004337{
4338 int ret = 0;
4339 if (sinfo) {
4340 struct btrfs_space_info *space_info = cache->space_info;
4341 spin_lock(&space_info->lock);
4342 spin_lock(&cache->lock);
4343 if (reserve) {
4344 if (cache->ro) {
4345 ret = -EAGAIN;
4346 } else {
4347 cache->reserved += num_bytes;
4348 space_info->bytes_reserved += num_bytes;
4349 }
4350 } else {
4351 if (cache->ro)
4352 space_info->bytes_readonly += num_bytes;
4353 cache->reserved -= num_bytes;
4354 space_info->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05004355 space_info->reservation_progress++;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004356 }
4357 spin_unlock(&cache->lock);
4358 spin_unlock(&space_info->lock);
4359 } else {
4360 spin_lock(&cache->lock);
4361 if (cache->ro) {
4362 ret = -EAGAIN;
4363 } else {
4364 if (reserve)
4365 cache->reserved += num_bytes;
4366 else
4367 cache->reserved -= num_bytes;
4368 }
4369 spin_unlock(&cache->lock);
4370 }
4371 return ret;
4372}
4373
Yan Zheng11833d62009-09-11 16:11:19 -04004374int btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
4375 struct btrfs_root *root)
4376{
4377 struct btrfs_fs_info *fs_info = root->fs_info;
4378 struct btrfs_caching_control *next;
4379 struct btrfs_caching_control *caching_ctl;
4380 struct btrfs_block_group_cache *cache;
4381
4382 down_write(&fs_info->extent_commit_sem);
4383
4384 list_for_each_entry_safe(caching_ctl, next,
4385 &fs_info->caching_block_groups, list) {
4386 cache = caching_ctl->block_group;
4387 if (block_group_cache_done(cache)) {
4388 cache->last_byte_to_unpin = (u64)-1;
4389 list_del_init(&caching_ctl->list);
4390 put_caching_control(caching_ctl);
4391 } else {
4392 cache->last_byte_to_unpin = caching_ctl->progress;
4393 }
4394 }
4395
4396 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
4397 fs_info->pinned_extents = &fs_info->freed_extents[1];
4398 else
4399 fs_info->pinned_extents = &fs_info->freed_extents[0];
4400
4401 up_write(&fs_info->extent_commit_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004402
4403 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04004404 return 0;
4405}
4406
4407static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
4408{
4409 struct btrfs_fs_info *fs_info = root->fs_info;
4410 struct btrfs_block_group_cache *cache = NULL;
4411 u64 len;
4412
4413 while (start <= end) {
4414 if (!cache ||
4415 start >= cache->key.objectid + cache->key.offset) {
4416 if (cache)
4417 btrfs_put_block_group(cache);
4418 cache = btrfs_lookup_block_group(fs_info, start);
4419 BUG_ON(!cache);
4420 }
4421
4422 len = cache->key.objectid + cache->key.offset - start;
4423 len = min(len, end + 1 - start);
4424
4425 if (start < cache->last_byte_to_unpin) {
4426 len = min(len, cache->last_byte_to_unpin - start);
4427 btrfs_add_free_space(cache, start, len);
4428 }
Josef Bacik25179202008-10-29 14:49:05 -04004429
Yan, Zhengf0486c62010-05-16 10:46:25 -04004430 start += len;
4431
Josef Bacik25179202008-10-29 14:49:05 -04004432 spin_lock(&cache->space_info->lock);
4433 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04004434 cache->pinned -= len;
4435 cache->space_info->bytes_pinned -= len;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004436 if (cache->ro) {
4437 cache->space_info->bytes_readonly += len;
4438 } else if (cache->reserved_pinned > 0) {
4439 len = min(len, cache->reserved_pinned);
4440 cache->reserved_pinned -= len;
4441 cache->space_info->bytes_reserved += len;
4442 }
Josef Bacik25179202008-10-29 14:49:05 -04004443 spin_unlock(&cache->lock);
4444 spin_unlock(&cache->space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04004445 }
4446
4447 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04004448 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04004449 return 0;
4450}
4451
4452int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04004453 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05004454{
Yan Zheng11833d62009-09-11 16:11:19 -04004455 struct btrfs_fs_info *fs_info = root->fs_info;
4456 struct extent_io_tree *unpin;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004457 struct btrfs_block_rsv *block_rsv;
4458 struct btrfs_block_rsv *next_rsv;
Chris Mason1a5bc162007-10-15 16:15:26 -04004459 u64 start;
4460 u64 end;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004461 int idx;
Chris Masona28ec192007-03-06 20:08:01 -05004462 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05004463
Yan Zheng11833d62009-09-11 16:11:19 -04004464 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
4465 unpin = &fs_info->freed_extents[1];
4466 else
4467 unpin = &fs_info->freed_extents[0];
4468
Chris Masond3977122009-01-05 21:25:51 -05004469 while (1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04004470 ret = find_first_extent_bit(unpin, 0, &start, &end,
4471 EXTENT_DIRTY);
4472 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05004473 break;
Liu Hui1f3c79a2009-01-05 15:57:51 -05004474
Li Dongyang5378e602011-03-24 10:24:27 +00004475 if (btrfs_test_opt(root, DISCARD))
4476 ret = btrfs_discard_extent(root, start,
4477 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05004478
Chris Mason1a5bc162007-10-15 16:15:26 -04004479 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Yan Zheng11833d62009-09-11 16:11:19 -04004480 unpin_extent_range(root, start, end);
Chris Masonb9473432009-03-13 11:00:37 -04004481 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05004482 }
Josef Bacik817d52f2009-07-13 21:29:25 -04004483
Yan, Zhengf0486c62010-05-16 10:46:25 -04004484 mutex_lock(&fs_info->durable_block_rsv_mutex);
4485 list_for_each_entry_safe(block_rsv, next_rsv,
4486 &fs_info->durable_block_rsv_list, list) {
Chris Masona28ec192007-03-06 20:08:01 -05004487
Yan, Zhengf0486c62010-05-16 10:46:25 -04004488 idx = trans->transid & 0x1;
4489 if (block_rsv->freed[idx] > 0) {
4490 block_rsv_add_bytes(block_rsv,
4491 block_rsv->freed[idx], 0);
4492 block_rsv->freed[idx] = 0;
Chris Mason8ef97622007-03-26 10:15:30 -04004493 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004494 if (atomic_read(&block_rsv->usage) == 0) {
4495 btrfs_block_rsv_release(root, block_rsv, (u64)-1);
Zheng Yan31840ae2008-09-23 13:14:14 -04004496
Yan, Zhengf0486c62010-05-16 10:46:25 -04004497 if (block_rsv->freed[0] == 0 &&
4498 block_rsv->freed[1] == 0) {
4499 list_del_init(&block_rsv->list);
4500 kfree(block_rsv);
4501 }
4502 } else {
4503 btrfs_block_rsv_release(root, block_rsv, 0);
4504 }
4505 }
4506 mutex_unlock(&fs_info->durable_block_rsv_mutex);
4507
Chris Masone20d96d2007-03-22 12:13:20 -04004508 return 0;
4509}
4510
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004511static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
4512 struct btrfs_root *root,
4513 u64 bytenr, u64 num_bytes, u64 parent,
4514 u64 root_objectid, u64 owner_objectid,
4515 u64 owner_offset, int refs_to_drop,
4516 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05004517{
Chris Masone2fa7222007-03-12 16:22:34 -04004518 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004519 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04004520 struct btrfs_fs_info *info = root->fs_info;
4521 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04004522 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004523 struct btrfs_extent_item *ei;
4524 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05004525 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004526 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05004527 int extent_slot = 0;
4528 int found_extent = 0;
4529 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004530 u32 item_size;
4531 u64 refs;
Chris Mason037e6392007-03-07 11:50:24 -05004532
Chris Mason5caf2a02007-04-02 11:20:42 -04004533 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04004534 if (!path)
4535 return -ENOMEM;
4536
Chris Mason3c12ac72008-04-21 12:01:38 -04004537 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04004538 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004539
4540 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
4541 BUG_ON(!is_data && refs_to_drop != 1);
4542
4543 ret = lookup_extent_backref(trans, extent_root, path, &iref,
4544 bytenr, num_bytes, parent,
4545 root_objectid, owner_objectid,
4546 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05004547 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05004548 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004549 while (extent_slot >= 0) {
4550 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05004551 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004552 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05004553 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004554 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
4555 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05004556 found_extent = 1;
4557 break;
4558 }
4559 if (path->slots[0] - extent_slot > 5)
4560 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004561 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05004562 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004563#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4564 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
4565 if (found_extent && item_size < sizeof(*ei))
4566 found_extent = 0;
4567#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04004568 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004569 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04004570 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004571 NULL, refs_to_drop,
4572 is_data);
Zheng Yan31840ae2008-09-23 13:14:14 -04004573 BUG_ON(ret);
4574 btrfs_release_path(extent_root, path);
Chris Masonb9473432009-03-13 11:00:37 -04004575 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004576
4577 key.objectid = bytenr;
4578 key.type = BTRFS_EXTENT_ITEM_KEY;
4579 key.offset = num_bytes;
4580
Zheng Yan31840ae2008-09-23 13:14:14 -04004581 ret = btrfs_search_slot(trans, extent_root,
4582 &key, path, -1, 1);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004583 if (ret) {
4584 printk(KERN_ERR "umm, got %d back from search"
Chris Masond3977122009-01-05 21:25:51 -05004585 ", was looking for %llu\n", ret,
4586 (unsigned long long)bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004587 btrfs_print_leaf(extent_root, path->nodes[0]);
4588 }
Zheng Yan31840ae2008-09-23 13:14:14 -04004589 BUG_ON(ret);
4590 extent_slot = path->slots[0];
4591 }
Chris Mason7bb86312007-12-11 09:25:06 -05004592 } else {
4593 btrfs_print_leaf(extent_root, path->nodes[0]);
4594 WARN_ON(1);
Chris Masond3977122009-01-05 21:25:51 -05004595 printk(KERN_ERR "btrfs unable to find ref byte nr %llu "
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004596 "parent %llu root %llu owner %llu offset %llu\n",
Chris Masond3977122009-01-05 21:25:51 -05004597 (unsigned long long)bytenr,
Chris Mason56bec292009-03-13 10:10:06 -04004598 (unsigned long long)parent,
Chris Masond3977122009-01-05 21:25:51 -05004599 (unsigned long long)root_objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004600 (unsigned long long)owner_objectid,
4601 (unsigned long long)owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05004602 }
Chris Mason5f39d392007-10-15 16:14:19 -04004603
4604 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004605 item_size = btrfs_item_size_nr(leaf, extent_slot);
4606#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4607 if (item_size < sizeof(*ei)) {
4608 BUG_ON(found_extent || extent_slot != path->slots[0]);
4609 ret = convert_extent_item_v0(trans, extent_root, path,
4610 owner_objectid, 0);
4611 BUG_ON(ret < 0);
4612
4613 btrfs_release_path(extent_root, path);
4614 path->leave_spinning = 1;
4615
4616 key.objectid = bytenr;
4617 key.type = BTRFS_EXTENT_ITEM_KEY;
4618 key.offset = num_bytes;
4619
4620 ret = btrfs_search_slot(trans, extent_root, &key, path,
4621 -1, 1);
4622 if (ret) {
4623 printk(KERN_ERR "umm, got %d back from search"
4624 ", was looking for %llu\n", ret,
4625 (unsigned long long)bytenr);
4626 btrfs_print_leaf(extent_root, path->nodes[0]);
4627 }
4628 BUG_ON(ret);
4629 extent_slot = path->slots[0];
4630 leaf = path->nodes[0];
4631 item_size = btrfs_item_size_nr(leaf, extent_slot);
4632 }
4633#endif
4634 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05004635 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04004636 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004637 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID) {
4638 struct btrfs_tree_block_info *bi;
4639 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
4640 bi = (struct btrfs_tree_block_info *)(ei + 1);
4641 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05004642 }
4643
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004644 refs = btrfs_extent_refs(leaf, ei);
4645 BUG_ON(refs < refs_to_drop);
4646 refs -= refs_to_drop;
4647
4648 if (refs > 0) {
4649 if (extent_op)
4650 __run_delayed_extent_op(extent_op, leaf, ei);
4651 /*
4652 * In the case of inline back ref, reference count will
4653 * be updated by remove_extent_backref
4654 */
4655 if (iref) {
4656 BUG_ON(!found_extent);
4657 } else {
4658 btrfs_set_extent_refs(leaf, ei, refs);
4659 btrfs_mark_buffer_dirty(leaf);
4660 }
4661 if (found_extent) {
4662 ret = remove_extent_backref(trans, extent_root, path,
4663 iref, refs_to_drop,
4664 is_data);
4665 BUG_ON(ret);
4666 }
4667 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004668 if (found_extent) {
4669 BUG_ON(is_data && refs_to_drop !=
4670 extent_data_ref_count(root, path, iref));
4671 if (iref) {
4672 BUG_ON(path->slots[0] != extent_slot);
4673 } else {
4674 BUG_ON(path->slots[0] != extent_slot + 1);
4675 path->slots[0] = extent_slot;
4676 num_to_del = 2;
4677 }
Chris Mason78fae272007-03-25 11:35:08 -04004678 }
Chris Masonb9473432009-03-13 11:00:37 -04004679
Chris Mason952fcca2008-02-18 16:33:44 -05004680 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
4681 num_to_del);
Zheng Yan31840ae2008-09-23 13:14:14 -04004682 BUG_ON(ret);
Josef Bacik25179202008-10-29 14:49:05 -04004683 btrfs_release_path(extent_root, path);
David Woodhouse21af8042008-08-12 14:13:26 +01004684
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004685 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05004686 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
4687 BUG_ON(ret);
Chris Masond57e62b2009-03-31 13:47:50 -04004688 } else {
4689 invalidate_mapping_pages(info->btree_inode->i_mapping,
4690 bytenr >> PAGE_CACHE_SHIFT,
4691 (bytenr + num_bytes - 1) >> PAGE_CACHE_SHIFT);
Chris Mason459931e2008-12-10 09:10:46 -05004692 }
4693
Yan, Zhengf0486c62010-05-16 10:46:25 -04004694 ret = update_block_group(trans, root, bytenr, num_bytes, 0);
Chris Masondcbdd4d2008-12-16 13:51:01 -05004695 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05004696 }
Chris Mason5caf2a02007-04-02 11:20:42 -04004697 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05004698 return ret;
4699}
4700
4701/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04004702 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04004703 * delayed ref for that extent as well. This searches the delayed ref tree for
4704 * a given extent, and if there are no other delayed refs to be processed, it
4705 * removes it from the tree.
4706 */
4707static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
4708 struct btrfs_root *root, u64 bytenr)
4709{
4710 struct btrfs_delayed_ref_head *head;
4711 struct btrfs_delayed_ref_root *delayed_refs;
4712 struct btrfs_delayed_ref_node *ref;
4713 struct rb_node *node;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004714 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04004715
4716 delayed_refs = &trans->transaction->delayed_refs;
4717 spin_lock(&delayed_refs->lock);
4718 head = btrfs_find_delayed_ref_head(trans, bytenr);
4719 if (!head)
4720 goto out;
4721
4722 node = rb_prev(&head->node.rb_node);
4723 if (!node)
4724 goto out;
4725
4726 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
4727
4728 /* there are still entries for this ref, we can't drop it */
4729 if (ref->bytenr == bytenr)
4730 goto out;
4731
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004732 if (head->extent_op) {
4733 if (!head->must_insert_reserved)
4734 goto out;
4735 kfree(head->extent_op);
4736 head->extent_op = NULL;
4737 }
4738
Chris Mason1887be62009-03-13 10:11:24 -04004739 /*
4740 * waiting for the lock here would deadlock. If someone else has it
4741 * locked they are already in the process of dropping it anyway
4742 */
4743 if (!mutex_trylock(&head->mutex))
4744 goto out;
4745
4746 /*
4747 * at this point we have a head with no other entries. Go
4748 * ahead and process it.
4749 */
4750 head->node.in_tree = 0;
4751 rb_erase(&head->node.rb_node, &delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04004752
Chris Mason1887be62009-03-13 10:11:24 -04004753 delayed_refs->num_entries--;
4754
4755 /*
4756 * we don't take a ref on the node because we're removing it from the
4757 * tree, so we just steal the ref the tree was holding.
4758 */
Chris Masonc3e69d52009-03-13 10:17:05 -04004759 delayed_refs->num_heads--;
4760 if (list_empty(&head->cluster))
4761 delayed_refs->num_heads_ready--;
4762
4763 list_del_init(&head->cluster);
Chris Mason1887be62009-03-13 10:11:24 -04004764 spin_unlock(&delayed_refs->lock);
4765
Yan, Zhengf0486c62010-05-16 10:46:25 -04004766 BUG_ON(head->extent_op);
4767 if (head->must_insert_reserved)
4768 ret = 1;
4769
4770 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04004771 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004772 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04004773out:
4774 spin_unlock(&delayed_refs->lock);
4775 return 0;
4776}
4777
Yan, Zhengf0486c62010-05-16 10:46:25 -04004778void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
4779 struct btrfs_root *root,
4780 struct extent_buffer *buf,
4781 u64 parent, int last_ref)
4782{
4783 struct btrfs_block_rsv *block_rsv;
4784 struct btrfs_block_group_cache *cache = NULL;
4785 int ret;
4786
4787 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4788 ret = btrfs_add_delayed_tree_ref(trans, buf->start, buf->len,
4789 parent, root->root_key.objectid,
4790 btrfs_header_level(buf),
4791 BTRFS_DROP_DELAYED_REF, NULL);
4792 BUG_ON(ret);
4793 }
4794
4795 if (!last_ref)
4796 return;
4797
4798 block_rsv = get_block_rsv(trans, root);
4799 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
Yan, Zheng3bf84a52010-05-31 09:04:46 +00004800 if (block_rsv->space_info != cache->space_info)
4801 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004802
4803 if (btrfs_header_generation(buf) == trans->transid) {
4804 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4805 ret = check_ref_cleanup(trans, root, buf->start);
4806 if (!ret)
4807 goto pin;
4808 }
4809
4810 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
4811 pin_down_extent(root, cache, buf->start, buf->len, 1);
4812 goto pin;
4813 }
4814
4815 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
4816
4817 btrfs_add_free_space(cache, buf->start, buf->len);
Li Dongyangb4d00d52011-03-24 10:24:25 +00004818 ret = btrfs_update_reserved_bytes(cache, buf->len, 0, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004819 if (ret == -EAGAIN) {
4820 /* block group became read-only */
Li Dongyangb4d00d52011-03-24 10:24:25 +00004821 btrfs_update_reserved_bytes(cache, buf->len, 0, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004822 goto out;
4823 }
4824
4825 ret = 1;
4826 spin_lock(&block_rsv->lock);
4827 if (block_rsv->reserved < block_rsv->size) {
4828 block_rsv->reserved += buf->len;
4829 ret = 0;
4830 }
4831 spin_unlock(&block_rsv->lock);
4832
4833 if (ret) {
4834 spin_lock(&cache->space_info->lock);
4835 cache->space_info->bytes_reserved -= buf->len;
Chris Mason36e39c42011-03-12 07:08:42 -05004836 cache->space_info->reservation_progress++;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004837 spin_unlock(&cache->space_info->lock);
4838 }
4839 goto out;
4840 }
4841pin:
4842 if (block_rsv->durable && !cache->ro) {
4843 ret = 0;
4844 spin_lock(&cache->lock);
4845 if (!cache->ro) {
4846 cache->reserved_pinned += buf->len;
4847 ret = 1;
4848 }
4849 spin_unlock(&cache->lock);
4850
4851 if (ret) {
4852 spin_lock(&block_rsv->lock);
4853 block_rsv->freed[trans->transid & 0x1] += buf->len;
4854 spin_unlock(&block_rsv->lock);
4855 }
4856 }
4857out:
Josef Bacika826d6d2011-03-16 13:42:43 -04004858 /*
4859 * Deleting the buffer, clear the corrupt flag since it doesn't matter
4860 * anymore.
4861 */
4862 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004863 btrfs_put_block_group(cache);
4864}
4865
Chris Mason925baed2008-06-25 16:01:30 -04004866int btrfs_free_extent(struct btrfs_trans_handle *trans,
Zheng Yan31840ae2008-09-23 13:14:14 -04004867 struct btrfs_root *root,
4868 u64 bytenr, u64 num_bytes, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004869 u64 root_objectid, u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04004870{
4871 int ret;
4872
Chris Mason56bec292009-03-13 10:10:06 -04004873 /*
4874 * tree log blocks never actually go into the extent allocation
4875 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04004876 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004877 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
4878 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04004879 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04004880 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04004881 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004882 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
4883 ret = btrfs_add_delayed_tree_ref(trans, bytenr, num_bytes,
4884 parent, root_objectid, (int)owner,
4885 BTRFS_DROP_DELAYED_REF, NULL);
Chris Mason1887be62009-03-13 10:11:24 -04004886 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004887 } else {
4888 ret = btrfs_add_delayed_data_ref(trans, bytenr, num_bytes,
4889 parent, root_objectid, owner,
4890 offset, BTRFS_DROP_DELAYED_REF, NULL);
4891 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04004892 }
Chris Mason925baed2008-06-25 16:01:30 -04004893 return ret;
4894}
4895
Chris Mason87ee04e2007-11-30 11:30:34 -05004896static u64 stripe_align(struct btrfs_root *root, u64 val)
4897{
4898 u64 mask = ((u64)root->stripesize - 1);
4899 u64 ret = (val + mask) & ~mask;
4900 return ret;
4901}
4902
Chris Masonfec577f2007-02-26 10:40:21 -05004903/*
Josef Bacik817d52f2009-07-13 21:29:25 -04004904 * when we wait for progress in the block group caching, its because
4905 * our allocation attempt failed at least once. So, we must sleep
4906 * and let some progress happen before we try again.
4907 *
4908 * This function will sleep at least once waiting for new free space to
4909 * show up, and then it will check the block group free space numbers
4910 * for our min num_bytes. Another option is to have it go ahead
4911 * and look in the rbtree for a free extent of a given size, but this
4912 * is a good start.
4913 */
4914static noinline int
4915wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
4916 u64 num_bytes)
4917{
Yan Zheng11833d62009-09-11 16:11:19 -04004918 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04004919 DEFINE_WAIT(wait);
4920
Yan Zheng11833d62009-09-11 16:11:19 -04004921 caching_ctl = get_caching_control(cache);
4922 if (!caching_ctl)
Josef Bacik817d52f2009-07-13 21:29:25 -04004923 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -04004924
Yan Zheng11833d62009-09-11 16:11:19 -04004925 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Josef Bacik817d52f2009-07-13 21:29:25 -04004926 (cache->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04004927
4928 put_caching_control(caching_ctl);
4929 return 0;
4930}
4931
4932static noinline int
4933wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
4934{
4935 struct btrfs_caching_control *caching_ctl;
4936 DEFINE_WAIT(wait);
4937
4938 caching_ctl = get_caching_control(cache);
4939 if (!caching_ctl)
4940 return 0;
4941
4942 wait_event(caching_ctl->wait, block_group_cache_done(cache));
4943
4944 put_caching_control(caching_ctl);
Josef Bacik817d52f2009-07-13 21:29:25 -04004945 return 0;
4946}
4947
Yan, Zhengb742bb82010-05-16 10:46:24 -04004948static int get_block_group_index(struct btrfs_block_group_cache *cache)
4949{
4950 int index;
4951 if (cache->flags & BTRFS_BLOCK_GROUP_RAID10)
4952 index = 0;
4953 else if (cache->flags & BTRFS_BLOCK_GROUP_RAID1)
4954 index = 1;
4955 else if (cache->flags & BTRFS_BLOCK_GROUP_DUP)
4956 index = 2;
4957 else if (cache->flags & BTRFS_BLOCK_GROUP_RAID0)
4958 index = 3;
4959 else
4960 index = 4;
4961 return index;
4962}
4963
Josef Bacik817d52f2009-07-13 21:29:25 -04004964enum btrfs_loop_type {
Josef Bacikccf0e722009-11-10 21:23:48 -05004965 LOOP_FIND_IDEAL = 0,
Josef Bacik817d52f2009-07-13 21:29:25 -04004966 LOOP_CACHING_NOWAIT = 1,
4967 LOOP_CACHING_WAIT = 2,
4968 LOOP_ALLOC_CHUNK = 3,
4969 LOOP_NO_EMPTY_SIZE = 4,
4970};
4971
4972/*
Chris Masonfec577f2007-02-26 10:40:21 -05004973 * walks the btree of allocated extents and find a hole of a given size.
4974 * The key ins is changed to record the hole:
4975 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04004976 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05004977 * ins->offset == number of blocks
4978 * Any available blocks before search_start are skipped.
4979 */
Chris Masond3977122009-01-05 21:25:51 -05004980static noinline int find_free_extent(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05004981 struct btrfs_root *orig_root,
4982 u64 num_bytes, u64 empty_size,
4983 u64 search_start, u64 search_end,
4984 u64 hint_byte, struct btrfs_key *ins,
Chris Mason98ed5172008-01-03 10:01:48 -05004985 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05004986{
Josef Bacik80eb2342008-10-29 14:49:05 -04004987 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05004988 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04004989 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04004990 struct btrfs_block_group_cache *block_group = NULL;
Chris Mason239b14b2008-03-24 15:02:07 -04004991 int empty_cluster = 2 * 1024 * 1024;
Chris Mason0ef3e662008-05-24 14:04:53 -04004992 int allowed_chunk_alloc = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05004993 int done_chunk_alloc = 0;
Josef Bacik80eb2342008-10-29 14:49:05 -04004994 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04004995 int last_ptr_loop = 0;
4996 int loop = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004997 int index = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -04004998 bool found_uncached_bg = false;
Josef Bacik0a243252009-09-11 16:11:20 -04004999 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005000 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04005001 bool use_cluster = true;
Josef Bacikccf0e722009-11-10 21:23:48 -05005002 u64 ideal_cache_percent = 0;
5003 u64 ideal_cache_offset = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05005004
Chris Masondb945352007-10-15 16:15:53 -04005005 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04005006 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
Josef Bacik80eb2342008-10-29 14:49:05 -04005007 ins->objectid = 0;
5008 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04005009
Josef Bacik2552d172009-04-03 10:14:19 -04005010 space_info = __find_space_info(root->fs_info, data);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00005011 if (!space_info) {
5012 printk(KERN_ERR "No space info for %d\n", data);
5013 return -ENOSPC;
5014 }
Josef Bacik2552d172009-04-03 10:14:19 -04005015
Josef Bacik67377732010-09-16 16:19:09 -04005016 /*
5017 * If the space info is for both data and metadata it means we have a
5018 * small filesystem and we can't use the clustering stuff.
5019 */
5020 if (btrfs_mixed_space_info(space_info))
5021 use_cluster = false;
5022
Chris Mason0ef3e662008-05-24 14:04:53 -04005023 if (orig_root->ref_cows || empty_size)
5024 allowed_chunk_alloc = 1;
5025
Josef Bacik67377732010-09-16 16:19:09 -04005026 if (data & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005027 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05005028 if (!btrfs_test_opt(root, SSD))
5029 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04005030 }
5031
Josef Bacik67377732010-09-16 16:19:09 -04005032 if ((data & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
5033 btrfs_test_opt(root, SSD)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005034 last_ptr = &root->fs_info->data_alloc_cluster;
5035 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04005036
Chris Mason239b14b2008-03-24 15:02:07 -04005037 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005038 spin_lock(&last_ptr->lock);
5039 if (last_ptr->block_group)
5040 hint_byte = last_ptr->window_start;
5041 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04005042 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04005043
Chris Masona061fc82008-05-07 11:43:44 -04005044 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04005045 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04005046
Josef Bacik817d52f2009-07-13 21:29:25 -04005047 if (!last_ptr)
Chris Masonfa9c0d792009-04-03 09:47:43 -04005048 empty_cluster = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005049
Josef Bacik2552d172009-04-03 10:14:19 -04005050 if (search_start == hint_byte) {
Josef Bacikccf0e722009-11-10 21:23:48 -05005051ideal_cache:
Josef Bacik2552d172009-04-03 10:14:19 -04005052 block_group = btrfs_lookup_block_group(root->fs_info,
5053 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04005054 /*
5055 * we don't want to use the block group if it doesn't match our
5056 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05005057 *
5058 * However if we are re-searching with an ideal block group
5059 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04005060 */
5061 if (block_group && block_group_bits(block_group, data) &&
Josef Bacikccf0e722009-11-10 21:23:48 -05005062 (block_group->cached != BTRFS_CACHE_NO ||
5063 search_start == ideal_cache_offset)) {
Josef Bacik2552d172009-04-03 10:14:19 -04005064 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04005065 if (list_empty(&block_group->list) ||
5066 block_group->ro) {
5067 /*
5068 * someone is removing this block group,
5069 * we can't jump into the have_block_group
5070 * target because our list pointers are not
5071 * valid
5072 */
5073 btrfs_put_block_group(block_group);
5074 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05005075 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04005076 index = get_block_group_index(block_group);
Chris Mason44fb5512009-06-04 15:34:51 -04005077 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05005078 }
Josef Bacik2552d172009-04-03 10:14:19 -04005079 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005080 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04005081 }
Chris Mason42e70e72008-11-07 18:17:11 -05005082 }
Josef Bacik2552d172009-04-03 10:14:19 -04005083search:
Josef Bacik80eb2342008-10-29 14:49:05 -04005084 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04005085 list_for_each_entry(block_group, &space_info->block_groups[index],
5086 list) {
Josef Bacik6226cb02009-04-03 10:14:18 -04005087 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04005088 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05005089
Josef Bacik11dfe352009-11-13 20:12:59 +00005090 btrfs_get_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04005091 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05005092
Chris Mason83a50de2010-12-13 15:06:46 -05005093 /*
5094 * this can happen if we end up cycling through all the
5095 * raid types, but we want to make sure we only allocate
5096 * for the proper type.
5097 */
5098 if (!block_group_bits(block_group, data)) {
5099 u64 extra = BTRFS_BLOCK_GROUP_DUP |
5100 BTRFS_BLOCK_GROUP_RAID1 |
5101 BTRFS_BLOCK_GROUP_RAID10;
5102
5103 /*
5104 * if they asked for extra copies and this block group
5105 * doesn't provide them, bail. This does allow us to
5106 * fill raid0 from raid1.
5107 */
5108 if ((data & extra) && !(block_group->flags & extra))
5109 goto loop;
5110 }
5111
Josef Bacik2552d172009-04-03 10:14:19 -04005112have_block_group:
Josef Bacik817d52f2009-07-13 21:29:25 -04005113 if (unlikely(block_group->cached == BTRFS_CACHE_NO)) {
Josef Bacikccf0e722009-11-10 21:23:48 -05005114 u64 free_percent;
5115
Josef Bacikb8399de2010-12-08 09:15:11 -05005116 ret = cache_block_group(block_group, trans,
5117 orig_root, 1);
Josef Bacik9d66e232010-08-25 16:54:15 -04005118 if (block_group->cached == BTRFS_CACHE_FINISHED)
5119 goto have_block_group;
5120
Josef Bacikccf0e722009-11-10 21:23:48 -05005121 free_percent = btrfs_block_group_used(&block_group->item);
5122 free_percent *= 100;
5123 free_percent = div64_u64(free_percent,
5124 block_group->key.offset);
5125 free_percent = 100 - free_percent;
5126 if (free_percent > ideal_cache_percent &&
5127 likely(!block_group->ro)) {
5128 ideal_cache_offset = block_group->key.objectid;
5129 ideal_cache_percent = free_percent;
5130 }
5131
Josef Bacik817d52f2009-07-13 21:29:25 -04005132 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05005133 * We only want to start kthread caching if we are at
5134 * the point where we will wait for caching to make
5135 * progress, or if our ideal search is over and we've
5136 * found somebody to start caching.
Josef Bacik817d52f2009-07-13 21:29:25 -04005137 */
5138 if (loop > LOOP_CACHING_NOWAIT ||
Josef Bacikccf0e722009-11-10 21:23:48 -05005139 (loop > LOOP_FIND_IDEAL &&
5140 atomic_read(&space_info->caching_threads) < 2)) {
Josef Bacikb8399de2010-12-08 09:15:11 -05005141 ret = cache_block_group(block_group, trans,
5142 orig_root, 0);
Josef Bacik817d52f2009-07-13 21:29:25 -04005143 BUG_ON(ret);
Josef Bacik2552d172009-04-03 10:14:19 -04005144 }
Josef Bacikccf0e722009-11-10 21:23:48 -05005145 found_uncached_bg = true;
5146
5147 /*
5148 * If loop is set for cached only, try the next block
5149 * group.
5150 */
5151 if (loop == LOOP_FIND_IDEAL)
5152 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05005153 }
5154
Josef Bacik817d52f2009-07-13 21:29:25 -04005155 cached = block_group_cache_done(block_group);
Josef Bacikccf0e722009-11-10 21:23:48 -05005156 if (unlikely(!cached))
Josef Bacik817d52f2009-07-13 21:29:25 -04005157 found_uncached_bg = true;
5158
Josef Bacikea6a4782008-11-20 12:16:16 -05005159 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04005160 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005161
Josef Bacik0a243252009-09-11 16:11:20 -04005162 /*
5163 * Ok we want to try and use the cluster allocator, so lets look
5164 * there, unless we are on LOOP_NO_EMPTY_SIZE, since we will
5165 * have tried the cluster allocator plenty of times at this
5166 * point and not have found anything, so we are likely way too
5167 * fragmented for the clustering stuff to find anything, so lets
5168 * just skip it and let the allocator find whatever block it can
5169 * find
5170 */
5171 if (last_ptr && loop < LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005172 /*
5173 * the refill lock keeps out other
5174 * people trying to start a new cluster
5175 */
5176 spin_lock(&last_ptr->refill_lock);
Chris Mason44fb5512009-06-04 15:34:51 -04005177 if (last_ptr->block_group &&
5178 (last_ptr->block_group->ro ||
5179 !block_group_bits(last_ptr->block_group, data))) {
5180 offset = 0;
5181 goto refill_cluster;
5182 }
5183
Chris Masonfa9c0d792009-04-03 09:47:43 -04005184 offset = btrfs_alloc_from_cluster(block_group, last_ptr,
5185 num_bytes, search_start);
5186 if (offset) {
5187 /* we have a block, we're done */
5188 spin_unlock(&last_ptr->refill_lock);
5189 goto checks;
5190 }
5191
5192 spin_lock(&last_ptr->lock);
5193 /*
5194 * whoops, this cluster doesn't actually point to
5195 * this block group. Get a ref on the block
5196 * group is does point to and try again
5197 */
5198 if (!last_ptr_loop && last_ptr->block_group &&
5199 last_ptr->block_group != block_group) {
5200
5201 btrfs_put_block_group(block_group);
5202 block_group = last_ptr->block_group;
Josef Bacik11dfe352009-11-13 20:12:59 +00005203 btrfs_get_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005204 spin_unlock(&last_ptr->lock);
5205 spin_unlock(&last_ptr->refill_lock);
5206
5207 last_ptr_loop = 1;
5208 search_start = block_group->key.objectid;
Chris Mason44fb5512009-06-04 15:34:51 -04005209 /*
5210 * we know this block group is properly
5211 * in the list because
5212 * btrfs_remove_block_group, drops the
5213 * cluster before it removes the block
5214 * group from the list
5215 */
Chris Masonfa9c0d792009-04-03 09:47:43 -04005216 goto have_block_group;
5217 }
5218 spin_unlock(&last_ptr->lock);
Chris Mason44fb5512009-06-04 15:34:51 -04005219refill_cluster:
Chris Masonfa9c0d792009-04-03 09:47:43 -04005220 /*
5221 * this cluster didn't work out, free it and
5222 * start over
5223 */
5224 btrfs_return_cluster_to_free_space(NULL, last_ptr);
5225
5226 last_ptr_loop = 0;
5227
5228 /* allocate a cluster in this block group */
Chris Mason451d7582009-06-09 20:28:34 -04005229 ret = btrfs_find_space_cluster(trans, root,
Chris Masonfa9c0d792009-04-03 09:47:43 -04005230 block_group, last_ptr,
5231 offset, num_bytes,
5232 empty_cluster + empty_size);
5233 if (ret == 0) {
5234 /*
5235 * now pull our allocation out of this
5236 * cluster
5237 */
5238 offset = btrfs_alloc_from_cluster(block_group,
5239 last_ptr, num_bytes,
5240 search_start);
5241 if (offset) {
5242 /* we found one, proceed */
5243 spin_unlock(&last_ptr->refill_lock);
5244 goto checks;
5245 }
Josef Bacik0a243252009-09-11 16:11:20 -04005246 } else if (!cached && loop > LOOP_CACHING_NOWAIT
5247 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005248 spin_unlock(&last_ptr->refill_lock);
5249
Josef Bacik0a243252009-09-11 16:11:20 -04005250 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04005251 wait_block_group_cache_progress(block_group,
5252 num_bytes + empty_cluster + empty_size);
5253 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005254 }
Josef Bacik817d52f2009-07-13 21:29:25 -04005255
Chris Masonfa9c0d792009-04-03 09:47:43 -04005256 /*
5257 * at this point we either didn't find a cluster
5258 * or we weren't able to allocate a block from our
5259 * cluster. Free the cluster we've been trying
5260 * to use, and go to the next block group
5261 */
Josef Bacik0a243252009-09-11 16:11:20 -04005262 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005263 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04005264 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005265 }
5266
Josef Bacik6226cb02009-04-03 10:14:18 -04005267 offset = btrfs_find_space_for_alloc(block_group, search_start,
5268 num_bytes, empty_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005269 /*
5270 * If we didn't find a chunk, and we haven't failed on this
5271 * block group before, and this block group is in the middle of
5272 * caching and we are ok with waiting, then go ahead and wait
5273 * for progress to be made, and set failed_alloc to true.
5274 *
5275 * If failed_alloc is true then we've already waited on this
5276 * block group once and should move on to the next block group.
5277 */
5278 if (!offset && !failed_alloc && !cached &&
5279 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005280 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005281 num_bytes + empty_size);
5282 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04005283 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005284 } else if (!offset) {
5285 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04005286 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04005287checks:
Josef Bacik6226cb02009-04-03 10:14:18 -04005288 search_start = stripe_align(root, offset);
Josef Bacik2552d172009-04-03 10:14:19 -04005289 /* move on to the next group */
Josef Bacik6226cb02009-04-03 10:14:18 -04005290 if (search_start + num_bytes >= search_end) {
5291 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04005292 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04005293 }
Chris Masone37c9e62007-05-09 20:13:14 -04005294
Josef Bacik2552d172009-04-03 10:14:19 -04005295 /* move on to the next group */
5296 if (search_start + num_bytes >
Josef Bacik6226cb02009-04-03 10:14:18 -04005297 block_group->key.objectid + block_group->key.offset) {
5298 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04005299 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04005300 }
Josef Bacik80eb2342008-10-29 14:49:05 -04005301
Josef Bacik2552d172009-04-03 10:14:19 -04005302 ins->objectid = search_start;
5303 ins->offset = num_bytes;
5304
Josef Bacik6226cb02009-04-03 10:14:18 -04005305 if (offset < search_start)
5306 btrfs_add_free_space(block_group, offset,
5307 search_start - offset);
5308 BUG_ON(offset > search_start);
5309
Li Dongyangb4d00d52011-03-24 10:24:25 +00005310 ret = btrfs_update_reserved_bytes(block_group, num_bytes, 1,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005311 (data & BTRFS_BLOCK_GROUP_DATA));
5312 if (ret == -EAGAIN) {
5313 btrfs_add_free_space(block_group, offset, num_bytes);
5314 goto loop;
5315 }
Yan Zheng11833d62009-09-11 16:11:19 -04005316
Josef Bacik2552d172009-04-03 10:14:19 -04005317 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005318 ins->objectid = search_start;
5319 ins->offset = num_bytes;
5320
5321 if (offset < search_start)
5322 btrfs_add_free_space(block_group, offset,
5323 search_start - offset);
5324 BUG_ON(offset > search_start);
Josef Bacikd82a6f12011-05-11 15:26:06 -04005325 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04005326 break;
5327loop:
Josef Bacik0a243252009-09-11 16:11:20 -04005328 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005329 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005330 BUG_ON(index != get_block_group_index(block_group));
Chris Masonfa9c0d792009-04-03 09:47:43 -04005331 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04005332 }
5333 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05005334
Yan, Zhengb742bb82010-05-16 10:46:24 -04005335 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
5336 goto search;
5337
Josef Bacikccf0e722009-11-10 21:23:48 -05005338 /* LOOP_FIND_IDEAL, only search caching/cached bg's, and don't wait for
5339 * for them to make caching progress. Also
5340 * determine the best possible bg to cache
5341 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
5342 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04005343 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
5344 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
5345 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
5346 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04005347 */
Josef Bacik817d52f2009-07-13 21:29:25 -04005348 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE &&
5349 (found_uncached_bg || empty_size || empty_cluster ||
5350 allowed_chunk_alloc)) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04005351 index = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05005352 if (loop == LOOP_FIND_IDEAL && found_uncached_bg) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005353 found_uncached_bg = false;
Josef Bacikccf0e722009-11-10 21:23:48 -05005354 loop++;
5355 if (!ideal_cache_percent &&
5356 atomic_read(&space_info->caching_threads))
Josef Bacik817d52f2009-07-13 21:29:25 -04005357 goto search;
Josef Bacikccf0e722009-11-10 21:23:48 -05005358
5359 /*
5360 * 1 of the following 2 things have happened so far
5361 *
5362 * 1) We found an ideal block group for caching that
5363 * is mostly full and will cache quickly, so we might
5364 * as well wait for it.
5365 *
5366 * 2) We searched for cached only and we didn't find
5367 * anything, and we didn't start any caching kthreads
5368 * either, so chances are we will loop through and
5369 * start a couple caching kthreads, and then come back
5370 * around and just wait for them. This will be slower
5371 * because we will have 2 caching kthreads reading at
5372 * the same time when we could have just started one
5373 * and waited for it to get far enough to give us an
5374 * allocation, so go ahead and go to the wait caching
5375 * loop.
5376 */
5377 loop = LOOP_CACHING_WAIT;
5378 search_start = ideal_cache_offset;
5379 ideal_cache_percent = 0;
5380 goto ideal_cache;
5381 } else if (loop == LOOP_FIND_IDEAL) {
5382 /*
5383 * Didn't find a uncached bg, wait on anything we find
5384 * next.
5385 */
5386 loop = LOOP_CACHING_WAIT;
5387 goto search;
5388 }
5389
5390 if (loop < LOOP_CACHING_WAIT) {
5391 loop++;
5392 goto search;
Josef Bacik817d52f2009-07-13 21:29:25 -04005393 }
5394
5395 if (loop == LOOP_ALLOC_CHUNK) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005396 empty_size = 0;
5397 empty_cluster = 0;
5398 }
Chris Mason42e70e72008-11-07 18:17:11 -05005399
Josef Bacik2552d172009-04-03 10:14:19 -04005400 if (allowed_chunk_alloc) {
5401 ret = do_chunk_alloc(trans, root, num_bytes +
Chris Mason0e4f8f82011-04-15 16:05:44 -04005402 2 * 1024 * 1024, data,
5403 CHUNK_ALLOC_LIMITED);
Josef Bacik2552d172009-04-03 10:14:19 -04005404 allowed_chunk_alloc = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05005405 done_chunk_alloc = 1;
Chris Mason0e4f8f82011-04-15 16:05:44 -04005406 } else if (!done_chunk_alloc &&
5407 space_info->force_alloc == CHUNK_ALLOC_NO_FORCE) {
5408 space_info->force_alloc = CHUNK_ALLOC_LIMITED;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005409 }
Josef Bacik80eb2342008-10-29 14:49:05 -04005410
Josef Bacik817d52f2009-07-13 21:29:25 -04005411 if (loop < LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005412 loop++;
Josef Bacik2552d172009-04-03 10:14:19 -04005413 goto search;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005414 }
Josef Bacik2552d172009-04-03 10:14:19 -04005415 ret = -ENOSPC;
5416 } else if (!ins->objectid) {
5417 ret = -ENOSPC;
Josef Bacikd82a6f12011-05-11 15:26:06 -04005418 } else if (ins->objectid) {
Josef Bacik2552d172009-04-03 10:14:19 -04005419 ret = 0;
5420 }
Chris Mason0b86a832008-03-24 15:01:56 -04005421
Chris Mason0f70abe2007-02-28 16:46:22 -05005422 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05005423}
Chris Masonec44a352008-04-28 15:29:52 -04005424
Josef Bacik9ed74f22009-09-11 16:12:44 -04005425static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
5426 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04005427{
5428 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005429 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005430
Josef Bacik9ed74f22009-09-11 16:12:44 -04005431 spin_lock(&info->lock);
Chris Masond3977122009-01-05 21:25:51 -05005432 printk(KERN_INFO "space_info has %llu free, is %sfull\n",
5433 (unsigned long long)(info->total_bytes - info->bytes_used -
Josef Bacik9ed74f22009-09-11 16:12:44 -04005434 info->bytes_pinned - info->bytes_reserved -
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005435 info->bytes_readonly),
Chris Masond3977122009-01-05 21:25:51 -05005436 (info->full) ? "" : "not ");
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005437 printk(KERN_INFO "space_info total=%llu, used=%llu, pinned=%llu, "
5438 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Joel Becker21380932009-04-21 12:38:29 -07005439 (unsigned long long)info->total_bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -04005440 (unsigned long long)info->bytes_used,
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005441 (unsigned long long)info->bytes_pinned,
5442 (unsigned long long)info->bytes_reserved,
5443 (unsigned long long)info->bytes_may_use,
5444 (unsigned long long)info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005445 spin_unlock(&info->lock);
5446
5447 if (!dump_block_groups)
5448 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005449
Josef Bacik80eb2342008-10-29 14:49:05 -04005450 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04005451again:
5452 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04005453 spin_lock(&cache->lock);
Chris Masond3977122009-01-05 21:25:51 -05005454 printk(KERN_INFO "block group %llu has %llu bytes, %llu used "
5455 "%llu pinned %llu reserved\n",
5456 (unsigned long long)cache->key.objectid,
5457 (unsigned long long)cache->key.offset,
5458 (unsigned long long)btrfs_block_group_used(&cache->item),
5459 (unsigned long long)cache->pinned,
5460 (unsigned long long)cache->reserved);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005461 btrfs_dump_free_space(cache, bytes);
5462 spin_unlock(&cache->lock);
5463 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04005464 if (++index < BTRFS_NR_RAID_TYPES)
5465 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04005466 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005467}
Zheng Yane8569812008-09-26 10:05:48 -04005468
Yan Zheng11833d62009-09-11 16:11:19 -04005469int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
5470 struct btrfs_root *root,
5471 u64 num_bytes, u64 min_alloc_size,
5472 u64 empty_size, u64 hint_byte,
5473 u64 search_end, struct btrfs_key *ins,
5474 u64 data)
Chris Masonfec577f2007-02-26 10:40:21 -05005475{
5476 int ret;
Chris Masonfbdc7622007-05-30 10:22:12 -04005477 u64 search_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005478
Josef Bacik6a632092009-02-20 11:00:09 -05005479 data = btrfs_get_alloc_profile(root, data);
Chris Mason98d20f62008-04-14 09:46:10 -04005480again:
Chris Mason0ef3e662008-05-24 14:04:53 -04005481 /*
5482 * the only place that sets empty_size is btrfs_realloc_node, which
5483 * is not called recursively on allocations
5484 */
Josef Bacik83d3c962009-12-07 21:45:59 +00005485 if (empty_size || root->ref_cows)
Chris Mason6324fbf2008-03-24 15:01:59 -04005486 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04005487 num_bytes + 2 * 1024 * 1024, data,
5488 CHUNK_ALLOC_NO_FORCE);
Chris Mason0b86a832008-03-24 15:01:56 -04005489
Chris Masondb945352007-10-15 16:15:53 -04005490 WARN_ON(num_bytes < root->sectorsize);
5491 ret = find_free_extent(trans, root, num_bytes, empty_size,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005492 search_start, search_end, hint_byte,
5493 ins, data);
Chris Mason3b951512008-04-17 11:29:12 -04005494
Chris Mason98d20f62008-04-14 09:46:10 -04005495 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
5496 num_bytes = num_bytes >> 1;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005497 num_bytes = num_bytes & ~(root->sectorsize - 1);
Chris Mason98d20f62008-04-14 09:46:10 -04005498 num_bytes = max(num_bytes, min_alloc_size);
Chris Mason0ef3e662008-05-24 14:04:53 -04005499 do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04005500 num_bytes, data, CHUNK_ALLOC_FORCE);
Chris Mason98d20f62008-04-14 09:46:10 -04005501 goto again;
5502 }
Chris Mason91435652011-02-16 13:10:41 -05005503 if (ret == -ENOSPC && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04005504 struct btrfs_space_info *sinfo;
5505
5506 sinfo = __find_space_info(root->fs_info, data);
Chris Masond3977122009-01-05 21:25:51 -05005507 printk(KERN_ERR "btrfs allocation failed flags %llu, "
5508 "wanted %llu\n", (unsigned long long)data,
5509 (unsigned long long)num_bytes);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005510 dump_space_info(sinfo, num_bytes, 1);
Chris Mason925baed2008-06-25 16:01:30 -04005511 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04005512
liubo1abe9b82011-03-24 11:18:59 +00005513 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
5514
Josef Bacik0f9dd462008-09-23 13:14:11 -04005515 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005516}
5517
Chris Mason65b51a02008-08-01 15:11:20 -04005518int btrfs_free_reserved_extent(struct btrfs_root *root, u64 start, u64 len)
5519{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005520 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05005521 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005522
Josef Bacik0f9dd462008-09-23 13:14:11 -04005523 cache = btrfs_lookup_block_group(root->fs_info, start);
5524 if (!cache) {
Chris Masond3977122009-01-05 21:25:51 -05005525 printk(KERN_ERR "Unable to find block group for %llu\n",
5526 (unsigned long long)start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005527 return -ENOSPC;
5528 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05005529
Li Dongyang5378e602011-03-24 10:24:27 +00005530 if (btrfs_test_opt(root, DISCARD))
5531 ret = btrfs_discard_extent(root, start, len, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05005532
Josef Bacik0f9dd462008-09-23 13:14:11 -04005533 btrfs_add_free_space(cache, start, len);
Li Dongyangb4d00d52011-03-24 10:24:25 +00005534 btrfs_update_reserved_bytes(cache, len, 0, 1);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005535 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04005536
liubo1abe9b82011-03-24 11:18:59 +00005537 trace_btrfs_reserved_extent_free(root, start, len);
5538
Chris Masone6dcd2d2008-07-17 12:53:50 -04005539 return ret;
5540}
5541
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005542static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5543 struct btrfs_root *root,
5544 u64 parent, u64 root_objectid,
5545 u64 flags, u64 owner, u64 offset,
5546 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04005547{
5548 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005549 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005550 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005551 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005552 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005553 struct extent_buffer *leaf;
5554 int type;
5555 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04005556
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005557 if (parent > 0)
5558 type = BTRFS_SHARED_DATA_REF_KEY;
5559 else
5560 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04005561
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005562 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05005563
5564 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00005565 if (!path)
5566 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05005567
Chris Masonb9473432009-03-13 11:00:37 -04005568 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005569 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
5570 ins, size);
Chris Masonccd467d2007-06-28 15:57:36 -04005571 BUG_ON(ret);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005572
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005573 leaf = path->nodes[0];
5574 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05005575 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005576 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
5577 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
5578 btrfs_set_extent_flags(leaf, extent_item,
5579 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05005580
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005581 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
5582 btrfs_set_extent_inline_ref_type(leaf, iref, type);
5583 if (parent > 0) {
5584 struct btrfs_shared_data_ref *ref;
5585 ref = (struct btrfs_shared_data_ref *)(iref + 1);
5586 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
5587 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
5588 } else {
5589 struct btrfs_extent_data_ref *ref;
5590 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
5591 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
5592 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
5593 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
5594 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
5595 }
Chris Mason47e4bb92008-02-01 14:51:59 -05005596
5597 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05005598 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04005599
Yan, Zhengf0486c62010-05-16 10:46:25 -04005600 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Chris Masonf5947062008-02-04 10:10:13 -05005601 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05005602 printk(KERN_ERR "btrfs update block group failed for %llu "
5603 "%llu\n", (unsigned long long)ins->objectid,
5604 (unsigned long long)ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05005605 BUG();
5606 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005607 return ret;
5608}
5609
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005610static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
5611 struct btrfs_root *root,
5612 u64 parent, u64 root_objectid,
5613 u64 flags, struct btrfs_disk_key *key,
5614 int level, struct btrfs_key *ins)
5615{
5616 int ret;
5617 struct btrfs_fs_info *fs_info = root->fs_info;
5618 struct btrfs_extent_item *extent_item;
5619 struct btrfs_tree_block_info *block_info;
5620 struct btrfs_extent_inline_ref *iref;
5621 struct btrfs_path *path;
5622 struct extent_buffer *leaf;
5623 u32 size = sizeof(*extent_item) + sizeof(*block_info) + sizeof(*iref);
5624
5625 path = btrfs_alloc_path();
5626 BUG_ON(!path);
5627
5628 path->leave_spinning = 1;
5629 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
5630 ins, size);
5631 BUG_ON(ret);
5632
5633 leaf = path->nodes[0];
5634 extent_item = btrfs_item_ptr(leaf, path->slots[0],
5635 struct btrfs_extent_item);
5636 btrfs_set_extent_refs(leaf, extent_item, 1);
5637 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
5638 btrfs_set_extent_flags(leaf, extent_item,
5639 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
5640 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
5641
5642 btrfs_set_tree_block_key(leaf, block_info, key);
5643 btrfs_set_tree_block_level(leaf, block_info, level);
5644
5645 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
5646 if (parent > 0) {
5647 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
5648 btrfs_set_extent_inline_ref_type(leaf, iref,
5649 BTRFS_SHARED_BLOCK_REF_KEY);
5650 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
5651 } else {
5652 btrfs_set_extent_inline_ref_type(leaf, iref,
5653 BTRFS_TREE_BLOCK_REF_KEY);
5654 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
5655 }
5656
5657 btrfs_mark_buffer_dirty(leaf);
5658 btrfs_free_path(path);
5659
Yan, Zhengf0486c62010-05-16 10:46:25 -04005660 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005661 if (ret) {
5662 printk(KERN_ERR "btrfs update block group failed for %llu "
5663 "%llu\n", (unsigned long long)ins->objectid,
5664 (unsigned long long)ins->offset);
5665 BUG();
5666 }
5667 return ret;
5668}
5669
5670int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5671 struct btrfs_root *root,
5672 u64 root_objectid, u64 owner,
5673 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04005674{
5675 int ret;
Chris Mason1c2308f2008-09-23 13:14:13 -04005676
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005677 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04005678
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005679 ret = btrfs_add_delayed_data_ref(trans, ins->objectid, ins->offset,
5680 0, root_objectid, owner, offset,
5681 BTRFS_ADD_DELAYED_EXTENT, NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005682 return ret;
5683}
Chris Masone02119d2008-09-05 16:13:11 -04005684
5685/*
5686 * this is used by the tree logging recovery code. It records that
5687 * an extent has been allocated and makes sure to clear the free
5688 * space cache bits as well
5689 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005690int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
5691 struct btrfs_root *root,
5692 u64 root_objectid, u64 owner, u64 offset,
5693 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04005694{
5695 int ret;
5696 struct btrfs_block_group_cache *block_group;
Yan Zheng11833d62009-09-11 16:11:19 -04005697 struct btrfs_caching_control *caching_ctl;
5698 u64 start = ins->objectid;
5699 u64 num_bytes = ins->offset;
Chris Masone02119d2008-09-05 16:13:11 -04005700
Chris Masone02119d2008-09-05 16:13:11 -04005701 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacikb8399de2010-12-08 09:15:11 -05005702 cache_block_group(block_group, trans, NULL, 0);
Yan Zheng11833d62009-09-11 16:11:19 -04005703 caching_ctl = get_caching_control(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04005704
Yan Zheng11833d62009-09-11 16:11:19 -04005705 if (!caching_ctl) {
5706 BUG_ON(!block_group_cache_done(block_group));
5707 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5708 BUG_ON(ret);
5709 } else {
5710 mutex_lock(&caching_ctl->mutex);
5711
5712 if (start >= caching_ctl->progress) {
5713 ret = add_excluded_extent(root, start, num_bytes);
5714 BUG_ON(ret);
5715 } else if (start + num_bytes <= caching_ctl->progress) {
5716 ret = btrfs_remove_free_space(block_group,
5717 start, num_bytes);
5718 BUG_ON(ret);
5719 } else {
5720 num_bytes = caching_ctl->progress - start;
5721 ret = btrfs_remove_free_space(block_group,
5722 start, num_bytes);
5723 BUG_ON(ret);
5724
5725 start = caching_ctl->progress;
5726 num_bytes = ins->objectid + ins->offset -
5727 caching_ctl->progress;
5728 ret = add_excluded_extent(root, start, num_bytes);
5729 BUG_ON(ret);
5730 }
5731
5732 mutex_unlock(&caching_ctl->mutex);
5733 put_caching_control(caching_ctl);
5734 }
5735
Li Dongyangb4d00d52011-03-24 10:24:25 +00005736 ret = btrfs_update_reserved_bytes(block_group, ins->offset, 1, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005737 BUG_ON(ret);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005738 btrfs_put_block_group(block_group);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005739 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
5740 0, owner, offset, ins, 1);
Chris Masone02119d2008-09-05 16:13:11 -04005741 return ret;
5742}
5743
Chris Mason65b51a02008-08-01 15:11:20 -04005744struct extent_buffer *btrfs_init_new_buffer(struct btrfs_trans_handle *trans,
5745 struct btrfs_root *root,
Chris Mason4008c042009-02-12 14:09:45 -05005746 u64 bytenr, u32 blocksize,
5747 int level)
Chris Mason65b51a02008-08-01 15:11:20 -04005748{
5749 struct extent_buffer *buf;
5750
5751 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
5752 if (!buf)
5753 return ERR_PTR(-ENOMEM);
5754 btrfs_set_header_generation(buf, trans->transid);
Chris Mason4008c042009-02-12 14:09:45 -05005755 btrfs_set_buffer_lockdep_class(buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04005756 btrfs_tree_lock(buf);
5757 clean_tree_block(trans, root, buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005758
5759 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04005760 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005761
Chris Masond0c803c2008-09-11 16:17:57 -04005762 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00005763 /*
5764 * we allow two log transactions at a time, use different
5765 * EXENT bit to differentiate dirty pages.
5766 */
5767 if (root->log_transid % 2 == 0)
5768 set_extent_dirty(&root->dirty_log_pages, buf->start,
5769 buf->start + buf->len - 1, GFP_NOFS);
5770 else
5771 set_extent_new(&root->dirty_log_pages, buf->start,
5772 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04005773 } else {
5774 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
5775 buf->start + buf->len - 1, GFP_NOFS);
5776 }
Chris Mason65b51a02008-08-01 15:11:20 -04005777 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005778 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04005779 return buf;
5780}
5781
Yan, Zhengf0486c62010-05-16 10:46:25 -04005782static struct btrfs_block_rsv *
5783use_block_rsv(struct btrfs_trans_handle *trans,
5784 struct btrfs_root *root, u32 blocksize)
5785{
5786 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00005787 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005788 int ret;
5789
5790 block_rsv = get_block_rsv(trans, root);
5791
5792 if (block_rsv->size == 0) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005793 ret = reserve_metadata_bytes(trans, root, block_rsv,
5794 blocksize, 0);
Josef Bacik68a82272011-01-24 21:43:20 +00005795 /*
5796 * If we couldn't reserve metadata bytes try and use some from
5797 * the global reserve.
5798 */
5799 if (ret && block_rsv != global_rsv) {
5800 ret = block_rsv_use_bytes(global_rsv, blocksize);
5801 if (!ret)
5802 return global_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005803 return ERR_PTR(ret);
Josef Bacik68a82272011-01-24 21:43:20 +00005804 } else if (ret) {
5805 return ERR_PTR(ret);
5806 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005807 return block_rsv;
5808 }
5809
5810 ret = block_rsv_use_bytes(block_rsv, blocksize);
5811 if (!ret)
5812 return block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00005813 if (ret) {
5814 WARN_ON(1);
5815 ret = reserve_metadata_bytes(trans, root, block_rsv, blocksize,
5816 0);
5817 if (!ret) {
5818 spin_lock(&block_rsv->lock);
5819 block_rsv->size += blocksize;
5820 spin_unlock(&block_rsv->lock);
5821 return block_rsv;
5822 } else if (ret && block_rsv != global_rsv) {
5823 ret = block_rsv_use_bytes(global_rsv, blocksize);
5824 if (!ret)
5825 return global_rsv;
5826 }
5827 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005828
Yan, Zhengf0486c62010-05-16 10:46:25 -04005829 return ERR_PTR(-ENOSPC);
5830}
5831
5832static void unuse_block_rsv(struct btrfs_block_rsv *block_rsv, u32 blocksize)
5833{
5834 block_rsv_add_bytes(block_rsv, blocksize, 0);
5835 block_rsv_release_bytes(block_rsv, NULL, 0);
5836}
5837
Chris Masonfec577f2007-02-26 10:40:21 -05005838/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04005839 * finds a free extent and does all the dirty work required for allocation
5840 * returns the key for the extent through ins, and a tree buffer for
5841 * the first block of the extent through buf.
5842 *
Chris Masonfec577f2007-02-26 10:40:21 -05005843 * returns the tree buffer or NULL.
5844 */
Chris Mason5f39d392007-10-15 16:14:19 -04005845struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005846 struct btrfs_root *root, u32 blocksize,
5847 u64 parent, u64 root_objectid,
5848 struct btrfs_disk_key *key, int level,
5849 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05005850{
Chris Masone2fa7222007-03-12 16:22:34 -04005851 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005852 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04005853 struct extent_buffer *buf;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005854 u64 flags = 0;
5855 int ret;
Chris Masonfec577f2007-02-26 10:40:21 -05005856
Yan, Zhengf0486c62010-05-16 10:46:25 -04005857
5858 block_rsv = use_block_rsv(trans, root, blocksize);
5859 if (IS_ERR(block_rsv))
5860 return ERR_CAST(block_rsv);
5861
5862 ret = btrfs_reserve_extent(trans, root, blocksize, blocksize,
5863 empty_size, hint, (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05005864 if (ret) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005865 unuse_block_rsv(block_rsv, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04005866 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05005867 }
Chris Mason55c69072008-01-09 15:55:33 -05005868
Chris Mason4008c042009-02-12 14:09:45 -05005869 buf = btrfs_init_new_buffer(trans, root, ins.objectid,
5870 blocksize, level);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005871 BUG_ON(IS_ERR(buf));
5872
5873 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
5874 if (parent == 0)
5875 parent = ins.objectid;
5876 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
5877 } else
5878 BUG_ON(parent > 0);
5879
5880 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
5881 struct btrfs_delayed_extent_op *extent_op;
5882 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
5883 BUG_ON(!extent_op);
5884 if (key)
5885 memcpy(&extent_op->key, key, sizeof(extent_op->key));
5886 else
5887 memset(&extent_op->key, 0, sizeof(extent_op->key));
5888 extent_op->flags_to_set = flags;
5889 extent_op->update_key = 1;
5890 extent_op->update_flags = 1;
5891 extent_op->is_data = 0;
5892
5893 ret = btrfs_add_delayed_tree_ref(trans, ins.objectid,
5894 ins.offset, parent, root_objectid,
5895 level, BTRFS_ADD_DELAYED_EXTENT,
5896 extent_op);
5897 BUG_ON(ret);
5898 }
Chris Masonfec577f2007-02-26 10:40:21 -05005899 return buf;
5900}
Chris Masona28ec192007-03-06 20:08:01 -05005901
Yan Zheng2c47e6052009-06-27 21:07:35 -04005902struct walk_control {
5903 u64 refs[BTRFS_MAX_LEVEL];
5904 u64 flags[BTRFS_MAX_LEVEL];
5905 struct btrfs_key update_progress;
5906 int stage;
5907 int level;
5908 int shared_level;
5909 int update_ref;
5910 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005911 int reada_slot;
5912 int reada_count;
Yan Zheng2c47e6052009-06-27 21:07:35 -04005913};
5914
5915#define DROP_REFERENCE 1
5916#define UPDATE_BACKREF 2
5917
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005918static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
5919 struct btrfs_root *root,
5920 struct walk_control *wc,
5921 struct btrfs_path *path)
5922{
5923 u64 bytenr;
5924 u64 generation;
5925 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005926 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005927 u32 nritems;
5928 u32 blocksize;
5929 struct btrfs_key key;
5930 struct extent_buffer *eb;
5931 int ret;
5932 int slot;
5933 int nread = 0;
5934
5935 if (path->slots[wc->level] < wc->reada_slot) {
5936 wc->reada_count = wc->reada_count * 2 / 3;
5937 wc->reada_count = max(wc->reada_count, 2);
5938 } else {
5939 wc->reada_count = wc->reada_count * 3 / 2;
5940 wc->reada_count = min_t(int, wc->reada_count,
5941 BTRFS_NODEPTRS_PER_BLOCK(root));
5942 }
5943
5944 eb = path->nodes[wc->level];
5945 nritems = btrfs_header_nritems(eb);
5946 blocksize = btrfs_level_size(root, wc->level - 1);
5947
5948 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
5949 if (nread >= wc->reada_count)
5950 break;
5951
5952 cond_resched();
5953 bytenr = btrfs_node_blockptr(eb, slot);
5954 generation = btrfs_node_ptr_generation(eb, slot);
5955
5956 if (slot == path->slots[wc->level])
5957 goto reada;
5958
5959 if (wc->stage == UPDATE_BACKREF &&
5960 generation <= root->root_key.offset)
5961 continue;
5962
Yan, Zheng94fcca92009-10-09 09:25:16 -04005963 /* We don't lock the tree block, it's OK to be racy here */
5964 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
5965 &refs, &flags);
5966 BUG_ON(ret);
5967 BUG_ON(refs == 0);
5968
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005969 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005970 if (refs == 1)
5971 goto reada;
5972
Yan, Zheng94fcca92009-10-09 09:25:16 -04005973 if (wc->level == 1 &&
5974 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5975 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005976 if (!wc->update_ref ||
5977 generation <= root->root_key.offset)
5978 continue;
5979 btrfs_node_key_to_cpu(eb, &key, slot);
5980 ret = btrfs_comp_cpu_keys(&key,
5981 &wc->update_progress);
5982 if (ret < 0)
5983 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005984 } else {
5985 if (wc->level == 1 &&
5986 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5987 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005988 }
5989reada:
5990 ret = readahead_tree_block(root, bytenr, blocksize,
5991 generation);
5992 if (ret)
5993 break;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005994 nread++;
5995 }
5996 wc->reada_slot = slot;
5997}
5998
Chris Mason9aca1d52007-03-13 11:09:37 -04005999/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04006000 * hepler to process tree block while walking down the tree.
6001 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04006002 * when wc->stage == UPDATE_BACKREF, this function updates
6003 * back refs for pointers in the block.
6004 *
6005 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04006006 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04006007static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
6008 struct btrfs_root *root,
6009 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04006010 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04006011{
6012 int level = wc->level;
6013 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04006014 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
6015 int ret;
6016
6017 if (wc->stage == UPDATE_BACKREF &&
6018 btrfs_header_owner(eb) != root->root_key.objectid)
6019 return 1;
6020
6021 /*
6022 * when reference count of tree block is 1, it won't increase
6023 * again. once full backref flag is set, we never clear it.
6024 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04006025 if (lookup_info &&
6026 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
6027 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006028 BUG_ON(!path->locks[level]);
6029 ret = btrfs_lookup_extent_info(trans, root,
6030 eb->start, eb->len,
6031 &wc->refs[level],
6032 &wc->flags[level]);
6033 BUG_ON(ret);
6034 BUG_ON(wc->refs[level] == 0);
6035 }
6036
Yan Zheng2c47e6052009-06-27 21:07:35 -04006037 if (wc->stage == DROP_REFERENCE) {
6038 if (wc->refs[level] > 1)
6039 return 1;
6040
6041 if (path->locks[level] && !wc->keep_locks) {
6042 btrfs_tree_unlock(eb);
6043 path->locks[level] = 0;
6044 }
6045 return 0;
6046 }
6047
6048 /* wc->stage == UPDATE_BACKREF */
6049 if (!(wc->flags[level] & flag)) {
6050 BUG_ON(!path->locks[level]);
6051 ret = btrfs_inc_ref(trans, root, eb, 1);
6052 BUG_ON(ret);
6053 ret = btrfs_dec_ref(trans, root, eb, 0);
6054 BUG_ON(ret);
6055 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
6056 eb->len, flag, 0);
6057 BUG_ON(ret);
6058 wc->flags[level] |= flag;
6059 }
6060
6061 /*
6062 * the block is shared by multiple trees, so it's not good to
6063 * keep the tree lock
6064 */
6065 if (path->locks[level] && level > 0) {
6066 btrfs_tree_unlock(eb);
6067 path->locks[level] = 0;
6068 }
6069 return 0;
6070}
6071
6072/*
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006073 * hepler to process tree block pointer.
6074 *
6075 * when wc->stage == DROP_REFERENCE, this function checks
6076 * reference count of the block pointed to. if the block
6077 * is shared and we need update back refs for the subtree
6078 * rooted at the block, this function changes wc->stage to
6079 * UPDATE_BACKREF. if the block is shared and there is no
6080 * need to update back, this function drops the reference
6081 * to the block.
6082 *
6083 * NOTE: return value 1 means we should stop walking down.
6084 */
6085static noinline int do_walk_down(struct btrfs_trans_handle *trans,
6086 struct btrfs_root *root,
6087 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04006088 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006089{
6090 u64 bytenr;
6091 u64 generation;
6092 u64 parent;
6093 u32 blocksize;
6094 struct btrfs_key key;
6095 struct extent_buffer *next;
6096 int level = wc->level;
6097 int reada = 0;
6098 int ret = 0;
6099
6100 generation = btrfs_node_ptr_generation(path->nodes[level],
6101 path->slots[level]);
6102 /*
6103 * if the lower level block was created before the snapshot
6104 * was created, we know there is no need to update back refs
6105 * for the subtree
6106 */
6107 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04006108 generation <= root->root_key.offset) {
6109 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006110 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006111 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006112
6113 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
6114 blocksize = btrfs_level_size(root, level - 1);
6115
6116 next = btrfs_find_tree_block(root, bytenr, blocksize);
6117 if (!next) {
6118 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
Miao Xie90d2c51d2010-03-25 12:37:12 +00006119 if (!next)
6120 return -ENOMEM;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006121 reada = 1;
6122 }
6123 btrfs_tree_lock(next);
6124 btrfs_set_lock_blocking(next);
6125
Yan, Zheng94fcca92009-10-09 09:25:16 -04006126 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
6127 &wc->refs[level - 1],
6128 &wc->flags[level - 1]);
6129 BUG_ON(ret);
6130 BUG_ON(wc->refs[level - 1] == 0);
6131 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006132
Yan, Zheng94fcca92009-10-09 09:25:16 -04006133 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006134 if (wc->refs[level - 1] > 1) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04006135 if (level == 1 &&
6136 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
6137 goto skip;
6138
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006139 if (!wc->update_ref ||
6140 generation <= root->root_key.offset)
6141 goto skip;
6142
6143 btrfs_node_key_to_cpu(path->nodes[level], &key,
6144 path->slots[level]);
6145 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
6146 if (ret < 0)
6147 goto skip;
6148
6149 wc->stage = UPDATE_BACKREF;
6150 wc->shared_level = level - 1;
6151 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04006152 } else {
6153 if (level == 1 &&
6154 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
6155 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006156 }
6157
6158 if (!btrfs_buffer_uptodate(next, generation)) {
6159 btrfs_tree_unlock(next);
6160 free_extent_buffer(next);
6161 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006162 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006163 }
6164
6165 if (!next) {
6166 if (reada && level == 1)
6167 reada_walk_down(trans, root, wc, path);
6168 next = read_tree_block(root, bytenr, blocksize, generation);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00006169 if (!next)
6170 return -EIO;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006171 btrfs_tree_lock(next);
6172 btrfs_set_lock_blocking(next);
6173 }
6174
6175 level--;
6176 BUG_ON(level != btrfs_header_level(next));
6177 path->nodes[level] = next;
6178 path->slots[level] = 0;
6179 path->locks[level] = 1;
6180 wc->level = level;
6181 if (wc->level == 1)
6182 wc->reada_slot = 0;
6183 return 0;
6184skip:
6185 wc->refs[level - 1] = 0;
6186 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006187 if (wc->stage == DROP_REFERENCE) {
6188 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
6189 parent = path->nodes[level]->start;
6190 } else {
6191 BUG_ON(root->root_key.objectid !=
6192 btrfs_header_owner(path->nodes[level]));
6193 parent = 0;
6194 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006195
Yan, Zheng94fcca92009-10-09 09:25:16 -04006196 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
6197 root->root_key.objectid, level - 1, 0);
6198 BUG_ON(ret);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006199 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006200 btrfs_tree_unlock(next);
6201 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04006202 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006203 return 1;
6204}
6205
6206/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04006207 * hepler to process tree block while walking up the tree.
6208 *
6209 * when wc->stage == DROP_REFERENCE, this function drops
6210 * reference count on the block.
6211 *
6212 * when wc->stage == UPDATE_BACKREF, this function changes
6213 * wc->stage back to DROP_REFERENCE if we changed wc->stage
6214 * to UPDATE_BACKREF previously while processing the block.
6215 *
6216 * NOTE: return value 1 means we should stop walking up.
6217 */
6218static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
6219 struct btrfs_root *root,
6220 struct btrfs_path *path,
6221 struct walk_control *wc)
6222{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006223 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006224 int level = wc->level;
6225 struct extent_buffer *eb = path->nodes[level];
6226 u64 parent = 0;
6227
6228 if (wc->stage == UPDATE_BACKREF) {
6229 BUG_ON(wc->shared_level < level);
6230 if (level < wc->shared_level)
6231 goto out;
6232
Yan Zheng2c47e6052009-06-27 21:07:35 -04006233 ret = find_next_key(path, level + 1, &wc->update_progress);
6234 if (ret > 0)
6235 wc->update_ref = 0;
6236
6237 wc->stage = DROP_REFERENCE;
6238 wc->shared_level = -1;
6239 path->slots[level] = 0;
6240
6241 /*
6242 * check reference count again if the block isn't locked.
6243 * we should start walking down the tree again if reference
6244 * count is one.
6245 */
6246 if (!path->locks[level]) {
6247 BUG_ON(level == 0);
6248 btrfs_tree_lock(eb);
6249 btrfs_set_lock_blocking(eb);
6250 path->locks[level] = 1;
6251
6252 ret = btrfs_lookup_extent_info(trans, root,
6253 eb->start, eb->len,
6254 &wc->refs[level],
6255 &wc->flags[level]);
6256 BUG_ON(ret);
6257 BUG_ON(wc->refs[level] == 0);
6258 if (wc->refs[level] == 1) {
6259 btrfs_tree_unlock(eb);
6260 path->locks[level] = 0;
6261 return 1;
6262 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006263 }
6264 }
6265
6266 /* wc->stage == DROP_REFERENCE */
6267 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
6268
6269 if (wc->refs[level] == 1) {
6270 if (level == 0) {
6271 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6272 ret = btrfs_dec_ref(trans, root, eb, 1);
6273 else
6274 ret = btrfs_dec_ref(trans, root, eb, 0);
6275 BUG_ON(ret);
6276 }
6277 /* make block locked assertion in clean_tree_block happy */
6278 if (!path->locks[level] &&
6279 btrfs_header_generation(eb) == trans->transid) {
6280 btrfs_tree_lock(eb);
6281 btrfs_set_lock_blocking(eb);
6282 path->locks[level] = 1;
6283 }
6284 clean_tree_block(trans, root, eb);
6285 }
6286
6287 if (eb == root->node) {
6288 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6289 parent = eb->start;
6290 else
6291 BUG_ON(root->root_key.objectid !=
6292 btrfs_header_owner(eb));
6293 } else {
6294 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6295 parent = path->nodes[level + 1]->start;
6296 else
6297 BUG_ON(root->root_key.objectid !=
6298 btrfs_header_owner(path->nodes[level + 1]));
6299 }
6300
Yan, Zhengf0486c62010-05-16 10:46:25 -04006301 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006302out:
6303 wc->refs[level] = 0;
6304 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006305 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006306}
6307
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006308static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
6309 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04006310 struct btrfs_path *path,
6311 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04006312{
Yan Zheng2c47e6052009-06-27 21:07:35 -04006313 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006314 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006315 int ret;
6316
Yan Zheng2c47e6052009-06-27 21:07:35 -04006317 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04006318 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006319 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04006320 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006321
Yan Zheng2c47e6052009-06-27 21:07:35 -04006322 if (level == 0)
6323 break;
6324
Yan, Zheng7a7965f2010-02-01 02:41:17 +00006325 if (path->slots[level] >=
6326 btrfs_header_nritems(path->nodes[level]))
6327 break;
6328
Yan, Zheng94fcca92009-10-09 09:25:16 -04006329 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006330 if (ret > 0) {
6331 path->slots[level]++;
6332 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00006333 } else if (ret < 0)
6334 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006335 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006336 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04006337 return 0;
6338}
6339
Chris Masond3977122009-01-05 21:25:51 -05006340static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05006341 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04006342 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04006343 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05006344{
Yan Zheng2c47e6052009-06-27 21:07:35 -04006345 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05006346 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04006347
Yan Zheng2c47e6052009-06-27 21:07:35 -04006348 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
6349 while (level < max_level && path->nodes[level]) {
6350 wc->level = level;
6351 if (path->slots[level] + 1 <
6352 btrfs_header_nritems(path->nodes[level])) {
6353 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05006354 return 0;
6355 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006356 ret = walk_up_proc(trans, root, path, wc);
6357 if (ret > 0)
6358 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05006359
Yan Zheng2c47e6052009-06-27 21:07:35 -04006360 if (path->locks[level]) {
6361 btrfs_tree_unlock(path->nodes[level]);
6362 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006363 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006364 free_extent_buffer(path->nodes[level]);
6365 path->nodes[level] = NULL;
6366 level++;
Chris Mason20524f02007-03-10 06:35:47 -05006367 }
6368 }
6369 return 1;
6370}
6371
Chris Mason9aca1d52007-03-13 11:09:37 -04006372/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04006373 * drop a subvolume tree.
6374 *
6375 * this function traverses the tree freeing any blocks that only
6376 * referenced by the tree.
6377 *
6378 * when a shared tree block is found. this function decreases its
6379 * reference count by one. if update_ref is true, this function
6380 * also make sure backrefs for the shared block and all lower level
6381 * blocks are properly updated.
Chris Mason9aca1d52007-03-13 11:09:37 -04006382 */
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006383int btrfs_drop_snapshot(struct btrfs_root *root,
6384 struct btrfs_block_rsv *block_rsv, int update_ref)
Chris Mason20524f02007-03-10 06:35:47 -05006385{
Chris Mason5caf2a02007-04-02 11:20:42 -04006386 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006387 struct btrfs_trans_handle *trans;
6388 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04006389 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006390 struct walk_control *wc;
6391 struct btrfs_key key;
6392 int err = 0;
6393 int ret;
6394 int level;
Chris Mason20524f02007-03-10 06:35:47 -05006395
Chris Mason5caf2a02007-04-02 11:20:42 -04006396 path = btrfs_alloc_path();
6397 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05006398
Yan Zheng2c47e6052009-06-27 21:07:35 -04006399 wc = kzalloc(sizeof(*wc), GFP_NOFS);
6400 BUG_ON(!wc);
6401
Yan, Zhenga22285a2010-05-16 10:48:46 -04006402 trans = btrfs_start_transaction(tree_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00006403 BUG_ON(IS_ERR(trans));
6404
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006405 if (block_rsv)
6406 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006407
Chris Mason9f3a7422007-08-07 15:52:19 -04006408 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006409 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006410 path->nodes[level] = btrfs_lock_root_node(root);
6411 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04006412 path->slots[level] = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006413 path->locks[level] = 1;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006414 memset(&wc->update_progress, 0,
6415 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04006416 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04006417 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006418 memcpy(&wc->update_progress, &key,
6419 sizeof(wc->update_progress));
6420
Chris Mason6702ed42007-08-07 16:15:09 -04006421 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006422 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04006423 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006424 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6425 path->lowest_level = 0;
6426 if (ret < 0) {
6427 err = ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04006428 goto out;
6429 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006430 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006431
Chris Mason7d9eb122008-07-08 14:19:17 -04006432 /*
6433 * unlock our path, this is safe because only this
6434 * function is allowed to delete this snapshot
6435 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006436 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04006437
Yan Zheng2c47e6052009-06-27 21:07:35 -04006438 level = btrfs_header_level(root->node);
6439 while (1) {
6440 btrfs_tree_lock(path->nodes[level]);
6441 btrfs_set_lock_blocking(path->nodes[level]);
6442
6443 ret = btrfs_lookup_extent_info(trans, root,
6444 path->nodes[level]->start,
6445 path->nodes[level]->len,
6446 &wc->refs[level],
6447 &wc->flags[level]);
6448 BUG_ON(ret);
6449 BUG_ON(wc->refs[level] == 0);
6450
6451 if (level == root_item->drop_level)
6452 break;
6453
6454 btrfs_tree_unlock(path->nodes[level]);
6455 WARN_ON(wc->refs[level] != 1);
6456 level--;
6457 }
6458 }
6459
6460 wc->level = level;
6461 wc->shared_level = -1;
6462 wc->stage = DROP_REFERENCE;
6463 wc->update_ref = update_ref;
6464 wc->keep_locks = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006465 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006466
6467 while (1) {
6468 ret = walk_down_tree(trans, root, path, wc);
6469 if (ret < 0) {
6470 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04006471 break;
6472 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006473
6474 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
6475 if (ret < 0) {
6476 err = ret;
6477 break;
6478 }
6479
6480 if (ret > 0) {
6481 BUG_ON(wc->stage != DROP_REFERENCE);
6482 break;
6483 }
6484
6485 if (wc->stage == DROP_REFERENCE) {
6486 level = wc->level;
6487 btrfs_node_key(path->nodes[level],
6488 &root_item->drop_progress,
6489 path->slots[level]);
6490 root_item->drop_level = level;
6491 }
6492
6493 BUG_ON(wc->level == 0);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006494 if (btrfs_should_end_transaction(trans, tree_root)) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006495 ret = btrfs_update_root(trans, tree_root,
6496 &root->root_key,
6497 root_item);
6498 BUG_ON(ret);
6499
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006500 btrfs_end_transaction_throttle(trans, tree_root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006501 trans = btrfs_start_transaction(tree_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00006502 BUG_ON(IS_ERR(trans));
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006503 if (block_rsv)
6504 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04006505 }
Chris Mason20524f02007-03-10 06:35:47 -05006506 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006507 btrfs_release_path(root, path);
6508 BUG_ON(err);
6509
6510 ret = btrfs_del_root(trans, tree_root, &root->root_key);
6511 BUG_ON(ret);
6512
Yan, Zheng76dda932009-09-21 16:00:26 -04006513 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
6514 ret = btrfs_find_last_root(tree_root, root->root_key.objectid,
6515 NULL, NULL);
6516 BUG_ON(ret < 0);
6517 if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05006518 /* if we fail to delete the orphan item this time
6519 * around, it'll get picked up the next time.
6520 *
6521 * The most common failure here is just -ENOENT.
6522 */
6523 btrfs_del_orphan_item(trans, tree_root,
6524 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04006525 }
6526 }
6527
6528 if (root->in_radix) {
6529 btrfs_free_fs_root(tree_root->fs_info, root);
6530 } else {
6531 free_extent_buffer(root->node);
6532 free_extent_buffer(root->commit_root);
6533 kfree(root);
6534 }
Chris Mason9f3a7422007-08-07 15:52:19 -04006535out:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006536 btrfs_end_transaction_throttle(trans, tree_root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006537 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04006538 btrfs_free_path(path);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006539 return err;
Chris Mason20524f02007-03-10 06:35:47 -05006540}
Chris Mason9078a3e2007-04-26 16:46:15 -04006541
Yan Zheng2c47e6052009-06-27 21:07:35 -04006542/*
6543 * drop subtree rooted at tree block 'node'.
6544 *
6545 * NOTE: this function will unlock and release tree block 'node'
6546 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04006547int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
6548 struct btrfs_root *root,
6549 struct extent_buffer *node,
6550 struct extent_buffer *parent)
6551{
6552 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006553 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006554 int level;
6555 int parent_level;
6556 int ret = 0;
6557 int wret;
6558
Yan Zheng2c47e6052009-06-27 21:07:35 -04006559 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
6560
Yan Zhengf82d02d2008-10-29 14:49:05 -04006561 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00006562 if (!path)
6563 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006564
Yan Zheng2c47e6052009-06-27 21:07:35 -04006565 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00006566 if (!wc) {
6567 btrfs_free_path(path);
6568 return -ENOMEM;
6569 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006570
Chris Masonb9447ef2009-03-09 11:45:38 -04006571 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006572 parent_level = btrfs_header_level(parent);
6573 extent_buffer_get(parent);
6574 path->nodes[parent_level] = parent;
6575 path->slots[parent_level] = btrfs_header_nritems(parent);
6576
Chris Masonb9447ef2009-03-09 11:45:38 -04006577 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006578 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006579 path->nodes[level] = node;
6580 path->slots[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006581 path->locks[level] = 1;
6582
6583 wc->refs[parent_level] = 1;
6584 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
6585 wc->level = level;
6586 wc->shared_level = -1;
6587 wc->stage = DROP_REFERENCE;
6588 wc->update_ref = 0;
6589 wc->keep_locks = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006590 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006591
6592 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006593 wret = walk_down_tree(trans, root, path, wc);
6594 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04006595 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006596 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006597 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04006598
Yan Zheng2c47e6052009-06-27 21:07:35 -04006599 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006600 if (wret < 0)
6601 ret = wret;
6602 if (wret != 0)
6603 break;
6604 }
6605
Yan Zheng2c47e6052009-06-27 21:07:35 -04006606 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006607 btrfs_free_path(path);
6608 return ret;
6609}
6610
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006611#if 0
Chris Mason8e7bf942008-04-28 09:02:36 -04006612static unsigned long calc_ra(unsigned long start, unsigned long last,
6613 unsigned long nr)
6614{
6615 return min(last, start + nr - 1);
6616}
6617
Chris Masond3977122009-01-05 21:25:51 -05006618static noinline int relocate_inode_pages(struct inode *inode, u64 start,
Chris Mason98ed5172008-01-03 10:01:48 -05006619 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05006620{
6621 u64 page_start;
6622 u64 page_end;
Zheng Yan1a40e232008-09-26 10:09:34 -04006623 unsigned long first_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05006624 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05006625 unsigned long i;
6626 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05006627 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05006628 struct file_ra_state *ra;
Chris Mason3eaa2882008-07-24 11:57:52 -04006629 struct btrfs_ordered_extent *ordered;
Zheng Yan1a40e232008-09-26 10:09:34 -04006630 unsigned int total_read = 0;
6631 unsigned int total_dirty = 0;
6632 int ret = 0;
Chris Mason4313b392008-01-03 09:08:48 -05006633
6634 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00006635 if (!ra)
6636 return -ENOMEM;
Chris Masonedbd8d42007-12-21 16:27:24 -05006637
6638 mutex_lock(&inode->i_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04006639 first_index = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05006640 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
6641
Zheng Yan1a40e232008-09-26 10:09:34 -04006642 /* make sure the dirty trick played by the caller work */
6643 ret = invalidate_inode_pages2_range(inode->i_mapping,
6644 first_index, last_index);
6645 if (ret)
6646 goto out_unlock;
Chris Mason8e7bf942008-04-28 09:02:36 -04006647
Chris Mason4313b392008-01-03 09:08:48 -05006648 file_ra_state_init(ra, inode->i_mapping);
Chris Masonedbd8d42007-12-21 16:27:24 -05006649
Zheng Yan1a40e232008-09-26 10:09:34 -04006650 for (i = first_index ; i <= last_index; i++) {
6651 if (total_read % ra->ra_pages == 0) {
Chris Mason8e7bf942008-04-28 09:02:36 -04006652 btrfs_force_ra(inode->i_mapping, ra, NULL, i,
Zheng Yan1a40e232008-09-26 10:09:34 -04006653 calc_ra(i, last_index, ra->ra_pages));
Chris Mason8e7bf942008-04-28 09:02:36 -04006654 }
6655 total_read++;
Chris Mason3eaa2882008-07-24 11:57:52 -04006656again:
6657 if (((u64)i << PAGE_CACHE_SHIFT) > i_size_read(inode))
Zheng Yan1a40e232008-09-26 10:09:34 -04006658 BUG_ON(1);
Chris Masonedbd8d42007-12-21 16:27:24 -05006659 page = grab_cache_page(inode->i_mapping, i);
Chris Masona061fc82008-05-07 11:43:44 -04006660 if (!page) {
Zheng Yan1a40e232008-09-26 10:09:34 -04006661 ret = -ENOMEM;
Chris Masonedbd8d42007-12-21 16:27:24 -05006662 goto out_unlock;
Chris Masona061fc82008-05-07 11:43:44 -04006663 }
Chris Masonedbd8d42007-12-21 16:27:24 -05006664 if (!PageUptodate(page)) {
6665 btrfs_readpage(NULL, page);
6666 lock_page(page);
6667 if (!PageUptodate(page)) {
6668 unlock_page(page);
6669 page_cache_release(page);
Zheng Yan1a40e232008-09-26 10:09:34 -04006670 ret = -EIO;
Chris Masonedbd8d42007-12-21 16:27:24 -05006671 goto out_unlock;
6672 }
6673 }
Chris Masonec44a352008-04-28 15:29:52 -04006674 wait_on_page_writeback(page);
Chris Mason3eaa2882008-07-24 11:57:52 -04006675
Chris Masonedbd8d42007-12-21 16:27:24 -05006676 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
6677 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05006678 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05006679
Chris Mason3eaa2882008-07-24 11:57:52 -04006680 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6681 if (ordered) {
6682 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
6683 unlock_page(page);
6684 page_cache_release(page);
6685 btrfs_start_ordered_extent(inode, ordered, 1);
6686 btrfs_put_ordered_extent(ordered);
6687 goto again;
6688 }
6689 set_page_extent_mapped(page);
6690
Zheng Yan1a40e232008-09-26 10:09:34 -04006691 if (i == first_index)
6692 set_extent_bits(io_tree, page_start, page_end,
6693 EXTENT_BOUNDARY, GFP_NOFS);
Yan Zheng1f80e4d2008-12-19 10:59:04 -05006694 btrfs_set_extent_delalloc(inode, page_start, page_end);
Zheng Yan1a40e232008-09-26 10:09:34 -04006695
Chris Masona061fc82008-05-07 11:43:44 -04006696 set_page_dirty(page);
Zheng Yan1a40e232008-09-26 10:09:34 -04006697 total_dirty++;
Chris Masonedbd8d42007-12-21 16:27:24 -05006698
Chris Masond1310b22008-01-24 16:13:08 -05006699 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05006700 unlock_page(page);
6701 page_cache_release(page);
6702 }
6703
6704out_unlock:
Chris Masonec44a352008-04-28 15:29:52 -04006705 kfree(ra);
Chris Masonedbd8d42007-12-21 16:27:24 -05006706 mutex_unlock(&inode->i_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04006707 balance_dirty_pages_ratelimited_nr(inode->i_mapping, total_dirty);
Chris Masonbf4ef672008-05-08 13:26:18 -04006708 return ret;
6709}
6710
Chris Masond3977122009-01-05 21:25:51 -05006711static noinline int relocate_data_extent(struct inode *reloc_inode,
Zheng Yan1a40e232008-09-26 10:09:34 -04006712 struct btrfs_key *extent_key,
6713 u64 offset)
Chris Masonedbd8d42007-12-21 16:27:24 -05006714{
Zheng Yan1a40e232008-09-26 10:09:34 -04006715 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
6716 struct extent_map_tree *em_tree = &BTRFS_I(reloc_inode)->extent_tree;
6717 struct extent_map *em;
Yan Zheng66435582008-10-30 14:19:50 -04006718 u64 start = extent_key->objectid - offset;
6719 u64 end = start + extent_key->offset - 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04006720
6721 em = alloc_extent_map(GFP_NOFS);
Tsutomu Itohc26a9202011-02-14 00:45:29 +00006722 BUG_ON(!em);
Zheng Yan1a40e232008-09-26 10:09:34 -04006723
Yan Zheng66435582008-10-30 14:19:50 -04006724 em->start = start;
Zheng Yan1a40e232008-09-26 10:09:34 -04006725 em->len = extent_key->offset;
Chris Masonc8b97812008-10-29 14:49:59 -04006726 em->block_len = extent_key->offset;
Zheng Yan1a40e232008-09-26 10:09:34 -04006727 em->block_start = extent_key->objectid;
6728 em->bdev = root->fs_info->fs_devices->latest_bdev;
6729 set_bit(EXTENT_FLAG_PINNED, &em->flags);
6730
6731 /* setup extent map to cheat btrfs_readpage */
Yan Zheng66435582008-10-30 14:19:50 -04006732 lock_extent(&BTRFS_I(reloc_inode)->io_tree, start, end, GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04006733 while (1) {
6734 int ret;
Chris Mason890871b2009-09-02 16:24:52 -04006735 write_lock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04006736 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04006737 write_unlock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04006738 if (ret != -EEXIST) {
6739 free_extent_map(em);
6740 break;
6741 }
Yan Zheng66435582008-10-30 14:19:50 -04006742 btrfs_drop_extent_cache(reloc_inode, start, end, 0);
Zheng Yan1a40e232008-09-26 10:09:34 -04006743 }
Yan Zheng66435582008-10-30 14:19:50 -04006744 unlock_extent(&BTRFS_I(reloc_inode)->io_tree, start, end, GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04006745
Yan Zheng66435582008-10-30 14:19:50 -04006746 return relocate_inode_pages(reloc_inode, start, extent_key->offset);
Zheng Yan1a40e232008-09-26 10:09:34 -04006747}
6748
6749struct btrfs_ref_path {
6750 u64 extent_start;
6751 u64 nodes[BTRFS_MAX_LEVEL];
6752 u64 root_objectid;
6753 u64 root_generation;
6754 u64 owner_objectid;
Zheng Yan1a40e232008-09-26 10:09:34 -04006755 u32 num_refs;
6756 int lowest_level;
6757 int current_level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006758 int shared_level;
6759
6760 struct btrfs_key node_keys[BTRFS_MAX_LEVEL];
6761 u64 new_nodes[BTRFS_MAX_LEVEL];
Zheng Yan1a40e232008-09-26 10:09:34 -04006762};
6763
6764struct disk_extent {
Chris Masonc8b97812008-10-29 14:49:59 -04006765 u64 ram_bytes;
Zheng Yan1a40e232008-09-26 10:09:34 -04006766 u64 disk_bytenr;
6767 u64 disk_num_bytes;
6768 u64 offset;
6769 u64 num_bytes;
Chris Masonc8b97812008-10-29 14:49:59 -04006770 u8 compression;
6771 u8 encryption;
6772 u16 other_encoding;
Zheng Yan1a40e232008-09-26 10:09:34 -04006773};
6774
6775static int is_cowonly_root(u64 root_objectid)
6776{
6777 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID ||
6778 root_objectid == BTRFS_EXTENT_TREE_OBJECTID ||
6779 root_objectid == BTRFS_CHUNK_TREE_OBJECTID ||
6780 root_objectid == BTRFS_DEV_TREE_OBJECTID ||
Yan Zheng0403e472008-12-10 20:32:51 -05006781 root_objectid == BTRFS_TREE_LOG_OBJECTID ||
6782 root_objectid == BTRFS_CSUM_TREE_OBJECTID)
Zheng Yan1a40e232008-09-26 10:09:34 -04006783 return 1;
6784 return 0;
6785}
6786
Chris Masond3977122009-01-05 21:25:51 -05006787static noinline int __next_ref_path(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04006788 struct btrfs_root *extent_root,
6789 struct btrfs_ref_path *ref_path,
6790 int first_time)
6791{
6792 struct extent_buffer *leaf;
6793 struct btrfs_path *path;
Chris Mason4313b392008-01-03 09:08:48 -05006794 struct btrfs_extent_ref *ref;
Chris Masonedbd8d42007-12-21 16:27:24 -05006795 struct btrfs_key key;
6796 struct btrfs_key found_key;
Zheng Yan1a40e232008-09-26 10:09:34 -04006797 u64 bytenr;
Chris Masonedbd8d42007-12-21 16:27:24 -05006798 u32 nritems;
Zheng Yan1a40e232008-09-26 10:09:34 -04006799 int level;
6800 int ret = 1;
Chris Masonedbd8d42007-12-21 16:27:24 -05006801
Zheng Yan1a40e232008-09-26 10:09:34 -04006802 path = btrfs_alloc_path();
6803 if (!path)
6804 return -ENOMEM;
6805
Zheng Yan1a40e232008-09-26 10:09:34 -04006806 if (first_time) {
6807 ref_path->lowest_level = -1;
6808 ref_path->current_level = -1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006809 ref_path->shared_level = -1;
Zheng Yan1a40e232008-09-26 10:09:34 -04006810 goto walk_up;
Chris Masona061fc82008-05-07 11:43:44 -04006811 }
Zheng Yan1a40e232008-09-26 10:09:34 -04006812walk_down:
6813 level = ref_path->current_level - 1;
6814 while (level >= -1) {
6815 u64 parent;
6816 if (level < ref_path->lowest_level)
6817 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05006818
Chris Masond3977122009-01-05 21:25:51 -05006819 if (level >= 0)
Zheng Yan1a40e232008-09-26 10:09:34 -04006820 bytenr = ref_path->nodes[level];
Chris Masond3977122009-01-05 21:25:51 -05006821 else
Zheng Yan1a40e232008-09-26 10:09:34 -04006822 bytenr = ref_path->extent_start;
Zheng Yan1a40e232008-09-26 10:09:34 -04006823 BUG_ON(bytenr == 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006824
Zheng Yan1a40e232008-09-26 10:09:34 -04006825 parent = ref_path->nodes[level + 1];
6826 ref_path->nodes[level + 1] = 0;
6827 ref_path->current_level = level;
6828 BUG_ON(parent == 0);
6829
6830 key.objectid = bytenr;
6831 key.offset = parent + 1;
6832 key.type = BTRFS_EXTENT_REF_KEY;
6833
6834 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006835 if (ret < 0)
6836 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04006837 BUG_ON(ret == 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006838
Chris Masonedbd8d42007-12-21 16:27:24 -05006839 leaf = path->nodes[0];
6840 nritems = btrfs_header_nritems(leaf);
Zheng Yan1a40e232008-09-26 10:09:34 -04006841 if (path->slots[0] >= nritems) {
Chris Masona061fc82008-05-07 11:43:44 -04006842 ret = btrfs_next_leaf(extent_root, path);
Chris Masona061fc82008-05-07 11:43:44 -04006843 if (ret < 0)
6844 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04006845 if (ret > 0)
6846 goto next;
Chris Masonbf4ef672008-05-08 13:26:18 -04006847 leaf = path->nodes[0];
Chris Masona061fc82008-05-07 11:43:44 -04006848 }
Chris Masonedbd8d42007-12-21 16:27:24 -05006849
6850 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Zheng Yan1a40e232008-09-26 10:09:34 -04006851 if (found_key.objectid == bytenr &&
Yan Zhengf82d02d2008-10-29 14:49:05 -04006852 found_key.type == BTRFS_EXTENT_REF_KEY) {
6853 if (level < ref_path->shared_level)
6854 ref_path->shared_level = level;
Zheng Yan1a40e232008-09-26 10:09:34 -04006855 goto found;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006856 }
Zheng Yan1a40e232008-09-26 10:09:34 -04006857next:
6858 level--;
6859 btrfs_release_path(extent_root, path);
Yan Zhengd899e052008-10-30 14:25:28 -04006860 cond_resched();
Zheng Yan1a40e232008-09-26 10:09:34 -04006861 }
6862 /* reached lowest level */
6863 ret = 1;
6864 goto out;
6865walk_up:
6866 level = ref_path->current_level;
6867 while (level < BTRFS_MAX_LEVEL - 1) {
6868 u64 ref_objectid;
Chris Masond3977122009-01-05 21:25:51 -05006869
6870 if (level >= 0)
Zheng Yan1a40e232008-09-26 10:09:34 -04006871 bytenr = ref_path->nodes[level];
Chris Masond3977122009-01-05 21:25:51 -05006872 else
Zheng Yan1a40e232008-09-26 10:09:34 -04006873 bytenr = ref_path->extent_start;
Chris Masond3977122009-01-05 21:25:51 -05006874
Zheng Yan1a40e232008-09-26 10:09:34 -04006875 BUG_ON(bytenr == 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006876
Zheng Yan1a40e232008-09-26 10:09:34 -04006877 key.objectid = bytenr;
6878 key.offset = 0;
6879 key.type = BTRFS_EXTENT_REF_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05006880
Zheng Yan1a40e232008-09-26 10:09:34 -04006881 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 0);
6882 if (ret < 0)
Chris Masonedbd8d42007-12-21 16:27:24 -05006883 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04006884
6885 leaf = path->nodes[0];
6886 nritems = btrfs_header_nritems(leaf);
6887 if (path->slots[0] >= nritems) {
6888 ret = btrfs_next_leaf(extent_root, path);
6889 if (ret < 0)
6890 goto out;
6891 if (ret > 0) {
6892 /* the extent was freed by someone */
6893 if (ref_path->lowest_level == level)
6894 goto out;
6895 btrfs_release_path(extent_root, path);
6896 goto walk_down;
6897 }
6898 leaf = path->nodes[0];
6899 }
6900
6901 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6902 if (found_key.objectid != bytenr ||
6903 found_key.type != BTRFS_EXTENT_REF_KEY) {
6904 /* the extent was freed by someone */
6905 if (ref_path->lowest_level == level) {
6906 ret = 1;
6907 goto out;
6908 }
6909 btrfs_release_path(extent_root, path);
6910 goto walk_down;
6911 }
6912found:
6913 ref = btrfs_item_ptr(leaf, path->slots[0],
6914 struct btrfs_extent_ref);
6915 ref_objectid = btrfs_ref_objectid(leaf, ref);
6916 if (ref_objectid < BTRFS_FIRST_FREE_OBJECTID) {
6917 if (first_time) {
6918 level = (int)ref_objectid;
6919 BUG_ON(level >= BTRFS_MAX_LEVEL);
6920 ref_path->lowest_level = level;
6921 ref_path->current_level = level;
6922 ref_path->nodes[level] = bytenr;
6923 } else {
6924 WARN_ON(ref_objectid != level);
6925 }
6926 } else {
6927 WARN_ON(level != -1);
6928 }
6929 first_time = 0;
6930
6931 if (ref_path->lowest_level == level) {
6932 ref_path->owner_objectid = ref_objectid;
Zheng Yan1a40e232008-09-26 10:09:34 -04006933 ref_path->num_refs = btrfs_ref_num_refs(leaf, ref);
6934 }
6935
6936 /*
6937 * the block is tree root or the block isn't in reference
6938 * counted tree.
6939 */
6940 if (found_key.objectid == found_key.offset ||
6941 is_cowonly_root(btrfs_ref_root(leaf, ref))) {
6942 ref_path->root_objectid = btrfs_ref_root(leaf, ref);
6943 ref_path->root_generation =
6944 btrfs_ref_generation(leaf, ref);
6945 if (level < 0) {
6946 /* special reference from the tree log */
6947 ref_path->nodes[0] = found_key.offset;
6948 ref_path->current_level = 0;
6949 }
6950 ret = 0;
6951 goto out;
6952 }
6953
6954 level++;
6955 BUG_ON(ref_path->nodes[level] != 0);
6956 ref_path->nodes[level] = found_key.offset;
6957 ref_path->current_level = level;
6958
6959 /*
6960 * the reference was created in the running transaction,
6961 * no need to continue walking up.
6962 */
6963 if (btrfs_ref_generation(leaf, ref) == trans->transid) {
6964 ref_path->root_objectid = btrfs_ref_root(leaf, ref);
6965 ref_path->root_generation =
6966 btrfs_ref_generation(leaf, ref);
6967 ret = 0;
6968 goto out;
6969 }
6970
6971 btrfs_release_path(extent_root, path);
Yan Zhengd899e052008-10-30 14:25:28 -04006972 cond_resched();
Zheng Yan1a40e232008-09-26 10:09:34 -04006973 }
6974 /* reached max tree level, but no tree root found. */
6975 BUG();
6976out:
Zheng Yan1a40e232008-09-26 10:09:34 -04006977 btrfs_free_path(path);
6978 return ret;
6979}
6980
6981static int btrfs_first_ref_path(struct btrfs_trans_handle *trans,
6982 struct btrfs_root *extent_root,
6983 struct btrfs_ref_path *ref_path,
6984 u64 extent_start)
6985{
6986 memset(ref_path, 0, sizeof(*ref_path));
6987 ref_path->extent_start = extent_start;
6988
6989 return __next_ref_path(trans, extent_root, ref_path, 1);
6990}
6991
6992static int btrfs_next_ref_path(struct btrfs_trans_handle *trans,
6993 struct btrfs_root *extent_root,
6994 struct btrfs_ref_path *ref_path)
6995{
6996 return __next_ref_path(trans, extent_root, ref_path, 0);
6997}
6998
Chris Masond3977122009-01-05 21:25:51 -05006999static noinline int get_new_locations(struct inode *reloc_inode,
Zheng Yan1a40e232008-09-26 10:09:34 -04007000 struct btrfs_key *extent_key,
7001 u64 offset, int no_fragment,
7002 struct disk_extent **extents,
7003 int *nr_extents)
7004{
7005 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
7006 struct btrfs_path *path;
7007 struct btrfs_file_extent_item *fi;
7008 struct extent_buffer *leaf;
7009 struct disk_extent *exts = *extents;
7010 struct btrfs_key found_key;
7011 u64 cur_pos;
7012 u64 last_byte;
7013 u32 nritems;
7014 int nr = 0;
7015 int max = *nr_extents;
7016 int ret;
7017
7018 WARN_ON(!no_fragment && *extents);
7019 if (!exts) {
7020 max = 1;
7021 exts = kmalloc(sizeof(*exts) * max, GFP_NOFS);
7022 if (!exts)
7023 return -ENOMEM;
7024 }
7025
7026 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007027 if (!path) {
7028 if (exts != *extents)
7029 kfree(exts);
7030 return -ENOMEM;
7031 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007032
7033 cur_pos = extent_key->objectid - offset;
7034 last_byte = extent_key->objectid + extent_key->offset;
7035 ret = btrfs_lookup_file_extent(NULL, root, path, reloc_inode->i_ino,
7036 cur_pos, 0);
7037 if (ret < 0)
7038 goto out;
7039 if (ret > 0) {
7040 ret = -ENOENT;
7041 goto out;
7042 }
7043
7044 while (1) {
7045 leaf = path->nodes[0];
7046 nritems = btrfs_header_nritems(leaf);
7047 if (path->slots[0] >= nritems) {
7048 ret = btrfs_next_leaf(root, path);
7049 if (ret < 0)
7050 goto out;
7051 if (ret > 0)
7052 break;
7053 leaf = path->nodes[0];
7054 }
7055
7056 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
7057 if (found_key.offset != cur_pos ||
7058 found_key.type != BTRFS_EXTENT_DATA_KEY ||
7059 found_key.objectid != reloc_inode->i_ino)
7060 break;
7061
7062 fi = btrfs_item_ptr(leaf, path->slots[0],
7063 struct btrfs_file_extent_item);
7064 if (btrfs_file_extent_type(leaf, fi) !=
7065 BTRFS_FILE_EXTENT_REG ||
7066 btrfs_file_extent_disk_bytenr(leaf, fi) == 0)
7067 break;
7068
7069 if (nr == max) {
7070 struct disk_extent *old = exts;
7071 max *= 2;
7072 exts = kzalloc(sizeof(*exts) * max, GFP_NOFS);
Yoshinori Sanodac97e52011-02-15 12:01:42 +00007073 if (!exts) {
7074 ret = -ENOMEM;
7075 goto out;
7076 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007077 memcpy(exts, old, sizeof(*exts) * nr);
7078 if (old != *extents)
7079 kfree(old);
7080 }
7081
7082 exts[nr].disk_bytenr =
7083 btrfs_file_extent_disk_bytenr(leaf, fi);
7084 exts[nr].disk_num_bytes =
7085 btrfs_file_extent_disk_num_bytes(leaf, fi);
7086 exts[nr].offset = btrfs_file_extent_offset(leaf, fi);
7087 exts[nr].num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
Chris Masonc8b97812008-10-29 14:49:59 -04007088 exts[nr].ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
7089 exts[nr].compression = btrfs_file_extent_compression(leaf, fi);
7090 exts[nr].encryption = btrfs_file_extent_encryption(leaf, fi);
7091 exts[nr].other_encoding = btrfs_file_extent_other_encoding(leaf,
7092 fi);
Yan Zhengd899e052008-10-30 14:25:28 -04007093 BUG_ON(exts[nr].offset > 0);
7094 BUG_ON(exts[nr].compression || exts[nr].encryption);
7095 BUG_ON(exts[nr].num_bytes != exts[nr].disk_num_bytes);
Zheng Yan1a40e232008-09-26 10:09:34 -04007096
7097 cur_pos += exts[nr].num_bytes;
7098 nr++;
7099
7100 if (cur_pos + offset >= last_byte)
7101 break;
7102
7103 if (no_fragment) {
7104 ret = 1;
7105 goto out;
7106 }
7107 path->slots[0]++;
7108 }
7109
Yan Zheng1f80e4d2008-12-19 10:59:04 -05007110 BUG_ON(cur_pos + offset > last_byte);
Zheng Yan1a40e232008-09-26 10:09:34 -04007111 if (cur_pos + offset < last_byte) {
7112 ret = -ENOENT;
7113 goto out;
Chris Masonedbd8d42007-12-21 16:27:24 -05007114 }
7115 ret = 0;
7116out:
Zheng Yan1a40e232008-09-26 10:09:34 -04007117 btrfs_free_path(path);
7118 if (ret) {
7119 if (exts != *extents)
7120 kfree(exts);
7121 } else {
7122 *extents = exts;
7123 *nr_extents = nr;
7124 }
7125 return ret;
7126}
7127
Chris Masond3977122009-01-05 21:25:51 -05007128static noinline int replace_one_extent(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007129 struct btrfs_root *root,
7130 struct btrfs_path *path,
7131 struct btrfs_key *extent_key,
7132 struct btrfs_key *leaf_key,
7133 struct btrfs_ref_path *ref_path,
7134 struct disk_extent *new_extents,
7135 int nr_extents)
7136{
7137 struct extent_buffer *leaf;
7138 struct btrfs_file_extent_item *fi;
7139 struct inode *inode = NULL;
7140 struct btrfs_key key;
7141 u64 lock_start = 0;
7142 u64 lock_end = 0;
7143 u64 num_bytes;
7144 u64 ext_offset;
Yan Zheng86288a12009-01-21 10:49:16 -05007145 u64 search_end = (u64)-1;
Zheng Yan1a40e232008-09-26 10:09:34 -04007146 u32 nritems;
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007147 int nr_scaned = 0;
Zheng Yan1a40e232008-09-26 10:09:34 -04007148 int extent_locked = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04007149 int extent_type;
Zheng Yan1a40e232008-09-26 10:09:34 -04007150 int ret;
7151
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007152 memcpy(&key, leaf_key, sizeof(key));
Zheng Yan1a40e232008-09-26 10:09:34 -04007153 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS) {
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007154 if (key.objectid < ref_path->owner_objectid ||
7155 (key.objectid == ref_path->owner_objectid &&
7156 key.type < BTRFS_EXTENT_DATA_KEY)) {
7157 key.objectid = ref_path->owner_objectid;
7158 key.type = BTRFS_EXTENT_DATA_KEY;
7159 key.offset = 0;
7160 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007161 }
7162
7163 while (1) {
7164 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
7165 if (ret < 0)
7166 goto out;
7167
7168 leaf = path->nodes[0];
7169 nritems = btrfs_header_nritems(leaf);
7170next:
7171 if (extent_locked && ret > 0) {
7172 /*
7173 * the file extent item was modified by someone
7174 * before the extent got locked.
7175 */
Zheng Yan1a40e232008-09-26 10:09:34 -04007176 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7177 lock_end, GFP_NOFS);
7178 extent_locked = 0;
7179 }
7180
7181 if (path->slots[0] >= nritems) {
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007182 if (++nr_scaned > 2)
Zheng Yan1a40e232008-09-26 10:09:34 -04007183 break;
7184
7185 BUG_ON(extent_locked);
7186 ret = btrfs_next_leaf(root, path);
7187 if (ret < 0)
7188 goto out;
7189 if (ret > 0)
7190 break;
7191 leaf = path->nodes[0];
7192 nritems = btrfs_header_nritems(leaf);
7193 }
7194
7195 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
7196
7197 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS) {
7198 if ((key.objectid > ref_path->owner_objectid) ||
7199 (key.objectid == ref_path->owner_objectid &&
7200 key.type > BTRFS_EXTENT_DATA_KEY) ||
Yan Zheng86288a12009-01-21 10:49:16 -05007201 key.offset >= search_end)
Zheng Yan1a40e232008-09-26 10:09:34 -04007202 break;
7203 }
7204
7205 if (inode && key.objectid != inode->i_ino) {
7206 BUG_ON(extent_locked);
7207 btrfs_release_path(root, path);
7208 mutex_unlock(&inode->i_mutex);
7209 iput(inode);
7210 inode = NULL;
7211 continue;
7212 }
7213
7214 if (key.type != BTRFS_EXTENT_DATA_KEY) {
7215 path->slots[0]++;
7216 ret = 1;
7217 goto next;
7218 }
7219 fi = btrfs_item_ptr(leaf, path->slots[0],
7220 struct btrfs_file_extent_item);
Yan Zhengd899e052008-10-30 14:25:28 -04007221 extent_type = btrfs_file_extent_type(leaf, fi);
7222 if ((extent_type != BTRFS_FILE_EXTENT_REG &&
7223 extent_type != BTRFS_FILE_EXTENT_PREALLOC) ||
Zheng Yan1a40e232008-09-26 10:09:34 -04007224 (btrfs_file_extent_disk_bytenr(leaf, fi) !=
7225 extent_key->objectid)) {
7226 path->slots[0]++;
7227 ret = 1;
7228 goto next;
7229 }
7230
7231 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
7232 ext_offset = btrfs_file_extent_offset(leaf, fi);
7233
Yan Zheng86288a12009-01-21 10:49:16 -05007234 if (search_end == (u64)-1) {
7235 search_end = key.offset - ext_offset +
7236 btrfs_file_extent_ram_bytes(leaf, fi);
7237 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007238
7239 if (!extent_locked) {
7240 lock_start = key.offset;
7241 lock_end = lock_start + num_bytes - 1;
7242 } else {
Yan Zheng66435582008-10-30 14:19:50 -04007243 if (lock_start > key.offset ||
7244 lock_end + 1 < key.offset + num_bytes) {
7245 unlock_extent(&BTRFS_I(inode)->io_tree,
7246 lock_start, lock_end, GFP_NOFS);
7247 extent_locked = 0;
7248 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007249 }
7250
7251 if (!inode) {
7252 btrfs_release_path(root, path);
7253
7254 inode = btrfs_iget_locked(root->fs_info->sb,
7255 key.objectid, root);
7256 if (inode->i_state & I_NEW) {
7257 BTRFS_I(inode)->root = root;
7258 BTRFS_I(inode)->location.objectid =
7259 key.objectid;
7260 BTRFS_I(inode)->location.type =
7261 BTRFS_INODE_ITEM_KEY;
7262 BTRFS_I(inode)->location.offset = 0;
7263 btrfs_read_locked_inode(inode);
7264 unlock_new_inode(inode);
7265 }
7266 /*
7267 * some code call btrfs_commit_transaction while
7268 * holding the i_mutex, so we can't use mutex_lock
7269 * here.
7270 */
7271 if (is_bad_inode(inode) ||
7272 !mutex_trylock(&inode->i_mutex)) {
7273 iput(inode);
7274 inode = NULL;
7275 key.offset = (u64)-1;
7276 goto skip;
7277 }
7278 }
7279
7280 if (!extent_locked) {
7281 struct btrfs_ordered_extent *ordered;
7282
7283 btrfs_release_path(root, path);
7284
7285 lock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7286 lock_end, GFP_NOFS);
7287 ordered = btrfs_lookup_first_ordered_extent(inode,
7288 lock_end);
7289 if (ordered &&
7290 ordered->file_offset <= lock_end &&
7291 ordered->file_offset + ordered->len > lock_start) {
7292 unlock_extent(&BTRFS_I(inode)->io_tree,
7293 lock_start, lock_end, GFP_NOFS);
7294 btrfs_start_ordered_extent(inode, ordered, 1);
7295 btrfs_put_ordered_extent(ordered);
7296 key.offset += num_bytes;
7297 goto skip;
7298 }
7299 if (ordered)
7300 btrfs_put_ordered_extent(ordered);
7301
Zheng Yan1a40e232008-09-26 10:09:34 -04007302 extent_locked = 1;
7303 continue;
7304 }
7305
7306 if (nr_extents == 1) {
7307 /* update extent pointer in place */
Zheng Yan1a40e232008-09-26 10:09:34 -04007308 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7309 new_extents[0].disk_bytenr);
7310 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7311 new_extents[0].disk_num_bytes);
Zheng Yan1a40e232008-09-26 10:09:34 -04007312 btrfs_mark_buffer_dirty(leaf);
7313
7314 btrfs_drop_extent_cache(inode, key.offset,
7315 key.offset + num_bytes - 1, 0);
7316
7317 ret = btrfs_inc_extent_ref(trans, root,
7318 new_extents[0].disk_bytenr,
7319 new_extents[0].disk_num_bytes,
7320 leaf->start,
7321 root->root_key.objectid,
7322 trans->transid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007323 key.objectid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007324 BUG_ON(ret);
7325
7326 ret = btrfs_free_extent(trans, root,
7327 extent_key->objectid,
7328 extent_key->offset,
7329 leaf->start,
7330 btrfs_header_owner(leaf),
7331 btrfs_header_generation(leaf),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007332 key.objectid, 0);
Zheng Yan1a40e232008-09-26 10:09:34 -04007333 BUG_ON(ret);
7334
7335 btrfs_release_path(root, path);
7336 key.offset += num_bytes;
7337 } else {
Yan Zhengd899e052008-10-30 14:25:28 -04007338 BUG_ON(1);
7339#if 0
Zheng Yan1a40e232008-09-26 10:09:34 -04007340 u64 alloc_hint;
7341 u64 extent_len;
7342 int i;
7343 /*
7344 * drop old extent pointer at first, then insert the
7345 * new pointers one bye one
7346 */
7347 btrfs_release_path(root, path);
7348 ret = btrfs_drop_extents(trans, root, inode, key.offset,
7349 key.offset + num_bytes,
7350 key.offset, &alloc_hint);
7351 BUG_ON(ret);
7352
7353 for (i = 0; i < nr_extents; i++) {
7354 if (ext_offset >= new_extents[i].num_bytes) {
7355 ext_offset -= new_extents[i].num_bytes;
7356 continue;
7357 }
7358 extent_len = min(new_extents[i].num_bytes -
7359 ext_offset, num_bytes);
7360
7361 ret = btrfs_insert_empty_item(trans, root,
7362 path, &key,
7363 sizeof(*fi));
7364 BUG_ON(ret);
7365
7366 leaf = path->nodes[0];
7367 fi = btrfs_item_ptr(leaf, path->slots[0],
7368 struct btrfs_file_extent_item);
7369 btrfs_set_file_extent_generation(leaf, fi,
7370 trans->transid);
7371 btrfs_set_file_extent_type(leaf, fi,
7372 BTRFS_FILE_EXTENT_REG);
7373 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7374 new_extents[i].disk_bytenr);
7375 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7376 new_extents[i].disk_num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -04007377 btrfs_set_file_extent_ram_bytes(leaf, fi,
7378 new_extents[i].ram_bytes);
7379
7380 btrfs_set_file_extent_compression(leaf, fi,
7381 new_extents[i].compression);
7382 btrfs_set_file_extent_encryption(leaf, fi,
7383 new_extents[i].encryption);
7384 btrfs_set_file_extent_other_encoding(leaf, fi,
7385 new_extents[i].other_encoding);
7386
Zheng Yan1a40e232008-09-26 10:09:34 -04007387 btrfs_set_file_extent_num_bytes(leaf, fi,
7388 extent_len);
7389 ext_offset += new_extents[i].offset;
7390 btrfs_set_file_extent_offset(leaf, fi,
7391 ext_offset);
7392 btrfs_mark_buffer_dirty(leaf);
7393
7394 btrfs_drop_extent_cache(inode, key.offset,
7395 key.offset + extent_len - 1, 0);
7396
7397 ret = btrfs_inc_extent_ref(trans, root,
7398 new_extents[i].disk_bytenr,
7399 new_extents[i].disk_num_bytes,
7400 leaf->start,
7401 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007402 trans->transid, key.objectid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007403 BUG_ON(ret);
7404 btrfs_release_path(root, path);
7405
Yan Zhenga76a3cd2008-10-09 11:46:29 -04007406 inode_add_bytes(inode, extent_len);
Zheng Yan1a40e232008-09-26 10:09:34 -04007407
7408 ext_offset = 0;
7409 num_bytes -= extent_len;
7410 key.offset += extent_len;
7411
7412 if (num_bytes == 0)
7413 break;
7414 }
7415 BUG_ON(i >= nr_extents);
Yan Zhengd899e052008-10-30 14:25:28 -04007416#endif
Zheng Yan1a40e232008-09-26 10:09:34 -04007417 }
7418
7419 if (extent_locked) {
Zheng Yan1a40e232008-09-26 10:09:34 -04007420 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7421 lock_end, GFP_NOFS);
7422 extent_locked = 0;
7423 }
7424skip:
7425 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS &&
Yan Zheng86288a12009-01-21 10:49:16 -05007426 key.offset >= search_end)
Zheng Yan1a40e232008-09-26 10:09:34 -04007427 break;
7428
7429 cond_resched();
7430 }
7431 ret = 0;
7432out:
7433 btrfs_release_path(root, path);
7434 if (inode) {
7435 mutex_unlock(&inode->i_mutex);
7436 if (extent_locked) {
Zheng Yan1a40e232008-09-26 10:09:34 -04007437 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7438 lock_end, GFP_NOFS);
7439 }
7440 iput(inode);
7441 }
7442 return ret;
7443}
7444
Zheng Yan1a40e232008-09-26 10:09:34 -04007445int btrfs_reloc_tree_cache_ref(struct btrfs_trans_handle *trans,
7446 struct btrfs_root *root,
7447 struct extent_buffer *buf, u64 orig_start)
7448{
7449 int level;
7450 int ret;
7451
7452 BUG_ON(btrfs_header_generation(buf) != trans->transid);
7453 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
7454
7455 level = btrfs_header_level(buf);
7456 if (level == 0) {
7457 struct btrfs_leaf_ref *ref;
7458 struct btrfs_leaf_ref *orig_ref;
7459
7460 orig_ref = btrfs_lookup_leaf_ref(root, orig_start);
7461 if (!orig_ref)
7462 return -ENOENT;
7463
7464 ref = btrfs_alloc_leaf_ref(root, orig_ref->nritems);
7465 if (!ref) {
7466 btrfs_free_leaf_ref(root, orig_ref);
7467 return -ENOMEM;
7468 }
7469
7470 ref->nritems = orig_ref->nritems;
7471 memcpy(ref->extents, orig_ref->extents,
7472 sizeof(ref->extents[0]) * ref->nritems);
7473
7474 btrfs_free_leaf_ref(root, orig_ref);
7475
7476 ref->root_gen = trans->transid;
7477 ref->bytenr = buf->start;
7478 ref->owner = btrfs_header_owner(buf);
7479 ref->generation = btrfs_header_generation(buf);
Chris Masonbd56b302009-02-04 09:27:02 -05007480
Zheng Yan1a40e232008-09-26 10:09:34 -04007481 ret = btrfs_add_leaf_ref(root, ref, 0);
7482 WARN_ON(ret);
7483 btrfs_free_leaf_ref(root, ref);
7484 }
7485 return 0;
7486}
7487
Chris Masond3977122009-01-05 21:25:51 -05007488static noinline int invalidate_extent_cache(struct btrfs_root *root,
Zheng Yan1a40e232008-09-26 10:09:34 -04007489 struct extent_buffer *leaf,
7490 struct btrfs_block_group_cache *group,
7491 struct btrfs_root *target_root)
7492{
7493 struct btrfs_key key;
7494 struct inode *inode = NULL;
7495 struct btrfs_file_extent_item *fi;
Josef Bacik2ac55d42010-02-03 19:33:23 +00007496 struct extent_state *cached_state = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -04007497 u64 num_bytes;
7498 u64 skip_objectid = 0;
7499 u32 nritems;
7500 u32 i;
7501
7502 nritems = btrfs_header_nritems(leaf);
7503 for (i = 0; i < nritems; i++) {
7504 btrfs_item_key_to_cpu(leaf, &key, i);
7505 if (key.objectid == skip_objectid ||
7506 key.type != BTRFS_EXTENT_DATA_KEY)
7507 continue;
7508 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
7509 if (btrfs_file_extent_type(leaf, fi) ==
7510 BTRFS_FILE_EXTENT_INLINE)
7511 continue;
7512 if (btrfs_file_extent_disk_bytenr(leaf, fi) == 0)
7513 continue;
7514 if (!inode || inode->i_ino != key.objectid) {
7515 iput(inode);
7516 inode = btrfs_ilookup(target_root->fs_info->sb,
7517 key.objectid, target_root, 1);
7518 }
7519 if (!inode) {
7520 skip_objectid = key.objectid;
7521 continue;
7522 }
7523 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
7524
Josef Bacik2ac55d42010-02-03 19:33:23 +00007525 lock_extent_bits(&BTRFS_I(inode)->io_tree, key.offset,
7526 key.offset + num_bytes - 1, 0, &cached_state,
7527 GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04007528 btrfs_drop_extent_cache(inode, key.offset,
7529 key.offset + num_bytes - 1, 1);
Josef Bacik2ac55d42010-02-03 19:33:23 +00007530 unlock_extent_cached(&BTRFS_I(inode)->io_tree, key.offset,
7531 key.offset + num_bytes - 1, &cached_state,
7532 GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04007533 cond_resched();
7534 }
7535 iput(inode);
7536 return 0;
7537}
7538
Chris Masond3977122009-01-05 21:25:51 -05007539static noinline int replace_extents_in_leaf(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007540 struct btrfs_root *root,
7541 struct extent_buffer *leaf,
7542 struct btrfs_block_group_cache *group,
7543 struct inode *reloc_inode)
7544{
7545 struct btrfs_key key;
7546 struct btrfs_key extent_key;
7547 struct btrfs_file_extent_item *fi;
7548 struct btrfs_leaf_ref *ref;
7549 struct disk_extent *new_extent;
7550 u64 bytenr;
7551 u64 num_bytes;
7552 u32 nritems;
7553 u32 i;
7554 int ext_index;
7555 int nr_extent;
7556 int ret;
7557
7558 new_extent = kmalloc(sizeof(*new_extent), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007559 if (!new_extent)
7560 return -ENOMEM;
Zheng Yan1a40e232008-09-26 10:09:34 -04007561
7562 ref = btrfs_lookup_leaf_ref(root, leaf->start);
7563 BUG_ON(!ref);
7564
7565 ext_index = -1;
7566 nritems = btrfs_header_nritems(leaf);
7567 for (i = 0; i < nritems; i++) {
7568 btrfs_item_key_to_cpu(leaf, &key, i);
7569 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
7570 continue;
7571 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
7572 if (btrfs_file_extent_type(leaf, fi) ==
7573 BTRFS_FILE_EXTENT_INLINE)
7574 continue;
7575 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
7576 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
7577 if (bytenr == 0)
7578 continue;
7579
7580 ext_index++;
7581 if (bytenr >= group->key.objectid + group->key.offset ||
7582 bytenr + num_bytes <= group->key.objectid)
7583 continue;
7584
7585 extent_key.objectid = bytenr;
7586 extent_key.offset = num_bytes;
7587 extent_key.type = BTRFS_EXTENT_ITEM_KEY;
7588 nr_extent = 1;
7589 ret = get_new_locations(reloc_inode, &extent_key,
7590 group->key.objectid, 1,
7591 &new_extent, &nr_extent);
7592 if (ret > 0)
7593 continue;
7594 BUG_ON(ret < 0);
7595
7596 BUG_ON(ref->extents[ext_index].bytenr != bytenr);
7597 BUG_ON(ref->extents[ext_index].num_bytes != num_bytes);
7598 ref->extents[ext_index].bytenr = new_extent->disk_bytenr;
7599 ref->extents[ext_index].num_bytes = new_extent->disk_num_bytes;
7600
Zheng Yan1a40e232008-09-26 10:09:34 -04007601 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7602 new_extent->disk_bytenr);
7603 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7604 new_extent->disk_num_bytes);
Zheng Yan1a40e232008-09-26 10:09:34 -04007605 btrfs_mark_buffer_dirty(leaf);
7606
7607 ret = btrfs_inc_extent_ref(trans, root,
7608 new_extent->disk_bytenr,
7609 new_extent->disk_num_bytes,
7610 leaf->start,
7611 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007612 trans->transid, key.objectid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007613 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04007614
Zheng Yan1a40e232008-09-26 10:09:34 -04007615 ret = btrfs_free_extent(trans, root,
7616 bytenr, num_bytes, leaf->start,
7617 btrfs_header_owner(leaf),
7618 btrfs_header_generation(leaf),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007619 key.objectid, 0);
Zheng Yan1a40e232008-09-26 10:09:34 -04007620 BUG_ON(ret);
7621 cond_resched();
7622 }
7623 kfree(new_extent);
7624 BUG_ON(ext_index + 1 != ref->nritems);
7625 btrfs_free_leaf_ref(root, ref);
7626 return 0;
7627}
7628
Yan Zhengf82d02d2008-10-29 14:49:05 -04007629int btrfs_free_reloc_root(struct btrfs_trans_handle *trans,
7630 struct btrfs_root *root)
Zheng Yan1a40e232008-09-26 10:09:34 -04007631{
7632 struct btrfs_root *reloc_root;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007633 int ret;
Zheng Yan1a40e232008-09-26 10:09:34 -04007634
7635 if (root->reloc_root) {
7636 reloc_root = root->reloc_root;
7637 root->reloc_root = NULL;
7638 list_add(&reloc_root->dead_list,
7639 &root->fs_info->dead_reloc_roots);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007640
7641 btrfs_set_root_bytenr(&reloc_root->root_item,
7642 reloc_root->node->start);
7643 btrfs_set_root_level(&root->root_item,
7644 btrfs_header_level(reloc_root->node));
7645 memset(&reloc_root->root_item.drop_progress, 0,
7646 sizeof(struct btrfs_disk_key));
7647 reloc_root->root_item.drop_level = 0;
7648
7649 ret = btrfs_update_root(trans, root->fs_info->tree_root,
7650 &reloc_root->root_key,
7651 &reloc_root->root_item);
7652 BUG_ON(ret);
Zheng Yan1a40e232008-09-26 10:09:34 -04007653 }
7654 return 0;
7655}
7656
7657int btrfs_drop_dead_reloc_roots(struct btrfs_root *root)
7658{
7659 struct btrfs_trans_handle *trans;
7660 struct btrfs_root *reloc_root;
7661 struct btrfs_root *prev_root = NULL;
7662 struct list_head dead_roots;
7663 int ret;
7664 unsigned long nr;
7665
7666 INIT_LIST_HEAD(&dead_roots);
7667 list_splice_init(&root->fs_info->dead_reloc_roots, &dead_roots);
7668
7669 while (!list_empty(&dead_roots)) {
7670 reloc_root = list_entry(dead_roots.prev,
7671 struct btrfs_root, dead_list);
7672 list_del_init(&reloc_root->dead_list);
7673
7674 BUG_ON(reloc_root->commit_root != NULL);
7675 while (1) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04007676 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00007677 BUG_ON(IS_ERR(trans));
Zheng Yan1a40e232008-09-26 10:09:34 -04007678
7679 mutex_lock(&root->fs_info->drop_mutex);
7680 ret = btrfs_drop_snapshot(trans, reloc_root);
7681 if (ret != -EAGAIN)
7682 break;
7683 mutex_unlock(&root->fs_info->drop_mutex);
7684
7685 nr = trans->blocks_used;
7686 ret = btrfs_end_transaction(trans, root);
7687 BUG_ON(ret);
7688 btrfs_btree_balance_dirty(root, nr);
7689 }
7690
7691 free_extent_buffer(reloc_root->node);
7692
7693 ret = btrfs_del_root(trans, root->fs_info->tree_root,
7694 &reloc_root->root_key);
7695 BUG_ON(ret);
7696 mutex_unlock(&root->fs_info->drop_mutex);
7697
7698 nr = trans->blocks_used;
7699 ret = btrfs_end_transaction(trans, root);
7700 BUG_ON(ret);
7701 btrfs_btree_balance_dirty(root, nr);
7702
7703 kfree(prev_root);
7704 prev_root = reloc_root;
7705 }
7706 if (prev_root) {
7707 btrfs_remove_leaf_refs(prev_root, (u64)-1, 0);
7708 kfree(prev_root);
7709 }
7710 return 0;
7711}
7712
7713int btrfs_add_dead_reloc_root(struct btrfs_root *root)
7714{
7715 list_add(&root->dead_list, &root->fs_info->dead_reloc_roots);
7716 return 0;
7717}
7718
7719int btrfs_cleanup_reloc_trees(struct btrfs_root *root)
7720{
7721 struct btrfs_root *reloc_root;
7722 struct btrfs_trans_handle *trans;
7723 struct btrfs_key location;
7724 int found;
7725 int ret;
7726
7727 mutex_lock(&root->fs_info->tree_reloc_mutex);
7728 ret = btrfs_find_dead_roots(root, BTRFS_TREE_RELOC_OBJECTID, NULL);
7729 BUG_ON(ret);
7730 found = !list_empty(&root->fs_info->dead_reloc_roots);
7731 mutex_unlock(&root->fs_info->tree_reloc_mutex);
7732
7733 if (found) {
7734 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00007735 BUG_ON(IS_ERR(trans));
Zheng Yan1a40e232008-09-26 10:09:34 -04007736 ret = btrfs_commit_transaction(trans, root);
7737 BUG_ON(ret);
7738 }
7739
7740 location.objectid = BTRFS_DATA_RELOC_TREE_OBJECTID;
7741 location.offset = (u64)-1;
7742 location.type = BTRFS_ROOT_ITEM_KEY;
7743
7744 reloc_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
7745 BUG_ON(!reloc_root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05007746 ret = btrfs_orphan_cleanup(reloc_root);
7747 BUG_ON(ret);
Zheng Yan1a40e232008-09-26 10:09:34 -04007748 return 0;
7749}
7750
Chris Masond3977122009-01-05 21:25:51 -05007751static noinline int init_reloc_tree(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007752 struct btrfs_root *root)
7753{
7754 struct btrfs_root *reloc_root;
7755 struct extent_buffer *eb;
7756 struct btrfs_root_item *root_item;
7757 struct btrfs_key root_key;
7758 int ret;
7759
7760 BUG_ON(!root->ref_cows);
7761 if (root->reloc_root)
7762 return 0;
7763
7764 root_item = kmalloc(sizeof(*root_item), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007765 if (!root_item)
7766 return -ENOMEM;
Zheng Yan1a40e232008-09-26 10:09:34 -04007767
7768 ret = btrfs_copy_root(trans, root, root->commit_root,
7769 &eb, BTRFS_TREE_RELOC_OBJECTID);
7770 BUG_ON(ret);
7771
7772 root_key.objectid = BTRFS_TREE_RELOC_OBJECTID;
7773 root_key.offset = root->root_key.objectid;
7774 root_key.type = BTRFS_ROOT_ITEM_KEY;
7775
7776 memcpy(root_item, &root->root_item, sizeof(root_item));
7777 btrfs_set_root_refs(root_item, 0);
7778 btrfs_set_root_bytenr(root_item, eb->start);
7779 btrfs_set_root_level(root_item, btrfs_header_level(eb));
Yan Zheng84234f32008-10-29 14:49:05 -04007780 btrfs_set_root_generation(root_item, trans->transid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007781
7782 btrfs_tree_unlock(eb);
7783 free_extent_buffer(eb);
7784
7785 ret = btrfs_insert_root(trans, root->fs_info->tree_root,
7786 &root_key, root_item);
7787 BUG_ON(ret);
7788 kfree(root_item);
7789
7790 reloc_root = btrfs_read_fs_root_no_radix(root->fs_info->tree_root,
7791 &root_key);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007792 BUG_ON(IS_ERR(reloc_root));
Zheng Yan1a40e232008-09-26 10:09:34 -04007793 reloc_root->last_trans = trans->transid;
7794 reloc_root->commit_root = NULL;
7795 reloc_root->ref_tree = &root->fs_info->reloc_ref_tree;
7796
7797 root->reloc_root = reloc_root;
7798 return 0;
7799}
7800
7801/*
7802 * Core function of space balance.
7803 *
7804 * The idea is using reloc trees to relocate tree blocks in reference
Yan Zhengf82d02d2008-10-29 14:49:05 -04007805 * counted roots. There is one reloc tree for each subvol, and all
7806 * reloc trees share same root key objectid. Reloc trees are snapshots
7807 * of the latest committed roots of subvols (root->commit_root).
7808 *
7809 * To relocate a tree block referenced by a subvol, there are two steps.
7810 * COW the block through subvol's reloc tree, then update block pointer
7811 * in the subvol to point to the new block. Since all reloc trees share
7812 * same root key objectid, doing special handing for tree blocks owned
7813 * by them is easy. Once a tree block has been COWed in one reloc tree,
7814 * we can use the resulting new block directly when the same block is
7815 * required to COW again through other reloc trees. By this way, relocated
7816 * tree blocks are shared between reloc trees, so they are also shared
7817 * between subvols.
Zheng Yan1a40e232008-09-26 10:09:34 -04007818 */
Chris Masond3977122009-01-05 21:25:51 -05007819static noinline int relocate_one_path(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007820 struct btrfs_root *root,
7821 struct btrfs_path *path,
7822 struct btrfs_key *first_key,
7823 struct btrfs_ref_path *ref_path,
7824 struct btrfs_block_group_cache *group,
7825 struct inode *reloc_inode)
7826{
7827 struct btrfs_root *reloc_root;
7828 struct extent_buffer *eb = NULL;
7829 struct btrfs_key *keys;
7830 u64 *nodes;
7831 int level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007832 int shared_level;
Zheng Yan1a40e232008-09-26 10:09:34 -04007833 int lowest_level = 0;
Zheng Yan1a40e232008-09-26 10:09:34 -04007834 int ret;
7835
7836 if (ref_path->owner_objectid < BTRFS_FIRST_FREE_OBJECTID)
7837 lowest_level = ref_path->owner_objectid;
7838
Yan Zhengf82d02d2008-10-29 14:49:05 -04007839 if (!root->ref_cows) {
Zheng Yan1a40e232008-09-26 10:09:34 -04007840 path->lowest_level = lowest_level;
7841 ret = btrfs_search_slot(trans, root, first_key, path, 0, 1);
7842 BUG_ON(ret < 0);
7843 path->lowest_level = 0;
7844 btrfs_release_path(root, path);
7845 return 0;
7846 }
7847
Zheng Yan1a40e232008-09-26 10:09:34 -04007848 mutex_lock(&root->fs_info->tree_reloc_mutex);
7849 ret = init_reloc_tree(trans, root);
7850 BUG_ON(ret);
7851 reloc_root = root->reloc_root;
7852
Yan Zhengf82d02d2008-10-29 14:49:05 -04007853 shared_level = ref_path->shared_level;
7854 ref_path->shared_level = BTRFS_MAX_LEVEL - 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04007855
Yan Zhengf82d02d2008-10-29 14:49:05 -04007856 keys = ref_path->node_keys;
7857 nodes = ref_path->new_nodes;
7858 memset(&keys[shared_level + 1], 0,
7859 sizeof(*keys) * (BTRFS_MAX_LEVEL - shared_level - 1));
7860 memset(&nodes[shared_level + 1], 0,
7861 sizeof(*nodes) * (BTRFS_MAX_LEVEL - shared_level - 1));
Zheng Yan1a40e232008-09-26 10:09:34 -04007862
Yan Zhengf82d02d2008-10-29 14:49:05 -04007863 if (nodes[lowest_level] == 0) {
7864 path->lowest_level = lowest_level;
7865 ret = btrfs_search_slot(trans, reloc_root, first_key, path,
7866 0, 1);
7867 BUG_ON(ret);
7868 for (level = lowest_level; level < BTRFS_MAX_LEVEL; level++) {
7869 eb = path->nodes[level];
7870 if (!eb || eb == reloc_root->node)
7871 break;
7872 nodes[level] = eb->start;
7873 if (level == 0)
7874 btrfs_item_key_to_cpu(eb, &keys[level], 0);
7875 else
7876 btrfs_node_key_to_cpu(eb, &keys[level], 0);
7877 }
Yan Zheng2b820322008-11-17 21:11:30 -05007878 if (nodes[0] &&
7879 ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04007880 eb = path->nodes[0];
7881 ret = replace_extents_in_leaf(trans, reloc_root, eb,
7882 group, reloc_inode);
7883 BUG_ON(ret);
7884 }
7885 btrfs_release_path(reloc_root, path);
7886 } else {
Zheng Yan1a40e232008-09-26 10:09:34 -04007887 ret = btrfs_merge_path(trans, reloc_root, keys, nodes,
Yan Zhengf82d02d2008-10-29 14:49:05 -04007888 lowest_level);
Zheng Yan1a40e232008-09-26 10:09:34 -04007889 BUG_ON(ret);
7890 }
7891
Zheng Yan1a40e232008-09-26 10:09:34 -04007892 /*
7893 * replace tree blocks in the fs tree with tree blocks in
7894 * the reloc tree.
7895 */
7896 ret = btrfs_merge_path(trans, root, keys, nodes, lowest_level);
7897 BUG_ON(ret < 0);
7898
7899 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04007900 ret = btrfs_search_slot(trans, reloc_root, first_key, path,
7901 0, 0);
7902 BUG_ON(ret);
7903 extent_buffer_get(path->nodes[0]);
7904 eb = path->nodes[0];
7905 btrfs_release_path(reloc_root, path);
Zheng Yan1a40e232008-09-26 10:09:34 -04007906 ret = invalidate_extent_cache(reloc_root, eb, group, root);
7907 BUG_ON(ret);
7908 free_extent_buffer(eb);
7909 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007910
Yan Zhengf82d02d2008-10-29 14:49:05 -04007911 mutex_unlock(&root->fs_info->tree_reloc_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04007912 path->lowest_level = 0;
Zheng Yan1a40e232008-09-26 10:09:34 -04007913 return 0;
7914}
7915
Chris Masond3977122009-01-05 21:25:51 -05007916static noinline int relocate_tree_block(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007917 struct btrfs_root *root,
7918 struct btrfs_path *path,
7919 struct btrfs_key *first_key,
7920 struct btrfs_ref_path *ref_path)
7921{
7922 int ret;
Zheng Yan1a40e232008-09-26 10:09:34 -04007923
7924 ret = relocate_one_path(trans, root, path, first_key,
7925 ref_path, NULL, NULL);
7926 BUG_ON(ret);
7927
Zheng Yan1a40e232008-09-26 10:09:34 -04007928 return 0;
7929}
7930
Chris Masond3977122009-01-05 21:25:51 -05007931static noinline int del_extent_zero(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007932 struct btrfs_root *extent_root,
7933 struct btrfs_path *path,
7934 struct btrfs_key *extent_key)
7935{
7936 int ret;
7937
Zheng Yan1a40e232008-09-26 10:09:34 -04007938 ret = btrfs_search_slot(trans, extent_root, extent_key, path, -1, 1);
7939 if (ret)
7940 goto out;
7941 ret = btrfs_del_item(trans, extent_root, path);
7942out:
Chris Masonedbd8d42007-12-21 16:27:24 -05007943 btrfs_release_path(extent_root, path);
Zheng Yan1a40e232008-09-26 10:09:34 -04007944 return ret;
7945}
7946
Chris Masond3977122009-01-05 21:25:51 -05007947static noinline struct btrfs_root *read_ref_root(struct btrfs_fs_info *fs_info,
Zheng Yan1a40e232008-09-26 10:09:34 -04007948 struct btrfs_ref_path *ref_path)
7949{
7950 struct btrfs_key root_key;
7951
7952 root_key.objectid = ref_path->root_objectid;
7953 root_key.type = BTRFS_ROOT_ITEM_KEY;
7954 if (is_cowonly_root(ref_path->root_objectid))
7955 root_key.offset = 0;
7956 else
7957 root_key.offset = (u64)-1;
7958
7959 return btrfs_read_fs_root_no_name(fs_info, &root_key);
7960}
7961
Chris Masond3977122009-01-05 21:25:51 -05007962static noinline int relocate_one_extent(struct btrfs_root *extent_root,
Zheng Yan1a40e232008-09-26 10:09:34 -04007963 struct btrfs_path *path,
7964 struct btrfs_key *extent_key,
7965 struct btrfs_block_group_cache *group,
7966 struct inode *reloc_inode, int pass)
7967{
7968 struct btrfs_trans_handle *trans;
7969 struct btrfs_root *found_root;
7970 struct btrfs_ref_path *ref_path = NULL;
7971 struct disk_extent *new_extents = NULL;
7972 int nr_extents = 0;
7973 int loops;
7974 int ret;
7975 int level;
7976 struct btrfs_key first_key;
7977 u64 prev_block = 0;
7978
Zheng Yan1a40e232008-09-26 10:09:34 -04007979
7980 trans = btrfs_start_transaction(extent_root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00007981 BUG_ON(IS_ERR(trans));
Zheng Yan1a40e232008-09-26 10:09:34 -04007982
7983 if (extent_key->objectid == 0) {
7984 ret = del_extent_zero(trans, extent_root, path, extent_key);
7985 goto out;
7986 }
7987
7988 ref_path = kmalloc(sizeof(*ref_path), GFP_NOFS);
7989 if (!ref_path) {
Chris Masond3977122009-01-05 21:25:51 -05007990 ret = -ENOMEM;
7991 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04007992 }
7993
7994 for (loops = 0; ; loops++) {
7995 if (loops == 0) {
7996 ret = btrfs_first_ref_path(trans, extent_root, ref_path,
7997 extent_key->objectid);
7998 } else {
7999 ret = btrfs_next_ref_path(trans, extent_root, ref_path);
8000 }
8001 if (ret < 0)
8002 goto out;
8003 if (ret > 0)
8004 break;
8005
8006 if (ref_path->root_objectid == BTRFS_TREE_LOG_OBJECTID ||
8007 ref_path->root_objectid == BTRFS_TREE_RELOC_OBJECTID)
8008 continue;
8009
8010 found_root = read_ref_root(extent_root->fs_info, ref_path);
8011 BUG_ON(!found_root);
8012 /*
8013 * for reference counted tree, only process reference paths
8014 * rooted at the latest committed root.
8015 */
8016 if (found_root->ref_cows &&
8017 ref_path->root_generation != found_root->root_key.offset)
8018 continue;
8019
8020 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
8021 if (pass == 0) {
8022 /*
8023 * copy data extents to new locations
8024 */
8025 u64 group_start = group->key.objectid;
8026 ret = relocate_data_extent(reloc_inode,
8027 extent_key,
8028 group_start);
8029 if (ret < 0)
8030 goto out;
8031 break;
8032 }
8033 level = 0;
8034 } else {
8035 level = ref_path->owner_objectid;
8036 }
8037
8038 if (prev_block != ref_path->nodes[level]) {
8039 struct extent_buffer *eb;
8040 u64 block_start = ref_path->nodes[level];
8041 u64 block_size = btrfs_level_size(found_root, level);
8042
8043 eb = read_tree_block(found_root, block_start,
8044 block_size, 0);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00008045 if (!eb) {
8046 ret = -EIO;
8047 goto out;
8048 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008049 btrfs_tree_lock(eb);
8050 BUG_ON(level != btrfs_header_level(eb));
8051
8052 if (level == 0)
8053 btrfs_item_key_to_cpu(eb, &first_key, 0);
8054 else
8055 btrfs_node_key_to_cpu(eb, &first_key, 0);
8056
8057 btrfs_tree_unlock(eb);
8058 free_extent_buffer(eb);
8059 prev_block = block_start;
8060 }
8061
Yan Zheng24562422009-02-12 14:14:53 -05008062 mutex_lock(&extent_root->fs_info->trans_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05008063 btrfs_record_root_in_trans(found_root);
Yan Zheng24562422009-02-12 14:14:53 -05008064 mutex_unlock(&extent_root->fs_info->trans_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05008065 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
8066 /*
8067 * try to update data extent references while
8068 * keeping metadata shared between snapshots.
8069 */
8070 if (pass == 1) {
8071 ret = relocate_one_path(trans, found_root,
8072 path, &first_key, ref_path,
8073 group, reloc_inode);
8074 if (ret < 0)
8075 goto out;
8076 continue;
8077 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008078 /*
8079 * use fallback method to process the remaining
8080 * references.
8081 */
8082 if (!new_extents) {
8083 u64 group_start = group->key.objectid;
Yan Zhengd899e052008-10-30 14:25:28 -04008084 new_extents = kmalloc(sizeof(*new_extents),
8085 GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04008086 if (!new_extents) {
8087 ret = -ENOMEM;
8088 goto out;
8089 }
Yan Zhengd899e052008-10-30 14:25:28 -04008090 nr_extents = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04008091 ret = get_new_locations(reloc_inode,
8092 extent_key,
Yan Zhengd899e052008-10-30 14:25:28 -04008093 group_start, 1,
Zheng Yan1a40e232008-09-26 10:09:34 -04008094 &new_extents,
8095 &nr_extents);
Yan Zhengd899e052008-10-30 14:25:28 -04008096 if (ret)
Zheng Yan1a40e232008-09-26 10:09:34 -04008097 goto out;
8098 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008099 ret = replace_one_extent(trans, found_root,
8100 path, extent_key,
8101 &first_key, ref_path,
8102 new_extents, nr_extents);
Yan Zhenge4404d62008-12-12 10:03:26 -05008103 } else {
Zheng Yan1a40e232008-09-26 10:09:34 -04008104 ret = relocate_tree_block(trans, found_root, path,
8105 &first_key, ref_path);
Zheng Yan1a40e232008-09-26 10:09:34 -04008106 }
8107 if (ret < 0)
8108 goto out;
8109 }
8110 ret = 0;
8111out:
8112 btrfs_end_transaction(trans, extent_root);
8113 kfree(new_extents);
8114 kfree(ref_path);
Chris Masonedbd8d42007-12-21 16:27:24 -05008115 return ret;
8116}
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008117#endif
Chris Masonedbd8d42007-12-21 16:27:24 -05008118
Chris Masonec44a352008-04-28 15:29:52 -04008119static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
8120{
8121 u64 num_devices;
8122 u64 stripped = BTRFS_BLOCK_GROUP_RAID0 |
8123 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
8124
Chris Masoncd02dca2010-12-13 14:56:23 -05008125 /*
8126 * we add in the count of missing devices because we want
8127 * to make sure that any RAID levels on a degraded FS
8128 * continue to be honored.
8129 */
8130 num_devices = root->fs_info->fs_devices->rw_devices +
8131 root->fs_info->fs_devices->missing_devices;
8132
Chris Masonec44a352008-04-28 15:29:52 -04008133 if (num_devices == 1) {
8134 stripped |= BTRFS_BLOCK_GROUP_DUP;
8135 stripped = flags & ~stripped;
8136
8137 /* turn raid0 into single device chunks */
8138 if (flags & BTRFS_BLOCK_GROUP_RAID0)
8139 return stripped;
8140
8141 /* turn mirroring into duplication */
8142 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
8143 BTRFS_BLOCK_GROUP_RAID10))
8144 return stripped | BTRFS_BLOCK_GROUP_DUP;
8145 return flags;
8146 } else {
8147 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04008148 if (flags & stripped)
8149 return flags;
8150
8151 stripped |= BTRFS_BLOCK_GROUP_DUP;
8152 stripped = flags & ~stripped;
8153
8154 /* switch duplicated blocks with raid1 */
8155 if (flags & BTRFS_BLOCK_GROUP_DUP)
8156 return stripped | BTRFS_BLOCK_GROUP_RAID1;
8157
8158 /* turn single device chunks into raid0 */
8159 return stripped | BTRFS_BLOCK_GROUP_RAID0;
8160 }
8161 return flags;
8162}
8163
Yan, Zhengf0486c62010-05-16 10:46:25 -04008164static int set_block_group_ro(struct btrfs_block_group_cache *cache)
Chris Mason0ef3e662008-05-24 14:04:53 -04008165{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008166 struct btrfs_space_info *sinfo = cache->space_info;
8167 u64 num_bytes;
8168 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04008169
Yan, Zhengf0486c62010-05-16 10:46:25 -04008170 if (cache->ro)
8171 return 0;
Chris Masonc286ac42008-07-22 23:06:41 -04008172
Yan, Zhengf0486c62010-05-16 10:46:25 -04008173 spin_lock(&sinfo->lock);
8174 spin_lock(&cache->lock);
8175 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8176 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04008177
Yan, Zhengf0486c62010-05-16 10:46:25 -04008178 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
8179 sinfo->bytes_may_use + sinfo->bytes_readonly +
Chris Mason65e53412010-12-24 06:41:52 -05008180 cache->reserved_pinned + num_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04008181 sinfo->bytes_readonly += num_bytes;
8182 sinfo->bytes_reserved += cache->reserved_pinned;
8183 cache->reserved_pinned = 0;
8184 cache->ro = 1;
8185 ret = 0;
8186 }
Chris Mason65e53412010-12-24 06:41:52 -05008187
Yan, Zhengf0486c62010-05-16 10:46:25 -04008188 spin_unlock(&cache->lock);
8189 spin_unlock(&sinfo->lock);
8190 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04008191}
8192
Yan, Zhengf0486c62010-05-16 10:46:25 -04008193int btrfs_set_block_group_ro(struct btrfs_root *root,
8194 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008195
8196{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008197 struct btrfs_trans_handle *trans;
8198 u64 alloc_flags;
8199 int ret;
8200
8201 BUG_ON(cache->ro);
8202
Josef Bacik7a7eaa42011-04-13 12:54:33 -04008203 trans = btrfs_join_transaction(root);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008204 BUG_ON(IS_ERR(trans));
8205
8206 alloc_flags = update_block_group_flags(root, cache->flags);
8207 if (alloc_flags != cache->flags)
Chris Mason0e4f8f82011-04-15 16:05:44 -04008208 do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags,
8209 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008210
8211 ret = set_block_group_ro(cache);
8212 if (!ret)
8213 goto out;
8214 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Chris Mason0e4f8f82011-04-15 16:05:44 -04008215 ret = do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags,
8216 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008217 if (ret < 0)
8218 goto out;
8219 ret = set_block_group_ro(cache);
8220out:
8221 btrfs_end_transaction(trans, root);
8222 return ret;
8223}
8224
Chris Masonc87f08c2011-02-16 13:57:04 -05008225int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
8226 struct btrfs_root *root, u64 type)
8227{
8228 u64 alloc_flags = get_alloc_profile(root, type);
Chris Mason0e4f8f82011-04-15 16:05:44 -04008229 return do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags,
8230 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05008231}
8232
Miao Xie6d07bce2011-01-05 10:07:31 +00008233/*
8234 * helper to account the unused space of all the readonly block group in the
8235 * list. takes mirrors into account.
8236 */
8237static u64 __btrfs_get_ro_block_group_free_space(struct list_head *groups_list)
8238{
8239 struct btrfs_block_group_cache *block_group;
8240 u64 free_bytes = 0;
8241 int factor;
8242
8243 list_for_each_entry(block_group, groups_list, list) {
8244 spin_lock(&block_group->lock);
8245
8246 if (!block_group->ro) {
8247 spin_unlock(&block_group->lock);
8248 continue;
8249 }
8250
8251 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
8252 BTRFS_BLOCK_GROUP_RAID10 |
8253 BTRFS_BLOCK_GROUP_DUP))
8254 factor = 2;
8255 else
8256 factor = 1;
8257
8258 free_bytes += (block_group->key.offset -
8259 btrfs_block_group_used(&block_group->item)) *
8260 factor;
8261
8262 spin_unlock(&block_group->lock);
8263 }
8264
8265 return free_bytes;
8266}
8267
8268/*
8269 * helper to account the unused space of all the readonly block group in the
8270 * space_info. takes mirrors into account.
8271 */
8272u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
8273{
8274 int i;
8275 u64 free_bytes = 0;
8276
8277 spin_lock(&sinfo->lock);
8278
8279 for(i = 0; i < BTRFS_NR_RAID_TYPES; i++)
8280 if (!list_empty(&sinfo->block_groups[i]))
8281 free_bytes += __btrfs_get_ro_block_group_free_space(
8282 &sinfo->block_groups[i]);
8283
8284 spin_unlock(&sinfo->lock);
8285
8286 return free_bytes;
8287}
8288
Yan, Zhengf0486c62010-05-16 10:46:25 -04008289int btrfs_set_block_group_rw(struct btrfs_root *root,
8290 struct btrfs_block_group_cache *cache)
8291{
8292 struct btrfs_space_info *sinfo = cache->space_info;
8293 u64 num_bytes;
8294
8295 BUG_ON(!cache->ro);
8296
8297 spin_lock(&sinfo->lock);
8298 spin_lock(&cache->lock);
8299 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8300 cache->bytes_super - btrfs_block_group_used(&cache->item);
8301 sinfo->bytes_readonly -= num_bytes;
8302 cache->ro = 0;
8303 spin_unlock(&cache->lock);
8304 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008305 return 0;
8306}
8307
Josef Bacikba1bf482009-09-11 16:11:19 -04008308/*
8309 * checks to see if its even possible to relocate this block group.
8310 *
8311 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
8312 * ok to go ahead and try.
8313 */
8314int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04008315{
Zheng Yan1a40e232008-09-26 10:09:34 -04008316 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04008317 struct btrfs_space_info *space_info;
8318 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
8319 struct btrfs_device *device;
8320 int full = 0;
8321 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05008322
Josef Bacikba1bf482009-09-11 16:11:19 -04008323 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04008324
Josef Bacikba1bf482009-09-11 16:11:19 -04008325 /* odd, couldn't find the block group, leave it alone */
8326 if (!block_group)
8327 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05008328
Josef Bacikba1bf482009-09-11 16:11:19 -04008329 /* no bytes used, we're good */
8330 if (!btrfs_block_group_used(&block_group->item))
8331 goto out;
Chris Mason323da792008-05-09 11:46:48 -04008332
Josef Bacikba1bf482009-09-11 16:11:19 -04008333 space_info = block_group->space_info;
8334 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04008335
Josef Bacikba1bf482009-09-11 16:11:19 -04008336 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04008337
Josef Bacikba1bf482009-09-11 16:11:19 -04008338 /*
8339 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04008340 * relocate it unless we're able to allocate a new chunk below.
8341 *
8342 * Otherwise, we need to make sure we have room in the space to handle
8343 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04008344 */
Chris Mason7ce618d2009-09-22 14:48:44 -04008345 if ((space_info->total_bytes != block_group->key.offset) &&
8346 (space_info->bytes_used + space_info->bytes_reserved +
Josef Bacikba1bf482009-09-11 16:11:19 -04008347 space_info->bytes_pinned + space_info->bytes_readonly +
8348 btrfs_block_group_used(&block_group->item) <
Chris Mason7ce618d2009-09-22 14:48:44 -04008349 space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04008350 spin_unlock(&space_info->lock);
8351 goto out;
8352 }
8353 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008354
Josef Bacikba1bf482009-09-11 16:11:19 -04008355 /*
8356 * ok we don't have enough space, but maybe we have free space on our
8357 * devices to allocate new chunks for relocation, so loop through our
8358 * alloc devices and guess if we have enough space. However, if we
8359 * were marked as full, then we know there aren't enough chunks, and we
8360 * can just return.
8361 */
8362 ret = -1;
8363 if (full)
8364 goto out;
Chris Mason4313b392008-01-03 09:08:48 -05008365
Josef Bacikba1bf482009-09-11 16:11:19 -04008366 mutex_lock(&root->fs_info->chunk_mutex);
8367 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
8368 u64 min_free = btrfs_block_group_used(&block_group->item);
Miao Xie7bfc8372011-01-05 10:07:26 +00008369 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04008370
Josef Bacikba1bf482009-09-11 16:11:19 -04008371 /*
8372 * check to make sure we can actually find a chunk with enough
8373 * space to fit our block group in.
8374 */
8375 if (device->total_bytes > device->bytes_used + min_free) {
8376 ret = find_free_dev_extent(NULL, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00008377 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04008378 if (!ret)
Yan73e48b22008-01-03 14:14:39 -05008379 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04008380 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05008381 }
Chris Masonedbd8d42007-12-21 16:27:24 -05008382 }
Josef Bacikba1bf482009-09-11 16:11:19 -04008383 mutex_unlock(&root->fs_info->chunk_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05008384out:
Josef Bacikba1bf482009-09-11 16:11:19 -04008385 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05008386 return ret;
8387}
8388
Christoph Hellwigb2950862008-12-02 09:54:17 -05008389static int find_first_block_group(struct btrfs_root *root,
8390 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04008391{
Chris Mason925baed2008-06-25 16:01:30 -04008392 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008393 struct btrfs_key found_key;
8394 struct extent_buffer *leaf;
8395 int slot;
8396
8397 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
8398 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008399 goto out;
8400
Chris Masond3977122009-01-05 21:25:51 -05008401 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008402 slot = path->slots[0];
8403 leaf = path->nodes[0];
8404 if (slot >= btrfs_header_nritems(leaf)) {
8405 ret = btrfs_next_leaf(root, path);
8406 if (ret == 0)
8407 continue;
8408 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008409 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04008410 break;
8411 }
8412 btrfs_item_key_to_cpu(leaf, &found_key, slot);
8413
8414 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04008415 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
8416 ret = 0;
8417 goto out;
8418 }
Chris Mason0b86a832008-03-24 15:01:56 -04008419 path->slots[0]++;
8420 }
Chris Mason925baed2008-06-25 16:01:30 -04008421out:
Chris Mason0b86a832008-03-24 15:01:56 -04008422 return ret;
8423}
8424
Josef Bacik0af3d002010-06-21 14:48:16 -04008425void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
8426{
8427 struct btrfs_block_group_cache *block_group;
8428 u64 last = 0;
8429
8430 while (1) {
8431 struct inode *inode;
8432
8433 block_group = btrfs_lookup_first_block_group(info, last);
8434 while (block_group) {
8435 spin_lock(&block_group->lock);
8436 if (block_group->iref)
8437 break;
8438 spin_unlock(&block_group->lock);
8439 block_group = next_block_group(info->tree_root,
8440 block_group);
8441 }
8442 if (!block_group) {
8443 if (last == 0)
8444 break;
8445 last = 0;
8446 continue;
8447 }
8448
8449 inode = block_group->inode;
8450 block_group->iref = 0;
8451 block_group->inode = NULL;
8452 spin_unlock(&block_group->lock);
8453 iput(inode);
8454 last = block_group->key.objectid + block_group->key.offset;
8455 btrfs_put_block_group(block_group);
8456 }
8457}
8458
Zheng Yan1a40e232008-09-26 10:09:34 -04008459int btrfs_free_block_groups(struct btrfs_fs_info *info)
8460{
8461 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04008462 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04008463 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04008464 struct rb_node *n;
8465
Yan Zheng11833d62009-09-11 16:11:19 -04008466 down_write(&info->extent_commit_sem);
8467 while (!list_empty(&info->caching_block_groups)) {
8468 caching_ctl = list_entry(info->caching_block_groups.next,
8469 struct btrfs_caching_control, list);
8470 list_del(&caching_ctl->list);
8471 put_caching_control(caching_ctl);
8472 }
8473 up_write(&info->extent_commit_sem);
8474
Zheng Yan1a40e232008-09-26 10:09:34 -04008475 spin_lock(&info->block_group_cache_lock);
8476 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
8477 block_group = rb_entry(n, struct btrfs_block_group_cache,
8478 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04008479 rb_erase(&block_group->cache_node,
8480 &info->block_group_cache_tree);
Yan Zhengd899e052008-10-30 14:25:28 -04008481 spin_unlock(&info->block_group_cache_lock);
8482
Josef Bacik80eb2342008-10-29 14:49:05 -04008483 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008484 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04008485 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05008486
Josef Bacik817d52f2009-07-13 21:29:25 -04008487 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008488 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008489
Josef Bacik3c148742011-02-02 15:53:47 +00008490 /*
8491 * We haven't cached this block group, which means we could
8492 * possibly have excluded extents on this block group.
8493 */
8494 if (block_group->cached == BTRFS_CACHE_NO)
8495 free_excluded_extents(info->extent_root, block_group);
8496
Josef Bacik817d52f2009-07-13 21:29:25 -04008497 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00008498 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04008499
8500 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008501 }
8502 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04008503
8504 /* now that all the block groups are freed, go through and
8505 * free all the space_info structs. This is only called during
8506 * the final stages of unmount, and so we know nobody is
8507 * using them. We call synchronize_rcu() once before we start,
8508 * just to be on the safe side.
8509 */
8510 synchronize_rcu();
8511
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04008512 release_global_block_rsv(info);
8513
Chris Mason4184ea72009-03-10 12:39:20 -04008514 while(!list_empty(&info->space_info)) {
8515 space_info = list_entry(info->space_info.next,
8516 struct btrfs_space_info,
8517 list);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008518 if (space_info->bytes_pinned > 0 ||
8519 space_info->bytes_reserved > 0) {
8520 WARN_ON(1);
8521 dump_space_info(space_info, 0, 0);
8522 }
Chris Mason4184ea72009-03-10 12:39:20 -04008523 list_del(&space_info->list);
8524 kfree(space_info);
8525 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008526 return 0;
8527}
8528
Yan, Zhengb742bb82010-05-16 10:46:24 -04008529static void __link_block_group(struct btrfs_space_info *space_info,
8530 struct btrfs_block_group_cache *cache)
8531{
8532 int index = get_block_group_index(cache);
8533
8534 down_write(&space_info->groups_sem);
8535 list_add_tail(&cache->list, &space_info->block_groups[index]);
8536 up_write(&space_info->groups_sem);
8537}
8538
Chris Mason9078a3e2007-04-26 16:46:15 -04008539int btrfs_read_block_groups(struct btrfs_root *root)
8540{
8541 struct btrfs_path *path;
8542 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008543 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04008544 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04008545 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04008546 struct btrfs_key key;
8547 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04008548 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04008549 int need_clear = 0;
8550 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04008551
Chris Masonbe744172007-05-06 10:15:01 -04008552 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04008553 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008554 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04008555 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04008556 path = btrfs_alloc_path();
8557 if (!path)
8558 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04008559 path->reada = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04008560
Josef Bacik0af3d002010-06-21 14:48:16 -04008561 cache_gen = btrfs_super_cache_generation(&root->fs_info->super_copy);
8562 if (cache_gen != 0 &&
8563 btrfs_super_generation(&root->fs_info->super_copy) != cache_gen)
8564 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04008565 if (btrfs_test_opt(root, CLEAR_CACHE))
8566 need_clear = 1;
Josef Bacik8216ef82010-10-28 16:55:47 -04008567 if (!btrfs_test_opt(root, SPACE_CACHE) && cache_gen)
8568 printk(KERN_INFO "btrfs: disk space caching is enabled\n");
Josef Bacik0af3d002010-06-21 14:48:16 -04008569
Chris Masond3977122009-01-05 21:25:51 -05008570 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008571 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008572 if (ret > 0)
8573 break;
Chris Mason0b86a832008-03-24 15:01:56 -04008574 if (ret != 0)
8575 goto error;
Chris Mason5f39d392007-10-15 16:14:19 -04008576 leaf = path->nodes[0];
8577 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04008578 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04008579 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04008580 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008581 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04008582 }
Chris Mason3e1ad542007-05-07 20:03:49 -04008583
Yan Zhengd2fb3432008-12-11 16:30:39 -05008584 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04008585 spin_lock_init(&cache->lock);
Josef Bacik6226cb02009-04-03 10:14:18 -04008586 spin_lock_init(&cache->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008587 cache->fs_info = info;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008588 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04008589 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik96303082009-07-13 21:29:25 -04008590
Josef Bacik0af3d002010-06-21 14:48:16 -04008591 if (need_clear)
8592 cache->disk_cache_state = BTRFS_DC_CLEAR;
8593
Josef Bacik96303082009-07-13 21:29:25 -04008594 /*
8595 * we only want to have 32k of ram per block group for keeping
8596 * track of free space, and if we pass 1/2 of that we want to
8597 * start converting things over to using bitmaps
8598 */
8599 cache->extents_thresh = ((1024 * 32) / 2) /
8600 sizeof(struct btrfs_free_space);
8601
Chris Mason5f39d392007-10-15 16:14:19 -04008602 read_extent_buffer(leaf, &cache->item,
8603 btrfs_item_ptr_offset(leaf, path->slots[0]),
8604 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04008605 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason0b86a832008-03-24 15:01:56 -04008606
Chris Mason9078a3e2007-04-26 16:46:15 -04008607 key.objectid = found_key.objectid + found_key.offset;
8608 btrfs_release_path(root, path);
Chris Mason0b86a832008-03-24 15:01:56 -04008609 cache->flags = btrfs_block_group_flags(&cache->item);
Josef Bacik817d52f2009-07-13 21:29:25 -04008610 cache->sectorsize = root->sectorsize;
8611
Josef Bacik817d52f2009-07-13 21:29:25 -04008612 /*
Josef Bacik3c148742011-02-02 15:53:47 +00008613 * We need to exclude the super stripes now so that the space
8614 * info has super bytes accounted for, otherwise we'll think
8615 * we have more space than we actually do.
8616 */
8617 exclude_super_stripes(root, cache);
8618
8619 /*
Josef Bacik817d52f2009-07-13 21:29:25 -04008620 * check for two cases, either we are full, and therefore
8621 * don't need to bother with the caching work since we won't
8622 * find any space, or we are empty, and we can just add all
8623 * the space in and be done with it. This saves us _alot_ of
8624 * time, particularly in the full case.
8625 */
8626 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -04008627 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008628 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04008629 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008630 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04008631 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008632 cache->cached = BTRFS_CACHE_FINISHED;
8633 add_new_free_space(cache, root->fs_info,
8634 found_key.objectid,
8635 found_key.objectid +
8636 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04008637 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008638 }
Chris Mason96b51792007-10-15 16:15:19 -04008639
Chris Mason6324fbf2008-03-24 15:01:59 -04008640 ret = update_space_info(info, cache->flags, found_key.offset,
8641 btrfs_block_group_used(&cache->item),
8642 &space_info);
8643 BUG_ON(ret);
8644 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04008645 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008646 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008647 spin_unlock(&cache->space_info->lock);
8648
Yan, Zhengb742bb82010-05-16 10:46:24 -04008649 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008650
Josef Bacik0f9dd462008-09-23 13:14:11 -04008651 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8652 BUG_ON(ret);
Chris Mason75ccf472008-09-30 19:24:06 -04008653
8654 set_avail_alloc_bits(root->fs_info, cache->flags);
Yan Zheng2b820322008-11-17 21:11:30 -05008655 if (btrfs_chunk_readonly(root, cache->key.objectid))
Yan, Zhengf0486c62010-05-16 10:46:25 -04008656 set_block_group_ro(cache);
Chris Mason9078a3e2007-04-26 16:46:15 -04008657 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04008658
8659 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
8660 if (!(get_alloc_profile(root, space_info->flags) &
8661 (BTRFS_BLOCK_GROUP_RAID10 |
8662 BTRFS_BLOCK_GROUP_RAID1 |
8663 BTRFS_BLOCK_GROUP_DUP)))
8664 continue;
8665 /*
8666 * avoid allocating from un-mirrored block group if there are
8667 * mirrored block groups.
8668 */
8669 list_for_each_entry(cache, &space_info->block_groups[3], list)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008670 set_block_group_ro(cache);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008671 list_for_each_entry(cache, &space_info->block_groups[4], list)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008672 set_block_group_ro(cache);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008673 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008674
8675 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04008676 ret = 0;
8677error:
Chris Mason9078a3e2007-04-26 16:46:15 -04008678 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04008679 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008680}
Chris Mason6324fbf2008-03-24 15:01:59 -04008681
8682int btrfs_make_block_group(struct btrfs_trans_handle *trans,
8683 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04008684 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04008685 u64 size)
8686{
8687 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04008688 struct btrfs_root *extent_root;
8689 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04008690
8691 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04008692
Chris Mason12fcfd22009-03-24 10:24:20 -04008693 root->fs_info->last_trans_log_full_commit = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04008694
Chris Mason8f18cf12008-04-25 16:53:30 -04008695 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008696 if (!cache)
8697 return -ENOMEM;
8698
Chris Masone17cade2008-04-15 15:41:47 -04008699 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04008700 cache->key.offset = size;
Yan Zhengd2fb3432008-12-11 16:30:39 -05008701 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Josef Bacik96303082009-07-13 21:29:25 -04008702 cache->sectorsize = root->sectorsize;
Josef Bacik0af3d002010-06-21 14:48:16 -04008703 cache->fs_info = root->fs_info;
Josef Bacik96303082009-07-13 21:29:25 -04008704
8705 /*
8706 * we only want to have 32k of ram per block group for keeping track
8707 * of free space, and if we pass 1/2 of that we want to start
8708 * converting things over to using bitmaps
8709 */
8710 cache->extents_thresh = ((1024 * 32) / 2) /
8711 sizeof(struct btrfs_free_space);
Yan Zhengd2fb3432008-12-11 16:30:39 -05008712 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04008713 spin_lock_init(&cache->lock);
Josef Bacik6226cb02009-04-03 10:14:18 -04008714 spin_lock_init(&cache->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008715 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04008716 INIT_LIST_HEAD(&cache->cluster_list);
Chris Mason0ef3e662008-05-24 14:04:53 -04008717
Chris Mason6324fbf2008-03-24 15:01:59 -04008718 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04008719 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
8720 cache->flags = type;
8721 btrfs_set_block_group_flags(&cache->item, type);
8722
Yan Zheng11833d62009-09-11 16:11:19 -04008723 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008724 cache->cached = BTRFS_CACHE_FINISHED;
Yan Zheng11833d62009-09-11 16:11:19 -04008725 exclude_super_stripes(root, cache);
Josef Bacik96303082009-07-13 21:29:25 -04008726
Josef Bacik817d52f2009-07-13 21:29:25 -04008727 add_new_free_space(cache, root->fs_info, chunk_offset,
8728 chunk_offset + size);
8729
Yan Zheng11833d62009-09-11 16:11:19 -04008730 free_excluded_extents(root, cache);
8731
Chris Mason6324fbf2008-03-24 15:01:59 -04008732 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
8733 &cache->space_info);
8734 BUG_ON(ret);
Josef Bacik1b2da372009-09-11 16:11:20 -04008735
8736 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008737 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008738 spin_unlock(&cache->space_info->lock);
8739
Yan, Zhengb742bb82010-05-16 10:46:24 -04008740 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008741
Josef Bacik0f9dd462008-09-23 13:14:11 -04008742 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8743 BUG_ON(ret);
Chris Masonc286ac42008-07-22 23:06:41 -04008744
Chris Mason6324fbf2008-03-24 15:01:59 -04008745 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
8746 sizeof(cache->item));
8747 BUG_ON(ret);
8748
Chris Masond18a2c42008-04-04 15:40:00 -04008749 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04008750
Chris Mason6324fbf2008-03-24 15:01:59 -04008751 return 0;
8752}
Zheng Yan1a40e232008-09-26 10:09:34 -04008753
8754int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
8755 struct btrfs_root *root, u64 group_start)
8756{
8757 struct btrfs_path *path;
8758 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04008759 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -04008760 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04008761 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04008762 struct inode *inode;
Zheng Yan1a40e232008-09-26 10:09:34 -04008763 int ret;
Josef Bacik89a55892010-10-14 14:52:27 -04008764 int factor;
Zheng Yan1a40e232008-09-26 10:09:34 -04008765
Zheng Yan1a40e232008-09-26 10:09:34 -04008766 root = root->fs_info->extent_root;
8767
8768 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
8769 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05008770 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04008771
liubo9f7c43c2011-03-07 02:13:33 +00008772 /*
8773 * Free the reserved super bytes from this block group before
8774 * remove it.
8775 */
8776 free_excluded_extents(root, block_group);
8777
Zheng Yan1a40e232008-09-26 10:09:34 -04008778 memcpy(&key, &block_group->key, sizeof(key));
Josef Bacik89a55892010-10-14 14:52:27 -04008779 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
8780 BTRFS_BLOCK_GROUP_RAID1 |
8781 BTRFS_BLOCK_GROUP_RAID10))
8782 factor = 2;
8783 else
8784 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04008785
Chris Mason44fb5512009-06-04 15:34:51 -04008786 /* make sure this block group isn't part of an allocation cluster */
8787 cluster = &root->fs_info->data_alloc_cluster;
8788 spin_lock(&cluster->refill_lock);
8789 btrfs_return_cluster_to_free_space(block_group, cluster);
8790 spin_unlock(&cluster->refill_lock);
8791
8792 /*
8793 * make sure this block group isn't part of a metadata
8794 * allocation cluster
8795 */
8796 cluster = &root->fs_info->meta_alloc_cluster;
8797 spin_lock(&cluster->refill_lock);
8798 btrfs_return_cluster_to_free_space(block_group, cluster);
8799 spin_unlock(&cluster->refill_lock);
8800
Zheng Yan1a40e232008-09-26 10:09:34 -04008801 path = btrfs_alloc_path();
8802 BUG_ON(!path);
8803
Josef Bacik0af3d002010-06-21 14:48:16 -04008804 inode = lookup_free_space_inode(root, block_group, path);
8805 if (!IS_ERR(inode)) {
8806 btrfs_orphan_add(trans, inode);
8807 clear_nlink(inode);
8808 /* One for the block groups ref */
8809 spin_lock(&block_group->lock);
8810 if (block_group->iref) {
8811 block_group->iref = 0;
8812 block_group->inode = NULL;
8813 spin_unlock(&block_group->lock);
8814 iput(inode);
8815 } else {
8816 spin_unlock(&block_group->lock);
8817 }
8818 /* One for our lookup ref */
8819 iput(inode);
8820 }
8821
8822 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
8823 key.offset = block_group->key.objectid;
8824 key.type = 0;
8825
8826 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
8827 if (ret < 0)
8828 goto out;
8829 if (ret > 0)
8830 btrfs_release_path(tree_root, path);
8831 if (ret == 0) {
8832 ret = btrfs_del_item(trans, tree_root, path);
8833 if (ret)
8834 goto out;
8835 btrfs_release_path(tree_root, path);
8836 }
8837
Yan Zheng3dfdb932009-01-21 10:49:16 -05008838 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008839 rb_erase(&block_group->cache_node,
8840 &root->fs_info->block_group_cache_tree);
Yan Zheng3dfdb932009-01-21 10:49:16 -05008841 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008842
Josef Bacik80eb2342008-10-29 14:49:05 -04008843 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04008844 /*
8845 * we must use list_del_init so people can check to see if they
8846 * are still on the list after taking the semaphore
8847 */
8848 list_del_init(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04008849 up_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008850
Josef Bacik817d52f2009-07-13 21:29:25 -04008851 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008852 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008853
8854 btrfs_remove_free_space_cache(block_group);
8855
Yan Zhengc146afa2008-11-12 14:34:12 -05008856 spin_lock(&block_group->space_info->lock);
8857 block_group->space_info->total_bytes -= block_group->key.offset;
8858 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -04008859 block_group->space_info->disk_total -= block_group->key.offset * factor;
Yan Zhengc146afa2008-11-12 14:34:12 -05008860 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04008861
Josef Bacik0af3d002010-06-21 14:48:16 -04008862 memcpy(&key, &block_group->key, sizeof(key));
8863
Chris Mason283bb192009-07-24 16:30:55 -04008864 btrfs_clear_space_info_full(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05008865
Chris Masonfa9c0d792009-04-03 09:47:43 -04008866 btrfs_put_block_group(block_group);
8867 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04008868
8869 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
8870 if (ret > 0)
8871 ret = -EIO;
8872 if (ret < 0)
8873 goto out;
8874
8875 ret = btrfs_del_item(trans, root, path);
8876out:
8877 btrfs_free_path(path);
8878 return ret;
8879}
liuboacce9522011-01-06 19:30:25 +08008880
liuboc59021f2011-03-07 02:13:14 +00008881int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
8882{
8883 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +00008884 struct btrfs_super_block *disk_super;
8885 u64 features;
8886 u64 flags;
8887 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +00008888 int ret;
8889
liubo1aba86d2011-04-08 08:44:37 +00008890 disk_super = &fs_info->super_copy;
8891 if (!btrfs_super_root(disk_super))
8892 return 1;
liuboc59021f2011-03-07 02:13:14 +00008893
liubo1aba86d2011-04-08 08:44:37 +00008894 features = btrfs_super_incompat_flags(disk_super);
8895 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
8896 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +00008897
liubo1aba86d2011-04-08 08:44:37 +00008898 flags = BTRFS_BLOCK_GROUP_SYSTEM;
8899 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +00008900 if (ret)
liubo1aba86d2011-04-08 08:44:37 +00008901 goto out;
liuboc59021f2011-03-07 02:13:14 +00008902
liubo1aba86d2011-04-08 08:44:37 +00008903 if (mixed) {
8904 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
8905 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8906 } else {
8907 flags = BTRFS_BLOCK_GROUP_METADATA;
8908 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8909 if (ret)
8910 goto out;
8911
8912 flags = BTRFS_BLOCK_GROUP_DATA;
8913 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8914 }
8915out:
liuboc59021f2011-03-07 02:13:14 +00008916 return ret;
8917}
8918
liuboacce9522011-01-06 19:30:25 +08008919int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
8920{
8921 return unpin_extent_range(root, start, end);
8922}
8923
8924int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00008925 u64 num_bytes, u64 *actual_bytes)
liuboacce9522011-01-06 19:30:25 +08008926{
Li Dongyang5378e602011-03-24 10:24:27 +00008927 return btrfs_discard_extent(root, bytenr, num_bytes, actual_bytes);
liuboacce9522011-01-06 19:30:25 +08008928}
Li Dongyangf7039b12011-03-24 10:24:28 +00008929
8930int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
8931{
8932 struct btrfs_fs_info *fs_info = root->fs_info;
8933 struct btrfs_block_group_cache *cache = NULL;
8934 u64 group_trimmed;
8935 u64 start;
8936 u64 end;
8937 u64 trimmed = 0;
8938 int ret = 0;
8939
8940 cache = btrfs_lookup_block_group(fs_info, range->start);
8941
8942 while (cache) {
8943 if (cache->key.objectid >= (range->start + range->len)) {
8944 btrfs_put_block_group(cache);
8945 break;
8946 }
8947
8948 start = max(range->start, cache->key.objectid);
8949 end = min(range->start + range->len,
8950 cache->key.objectid + cache->key.offset);
8951
8952 if (end - start >= range->minlen) {
8953 if (!block_group_cache_done(cache)) {
8954 ret = cache_block_group(cache, NULL, root, 0);
8955 if (!ret)
8956 wait_block_group_cache_done(cache);
8957 }
8958 ret = btrfs_trim_block_group(cache,
8959 &group_trimmed,
8960 start,
8961 end,
8962 range->minlen);
8963
8964 trimmed += group_trimmed;
8965 if (ret) {
8966 btrfs_put_block_group(cache);
8967 break;
8968 }
8969 }
8970
8971 cache = next_block_group(fs_info->tree_root, cache);
8972 }
8973
8974 range->len = trimmed;
8975 return ret;
8976}