blob: 59c8daaacf0c6211245d8e33fea87e657cbe3eaf [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 Masonfa9c0d72009-04-03 09:47:43 -040034#include "free-space-cache.h"
Chris Masonfec577f2007-02-26 10:40:21 -050035
Josef Bacikf3465ca2008-11-12 14:19:50 -050036static int update_block_group(struct btrfs_trans_handle *trans,
37 struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -040038 u64 bytenr, u64 num_bytes, int alloc);
39static int update_reserved_bytes(struct btrfs_block_group_cache *cache,
40 u64 num_bytes, int reserve, int sinfo);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040041static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
42 struct btrfs_root *root,
43 u64 bytenr, u64 num_bytes, u64 parent,
44 u64 root_objectid, u64 owner_objectid,
45 u64 owner_offset, int refs_to_drop,
46 struct btrfs_delayed_extent_op *extra_op);
47static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
48 struct extent_buffer *leaf,
49 struct btrfs_extent_item *ei);
50static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
51 struct btrfs_root *root,
52 u64 parent, u64 root_objectid,
53 u64 flags, u64 owner, u64 offset,
54 struct btrfs_key *ins, int ref_mod);
55static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
56 struct btrfs_root *root,
57 u64 parent, u64 root_objectid,
58 u64 flags, struct btrfs_disk_key *key,
59 int level, struct btrfs_key *ins);
Josef Bacik6a632092009-02-20 11:00:09 -050060static int do_chunk_alloc(struct btrfs_trans_handle *trans,
61 struct btrfs_root *extent_root, u64 alloc_bytes,
62 u64 flags, int force);
Yan Zheng11833d62009-09-11 16:11:19 -040063static int find_next_key(struct btrfs_path *path, int level,
64 struct btrfs_key *key);
Josef Bacik9ed74f22009-09-11 16:12:44 -040065static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
66 int dump_block_groups);
Josef Bacik6a632092009-02-20 11:00:09 -050067
Josef Bacik817d52f2009-07-13 21:29:25 -040068static noinline int
69block_group_cache_done(struct btrfs_block_group_cache *cache)
70{
71 smp_mb();
72 return cache->cached == BTRFS_CACHE_FINISHED;
73}
74
Josef Bacik0f9dd462008-09-23 13:14:11 -040075static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
76{
77 return (cache->flags & bits) == bits;
78}
79
Josef Bacik11dfe352009-11-13 20:12:59 +000080void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
81{
82 atomic_inc(&cache->count);
83}
84
85void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
86{
Yan, Zhengf0486c62010-05-16 10:46:25 -040087 if (atomic_dec_and_test(&cache->count)) {
88 WARN_ON(cache->pinned > 0);
89 WARN_ON(cache->reserved > 0);
90 WARN_ON(cache->reserved_pinned > 0);
Josef Bacik11dfe352009-11-13 20:12:59 +000091 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -040092 }
Josef Bacik11dfe352009-11-13 20:12:59 +000093}
94
Josef Bacik0f9dd462008-09-23 13:14:11 -040095/*
96 * this adds the block group to the fs_info rb tree for the block group
97 * cache
98 */
Christoph Hellwigb2950862008-12-02 09:54:17 -050099static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400100 struct btrfs_block_group_cache *block_group)
101{
102 struct rb_node **p;
103 struct rb_node *parent = NULL;
104 struct btrfs_block_group_cache *cache;
105
106 spin_lock(&info->block_group_cache_lock);
107 p = &info->block_group_cache_tree.rb_node;
108
109 while (*p) {
110 parent = *p;
111 cache = rb_entry(parent, struct btrfs_block_group_cache,
112 cache_node);
113 if (block_group->key.objectid < cache->key.objectid) {
114 p = &(*p)->rb_left;
115 } else if (block_group->key.objectid > cache->key.objectid) {
116 p = &(*p)->rb_right;
117 } else {
118 spin_unlock(&info->block_group_cache_lock);
119 return -EEXIST;
120 }
121 }
122
123 rb_link_node(&block_group->cache_node, parent, p);
124 rb_insert_color(&block_group->cache_node,
125 &info->block_group_cache_tree);
126 spin_unlock(&info->block_group_cache_lock);
127
128 return 0;
129}
130
131/*
132 * This will return the block group at or after bytenr if contains is 0, else
133 * it will return the block group that contains the bytenr
134 */
135static struct btrfs_block_group_cache *
136block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
137 int contains)
138{
139 struct btrfs_block_group_cache *cache, *ret = NULL;
140 struct rb_node *n;
141 u64 end, start;
142
143 spin_lock(&info->block_group_cache_lock);
144 n = info->block_group_cache_tree.rb_node;
145
146 while (n) {
147 cache = rb_entry(n, struct btrfs_block_group_cache,
148 cache_node);
149 end = cache->key.objectid + cache->key.offset - 1;
150 start = cache->key.objectid;
151
152 if (bytenr < start) {
153 if (!contains && (!ret || start < ret->key.objectid))
154 ret = cache;
155 n = n->rb_left;
156 } else if (bytenr > start) {
157 if (contains && bytenr <= end) {
158 ret = cache;
159 break;
160 }
161 n = n->rb_right;
162 } else {
163 ret = cache;
164 break;
165 }
166 }
Yan Zhengd2fb3432008-12-11 16:30:39 -0500167 if (ret)
Josef Bacik11dfe352009-11-13 20:12:59 +0000168 btrfs_get_block_group(ret);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400169 spin_unlock(&info->block_group_cache_lock);
170
171 return ret;
172}
173
Yan Zheng11833d62009-09-11 16:11:19 -0400174static int add_excluded_extent(struct btrfs_root *root,
175 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400176{
Yan Zheng11833d62009-09-11 16:11:19 -0400177 u64 end = start + num_bytes - 1;
178 set_extent_bits(&root->fs_info->freed_extents[0],
179 start, end, EXTENT_UPTODATE, GFP_NOFS);
180 set_extent_bits(&root->fs_info->freed_extents[1],
181 start, end, EXTENT_UPTODATE, GFP_NOFS);
182 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400183}
184
Yan Zheng11833d62009-09-11 16:11:19 -0400185static void free_excluded_extents(struct btrfs_root *root,
186 struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400187{
Yan Zheng11833d62009-09-11 16:11:19 -0400188 u64 start, end;
189
190 start = cache->key.objectid;
191 end = start + cache->key.offset - 1;
192
193 clear_extent_bits(&root->fs_info->freed_extents[0],
194 start, end, EXTENT_UPTODATE, GFP_NOFS);
195 clear_extent_bits(&root->fs_info->freed_extents[1],
196 start, end, EXTENT_UPTODATE, GFP_NOFS);
197}
198
199static int exclude_super_stripes(struct btrfs_root *root,
200 struct btrfs_block_group_cache *cache)
201{
Josef Bacik817d52f2009-07-13 21:29:25 -0400202 u64 bytenr;
203 u64 *logical;
204 int stripe_len;
205 int i, nr, ret;
206
Yan, Zheng06b23312009-11-26 09:31:11 +0000207 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
208 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
209 cache->bytes_super += stripe_len;
210 ret = add_excluded_extent(root, cache->key.objectid,
211 stripe_len);
212 BUG_ON(ret);
213 }
214
Josef Bacik817d52f2009-07-13 21:29:25 -0400215 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
216 bytenr = btrfs_sb_offset(i);
217 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
218 cache->key.objectid, bytenr,
219 0, &logical, &nr, &stripe_len);
220 BUG_ON(ret);
Yan Zheng11833d62009-09-11 16:11:19 -0400221
Josef Bacik817d52f2009-07-13 21:29:25 -0400222 while (nr--) {
Josef Bacik1b2da372009-09-11 16:11:20 -0400223 cache->bytes_super += stripe_len;
Yan Zheng11833d62009-09-11 16:11:19 -0400224 ret = add_excluded_extent(root, logical[nr],
225 stripe_len);
226 BUG_ON(ret);
Josef Bacik817d52f2009-07-13 21:29:25 -0400227 }
Yan Zheng11833d62009-09-11 16:11:19 -0400228
Josef Bacik817d52f2009-07-13 21:29:25 -0400229 kfree(logical);
230 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400231 return 0;
232}
233
Yan Zheng11833d62009-09-11 16:11:19 -0400234static struct btrfs_caching_control *
235get_caching_control(struct btrfs_block_group_cache *cache)
236{
237 struct btrfs_caching_control *ctl;
238
239 spin_lock(&cache->lock);
240 if (cache->cached != BTRFS_CACHE_STARTED) {
241 spin_unlock(&cache->lock);
242 return NULL;
243 }
244
Josef Bacikdde5abe2010-09-16 16:17:03 -0400245 /* We're loading it the fast way, so we don't have a caching_ctl. */
246 if (!cache->caching_ctl) {
247 spin_unlock(&cache->lock);
248 return NULL;
249 }
250
Yan Zheng11833d62009-09-11 16:11:19 -0400251 ctl = cache->caching_ctl;
252 atomic_inc(&ctl->count);
253 spin_unlock(&cache->lock);
254 return ctl;
255}
256
257static void put_caching_control(struct btrfs_caching_control *ctl)
258{
259 if (atomic_dec_and_test(&ctl->count))
260 kfree(ctl);
261}
262
Josef Bacik0f9dd462008-09-23 13:14:11 -0400263/*
264 * this is only called by cache_block_group, since we could have freed extents
265 * we need to check the pinned_extents for any extents that can't be used yet
266 * since their free space will be released as soon as the transaction commits.
267 */
Josef Bacik817d52f2009-07-13 21:29:25 -0400268static u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400269 struct btrfs_fs_info *info, u64 start, u64 end)
270{
Josef Bacik817d52f2009-07-13 21:29:25 -0400271 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400272 int ret;
273
274 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400275 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400276 &extent_start, &extent_end,
Yan Zheng11833d62009-09-11 16:11:19 -0400277 EXTENT_DIRTY | EXTENT_UPTODATE);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400278 if (ret)
279 break;
280
Yan, Zheng06b23312009-11-26 09:31:11 +0000281 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400282 start = extent_end + 1;
283 } else if (extent_start > start && extent_start < end) {
284 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400285 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500286 ret = btrfs_add_free_space(block_group, start,
287 size);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400288 BUG_ON(ret);
289 start = extent_end + 1;
290 } else {
291 break;
292 }
293 }
294
295 if (start < end) {
296 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400297 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500298 ret = btrfs_add_free_space(block_group, start, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400299 BUG_ON(ret);
300 }
301
Josef Bacik817d52f2009-07-13 21:29:25 -0400302 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400303}
304
Josef Bacik817d52f2009-07-13 21:29:25 -0400305static int caching_kthread(void *data)
Chris Masone37c9e62007-05-09 20:13:14 -0400306{
Josef Bacik817d52f2009-07-13 21:29:25 -0400307 struct btrfs_block_group_cache *block_group = data;
308 struct btrfs_fs_info *fs_info = block_group->fs_info;
Yan Zheng11833d62009-09-11 16:11:19 -0400309 struct btrfs_caching_control *caching_ctl = block_group->caching_ctl;
310 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400311 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400312 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400313 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400314 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400315 u64 last = 0;
316 u32 nritems;
317 int ret = 0;
Chris Masonf510cfe2007-10-15 16:14:48 -0400318
Chris Masone37c9e62007-05-09 20:13:14 -0400319 path = btrfs_alloc_path();
320 if (!path)
321 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -0400322
Yan Zheng11833d62009-09-11 16:11:19 -0400323 exclude_super_stripes(extent_root, block_group);
Josef Bacik1b2da372009-09-11 16:11:20 -0400324 spin_lock(&block_group->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400325 block_group->space_info->bytes_readonly += block_group->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -0400326 spin_unlock(&block_group->space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400327
Josef Bacik817d52f2009-07-13 21:29:25 -0400328 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400329
Chris Mason5cd57b22008-06-25 16:01:30 -0400330 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400331 * We don't want to deadlock with somebody trying to allocate a new
332 * extent for the extent root while also trying to search the extent
333 * root to add free space. So we skip locking and search the commit
334 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400335 */
336 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400337 path->search_commit_root = 1;
338 path->reada = 2;
339
Yan Zhenge4404d62008-12-12 10:03:26 -0500340 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400341 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400342 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400343again:
Yan Zheng11833d62009-09-11 16:11:19 -0400344 mutex_lock(&caching_ctl->mutex);
Chris Mason013f1b12009-07-31 14:57:55 -0400345 /* need to make sure the commit_root doesn't disappear */
346 down_read(&fs_info->extent_commit_sem);
347
Yan Zheng11833d62009-09-11 16:11:19 -0400348 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400349 if (ret < 0)
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400350 goto err;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500351
Yan Zheng11833d62009-09-11 16:11:19 -0400352 leaf = path->nodes[0];
353 nritems = btrfs_header_nritems(leaf);
354
Chris Masond3977122009-01-05 21:25:51 -0500355 while (1) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400356 smp_mb();
Yan Zheng11833d62009-09-11 16:11:19 -0400357 if (fs_info->closing > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400358 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400359 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400360 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400361
Yan Zheng11833d62009-09-11 16:11:19 -0400362 if (path->slots[0] < nritems) {
363 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
364 } else {
365 ret = find_next_key(path, 0, &key);
366 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400367 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400368
Yan Zheng11833d62009-09-11 16:11:19 -0400369 caching_ctl->progress = last;
370 btrfs_release_path(extent_root, path);
371 up_read(&fs_info->extent_commit_sem);
372 mutex_unlock(&caching_ctl->mutex);
373 if (btrfs_transaction_in_commit(fs_info))
Chris Masonf36f3042009-07-30 10:04:48 -0400374 schedule_timeout(1);
Yan Zheng11833d62009-09-11 16:11:19 -0400375 else
376 cond_resched();
377 goto again;
378 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400379
Yan Zheng11833d62009-09-11 16:11:19 -0400380 if (key.objectid < block_group->key.objectid) {
381 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400382 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400383 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400384
Chris Masone37c9e62007-05-09 20:13:14 -0400385 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400386 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400387 break;
Yan7d7d6062007-09-14 16:15:28 -0400388
Yan Zheng11833d62009-09-11 16:11:19 -0400389 if (key.type == BTRFS_EXTENT_ITEM_KEY) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400390 total_found += add_new_free_space(block_group,
391 fs_info, last,
392 key.objectid);
Yan7d7d6062007-09-14 16:15:28 -0400393 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400394
Yan Zheng11833d62009-09-11 16:11:19 -0400395 if (total_found > (1024 * 1024 * 2)) {
396 total_found = 0;
397 wake_up(&caching_ctl->wait);
398 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400399 }
Chris Masone37c9e62007-05-09 20:13:14 -0400400 path->slots[0]++;
401 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400402 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400403
404 total_found += add_new_free_space(block_group, fs_info, last,
405 block_group->key.objectid +
406 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400407 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400408
409 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400410 block_group->caching_ctl = NULL;
Josef Bacik817d52f2009-07-13 21:29:25 -0400411 block_group->cached = BTRFS_CACHE_FINISHED;
412 spin_unlock(&block_group->lock);
413
Chris Mason54aa1f42007-06-22 14:16:25 -0400414err:
Chris Masone37c9e62007-05-09 20:13:14 -0400415 btrfs_free_path(path);
Yan Zheng276e6802009-07-30 09:40:40 -0400416 up_read(&fs_info->extent_commit_sem);
Josef Bacik817d52f2009-07-13 21:29:25 -0400417
Yan Zheng11833d62009-09-11 16:11:19 -0400418 free_excluded_extents(extent_root, block_group);
419
420 mutex_unlock(&caching_ctl->mutex);
421 wake_up(&caching_ctl->wait);
422
423 put_caching_control(caching_ctl);
424 atomic_dec(&block_group->space_info->caching_threads);
Josef Bacik11dfe352009-11-13 20:12:59 +0000425 btrfs_put_block_group(block_group);
426
Josef Bacik817d52f2009-07-13 21:29:25 -0400427 return 0;
428}
429
Josef Bacik9d66e232010-08-25 16:54:15 -0400430static int cache_block_group(struct btrfs_block_group_cache *cache,
431 struct btrfs_trans_handle *trans,
432 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400433{
Yan Zheng11833d62009-09-11 16:11:19 -0400434 struct btrfs_fs_info *fs_info = cache->fs_info;
435 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400436 struct task_struct *tsk;
437 int ret = 0;
438
Yan Zheng11833d62009-09-11 16:11:19 -0400439 smp_mb();
440 if (cache->cached != BTRFS_CACHE_NO)
441 return 0;
442
Josef Bacik9d66e232010-08-25 16:54:15 -0400443 /*
444 * We can't do the read from on-disk cache during a commit since we need
445 * to have the normal tree locking.
446 */
447 if (!trans->transaction->in_commit) {
448 spin_lock(&cache->lock);
449 if (cache->cached != BTRFS_CACHE_NO) {
450 spin_unlock(&cache->lock);
451 return 0;
452 }
453 cache->cached = BTRFS_CACHE_STARTED;
454 spin_unlock(&cache->lock);
455
456 ret = load_free_space_cache(fs_info, cache);
457
458 spin_lock(&cache->lock);
459 if (ret == 1) {
460 cache->cached = BTRFS_CACHE_FINISHED;
461 cache->last_byte_to_unpin = (u64)-1;
462 } else {
463 cache->cached = BTRFS_CACHE_NO;
464 }
465 spin_unlock(&cache->lock);
466 if (ret == 1)
467 return 0;
468 }
469
470 if (load_cache_only)
471 return 0;
472
Yan Zheng11833d62009-09-11 16:11:19 -0400473 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_KERNEL);
474 BUG_ON(!caching_ctl);
475
476 INIT_LIST_HEAD(&caching_ctl->list);
477 mutex_init(&caching_ctl->mutex);
478 init_waitqueue_head(&caching_ctl->wait);
479 caching_ctl->block_group = cache;
480 caching_ctl->progress = cache->key.objectid;
481 /* one for caching kthread, one for caching block group list */
482 atomic_set(&caching_ctl->count, 2);
483
Josef Bacik817d52f2009-07-13 21:29:25 -0400484 spin_lock(&cache->lock);
485 if (cache->cached != BTRFS_CACHE_NO) {
486 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400487 kfree(caching_ctl);
488 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400489 }
Yan Zheng11833d62009-09-11 16:11:19 -0400490 cache->caching_ctl = caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400491 cache->cached = BTRFS_CACHE_STARTED;
492 spin_unlock(&cache->lock);
493
Yan Zheng11833d62009-09-11 16:11:19 -0400494 down_write(&fs_info->extent_commit_sem);
495 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
496 up_write(&fs_info->extent_commit_sem);
497
498 atomic_inc(&cache->space_info->caching_threads);
Josef Bacik11dfe352009-11-13 20:12:59 +0000499 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400500
Josef Bacik817d52f2009-07-13 21:29:25 -0400501 tsk = kthread_run(caching_kthread, cache, "btrfs-cache-%llu\n",
502 cache->key.objectid);
503 if (IS_ERR(tsk)) {
504 ret = PTR_ERR(tsk);
505 printk(KERN_ERR "error running thread %d\n", ret);
506 BUG();
507 }
508
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400509 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400510}
511
Josef Bacik0f9dd462008-09-23 13:14:11 -0400512/*
513 * return the block group that starts at or after bytenr
514 */
Chris Masond3977122009-01-05 21:25:51 -0500515static struct btrfs_block_group_cache *
516btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400517{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400518 struct btrfs_block_group_cache *cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400519
Josef Bacik0f9dd462008-09-23 13:14:11 -0400520 cache = block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400521
Josef Bacik0f9dd462008-09-23 13:14:11 -0400522 return cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400523}
524
Josef Bacik0f9dd462008-09-23 13:14:11 -0400525/*
Sankar P9f556842009-05-14 13:52:22 -0400526 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400527 */
Chris Masond3977122009-01-05 21:25:51 -0500528struct btrfs_block_group_cache *btrfs_lookup_block_group(
529 struct btrfs_fs_info *info,
530 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400531{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400532 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -0400533
Josef Bacik0f9dd462008-09-23 13:14:11 -0400534 cache = block_group_cache_tree_search(info, bytenr, 1);
Chris Mason96b51792007-10-15 16:15:19 -0400535
Josef Bacik0f9dd462008-09-23 13:14:11 -0400536 return cache;
Chris Masonbe744172007-05-06 10:15:01 -0400537}
Chris Mason0b86a832008-03-24 15:01:56 -0400538
Josef Bacik0f9dd462008-09-23 13:14:11 -0400539static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
540 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400541{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400542 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400543 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400544
Yan, Zhengb742bb82010-05-16 10:46:24 -0400545 flags &= BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_SYSTEM |
546 BTRFS_BLOCK_GROUP_METADATA;
547
Chris Mason4184ea72009-03-10 12:39:20 -0400548 rcu_read_lock();
549 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400550 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400551 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400552 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400553 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400554 }
Chris Mason4184ea72009-03-10 12:39:20 -0400555 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400556 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400557}
558
Chris Mason4184ea72009-03-10 12:39:20 -0400559/*
560 * after adding space to the filesystem, we need to clear the full flags
561 * on all the space infos.
562 */
563void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
564{
565 struct list_head *head = &info->space_info;
566 struct btrfs_space_info *found;
567
568 rcu_read_lock();
569 list_for_each_entry_rcu(found, head, list)
570 found->full = 0;
571 rcu_read_unlock();
572}
573
Josef Bacik80eb2342008-10-29 14:49:05 -0400574static u64 div_factor(u64 num, int factor)
575{
576 if (factor == 10)
577 return num;
578 num *= factor;
579 do_div(num, 10);
580 return num;
581}
582
Chris Masone5bc2452010-10-26 13:37:56 -0400583static u64 div_factor_fine(u64 num, int factor)
584{
585 if (factor == 100)
586 return num;
587 num *= factor;
588 do_div(num, 100);
589 return num;
590}
591
Yan Zhengd2fb3432008-12-11 16:30:39 -0500592u64 btrfs_find_block_group(struct btrfs_root *root,
593 u64 search_start, u64 search_hint, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400594{
Chris Mason96b51792007-10-15 16:15:19 -0400595 struct btrfs_block_group_cache *cache;
Chris Masoncd1bc462007-04-27 10:08:34 -0400596 u64 used;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500597 u64 last = max(search_hint, search_start);
598 u64 group_start = 0;
Chris Mason31f3c992007-04-30 15:25:45 -0400599 int full_search = 0;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500600 int factor = 9;
Chris Mason0ef3e662008-05-24 14:04:53 -0400601 int wrapped = 0;
Chris Mason31f3c992007-04-30 15:25:45 -0400602again:
Zheng Yane8569812008-09-26 10:05:48 -0400603 while (1) {
604 cache = btrfs_lookup_first_block_group(root->fs_info, last);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400605 if (!cache)
Chris Masoncd1bc462007-04-27 10:08:34 -0400606 break;
Chris Mason96b51792007-10-15 16:15:19 -0400607
Chris Masonc286ac42008-07-22 23:06:41 -0400608 spin_lock(&cache->lock);
Chris Mason96b51792007-10-15 16:15:19 -0400609 last = cache->key.objectid + cache->key.offset;
610 used = btrfs_block_group_used(&cache->item);
611
Yan Zhengd2fb3432008-12-11 16:30:39 -0500612 if ((full_search || !cache->ro) &&
613 block_group_bits(cache, BTRFS_BLOCK_GROUP_METADATA)) {
Zheng Yane8569812008-09-26 10:05:48 -0400614 if (used + cache->pinned + cache->reserved <
Yan Zhengd2fb3432008-12-11 16:30:39 -0500615 div_factor(cache->key.offset, factor)) {
616 group_start = cache->key.objectid;
Chris Masonc286ac42008-07-22 23:06:41 -0400617 spin_unlock(&cache->lock);
Chris Masonfa9c0d72009-04-03 09:47:43 -0400618 btrfs_put_block_group(cache);
Chris Mason8790d502008-04-03 16:29:03 -0400619 goto found;
620 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400621 }
Chris Masonc286ac42008-07-22 23:06:41 -0400622 spin_unlock(&cache->lock);
Chris Masonfa9c0d72009-04-03 09:47:43 -0400623 btrfs_put_block_group(cache);
Chris Masonde428b62007-05-18 13:28:27 -0400624 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400625 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400626 if (!wrapped) {
627 last = search_start;
628 wrapped = 1;
629 goto again;
630 }
631 if (!full_search && factor < 10) {
Chris Masonbe744172007-05-06 10:15:01 -0400632 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400633 full_search = 1;
Chris Mason0ef3e662008-05-24 14:04:53 -0400634 factor = 10;
Chris Mason31f3c992007-04-30 15:25:45 -0400635 goto again;
636 }
Chris Masonbe744172007-05-06 10:15:01 -0400637found:
Yan Zhengd2fb3432008-12-11 16:30:39 -0500638 return group_start;
Chris Mason925baed2008-06-25 16:01:30 -0400639}
Josef Bacik0f9dd462008-09-23 13:14:11 -0400640
Chris Masone02119d2008-09-05 16:13:11 -0400641/* simple helper to search for an existing extent at a given offset */
Zheng Yan31840ae2008-09-23 13:14:14 -0400642int btrfs_lookup_extent(struct btrfs_root *root, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400643{
644 int ret;
645 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400646 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400647
Zheng Yan31840ae2008-09-23 13:14:14 -0400648 path = btrfs_alloc_path();
649 BUG_ON(!path);
Chris Masone02119d2008-09-05 16:13:11 -0400650 key.objectid = start;
651 key.offset = len;
652 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
653 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
654 0, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400655 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500656 return ret;
657}
658
Chris Masond8d5f3e2007-12-11 12:42:00 -0500659/*
Yan, Zhenga22285a2010-05-16 10:48:46 -0400660 * helper function to lookup reference count and flags of extent.
661 *
662 * the head node for delayed ref is used to store the sum of all the
663 * reference count modifications queued up in the rbtree. the head
664 * node may also store the extent flags to set. This way you can check
665 * to see what the reference count and extent flags would be if all of
666 * the delayed refs are not processed.
667 */
668int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
669 struct btrfs_root *root, u64 bytenr,
670 u64 num_bytes, u64 *refs, u64 *flags)
671{
672 struct btrfs_delayed_ref_head *head;
673 struct btrfs_delayed_ref_root *delayed_refs;
674 struct btrfs_path *path;
675 struct btrfs_extent_item *ei;
676 struct extent_buffer *leaf;
677 struct btrfs_key key;
678 u32 item_size;
679 u64 num_refs;
680 u64 extent_flags;
681 int ret;
682
683 path = btrfs_alloc_path();
684 if (!path)
685 return -ENOMEM;
686
687 key.objectid = bytenr;
688 key.type = BTRFS_EXTENT_ITEM_KEY;
689 key.offset = num_bytes;
690 if (!trans) {
691 path->skip_locking = 1;
692 path->search_commit_root = 1;
693 }
694again:
695 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
696 &key, path, 0, 0);
697 if (ret < 0)
698 goto out_free;
699
700 if (ret == 0) {
701 leaf = path->nodes[0];
702 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
703 if (item_size >= sizeof(*ei)) {
704 ei = btrfs_item_ptr(leaf, path->slots[0],
705 struct btrfs_extent_item);
706 num_refs = btrfs_extent_refs(leaf, ei);
707 extent_flags = btrfs_extent_flags(leaf, ei);
708 } else {
709#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
710 struct btrfs_extent_item_v0 *ei0;
711 BUG_ON(item_size != sizeof(*ei0));
712 ei0 = btrfs_item_ptr(leaf, path->slots[0],
713 struct btrfs_extent_item_v0);
714 num_refs = btrfs_extent_refs_v0(leaf, ei0);
715 /* FIXME: this isn't correct for data */
716 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
717#else
718 BUG();
719#endif
720 }
721 BUG_ON(num_refs == 0);
722 } else {
723 num_refs = 0;
724 extent_flags = 0;
725 ret = 0;
726 }
727
728 if (!trans)
729 goto out;
730
731 delayed_refs = &trans->transaction->delayed_refs;
732 spin_lock(&delayed_refs->lock);
733 head = btrfs_find_delayed_ref_head(trans, bytenr);
734 if (head) {
735 if (!mutex_trylock(&head->mutex)) {
736 atomic_inc(&head->node.refs);
737 spin_unlock(&delayed_refs->lock);
738
739 btrfs_release_path(root->fs_info->extent_root, path);
740
741 mutex_lock(&head->mutex);
742 mutex_unlock(&head->mutex);
743 btrfs_put_delayed_ref(&head->node);
744 goto again;
745 }
746 if (head->extent_op && head->extent_op->update_flags)
747 extent_flags |= head->extent_op->flags_to_set;
748 else
749 BUG_ON(num_refs == 0);
750
751 num_refs += head->node.ref_mod;
752 mutex_unlock(&head->mutex);
753 }
754 spin_unlock(&delayed_refs->lock);
755out:
756 WARN_ON(num_refs == 0);
757 if (refs)
758 *refs = num_refs;
759 if (flags)
760 *flags = extent_flags;
761out_free:
762 btrfs_free_path(path);
763 return ret;
764}
765
766/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500767 * Back reference rules. Back refs have three main goals:
768 *
769 * 1) differentiate between all holders of references to an extent so that
770 * when a reference is dropped we can make sure it was a valid reference
771 * before freeing the extent.
772 *
773 * 2) Provide enough information to quickly find the holders of an extent
774 * if we notice a given block is corrupted or bad.
775 *
776 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
777 * maintenance. This is actually the same as #2, but with a slightly
778 * different use case.
779 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400780 * There are two kinds of back refs. The implicit back refs is optimized
781 * for pointers in non-shared tree blocks. For a given pointer in a block,
782 * back refs of this kind provide information about the block's owner tree
783 * and the pointer's key. These information allow us to find the block by
784 * b-tree searching. The full back refs is for pointers in tree blocks not
785 * referenced by their owner trees. The location of tree block is recorded
786 * in the back refs. Actually the full back refs is generic, and can be
787 * used in all cases the implicit back refs is used. The major shortcoming
788 * of the full back refs is its overhead. Every time a tree block gets
789 * COWed, we have to update back refs entry for all pointers in it.
790 *
791 * For a newly allocated tree block, we use implicit back refs for
792 * pointers in it. This means most tree related operations only involve
793 * implicit back refs. For a tree block created in old transaction, the
794 * only way to drop a reference to it is COW it. So we can detect the
795 * event that tree block loses its owner tree's reference and do the
796 * back refs conversion.
797 *
798 * When a tree block is COW'd through a tree, there are four cases:
799 *
800 * The reference count of the block is one and the tree is the block's
801 * owner tree. Nothing to do in this case.
802 *
803 * The reference count of the block is one and the tree is not the
804 * block's owner tree. In this case, full back refs is used for pointers
805 * in the block. Remove these full back refs, add implicit back refs for
806 * every pointers in the new block.
807 *
808 * The reference count of the block is greater than one and the tree is
809 * the block's owner tree. In this case, implicit back refs is used for
810 * pointers in the block. Add full back refs for every pointers in the
811 * block, increase lower level extents' reference counts. The original
812 * implicit back refs are entailed to the new block.
813 *
814 * The reference count of the block is greater than one and the tree is
815 * not the block's owner tree. Add implicit back refs for every pointer in
816 * the new block, increase lower level extents' reference count.
817 *
818 * Back Reference Key composing:
819 *
820 * The key objectid corresponds to the first byte in the extent,
821 * The key type is used to differentiate between types of back refs.
822 * There are different meanings of the key offset for different types
823 * of back refs.
824 *
Chris Masond8d5f3e2007-12-11 12:42:00 -0500825 * File extents can be referenced by:
826 *
827 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -0400828 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -0500829 * - different offsets inside a file (bookend extents in file.c)
830 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400831 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500832 *
833 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -0500834 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400835 * - original offset in the file
836 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -0400837 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400838 * The key offset for the implicit back refs is hash of the first
839 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500840 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400841 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500842 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400843 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500844 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400845 * The key offset for the implicit back refs is the first byte of
846 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500847 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400848 * When a file extent is allocated, The implicit back refs is used.
849 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500850 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400851 * (root_key.objectid, inode objectid, offset in file, 1)
852 *
853 * When a file extent is removed file truncation, we find the
854 * corresponding implicit back refs and check the following fields:
855 *
856 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500857 *
858 * Btree extents can be referenced by:
859 *
860 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -0500861 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400862 * Both the implicit back refs and the full back refs for tree blocks
863 * only consist of key. The key offset for the implicit back refs is
864 * objectid of block's owner tree. The key offset for the full back refs
865 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500866 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400867 * When implicit back refs is used, information about the lowest key and
868 * level of the tree block are required. These information are stored in
869 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500870 */
Zheng Yan31840ae2008-09-23 13:14:14 -0400871
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400872#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
873static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
874 struct btrfs_root *root,
875 struct btrfs_path *path,
876 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -0500877{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400878 struct btrfs_extent_item *item;
879 struct btrfs_extent_item_v0 *ei0;
880 struct btrfs_extent_ref_v0 *ref0;
881 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -0400882 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400883 struct btrfs_key key;
884 struct btrfs_key found_key;
885 u32 new_size = sizeof(*item);
886 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -0500887 int ret;
888
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400889 leaf = path->nodes[0];
890 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -0500891
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400892 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
893 ei0 = btrfs_item_ptr(leaf, path->slots[0],
894 struct btrfs_extent_item_v0);
895 refs = btrfs_extent_refs_v0(leaf, ei0);
896
897 if (owner == (u64)-1) {
898 while (1) {
899 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
900 ret = btrfs_next_leaf(root, path);
901 if (ret < 0)
902 return ret;
903 BUG_ON(ret > 0);
904 leaf = path->nodes[0];
905 }
906 btrfs_item_key_to_cpu(leaf, &found_key,
907 path->slots[0]);
908 BUG_ON(key.objectid != found_key.objectid);
909 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
910 path->slots[0]++;
911 continue;
912 }
913 ref0 = btrfs_item_ptr(leaf, path->slots[0],
914 struct btrfs_extent_ref_v0);
915 owner = btrfs_ref_objectid_v0(leaf, ref0);
916 break;
917 }
918 }
919 btrfs_release_path(root, path);
920
921 if (owner < BTRFS_FIRST_FREE_OBJECTID)
922 new_size += sizeof(*bi);
923
924 new_size -= sizeof(*ei0);
925 ret = btrfs_search_slot(trans, root, &key, path,
926 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -0400927 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400928 return ret;
929 BUG_ON(ret);
930
931 ret = btrfs_extend_item(trans, root, path, new_size);
932 BUG_ON(ret);
933
934 leaf = path->nodes[0];
935 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
936 btrfs_set_extent_refs(leaf, item, refs);
937 /* FIXME: get real generation */
938 btrfs_set_extent_generation(leaf, item, 0);
939 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
940 btrfs_set_extent_flags(leaf, item,
941 BTRFS_EXTENT_FLAG_TREE_BLOCK |
942 BTRFS_BLOCK_FLAG_FULL_BACKREF);
943 bi = (struct btrfs_tree_block_info *)(item + 1);
944 /* FIXME: get first key of the block */
945 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
946 btrfs_set_tree_block_level(leaf, bi, (int)owner);
947 } else {
948 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
949 }
950 btrfs_mark_buffer_dirty(leaf);
951 return 0;
952}
953#endif
954
955static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
956{
957 u32 high_crc = ~(u32)0;
958 u32 low_crc = ~(u32)0;
959 __le64 lenum;
960
961 lenum = cpu_to_le64(root_objectid);
David Woodhouse163e7832009-04-19 13:02:41 +0100962 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400963 lenum = cpu_to_le64(owner);
David Woodhouse163e7832009-04-19 13:02:41 +0100964 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400965 lenum = cpu_to_le64(offset);
David Woodhouse163e7832009-04-19 13:02:41 +0100966 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400967
968 return ((u64)high_crc << 31) ^ (u64)low_crc;
969}
970
971static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
972 struct btrfs_extent_data_ref *ref)
973{
974 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
975 btrfs_extent_data_ref_objectid(leaf, ref),
976 btrfs_extent_data_ref_offset(leaf, ref));
977}
978
979static int match_extent_data_ref(struct extent_buffer *leaf,
980 struct btrfs_extent_data_ref *ref,
981 u64 root_objectid, u64 owner, u64 offset)
982{
983 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
984 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
985 btrfs_extent_data_ref_offset(leaf, ref) != offset)
986 return 0;
987 return 1;
988}
989
990static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
991 struct btrfs_root *root,
992 struct btrfs_path *path,
993 u64 bytenr, u64 parent,
994 u64 root_objectid,
995 u64 owner, u64 offset)
996{
997 struct btrfs_key key;
998 struct btrfs_extent_data_ref *ref;
999 struct extent_buffer *leaf;
1000 u32 nritems;
1001 int ret;
1002 int recow;
1003 int err = -ENOENT;
1004
1005 key.objectid = bytenr;
1006 if (parent) {
1007 key.type = BTRFS_SHARED_DATA_REF_KEY;
1008 key.offset = parent;
1009 } else {
1010 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1011 key.offset = hash_extent_data_ref(root_objectid,
1012 owner, offset);
1013 }
1014again:
1015 recow = 0;
1016 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1017 if (ret < 0) {
1018 err = ret;
1019 goto fail;
1020 }
1021
1022 if (parent) {
1023 if (!ret)
1024 return 0;
1025#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1026 key.type = BTRFS_EXTENT_REF_V0_KEY;
1027 btrfs_release_path(root, path);
1028 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1029 if (ret < 0) {
1030 err = ret;
1031 goto fail;
1032 }
1033 if (!ret)
1034 return 0;
1035#endif
1036 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001037 }
1038
1039 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001040 nritems = btrfs_header_nritems(leaf);
1041 while (1) {
1042 if (path->slots[0] >= nritems) {
1043 ret = btrfs_next_leaf(root, path);
1044 if (ret < 0)
1045 err = ret;
1046 if (ret)
1047 goto fail;
1048
1049 leaf = path->nodes[0];
1050 nritems = btrfs_header_nritems(leaf);
1051 recow = 1;
1052 }
1053
1054 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1055 if (key.objectid != bytenr ||
1056 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1057 goto fail;
1058
1059 ref = btrfs_item_ptr(leaf, path->slots[0],
1060 struct btrfs_extent_data_ref);
1061
1062 if (match_extent_data_ref(leaf, ref, root_objectid,
1063 owner, offset)) {
1064 if (recow) {
1065 btrfs_release_path(root, path);
1066 goto again;
1067 }
1068 err = 0;
1069 break;
1070 }
1071 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001072 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001073fail:
1074 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001075}
1076
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001077static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1078 struct btrfs_root *root,
1079 struct btrfs_path *path,
1080 u64 bytenr, u64 parent,
1081 u64 root_objectid, u64 owner,
1082 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001083{
1084 struct btrfs_key key;
1085 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001086 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001087 u32 num_refs;
1088 int ret;
1089
1090 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001091 if (parent) {
1092 key.type = BTRFS_SHARED_DATA_REF_KEY;
1093 key.offset = parent;
1094 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001095 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001096 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1097 key.offset = hash_extent_data_ref(root_objectid,
1098 owner, offset);
1099 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001100 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001101
1102 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1103 if (ret && ret != -EEXIST)
1104 goto fail;
1105
1106 leaf = path->nodes[0];
1107 if (parent) {
1108 struct btrfs_shared_data_ref *ref;
1109 ref = btrfs_item_ptr(leaf, path->slots[0],
1110 struct btrfs_shared_data_ref);
1111 if (ret == 0) {
1112 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1113 } else {
1114 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1115 num_refs += refs_to_add;
1116 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1117 }
1118 } else {
1119 struct btrfs_extent_data_ref *ref;
1120 while (ret == -EEXIST) {
1121 ref = btrfs_item_ptr(leaf, path->slots[0],
1122 struct btrfs_extent_data_ref);
1123 if (match_extent_data_ref(leaf, ref, root_objectid,
1124 owner, offset))
1125 break;
1126 btrfs_release_path(root, path);
1127 key.offset++;
1128 ret = btrfs_insert_empty_item(trans, root, path, &key,
1129 size);
1130 if (ret && ret != -EEXIST)
1131 goto fail;
1132
1133 leaf = path->nodes[0];
1134 }
1135 ref = btrfs_item_ptr(leaf, path->slots[0],
1136 struct btrfs_extent_data_ref);
1137 if (ret == 0) {
1138 btrfs_set_extent_data_ref_root(leaf, ref,
1139 root_objectid);
1140 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1141 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1142 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1143 } else {
1144 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1145 num_refs += refs_to_add;
1146 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1147 }
1148 }
1149 btrfs_mark_buffer_dirty(leaf);
1150 ret = 0;
1151fail:
Chris Mason7bb86312007-12-11 09:25:06 -05001152 btrfs_release_path(root, path);
1153 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001154}
1155
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001156static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1157 struct btrfs_root *root,
1158 struct btrfs_path *path,
1159 int refs_to_drop)
Zheng Yan31840ae2008-09-23 13:14:14 -04001160{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001161 struct btrfs_key key;
1162 struct btrfs_extent_data_ref *ref1 = NULL;
1163 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001164 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001165 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001166 int ret = 0;
1167
1168 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001169 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1170
1171 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1172 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1173 struct btrfs_extent_data_ref);
1174 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1175 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1176 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1177 struct btrfs_shared_data_ref);
1178 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1179#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1180 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1181 struct btrfs_extent_ref_v0 *ref0;
1182 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1183 struct btrfs_extent_ref_v0);
1184 num_refs = btrfs_ref_count_v0(leaf, ref0);
1185#endif
1186 } else {
1187 BUG();
1188 }
1189
Chris Mason56bec292009-03-13 10:10:06 -04001190 BUG_ON(num_refs < refs_to_drop);
1191 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001192
Zheng Yan31840ae2008-09-23 13:14:14 -04001193 if (num_refs == 0) {
1194 ret = btrfs_del_item(trans, root, path);
1195 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001196 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1197 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1198 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1199 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1200#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1201 else {
1202 struct btrfs_extent_ref_v0 *ref0;
1203 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1204 struct btrfs_extent_ref_v0);
1205 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1206 }
1207#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001208 btrfs_mark_buffer_dirty(leaf);
1209 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001210 return ret;
1211}
1212
1213static noinline u32 extent_data_ref_count(struct btrfs_root *root,
1214 struct btrfs_path *path,
1215 struct btrfs_extent_inline_ref *iref)
1216{
1217 struct btrfs_key key;
1218 struct extent_buffer *leaf;
1219 struct btrfs_extent_data_ref *ref1;
1220 struct btrfs_shared_data_ref *ref2;
1221 u32 num_refs = 0;
1222
1223 leaf = path->nodes[0];
1224 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1225 if (iref) {
1226 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1227 BTRFS_EXTENT_DATA_REF_KEY) {
1228 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1229 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1230 } else {
1231 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1232 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1233 }
1234 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1235 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1236 struct btrfs_extent_data_ref);
1237 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1238 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1239 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1240 struct btrfs_shared_data_ref);
1241 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1242#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1243 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1244 struct btrfs_extent_ref_v0 *ref0;
1245 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1246 struct btrfs_extent_ref_v0);
1247 num_refs = btrfs_ref_count_v0(leaf, ref0);
1248#endif
1249 } else {
1250 WARN_ON(1);
1251 }
1252 return num_refs;
1253}
1254
1255static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1256 struct btrfs_root *root,
1257 struct btrfs_path *path,
1258 u64 bytenr, u64 parent,
1259 u64 root_objectid)
1260{
1261 struct btrfs_key key;
1262 int ret;
1263
1264 key.objectid = bytenr;
1265 if (parent) {
1266 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1267 key.offset = parent;
1268 } else {
1269 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1270 key.offset = root_objectid;
1271 }
1272
1273 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1274 if (ret > 0)
1275 ret = -ENOENT;
1276#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1277 if (ret == -ENOENT && parent) {
1278 btrfs_release_path(root, path);
1279 key.type = BTRFS_EXTENT_REF_V0_KEY;
1280 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1281 if (ret > 0)
1282 ret = -ENOENT;
1283 }
1284#endif
1285 return ret;
1286}
1287
1288static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1289 struct btrfs_root *root,
1290 struct btrfs_path *path,
1291 u64 bytenr, u64 parent,
1292 u64 root_objectid)
1293{
1294 struct btrfs_key key;
1295 int ret;
1296
1297 key.objectid = bytenr;
1298 if (parent) {
1299 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1300 key.offset = parent;
1301 } else {
1302 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1303 key.offset = root_objectid;
1304 }
1305
1306 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04001307 btrfs_release_path(root, path);
1308 return ret;
1309}
1310
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001311static inline int extent_ref_type(u64 parent, u64 owner)
1312{
1313 int type;
1314 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1315 if (parent > 0)
1316 type = BTRFS_SHARED_BLOCK_REF_KEY;
1317 else
1318 type = BTRFS_TREE_BLOCK_REF_KEY;
1319 } else {
1320 if (parent > 0)
1321 type = BTRFS_SHARED_DATA_REF_KEY;
1322 else
1323 type = BTRFS_EXTENT_DATA_REF_KEY;
1324 }
1325 return type;
1326}
1327
Yan Zheng2c47e6052009-06-27 21:07:35 -04001328static int find_next_key(struct btrfs_path *path, int level,
1329 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001330
1331{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001332 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001333 if (!path->nodes[level])
1334 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001335 if (path->slots[level] + 1 >=
1336 btrfs_header_nritems(path->nodes[level]))
1337 continue;
1338 if (level == 0)
1339 btrfs_item_key_to_cpu(path->nodes[level], key,
1340 path->slots[level] + 1);
1341 else
1342 btrfs_node_key_to_cpu(path->nodes[level], key,
1343 path->slots[level] + 1);
1344 return 0;
1345 }
1346 return 1;
1347}
1348
1349/*
1350 * look for inline back ref. if back ref is found, *ref_ret is set
1351 * to the address of inline back ref, and 0 is returned.
1352 *
1353 * if back ref isn't found, *ref_ret is set to the address where it
1354 * should be inserted, and -ENOENT is returned.
1355 *
1356 * if insert is true and there are too many inline back refs, the path
1357 * points to the extent item, and -EAGAIN is returned.
1358 *
1359 * NOTE: inline back refs are ordered in the same way that back ref
1360 * items in the tree are ordered.
1361 */
1362static noinline_for_stack
1363int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1364 struct btrfs_root *root,
1365 struct btrfs_path *path,
1366 struct btrfs_extent_inline_ref **ref_ret,
1367 u64 bytenr, u64 num_bytes,
1368 u64 parent, u64 root_objectid,
1369 u64 owner, u64 offset, int insert)
1370{
1371 struct btrfs_key key;
1372 struct extent_buffer *leaf;
1373 struct btrfs_extent_item *ei;
1374 struct btrfs_extent_inline_ref *iref;
1375 u64 flags;
1376 u64 item_size;
1377 unsigned long ptr;
1378 unsigned long end;
1379 int extra_size;
1380 int type;
1381 int want;
1382 int ret;
1383 int err = 0;
1384
1385 key.objectid = bytenr;
1386 key.type = BTRFS_EXTENT_ITEM_KEY;
1387 key.offset = num_bytes;
1388
1389 want = extent_ref_type(parent, owner);
1390 if (insert) {
1391 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001392 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001393 } else
1394 extra_size = -1;
1395 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1396 if (ret < 0) {
1397 err = ret;
1398 goto out;
1399 }
1400 BUG_ON(ret);
1401
1402 leaf = path->nodes[0];
1403 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1404#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1405 if (item_size < sizeof(*ei)) {
1406 if (!insert) {
1407 err = -ENOENT;
1408 goto out;
1409 }
1410 ret = convert_extent_item_v0(trans, root, path, owner,
1411 extra_size);
1412 if (ret < 0) {
1413 err = ret;
1414 goto out;
1415 }
1416 leaf = path->nodes[0];
1417 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1418 }
1419#endif
1420 BUG_ON(item_size < sizeof(*ei));
1421
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001422 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1423 flags = btrfs_extent_flags(leaf, ei);
1424
1425 ptr = (unsigned long)(ei + 1);
1426 end = (unsigned long)ei + item_size;
1427
1428 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
1429 ptr += sizeof(struct btrfs_tree_block_info);
1430 BUG_ON(ptr > end);
1431 } else {
1432 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_DATA));
1433 }
1434
1435 err = -ENOENT;
1436 while (1) {
1437 if (ptr >= end) {
1438 WARN_ON(ptr > end);
1439 break;
1440 }
1441 iref = (struct btrfs_extent_inline_ref *)ptr;
1442 type = btrfs_extent_inline_ref_type(leaf, iref);
1443 if (want < type)
1444 break;
1445 if (want > type) {
1446 ptr += btrfs_extent_inline_ref_size(type);
1447 continue;
1448 }
1449
1450 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1451 struct btrfs_extent_data_ref *dref;
1452 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1453 if (match_extent_data_ref(leaf, dref, root_objectid,
1454 owner, offset)) {
1455 err = 0;
1456 break;
1457 }
1458 if (hash_extent_data_ref_item(leaf, dref) <
1459 hash_extent_data_ref(root_objectid, owner, offset))
1460 break;
1461 } else {
1462 u64 ref_offset;
1463 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1464 if (parent > 0) {
1465 if (parent == ref_offset) {
1466 err = 0;
1467 break;
1468 }
1469 if (ref_offset < parent)
1470 break;
1471 } else {
1472 if (root_objectid == ref_offset) {
1473 err = 0;
1474 break;
1475 }
1476 if (ref_offset < root_objectid)
1477 break;
1478 }
1479 }
1480 ptr += btrfs_extent_inline_ref_size(type);
1481 }
1482 if (err == -ENOENT && insert) {
1483 if (item_size + extra_size >=
1484 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1485 err = -EAGAIN;
1486 goto out;
1487 }
1488 /*
1489 * To add new inline back ref, we have to make sure
1490 * there is no corresponding back ref item.
1491 * For simplicity, we just do not add new inline back
1492 * ref if there is any kind of item for this block
1493 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001494 if (find_next_key(path, 0, &key) == 0 &&
1495 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001496 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001497 err = -EAGAIN;
1498 goto out;
1499 }
1500 }
1501 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1502out:
Yan Zheng85d41982009-06-11 08:51:10 -04001503 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001504 path->keep_locks = 0;
1505 btrfs_unlock_up_safe(path, 1);
1506 }
1507 return err;
1508}
1509
1510/*
1511 * helper to add new inline back ref
1512 */
1513static noinline_for_stack
1514int setup_inline_extent_backref(struct btrfs_trans_handle *trans,
1515 struct btrfs_root *root,
1516 struct btrfs_path *path,
1517 struct btrfs_extent_inline_ref *iref,
1518 u64 parent, u64 root_objectid,
1519 u64 owner, u64 offset, int refs_to_add,
1520 struct btrfs_delayed_extent_op *extent_op)
1521{
1522 struct extent_buffer *leaf;
1523 struct btrfs_extent_item *ei;
1524 unsigned long ptr;
1525 unsigned long end;
1526 unsigned long item_offset;
1527 u64 refs;
1528 int size;
1529 int type;
1530 int ret;
1531
1532 leaf = path->nodes[0];
1533 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1534 item_offset = (unsigned long)iref - (unsigned long)ei;
1535
1536 type = extent_ref_type(parent, owner);
1537 size = btrfs_extent_inline_ref_size(type);
1538
1539 ret = btrfs_extend_item(trans, root, path, size);
1540 BUG_ON(ret);
1541
1542 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1543 refs = btrfs_extent_refs(leaf, ei);
1544 refs += refs_to_add;
1545 btrfs_set_extent_refs(leaf, ei, refs);
1546 if (extent_op)
1547 __run_delayed_extent_op(extent_op, leaf, ei);
1548
1549 ptr = (unsigned long)ei + item_offset;
1550 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1551 if (ptr < end - size)
1552 memmove_extent_buffer(leaf, ptr + size, ptr,
1553 end - size - ptr);
1554
1555 iref = (struct btrfs_extent_inline_ref *)ptr;
1556 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1557 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1558 struct btrfs_extent_data_ref *dref;
1559 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1560 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1561 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1562 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1563 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1564 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1565 struct btrfs_shared_data_ref *sref;
1566 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1567 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1568 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1569 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1570 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1571 } else {
1572 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1573 }
1574 btrfs_mark_buffer_dirty(leaf);
1575 return 0;
1576}
1577
1578static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1579 struct btrfs_root *root,
1580 struct btrfs_path *path,
1581 struct btrfs_extent_inline_ref **ref_ret,
1582 u64 bytenr, u64 num_bytes, u64 parent,
1583 u64 root_objectid, u64 owner, u64 offset)
1584{
1585 int ret;
1586
1587 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1588 bytenr, num_bytes, parent,
1589 root_objectid, owner, offset, 0);
1590 if (ret != -ENOENT)
1591 return ret;
1592
1593 btrfs_release_path(root, path);
1594 *ref_ret = NULL;
1595
1596 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1597 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1598 root_objectid);
1599 } else {
1600 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1601 root_objectid, owner, offset);
1602 }
1603 return ret;
1604}
1605
1606/*
1607 * helper to update/remove inline back ref
1608 */
1609static noinline_for_stack
1610int update_inline_extent_backref(struct btrfs_trans_handle *trans,
1611 struct btrfs_root *root,
1612 struct btrfs_path *path,
1613 struct btrfs_extent_inline_ref *iref,
1614 int refs_to_mod,
1615 struct btrfs_delayed_extent_op *extent_op)
1616{
1617 struct extent_buffer *leaf;
1618 struct btrfs_extent_item *ei;
1619 struct btrfs_extent_data_ref *dref = NULL;
1620 struct btrfs_shared_data_ref *sref = NULL;
1621 unsigned long ptr;
1622 unsigned long end;
1623 u32 item_size;
1624 int size;
1625 int type;
1626 int ret;
1627 u64 refs;
1628
1629 leaf = path->nodes[0];
1630 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1631 refs = btrfs_extent_refs(leaf, ei);
1632 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1633 refs += refs_to_mod;
1634 btrfs_set_extent_refs(leaf, ei, refs);
1635 if (extent_op)
1636 __run_delayed_extent_op(extent_op, leaf, ei);
1637
1638 type = btrfs_extent_inline_ref_type(leaf, iref);
1639
1640 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1641 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1642 refs = btrfs_extent_data_ref_count(leaf, dref);
1643 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1644 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1645 refs = btrfs_shared_data_ref_count(leaf, sref);
1646 } else {
1647 refs = 1;
1648 BUG_ON(refs_to_mod != -1);
1649 }
1650
1651 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1652 refs += refs_to_mod;
1653
1654 if (refs > 0) {
1655 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1656 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1657 else
1658 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1659 } else {
1660 size = btrfs_extent_inline_ref_size(type);
1661 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1662 ptr = (unsigned long)iref;
1663 end = (unsigned long)ei + item_size;
1664 if (ptr + size < end)
1665 memmove_extent_buffer(leaf, ptr, ptr + size,
1666 end - ptr - size);
1667 item_size -= size;
1668 ret = btrfs_truncate_item(trans, root, path, item_size, 1);
1669 BUG_ON(ret);
1670 }
1671 btrfs_mark_buffer_dirty(leaf);
1672 return 0;
1673}
1674
1675static noinline_for_stack
1676int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1677 struct btrfs_root *root,
1678 struct btrfs_path *path,
1679 u64 bytenr, u64 num_bytes, u64 parent,
1680 u64 root_objectid, u64 owner,
1681 u64 offset, int refs_to_add,
1682 struct btrfs_delayed_extent_op *extent_op)
1683{
1684 struct btrfs_extent_inline_ref *iref;
1685 int ret;
1686
1687 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1688 bytenr, num_bytes, parent,
1689 root_objectid, owner, offset, 1);
1690 if (ret == 0) {
1691 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
1692 ret = update_inline_extent_backref(trans, root, path, iref,
1693 refs_to_add, extent_op);
1694 } else if (ret == -ENOENT) {
1695 ret = setup_inline_extent_backref(trans, root, path, iref,
1696 parent, root_objectid,
1697 owner, offset, refs_to_add,
1698 extent_op);
1699 }
1700 return ret;
1701}
1702
1703static int insert_extent_backref(struct btrfs_trans_handle *trans,
1704 struct btrfs_root *root,
1705 struct btrfs_path *path,
1706 u64 bytenr, u64 parent, u64 root_objectid,
1707 u64 owner, u64 offset, int refs_to_add)
1708{
1709 int ret;
1710 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1711 BUG_ON(refs_to_add != 1);
1712 ret = insert_tree_block_ref(trans, root, path, bytenr,
1713 parent, root_objectid);
1714 } else {
1715 ret = insert_extent_data_ref(trans, root, path, bytenr,
1716 parent, root_objectid,
1717 owner, offset, refs_to_add);
1718 }
1719 return ret;
1720}
1721
1722static int remove_extent_backref(struct btrfs_trans_handle *trans,
1723 struct btrfs_root *root,
1724 struct btrfs_path *path,
1725 struct btrfs_extent_inline_ref *iref,
1726 int refs_to_drop, int is_data)
1727{
1728 int ret;
1729
1730 BUG_ON(!is_data && refs_to_drop != 1);
1731 if (iref) {
1732 ret = update_inline_extent_backref(trans, root, path, iref,
1733 -refs_to_drop, NULL);
1734 } else if (is_data) {
1735 ret = remove_extent_data_ref(trans, root, path, refs_to_drop);
1736 } else {
1737 ret = btrfs_del_item(trans, root, path);
1738 }
1739 return ret;
1740}
1741
Chris Mason15916de2008-11-19 21:17:22 -05001742static void btrfs_issue_discard(struct block_device *bdev,
1743 u64 start, u64 len)
1744{
Christoph Hellwig746cd1e2009-09-12 07:35:43 +02001745 blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_KERNEL,
Dmitry Monakhovfbd9b092010-04-28 17:55:06 +04001746 BLKDEV_IFL_WAIT | BLKDEV_IFL_BARRIER);
Chris Mason15916de2008-11-19 21:17:22 -05001747}
Chris Mason15916de2008-11-19 21:17:22 -05001748
Liu Hui1f3c79a2009-01-05 15:57:51 -05001749static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
1750 u64 num_bytes)
1751{
Liu Hui1f3c79a2009-01-05 15:57:51 -05001752 int ret;
1753 u64 map_length = num_bytes;
1754 struct btrfs_multi_bio *multi = NULL;
1755
Christoph Hellwige244a0a2009-10-14 09:24:59 -04001756 if (!btrfs_test_opt(root, DISCARD))
1757 return 0;
1758
Liu Hui1f3c79a2009-01-05 15:57:51 -05001759 /* Tell the block device(s) that the sectors can be discarded */
1760 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
1761 bytenr, &map_length, &multi, 0);
1762 if (!ret) {
1763 struct btrfs_bio_stripe *stripe = multi->stripes;
1764 int i;
1765
1766 if (map_length > num_bytes)
1767 map_length = num_bytes;
1768
1769 for (i = 0; i < multi->num_stripes; i++, stripe++) {
1770 btrfs_issue_discard(stripe->dev->bdev,
1771 stripe->physical,
1772 map_length);
1773 }
1774 kfree(multi);
1775 }
1776
1777 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001778}
1779
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001780int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1781 struct btrfs_root *root,
1782 u64 bytenr, u64 num_bytes, u64 parent,
1783 u64 root_objectid, u64 owner, u64 offset)
Zheng Yan31840ae2008-09-23 13:14:14 -04001784{
1785 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001786 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
1787 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04001788
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001789 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1790 ret = btrfs_add_delayed_tree_ref(trans, bytenr, num_bytes,
1791 parent, root_objectid, (int)owner,
1792 BTRFS_ADD_DELAYED_REF, NULL);
1793 } else {
1794 ret = btrfs_add_delayed_data_ref(trans, bytenr, num_bytes,
1795 parent, root_objectid, owner, offset,
1796 BTRFS_ADD_DELAYED_REF, NULL);
1797 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001798 return ret;
1799}
1800
Chris Mason925baed2008-06-25 16:01:30 -04001801static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001802 struct btrfs_root *root,
1803 u64 bytenr, u64 num_bytes,
1804 u64 parent, u64 root_objectid,
1805 u64 owner, u64 offset, int refs_to_add,
1806 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04001807{
Chris Mason5caf2a02007-04-02 11:20:42 -04001808 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001809 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04001810 struct btrfs_extent_item *item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001811 u64 refs;
1812 int ret;
1813 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001814
Chris Mason5caf2a02007-04-02 11:20:42 -04001815 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001816 if (!path)
1817 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04001818
Chris Mason3c12ac72008-04-21 12:01:38 -04001819 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001820 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001821 /* this will setup the path even if it fails to insert the back ref */
1822 ret = insert_inline_extent_backref(trans, root->fs_info->extent_root,
1823 path, bytenr, num_bytes, parent,
1824 root_objectid, owner, offset,
1825 refs_to_add, extent_op);
1826 if (ret == 0)
1827 goto out;
Zheng Yan31840ae2008-09-23 13:14:14 -04001828
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001829 if (ret != -EAGAIN) {
1830 err = ret;
1831 goto out;
Chris Masonb9473432009-03-13 11:00:37 -04001832 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001833
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001834 leaf = path->nodes[0];
1835 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1836 refs = btrfs_extent_refs(leaf, item);
1837 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
1838 if (extent_op)
1839 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04001840
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001841 btrfs_mark_buffer_dirty(leaf);
Chris Mason5caf2a02007-04-02 11:20:42 -04001842 btrfs_release_path(root->fs_info->extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -05001843
Chris Mason3c12ac72008-04-21 12:01:38 -04001844 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001845 path->leave_spinning = 1;
1846
Chris Mason56bec292009-03-13 10:10:06 -04001847 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04001848 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001849 path, bytenr, parent, root_objectid,
1850 owner, offset, refs_to_add);
Chris Mason7bb86312007-12-11 09:25:06 -05001851 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001852out:
Chris Mason74493f72007-12-11 09:25:06 -05001853 btrfs_free_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001854 return err;
Chris Mason02217ed2007-03-02 16:08:05 -05001855}
1856
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001857static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
1858 struct btrfs_root *root,
1859 struct btrfs_delayed_ref_node *node,
1860 struct btrfs_delayed_extent_op *extent_op,
1861 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04001862{
Chris Mason56bec292009-03-13 10:10:06 -04001863 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001864 struct btrfs_delayed_data_ref *ref;
1865 struct btrfs_key ins;
1866 u64 parent = 0;
1867 u64 ref_root = 0;
1868 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04001869
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001870 ins.objectid = node->bytenr;
1871 ins.offset = node->num_bytes;
1872 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04001873
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001874 ref = btrfs_delayed_node_to_data_ref(node);
1875 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
1876 parent = ref->parent;
1877 else
1878 ref_root = ref->root;
1879
1880 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
1881 if (extent_op) {
1882 BUG_ON(extent_op->update_key);
1883 flags |= extent_op->flags_to_set;
1884 }
1885 ret = alloc_reserved_file_extent(trans, root,
1886 parent, ref_root, flags,
1887 ref->objectid, ref->offset,
1888 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001889 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
1890 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
1891 node->num_bytes, parent,
1892 ref_root, ref->objectid,
1893 ref->offset, node->ref_mod,
1894 extent_op);
1895 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
1896 ret = __btrfs_free_extent(trans, root, node->bytenr,
1897 node->num_bytes, parent,
1898 ref_root, ref->objectid,
1899 ref->offset, node->ref_mod,
1900 extent_op);
1901 } else {
1902 BUG();
1903 }
Chris Mason56bec292009-03-13 10:10:06 -04001904 return ret;
1905}
1906
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001907static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
1908 struct extent_buffer *leaf,
1909 struct btrfs_extent_item *ei)
1910{
1911 u64 flags = btrfs_extent_flags(leaf, ei);
1912 if (extent_op->update_flags) {
1913 flags |= extent_op->flags_to_set;
1914 btrfs_set_extent_flags(leaf, ei, flags);
1915 }
1916
1917 if (extent_op->update_key) {
1918 struct btrfs_tree_block_info *bi;
1919 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
1920 bi = (struct btrfs_tree_block_info *)(ei + 1);
1921 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
1922 }
1923}
1924
1925static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
1926 struct btrfs_root *root,
1927 struct btrfs_delayed_ref_node *node,
1928 struct btrfs_delayed_extent_op *extent_op)
1929{
1930 struct btrfs_key key;
1931 struct btrfs_path *path;
1932 struct btrfs_extent_item *ei;
1933 struct extent_buffer *leaf;
1934 u32 item_size;
1935 int ret;
1936 int err = 0;
1937
1938 path = btrfs_alloc_path();
1939 if (!path)
1940 return -ENOMEM;
1941
1942 key.objectid = node->bytenr;
1943 key.type = BTRFS_EXTENT_ITEM_KEY;
1944 key.offset = node->num_bytes;
1945
1946 path->reada = 1;
1947 path->leave_spinning = 1;
1948 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
1949 path, 0, 1);
1950 if (ret < 0) {
1951 err = ret;
1952 goto out;
1953 }
1954 if (ret > 0) {
1955 err = -EIO;
1956 goto out;
1957 }
1958
1959 leaf = path->nodes[0];
1960 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1961#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1962 if (item_size < sizeof(*ei)) {
1963 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
1964 path, (u64)-1, 0);
1965 if (ret < 0) {
1966 err = ret;
1967 goto out;
1968 }
1969 leaf = path->nodes[0];
1970 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1971 }
1972#endif
1973 BUG_ON(item_size < sizeof(*ei));
1974 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1975 __run_delayed_extent_op(extent_op, leaf, ei);
1976
1977 btrfs_mark_buffer_dirty(leaf);
1978out:
1979 btrfs_free_path(path);
1980 return err;
1981}
1982
1983static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
1984 struct btrfs_root *root,
1985 struct btrfs_delayed_ref_node *node,
1986 struct btrfs_delayed_extent_op *extent_op,
1987 int insert_reserved)
1988{
1989 int ret = 0;
1990 struct btrfs_delayed_tree_ref *ref;
1991 struct btrfs_key ins;
1992 u64 parent = 0;
1993 u64 ref_root = 0;
1994
1995 ins.objectid = node->bytenr;
1996 ins.offset = node->num_bytes;
1997 ins.type = BTRFS_EXTENT_ITEM_KEY;
1998
1999 ref = btrfs_delayed_node_to_tree_ref(node);
2000 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2001 parent = ref->parent;
2002 else
2003 ref_root = ref->root;
2004
2005 BUG_ON(node->ref_mod != 1);
2006 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
2007 BUG_ON(!extent_op || !extent_op->update_flags ||
2008 !extent_op->update_key);
2009 ret = alloc_reserved_tree_block(trans, root,
2010 parent, ref_root,
2011 extent_op->flags_to_set,
2012 &extent_op->key,
2013 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002014 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2015 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2016 node->num_bytes, parent, ref_root,
2017 ref->level, 0, 1, extent_op);
2018 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2019 ret = __btrfs_free_extent(trans, root, node->bytenr,
2020 node->num_bytes, parent, ref_root,
2021 ref->level, 0, 1, extent_op);
2022 } else {
2023 BUG();
2024 }
2025 return ret;
2026}
2027
Chris Mason56bec292009-03-13 10:10:06 -04002028/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002029static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2030 struct btrfs_root *root,
2031 struct btrfs_delayed_ref_node *node,
2032 struct btrfs_delayed_extent_op *extent_op,
2033 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002034{
Josef Bacikeb099672009-02-12 09:27:38 -05002035 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002036 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002037 struct btrfs_delayed_ref_head *head;
2038 /*
2039 * we've hit the end of the chain and we were supposed
2040 * to insert this extent into the tree. But, it got
2041 * deleted before we ever needed to insert it, so all
2042 * we have to do is clean up the accounting
2043 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002044 BUG_ON(extent_op);
2045 head = btrfs_delayed_node_to_head(node);
Chris Mason56bec292009-03-13 10:10:06 -04002046 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002047 btrfs_pin_extent(root, node->bytenr,
2048 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002049 if (head->is_data) {
2050 ret = btrfs_del_csums(trans, root,
2051 node->bytenr,
2052 node->num_bytes);
2053 BUG_ON(ret);
2054 }
Chris Mason56bec292009-03-13 10:10:06 -04002055 }
Chris Mason56bec292009-03-13 10:10:06 -04002056 mutex_unlock(&head->mutex);
2057 return 0;
2058 }
Josef Bacikeb099672009-02-12 09:27:38 -05002059
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002060 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2061 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2062 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2063 insert_reserved);
2064 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2065 node->type == BTRFS_SHARED_DATA_REF_KEY)
2066 ret = run_delayed_data_ref(trans, root, node, extent_op,
2067 insert_reserved);
2068 else
2069 BUG();
2070 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002071}
2072
Chris Mason56bec292009-03-13 10:10:06 -04002073static noinline struct btrfs_delayed_ref_node *
2074select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002075{
Chris Mason56bec292009-03-13 10:10:06 -04002076 struct rb_node *node;
2077 struct btrfs_delayed_ref_node *ref;
2078 int action = BTRFS_ADD_DELAYED_REF;
2079again:
2080 /*
2081 * select delayed ref of type BTRFS_ADD_DELAYED_REF first.
2082 * this prevents ref count from going down to zero when
2083 * there still are pending delayed ref.
2084 */
2085 node = rb_prev(&head->node.rb_node);
2086 while (1) {
2087 if (!node)
2088 break;
2089 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2090 rb_node);
2091 if (ref->bytenr != head->node.bytenr)
2092 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002093 if (ref->action == action)
Chris Mason56bec292009-03-13 10:10:06 -04002094 return ref;
2095 node = rb_prev(node);
Chris Mason5f39d392007-10-15 16:14:19 -04002096 }
Chris Mason56bec292009-03-13 10:10:06 -04002097 if (action == BTRFS_ADD_DELAYED_REF) {
2098 action = BTRFS_DROP_DELAYED_REF;
2099 goto again;
2100 }
2101 return NULL;
2102}
2103
Chris Masonc3e69d52009-03-13 10:17:05 -04002104static noinline int run_clustered_refs(struct btrfs_trans_handle *trans,
2105 struct btrfs_root *root,
2106 struct list_head *cluster)
Chris Mason56bec292009-03-13 10:10:06 -04002107{
Chris Mason56bec292009-03-13 10:10:06 -04002108 struct btrfs_delayed_ref_root *delayed_refs;
2109 struct btrfs_delayed_ref_node *ref;
2110 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002111 struct btrfs_delayed_extent_op *extent_op;
Chris Mason56bec292009-03-13 10:10:06 -04002112 int ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002113 int count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002114 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002115
2116 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002117 while (1) {
2118 if (!locked_ref) {
Chris Masonc3e69d52009-03-13 10:17:05 -04002119 /* pick a new head ref from the cluster list */
2120 if (list_empty(cluster))
Chris Mason56bec292009-03-13 10:10:06 -04002121 break;
Chris Mason56bec292009-03-13 10:10:06 -04002122
Chris Masonc3e69d52009-03-13 10:17:05 -04002123 locked_ref = list_entry(cluster->next,
2124 struct btrfs_delayed_ref_head, cluster);
2125
2126 /* grab the lock that says we are going to process
2127 * all the refs for this head */
2128 ret = btrfs_delayed_ref_lock(trans, locked_ref);
2129
2130 /*
2131 * we may have dropped the spin lock to get the head
2132 * mutex lock, and that might have given someone else
2133 * time to free the head. If that's true, it has been
2134 * removed from our list and we can move on.
2135 */
2136 if (ret == -EAGAIN) {
2137 locked_ref = NULL;
2138 count++;
2139 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002140 }
2141 }
2142
2143 /*
2144 * record the must insert reserved flag before we
2145 * drop the spin lock.
2146 */
2147 must_insert_reserved = locked_ref->must_insert_reserved;
2148 locked_ref->must_insert_reserved = 0;
2149
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002150 extent_op = locked_ref->extent_op;
2151 locked_ref->extent_op = NULL;
2152
Chris Mason56bec292009-03-13 10:10:06 -04002153 /*
2154 * locked_ref is the head node, so we have to go one
2155 * node back for any delayed ref updates
2156 */
Chris Mason56bec292009-03-13 10:10:06 -04002157 ref = select_delayed_ref(locked_ref);
2158 if (!ref) {
2159 /* All delayed refs have been processed, Go ahead
2160 * and send the head node to run_one_delayed_ref,
2161 * so that any accounting fixes can happen
2162 */
2163 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002164
2165 if (extent_op && must_insert_reserved) {
2166 kfree(extent_op);
2167 extent_op = NULL;
2168 }
2169
2170 if (extent_op) {
2171 spin_unlock(&delayed_refs->lock);
2172
2173 ret = run_delayed_extent_op(trans, root,
2174 ref, extent_op);
2175 BUG_ON(ret);
2176 kfree(extent_op);
2177
2178 cond_resched();
2179 spin_lock(&delayed_refs->lock);
2180 continue;
2181 }
2182
Chris Masonc3e69d52009-03-13 10:17:05 -04002183 list_del_init(&locked_ref->cluster);
Chris Mason56bec292009-03-13 10:10:06 -04002184 locked_ref = NULL;
2185 }
2186
2187 ref->in_tree = 0;
2188 rb_erase(&ref->rb_node, &delayed_refs->root);
2189 delayed_refs->num_entries--;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002190
Chris Mason56bec292009-03-13 10:10:06 -04002191 spin_unlock(&delayed_refs->lock);
2192
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002193 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002194 must_insert_reserved);
2195 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04002196
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002197 btrfs_put_delayed_ref(ref);
2198 kfree(extent_op);
Chris Masonc3e69d52009-03-13 10:17:05 -04002199 count++;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002200
Chris Mason1887be62009-03-13 10:11:24 -04002201 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002202 spin_lock(&delayed_refs->lock);
2203 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002204 return count;
2205}
2206
2207/*
2208 * this starts processing the delayed reference count updates and
2209 * extent insertions we have queued up so far. count can be
2210 * 0, which means to process everything in the tree at the start
2211 * of the run (but not newly added entries), or it can be some target
2212 * number you'd like to process.
2213 */
2214int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2215 struct btrfs_root *root, unsigned long count)
2216{
2217 struct rb_node *node;
2218 struct btrfs_delayed_ref_root *delayed_refs;
2219 struct btrfs_delayed_ref_node *ref;
2220 struct list_head cluster;
2221 int ret;
2222 int run_all = count == (unsigned long)-1;
2223 int run_most = 0;
2224
2225 if (root == root->fs_info->extent_root)
2226 root = root->fs_info->tree_root;
2227
2228 delayed_refs = &trans->transaction->delayed_refs;
2229 INIT_LIST_HEAD(&cluster);
2230again:
2231 spin_lock(&delayed_refs->lock);
2232 if (count == 0) {
2233 count = delayed_refs->num_entries * 2;
2234 run_most = 1;
2235 }
2236 while (1) {
2237 if (!(run_all || run_most) &&
2238 delayed_refs->num_heads_ready < 64)
2239 break;
2240
2241 /*
2242 * go find something we can process in the rbtree. We start at
2243 * the beginning of the tree, and then build a cluster
2244 * of refs to process starting at the first one we are able to
2245 * lock
2246 */
2247 ret = btrfs_find_ref_cluster(trans, &cluster,
2248 delayed_refs->run_delayed_start);
2249 if (ret)
2250 break;
2251
2252 ret = run_clustered_refs(trans, root, &cluster);
2253 BUG_ON(ret < 0);
2254
2255 count -= min_t(unsigned long, ret, count);
2256
2257 if (count == 0)
2258 break;
2259 }
2260
Chris Mason56bec292009-03-13 10:10:06 -04002261 if (run_all) {
Chris Mason56bec292009-03-13 10:10:06 -04002262 node = rb_first(&delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04002263 if (!node)
Chris Mason56bec292009-03-13 10:10:06 -04002264 goto out;
Chris Masonc3e69d52009-03-13 10:17:05 -04002265 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002266
2267 while (node) {
2268 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2269 rb_node);
2270 if (btrfs_delayed_ref_is_head(ref)) {
2271 struct btrfs_delayed_ref_head *head;
2272
2273 head = btrfs_delayed_node_to_head(ref);
2274 atomic_inc(&ref->refs);
2275
2276 spin_unlock(&delayed_refs->lock);
2277 mutex_lock(&head->mutex);
2278 mutex_unlock(&head->mutex);
2279
2280 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002281 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002282 goto again;
2283 }
2284 node = rb_next(node);
2285 }
2286 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002287 schedule_timeout(1);
2288 goto again;
2289 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002290out:
Chris Masonc3e69d52009-03-13 10:17:05 -04002291 spin_unlock(&delayed_refs->lock);
Chris Masona28ec192007-03-06 20:08:01 -05002292 return 0;
2293}
2294
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002295int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2296 struct btrfs_root *root,
2297 u64 bytenr, u64 num_bytes, u64 flags,
2298 int is_data)
2299{
2300 struct btrfs_delayed_extent_op *extent_op;
2301 int ret;
2302
2303 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
2304 if (!extent_op)
2305 return -ENOMEM;
2306
2307 extent_op->flags_to_set = flags;
2308 extent_op->update_flags = 1;
2309 extent_op->update_key = 0;
2310 extent_op->is_data = is_data ? 1 : 0;
2311
2312 ret = btrfs_add_delayed_extent_op(trans, bytenr, num_bytes, extent_op);
2313 if (ret)
2314 kfree(extent_op);
2315 return ret;
2316}
2317
2318static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2319 struct btrfs_root *root,
2320 struct btrfs_path *path,
2321 u64 objectid, u64 offset, u64 bytenr)
2322{
2323 struct btrfs_delayed_ref_head *head;
2324 struct btrfs_delayed_ref_node *ref;
2325 struct btrfs_delayed_data_ref *data_ref;
2326 struct btrfs_delayed_ref_root *delayed_refs;
2327 struct rb_node *node;
2328 int ret = 0;
2329
2330 ret = -ENOENT;
2331 delayed_refs = &trans->transaction->delayed_refs;
2332 spin_lock(&delayed_refs->lock);
2333 head = btrfs_find_delayed_ref_head(trans, bytenr);
2334 if (!head)
2335 goto out;
2336
2337 if (!mutex_trylock(&head->mutex)) {
2338 atomic_inc(&head->node.refs);
2339 spin_unlock(&delayed_refs->lock);
2340
2341 btrfs_release_path(root->fs_info->extent_root, path);
2342
2343 mutex_lock(&head->mutex);
2344 mutex_unlock(&head->mutex);
2345 btrfs_put_delayed_ref(&head->node);
2346 return -EAGAIN;
2347 }
2348
2349 node = rb_prev(&head->node.rb_node);
2350 if (!node)
2351 goto out_unlock;
2352
2353 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2354
2355 if (ref->bytenr != bytenr)
2356 goto out_unlock;
2357
2358 ret = 1;
2359 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY)
2360 goto out_unlock;
2361
2362 data_ref = btrfs_delayed_node_to_data_ref(ref);
2363
2364 node = rb_prev(node);
2365 if (node) {
2366 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2367 if (ref->bytenr == bytenr)
2368 goto out_unlock;
2369 }
2370
2371 if (data_ref->root != root->root_key.objectid ||
2372 data_ref->objectid != objectid || data_ref->offset != offset)
2373 goto out_unlock;
2374
2375 ret = 0;
2376out_unlock:
2377 mutex_unlock(&head->mutex);
2378out:
2379 spin_unlock(&delayed_refs->lock);
2380 return ret;
2381}
2382
2383static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2384 struct btrfs_root *root,
2385 struct btrfs_path *path,
2386 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05002387{
2388 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04002389 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002390 struct btrfs_extent_data_ref *ref;
2391 struct btrfs_extent_inline_ref *iref;
2392 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05002393 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002394 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04002395 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05002396
Chris Masonbe20aa92007-12-17 20:14:01 -05002397 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04002398 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04002399 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05002400
Chris Masonbe20aa92007-12-17 20:14:01 -05002401 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2402 if (ret < 0)
2403 goto out;
2404 BUG_ON(ret == 0);
Yan Zheng80ff3852008-10-30 14:20:02 -04002405
2406 ret = -ENOENT;
2407 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04002408 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002409
Zheng Yan31840ae2008-09-23 13:14:14 -04002410 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04002411 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002412 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05002413
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002414 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05002415 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002416
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002417 ret = 1;
2418 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2419#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2420 if (item_size < sizeof(*ei)) {
2421 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2422 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002423 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002424#endif
2425 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2426
2427 if (item_size != sizeof(*ei) +
2428 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2429 goto out;
2430
2431 if (btrfs_extent_generation(leaf, ei) <=
2432 btrfs_root_last_snapshot(&root->root_item))
2433 goto out;
2434
2435 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2436 if (btrfs_extent_inline_ref_type(leaf, iref) !=
2437 BTRFS_EXTENT_DATA_REF_KEY)
2438 goto out;
2439
2440 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2441 if (btrfs_extent_refs(leaf, ei) !=
2442 btrfs_extent_data_ref_count(leaf, ref) ||
2443 btrfs_extent_data_ref_root(leaf, ref) !=
2444 root->root_key.objectid ||
2445 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
2446 btrfs_extent_data_ref_offset(leaf, ref) != offset)
2447 goto out;
2448
Yan Zhengf321e492008-07-30 09:26:11 -04002449 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05002450out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002451 return ret;
2452}
2453
2454int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
2455 struct btrfs_root *root,
2456 u64 objectid, u64 offset, u64 bytenr)
2457{
2458 struct btrfs_path *path;
2459 int ret;
2460 int ret2;
2461
2462 path = btrfs_alloc_path();
2463 if (!path)
2464 return -ENOENT;
2465
2466 do {
2467 ret = check_committed_ref(trans, root, path, objectid,
2468 offset, bytenr);
2469 if (ret && ret != -ENOENT)
2470 goto out;
2471
2472 ret2 = check_delayed_ref(trans, root, path, objectid,
2473 offset, bytenr);
2474 } while (ret2 == -EAGAIN);
2475
2476 if (ret2 && ret2 != -ENOENT) {
2477 ret = ret2;
2478 goto out;
2479 }
2480
2481 if (ret != -ENOENT || ret2 != -ENOENT)
2482 ret = 0;
2483out:
Yan Zhengf321e492008-07-30 09:26:11 -04002484 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002485 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
2486 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04002487 return ret;
2488}
2489
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002490#if 0
Zheng Yan31840ae2008-09-23 13:14:14 -04002491int btrfs_cache_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2492 struct extent_buffer *buf, u32 nr_extents)
Chris Mason02217ed2007-03-02 16:08:05 -05002493{
Chris Mason5f39d392007-10-15 16:14:19 -04002494 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04002495 struct btrfs_file_extent_item *fi;
Zheng Yane4657682008-09-26 10:04:53 -04002496 u64 root_gen;
2497 u32 nritems;
Chris Mason02217ed2007-03-02 16:08:05 -05002498 int i;
Chris Masondb945352007-10-15 16:15:53 -04002499 int level;
Zheng Yan31840ae2008-09-23 13:14:14 -04002500 int ret = 0;
Zheng Yane4657682008-09-26 10:04:53 -04002501 int shared = 0;
Chris Masona28ec192007-03-06 20:08:01 -05002502
Chris Mason3768f362007-03-13 16:47:54 -04002503 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -05002504 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002505
Zheng Yane4657682008-09-26 10:04:53 -04002506 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
2507 shared = 0;
2508 root_gen = root->root_key.offset;
2509 } else {
2510 shared = 1;
2511 root_gen = trans->transid - 1;
2512 }
2513
Chris Masondb945352007-10-15 16:15:53 -04002514 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -04002515 nritems = btrfs_header_nritems(buf);
Chris Mason4a096752008-07-21 10:29:44 -04002516
Zheng Yan31840ae2008-09-23 13:14:14 -04002517 if (level == 0) {
Yan Zheng31153d82008-07-28 15:32:19 -04002518 struct btrfs_leaf_ref *ref;
2519 struct btrfs_extent_info *info;
2520
Zheng Yan31840ae2008-09-23 13:14:14 -04002521 ref = btrfs_alloc_leaf_ref(root, nr_extents);
Yan Zheng31153d82008-07-28 15:32:19 -04002522 if (!ref) {
Zheng Yan31840ae2008-09-23 13:14:14 -04002523 ret = -ENOMEM;
Yan Zheng31153d82008-07-28 15:32:19 -04002524 goto out;
2525 }
2526
Zheng Yane4657682008-09-26 10:04:53 -04002527 ref->root_gen = root_gen;
Yan Zheng31153d82008-07-28 15:32:19 -04002528 ref->bytenr = buf->start;
2529 ref->owner = btrfs_header_owner(buf);
2530 ref->generation = btrfs_header_generation(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04002531 ref->nritems = nr_extents;
Yan Zheng31153d82008-07-28 15:32:19 -04002532 info = ref->extents;
Yanbcc63ab2008-07-30 16:29:20 -04002533
Zheng Yan31840ae2008-09-23 13:14:14 -04002534 for (i = 0; nr_extents > 0 && i < nritems; i++) {
Yan Zheng31153d82008-07-28 15:32:19 -04002535 u64 disk_bytenr;
2536 btrfs_item_key_to_cpu(buf, &key, i);
2537 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
2538 continue;
2539 fi = btrfs_item_ptr(buf, i,
2540 struct btrfs_file_extent_item);
2541 if (btrfs_file_extent_type(buf, fi) ==
2542 BTRFS_FILE_EXTENT_INLINE)
2543 continue;
2544 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
2545 if (disk_bytenr == 0)
2546 continue;
2547
2548 info->bytenr = disk_bytenr;
2549 info->num_bytes =
2550 btrfs_file_extent_disk_num_bytes(buf, fi);
2551 info->objectid = key.objectid;
2552 info->offset = key.offset;
2553 info++;
2554 }
2555
Zheng Yane4657682008-09-26 10:04:53 -04002556 ret = btrfs_add_leaf_ref(root, ref, shared);
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002557 if (ret == -EEXIST && shared) {
2558 struct btrfs_leaf_ref *old;
2559 old = btrfs_lookup_leaf_ref(root, ref->bytenr);
2560 BUG_ON(!old);
2561 btrfs_remove_leaf_ref(root, old);
2562 btrfs_free_leaf_ref(root, old);
2563 ret = btrfs_add_leaf_ref(root, ref, shared);
2564 }
Yan Zheng31153d82008-07-28 15:32:19 -04002565 WARN_ON(ret);
Yanbcc63ab2008-07-30 16:29:20 -04002566 btrfs_free_leaf_ref(root, ref);
Yan Zheng31153d82008-07-28 15:32:19 -04002567 }
2568out:
Zheng Yan31840ae2008-09-23 13:14:14 -04002569 return ret;
2570}
2571
Chris Masonb7a9f292009-02-04 09:23:45 -05002572/* when a block goes through cow, we update the reference counts of
2573 * everything that block points to. The internal pointers of the block
2574 * can be in just about any order, and it is likely to have clusters of
2575 * things that are close together and clusters of things that are not.
2576 *
2577 * To help reduce the seeks that come with updating all of these reference
2578 * counts, sort them by byte number before actual updates are done.
2579 *
2580 * struct refsort is used to match byte number to slot in the btree block.
2581 * we sort based on the byte number and then use the slot to actually
2582 * find the item.
Chris Masonbd56b302009-02-04 09:27:02 -05002583 *
2584 * struct refsort is smaller than strcut btrfs_item and smaller than
2585 * struct btrfs_key_ptr. Since we're currently limited to the page size
2586 * for a btree block, there's no way for a kmalloc of refsorts for a
2587 * single node to be bigger than a page.
Chris Masonb7a9f292009-02-04 09:23:45 -05002588 */
2589struct refsort {
2590 u64 bytenr;
2591 u32 slot;
2592};
2593
2594/*
2595 * for passing into sort()
2596 */
2597static int refsort_cmp(const void *a_void, const void *b_void)
2598{
2599 const struct refsort *a = a_void;
2600 const struct refsort *b = b_void;
2601
2602 if (a->bytenr < b->bytenr)
2603 return -1;
2604 if (a->bytenr > b->bytenr)
2605 return 1;
2606 return 0;
2607}
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002608#endif
Chris Masonb7a9f292009-02-04 09:23:45 -05002609
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002610static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05002611 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002612 struct extent_buffer *buf,
2613 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04002614{
2615 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002616 u64 num_bytes;
2617 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04002618 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04002619 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04002620 struct btrfs_key key;
2621 struct btrfs_file_extent_item *fi;
2622 int i;
2623 int level;
2624 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04002625 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002626 u64, u64, u64, u64, u64, u64);
Zheng Yan31840ae2008-09-23 13:14:14 -04002627
2628 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04002629 nritems = btrfs_header_nritems(buf);
2630 level = btrfs_header_level(buf);
2631
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002632 if (!root->ref_cows && level == 0)
2633 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05002634
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002635 if (inc)
2636 process_func = btrfs_inc_extent_ref;
2637 else
2638 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04002639
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002640 if (full_backref)
2641 parent = buf->start;
2642 else
2643 parent = 0;
2644
Zheng Yan31840ae2008-09-23 13:14:14 -04002645 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04002646 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002647 btrfs_item_key_to_cpu(buf, &key, i);
2648 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04002649 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04002650 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04002651 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002652 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04002653 BTRFS_FILE_EXTENT_INLINE)
2654 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04002655 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
2656 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04002657 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04002658
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002659 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
2660 key.offset -= btrfs_file_extent_offset(buf, fi);
2661 ret = process_func(trans, root, bytenr, num_bytes,
2662 parent, ref_root, key.objectid,
2663 key.offset);
2664 if (ret)
2665 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05002666 } else {
2667 bytenr = btrfs_node_blockptr(buf, i);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002668 num_bytes = btrfs_level_size(root, level - 1);
2669 ret = process_func(trans, root, bytenr, num_bytes,
2670 parent, ref_root, level - 1, 0);
2671 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04002672 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04002673 }
2674 }
Zheng Yan31840ae2008-09-23 13:14:14 -04002675 return 0;
2676fail:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002677 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04002678 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002679}
2680
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002681int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2682 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04002683{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002684 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
2685}
Zheng Yan31840ae2008-09-23 13:14:14 -04002686
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002687int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2688 struct extent_buffer *buf, int full_backref)
2689{
2690 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04002691}
2692
Chris Mason9078a3e2007-04-26 16:46:15 -04002693static int write_one_cache_group(struct btrfs_trans_handle *trans,
2694 struct btrfs_root *root,
2695 struct btrfs_path *path,
2696 struct btrfs_block_group_cache *cache)
2697{
2698 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04002699 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04002700 unsigned long bi;
2701 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04002702
Chris Mason9078a3e2007-04-26 16:46:15 -04002703 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04002704 if (ret < 0)
2705 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -04002706 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002707
2708 leaf = path->nodes[0];
2709 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
2710 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
2711 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -04002712 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -04002713fail:
Chris Mason9078a3e2007-04-26 16:46:15 -04002714 if (ret)
2715 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04002716 return 0;
2717
2718}
2719
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002720static struct btrfs_block_group_cache *
2721next_block_group(struct btrfs_root *root,
2722 struct btrfs_block_group_cache *cache)
2723{
2724 struct rb_node *node;
2725 spin_lock(&root->fs_info->block_group_cache_lock);
2726 node = rb_next(&cache->cache_node);
2727 btrfs_put_block_group(cache);
2728 if (node) {
2729 cache = rb_entry(node, struct btrfs_block_group_cache,
2730 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00002731 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002732 } else
2733 cache = NULL;
2734 spin_unlock(&root->fs_info->block_group_cache_lock);
2735 return cache;
2736}
2737
Josef Bacik0af3d002010-06-21 14:48:16 -04002738static int cache_save_setup(struct btrfs_block_group_cache *block_group,
2739 struct btrfs_trans_handle *trans,
2740 struct btrfs_path *path)
2741{
2742 struct btrfs_root *root = block_group->fs_info->tree_root;
2743 struct inode *inode = NULL;
2744 u64 alloc_hint = 0;
2745 int num_pages = 0;
2746 int retries = 0;
2747 int ret = 0;
2748
2749 /*
2750 * If this block group is smaller than 100 megs don't bother caching the
2751 * block group.
2752 */
2753 if (block_group->key.offset < (100 * 1024 * 1024)) {
2754 spin_lock(&block_group->lock);
2755 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
2756 spin_unlock(&block_group->lock);
2757 return 0;
2758 }
2759
2760again:
2761 inode = lookup_free_space_inode(root, block_group, path);
2762 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
2763 ret = PTR_ERR(inode);
2764 btrfs_release_path(root, path);
2765 goto out;
2766 }
2767
2768 if (IS_ERR(inode)) {
2769 BUG_ON(retries);
2770 retries++;
2771
2772 if (block_group->ro)
2773 goto out_free;
2774
2775 ret = create_free_space_inode(root, trans, block_group, path);
2776 if (ret)
2777 goto out_free;
2778 goto again;
2779 }
2780
2781 /*
2782 * We want to set the generation to 0, that way if anything goes wrong
2783 * from here on out we know not to trust this cache when we load up next
2784 * time.
2785 */
2786 BTRFS_I(inode)->generation = 0;
2787 ret = btrfs_update_inode(trans, root, inode);
2788 WARN_ON(ret);
2789
2790 if (i_size_read(inode) > 0) {
2791 ret = btrfs_truncate_free_space_cache(root, trans, path,
2792 inode);
2793 if (ret)
2794 goto out_put;
2795 }
2796
2797 spin_lock(&block_group->lock);
2798 if (block_group->cached != BTRFS_CACHE_FINISHED) {
2799 spin_unlock(&block_group->lock);
2800 goto out_put;
2801 }
2802 spin_unlock(&block_group->lock);
2803
2804 num_pages = (int)div64_u64(block_group->key.offset, 1024 * 1024 * 1024);
2805 if (!num_pages)
2806 num_pages = 1;
2807
2808 /*
2809 * Just to make absolutely sure we have enough space, we're going to
2810 * preallocate 12 pages worth of space for each block group. In
2811 * practice we ought to use at most 8, but we need extra space so we can
2812 * add our header and have a terminator between the extents and the
2813 * bitmaps.
2814 */
2815 num_pages *= 16;
2816 num_pages *= PAGE_CACHE_SIZE;
2817
2818 ret = btrfs_check_data_free_space(inode, num_pages);
2819 if (ret)
2820 goto out_put;
2821
2822 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
2823 num_pages, num_pages,
2824 &alloc_hint);
2825 btrfs_free_reserved_data_space(inode, num_pages);
2826out_put:
2827 iput(inode);
2828out_free:
2829 btrfs_release_path(root, path);
2830out:
2831 spin_lock(&block_group->lock);
2832 if (ret)
2833 block_group->disk_cache_state = BTRFS_DC_ERROR;
2834 else
2835 block_group->disk_cache_state = BTRFS_DC_SETUP;
2836 spin_unlock(&block_group->lock);
2837
2838 return ret;
2839}
2840
Chris Mason96b51792007-10-15 16:15:19 -04002841int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
2842 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04002843{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002844 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002845 int err = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002846 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04002847 u64 last = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002848
2849 path = btrfs_alloc_path();
2850 if (!path)
2851 return -ENOMEM;
2852
Josef Bacik0af3d002010-06-21 14:48:16 -04002853again:
2854 while (1) {
2855 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2856 while (cache) {
2857 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
2858 break;
2859 cache = next_block_group(root, cache);
2860 }
2861 if (!cache) {
2862 if (last == 0)
2863 break;
2864 last = 0;
2865 continue;
2866 }
2867 err = cache_save_setup(cache, trans, path);
2868 last = cache->key.objectid + cache->key.offset;
2869 btrfs_put_block_group(cache);
2870 }
2871
Chris Masond3977122009-01-05 21:25:51 -05002872 while (1) {
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002873 if (last == 0) {
2874 err = btrfs_run_delayed_refs(trans, root,
2875 (unsigned long)-1);
2876 BUG_ON(err);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002877 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002878
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002879 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2880 while (cache) {
Josef Bacik0af3d002010-06-21 14:48:16 -04002881 if (cache->disk_cache_state == BTRFS_DC_CLEAR) {
2882 btrfs_put_block_group(cache);
2883 goto again;
2884 }
2885
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002886 if (cache->dirty)
2887 break;
2888 cache = next_block_group(root, cache);
2889 }
2890 if (!cache) {
2891 if (last == 0)
2892 break;
2893 last = 0;
Chris Mason96b51792007-10-15 16:15:19 -04002894 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04002895 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002896
Josef Bacik0cb59c92010-07-02 12:14:14 -04002897 if (cache->disk_cache_state == BTRFS_DC_SETUP)
2898 cache->disk_cache_state = BTRFS_DC_NEED_WRITE;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002899 cache->dirty = 0;
2900 last = cache->key.objectid + cache->key.offset;
2901
2902 err = write_one_cache_group(trans, root, path, cache);
2903 BUG_ON(err);
2904 btrfs_put_block_group(cache);
Chris Mason9078a3e2007-04-26 16:46:15 -04002905 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002906
Josef Bacik0cb59c92010-07-02 12:14:14 -04002907 while (1) {
2908 /*
2909 * I don't think this is needed since we're just marking our
2910 * preallocated extent as written, but just in case it can't
2911 * hurt.
2912 */
2913 if (last == 0) {
2914 err = btrfs_run_delayed_refs(trans, root,
2915 (unsigned long)-1);
2916 BUG_ON(err);
2917 }
2918
2919 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2920 while (cache) {
2921 /*
2922 * Really this shouldn't happen, but it could if we
2923 * couldn't write the entire preallocated extent and
2924 * splitting the extent resulted in a new block.
2925 */
2926 if (cache->dirty) {
2927 btrfs_put_block_group(cache);
2928 goto again;
2929 }
2930 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
2931 break;
2932 cache = next_block_group(root, cache);
2933 }
2934 if (!cache) {
2935 if (last == 0)
2936 break;
2937 last = 0;
2938 continue;
2939 }
2940
2941 btrfs_write_out_cache(root, trans, cache, path);
2942
2943 /*
2944 * If we didn't have an error then the cache state is still
2945 * NEED_WRITE, so we can set it to WRITTEN.
2946 */
2947 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
2948 cache->disk_cache_state = BTRFS_DC_WRITTEN;
2949 last = cache->key.objectid + cache->key.offset;
2950 btrfs_put_block_group(cache);
2951 }
2952
Chris Mason9078a3e2007-04-26 16:46:15 -04002953 btrfs_free_path(path);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002954 return 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002955}
2956
Yan Zhengd2fb3432008-12-11 16:30:39 -05002957int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
2958{
2959 struct btrfs_block_group_cache *block_group;
2960 int readonly = 0;
2961
2962 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
2963 if (!block_group || block_group->ro)
2964 readonly = 1;
2965 if (block_group)
Chris Masonfa9c0d72009-04-03 09:47:43 -04002966 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002967 return readonly;
2968}
2969
Chris Mason593060d2008-03-25 16:50:33 -04002970static int update_space_info(struct btrfs_fs_info *info, u64 flags,
2971 u64 total_bytes, u64 bytes_used,
2972 struct btrfs_space_info **space_info)
2973{
2974 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04002975 int i;
2976 int factor;
2977
2978 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
2979 BTRFS_BLOCK_GROUP_RAID10))
2980 factor = 2;
2981 else
2982 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04002983
2984 found = __find_space_info(info, flags);
2985 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04002986 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04002987 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04002988 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04002989 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04002990 found->disk_used += bytes_used * factor;
Chris Mason8f18cf12008-04-25 16:53:30 -04002991 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04002992 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04002993 *space_info = found;
2994 return 0;
2995 }
Yan Zhengc146afa2008-11-12 14:34:12 -05002996 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04002997 if (!found)
2998 return -ENOMEM;
2999
Yan, Zhengb742bb82010-05-16 10:46:24 -04003000 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
3001 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003002 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003003 spin_lock_init(&found->lock);
Yan, Zhengb742bb82010-05-16 10:46:24 -04003004 found->flags = flags & (BTRFS_BLOCK_GROUP_DATA |
3005 BTRFS_BLOCK_GROUP_SYSTEM |
3006 BTRFS_BLOCK_GROUP_METADATA);
Chris Mason593060d2008-03-25 16:50:33 -04003007 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003008 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003009 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003010 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003011 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003012 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003013 found->bytes_readonly = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003014 found->bytes_may_use = 0;
Chris Mason593060d2008-03-25 16:50:33 -04003015 found->full = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04003016 found->force_alloc = 0;
Chris Mason593060d2008-03-25 16:50:33 -04003017 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003018 list_add_rcu(&found->list, &info->space_info);
Josef Bacik817d52f2009-07-13 21:29:25 -04003019 atomic_set(&found->caching_threads, 0);
Chris Mason593060d2008-03-25 16:50:33 -04003020 return 0;
3021}
3022
Chris Mason8790d502008-04-03 16:29:03 -04003023static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3024{
3025 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
Chris Mason611f0e02008-04-03 16:29:03 -04003026 BTRFS_BLOCK_GROUP_RAID1 |
Chris Mason321aecc2008-04-16 10:49:51 -04003027 BTRFS_BLOCK_GROUP_RAID10 |
Chris Mason611f0e02008-04-03 16:29:03 -04003028 BTRFS_BLOCK_GROUP_DUP);
Chris Mason8790d502008-04-03 16:29:03 -04003029 if (extra_flags) {
3030 if (flags & BTRFS_BLOCK_GROUP_DATA)
3031 fs_info->avail_data_alloc_bits |= extra_flags;
3032 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3033 fs_info->avail_metadata_alloc_bits |= extra_flags;
3034 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3035 fs_info->avail_system_alloc_bits |= extra_flags;
3036 }
3037}
Chris Mason593060d2008-03-25 16:50:33 -04003038
Yan Zheng2b820322008-11-17 21:11:30 -05003039u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003040{
Yan Zheng2b820322008-11-17 21:11:30 -05003041 u64 num_devices = root->fs_info->fs_devices->rw_devices;
Chris Masona061fc82008-05-07 11:43:44 -04003042
3043 if (num_devices == 1)
3044 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0);
3045 if (num_devices < 4)
3046 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
3047
Chris Masonec44a352008-04-28 15:29:52 -04003048 if ((flags & BTRFS_BLOCK_GROUP_DUP) &&
3049 (flags & (BTRFS_BLOCK_GROUP_RAID1 |
Chris Masona061fc82008-05-07 11:43:44 -04003050 BTRFS_BLOCK_GROUP_RAID10))) {
Chris Masonec44a352008-04-28 15:29:52 -04003051 flags &= ~BTRFS_BLOCK_GROUP_DUP;
Chris Masona061fc82008-05-07 11:43:44 -04003052 }
Chris Masonec44a352008-04-28 15:29:52 -04003053
3054 if ((flags & BTRFS_BLOCK_GROUP_RAID1) &&
Chris Masona061fc82008-05-07 11:43:44 -04003055 (flags & BTRFS_BLOCK_GROUP_RAID10)) {
Chris Masonec44a352008-04-28 15:29:52 -04003056 flags &= ~BTRFS_BLOCK_GROUP_RAID1;
Chris Masona061fc82008-05-07 11:43:44 -04003057 }
Chris Masonec44a352008-04-28 15:29:52 -04003058
3059 if ((flags & BTRFS_BLOCK_GROUP_RAID0) &&
3060 ((flags & BTRFS_BLOCK_GROUP_RAID1) |
3061 (flags & BTRFS_BLOCK_GROUP_RAID10) |
3062 (flags & BTRFS_BLOCK_GROUP_DUP)))
3063 flags &= ~BTRFS_BLOCK_GROUP_RAID0;
3064 return flags;
3065}
3066
Yan, Zhengb742bb82010-05-16 10:46:24 -04003067static u64 get_alloc_profile(struct btrfs_root *root, u64 flags)
Josef Bacik6a632092009-02-20 11:00:09 -05003068{
Yan, Zhengb742bb82010-05-16 10:46:24 -04003069 if (flags & BTRFS_BLOCK_GROUP_DATA)
3070 flags |= root->fs_info->avail_data_alloc_bits &
3071 root->fs_info->data_alloc_profile;
3072 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3073 flags |= root->fs_info->avail_system_alloc_bits &
3074 root->fs_info->system_alloc_profile;
3075 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3076 flags |= root->fs_info->avail_metadata_alloc_bits &
3077 root->fs_info->metadata_alloc_profile;
3078 return btrfs_reduce_alloc_profile(root, flags);
3079}
Josef Bacik6a632092009-02-20 11:00:09 -05003080
Yan, Zhengb742bb82010-05-16 10:46:24 -04003081static u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
3082{
3083 u64 flags;
Josef Bacik6a632092009-02-20 11:00:09 -05003084
Yan, Zhengb742bb82010-05-16 10:46:24 -04003085 if (data)
3086 flags = BTRFS_BLOCK_GROUP_DATA;
3087 else if (root == root->fs_info->chunk_root)
3088 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3089 else
3090 flags = BTRFS_BLOCK_GROUP_METADATA;
3091
3092 return get_alloc_profile(root, flags);
Josef Bacik6a632092009-02-20 11:00:09 -05003093}
3094
3095void btrfs_set_inode_space_info(struct btrfs_root *root, struct inode *inode)
3096{
Josef Bacik6a632092009-02-20 11:00:09 -05003097 BTRFS_I(inode)->space_info = __find_space_info(root->fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04003098 BTRFS_BLOCK_GROUP_DATA);
Josef Bacik6a632092009-02-20 11:00:09 -05003099}
3100
3101/*
3102 * This will check the space that the inode allocates from to make sure we have
3103 * enough space for bytes.
3104 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003105int btrfs_check_data_free_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003106{
3107 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003108 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikab6e2412010-03-19 14:38:13 +00003109 u64 used;
Josef Bacik0af3d002010-06-21 14:48:16 -04003110 int ret = 0, committed = 0, alloc_chunk = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003111
3112 /* make sure bytes are sectorsize aligned */
3113 bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
3114
Josef Bacik0af3d002010-06-21 14:48:16 -04003115 if (root == root->fs_info->tree_root) {
3116 alloc_chunk = 0;
3117 committed = 1;
3118 }
3119
Josef Bacik6a632092009-02-20 11:00:09 -05003120 data_sinfo = BTRFS_I(inode)->space_info;
Chris Mason33b4d472009-09-22 14:45:50 -04003121 if (!data_sinfo)
3122 goto alloc;
3123
Josef Bacik6a632092009-02-20 11:00:09 -05003124again:
3125 /* make sure we have enough space to handle the data first */
3126 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003127 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3128 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3129 data_sinfo->bytes_may_use;
Josef Bacikab6e2412010-03-19 14:38:13 +00003130
3131 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003132 struct btrfs_trans_handle *trans;
3133
Josef Bacik6a632092009-02-20 11:00:09 -05003134 /*
3135 * if we don't have enough free bytes in this space then we need
3136 * to alloc a new chunk.
3137 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003138 if (!data_sinfo->full && alloc_chunk) {
Josef Bacik6a632092009-02-20 11:00:09 -05003139 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05003140
3141 data_sinfo->force_alloc = 1;
3142 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04003143alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05003144 alloc_target = btrfs_get_alloc_profile(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003145 trans = btrfs_join_transaction(root, 1);
3146 if (IS_ERR(trans))
3147 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05003148
3149 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
3150 bytes + 2 * 1024 * 1024,
3151 alloc_target, 0);
3152 btrfs_end_transaction(trans, root);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003153 if (ret < 0)
Josef Bacik6a632092009-02-20 11:00:09 -05003154 return ret;
Chris Mason33b4d472009-09-22 14:45:50 -04003155
3156 if (!data_sinfo) {
3157 btrfs_set_inode_space_info(root, inode);
3158 data_sinfo = BTRFS_I(inode)->space_info;
3159 }
Josef Bacik6a632092009-02-20 11:00:09 -05003160 goto again;
3161 }
3162 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003163
3164 /* commit the current transaction and try again */
Sage Weildd7e0b72009-09-29 18:38:44 -04003165 if (!committed && !root->fs_info->open_ioctl_trans) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003166 committed = 1;
3167 trans = btrfs_join_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003168 if (IS_ERR(trans))
3169 return PTR_ERR(trans);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003170 ret = btrfs_commit_transaction(trans, root);
3171 if (ret)
3172 return ret;
3173 goto again;
3174 }
3175
Chris Mason933b5852010-05-26 11:31:00 -04003176#if 0 /* I hope we never need this code again, just in case */
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003177 printk(KERN_ERR "no space left, need %llu, %llu bytes_used, "
3178 "%llu bytes_reserved, " "%llu bytes_pinned, "
3179 "%llu bytes_readonly, %llu may use %llu total\n",
3180 (unsigned long long)bytes,
Joel Becker21380932009-04-21 12:38:29 -07003181 (unsigned long long)data_sinfo->bytes_used,
3182 (unsigned long long)data_sinfo->bytes_reserved,
3183 (unsigned long long)data_sinfo->bytes_pinned,
3184 (unsigned long long)data_sinfo->bytes_readonly,
3185 (unsigned long long)data_sinfo->bytes_may_use,
3186 (unsigned long long)data_sinfo->total_bytes);
Chris Mason933b5852010-05-26 11:31:00 -04003187#endif
Josef Bacik6a632092009-02-20 11:00:09 -05003188 return -ENOSPC;
3189 }
3190 data_sinfo->bytes_may_use += bytes;
3191 BTRFS_I(inode)->reserved_bytes += bytes;
3192 spin_unlock(&data_sinfo->lock);
3193
Josef Bacik9ed74f22009-09-11 16:12:44 -04003194 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003195}
3196
3197/*
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003198 * called when we are clearing an delalloc extent from the
3199 * inode's io_tree or there was an error for whatever reason
3200 * after calling btrfs_check_data_free_space
Josef Bacik6a632092009-02-20 11:00:09 -05003201 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003202void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003203{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003204 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003205 struct btrfs_space_info *data_sinfo;
3206
3207 /* make sure bytes are sectorsize aligned */
3208 bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
3209
3210 data_sinfo = BTRFS_I(inode)->space_info;
3211 spin_lock(&data_sinfo->lock);
3212 data_sinfo->bytes_may_use -= bytes;
3213 BTRFS_I(inode)->reserved_bytes -= bytes;
3214 spin_unlock(&data_sinfo->lock);
3215}
3216
Josef Bacik97e728d2009-04-21 17:40:57 -04003217static void force_metadata_allocation(struct btrfs_fs_info *info)
3218{
3219 struct list_head *head = &info->space_info;
3220 struct btrfs_space_info *found;
3221
3222 rcu_read_lock();
3223 list_for_each_entry_rcu(found, head, list) {
3224 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
3225 found->force_alloc = 1;
3226 }
3227 rcu_read_unlock();
3228}
3229
Chris Masone5bc2452010-10-26 13:37:56 -04003230static int should_alloc_chunk(struct btrfs_root *root,
3231 struct btrfs_space_info *sinfo, u64 alloc_bytes)
Yan, Zheng424499d2010-05-16 10:46:25 -04003232{
3233 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Masone5bc2452010-10-26 13:37:56 -04003234 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04003235
3236 if (sinfo->bytes_used + sinfo->bytes_reserved +
3237 alloc_bytes + 256 * 1024 * 1024 < num_bytes)
3238 return 0;
3239
3240 if (sinfo->bytes_used + sinfo->bytes_reserved +
3241 alloc_bytes < div_factor(num_bytes, 8))
3242 return 0;
3243
Chris Masone5bc2452010-10-26 13:37:56 -04003244 thresh = btrfs_super_total_bytes(&root->fs_info->super_copy);
3245 thresh = max_t(u64, 256 * 1024 * 1024, div_factor_fine(thresh, 5));
3246
3247 if (num_bytes > thresh && sinfo->bytes_used < div_factor(num_bytes, 3))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04003248 return 0;
3249
Yan, Zheng424499d2010-05-16 10:46:25 -04003250 return 1;
3251}
3252
Chris Mason6324fbf2008-03-24 15:01:59 -04003253static int do_chunk_alloc(struct btrfs_trans_handle *trans,
3254 struct btrfs_root *extent_root, u64 alloc_bytes,
Chris Mason0ef3e662008-05-24 14:04:53 -04003255 u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04003256{
3257 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04003258 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Yan Zhengc146afa2008-11-12 14:34:12 -05003259 int ret = 0;
3260
Josef Bacik97e728d2009-04-21 17:40:57 -04003261 mutex_lock(&fs_info->chunk_mutex);
Chris Mason6324fbf2008-03-24 15:01:59 -04003262
Yan Zheng2b820322008-11-17 21:11:30 -05003263 flags = btrfs_reduce_alloc_profile(extent_root, flags);
Chris Masonec44a352008-04-28 15:29:52 -04003264
Chris Mason6324fbf2008-03-24 15:01:59 -04003265 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04003266 if (!space_info) {
3267 ret = update_space_info(extent_root->fs_info, flags,
3268 0, 0, &space_info);
3269 BUG_ON(ret);
3270 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003271 BUG_ON(!space_info);
3272
Josef Bacik25179202008-10-29 14:49:05 -04003273 spin_lock(&space_info->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003274 if (space_info->force_alloc)
Chris Mason0ef3e662008-05-24 14:04:53 -04003275 force = 1;
Josef Bacik25179202008-10-29 14:49:05 -04003276 if (space_info->full) {
3277 spin_unlock(&space_info->lock);
Chris Mason925baed2008-06-25 16:01:30 -04003278 goto out;
Josef Bacik25179202008-10-29 14:49:05 -04003279 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003280
Chris Masone5bc2452010-10-26 13:37:56 -04003281 if (!force && !should_alloc_chunk(extent_root, space_info,
3282 alloc_bytes)) {
Josef Bacik25179202008-10-29 14:49:05 -04003283 spin_unlock(&space_info->lock);
Chris Mason925baed2008-06-25 16:01:30 -04003284 goto out;
Josef Bacik25179202008-10-29 14:49:05 -04003285 }
Josef Bacik25179202008-10-29 14:49:05 -04003286 spin_unlock(&space_info->lock);
3287
Josef Bacik97e728d2009-04-21 17:40:57 -04003288 /*
Josef Bacik67377732010-09-16 16:19:09 -04003289 * If we have mixed data/metadata chunks we want to make sure we keep
3290 * allocating mixed chunks instead of individual chunks.
3291 */
3292 if (btrfs_mixed_space_info(space_info))
3293 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
3294
3295 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04003296 * if we're doing a data chunk, go ahead and make sure that
3297 * we keep a reasonable number of metadata chunks allocated in the
3298 * FS as well.
3299 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04003300 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04003301 fs_info->data_chunk_allocations++;
3302 if (!(fs_info->data_chunk_allocations %
3303 fs_info->metadata_ratio))
3304 force_metadata_allocation(fs_info);
3305 }
3306
Yan Zheng2b820322008-11-17 21:11:30 -05003307 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003308 spin_lock(&space_info->lock);
Chris Masond3977122009-01-05 21:25:51 -05003309 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04003310 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04003311 else
3312 ret = 1;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003313 space_info->force_alloc = 0;
3314 spin_unlock(&space_info->lock);
Chris Masona74a4b92008-06-25 16:01:31 -04003315out:
Yan Zhengc146afa2008-11-12 14:34:12 -05003316 mutex_unlock(&extent_root->fs_info->chunk_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003317 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04003318}
3319
Yan, Zheng5da9d012010-05-16 10:46:25 -04003320/*
3321 * shrink metadata reservation for delalloc
3322 */
3323static int shrink_delalloc(struct btrfs_trans_handle *trans,
Josef Bacik0019f102010-10-15 15:18:40 -04003324 struct btrfs_root *root, u64 to_reclaim, int sync)
Yan, Zheng5da9d012010-05-16 10:46:25 -04003325{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003326 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04003327 struct btrfs_space_info *space_info;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003328 u64 reserved;
3329 u64 max_reclaim;
3330 u64 reclaimed = 0;
3331 int pause = 1;
Chris Masonbf9022e2010-10-26 13:40:45 -04003332 int nr_pages = (2 * 1024 * 1024) >> PAGE_CACHE_SHIFT;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003333
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003334 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04003335 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04003336
3337 smp_mb();
Josef Bacik0019f102010-10-15 15:18:40 -04003338 reserved = space_info->bytes_reserved;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003339
3340 if (reserved == 0)
3341 return 0;
3342
3343 max_reclaim = min(reserved, to_reclaim);
3344
3345 while (1) {
Chris Masonbf9022e2010-10-26 13:40:45 -04003346 /* have the flusher threads jump in and do some IO */
3347 smp_mb();
3348 nr_pages = min_t(unsigned long, nr_pages,
3349 root->fs_info->delalloc_bytes >> PAGE_CACHE_SHIFT);
3350 writeback_inodes_sb_nr_if_idle(root->fs_info->sb, nr_pages);
Yan, Zheng5da9d012010-05-16 10:46:25 -04003351
Josef Bacik0019f102010-10-15 15:18:40 -04003352 spin_lock(&space_info->lock);
3353 if (reserved > space_info->bytes_reserved)
3354 reclaimed += reserved - space_info->bytes_reserved;
3355 reserved = space_info->bytes_reserved;
3356 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04003357
3358 if (reserved == 0 || reclaimed >= max_reclaim)
3359 break;
3360
3361 if (trans && trans->transaction->blocked)
3362 return -EAGAIN;
Chris Masonbf9022e2010-10-26 13:40:45 -04003363
3364 __set_current_state(TASK_INTERRUPTIBLE);
3365 schedule_timeout(pause);
3366 pause <<= 1;
3367 if (pause > HZ / 10)
3368 pause = HZ / 10;
3369
Yan, Zheng5da9d012010-05-16 10:46:25 -04003370 }
3371 return reclaimed >= to_reclaim;
3372}
3373
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003374/*
3375 * Retries tells us how many times we've called reserve_metadata_bytes. The
3376 * idea is if this is the first call (retries == 0) then we will add to our
3377 * reserved count if we can't make the allocation in order to hold our place
3378 * while we go and try and free up space. That way for retries > 1 we don't try
3379 * and add space, we just check to see if the amount of unused space is >= the
3380 * total space, meaning that our reservation is valid.
3381 *
3382 * However if we don't intend to retry this reservation, pass -1 as retries so
3383 * that it short circuits this logic.
3384 */
3385static int reserve_metadata_bytes(struct btrfs_trans_handle *trans,
3386 struct btrfs_root *root,
3387 struct btrfs_block_rsv *block_rsv,
3388 u64 orig_bytes, int flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003389{
3390 struct btrfs_space_info *space_info = block_rsv->space_info;
3391 u64 unused;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003392 u64 num_bytes = orig_bytes;
3393 int retries = 0;
3394 int ret = 0;
3395 bool reserved = false;
Josef Bacik38227932010-10-26 12:52:53 -04003396 bool committed = false;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003397
3398again:
3399 ret = -ENOSPC;
3400 if (reserved)
3401 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003402
3403 spin_lock(&space_info->lock);
3404 unused = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik6d487552010-10-15 15:13:32 -04003405 space_info->bytes_pinned + space_info->bytes_readonly +
3406 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003407
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003408 /*
3409 * The idea here is that we've not already over-reserved the block group
3410 * then we can go ahead and save our reservation first and then start
3411 * flushing if we need to. Otherwise if we've already overcommitted
3412 * lets start flushing stuff first and then come back and try to make
3413 * our reservation.
3414 */
3415 if (unused <= space_info->total_bytes) {
3416 unused -= space_info->total_bytes;
3417 if (unused >= num_bytes) {
3418 if (!reserved)
3419 space_info->bytes_reserved += orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003420 ret = 0;
3421 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003422 /*
3423 * Ok set num_bytes to orig_bytes since we aren't
3424 * overocmmitted, this way we only try and reclaim what
3425 * we need.
3426 */
3427 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003428 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003429 } else {
3430 /*
3431 * Ok we're over committed, set num_bytes to the overcommitted
3432 * amount plus the amount of bytes that we need for this
3433 * reservation.
3434 */
3435 num_bytes = unused - space_info->total_bytes +
3436 (orig_bytes * (retries + 1));
Yan, Zhengf0486c62010-05-16 10:46:25 -04003437 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003438
3439 /*
3440 * Couldn't make our reservation, save our place so while we're trying
3441 * to reclaim space we can actually use it instead of somebody else
3442 * stealing it from us.
3443 */
3444 if (ret && !reserved) {
3445 space_info->bytes_reserved += orig_bytes;
3446 reserved = true;
3447 }
3448
Yan, Zhengf0486c62010-05-16 10:46:25 -04003449 spin_unlock(&space_info->lock);
3450
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003451 if (!ret)
3452 return 0;
3453
3454 if (!flush)
3455 goto out;
3456
3457 /*
3458 * We do synchronous shrinking since we don't actually unreserve
3459 * metadata until after the IO is completed.
3460 */
3461 ret = shrink_delalloc(trans, root, num_bytes, 1);
3462 if (ret > 0)
3463 return 0;
3464 else if (ret < 0)
3465 goto out;
3466
3467 /*
3468 * So if we were overcommitted it's possible that somebody else flushed
3469 * out enough space and we simply didn't have enough space to reclaim,
3470 * so go back around and try again.
3471 */
3472 if (retries < 2) {
3473 retries++;
3474 goto again;
3475 }
3476
3477 spin_lock(&space_info->lock);
3478 /*
3479 * Not enough space to be reclaimed, don't bother committing the
3480 * transaction.
3481 */
3482 if (space_info->bytes_pinned < orig_bytes)
3483 ret = -ENOSPC;
3484 spin_unlock(&space_info->lock);
3485 if (ret)
3486 goto out;
3487
3488 ret = -EAGAIN;
Josef Bacik38227932010-10-26 12:52:53 -04003489 if (trans || committed)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003490 goto out;
3491
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003492 ret = -ENOSPC;
3493 trans = btrfs_join_transaction(root, 1);
3494 if (IS_ERR(trans))
3495 goto out;
3496 ret = btrfs_commit_transaction(trans, root);
Josef Bacik38227932010-10-26 12:52:53 -04003497 if (!ret) {
3498 trans = NULL;
3499 committed = true;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003500 goto again;
Josef Bacik38227932010-10-26 12:52:53 -04003501 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003502
3503out:
3504 if (reserved) {
3505 spin_lock(&space_info->lock);
3506 space_info->bytes_reserved -= orig_bytes;
3507 spin_unlock(&space_info->lock);
3508 }
3509
Yan, Zhengf0486c62010-05-16 10:46:25 -04003510 return ret;
3511}
3512
3513static struct btrfs_block_rsv *get_block_rsv(struct btrfs_trans_handle *trans,
3514 struct btrfs_root *root)
3515{
3516 struct btrfs_block_rsv *block_rsv;
3517 if (root->ref_cows)
3518 block_rsv = trans->block_rsv;
3519 else
3520 block_rsv = root->block_rsv;
3521
3522 if (!block_rsv)
3523 block_rsv = &root->fs_info->empty_block_rsv;
3524
3525 return block_rsv;
3526}
3527
3528static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
3529 u64 num_bytes)
3530{
3531 int ret = -ENOSPC;
3532 spin_lock(&block_rsv->lock);
3533 if (block_rsv->reserved >= num_bytes) {
3534 block_rsv->reserved -= num_bytes;
3535 if (block_rsv->reserved < block_rsv->size)
3536 block_rsv->full = 0;
3537 ret = 0;
3538 }
3539 spin_unlock(&block_rsv->lock);
3540 return ret;
3541}
3542
3543static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
3544 u64 num_bytes, int update_size)
3545{
3546 spin_lock(&block_rsv->lock);
3547 block_rsv->reserved += num_bytes;
3548 if (update_size)
3549 block_rsv->size += num_bytes;
3550 else if (block_rsv->reserved >= block_rsv->size)
3551 block_rsv->full = 1;
3552 spin_unlock(&block_rsv->lock);
3553}
3554
3555void block_rsv_release_bytes(struct btrfs_block_rsv *block_rsv,
3556 struct btrfs_block_rsv *dest, u64 num_bytes)
3557{
3558 struct btrfs_space_info *space_info = block_rsv->space_info;
3559
3560 spin_lock(&block_rsv->lock);
3561 if (num_bytes == (u64)-1)
3562 num_bytes = block_rsv->size;
3563 block_rsv->size -= num_bytes;
3564 if (block_rsv->reserved >= block_rsv->size) {
3565 num_bytes = block_rsv->reserved - block_rsv->size;
3566 block_rsv->reserved = block_rsv->size;
3567 block_rsv->full = 1;
3568 } else {
3569 num_bytes = 0;
3570 }
3571 spin_unlock(&block_rsv->lock);
3572
3573 if (num_bytes > 0) {
3574 if (dest) {
3575 block_rsv_add_bytes(dest, num_bytes, 0);
3576 } else {
3577 spin_lock(&space_info->lock);
3578 space_info->bytes_reserved -= num_bytes;
3579 spin_unlock(&space_info->lock);
3580 }
3581 }
3582}
3583
3584static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
3585 struct btrfs_block_rsv *dst, u64 num_bytes)
3586{
3587 int ret;
3588
3589 ret = block_rsv_use_bytes(src, num_bytes);
3590 if (ret)
3591 return ret;
3592
3593 block_rsv_add_bytes(dst, num_bytes, 1);
3594 return 0;
3595}
3596
3597void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv)
3598{
3599 memset(rsv, 0, sizeof(*rsv));
3600 spin_lock_init(&rsv->lock);
3601 atomic_set(&rsv->usage, 1);
3602 rsv->priority = 6;
3603 INIT_LIST_HEAD(&rsv->list);
3604}
3605
3606struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root)
3607{
3608 struct btrfs_block_rsv *block_rsv;
3609 struct btrfs_fs_info *fs_info = root->fs_info;
3610 u64 alloc_target;
3611
3612 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
3613 if (!block_rsv)
3614 return NULL;
3615
3616 btrfs_init_block_rsv(block_rsv);
3617
3618 alloc_target = btrfs_get_alloc_profile(root, 0);
3619 block_rsv->space_info = __find_space_info(fs_info,
3620 BTRFS_BLOCK_GROUP_METADATA);
3621
3622 return block_rsv;
3623}
3624
3625void btrfs_free_block_rsv(struct btrfs_root *root,
3626 struct btrfs_block_rsv *rsv)
3627{
3628 if (rsv && atomic_dec_and_test(&rsv->usage)) {
3629 btrfs_block_rsv_release(root, rsv, (u64)-1);
3630 if (!rsv->durable)
3631 kfree(rsv);
3632 }
3633}
3634
3635/*
3636 * make the block_rsv struct be able to capture freed space.
3637 * the captured space will re-add to the the block_rsv struct
3638 * after transaction commit
3639 */
3640void btrfs_add_durable_block_rsv(struct btrfs_fs_info *fs_info,
3641 struct btrfs_block_rsv *block_rsv)
3642{
3643 block_rsv->durable = 1;
3644 mutex_lock(&fs_info->durable_block_rsv_mutex);
3645 list_add_tail(&block_rsv->list, &fs_info->durable_block_rsv_list);
3646 mutex_unlock(&fs_info->durable_block_rsv_mutex);
3647}
3648
3649int btrfs_block_rsv_add(struct btrfs_trans_handle *trans,
3650 struct btrfs_root *root,
3651 struct btrfs_block_rsv *block_rsv,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003652 u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003653{
3654 int ret;
3655
3656 if (num_bytes == 0)
3657 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003658
3659 ret = reserve_metadata_bytes(trans, root, block_rsv, num_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003660 if (!ret) {
3661 block_rsv_add_bytes(block_rsv, num_bytes, 1);
3662 return 0;
3663 }
3664
Yan, Zhengf0486c62010-05-16 10:46:25 -04003665 return ret;
3666}
3667
3668int btrfs_block_rsv_check(struct btrfs_trans_handle *trans,
3669 struct btrfs_root *root,
3670 struct btrfs_block_rsv *block_rsv,
3671 u64 min_reserved, int min_factor)
3672{
3673 u64 num_bytes = 0;
3674 int commit_trans = 0;
3675 int ret = -ENOSPC;
3676
3677 if (!block_rsv)
3678 return 0;
3679
3680 spin_lock(&block_rsv->lock);
3681 if (min_factor > 0)
3682 num_bytes = div_factor(block_rsv->size, min_factor);
3683 if (min_reserved > num_bytes)
3684 num_bytes = min_reserved;
3685
3686 if (block_rsv->reserved >= num_bytes) {
3687 ret = 0;
3688 } else {
3689 num_bytes -= block_rsv->reserved;
3690 if (block_rsv->durable &&
3691 block_rsv->freed[0] + block_rsv->freed[1] >= num_bytes)
3692 commit_trans = 1;
3693 }
3694 spin_unlock(&block_rsv->lock);
3695 if (!ret)
3696 return 0;
3697
3698 if (block_rsv->refill_used) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003699 ret = reserve_metadata_bytes(trans, root, block_rsv,
3700 num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003701 if (!ret) {
3702 block_rsv_add_bytes(block_rsv, num_bytes, 0);
3703 return 0;
3704 }
3705 }
3706
3707 if (commit_trans) {
3708 if (trans)
3709 return -EAGAIN;
3710
3711 trans = btrfs_join_transaction(root, 1);
3712 BUG_ON(IS_ERR(trans));
3713 ret = btrfs_commit_transaction(trans, root);
3714 return 0;
3715 }
3716
3717 WARN_ON(1);
3718 printk(KERN_INFO"block_rsv size %llu reserved %llu freed %llu %llu\n",
3719 block_rsv->size, block_rsv->reserved,
3720 block_rsv->freed[0], block_rsv->freed[1]);
3721
3722 return -ENOSPC;
3723}
3724
3725int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
3726 struct btrfs_block_rsv *dst_rsv,
3727 u64 num_bytes)
3728{
3729 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3730}
3731
3732void btrfs_block_rsv_release(struct btrfs_root *root,
3733 struct btrfs_block_rsv *block_rsv,
3734 u64 num_bytes)
3735{
3736 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
3737 if (global_rsv->full || global_rsv == block_rsv ||
3738 block_rsv->space_info != global_rsv->space_info)
3739 global_rsv = NULL;
3740 block_rsv_release_bytes(block_rsv, global_rsv, num_bytes);
3741}
3742
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003743/*
3744 * helper to calculate size of global block reservation.
3745 * the desired value is sum of space used by extent tree,
3746 * checksum tree and root tree
3747 */
3748static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
3749{
3750 struct btrfs_space_info *sinfo;
3751 u64 num_bytes;
3752 u64 meta_used;
3753 u64 data_used;
3754 int csum_size = btrfs_super_csum_size(&fs_info->super_copy);
3755#if 0
3756 /*
3757 * per tree used space accounting can be inaccuracy, so we
3758 * can't rely on it.
3759 */
3760 spin_lock(&fs_info->extent_root->accounting_lock);
3761 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item);
3762 spin_unlock(&fs_info->extent_root->accounting_lock);
3763
3764 spin_lock(&fs_info->csum_root->accounting_lock);
3765 num_bytes += btrfs_root_used(&fs_info->csum_root->root_item);
3766 spin_unlock(&fs_info->csum_root->accounting_lock);
3767
3768 spin_lock(&fs_info->tree_root->accounting_lock);
3769 num_bytes += btrfs_root_used(&fs_info->tree_root->root_item);
3770 spin_unlock(&fs_info->tree_root->accounting_lock);
3771#endif
3772 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
3773 spin_lock(&sinfo->lock);
3774 data_used = sinfo->bytes_used;
3775 spin_unlock(&sinfo->lock);
3776
3777 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
3778 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04003779 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
3780 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003781 meta_used = sinfo->bytes_used;
3782 spin_unlock(&sinfo->lock);
3783
3784 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
3785 csum_size * 2;
3786 num_bytes += div64_u64(data_used + meta_used, 50);
3787
3788 if (num_bytes * 3 > meta_used)
3789 num_bytes = div64_u64(meta_used, 3);
3790
3791 return ALIGN(num_bytes, fs_info->extent_root->leafsize << 10);
3792}
3793
3794static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
3795{
3796 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
3797 struct btrfs_space_info *sinfo = block_rsv->space_info;
3798 u64 num_bytes;
3799
3800 num_bytes = calc_global_metadata_size(fs_info);
3801
3802 spin_lock(&block_rsv->lock);
3803 spin_lock(&sinfo->lock);
3804
3805 block_rsv->size = num_bytes;
3806
3807 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04003808 sinfo->bytes_reserved + sinfo->bytes_readonly +
3809 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003810
3811 if (sinfo->total_bytes > num_bytes) {
3812 num_bytes = sinfo->total_bytes - num_bytes;
3813 block_rsv->reserved += num_bytes;
3814 sinfo->bytes_reserved += num_bytes;
3815 }
3816
3817 if (block_rsv->reserved >= block_rsv->size) {
3818 num_bytes = block_rsv->reserved - block_rsv->size;
3819 sinfo->bytes_reserved -= num_bytes;
3820 block_rsv->reserved = block_rsv->size;
3821 block_rsv->full = 1;
3822 }
3823#if 0
3824 printk(KERN_INFO"global block rsv size %llu reserved %llu\n",
3825 block_rsv->size, block_rsv->reserved);
3826#endif
3827 spin_unlock(&sinfo->lock);
3828 spin_unlock(&block_rsv->lock);
3829}
3830
Yan, Zhengf0486c62010-05-16 10:46:25 -04003831static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
3832{
3833 struct btrfs_space_info *space_info;
3834
3835 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
3836 fs_info->chunk_block_rsv.space_info = space_info;
3837 fs_info->chunk_block_rsv.priority = 10;
3838
3839 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003840 fs_info->global_block_rsv.space_info = space_info;
3841 fs_info->global_block_rsv.priority = 10;
3842 fs_info->global_block_rsv.refill_used = 1;
3843 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003844 fs_info->trans_block_rsv.space_info = space_info;
3845 fs_info->empty_block_rsv.space_info = space_info;
3846 fs_info->empty_block_rsv.priority = 10;
3847
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003848 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
3849 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
3850 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
3851 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003852 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003853
3854 btrfs_add_durable_block_rsv(fs_info, &fs_info->global_block_rsv);
3855
3856 btrfs_add_durable_block_rsv(fs_info, &fs_info->delalloc_block_rsv);
3857
3858 update_global_block_rsv(fs_info);
3859}
3860
3861static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
3862{
3863 block_rsv_release_bytes(&fs_info->global_block_rsv, NULL, (u64)-1);
3864 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
3865 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
3866 WARN_ON(fs_info->trans_block_rsv.size > 0);
3867 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
3868 WARN_ON(fs_info->chunk_block_rsv.size > 0);
3869 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003870}
3871
Yan, Zhenga22285a2010-05-16 10:48:46 -04003872static u64 calc_trans_metadata_size(struct btrfs_root *root, int num_items)
3873{
3874 return (root->leafsize + root->nodesize * (BTRFS_MAX_LEVEL - 1)) *
3875 3 * num_items;
3876}
3877
3878int btrfs_trans_reserve_metadata(struct btrfs_trans_handle *trans,
3879 struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003880 int num_items)
Yan, Zhenga22285a2010-05-16 10:48:46 -04003881{
3882 u64 num_bytes;
3883 int ret;
3884
3885 if (num_items == 0 || root->fs_info->chunk_root == root)
3886 return 0;
3887
3888 num_bytes = calc_trans_metadata_size(root, num_items);
3889 ret = btrfs_block_rsv_add(trans, root, &root->fs_info->trans_block_rsv,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003890 num_bytes);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003891 if (!ret) {
3892 trans->bytes_reserved += num_bytes;
3893 trans->block_rsv = &root->fs_info->trans_block_rsv;
3894 }
3895 return ret;
3896}
3897
3898void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
3899 struct btrfs_root *root)
3900{
3901 if (!trans->bytes_reserved)
3902 return;
3903
3904 BUG_ON(trans->block_rsv != &root->fs_info->trans_block_rsv);
3905 btrfs_block_rsv_release(root, trans->block_rsv,
3906 trans->bytes_reserved);
3907 trans->bytes_reserved = 0;
3908}
3909
Yan, Zhengd68fc572010-05-16 10:49:58 -04003910int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
3911 struct inode *inode)
3912{
3913 struct btrfs_root *root = BTRFS_I(inode)->root;
3914 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
3915 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
3916
3917 /*
3918 * one for deleting orphan item, one for updating inode and
3919 * two for calling btrfs_truncate_inode_items.
3920 *
3921 * btrfs_truncate_inode_items is a delete operation, it frees
3922 * more space than it uses in most cases. So two units of
3923 * metadata space should be enough for calling it many times.
3924 * If all of the metadata space is used, we can commit
3925 * transaction and use space it freed.
3926 */
3927 u64 num_bytes = calc_trans_metadata_size(root, 4);
3928 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3929}
3930
3931void btrfs_orphan_release_metadata(struct inode *inode)
3932{
3933 struct btrfs_root *root = BTRFS_I(inode)->root;
3934 u64 num_bytes = calc_trans_metadata_size(root, 4);
3935 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
3936}
3937
Yan, Zhenga22285a2010-05-16 10:48:46 -04003938int btrfs_snap_reserve_metadata(struct btrfs_trans_handle *trans,
3939 struct btrfs_pending_snapshot *pending)
3940{
3941 struct btrfs_root *root = pending->root;
3942 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
3943 struct btrfs_block_rsv *dst_rsv = &pending->block_rsv;
3944 /*
3945 * two for root back/forward refs, two for directory entries
3946 * and one for root of the snapshot.
3947 */
3948 u64 num_bytes = calc_trans_metadata_size(root, 5);
3949 dst_rsv->space_info = src_rsv->space_info;
3950 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3951}
3952
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003953static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes)
3954{
3955 return num_bytes >>= 3;
3956}
3957
3958int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
3959{
3960 struct btrfs_root *root = BTRFS_I(inode)->root;
3961 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
3962 u64 to_reserve;
3963 int nr_extents;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003964 int ret;
3965
3966 if (btrfs_transaction_in_commit(root->fs_info))
3967 schedule_timeout(1);
3968
3969 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003970
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003971 spin_lock(&BTRFS_I(inode)->accounting_lock);
3972 nr_extents = atomic_read(&BTRFS_I(inode)->outstanding_extents) + 1;
3973 if (nr_extents > BTRFS_I(inode)->reserved_extents) {
3974 nr_extents -= BTRFS_I(inode)->reserved_extents;
3975 to_reserve = calc_trans_metadata_size(root, nr_extents);
3976 } else {
3977 nr_extents = 0;
3978 to_reserve = 0;
3979 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003980 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003981
3982 to_reserve += calc_csum_metadata_size(inode, num_bytes);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003983 ret = reserve_metadata_bytes(NULL, root, block_rsv, to_reserve, 1);
3984 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003985 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003986
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003987 spin_lock(&BTRFS_I(inode)->accounting_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003988 BTRFS_I(inode)->reserved_extents += nr_extents;
3989 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
3990 spin_unlock(&BTRFS_I(inode)->accounting_lock);
3991
3992 block_rsv_add_bytes(block_rsv, to_reserve, 1);
3993
3994 if (block_rsv->size > 512 * 1024 * 1024)
Josef Bacik0019f102010-10-15 15:18:40 -04003995 shrink_delalloc(NULL, root, to_reserve, 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003996
3997 return 0;
3998}
3999
4000void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
4001{
4002 struct btrfs_root *root = BTRFS_I(inode)->root;
4003 u64 to_free;
4004 int nr_extents;
4005
4006 num_bytes = ALIGN(num_bytes, root->sectorsize);
4007 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
4008
4009 spin_lock(&BTRFS_I(inode)->accounting_lock);
4010 nr_extents = atomic_read(&BTRFS_I(inode)->outstanding_extents);
4011 if (nr_extents < BTRFS_I(inode)->reserved_extents) {
4012 nr_extents = BTRFS_I(inode)->reserved_extents - nr_extents;
4013 BTRFS_I(inode)->reserved_extents -= nr_extents;
4014 } else {
4015 nr_extents = 0;
4016 }
4017 spin_unlock(&BTRFS_I(inode)->accounting_lock);
4018
4019 to_free = calc_csum_metadata_size(inode, num_bytes);
4020 if (nr_extents > 0)
4021 to_free += calc_trans_metadata_size(root, nr_extents);
4022
4023 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
4024 to_free);
4025}
4026
4027int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
4028{
4029 int ret;
4030
4031 ret = btrfs_check_data_free_space(inode, num_bytes);
4032 if (ret)
4033 return ret;
4034
4035 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
4036 if (ret) {
4037 btrfs_free_reserved_data_space(inode, num_bytes);
4038 return ret;
4039 }
4040
4041 return 0;
4042}
4043
4044void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
4045{
4046 btrfs_delalloc_release_metadata(inode, num_bytes);
4047 btrfs_free_reserved_data_space(inode, num_bytes);
4048}
4049
Chris Mason9078a3e2007-04-26 16:46:15 -04004050static int update_block_group(struct btrfs_trans_handle *trans,
4051 struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04004052 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04004053{
Josef Bacik0af3d002010-06-21 14:48:16 -04004054 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04004055 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04004056 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004057 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04004058 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04004059 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04004060
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004061 /* block accounting for super block */
4062 spin_lock(&info->delalloc_lock);
4063 old_val = btrfs_super_bytes_used(&info->super_copy);
4064 if (alloc)
4065 old_val += num_bytes;
4066 else
4067 old_val -= num_bytes;
4068 btrfs_set_super_bytes_used(&info->super_copy, old_val);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004069 spin_unlock(&info->delalloc_lock);
4070
Chris Masond3977122009-01-05 21:25:51 -05004071 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04004072 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004073 if (!cache)
Chris Mason9078a3e2007-04-26 16:46:15 -04004074 return -1;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004075 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
4076 BTRFS_BLOCK_GROUP_RAID1 |
4077 BTRFS_BLOCK_GROUP_RAID10))
4078 factor = 2;
4079 else
4080 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04004081 /*
4082 * If this block group has free space cache written out, we
4083 * need to make sure to load it if we are removing space. This
4084 * is because we need the unpinning stage to actually add the
4085 * space back to the block group, otherwise we will leak space.
4086 */
4087 if (!alloc && cache->cached == BTRFS_CACHE_NO)
4088 cache_block_group(cache, trans, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04004089
Chris Masondb945352007-10-15 16:15:53 -04004090 byte_in_group = bytenr - cache->key.objectid;
4091 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04004092
Josef Bacik25179202008-10-29 14:49:05 -04004093 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04004094 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04004095
4096 if (btrfs_super_cache_generation(&info->super_copy) != 0 &&
4097 cache->disk_cache_state < BTRFS_DC_CLEAR)
4098 cache->disk_cache_state = BTRFS_DC_CLEAR;
4099
Josef Bacik0f9dd462008-09-23 13:14:11 -04004100 cache->dirty = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04004101 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04004102 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04004103 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04004104 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04004105 btrfs_set_block_group_used(&cache->item, old_val);
4106 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04004107 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004108 cache->space_info->bytes_used += num_bytes;
4109 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04004110 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04004111 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04004112 } else {
Chris Masondb945352007-10-15 16:15:53 -04004113 old_val -= num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04004114 btrfs_set_block_group_used(&cache->item, old_val);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004115 cache->pinned += num_bytes;
4116 cache->space_info->bytes_pinned += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004117 cache->space_info->bytes_used -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004118 cache->space_info->disk_used -= num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04004119 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04004120 spin_unlock(&cache->space_info->lock);
Liu Hui1f3c79a2009-01-05 15:57:51 -05004121
Yan, Zhengf0486c62010-05-16 10:46:25 -04004122 set_extent_dirty(info->pinned_extents,
4123 bytenr, bytenr + num_bytes - 1,
4124 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04004125 }
Chris Masonfa9c0d72009-04-03 09:47:43 -04004126 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04004127 total -= num_bytes;
4128 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004129 }
4130 return 0;
4131}
Chris Mason6324fbf2008-03-24 15:01:59 -04004132
Chris Masona061fc82008-05-07 11:43:44 -04004133static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
4134{
Josef Bacik0f9dd462008-09-23 13:14:11 -04004135 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004136 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004137
4138 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
4139 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04004140 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004141
Yan Zhengd2fb3432008-12-11 16:30:39 -05004142 bytenr = cache->key.objectid;
Chris Masonfa9c0d72009-04-03 09:47:43 -04004143 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05004144
4145 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04004146}
4147
Yan, Zhengf0486c62010-05-16 10:46:25 -04004148static int pin_down_extent(struct btrfs_root *root,
4149 struct btrfs_block_group_cache *cache,
4150 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05004151{
Yan Zheng11833d62009-09-11 16:11:19 -04004152 spin_lock(&cache->space_info->lock);
4153 spin_lock(&cache->lock);
4154 cache->pinned += num_bytes;
4155 cache->space_info->bytes_pinned += num_bytes;
4156 if (reserved) {
4157 cache->reserved -= num_bytes;
4158 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05004159 }
Yan Zheng11833d62009-09-11 16:11:19 -04004160 spin_unlock(&cache->lock);
4161 spin_unlock(&cache->space_info->lock);
4162
Yan, Zhengf0486c62010-05-16 10:46:25 -04004163 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
4164 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05004165 return 0;
4166}
Chris Mason9078a3e2007-04-26 16:46:15 -04004167
Yan, Zhengf0486c62010-05-16 10:46:25 -04004168/*
4169 * this function must be called within transaction
4170 */
4171int btrfs_pin_extent(struct btrfs_root *root,
4172 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04004173{
Yan, Zhengf0486c62010-05-16 10:46:25 -04004174 struct btrfs_block_group_cache *cache;
4175
4176 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
4177 BUG_ON(!cache);
4178
4179 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
4180
4181 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04004182 return 0;
4183}
Zheng Yane8569812008-09-26 10:05:48 -04004184
Yan, Zhengf0486c62010-05-16 10:46:25 -04004185/*
4186 * update size of reserved extents. this function may return -EAGAIN
4187 * if 'reserve' is true or 'sinfo' is false.
4188 */
4189static int update_reserved_bytes(struct btrfs_block_group_cache *cache,
4190 u64 num_bytes, int reserve, int sinfo)
4191{
4192 int ret = 0;
4193 if (sinfo) {
4194 struct btrfs_space_info *space_info = cache->space_info;
4195 spin_lock(&space_info->lock);
4196 spin_lock(&cache->lock);
4197 if (reserve) {
4198 if (cache->ro) {
4199 ret = -EAGAIN;
4200 } else {
4201 cache->reserved += num_bytes;
4202 space_info->bytes_reserved += num_bytes;
4203 }
4204 } else {
4205 if (cache->ro)
4206 space_info->bytes_readonly += num_bytes;
4207 cache->reserved -= num_bytes;
4208 space_info->bytes_reserved -= num_bytes;
4209 }
4210 spin_unlock(&cache->lock);
4211 spin_unlock(&space_info->lock);
4212 } else {
4213 spin_lock(&cache->lock);
4214 if (cache->ro) {
4215 ret = -EAGAIN;
4216 } else {
4217 if (reserve)
4218 cache->reserved += num_bytes;
4219 else
4220 cache->reserved -= num_bytes;
4221 }
4222 spin_unlock(&cache->lock);
4223 }
4224 return ret;
4225}
4226
Yan Zheng11833d62009-09-11 16:11:19 -04004227int btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
4228 struct btrfs_root *root)
4229{
4230 struct btrfs_fs_info *fs_info = root->fs_info;
4231 struct btrfs_caching_control *next;
4232 struct btrfs_caching_control *caching_ctl;
4233 struct btrfs_block_group_cache *cache;
4234
4235 down_write(&fs_info->extent_commit_sem);
4236
4237 list_for_each_entry_safe(caching_ctl, next,
4238 &fs_info->caching_block_groups, list) {
4239 cache = caching_ctl->block_group;
4240 if (block_group_cache_done(cache)) {
4241 cache->last_byte_to_unpin = (u64)-1;
4242 list_del_init(&caching_ctl->list);
4243 put_caching_control(caching_ctl);
4244 } else {
4245 cache->last_byte_to_unpin = caching_ctl->progress;
4246 }
4247 }
4248
4249 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
4250 fs_info->pinned_extents = &fs_info->freed_extents[1];
4251 else
4252 fs_info->pinned_extents = &fs_info->freed_extents[0];
4253
4254 up_write(&fs_info->extent_commit_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004255
4256 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04004257 return 0;
4258}
4259
4260static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
4261{
4262 struct btrfs_fs_info *fs_info = root->fs_info;
4263 struct btrfs_block_group_cache *cache = NULL;
4264 u64 len;
4265
4266 while (start <= end) {
4267 if (!cache ||
4268 start >= cache->key.objectid + cache->key.offset) {
4269 if (cache)
4270 btrfs_put_block_group(cache);
4271 cache = btrfs_lookup_block_group(fs_info, start);
4272 BUG_ON(!cache);
4273 }
4274
4275 len = cache->key.objectid + cache->key.offset - start;
4276 len = min(len, end + 1 - start);
4277
4278 if (start < cache->last_byte_to_unpin) {
4279 len = min(len, cache->last_byte_to_unpin - start);
4280 btrfs_add_free_space(cache, start, len);
4281 }
Josef Bacik25179202008-10-29 14:49:05 -04004282
Yan, Zhengf0486c62010-05-16 10:46:25 -04004283 start += len;
4284
Josef Bacik25179202008-10-29 14:49:05 -04004285 spin_lock(&cache->space_info->lock);
4286 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04004287 cache->pinned -= len;
4288 cache->space_info->bytes_pinned -= len;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004289 if (cache->ro) {
4290 cache->space_info->bytes_readonly += len;
4291 } else if (cache->reserved_pinned > 0) {
4292 len = min(len, cache->reserved_pinned);
4293 cache->reserved_pinned -= len;
4294 cache->space_info->bytes_reserved += len;
4295 }
Josef Bacik25179202008-10-29 14:49:05 -04004296 spin_unlock(&cache->lock);
4297 spin_unlock(&cache->space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04004298 }
4299
4300 if (cache)
Chris Masonfa9c0d72009-04-03 09:47:43 -04004301 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04004302 return 0;
4303}
4304
4305int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04004306 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05004307{
Yan Zheng11833d62009-09-11 16:11:19 -04004308 struct btrfs_fs_info *fs_info = root->fs_info;
4309 struct extent_io_tree *unpin;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004310 struct btrfs_block_rsv *block_rsv;
4311 struct btrfs_block_rsv *next_rsv;
Chris Mason1a5bc162007-10-15 16:15:26 -04004312 u64 start;
4313 u64 end;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004314 int idx;
Chris Masona28ec192007-03-06 20:08:01 -05004315 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05004316
Yan Zheng11833d62009-09-11 16:11:19 -04004317 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
4318 unpin = &fs_info->freed_extents[1];
4319 else
4320 unpin = &fs_info->freed_extents[0];
4321
Chris Masond3977122009-01-05 21:25:51 -05004322 while (1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04004323 ret = find_first_extent_bit(unpin, 0, &start, &end,
4324 EXTENT_DIRTY);
4325 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05004326 break;
Liu Hui1f3c79a2009-01-05 15:57:51 -05004327
4328 ret = btrfs_discard_extent(root, start, end + 1 - start);
4329
Chris Mason1a5bc162007-10-15 16:15:26 -04004330 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Yan Zheng11833d62009-09-11 16:11:19 -04004331 unpin_extent_range(root, start, end);
Chris Masonb9473432009-03-13 11:00:37 -04004332 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05004333 }
Josef Bacik817d52f2009-07-13 21:29:25 -04004334
Yan, Zhengf0486c62010-05-16 10:46:25 -04004335 mutex_lock(&fs_info->durable_block_rsv_mutex);
4336 list_for_each_entry_safe(block_rsv, next_rsv,
4337 &fs_info->durable_block_rsv_list, list) {
Chris Masona28ec192007-03-06 20:08:01 -05004338
Yan, Zhengf0486c62010-05-16 10:46:25 -04004339 idx = trans->transid & 0x1;
4340 if (block_rsv->freed[idx] > 0) {
4341 block_rsv_add_bytes(block_rsv,
4342 block_rsv->freed[idx], 0);
4343 block_rsv->freed[idx] = 0;
Chris Mason8ef97622007-03-26 10:15:30 -04004344 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004345 if (atomic_read(&block_rsv->usage) == 0) {
4346 btrfs_block_rsv_release(root, block_rsv, (u64)-1);
Zheng Yan31840ae2008-09-23 13:14:14 -04004347
Yan, Zhengf0486c62010-05-16 10:46:25 -04004348 if (block_rsv->freed[0] == 0 &&
4349 block_rsv->freed[1] == 0) {
4350 list_del_init(&block_rsv->list);
4351 kfree(block_rsv);
4352 }
4353 } else {
4354 btrfs_block_rsv_release(root, block_rsv, 0);
4355 }
4356 }
4357 mutex_unlock(&fs_info->durable_block_rsv_mutex);
4358
Chris Masone20d96d2007-03-22 12:13:20 -04004359 return 0;
4360}
4361
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004362static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
4363 struct btrfs_root *root,
4364 u64 bytenr, u64 num_bytes, u64 parent,
4365 u64 root_objectid, u64 owner_objectid,
4366 u64 owner_offset, int refs_to_drop,
4367 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05004368{
Chris Masone2fa7222007-03-12 16:22:34 -04004369 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004370 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04004371 struct btrfs_fs_info *info = root->fs_info;
4372 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04004373 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004374 struct btrfs_extent_item *ei;
4375 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05004376 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004377 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05004378 int extent_slot = 0;
4379 int found_extent = 0;
4380 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004381 u32 item_size;
4382 u64 refs;
Chris Mason037e6392007-03-07 11:50:24 -05004383
Chris Mason5caf2a02007-04-02 11:20:42 -04004384 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04004385 if (!path)
4386 return -ENOMEM;
4387
Chris Mason3c12ac72008-04-21 12:01:38 -04004388 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04004389 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004390
4391 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
4392 BUG_ON(!is_data && refs_to_drop != 1);
4393
4394 ret = lookup_extent_backref(trans, extent_root, path, &iref,
4395 bytenr, num_bytes, parent,
4396 root_objectid, owner_objectid,
4397 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05004398 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05004399 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004400 while (extent_slot >= 0) {
4401 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05004402 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004403 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05004404 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004405 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
4406 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05004407 found_extent = 1;
4408 break;
4409 }
4410 if (path->slots[0] - extent_slot > 5)
4411 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004412 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05004413 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004414#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4415 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
4416 if (found_extent && item_size < sizeof(*ei))
4417 found_extent = 0;
4418#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04004419 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004420 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04004421 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004422 NULL, refs_to_drop,
4423 is_data);
Zheng Yan31840ae2008-09-23 13:14:14 -04004424 BUG_ON(ret);
4425 btrfs_release_path(extent_root, path);
Chris Masonb9473432009-03-13 11:00:37 -04004426 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004427
4428 key.objectid = bytenr;
4429 key.type = BTRFS_EXTENT_ITEM_KEY;
4430 key.offset = num_bytes;
4431
Zheng Yan31840ae2008-09-23 13:14:14 -04004432 ret = btrfs_search_slot(trans, extent_root,
4433 &key, path, -1, 1);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004434 if (ret) {
4435 printk(KERN_ERR "umm, got %d back from search"
Chris Masond3977122009-01-05 21:25:51 -05004436 ", was looking for %llu\n", ret,
4437 (unsigned long long)bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004438 btrfs_print_leaf(extent_root, path->nodes[0]);
4439 }
Zheng Yan31840ae2008-09-23 13:14:14 -04004440 BUG_ON(ret);
4441 extent_slot = path->slots[0];
4442 }
Chris Mason7bb86312007-12-11 09:25:06 -05004443 } else {
4444 btrfs_print_leaf(extent_root, path->nodes[0]);
4445 WARN_ON(1);
Chris Masond3977122009-01-05 21:25:51 -05004446 printk(KERN_ERR "btrfs unable to find ref byte nr %llu "
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004447 "parent %llu root %llu owner %llu offset %llu\n",
Chris Masond3977122009-01-05 21:25:51 -05004448 (unsigned long long)bytenr,
Chris Mason56bec292009-03-13 10:10:06 -04004449 (unsigned long long)parent,
Chris Masond3977122009-01-05 21:25:51 -05004450 (unsigned long long)root_objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004451 (unsigned long long)owner_objectid,
4452 (unsigned long long)owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05004453 }
Chris Mason5f39d392007-10-15 16:14:19 -04004454
4455 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004456 item_size = btrfs_item_size_nr(leaf, extent_slot);
4457#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4458 if (item_size < sizeof(*ei)) {
4459 BUG_ON(found_extent || extent_slot != path->slots[0]);
4460 ret = convert_extent_item_v0(trans, extent_root, path,
4461 owner_objectid, 0);
4462 BUG_ON(ret < 0);
4463
4464 btrfs_release_path(extent_root, path);
4465 path->leave_spinning = 1;
4466
4467 key.objectid = bytenr;
4468 key.type = BTRFS_EXTENT_ITEM_KEY;
4469 key.offset = num_bytes;
4470
4471 ret = btrfs_search_slot(trans, extent_root, &key, path,
4472 -1, 1);
4473 if (ret) {
4474 printk(KERN_ERR "umm, got %d back from search"
4475 ", was looking for %llu\n", ret,
4476 (unsigned long long)bytenr);
4477 btrfs_print_leaf(extent_root, path->nodes[0]);
4478 }
4479 BUG_ON(ret);
4480 extent_slot = path->slots[0];
4481 leaf = path->nodes[0];
4482 item_size = btrfs_item_size_nr(leaf, extent_slot);
4483 }
4484#endif
4485 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05004486 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04004487 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004488 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID) {
4489 struct btrfs_tree_block_info *bi;
4490 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
4491 bi = (struct btrfs_tree_block_info *)(ei + 1);
4492 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05004493 }
4494
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004495 refs = btrfs_extent_refs(leaf, ei);
4496 BUG_ON(refs < refs_to_drop);
4497 refs -= refs_to_drop;
4498
4499 if (refs > 0) {
4500 if (extent_op)
4501 __run_delayed_extent_op(extent_op, leaf, ei);
4502 /*
4503 * In the case of inline back ref, reference count will
4504 * be updated by remove_extent_backref
4505 */
4506 if (iref) {
4507 BUG_ON(!found_extent);
4508 } else {
4509 btrfs_set_extent_refs(leaf, ei, refs);
4510 btrfs_mark_buffer_dirty(leaf);
4511 }
4512 if (found_extent) {
4513 ret = remove_extent_backref(trans, extent_root, path,
4514 iref, refs_to_drop,
4515 is_data);
4516 BUG_ON(ret);
4517 }
4518 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004519 if (found_extent) {
4520 BUG_ON(is_data && refs_to_drop !=
4521 extent_data_ref_count(root, path, iref));
4522 if (iref) {
4523 BUG_ON(path->slots[0] != extent_slot);
4524 } else {
4525 BUG_ON(path->slots[0] != extent_slot + 1);
4526 path->slots[0] = extent_slot;
4527 num_to_del = 2;
4528 }
Chris Mason78fae272007-03-25 11:35:08 -04004529 }
Chris Masonb9473432009-03-13 11:00:37 -04004530
Chris Mason952fcca2008-02-18 16:33:44 -05004531 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
4532 num_to_del);
Zheng Yan31840ae2008-09-23 13:14:14 -04004533 BUG_ON(ret);
Josef Bacik25179202008-10-29 14:49:05 -04004534 btrfs_release_path(extent_root, path);
David Woodhouse21af8042008-08-12 14:13:26 +01004535
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004536 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05004537 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
4538 BUG_ON(ret);
Chris Masond57e62b2009-03-31 13:47:50 -04004539 } else {
4540 invalidate_mapping_pages(info->btree_inode->i_mapping,
4541 bytenr >> PAGE_CACHE_SHIFT,
4542 (bytenr + num_bytes - 1) >> PAGE_CACHE_SHIFT);
Chris Mason459931e2008-12-10 09:10:46 -05004543 }
4544
Yan, Zhengf0486c62010-05-16 10:46:25 -04004545 ret = update_block_group(trans, root, bytenr, num_bytes, 0);
Chris Masondcbdd4d2008-12-16 13:51:01 -05004546 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05004547 }
Chris Mason5caf2a02007-04-02 11:20:42 -04004548 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05004549 return ret;
4550}
4551
4552/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04004553 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04004554 * delayed ref for that extent as well. This searches the delayed ref tree for
4555 * a given extent, and if there are no other delayed refs to be processed, it
4556 * removes it from the tree.
4557 */
4558static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
4559 struct btrfs_root *root, u64 bytenr)
4560{
4561 struct btrfs_delayed_ref_head *head;
4562 struct btrfs_delayed_ref_root *delayed_refs;
4563 struct btrfs_delayed_ref_node *ref;
4564 struct rb_node *node;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004565 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04004566
4567 delayed_refs = &trans->transaction->delayed_refs;
4568 spin_lock(&delayed_refs->lock);
4569 head = btrfs_find_delayed_ref_head(trans, bytenr);
4570 if (!head)
4571 goto out;
4572
4573 node = rb_prev(&head->node.rb_node);
4574 if (!node)
4575 goto out;
4576
4577 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
4578
4579 /* there are still entries for this ref, we can't drop it */
4580 if (ref->bytenr == bytenr)
4581 goto out;
4582
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004583 if (head->extent_op) {
4584 if (!head->must_insert_reserved)
4585 goto out;
4586 kfree(head->extent_op);
4587 head->extent_op = NULL;
4588 }
4589
Chris Mason1887be62009-03-13 10:11:24 -04004590 /*
4591 * waiting for the lock here would deadlock. If someone else has it
4592 * locked they are already in the process of dropping it anyway
4593 */
4594 if (!mutex_trylock(&head->mutex))
4595 goto out;
4596
4597 /*
4598 * at this point we have a head with no other entries. Go
4599 * ahead and process it.
4600 */
4601 head->node.in_tree = 0;
4602 rb_erase(&head->node.rb_node, &delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04004603
Chris Mason1887be62009-03-13 10:11:24 -04004604 delayed_refs->num_entries--;
4605
4606 /*
4607 * we don't take a ref on the node because we're removing it from the
4608 * tree, so we just steal the ref the tree was holding.
4609 */
Chris Masonc3e69d52009-03-13 10:17:05 -04004610 delayed_refs->num_heads--;
4611 if (list_empty(&head->cluster))
4612 delayed_refs->num_heads_ready--;
4613
4614 list_del_init(&head->cluster);
Chris Mason1887be62009-03-13 10:11:24 -04004615 spin_unlock(&delayed_refs->lock);
4616
Yan, Zhengf0486c62010-05-16 10:46:25 -04004617 BUG_ON(head->extent_op);
4618 if (head->must_insert_reserved)
4619 ret = 1;
4620
4621 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04004622 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004623 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04004624out:
4625 spin_unlock(&delayed_refs->lock);
4626 return 0;
4627}
4628
Yan, Zhengf0486c62010-05-16 10:46:25 -04004629void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
4630 struct btrfs_root *root,
4631 struct extent_buffer *buf,
4632 u64 parent, int last_ref)
4633{
4634 struct btrfs_block_rsv *block_rsv;
4635 struct btrfs_block_group_cache *cache = NULL;
4636 int ret;
4637
4638 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4639 ret = btrfs_add_delayed_tree_ref(trans, buf->start, buf->len,
4640 parent, root->root_key.objectid,
4641 btrfs_header_level(buf),
4642 BTRFS_DROP_DELAYED_REF, NULL);
4643 BUG_ON(ret);
4644 }
4645
4646 if (!last_ref)
4647 return;
4648
4649 block_rsv = get_block_rsv(trans, root);
4650 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
Yan, Zheng3bf84a52010-05-31 09:04:46 +00004651 if (block_rsv->space_info != cache->space_info)
4652 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004653
4654 if (btrfs_header_generation(buf) == trans->transid) {
4655 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4656 ret = check_ref_cleanup(trans, root, buf->start);
4657 if (!ret)
4658 goto pin;
4659 }
4660
4661 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
4662 pin_down_extent(root, cache, buf->start, buf->len, 1);
4663 goto pin;
4664 }
4665
4666 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
4667
4668 btrfs_add_free_space(cache, buf->start, buf->len);
4669 ret = update_reserved_bytes(cache, buf->len, 0, 0);
4670 if (ret == -EAGAIN) {
4671 /* block group became read-only */
4672 update_reserved_bytes(cache, buf->len, 0, 1);
4673 goto out;
4674 }
4675
4676 ret = 1;
4677 spin_lock(&block_rsv->lock);
4678 if (block_rsv->reserved < block_rsv->size) {
4679 block_rsv->reserved += buf->len;
4680 ret = 0;
4681 }
4682 spin_unlock(&block_rsv->lock);
4683
4684 if (ret) {
4685 spin_lock(&cache->space_info->lock);
4686 cache->space_info->bytes_reserved -= buf->len;
4687 spin_unlock(&cache->space_info->lock);
4688 }
4689 goto out;
4690 }
4691pin:
4692 if (block_rsv->durable && !cache->ro) {
4693 ret = 0;
4694 spin_lock(&cache->lock);
4695 if (!cache->ro) {
4696 cache->reserved_pinned += buf->len;
4697 ret = 1;
4698 }
4699 spin_unlock(&cache->lock);
4700
4701 if (ret) {
4702 spin_lock(&block_rsv->lock);
4703 block_rsv->freed[trans->transid & 0x1] += buf->len;
4704 spin_unlock(&block_rsv->lock);
4705 }
4706 }
4707out:
4708 btrfs_put_block_group(cache);
4709}
4710
Chris Mason925baed2008-06-25 16:01:30 -04004711int btrfs_free_extent(struct btrfs_trans_handle *trans,
Zheng Yan31840ae2008-09-23 13:14:14 -04004712 struct btrfs_root *root,
4713 u64 bytenr, u64 num_bytes, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004714 u64 root_objectid, u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04004715{
4716 int ret;
4717
Chris Mason56bec292009-03-13 10:10:06 -04004718 /*
4719 * tree log blocks never actually go into the extent allocation
4720 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04004721 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004722 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
4723 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04004724 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04004725 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04004726 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004727 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
4728 ret = btrfs_add_delayed_tree_ref(trans, bytenr, num_bytes,
4729 parent, root_objectid, (int)owner,
4730 BTRFS_DROP_DELAYED_REF, NULL);
Chris Mason1887be62009-03-13 10:11:24 -04004731 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004732 } else {
4733 ret = btrfs_add_delayed_data_ref(trans, bytenr, num_bytes,
4734 parent, root_objectid, owner,
4735 offset, BTRFS_DROP_DELAYED_REF, NULL);
4736 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04004737 }
Chris Mason925baed2008-06-25 16:01:30 -04004738 return ret;
4739}
4740
Chris Mason87ee04e2007-11-30 11:30:34 -05004741static u64 stripe_align(struct btrfs_root *root, u64 val)
4742{
4743 u64 mask = ((u64)root->stripesize - 1);
4744 u64 ret = (val + mask) & ~mask;
4745 return ret;
4746}
4747
Chris Masonfec577f2007-02-26 10:40:21 -05004748/*
Josef Bacik817d52f2009-07-13 21:29:25 -04004749 * when we wait for progress in the block group caching, its because
4750 * our allocation attempt failed at least once. So, we must sleep
4751 * and let some progress happen before we try again.
4752 *
4753 * This function will sleep at least once waiting for new free space to
4754 * show up, and then it will check the block group free space numbers
4755 * for our min num_bytes. Another option is to have it go ahead
4756 * and look in the rbtree for a free extent of a given size, but this
4757 * is a good start.
4758 */
4759static noinline int
4760wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
4761 u64 num_bytes)
4762{
Yan Zheng11833d62009-09-11 16:11:19 -04004763 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04004764 DEFINE_WAIT(wait);
4765
Yan Zheng11833d62009-09-11 16:11:19 -04004766 caching_ctl = get_caching_control(cache);
4767 if (!caching_ctl)
Josef Bacik817d52f2009-07-13 21:29:25 -04004768 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -04004769
Yan Zheng11833d62009-09-11 16:11:19 -04004770 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Josef Bacik817d52f2009-07-13 21:29:25 -04004771 (cache->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04004772
4773 put_caching_control(caching_ctl);
4774 return 0;
4775}
4776
4777static noinline int
4778wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
4779{
4780 struct btrfs_caching_control *caching_ctl;
4781 DEFINE_WAIT(wait);
4782
4783 caching_ctl = get_caching_control(cache);
4784 if (!caching_ctl)
4785 return 0;
4786
4787 wait_event(caching_ctl->wait, block_group_cache_done(cache));
4788
4789 put_caching_control(caching_ctl);
Josef Bacik817d52f2009-07-13 21:29:25 -04004790 return 0;
4791}
4792
Yan, Zhengb742bb82010-05-16 10:46:24 -04004793static int get_block_group_index(struct btrfs_block_group_cache *cache)
4794{
4795 int index;
4796 if (cache->flags & BTRFS_BLOCK_GROUP_RAID10)
4797 index = 0;
4798 else if (cache->flags & BTRFS_BLOCK_GROUP_RAID1)
4799 index = 1;
4800 else if (cache->flags & BTRFS_BLOCK_GROUP_DUP)
4801 index = 2;
4802 else if (cache->flags & BTRFS_BLOCK_GROUP_RAID0)
4803 index = 3;
4804 else
4805 index = 4;
4806 return index;
4807}
4808
Josef Bacik817d52f2009-07-13 21:29:25 -04004809enum btrfs_loop_type {
Josef Bacikccf0e722009-11-10 21:23:48 -05004810 LOOP_FIND_IDEAL = 0,
Josef Bacik817d52f2009-07-13 21:29:25 -04004811 LOOP_CACHING_NOWAIT = 1,
4812 LOOP_CACHING_WAIT = 2,
4813 LOOP_ALLOC_CHUNK = 3,
4814 LOOP_NO_EMPTY_SIZE = 4,
4815};
4816
4817/*
Chris Masonfec577f2007-02-26 10:40:21 -05004818 * walks the btree of allocated extents and find a hole of a given size.
4819 * The key ins is changed to record the hole:
4820 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04004821 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05004822 * ins->offset == number of blocks
4823 * Any available blocks before search_start are skipped.
4824 */
Chris Masond3977122009-01-05 21:25:51 -05004825static noinline int find_free_extent(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05004826 struct btrfs_root *orig_root,
4827 u64 num_bytes, u64 empty_size,
4828 u64 search_start, u64 search_end,
4829 u64 hint_byte, struct btrfs_key *ins,
Chris Mason98ed5172008-01-03 10:01:48 -05004830 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05004831{
Josef Bacik80eb2342008-10-29 14:49:05 -04004832 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05004833 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d72009-04-03 09:47:43 -04004834 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04004835 struct btrfs_block_group_cache *block_group = NULL;
Chris Mason239b14b2008-03-24 15:02:07 -04004836 int empty_cluster = 2 * 1024 * 1024;
Chris Mason0ef3e662008-05-24 14:04:53 -04004837 int allowed_chunk_alloc = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05004838 int done_chunk_alloc = 0;
Josef Bacik80eb2342008-10-29 14:49:05 -04004839 struct btrfs_space_info *space_info;
Chris Masonfa9c0d72009-04-03 09:47:43 -04004840 int last_ptr_loop = 0;
4841 int loop = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004842 int index = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -04004843 bool found_uncached_bg = false;
Josef Bacik0a243252009-09-11 16:11:20 -04004844 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04004845 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04004846 bool use_cluster = true;
Josef Bacikccf0e722009-11-10 21:23:48 -05004847 u64 ideal_cache_percent = 0;
4848 u64 ideal_cache_offset = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05004849
Chris Masondb945352007-10-15 16:15:53 -04004850 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04004851 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
Josef Bacik80eb2342008-10-29 14:49:05 -04004852 ins->objectid = 0;
4853 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04004854
Josef Bacik2552d172009-04-03 10:14:19 -04004855 space_info = __find_space_info(root->fs_info, data);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00004856 if (!space_info) {
4857 printk(KERN_ERR "No space info for %d\n", data);
4858 return -ENOSPC;
4859 }
Josef Bacik2552d172009-04-03 10:14:19 -04004860
Josef Bacik67377732010-09-16 16:19:09 -04004861 /*
4862 * If the space info is for both data and metadata it means we have a
4863 * small filesystem and we can't use the clustering stuff.
4864 */
4865 if (btrfs_mixed_space_info(space_info))
4866 use_cluster = false;
4867
Chris Mason0ef3e662008-05-24 14:04:53 -04004868 if (orig_root->ref_cows || empty_size)
4869 allowed_chunk_alloc = 1;
4870
Josef Bacik67377732010-09-16 16:19:09 -04004871 if (data & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04004872 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05004873 if (!btrfs_test_opt(root, SSD))
4874 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04004875 }
4876
Josef Bacik67377732010-09-16 16:19:09 -04004877 if ((data & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
4878 btrfs_test_opt(root, SSD)) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04004879 last_ptr = &root->fs_info->data_alloc_cluster;
4880 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04004881
Chris Mason239b14b2008-03-24 15:02:07 -04004882 if (last_ptr) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04004883 spin_lock(&last_ptr->lock);
4884 if (last_ptr->block_group)
4885 hint_byte = last_ptr->window_start;
4886 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04004887 }
Chris Masonfa9c0d72009-04-03 09:47:43 -04004888
Chris Masona061fc82008-05-07 11:43:44 -04004889 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04004890 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04004891
Josef Bacik817d52f2009-07-13 21:29:25 -04004892 if (!last_ptr)
Chris Masonfa9c0d72009-04-03 09:47:43 -04004893 empty_cluster = 0;
Chris Masonfa9c0d72009-04-03 09:47:43 -04004894
Josef Bacik2552d172009-04-03 10:14:19 -04004895 if (search_start == hint_byte) {
Josef Bacikccf0e722009-11-10 21:23:48 -05004896ideal_cache:
Josef Bacik2552d172009-04-03 10:14:19 -04004897 block_group = btrfs_lookup_block_group(root->fs_info,
4898 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04004899 /*
4900 * we don't want to use the block group if it doesn't match our
4901 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05004902 *
4903 * However if we are re-searching with an ideal block group
4904 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04004905 */
4906 if (block_group && block_group_bits(block_group, data) &&
Josef Bacikccf0e722009-11-10 21:23:48 -05004907 (block_group->cached != BTRFS_CACHE_NO ||
4908 search_start == ideal_cache_offset)) {
Josef Bacik2552d172009-04-03 10:14:19 -04004909 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04004910 if (list_empty(&block_group->list) ||
4911 block_group->ro) {
4912 /*
4913 * someone is removing this block group,
4914 * we can't jump into the have_block_group
4915 * target because our list pointers are not
4916 * valid
4917 */
4918 btrfs_put_block_group(block_group);
4919 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05004920 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04004921 index = get_block_group_index(block_group);
Chris Mason44fb5512009-06-04 15:34:51 -04004922 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05004923 }
Josef Bacik2552d172009-04-03 10:14:19 -04004924 } else if (block_group) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04004925 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04004926 }
Chris Mason42e70e72008-11-07 18:17:11 -05004927 }
Josef Bacik2552d172009-04-03 10:14:19 -04004928search:
Josef Bacik80eb2342008-10-29 14:49:05 -04004929 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04004930 list_for_each_entry(block_group, &space_info->block_groups[index],
4931 list) {
Josef Bacik6226cb02009-04-03 10:14:18 -04004932 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04004933 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05004934
Josef Bacik11dfe352009-11-13 20:12:59 +00004935 btrfs_get_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04004936 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05004937
Josef Bacik2552d172009-04-03 10:14:19 -04004938have_block_group:
Josef Bacik817d52f2009-07-13 21:29:25 -04004939 if (unlikely(block_group->cached == BTRFS_CACHE_NO)) {
Josef Bacikccf0e722009-11-10 21:23:48 -05004940 u64 free_percent;
4941
Josef Bacik9d66e232010-08-25 16:54:15 -04004942 ret = cache_block_group(block_group, trans, 1);
4943 if (block_group->cached == BTRFS_CACHE_FINISHED)
4944 goto have_block_group;
4945
Josef Bacikccf0e722009-11-10 21:23:48 -05004946 free_percent = btrfs_block_group_used(&block_group->item);
4947 free_percent *= 100;
4948 free_percent = div64_u64(free_percent,
4949 block_group->key.offset);
4950 free_percent = 100 - free_percent;
4951 if (free_percent > ideal_cache_percent &&
4952 likely(!block_group->ro)) {
4953 ideal_cache_offset = block_group->key.objectid;
4954 ideal_cache_percent = free_percent;
4955 }
4956
Josef Bacik817d52f2009-07-13 21:29:25 -04004957 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05004958 * We only want to start kthread caching if we are at
4959 * the point where we will wait for caching to make
4960 * progress, or if our ideal search is over and we've
4961 * found somebody to start caching.
Josef Bacik817d52f2009-07-13 21:29:25 -04004962 */
4963 if (loop > LOOP_CACHING_NOWAIT ||
Josef Bacikccf0e722009-11-10 21:23:48 -05004964 (loop > LOOP_FIND_IDEAL &&
4965 atomic_read(&space_info->caching_threads) < 2)) {
Josef Bacik9d66e232010-08-25 16:54:15 -04004966 ret = cache_block_group(block_group, trans, 0);
Josef Bacik817d52f2009-07-13 21:29:25 -04004967 BUG_ON(ret);
Josef Bacik2552d172009-04-03 10:14:19 -04004968 }
Josef Bacikccf0e722009-11-10 21:23:48 -05004969 found_uncached_bg = true;
4970
4971 /*
4972 * If loop is set for cached only, try the next block
4973 * group.
4974 */
4975 if (loop == LOOP_FIND_IDEAL)
4976 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05004977 }
4978
Josef Bacik817d52f2009-07-13 21:29:25 -04004979 cached = block_group_cache_done(block_group);
Josef Bacikccf0e722009-11-10 21:23:48 -05004980 if (unlikely(!cached))
Josef Bacik817d52f2009-07-13 21:29:25 -04004981 found_uncached_bg = true;
4982
Josef Bacikea6a4782008-11-20 12:16:16 -05004983 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04004984 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004985
Josef Bacik0a243252009-09-11 16:11:20 -04004986 /*
4987 * Ok we want to try and use the cluster allocator, so lets look
4988 * there, unless we are on LOOP_NO_EMPTY_SIZE, since we will
4989 * have tried the cluster allocator plenty of times at this
4990 * point and not have found anything, so we are likely way too
4991 * fragmented for the clustering stuff to find anything, so lets
4992 * just skip it and let the allocator find whatever block it can
4993 * find
4994 */
4995 if (last_ptr && loop < LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04004996 /*
4997 * the refill lock keeps out other
4998 * people trying to start a new cluster
4999 */
5000 spin_lock(&last_ptr->refill_lock);
Chris Mason44fb5512009-06-04 15:34:51 -04005001 if (last_ptr->block_group &&
5002 (last_ptr->block_group->ro ||
5003 !block_group_bits(last_ptr->block_group, data))) {
5004 offset = 0;
5005 goto refill_cluster;
5006 }
5007
Chris Masonfa9c0d72009-04-03 09:47:43 -04005008 offset = btrfs_alloc_from_cluster(block_group, last_ptr,
5009 num_bytes, search_start);
5010 if (offset) {
5011 /* we have a block, we're done */
5012 spin_unlock(&last_ptr->refill_lock);
5013 goto checks;
5014 }
5015
5016 spin_lock(&last_ptr->lock);
5017 /*
5018 * whoops, this cluster doesn't actually point to
5019 * this block group. Get a ref on the block
5020 * group is does point to and try again
5021 */
5022 if (!last_ptr_loop && last_ptr->block_group &&
5023 last_ptr->block_group != block_group) {
5024
5025 btrfs_put_block_group(block_group);
5026 block_group = last_ptr->block_group;
Josef Bacik11dfe352009-11-13 20:12:59 +00005027 btrfs_get_block_group(block_group);
Chris Masonfa9c0d72009-04-03 09:47:43 -04005028 spin_unlock(&last_ptr->lock);
5029 spin_unlock(&last_ptr->refill_lock);
5030
5031 last_ptr_loop = 1;
5032 search_start = block_group->key.objectid;
Chris Mason44fb5512009-06-04 15:34:51 -04005033 /*
5034 * we know this block group is properly
5035 * in the list because
5036 * btrfs_remove_block_group, drops the
5037 * cluster before it removes the block
5038 * group from the list
5039 */
Chris Masonfa9c0d72009-04-03 09:47:43 -04005040 goto have_block_group;
5041 }
5042 spin_unlock(&last_ptr->lock);
Chris Mason44fb5512009-06-04 15:34:51 -04005043refill_cluster:
Chris Masonfa9c0d72009-04-03 09:47:43 -04005044 /*
5045 * this cluster didn't work out, free it and
5046 * start over
5047 */
5048 btrfs_return_cluster_to_free_space(NULL, last_ptr);
5049
5050 last_ptr_loop = 0;
5051
5052 /* allocate a cluster in this block group */
Chris Mason451d7582009-06-09 20:28:34 -04005053 ret = btrfs_find_space_cluster(trans, root,
Chris Masonfa9c0d72009-04-03 09:47:43 -04005054 block_group, last_ptr,
5055 offset, num_bytes,
5056 empty_cluster + empty_size);
5057 if (ret == 0) {
5058 /*
5059 * now pull our allocation out of this
5060 * cluster
5061 */
5062 offset = btrfs_alloc_from_cluster(block_group,
5063 last_ptr, num_bytes,
5064 search_start);
5065 if (offset) {
5066 /* we found one, proceed */
5067 spin_unlock(&last_ptr->refill_lock);
5068 goto checks;
5069 }
Josef Bacik0a243252009-09-11 16:11:20 -04005070 } else if (!cached && loop > LOOP_CACHING_NOWAIT
5071 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005072 spin_unlock(&last_ptr->refill_lock);
5073
Josef Bacik0a243252009-09-11 16:11:20 -04005074 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04005075 wait_block_group_cache_progress(block_group,
5076 num_bytes + empty_cluster + empty_size);
5077 goto have_block_group;
Chris Masonfa9c0d72009-04-03 09:47:43 -04005078 }
Josef Bacik817d52f2009-07-13 21:29:25 -04005079
Chris Masonfa9c0d72009-04-03 09:47:43 -04005080 /*
5081 * at this point we either didn't find a cluster
5082 * or we weren't able to allocate a block from our
5083 * cluster. Free the cluster we've been trying
5084 * to use, and go to the next block group
5085 */
Josef Bacik0a243252009-09-11 16:11:20 -04005086 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d72009-04-03 09:47:43 -04005087 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04005088 goto loop;
Chris Masonfa9c0d72009-04-03 09:47:43 -04005089 }
5090
Josef Bacik6226cb02009-04-03 10:14:18 -04005091 offset = btrfs_find_space_for_alloc(block_group, search_start,
5092 num_bytes, empty_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005093 /*
5094 * If we didn't find a chunk, and we haven't failed on this
5095 * block group before, and this block group is in the middle of
5096 * caching and we are ok with waiting, then go ahead and wait
5097 * for progress to be made, and set failed_alloc to true.
5098 *
5099 * If failed_alloc is true then we've already waited on this
5100 * block group once and should move on to the next block group.
5101 */
5102 if (!offset && !failed_alloc && !cached &&
5103 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005104 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005105 num_bytes + empty_size);
5106 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04005107 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005108 } else if (!offset) {
5109 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04005110 }
Chris Masonfa9c0d72009-04-03 09:47:43 -04005111checks:
Josef Bacik6226cb02009-04-03 10:14:18 -04005112 search_start = stripe_align(root, offset);
Josef Bacik2552d172009-04-03 10:14:19 -04005113 /* move on to the next group */
Josef Bacik6226cb02009-04-03 10:14:18 -04005114 if (search_start + num_bytes >= search_end) {
5115 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04005116 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04005117 }
Chris Masone37c9e62007-05-09 20:13:14 -04005118
Josef Bacik2552d172009-04-03 10:14:19 -04005119 /* move on to the next group */
5120 if (search_start + num_bytes >
Josef Bacik6226cb02009-04-03 10:14:18 -04005121 block_group->key.objectid + block_group->key.offset) {
5122 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04005123 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04005124 }
Josef Bacik80eb2342008-10-29 14:49:05 -04005125
Josef Bacik2552d172009-04-03 10:14:19 -04005126 ins->objectid = search_start;
5127 ins->offset = num_bytes;
5128
Josef Bacik6226cb02009-04-03 10:14:18 -04005129 if (offset < search_start)
5130 btrfs_add_free_space(block_group, offset,
5131 search_start - offset);
5132 BUG_ON(offset > search_start);
5133
Yan, Zhengf0486c62010-05-16 10:46:25 -04005134 ret = update_reserved_bytes(block_group, num_bytes, 1,
5135 (data & BTRFS_BLOCK_GROUP_DATA));
5136 if (ret == -EAGAIN) {
5137 btrfs_add_free_space(block_group, offset, num_bytes);
5138 goto loop;
5139 }
Yan Zheng11833d62009-09-11 16:11:19 -04005140
Josef Bacik2552d172009-04-03 10:14:19 -04005141 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005142 ins->objectid = search_start;
5143 ins->offset = num_bytes;
5144
5145 if (offset < search_start)
5146 btrfs_add_free_space(block_group, offset,
5147 search_start - offset);
5148 BUG_ON(offset > search_start);
Josef Bacik2552d172009-04-03 10:14:19 -04005149 break;
5150loop:
Josef Bacik0a243252009-09-11 16:11:20 -04005151 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005152 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005153 BUG_ON(index != get_block_group_index(block_group));
Chris Masonfa9c0d72009-04-03 09:47:43 -04005154 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04005155 }
5156 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05005157
Yan, Zhengb742bb82010-05-16 10:46:24 -04005158 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
5159 goto search;
5160
Josef Bacikccf0e722009-11-10 21:23:48 -05005161 /* LOOP_FIND_IDEAL, only search caching/cached bg's, and don't wait for
5162 * for them to make caching progress. Also
5163 * determine the best possible bg to cache
5164 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
5165 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04005166 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
5167 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
5168 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
5169 * again
Chris Masonfa9c0d72009-04-03 09:47:43 -04005170 */
Josef Bacik817d52f2009-07-13 21:29:25 -04005171 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE &&
5172 (found_uncached_bg || empty_size || empty_cluster ||
5173 allowed_chunk_alloc)) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04005174 index = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05005175 if (loop == LOOP_FIND_IDEAL && found_uncached_bg) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005176 found_uncached_bg = false;
Josef Bacikccf0e722009-11-10 21:23:48 -05005177 loop++;
5178 if (!ideal_cache_percent &&
5179 atomic_read(&space_info->caching_threads))
Josef Bacik817d52f2009-07-13 21:29:25 -04005180 goto search;
Josef Bacikccf0e722009-11-10 21:23:48 -05005181
5182 /*
5183 * 1 of the following 2 things have happened so far
5184 *
5185 * 1) We found an ideal block group for caching that
5186 * is mostly full and will cache quickly, so we might
5187 * as well wait for it.
5188 *
5189 * 2) We searched for cached only and we didn't find
5190 * anything, and we didn't start any caching kthreads
5191 * either, so chances are we will loop through and
5192 * start a couple caching kthreads, and then come back
5193 * around and just wait for them. This will be slower
5194 * because we will have 2 caching kthreads reading at
5195 * the same time when we could have just started one
5196 * and waited for it to get far enough to give us an
5197 * allocation, so go ahead and go to the wait caching
5198 * loop.
5199 */
5200 loop = LOOP_CACHING_WAIT;
5201 search_start = ideal_cache_offset;
5202 ideal_cache_percent = 0;
5203 goto ideal_cache;
5204 } else if (loop == LOOP_FIND_IDEAL) {
5205 /*
5206 * Didn't find a uncached bg, wait on anything we find
5207 * next.
5208 */
5209 loop = LOOP_CACHING_WAIT;
5210 goto search;
5211 }
5212
5213 if (loop < LOOP_CACHING_WAIT) {
5214 loop++;
5215 goto search;
Josef Bacik817d52f2009-07-13 21:29:25 -04005216 }
5217
5218 if (loop == LOOP_ALLOC_CHUNK) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04005219 empty_size = 0;
5220 empty_cluster = 0;
5221 }
Chris Mason42e70e72008-11-07 18:17:11 -05005222
Josef Bacik2552d172009-04-03 10:14:19 -04005223 if (allowed_chunk_alloc) {
5224 ret = do_chunk_alloc(trans, root, num_bytes +
5225 2 * 1024 * 1024, data, 1);
Josef Bacik2552d172009-04-03 10:14:19 -04005226 allowed_chunk_alloc = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05005227 done_chunk_alloc = 1;
5228 } else if (!done_chunk_alloc) {
Josef Bacik2552d172009-04-03 10:14:19 -04005229 space_info->force_alloc = 1;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005230 }
Josef Bacik80eb2342008-10-29 14:49:05 -04005231
Josef Bacik817d52f2009-07-13 21:29:25 -04005232 if (loop < LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04005233 loop++;
Josef Bacik2552d172009-04-03 10:14:19 -04005234 goto search;
Chris Masonfa9c0d72009-04-03 09:47:43 -04005235 }
Josef Bacik2552d172009-04-03 10:14:19 -04005236 ret = -ENOSPC;
5237 } else if (!ins->objectid) {
5238 ret = -ENOSPC;
Chris Masone19caa52007-10-15 16:17:44 -04005239 }
Chris Mason0b86a832008-03-24 15:01:56 -04005240
Josef Bacik80eb2342008-10-29 14:49:05 -04005241 /* we found what we needed */
5242 if (ins->objectid) {
5243 if (!(data & BTRFS_BLOCK_GROUP_DATA))
Yan Zhengd2fb3432008-12-11 16:30:39 -05005244 trans->block_group = block_group->key.objectid;
Josef Bacik80eb2342008-10-29 14:49:05 -04005245
Chris Masonfa9c0d72009-04-03 09:47:43 -04005246 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04005247 ret = 0;
5248 }
Chris Mason0b86a832008-03-24 15:01:56 -04005249
Chris Mason0f70abe2007-02-28 16:46:22 -05005250 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05005251}
Chris Masonec44a352008-04-28 15:29:52 -04005252
Josef Bacik9ed74f22009-09-11 16:12:44 -04005253static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
5254 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04005255{
5256 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005257 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005258
Josef Bacik9ed74f22009-09-11 16:12:44 -04005259 spin_lock(&info->lock);
Chris Masond3977122009-01-05 21:25:51 -05005260 printk(KERN_INFO "space_info has %llu free, is %sfull\n",
5261 (unsigned long long)(info->total_bytes - info->bytes_used -
Josef Bacik9ed74f22009-09-11 16:12:44 -04005262 info->bytes_pinned - info->bytes_reserved -
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005263 info->bytes_readonly),
Chris Masond3977122009-01-05 21:25:51 -05005264 (info->full) ? "" : "not ");
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005265 printk(KERN_INFO "space_info total=%llu, used=%llu, pinned=%llu, "
5266 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Joel Becker21380932009-04-21 12:38:29 -07005267 (unsigned long long)info->total_bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -04005268 (unsigned long long)info->bytes_used,
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005269 (unsigned long long)info->bytes_pinned,
5270 (unsigned long long)info->bytes_reserved,
5271 (unsigned long long)info->bytes_may_use,
5272 (unsigned long long)info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005273 spin_unlock(&info->lock);
5274
5275 if (!dump_block_groups)
5276 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005277
Josef Bacik80eb2342008-10-29 14:49:05 -04005278 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04005279again:
5280 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04005281 spin_lock(&cache->lock);
Chris Masond3977122009-01-05 21:25:51 -05005282 printk(KERN_INFO "block group %llu has %llu bytes, %llu used "
5283 "%llu pinned %llu reserved\n",
5284 (unsigned long long)cache->key.objectid,
5285 (unsigned long long)cache->key.offset,
5286 (unsigned long long)btrfs_block_group_used(&cache->item),
5287 (unsigned long long)cache->pinned,
5288 (unsigned long long)cache->reserved);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005289 btrfs_dump_free_space(cache, bytes);
5290 spin_unlock(&cache->lock);
5291 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04005292 if (++index < BTRFS_NR_RAID_TYPES)
5293 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04005294 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005295}
Zheng Yane8569812008-09-26 10:05:48 -04005296
Yan Zheng11833d62009-09-11 16:11:19 -04005297int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
5298 struct btrfs_root *root,
5299 u64 num_bytes, u64 min_alloc_size,
5300 u64 empty_size, u64 hint_byte,
5301 u64 search_end, struct btrfs_key *ins,
5302 u64 data)
Chris Masonfec577f2007-02-26 10:40:21 -05005303{
5304 int ret;
Chris Masonfbdc7622007-05-30 10:22:12 -04005305 u64 search_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005306
Josef Bacik6a632092009-02-20 11:00:09 -05005307 data = btrfs_get_alloc_profile(root, data);
Chris Mason98d20f62008-04-14 09:46:10 -04005308again:
Chris Mason0ef3e662008-05-24 14:04:53 -04005309 /*
5310 * the only place that sets empty_size is btrfs_realloc_node, which
5311 * is not called recursively on allocations
5312 */
Josef Bacik83d3c962009-12-07 21:45:59 +00005313 if (empty_size || root->ref_cows)
Chris Mason6324fbf2008-03-24 15:01:59 -04005314 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0ef3e662008-05-24 14:04:53 -04005315 num_bytes + 2 * 1024 * 1024, data, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04005316
Chris Masondb945352007-10-15 16:15:53 -04005317 WARN_ON(num_bytes < root->sectorsize);
5318 ret = find_free_extent(trans, root, num_bytes, empty_size,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005319 search_start, search_end, hint_byte,
5320 ins, data);
Chris Mason3b951512008-04-17 11:29:12 -04005321
Chris Mason98d20f62008-04-14 09:46:10 -04005322 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
5323 num_bytes = num_bytes >> 1;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005324 num_bytes = num_bytes & ~(root->sectorsize - 1);
Chris Mason98d20f62008-04-14 09:46:10 -04005325 num_bytes = max(num_bytes, min_alloc_size);
Chris Mason0ef3e662008-05-24 14:04:53 -04005326 do_chunk_alloc(trans, root->fs_info->extent_root,
5327 num_bytes, data, 1);
Chris Mason98d20f62008-04-14 09:46:10 -04005328 goto again;
5329 }
Josef Bacik817d52f2009-07-13 21:29:25 -04005330 if (ret == -ENOSPC) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04005331 struct btrfs_space_info *sinfo;
5332
5333 sinfo = __find_space_info(root->fs_info, data);
Chris Masond3977122009-01-05 21:25:51 -05005334 printk(KERN_ERR "btrfs allocation failed flags %llu, "
5335 "wanted %llu\n", (unsigned long long)data,
5336 (unsigned long long)num_bytes);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005337 dump_space_info(sinfo, num_bytes, 1);
Chris Mason925baed2008-06-25 16:01:30 -04005338 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04005339
5340 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005341}
5342
Chris Mason65b51a02008-08-01 15:11:20 -04005343int btrfs_free_reserved_extent(struct btrfs_root *root, u64 start, u64 len)
5344{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005345 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05005346 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005347
Josef Bacik0f9dd462008-09-23 13:14:11 -04005348 cache = btrfs_lookup_block_group(root->fs_info, start);
5349 if (!cache) {
Chris Masond3977122009-01-05 21:25:51 -05005350 printk(KERN_ERR "Unable to find block group for %llu\n",
5351 (unsigned long long)start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005352 return -ENOSPC;
5353 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05005354
5355 ret = btrfs_discard_extent(root, start, len);
5356
Josef Bacik0f9dd462008-09-23 13:14:11 -04005357 btrfs_add_free_space(cache, start, len);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005358 update_reserved_bytes(cache, len, 0, 1);
Chris Masonfa9c0d72009-04-03 09:47:43 -04005359 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04005360
Chris Masone6dcd2d2008-07-17 12:53:50 -04005361 return ret;
5362}
5363
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005364static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5365 struct btrfs_root *root,
5366 u64 parent, u64 root_objectid,
5367 u64 flags, u64 owner, u64 offset,
5368 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04005369{
5370 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005371 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005372 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005373 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005374 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005375 struct extent_buffer *leaf;
5376 int type;
5377 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04005378
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005379 if (parent > 0)
5380 type = BTRFS_SHARED_DATA_REF_KEY;
5381 else
5382 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04005383
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005384 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05005385
5386 path = btrfs_alloc_path();
5387 BUG_ON(!path);
Chris Mason47e4bb92008-02-01 14:51:59 -05005388
Chris Masonb9473432009-03-13 11:00:37 -04005389 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005390 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
5391 ins, size);
Chris Masonccd467d2007-06-28 15:57:36 -04005392 BUG_ON(ret);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005393
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005394 leaf = path->nodes[0];
5395 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05005396 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005397 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
5398 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
5399 btrfs_set_extent_flags(leaf, extent_item,
5400 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05005401
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005402 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
5403 btrfs_set_extent_inline_ref_type(leaf, iref, type);
5404 if (parent > 0) {
5405 struct btrfs_shared_data_ref *ref;
5406 ref = (struct btrfs_shared_data_ref *)(iref + 1);
5407 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
5408 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
5409 } else {
5410 struct btrfs_extent_data_ref *ref;
5411 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
5412 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
5413 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
5414 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
5415 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
5416 }
Chris Mason47e4bb92008-02-01 14:51:59 -05005417
5418 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05005419 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04005420
Yan, Zhengf0486c62010-05-16 10:46:25 -04005421 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Chris Masonf5947062008-02-04 10:10:13 -05005422 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05005423 printk(KERN_ERR "btrfs update block group failed for %llu "
5424 "%llu\n", (unsigned long long)ins->objectid,
5425 (unsigned long long)ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05005426 BUG();
5427 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005428 return ret;
5429}
5430
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005431static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
5432 struct btrfs_root *root,
5433 u64 parent, u64 root_objectid,
5434 u64 flags, struct btrfs_disk_key *key,
5435 int level, struct btrfs_key *ins)
5436{
5437 int ret;
5438 struct btrfs_fs_info *fs_info = root->fs_info;
5439 struct btrfs_extent_item *extent_item;
5440 struct btrfs_tree_block_info *block_info;
5441 struct btrfs_extent_inline_ref *iref;
5442 struct btrfs_path *path;
5443 struct extent_buffer *leaf;
5444 u32 size = sizeof(*extent_item) + sizeof(*block_info) + sizeof(*iref);
5445
5446 path = btrfs_alloc_path();
5447 BUG_ON(!path);
5448
5449 path->leave_spinning = 1;
5450 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
5451 ins, size);
5452 BUG_ON(ret);
5453
5454 leaf = path->nodes[0];
5455 extent_item = btrfs_item_ptr(leaf, path->slots[0],
5456 struct btrfs_extent_item);
5457 btrfs_set_extent_refs(leaf, extent_item, 1);
5458 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
5459 btrfs_set_extent_flags(leaf, extent_item,
5460 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
5461 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
5462
5463 btrfs_set_tree_block_key(leaf, block_info, key);
5464 btrfs_set_tree_block_level(leaf, block_info, level);
5465
5466 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
5467 if (parent > 0) {
5468 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
5469 btrfs_set_extent_inline_ref_type(leaf, iref,
5470 BTRFS_SHARED_BLOCK_REF_KEY);
5471 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
5472 } else {
5473 btrfs_set_extent_inline_ref_type(leaf, iref,
5474 BTRFS_TREE_BLOCK_REF_KEY);
5475 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
5476 }
5477
5478 btrfs_mark_buffer_dirty(leaf);
5479 btrfs_free_path(path);
5480
Yan, Zhengf0486c62010-05-16 10:46:25 -04005481 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005482 if (ret) {
5483 printk(KERN_ERR "btrfs update block group failed for %llu "
5484 "%llu\n", (unsigned long long)ins->objectid,
5485 (unsigned long long)ins->offset);
5486 BUG();
5487 }
5488 return ret;
5489}
5490
5491int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5492 struct btrfs_root *root,
5493 u64 root_objectid, u64 owner,
5494 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04005495{
5496 int ret;
Chris Mason1c2308f2008-09-23 13:14:13 -04005497
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005498 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04005499
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005500 ret = btrfs_add_delayed_data_ref(trans, ins->objectid, ins->offset,
5501 0, root_objectid, owner, offset,
5502 BTRFS_ADD_DELAYED_EXTENT, NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005503 return ret;
5504}
Chris Masone02119d2008-09-05 16:13:11 -04005505
5506/*
5507 * this is used by the tree logging recovery code. It records that
5508 * an extent has been allocated and makes sure to clear the free
5509 * space cache bits as well
5510 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005511int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
5512 struct btrfs_root *root,
5513 u64 root_objectid, u64 owner, u64 offset,
5514 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04005515{
5516 int ret;
5517 struct btrfs_block_group_cache *block_group;
Yan Zheng11833d62009-09-11 16:11:19 -04005518 struct btrfs_caching_control *caching_ctl;
5519 u64 start = ins->objectid;
5520 u64 num_bytes = ins->offset;
Chris Masone02119d2008-09-05 16:13:11 -04005521
Chris Masone02119d2008-09-05 16:13:11 -04005522 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacik9d66e232010-08-25 16:54:15 -04005523 cache_block_group(block_group, trans, 0);
Yan Zheng11833d62009-09-11 16:11:19 -04005524 caching_ctl = get_caching_control(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04005525
Yan Zheng11833d62009-09-11 16:11:19 -04005526 if (!caching_ctl) {
5527 BUG_ON(!block_group_cache_done(block_group));
5528 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5529 BUG_ON(ret);
5530 } else {
5531 mutex_lock(&caching_ctl->mutex);
5532
5533 if (start >= caching_ctl->progress) {
5534 ret = add_excluded_extent(root, start, num_bytes);
5535 BUG_ON(ret);
5536 } else if (start + num_bytes <= caching_ctl->progress) {
5537 ret = btrfs_remove_free_space(block_group,
5538 start, num_bytes);
5539 BUG_ON(ret);
5540 } else {
5541 num_bytes = caching_ctl->progress - start;
5542 ret = btrfs_remove_free_space(block_group,
5543 start, num_bytes);
5544 BUG_ON(ret);
5545
5546 start = caching_ctl->progress;
5547 num_bytes = ins->objectid + ins->offset -
5548 caching_ctl->progress;
5549 ret = add_excluded_extent(root, start, num_bytes);
5550 BUG_ON(ret);
5551 }
5552
5553 mutex_unlock(&caching_ctl->mutex);
5554 put_caching_control(caching_ctl);
5555 }
5556
Yan, Zhengf0486c62010-05-16 10:46:25 -04005557 ret = update_reserved_bytes(block_group, ins->offset, 1, 1);
5558 BUG_ON(ret);
Chris Masonfa9c0d72009-04-03 09:47:43 -04005559 btrfs_put_block_group(block_group);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005560 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
5561 0, owner, offset, ins, 1);
Chris Masone02119d2008-09-05 16:13:11 -04005562 return ret;
5563}
5564
Chris Mason65b51a02008-08-01 15:11:20 -04005565struct extent_buffer *btrfs_init_new_buffer(struct btrfs_trans_handle *trans,
5566 struct btrfs_root *root,
Chris Mason4008c042009-02-12 14:09:45 -05005567 u64 bytenr, u32 blocksize,
5568 int level)
Chris Mason65b51a02008-08-01 15:11:20 -04005569{
5570 struct extent_buffer *buf;
5571
5572 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
5573 if (!buf)
5574 return ERR_PTR(-ENOMEM);
5575 btrfs_set_header_generation(buf, trans->transid);
Chris Mason4008c042009-02-12 14:09:45 -05005576 btrfs_set_buffer_lockdep_class(buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04005577 btrfs_tree_lock(buf);
5578 clean_tree_block(trans, root, buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005579
5580 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04005581 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005582
Chris Masond0c803c2008-09-11 16:17:57 -04005583 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00005584 /*
5585 * we allow two log transactions at a time, use different
5586 * EXENT bit to differentiate dirty pages.
5587 */
5588 if (root->log_transid % 2 == 0)
5589 set_extent_dirty(&root->dirty_log_pages, buf->start,
5590 buf->start + buf->len - 1, GFP_NOFS);
5591 else
5592 set_extent_new(&root->dirty_log_pages, buf->start,
5593 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04005594 } else {
5595 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
5596 buf->start + buf->len - 1, GFP_NOFS);
5597 }
Chris Mason65b51a02008-08-01 15:11:20 -04005598 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005599 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04005600 return buf;
5601}
5602
Yan, Zhengf0486c62010-05-16 10:46:25 -04005603static struct btrfs_block_rsv *
5604use_block_rsv(struct btrfs_trans_handle *trans,
5605 struct btrfs_root *root, u32 blocksize)
5606{
5607 struct btrfs_block_rsv *block_rsv;
5608 int ret;
5609
5610 block_rsv = get_block_rsv(trans, root);
5611
5612 if (block_rsv->size == 0) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005613 ret = reserve_metadata_bytes(trans, root, block_rsv,
5614 blocksize, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005615 if (ret)
5616 return ERR_PTR(ret);
5617 return block_rsv;
5618 }
5619
5620 ret = block_rsv_use_bytes(block_rsv, blocksize);
5621 if (!ret)
5622 return block_rsv;
5623
Yan, Zhengf0486c62010-05-16 10:46:25 -04005624 return ERR_PTR(-ENOSPC);
5625}
5626
5627static void unuse_block_rsv(struct btrfs_block_rsv *block_rsv, u32 blocksize)
5628{
5629 block_rsv_add_bytes(block_rsv, blocksize, 0);
5630 block_rsv_release_bytes(block_rsv, NULL, 0);
5631}
5632
Chris Masonfec577f2007-02-26 10:40:21 -05005633/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04005634 * finds a free extent and does all the dirty work required for allocation
5635 * returns the key for the extent through ins, and a tree buffer for
5636 * the first block of the extent through buf.
5637 *
Chris Masonfec577f2007-02-26 10:40:21 -05005638 * returns the tree buffer or NULL.
5639 */
Chris Mason5f39d392007-10-15 16:14:19 -04005640struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005641 struct btrfs_root *root, u32 blocksize,
5642 u64 parent, u64 root_objectid,
5643 struct btrfs_disk_key *key, int level,
5644 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05005645{
Chris Masone2fa7222007-03-12 16:22:34 -04005646 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005647 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04005648 struct extent_buffer *buf;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005649 u64 flags = 0;
5650 int ret;
Chris Masonfec577f2007-02-26 10:40:21 -05005651
Yan, Zhengf0486c62010-05-16 10:46:25 -04005652
5653 block_rsv = use_block_rsv(trans, root, blocksize);
5654 if (IS_ERR(block_rsv))
5655 return ERR_CAST(block_rsv);
5656
5657 ret = btrfs_reserve_extent(trans, root, blocksize, blocksize,
5658 empty_size, hint, (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05005659 if (ret) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005660 unuse_block_rsv(block_rsv, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04005661 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05005662 }
Chris Mason55c69072008-01-09 15:55:33 -05005663
Chris Mason4008c042009-02-12 14:09:45 -05005664 buf = btrfs_init_new_buffer(trans, root, ins.objectid,
5665 blocksize, level);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005666 BUG_ON(IS_ERR(buf));
5667
5668 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
5669 if (parent == 0)
5670 parent = ins.objectid;
5671 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
5672 } else
5673 BUG_ON(parent > 0);
5674
5675 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
5676 struct btrfs_delayed_extent_op *extent_op;
5677 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
5678 BUG_ON(!extent_op);
5679 if (key)
5680 memcpy(&extent_op->key, key, sizeof(extent_op->key));
5681 else
5682 memset(&extent_op->key, 0, sizeof(extent_op->key));
5683 extent_op->flags_to_set = flags;
5684 extent_op->update_key = 1;
5685 extent_op->update_flags = 1;
5686 extent_op->is_data = 0;
5687
5688 ret = btrfs_add_delayed_tree_ref(trans, ins.objectid,
5689 ins.offset, parent, root_objectid,
5690 level, BTRFS_ADD_DELAYED_EXTENT,
5691 extent_op);
5692 BUG_ON(ret);
5693 }
Chris Masonfec577f2007-02-26 10:40:21 -05005694 return buf;
5695}
Chris Masona28ec192007-03-06 20:08:01 -05005696
Yan Zheng2c47e6052009-06-27 21:07:35 -04005697struct walk_control {
5698 u64 refs[BTRFS_MAX_LEVEL];
5699 u64 flags[BTRFS_MAX_LEVEL];
5700 struct btrfs_key update_progress;
5701 int stage;
5702 int level;
5703 int shared_level;
5704 int update_ref;
5705 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005706 int reada_slot;
5707 int reada_count;
Yan Zheng2c47e6052009-06-27 21:07:35 -04005708};
5709
5710#define DROP_REFERENCE 1
5711#define UPDATE_BACKREF 2
5712
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005713static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
5714 struct btrfs_root *root,
5715 struct walk_control *wc,
5716 struct btrfs_path *path)
5717{
5718 u64 bytenr;
5719 u64 generation;
5720 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005721 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005722 u64 last = 0;
5723 u32 nritems;
5724 u32 blocksize;
5725 struct btrfs_key key;
5726 struct extent_buffer *eb;
5727 int ret;
5728 int slot;
5729 int nread = 0;
5730
5731 if (path->slots[wc->level] < wc->reada_slot) {
5732 wc->reada_count = wc->reada_count * 2 / 3;
5733 wc->reada_count = max(wc->reada_count, 2);
5734 } else {
5735 wc->reada_count = wc->reada_count * 3 / 2;
5736 wc->reada_count = min_t(int, wc->reada_count,
5737 BTRFS_NODEPTRS_PER_BLOCK(root));
5738 }
5739
5740 eb = path->nodes[wc->level];
5741 nritems = btrfs_header_nritems(eb);
5742 blocksize = btrfs_level_size(root, wc->level - 1);
5743
5744 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
5745 if (nread >= wc->reada_count)
5746 break;
5747
5748 cond_resched();
5749 bytenr = btrfs_node_blockptr(eb, slot);
5750 generation = btrfs_node_ptr_generation(eb, slot);
5751
5752 if (slot == path->slots[wc->level])
5753 goto reada;
5754
5755 if (wc->stage == UPDATE_BACKREF &&
5756 generation <= root->root_key.offset)
5757 continue;
5758
Yan, Zheng94fcca92009-10-09 09:25:16 -04005759 /* We don't lock the tree block, it's OK to be racy here */
5760 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
5761 &refs, &flags);
5762 BUG_ON(ret);
5763 BUG_ON(refs == 0);
5764
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005765 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005766 if (refs == 1)
5767 goto reada;
5768
Yan, Zheng94fcca92009-10-09 09:25:16 -04005769 if (wc->level == 1 &&
5770 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5771 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005772 if (!wc->update_ref ||
5773 generation <= root->root_key.offset)
5774 continue;
5775 btrfs_node_key_to_cpu(eb, &key, slot);
5776 ret = btrfs_comp_cpu_keys(&key,
5777 &wc->update_progress);
5778 if (ret < 0)
5779 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005780 } else {
5781 if (wc->level == 1 &&
5782 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5783 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005784 }
5785reada:
5786 ret = readahead_tree_block(root, bytenr, blocksize,
5787 generation);
5788 if (ret)
5789 break;
5790 last = bytenr + blocksize;
5791 nread++;
5792 }
5793 wc->reada_slot = slot;
5794}
5795
Chris Mason9aca1d52007-03-13 11:09:37 -04005796/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04005797 * hepler to process tree block while walking down the tree.
5798 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04005799 * when wc->stage == UPDATE_BACKREF, this function updates
5800 * back refs for pointers in the block.
5801 *
5802 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04005803 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04005804static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
5805 struct btrfs_root *root,
5806 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04005807 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04005808{
5809 int level = wc->level;
5810 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04005811 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
5812 int ret;
5813
5814 if (wc->stage == UPDATE_BACKREF &&
5815 btrfs_header_owner(eb) != root->root_key.objectid)
5816 return 1;
5817
5818 /*
5819 * when reference count of tree block is 1, it won't increase
5820 * again. once full backref flag is set, we never clear it.
5821 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04005822 if (lookup_info &&
5823 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
5824 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04005825 BUG_ON(!path->locks[level]);
5826 ret = btrfs_lookup_extent_info(trans, root,
5827 eb->start, eb->len,
5828 &wc->refs[level],
5829 &wc->flags[level]);
5830 BUG_ON(ret);
5831 BUG_ON(wc->refs[level] == 0);
5832 }
5833
Yan Zheng2c47e6052009-06-27 21:07:35 -04005834 if (wc->stage == DROP_REFERENCE) {
5835 if (wc->refs[level] > 1)
5836 return 1;
5837
5838 if (path->locks[level] && !wc->keep_locks) {
5839 btrfs_tree_unlock(eb);
5840 path->locks[level] = 0;
5841 }
5842 return 0;
5843 }
5844
5845 /* wc->stage == UPDATE_BACKREF */
5846 if (!(wc->flags[level] & flag)) {
5847 BUG_ON(!path->locks[level]);
5848 ret = btrfs_inc_ref(trans, root, eb, 1);
5849 BUG_ON(ret);
5850 ret = btrfs_dec_ref(trans, root, eb, 0);
5851 BUG_ON(ret);
5852 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
5853 eb->len, flag, 0);
5854 BUG_ON(ret);
5855 wc->flags[level] |= flag;
5856 }
5857
5858 /*
5859 * the block is shared by multiple trees, so it's not good to
5860 * keep the tree lock
5861 */
5862 if (path->locks[level] && level > 0) {
5863 btrfs_tree_unlock(eb);
5864 path->locks[level] = 0;
5865 }
5866 return 0;
5867}
5868
5869/*
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005870 * hepler to process tree block pointer.
5871 *
5872 * when wc->stage == DROP_REFERENCE, this function checks
5873 * reference count of the block pointed to. if the block
5874 * is shared and we need update back refs for the subtree
5875 * rooted at the block, this function changes wc->stage to
5876 * UPDATE_BACKREF. if the block is shared and there is no
5877 * need to update back, this function drops the reference
5878 * to the block.
5879 *
5880 * NOTE: return value 1 means we should stop walking down.
5881 */
5882static noinline int do_walk_down(struct btrfs_trans_handle *trans,
5883 struct btrfs_root *root,
5884 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04005885 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005886{
5887 u64 bytenr;
5888 u64 generation;
5889 u64 parent;
5890 u32 blocksize;
5891 struct btrfs_key key;
5892 struct extent_buffer *next;
5893 int level = wc->level;
5894 int reada = 0;
5895 int ret = 0;
5896
5897 generation = btrfs_node_ptr_generation(path->nodes[level],
5898 path->slots[level]);
5899 /*
5900 * if the lower level block was created before the snapshot
5901 * was created, we know there is no need to update back refs
5902 * for the subtree
5903 */
5904 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04005905 generation <= root->root_key.offset) {
5906 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005907 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005908 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005909
5910 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
5911 blocksize = btrfs_level_size(root, level - 1);
5912
5913 next = btrfs_find_tree_block(root, bytenr, blocksize);
5914 if (!next) {
5915 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
Miao Xie90d2c512010-03-25 12:37:12 +00005916 if (!next)
5917 return -ENOMEM;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005918 reada = 1;
5919 }
5920 btrfs_tree_lock(next);
5921 btrfs_set_lock_blocking(next);
5922
Yan, Zheng94fcca92009-10-09 09:25:16 -04005923 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
5924 &wc->refs[level - 1],
5925 &wc->flags[level - 1]);
5926 BUG_ON(ret);
5927 BUG_ON(wc->refs[level - 1] == 0);
5928 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005929
Yan, Zheng94fcca92009-10-09 09:25:16 -04005930 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005931 if (wc->refs[level - 1] > 1) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04005932 if (level == 1 &&
5933 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5934 goto skip;
5935
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005936 if (!wc->update_ref ||
5937 generation <= root->root_key.offset)
5938 goto skip;
5939
5940 btrfs_node_key_to_cpu(path->nodes[level], &key,
5941 path->slots[level]);
5942 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
5943 if (ret < 0)
5944 goto skip;
5945
5946 wc->stage = UPDATE_BACKREF;
5947 wc->shared_level = level - 1;
5948 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04005949 } else {
5950 if (level == 1 &&
5951 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5952 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005953 }
5954
5955 if (!btrfs_buffer_uptodate(next, generation)) {
5956 btrfs_tree_unlock(next);
5957 free_extent_buffer(next);
5958 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005959 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005960 }
5961
5962 if (!next) {
5963 if (reada && level == 1)
5964 reada_walk_down(trans, root, wc, path);
5965 next = read_tree_block(root, bytenr, blocksize, generation);
5966 btrfs_tree_lock(next);
5967 btrfs_set_lock_blocking(next);
5968 }
5969
5970 level--;
5971 BUG_ON(level != btrfs_header_level(next));
5972 path->nodes[level] = next;
5973 path->slots[level] = 0;
5974 path->locks[level] = 1;
5975 wc->level = level;
5976 if (wc->level == 1)
5977 wc->reada_slot = 0;
5978 return 0;
5979skip:
5980 wc->refs[level - 1] = 0;
5981 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005982 if (wc->stage == DROP_REFERENCE) {
5983 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
5984 parent = path->nodes[level]->start;
5985 } else {
5986 BUG_ON(root->root_key.objectid !=
5987 btrfs_header_owner(path->nodes[level]));
5988 parent = 0;
5989 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005990
Yan, Zheng94fcca92009-10-09 09:25:16 -04005991 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
5992 root->root_key.objectid, level - 1, 0);
5993 BUG_ON(ret);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005994 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005995 btrfs_tree_unlock(next);
5996 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04005997 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005998 return 1;
5999}
6000
6001/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04006002 * hepler to process tree block while walking up the tree.
6003 *
6004 * when wc->stage == DROP_REFERENCE, this function drops
6005 * reference count on the block.
6006 *
6007 * when wc->stage == UPDATE_BACKREF, this function changes
6008 * wc->stage back to DROP_REFERENCE if we changed wc->stage
6009 * to UPDATE_BACKREF previously while processing the block.
6010 *
6011 * NOTE: return value 1 means we should stop walking up.
6012 */
6013static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
6014 struct btrfs_root *root,
6015 struct btrfs_path *path,
6016 struct walk_control *wc)
6017{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006018 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006019 int level = wc->level;
6020 struct extent_buffer *eb = path->nodes[level];
6021 u64 parent = 0;
6022
6023 if (wc->stage == UPDATE_BACKREF) {
6024 BUG_ON(wc->shared_level < level);
6025 if (level < wc->shared_level)
6026 goto out;
6027
Yan Zheng2c47e6052009-06-27 21:07:35 -04006028 ret = find_next_key(path, level + 1, &wc->update_progress);
6029 if (ret > 0)
6030 wc->update_ref = 0;
6031
6032 wc->stage = DROP_REFERENCE;
6033 wc->shared_level = -1;
6034 path->slots[level] = 0;
6035
6036 /*
6037 * check reference count again if the block isn't locked.
6038 * we should start walking down the tree again if reference
6039 * count is one.
6040 */
6041 if (!path->locks[level]) {
6042 BUG_ON(level == 0);
6043 btrfs_tree_lock(eb);
6044 btrfs_set_lock_blocking(eb);
6045 path->locks[level] = 1;
6046
6047 ret = btrfs_lookup_extent_info(trans, root,
6048 eb->start, eb->len,
6049 &wc->refs[level],
6050 &wc->flags[level]);
6051 BUG_ON(ret);
6052 BUG_ON(wc->refs[level] == 0);
6053 if (wc->refs[level] == 1) {
6054 btrfs_tree_unlock(eb);
6055 path->locks[level] = 0;
6056 return 1;
6057 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006058 }
6059 }
6060
6061 /* wc->stage == DROP_REFERENCE */
6062 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
6063
6064 if (wc->refs[level] == 1) {
6065 if (level == 0) {
6066 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6067 ret = btrfs_dec_ref(trans, root, eb, 1);
6068 else
6069 ret = btrfs_dec_ref(trans, root, eb, 0);
6070 BUG_ON(ret);
6071 }
6072 /* make block locked assertion in clean_tree_block happy */
6073 if (!path->locks[level] &&
6074 btrfs_header_generation(eb) == trans->transid) {
6075 btrfs_tree_lock(eb);
6076 btrfs_set_lock_blocking(eb);
6077 path->locks[level] = 1;
6078 }
6079 clean_tree_block(trans, root, eb);
6080 }
6081
6082 if (eb == root->node) {
6083 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6084 parent = eb->start;
6085 else
6086 BUG_ON(root->root_key.objectid !=
6087 btrfs_header_owner(eb));
6088 } else {
6089 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6090 parent = path->nodes[level + 1]->start;
6091 else
6092 BUG_ON(root->root_key.objectid !=
6093 btrfs_header_owner(path->nodes[level + 1]));
6094 }
6095
Yan, Zhengf0486c62010-05-16 10:46:25 -04006096 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006097out:
6098 wc->refs[level] = 0;
6099 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006100 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006101}
6102
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006103static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
6104 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04006105 struct btrfs_path *path,
6106 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04006107{
Yan Zheng2c47e6052009-06-27 21:07:35 -04006108 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006109 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006110 int ret;
6111
Yan Zheng2c47e6052009-06-27 21:07:35 -04006112 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04006113 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006114 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04006115 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006116
Yan Zheng2c47e6052009-06-27 21:07:35 -04006117 if (level == 0)
6118 break;
6119
Yan, Zheng7a7965f2010-02-01 02:41:17 +00006120 if (path->slots[level] >=
6121 btrfs_header_nritems(path->nodes[level]))
6122 break;
6123
Yan, Zheng94fcca92009-10-09 09:25:16 -04006124 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006125 if (ret > 0) {
6126 path->slots[level]++;
6127 continue;
Miao Xie90d2c512010-03-25 12:37:12 +00006128 } else if (ret < 0)
6129 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006130 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006131 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04006132 return 0;
6133}
6134
Chris Masond3977122009-01-05 21:25:51 -05006135static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05006136 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04006137 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04006138 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05006139{
Yan Zheng2c47e6052009-06-27 21:07:35 -04006140 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05006141 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04006142
Yan Zheng2c47e6052009-06-27 21:07:35 -04006143 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
6144 while (level < max_level && path->nodes[level]) {
6145 wc->level = level;
6146 if (path->slots[level] + 1 <
6147 btrfs_header_nritems(path->nodes[level])) {
6148 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05006149 return 0;
6150 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006151 ret = walk_up_proc(trans, root, path, wc);
6152 if (ret > 0)
6153 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05006154
Yan Zheng2c47e6052009-06-27 21:07:35 -04006155 if (path->locks[level]) {
6156 btrfs_tree_unlock(path->nodes[level]);
6157 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006158 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006159 free_extent_buffer(path->nodes[level]);
6160 path->nodes[level] = NULL;
6161 level++;
Chris Mason20524f02007-03-10 06:35:47 -05006162 }
6163 }
6164 return 1;
6165}
6166
Chris Mason9aca1d52007-03-13 11:09:37 -04006167/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04006168 * drop a subvolume tree.
6169 *
6170 * this function traverses the tree freeing any blocks that only
6171 * referenced by the tree.
6172 *
6173 * when a shared tree block is found. this function decreases its
6174 * reference count by one. if update_ref is true, this function
6175 * also make sure backrefs for the shared block and all lower level
6176 * blocks are properly updated.
Chris Mason9aca1d52007-03-13 11:09:37 -04006177 */
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006178int btrfs_drop_snapshot(struct btrfs_root *root,
6179 struct btrfs_block_rsv *block_rsv, int update_ref)
Chris Mason20524f02007-03-10 06:35:47 -05006180{
Chris Mason5caf2a02007-04-02 11:20:42 -04006181 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006182 struct btrfs_trans_handle *trans;
6183 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04006184 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006185 struct walk_control *wc;
6186 struct btrfs_key key;
6187 int err = 0;
6188 int ret;
6189 int level;
Chris Mason20524f02007-03-10 06:35:47 -05006190
Chris Mason5caf2a02007-04-02 11:20:42 -04006191 path = btrfs_alloc_path();
6192 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05006193
Yan Zheng2c47e6052009-06-27 21:07:35 -04006194 wc = kzalloc(sizeof(*wc), GFP_NOFS);
6195 BUG_ON(!wc);
6196
Yan, Zhenga22285a2010-05-16 10:48:46 -04006197 trans = btrfs_start_transaction(tree_root, 0);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006198 if (block_rsv)
6199 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006200
Chris Mason9f3a7422007-08-07 15:52:19 -04006201 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006202 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006203 path->nodes[level] = btrfs_lock_root_node(root);
6204 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04006205 path->slots[level] = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006206 path->locks[level] = 1;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006207 memset(&wc->update_progress, 0,
6208 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04006209 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04006210 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006211 memcpy(&wc->update_progress, &key,
6212 sizeof(wc->update_progress));
6213
Chris Mason6702ed42007-08-07 16:15:09 -04006214 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006215 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04006216 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006217 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6218 path->lowest_level = 0;
6219 if (ret < 0) {
6220 err = ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04006221 goto out;
6222 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006223 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006224
Chris Mason7d9eb122008-07-08 14:19:17 -04006225 /*
6226 * unlock our path, this is safe because only this
6227 * function is allowed to delete this snapshot
6228 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006229 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04006230
Yan Zheng2c47e6052009-06-27 21:07:35 -04006231 level = btrfs_header_level(root->node);
6232 while (1) {
6233 btrfs_tree_lock(path->nodes[level]);
6234 btrfs_set_lock_blocking(path->nodes[level]);
6235
6236 ret = btrfs_lookup_extent_info(trans, root,
6237 path->nodes[level]->start,
6238 path->nodes[level]->len,
6239 &wc->refs[level],
6240 &wc->flags[level]);
6241 BUG_ON(ret);
6242 BUG_ON(wc->refs[level] == 0);
6243
6244 if (level == root_item->drop_level)
6245 break;
6246
6247 btrfs_tree_unlock(path->nodes[level]);
6248 WARN_ON(wc->refs[level] != 1);
6249 level--;
6250 }
6251 }
6252
6253 wc->level = level;
6254 wc->shared_level = -1;
6255 wc->stage = DROP_REFERENCE;
6256 wc->update_ref = update_ref;
6257 wc->keep_locks = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006258 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006259
6260 while (1) {
6261 ret = walk_down_tree(trans, root, path, wc);
6262 if (ret < 0) {
6263 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04006264 break;
6265 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006266
6267 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
6268 if (ret < 0) {
6269 err = ret;
6270 break;
6271 }
6272
6273 if (ret > 0) {
6274 BUG_ON(wc->stage != DROP_REFERENCE);
6275 break;
6276 }
6277
6278 if (wc->stage == DROP_REFERENCE) {
6279 level = wc->level;
6280 btrfs_node_key(path->nodes[level],
6281 &root_item->drop_progress,
6282 path->slots[level]);
6283 root_item->drop_level = level;
6284 }
6285
6286 BUG_ON(wc->level == 0);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006287 if (btrfs_should_end_transaction(trans, tree_root)) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006288 ret = btrfs_update_root(trans, tree_root,
6289 &root->root_key,
6290 root_item);
6291 BUG_ON(ret);
6292
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006293 btrfs_end_transaction_throttle(trans, tree_root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006294 trans = btrfs_start_transaction(tree_root, 0);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006295 if (block_rsv)
6296 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04006297 }
Chris Mason20524f02007-03-10 06:35:47 -05006298 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006299 btrfs_release_path(root, path);
6300 BUG_ON(err);
6301
6302 ret = btrfs_del_root(trans, tree_root, &root->root_key);
6303 BUG_ON(ret);
6304
Yan, Zheng76dda932009-09-21 16:00:26 -04006305 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
6306 ret = btrfs_find_last_root(tree_root, root->root_key.objectid,
6307 NULL, NULL);
6308 BUG_ON(ret < 0);
6309 if (ret > 0) {
6310 ret = btrfs_del_orphan_item(trans, tree_root,
6311 root->root_key.objectid);
6312 BUG_ON(ret);
6313 }
6314 }
6315
6316 if (root->in_radix) {
6317 btrfs_free_fs_root(tree_root->fs_info, root);
6318 } else {
6319 free_extent_buffer(root->node);
6320 free_extent_buffer(root->commit_root);
6321 kfree(root);
6322 }
Chris Mason9f3a7422007-08-07 15:52:19 -04006323out:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006324 btrfs_end_transaction_throttle(trans, tree_root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006325 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04006326 btrfs_free_path(path);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006327 return err;
Chris Mason20524f02007-03-10 06:35:47 -05006328}
Chris Mason9078a3e2007-04-26 16:46:15 -04006329
Yan Zheng2c47e6052009-06-27 21:07:35 -04006330/*
6331 * drop subtree rooted at tree block 'node'.
6332 *
6333 * NOTE: this function will unlock and release tree block 'node'
6334 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04006335int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
6336 struct btrfs_root *root,
6337 struct extent_buffer *node,
6338 struct extent_buffer *parent)
6339{
6340 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006341 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006342 int level;
6343 int parent_level;
6344 int ret = 0;
6345 int wret;
6346
Yan Zheng2c47e6052009-06-27 21:07:35 -04006347 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
6348
Yan Zhengf82d02d2008-10-29 14:49:05 -04006349 path = btrfs_alloc_path();
6350 BUG_ON(!path);
6351
Yan Zheng2c47e6052009-06-27 21:07:35 -04006352 wc = kzalloc(sizeof(*wc), GFP_NOFS);
6353 BUG_ON(!wc);
6354
Chris Masonb9447ef2009-03-09 11:45:38 -04006355 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006356 parent_level = btrfs_header_level(parent);
6357 extent_buffer_get(parent);
6358 path->nodes[parent_level] = parent;
6359 path->slots[parent_level] = btrfs_header_nritems(parent);
6360
Chris Masonb9447ef2009-03-09 11:45:38 -04006361 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006362 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006363 path->nodes[level] = node;
6364 path->slots[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006365 path->locks[level] = 1;
6366
6367 wc->refs[parent_level] = 1;
6368 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
6369 wc->level = level;
6370 wc->shared_level = -1;
6371 wc->stage = DROP_REFERENCE;
6372 wc->update_ref = 0;
6373 wc->keep_locks = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006374 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006375
6376 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006377 wret = walk_down_tree(trans, root, path, wc);
6378 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04006379 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006380 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006381 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04006382
Yan Zheng2c47e6052009-06-27 21:07:35 -04006383 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006384 if (wret < 0)
6385 ret = wret;
6386 if (wret != 0)
6387 break;
6388 }
6389
Yan Zheng2c47e6052009-06-27 21:07:35 -04006390 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006391 btrfs_free_path(path);
6392 return ret;
6393}
6394
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006395#if 0
Chris Mason8e7bf942008-04-28 09:02:36 -04006396static unsigned long calc_ra(unsigned long start, unsigned long last,
6397 unsigned long nr)
6398{
6399 return min(last, start + nr - 1);
6400}
6401
Chris Masond3977122009-01-05 21:25:51 -05006402static noinline int relocate_inode_pages(struct inode *inode, u64 start,
Chris Mason98ed5172008-01-03 10:01:48 -05006403 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05006404{
6405 u64 page_start;
6406 u64 page_end;
Zheng Yan1a40e232008-09-26 10:09:34 -04006407 unsigned long first_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05006408 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05006409 unsigned long i;
6410 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05006411 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05006412 struct file_ra_state *ra;
Chris Mason3eaa2882008-07-24 11:57:52 -04006413 struct btrfs_ordered_extent *ordered;
Zheng Yan1a40e232008-09-26 10:09:34 -04006414 unsigned int total_read = 0;
6415 unsigned int total_dirty = 0;
6416 int ret = 0;
Chris Mason4313b392008-01-03 09:08:48 -05006417
6418 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05006419
6420 mutex_lock(&inode->i_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04006421 first_index = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05006422 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
6423
Zheng Yan1a40e232008-09-26 10:09:34 -04006424 /* make sure the dirty trick played by the caller work */
6425 ret = invalidate_inode_pages2_range(inode->i_mapping,
6426 first_index, last_index);
6427 if (ret)
6428 goto out_unlock;
Chris Mason8e7bf942008-04-28 09:02:36 -04006429
Chris Mason4313b392008-01-03 09:08:48 -05006430 file_ra_state_init(ra, inode->i_mapping);
Chris Masonedbd8d42007-12-21 16:27:24 -05006431
Zheng Yan1a40e232008-09-26 10:09:34 -04006432 for (i = first_index ; i <= last_index; i++) {
6433 if (total_read % ra->ra_pages == 0) {
Chris Mason8e7bf942008-04-28 09:02:36 -04006434 btrfs_force_ra(inode->i_mapping, ra, NULL, i,
Zheng Yan1a40e232008-09-26 10:09:34 -04006435 calc_ra(i, last_index, ra->ra_pages));
Chris Mason8e7bf942008-04-28 09:02:36 -04006436 }
6437 total_read++;
Chris Mason3eaa2882008-07-24 11:57:52 -04006438again:
6439 if (((u64)i << PAGE_CACHE_SHIFT) > i_size_read(inode))
Zheng Yan1a40e232008-09-26 10:09:34 -04006440 BUG_ON(1);
Chris Masonedbd8d42007-12-21 16:27:24 -05006441 page = grab_cache_page(inode->i_mapping, i);
Chris Masona061fc82008-05-07 11:43:44 -04006442 if (!page) {
Zheng Yan1a40e232008-09-26 10:09:34 -04006443 ret = -ENOMEM;
Chris Masonedbd8d42007-12-21 16:27:24 -05006444 goto out_unlock;
Chris Masona061fc82008-05-07 11:43:44 -04006445 }
Chris Masonedbd8d42007-12-21 16:27:24 -05006446 if (!PageUptodate(page)) {
6447 btrfs_readpage(NULL, page);
6448 lock_page(page);
6449 if (!PageUptodate(page)) {
6450 unlock_page(page);
6451 page_cache_release(page);
Zheng Yan1a40e232008-09-26 10:09:34 -04006452 ret = -EIO;
Chris Masonedbd8d42007-12-21 16:27:24 -05006453 goto out_unlock;
6454 }
6455 }
Chris Masonec44a352008-04-28 15:29:52 -04006456 wait_on_page_writeback(page);
Chris Mason3eaa2882008-07-24 11:57:52 -04006457
Chris Masonedbd8d42007-12-21 16:27:24 -05006458 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
6459 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05006460 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05006461
Chris Mason3eaa2882008-07-24 11:57:52 -04006462 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6463 if (ordered) {
6464 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
6465 unlock_page(page);
6466 page_cache_release(page);
6467 btrfs_start_ordered_extent(inode, ordered, 1);
6468 btrfs_put_ordered_extent(ordered);
6469 goto again;
6470 }
6471 set_page_extent_mapped(page);
6472
Zheng Yan1a40e232008-09-26 10:09:34 -04006473 if (i == first_index)
6474 set_extent_bits(io_tree, page_start, page_end,
6475 EXTENT_BOUNDARY, GFP_NOFS);
Yan Zheng1f80e4d2008-12-19 10:59:04 -05006476 btrfs_set_extent_delalloc(inode, page_start, page_end);
Zheng Yan1a40e232008-09-26 10:09:34 -04006477
Chris Masona061fc82008-05-07 11:43:44 -04006478 set_page_dirty(page);
Zheng Yan1a40e232008-09-26 10:09:34 -04006479 total_dirty++;
Chris Masonedbd8d42007-12-21 16:27:24 -05006480
Chris Masond1310b22008-01-24 16:13:08 -05006481 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05006482 unlock_page(page);
6483 page_cache_release(page);
6484 }
6485
6486out_unlock:
Chris Masonec44a352008-04-28 15:29:52 -04006487 kfree(ra);
Chris Masonedbd8d42007-12-21 16:27:24 -05006488 mutex_unlock(&inode->i_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04006489 balance_dirty_pages_ratelimited_nr(inode->i_mapping, total_dirty);
Chris Masonbf4ef672008-05-08 13:26:18 -04006490 return ret;
6491}
6492
Chris Masond3977122009-01-05 21:25:51 -05006493static noinline int relocate_data_extent(struct inode *reloc_inode,
Zheng Yan1a40e232008-09-26 10:09:34 -04006494 struct btrfs_key *extent_key,
6495 u64 offset)
Chris Masonedbd8d42007-12-21 16:27:24 -05006496{
Zheng Yan1a40e232008-09-26 10:09:34 -04006497 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
6498 struct extent_map_tree *em_tree = &BTRFS_I(reloc_inode)->extent_tree;
6499 struct extent_map *em;
Yan Zheng66435582008-10-30 14:19:50 -04006500 u64 start = extent_key->objectid - offset;
6501 u64 end = start + extent_key->offset - 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04006502
6503 em = alloc_extent_map(GFP_NOFS);
6504 BUG_ON(!em || IS_ERR(em));
6505
Yan Zheng66435582008-10-30 14:19:50 -04006506 em->start = start;
Zheng Yan1a40e232008-09-26 10:09:34 -04006507 em->len = extent_key->offset;
Chris Masonc8b97812008-10-29 14:49:59 -04006508 em->block_len = extent_key->offset;
Zheng Yan1a40e232008-09-26 10:09:34 -04006509 em->block_start = extent_key->objectid;
6510 em->bdev = root->fs_info->fs_devices->latest_bdev;
6511 set_bit(EXTENT_FLAG_PINNED, &em->flags);
6512
6513 /* setup extent map to cheat btrfs_readpage */
Yan Zheng66435582008-10-30 14:19:50 -04006514 lock_extent(&BTRFS_I(reloc_inode)->io_tree, start, end, GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04006515 while (1) {
6516 int ret;
Chris Mason890871b2009-09-02 16:24:52 -04006517 write_lock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04006518 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04006519 write_unlock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04006520 if (ret != -EEXIST) {
6521 free_extent_map(em);
6522 break;
6523 }
Yan Zheng66435582008-10-30 14:19:50 -04006524 btrfs_drop_extent_cache(reloc_inode, start, end, 0);
Zheng Yan1a40e232008-09-26 10:09:34 -04006525 }
Yan Zheng66435582008-10-30 14:19:50 -04006526 unlock_extent(&BTRFS_I(reloc_inode)->io_tree, start, end, GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04006527
Yan Zheng66435582008-10-30 14:19:50 -04006528 return relocate_inode_pages(reloc_inode, start, extent_key->offset);
Zheng Yan1a40e232008-09-26 10:09:34 -04006529}
6530
6531struct btrfs_ref_path {
6532 u64 extent_start;
6533 u64 nodes[BTRFS_MAX_LEVEL];
6534 u64 root_objectid;
6535 u64 root_generation;
6536 u64 owner_objectid;
Zheng Yan1a40e232008-09-26 10:09:34 -04006537 u32 num_refs;
6538 int lowest_level;
6539 int current_level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006540 int shared_level;
6541
6542 struct btrfs_key node_keys[BTRFS_MAX_LEVEL];
6543 u64 new_nodes[BTRFS_MAX_LEVEL];
Zheng Yan1a40e232008-09-26 10:09:34 -04006544};
6545
6546struct disk_extent {
Chris Masonc8b97812008-10-29 14:49:59 -04006547 u64 ram_bytes;
Zheng Yan1a40e232008-09-26 10:09:34 -04006548 u64 disk_bytenr;
6549 u64 disk_num_bytes;
6550 u64 offset;
6551 u64 num_bytes;
Chris Masonc8b97812008-10-29 14:49:59 -04006552 u8 compression;
6553 u8 encryption;
6554 u16 other_encoding;
Zheng Yan1a40e232008-09-26 10:09:34 -04006555};
6556
6557static int is_cowonly_root(u64 root_objectid)
6558{
6559 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID ||
6560 root_objectid == BTRFS_EXTENT_TREE_OBJECTID ||
6561 root_objectid == BTRFS_CHUNK_TREE_OBJECTID ||
6562 root_objectid == BTRFS_DEV_TREE_OBJECTID ||
Yan Zheng0403e472008-12-10 20:32:51 -05006563 root_objectid == BTRFS_TREE_LOG_OBJECTID ||
6564 root_objectid == BTRFS_CSUM_TREE_OBJECTID)
Zheng Yan1a40e232008-09-26 10:09:34 -04006565 return 1;
6566 return 0;
6567}
6568
Chris Masond3977122009-01-05 21:25:51 -05006569static noinline int __next_ref_path(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04006570 struct btrfs_root *extent_root,
6571 struct btrfs_ref_path *ref_path,
6572 int first_time)
6573{
6574 struct extent_buffer *leaf;
6575 struct btrfs_path *path;
Chris Mason4313b392008-01-03 09:08:48 -05006576 struct btrfs_extent_ref *ref;
Chris Masonedbd8d42007-12-21 16:27:24 -05006577 struct btrfs_key key;
6578 struct btrfs_key found_key;
Zheng Yan1a40e232008-09-26 10:09:34 -04006579 u64 bytenr;
Chris Masonedbd8d42007-12-21 16:27:24 -05006580 u32 nritems;
Zheng Yan1a40e232008-09-26 10:09:34 -04006581 int level;
6582 int ret = 1;
Chris Masonedbd8d42007-12-21 16:27:24 -05006583
Zheng Yan1a40e232008-09-26 10:09:34 -04006584 path = btrfs_alloc_path();
6585 if (!path)
6586 return -ENOMEM;
6587
Zheng Yan1a40e232008-09-26 10:09:34 -04006588 if (first_time) {
6589 ref_path->lowest_level = -1;
6590 ref_path->current_level = -1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006591 ref_path->shared_level = -1;
Zheng Yan1a40e232008-09-26 10:09:34 -04006592 goto walk_up;
Chris Masona061fc82008-05-07 11:43:44 -04006593 }
Zheng Yan1a40e232008-09-26 10:09:34 -04006594walk_down:
6595 level = ref_path->current_level - 1;
6596 while (level >= -1) {
6597 u64 parent;
6598 if (level < ref_path->lowest_level)
6599 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05006600
Chris Masond3977122009-01-05 21:25:51 -05006601 if (level >= 0)
Zheng Yan1a40e232008-09-26 10:09:34 -04006602 bytenr = ref_path->nodes[level];
Chris Masond3977122009-01-05 21:25:51 -05006603 else
Zheng Yan1a40e232008-09-26 10:09:34 -04006604 bytenr = ref_path->extent_start;
Zheng Yan1a40e232008-09-26 10:09:34 -04006605 BUG_ON(bytenr == 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006606
Zheng Yan1a40e232008-09-26 10:09:34 -04006607 parent = ref_path->nodes[level + 1];
6608 ref_path->nodes[level + 1] = 0;
6609 ref_path->current_level = level;
6610 BUG_ON(parent == 0);
6611
6612 key.objectid = bytenr;
6613 key.offset = parent + 1;
6614 key.type = BTRFS_EXTENT_REF_KEY;
6615
6616 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006617 if (ret < 0)
6618 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04006619 BUG_ON(ret == 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006620
Chris Masonedbd8d42007-12-21 16:27:24 -05006621 leaf = path->nodes[0];
6622 nritems = btrfs_header_nritems(leaf);
Zheng Yan1a40e232008-09-26 10:09:34 -04006623 if (path->slots[0] >= nritems) {
Chris Masona061fc82008-05-07 11:43:44 -04006624 ret = btrfs_next_leaf(extent_root, path);
Chris Masona061fc82008-05-07 11:43:44 -04006625 if (ret < 0)
6626 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04006627 if (ret > 0)
6628 goto next;
Chris Masonbf4ef672008-05-08 13:26:18 -04006629 leaf = path->nodes[0];
Chris Masona061fc82008-05-07 11:43:44 -04006630 }
Chris Masonedbd8d42007-12-21 16:27:24 -05006631
6632 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Zheng Yan1a40e232008-09-26 10:09:34 -04006633 if (found_key.objectid == bytenr &&
Yan Zhengf82d02d2008-10-29 14:49:05 -04006634 found_key.type == BTRFS_EXTENT_REF_KEY) {
6635 if (level < ref_path->shared_level)
6636 ref_path->shared_level = level;
Zheng Yan1a40e232008-09-26 10:09:34 -04006637 goto found;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006638 }
Zheng Yan1a40e232008-09-26 10:09:34 -04006639next:
6640 level--;
6641 btrfs_release_path(extent_root, path);
Yan Zhengd899e052008-10-30 14:25:28 -04006642 cond_resched();
Zheng Yan1a40e232008-09-26 10:09:34 -04006643 }
6644 /* reached lowest level */
6645 ret = 1;
6646 goto out;
6647walk_up:
6648 level = ref_path->current_level;
6649 while (level < BTRFS_MAX_LEVEL - 1) {
6650 u64 ref_objectid;
Chris Masond3977122009-01-05 21:25:51 -05006651
6652 if (level >= 0)
Zheng Yan1a40e232008-09-26 10:09:34 -04006653 bytenr = ref_path->nodes[level];
Chris Masond3977122009-01-05 21:25:51 -05006654 else
Zheng Yan1a40e232008-09-26 10:09:34 -04006655 bytenr = ref_path->extent_start;
Chris Masond3977122009-01-05 21:25:51 -05006656
Zheng Yan1a40e232008-09-26 10:09:34 -04006657 BUG_ON(bytenr == 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006658
Zheng Yan1a40e232008-09-26 10:09:34 -04006659 key.objectid = bytenr;
6660 key.offset = 0;
6661 key.type = BTRFS_EXTENT_REF_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05006662
Zheng Yan1a40e232008-09-26 10:09:34 -04006663 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 0);
6664 if (ret < 0)
Chris Masonedbd8d42007-12-21 16:27:24 -05006665 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04006666
6667 leaf = path->nodes[0];
6668 nritems = btrfs_header_nritems(leaf);
6669 if (path->slots[0] >= nritems) {
6670 ret = btrfs_next_leaf(extent_root, path);
6671 if (ret < 0)
6672 goto out;
6673 if (ret > 0) {
6674 /* the extent was freed by someone */
6675 if (ref_path->lowest_level == level)
6676 goto out;
6677 btrfs_release_path(extent_root, path);
6678 goto walk_down;
6679 }
6680 leaf = path->nodes[0];
6681 }
6682
6683 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6684 if (found_key.objectid != bytenr ||
6685 found_key.type != BTRFS_EXTENT_REF_KEY) {
6686 /* the extent was freed by someone */
6687 if (ref_path->lowest_level == level) {
6688 ret = 1;
6689 goto out;
6690 }
6691 btrfs_release_path(extent_root, path);
6692 goto walk_down;
6693 }
6694found:
6695 ref = btrfs_item_ptr(leaf, path->slots[0],
6696 struct btrfs_extent_ref);
6697 ref_objectid = btrfs_ref_objectid(leaf, ref);
6698 if (ref_objectid < BTRFS_FIRST_FREE_OBJECTID) {
6699 if (first_time) {
6700 level = (int)ref_objectid;
6701 BUG_ON(level >= BTRFS_MAX_LEVEL);
6702 ref_path->lowest_level = level;
6703 ref_path->current_level = level;
6704 ref_path->nodes[level] = bytenr;
6705 } else {
6706 WARN_ON(ref_objectid != level);
6707 }
6708 } else {
6709 WARN_ON(level != -1);
6710 }
6711 first_time = 0;
6712
6713 if (ref_path->lowest_level == level) {
6714 ref_path->owner_objectid = ref_objectid;
Zheng Yan1a40e232008-09-26 10:09:34 -04006715 ref_path->num_refs = btrfs_ref_num_refs(leaf, ref);
6716 }
6717
6718 /*
6719 * the block is tree root or the block isn't in reference
6720 * counted tree.
6721 */
6722 if (found_key.objectid == found_key.offset ||
6723 is_cowonly_root(btrfs_ref_root(leaf, ref))) {
6724 ref_path->root_objectid = btrfs_ref_root(leaf, ref);
6725 ref_path->root_generation =
6726 btrfs_ref_generation(leaf, ref);
6727 if (level < 0) {
6728 /* special reference from the tree log */
6729 ref_path->nodes[0] = found_key.offset;
6730 ref_path->current_level = 0;
6731 }
6732 ret = 0;
6733 goto out;
6734 }
6735
6736 level++;
6737 BUG_ON(ref_path->nodes[level] != 0);
6738 ref_path->nodes[level] = found_key.offset;
6739 ref_path->current_level = level;
6740
6741 /*
6742 * the reference was created in the running transaction,
6743 * no need to continue walking up.
6744 */
6745 if (btrfs_ref_generation(leaf, ref) == trans->transid) {
6746 ref_path->root_objectid = btrfs_ref_root(leaf, ref);
6747 ref_path->root_generation =
6748 btrfs_ref_generation(leaf, ref);
6749 ret = 0;
6750 goto out;
6751 }
6752
6753 btrfs_release_path(extent_root, path);
Yan Zhengd899e052008-10-30 14:25:28 -04006754 cond_resched();
Zheng Yan1a40e232008-09-26 10:09:34 -04006755 }
6756 /* reached max tree level, but no tree root found. */
6757 BUG();
6758out:
Zheng Yan1a40e232008-09-26 10:09:34 -04006759 btrfs_free_path(path);
6760 return ret;
6761}
6762
6763static int btrfs_first_ref_path(struct btrfs_trans_handle *trans,
6764 struct btrfs_root *extent_root,
6765 struct btrfs_ref_path *ref_path,
6766 u64 extent_start)
6767{
6768 memset(ref_path, 0, sizeof(*ref_path));
6769 ref_path->extent_start = extent_start;
6770
6771 return __next_ref_path(trans, extent_root, ref_path, 1);
6772}
6773
6774static int btrfs_next_ref_path(struct btrfs_trans_handle *trans,
6775 struct btrfs_root *extent_root,
6776 struct btrfs_ref_path *ref_path)
6777{
6778 return __next_ref_path(trans, extent_root, ref_path, 0);
6779}
6780
Chris Masond3977122009-01-05 21:25:51 -05006781static noinline int get_new_locations(struct inode *reloc_inode,
Zheng Yan1a40e232008-09-26 10:09:34 -04006782 struct btrfs_key *extent_key,
6783 u64 offset, int no_fragment,
6784 struct disk_extent **extents,
6785 int *nr_extents)
6786{
6787 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
6788 struct btrfs_path *path;
6789 struct btrfs_file_extent_item *fi;
6790 struct extent_buffer *leaf;
6791 struct disk_extent *exts = *extents;
6792 struct btrfs_key found_key;
6793 u64 cur_pos;
6794 u64 last_byte;
6795 u32 nritems;
6796 int nr = 0;
6797 int max = *nr_extents;
6798 int ret;
6799
6800 WARN_ON(!no_fragment && *extents);
6801 if (!exts) {
6802 max = 1;
6803 exts = kmalloc(sizeof(*exts) * max, GFP_NOFS);
6804 if (!exts)
6805 return -ENOMEM;
6806 }
6807
6808 path = btrfs_alloc_path();
6809 BUG_ON(!path);
6810
6811 cur_pos = extent_key->objectid - offset;
6812 last_byte = extent_key->objectid + extent_key->offset;
6813 ret = btrfs_lookup_file_extent(NULL, root, path, reloc_inode->i_ino,
6814 cur_pos, 0);
6815 if (ret < 0)
6816 goto out;
6817 if (ret > 0) {
6818 ret = -ENOENT;
6819 goto out;
6820 }
6821
6822 while (1) {
6823 leaf = path->nodes[0];
6824 nritems = btrfs_header_nritems(leaf);
6825 if (path->slots[0] >= nritems) {
6826 ret = btrfs_next_leaf(root, path);
6827 if (ret < 0)
6828 goto out;
6829 if (ret > 0)
6830 break;
6831 leaf = path->nodes[0];
6832 }
6833
6834 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6835 if (found_key.offset != cur_pos ||
6836 found_key.type != BTRFS_EXTENT_DATA_KEY ||
6837 found_key.objectid != reloc_inode->i_ino)
6838 break;
6839
6840 fi = btrfs_item_ptr(leaf, path->slots[0],
6841 struct btrfs_file_extent_item);
6842 if (btrfs_file_extent_type(leaf, fi) !=
6843 BTRFS_FILE_EXTENT_REG ||
6844 btrfs_file_extent_disk_bytenr(leaf, fi) == 0)
6845 break;
6846
6847 if (nr == max) {
6848 struct disk_extent *old = exts;
6849 max *= 2;
6850 exts = kzalloc(sizeof(*exts) * max, GFP_NOFS);
6851 memcpy(exts, old, sizeof(*exts) * nr);
6852 if (old != *extents)
6853 kfree(old);
6854 }
6855
6856 exts[nr].disk_bytenr =
6857 btrfs_file_extent_disk_bytenr(leaf, fi);
6858 exts[nr].disk_num_bytes =
6859 btrfs_file_extent_disk_num_bytes(leaf, fi);
6860 exts[nr].offset = btrfs_file_extent_offset(leaf, fi);
6861 exts[nr].num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
Chris Masonc8b97812008-10-29 14:49:59 -04006862 exts[nr].ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
6863 exts[nr].compression = btrfs_file_extent_compression(leaf, fi);
6864 exts[nr].encryption = btrfs_file_extent_encryption(leaf, fi);
6865 exts[nr].other_encoding = btrfs_file_extent_other_encoding(leaf,
6866 fi);
Yan Zhengd899e052008-10-30 14:25:28 -04006867 BUG_ON(exts[nr].offset > 0);
6868 BUG_ON(exts[nr].compression || exts[nr].encryption);
6869 BUG_ON(exts[nr].num_bytes != exts[nr].disk_num_bytes);
Zheng Yan1a40e232008-09-26 10:09:34 -04006870
6871 cur_pos += exts[nr].num_bytes;
6872 nr++;
6873
6874 if (cur_pos + offset >= last_byte)
6875 break;
6876
6877 if (no_fragment) {
6878 ret = 1;
6879 goto out;
6880 }
6881 path->slots[0]++;
6882 }
6883
Yan Zheng1f80e4d2008-12-19 10:59:04 -05006884 BUG_ON(cur_pos + offset > last_byte);
Zheng Yan1a40e232008-09-26 10:09:34 -04006885 if (cur_pos + offset < last_byte) {
6886 ret = -ENOENT;
6887 goto out;
Chris Masonedbd8d42007-12-21 16:27:24 -05006888 }
6889 ret = 0;
6890out:
Zheng Yan1a40e232008-09-26 10:09:34 -04006891 btrfs_free_path(path);
6892 if (ret) {
6893 if (exts != *extents)
6894 kfree(exts);
6895 } else {
6896 *extents = exts;
6897 *nr_extents = nr;
6898 }
6899 return ret;
6900}
6901
Chris Masond3977122009-01-05 21:25:51 -05006902static noinline int replace_one_extent(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04006903 struct btrfs_root *root,
6904 struct btrfs_path *path,
6905 struct btrfs_key *extent_key,
6906 struct btrfs_key *leaf_key,
6907 struct btrfs_ref_path *ref_path,
6908 struct disk_extent *new_extents,
6909 int nr_extents)
6910{
6911 struct extent_buffer *leaf;
6912 struct btrfs_file_extent_item *fi;
6913 struct inode *inode = NULL;
6914 struct btrfs_key key;
6915 u64 lock_start = 0;
6916 u64 lock_end = 0;
6917 u64 num_bytes;
6918 u64 ext_offset;
Yan Zheng86288a12009-01-21 10:49:16 -05006919 u64 search_end = (u64)-1;
Zheng Yan1a40e232008-09-26 10:09:34 -04006920 u32 nritems;
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04006921 int nr_scaned = 0;
Zheng Yan1a40e232008-09-26 10:09:34 -04006922 int extent_locked = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04006923 int extent_type;
Zheng Yan1a40e232008-09-26 10:09:34 -04006924 int ret;
6925
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04006926 memcpy(&key, leaf_key, sizeof(key));
Zheng Yan1a40e232008-09-26 10:09:34 -04006927 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS) {
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04006928 if (key.objectid < ref_path->owner_objectid ||
6929 (key.objectid == ref_path->owner_objectid &&
6930 key.type < BTRFS_EXTENT_DATA_KEY)) {
6931 key.objectid = ref_path->owner_objectid;
6932 key.type = BTRFS_EXTENT_DATA_KEY;
6933 key.offset = 0;
6934 }
Zheng Yan1a40e232008-09-26 10:09:34 -04006935 }
6936
6937 while (1) {
6938 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
6939 if (ret < 0)
6940 goto out;
6941
6942 leaf = path->nodes[0];
6943 nritems = btrfs_header_nritems(leaf);
6944next:
6945 if (extent_locked && ret > 0) {
6946 /*
6947 * the file extent item was modified by someone
6948 * before the extent got locked.
6949 */
Zheng Yan1a40e232008-09-26 10:09:34 -04006950 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
6951 lock_end, GFP_NOFS);
6952 extent_locked = 0;
6953 }
6954
6955 if (path->slots[0] >= nritems) {
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04006956 if (++nr_scaned > 2)
Zheng Yan1a40e232008-09-26 10:09:34 -04006957 break;
6958
6959 BUG_ON(extent_locked);
6960 ret = btrfs_next_leaf(root, path);
6961 if (ret < 0)
6962 goto out;
6963 if (ret > 0)
6964 break;
6965 leaf = path->nodes[0];
6966 nritems = btrfs_header_nritems(leaf);
6967 }
6968
6969 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
6970
6971 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS) {
6972 if ((key.objectid > ref_path->owner_objectid) ||
6973 (key.objectid == ref_path->owner_objectid &&
6974 key.type > BTRFS_EXTENT_DATA_KEY) ||
Yan Zheng86288a12009-01-21 10:49:16 -05006975 key.offset >= search_end)
Zheng Yan1a40e232008-09-26 10:09:34 -04006976 break;
6977 }
6978
6979 if (inode && key.objectid != inode->i_ino) {
6980 BUG_ON(extent_locked);
6981 btrfs_release_path(root, path);
6982 mutex_unlock(&inode->i_mutex);
6983 iput(inode);
6984 inode = NULL;
6985 continue;
6986 }
6987
6988 if (key.type != BTRFS_EXTENT_DATA_KEY) {
6989 path->slots[0]++;
6990 ret = 1;
6991 goto next;
6992 }
6993 fi = btrfs_item_ptr(leaf, path->slots[0],
6994 struct btrfs_file_extent_item);
Yan Zhengd899e052008-10-30 14:25:28 -04006995 extent_type = btrfs_file_extent_type(leaf, fi);
6996 if ((extent_type != BTRFS_FILE_EXTENT_REG &&
6997 extent_type != BTRFS_FILE_EXTENT_PREALLOC) ||
Zheng Yan1a40e232008-09-26 10:09:34 -04006998 (btrfs_file_extent_disk_bytenr(leaf, fi) !=
6999 extent_key->objectid)) {
7000 path->slots[0]++;
7001 ret = 1;
7002 goto next;
7003 }
7004
7005 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
7006 ext_offset = btrfs_file_extent_offset(leaf, fi);
7007
Yan Zheng86288a12009-01-21 10:49:16 -05007008 if (search_end == (u64)-1) {
7009 search_end = key.offset - ext_offset +
7010 btrfs_file_extent_ram_bytes(leaf, fi);
7011 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007012
7013 if (!extent_locked) {
7014 lock_start = key.offset;
7015 lock_end = lock_start + num_bytes - 1;
7016 } else {
Yan Zheng66435582008-10-30 14:19:50 -04007017 if (lock_start > key.offset ||
7018 lock_end + 1 < key.offset + num_bytes) {
7019 unlock_extent(&BTRFS_I(inode)->io_tree,
7020 lock_start, lock_end, GFP_NOFS);
7021 extent_locked = 0;
7022 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007023 }
7024
7025 if (!inode) {
7026 btrfs_release_path(root, path);
7027
7028 inode = btrfs_iget_locked(root->fs_info->sb,
7029 key.objectid, root);
7030 if (inode->i_state & I_NEW) {
7031 BTRFS_I(inode)->root = root;
7032 BTRFS_I(inode)->location.objectid =
7033 key.objectid;
7034 BTRFS_I(inode)->location.type =
7035 BTRFS_INODE_ITEM_KEY;
7036 BTRFS_I(inode)->location.offset = 0;
7037 btrfs_read_locked_inode(inode);
7038 unlock_new_inode(inode);
7039 }
7040 /*
7041 * some code call btrfs_commit_transaction while
7042 * holding the i_mutex, so we can't use mutex_lock
7043 * here.
7044 */
7045 if (is_bad_inode(inode) ||
7046 !mutex_trylock(&inode->i_mutex)) {
7047 iput(inode);
7048 inode = NULL;
7049 key.offset = (u64)-1;
7050 goto skip;
7051 }
7052 }
7053
7054 if (!extent_locked) {
7055 struct btrfs_ordered_extent *ordered;
7056
7057 btrfs_release_path(root, path);
7058
7059 lock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7060 lock_end, GFP_NOFS);
7061 ordered = btrfs_lookup_first_ordered_extent(inode,
7062 lock_end);
7063 if (ordered &&
7064 ordered->file_offset <= lock_end &&
7065 ordered->file_offset + ordered->len > lock_start) {
7066 unlock_extent(&BTRFS_I(inode)->io_tree,
7067 lock_start, lock_end, GFP_NOFS);
7068 btrfs_start_ordered_extent(inode, ordered, 1);
7069 btrfs_put_ordered_extent(ordered);
7070 key.offset += num_bytes;
7071 goto skip;
7072 }
7073 if (ordered)
7074 btrfs_put_ordered_extent(ordered);
7075
Zheng Yan1a40e232008-09-26 10:09:34 -04007076 extent_locked = 1;
7077 continue;
7078 }
7079
7080 if (nr_extents == 1) {
7081 /* update extent pointer in place */
Zheng Yan1a40e232008-09-26 10:09:34 -04007082 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7083 new_extents[0].disk_bytenr);
7084 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7085 new_extents[0].disk_num_bytes);
Zheng Yan1a40e232008-09-26 10:09:34 -04007086 btrfs_mark_buffer_dirty(leaf);
7087
7088 btrfs_drop_extent_cache(inode, key.offset,
7089 key.offset + num_bytes - 1, 0);
7090
7091 ret = btrfs_inc_extent_ref(trans, root,
7092 new_extents[0].disk_bytenr,
7093 new_extents[0].disk_num_bytes,
7094 leaf->start,
7095 root->root_key.objectid,
7096 trans->transid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007097 key.objectid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007098 BUG_ON(ret);
7099
7100 ret = btrfs_free_extent(trans, root,
7101 extent_key->objectid,
7102 extent_key->offset,
7103 leaf->start,
7104 btrfs_header_owner(leaf),
7105 btrfs_header_generation(leaf),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007106 key.objectid, 0);
Zheng Yan1a40e232008-09-26 10:09:34 -04007107 BUG_ON(ret);
7108
7109 btrfs_release_path(root, path);
7110 key.offset += num_bytes;
7111 } else {
Yan Zhengd899e052008-10-30 14:25:28 -04007112 BUG_ON(1);
7113#if 0
Zheng Yan1a40e232008-09-26 10:09:34 -04007114 u64 alloc_hint;
7115 u64 extent_len;
7116 int i;
7117 /*
7118 * drop old extent pointer at first, then insert the
7119 * new pointers one bye one
7120 */
7121 btrfs_release_path(root, path);
7122 ret = btrfs_drop_extents(trans, root, inode, key.offset,
7123 key.offset + num_bytes,
7124 key.offset, &alloc_hint);
7125 BUG_ON(ret);
7126
7127 for (i = 0; i < nr_extents; i++) {
7128 if (ext_offset >= new_extents[i].num_bytes) {
7129 ext_offset -= new_extents[i].num_bytes;
7130 continue;
7131 }
7132 extent_len = min(new_extents[i].num_bytes -
7133 ext_offset, num_bytes);
7134
7135 ret = btrfs_insert_empty_item(trans, root,
7136 path, &key,
7137 sizeof(*fi));
7138 BUG_ON(ret);
7139
7140 leaf = path->nodes[0];
7141 fi = btrfs_item_ptr(leaf, path->slots[0],
7142 struct btrfs_file_extent_item);
7143 btrfs_set_file_extent_generation(leaf, fi,
7144 trans->transid);
7145 btrfs_set_file_extent_type(leaf, fi,
7146 BTRFS_FILE_EXTENT_REG);
7147 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7148 new_extents[i].disk_bytenr);
7149 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7150 new_extents[i].disk_num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -04007151 btrfs_set_file_extent_ram_bytes(leaf, fi,
7152 new_extents[i].ram_bytes);
7153
7154 btrfs_set_file_extent_compression(leaf, fi,
7155 new_extents[i].compression);
7156 btrfs_set_file_extent_encryption(leaf, fi,
7157 new_extents[i].encryption);
7158 btrfs_set_file_extent_other_encoding(leaf, fi,
7159 new_extents[i].other_encoding);
7160
Zheng Yan1a40e232008-09-26 10:09:34 -04007161 btrfs_set_file_extent_num_bytes(leaf, fi,
7162 extent_len);
7163 ext_offset += new_extents[i].offset;
7164 btrfs_set_file_extent_offset(leaf, fi,
7165 ext_offset);
7166 btrfs_mark_buffer_dirty(leaf);
7167
7168 btrfs_drop_extent_cache(inode, key.offset,
7169 key.offset + extent_len - 1, 0);
7170
7171 ret = btrfs_inc_extent_ref(trans, root,
7172 new_extents[i].disk_bytenr,
7173 new_extents[i].disk_num_bytes,
7174 leaf->start,
7175 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007176 trans->transid, key.objectid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007177 BUG_ON(ret);
7178 btrfs_release_path(root, path);
7179
Yan Zhenga76a3cd2008-10-09 11:46:29 -04007180 inode_add_bytes(inode, extent_len);
Zheng Yan1a40e232008-09-26 10:09:34 -04007181
7182 ext_offset = 0;
7183 num_bytes -= extent_len;
7184 key.offset += extent_len;
7185
7186 if (num_bytes == 0)
7187 break;
7188 }
7189 BUG_ON(i >= nr_extents);
Yan Zhengd899e052008-10-30 14:25:28 -04007190#endif
Zheng Yan1a40e232008-09-26 10:09:34 -04007191 }
7192
7193 if (extent_locked) {
Zheng Yan1a40e232008-09-26 10:09:34 -04007194 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7195 lock_end, GFP_NOFS);
7196 extent_locked = 0;
7197 }
7198skip:
7199 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS &&
Yan Zheng86288a12009-01-21 10:49:16 -05007200 key.offset >= search_end)
Zheng Yan1a40e232008-09-26 10:09:34 -04007201 break;
7202
7203 cond_resched();
7204 }
7205 ret = 0;
7206out:
7207 btrfs_release_path(root, path);
7208 if (inode) {
7209 mutex_unlock(&inode->i_mutex);
7210 if (extent_locked) {
Zheng Yan1a40e232008-09-26 10:09:34 -04007211 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7212 lock_end, GFP_NOFS);
7213 }
7214 iput(inode);
7215 }
7216 return ret;
7217}
7218
Zheng Yan1a40e232008-09-26 10:09:34 -04007219int btrfs_reloc_tree_cache_ref(struct btrfs_trans_handle *trans,
7220 struct btrfs_root *root,
7221 struct extent_buffer *buf, u64 orig_start)
7222{
7223 int level;
7224 int ret;
7225
7226 BUG_ON(btrfs_header_generation(buf) != trans->transid);
7227 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
7228
7229 level = btrfs_header_level(buf);
7230 if (level == 0) {
7231 struct btrfs_leaf_ref *ref;
7232 struct btrfs_leaf_ref *orig_ref;
7233
7234 orig_ref = btrfs_lookup_leaf_ref(root, orig_start);
7235 if (!orig_ref)
7236 return -ENOENT;
7237
7238 ref = btrfs_alloc_leaf_ref(root, orig_ref->nritems);
7239 if (!ref) {
7240 btrfs_free_leaf_ref(root, orig_ref);
7241 return -ENOMEM;
7242 }
7243
7244 ref->nritems = orig_ref->nritems;
7245 memcpy(ref->extents, orig_ref->extents,
7246 sizeof(ref->extents[0]) * ref->nritems);
7247
7248 btrfs_free_leaf_ref(root, orig_ref);
7249
7250 ref->root_gen = trans->transid;
7251 ref->bytenr = buf->start;
7252 ref->owner = btrfs_header_owner(buf);
7253 ref->generation = btrfs_header_generation(buf);
Chris Masonbd56b302009-02-04 09:27:02 -05007254
Zheng Yan1a40e232008-09-26 10:09:34 -04007255 ret = btrfs_add_leaf_ref(root, ref, 0);
7256 WARN_ON(ret);
7257 btrfs_free_leaf_ref(root, ref);
7258 }
7259 return 0;
7260}
7261
Chris Masond3977122009-01-05 21:25:51 -05007262static noinline int invalidate_extent_cache(struct btrfs_root *root,
Zheng Yan1a40e232008-09-26 10:09:34 -04007263 struct extent_buffer *leaf,
7264 struct btrfs_block_group_cache *group,
7265 struct btrfs_root *target_root)
7266{
7267 struct btrfs_key key;
7268 struct inode *inode = NULL;
7269 struct btrfs_file_extent_item *fi;
Josef Bacik2ac55d42010-02-03 19:33:23 +00007270 struct extent_state *cached_state = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -04007271 u64 num_bytes;
7272 u64 skip_objectid = 0;
7273 u32 nritems;
7274 u32 i;
7275
7276 nritems = btrfs_header_nritems(leaf);
7277 for (i = 0; i < nritems; i++) {
7278 btrfs_item_key_to_cpu(leaf, &key, i);
7279 if (key.objectid == skip_objectid ||
7280 key.type != BTRFS_EXTENT_DATA_KEY)
7281 continue;
7282 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
7283 if (btrfs_file_extent_type(leaf, fi) ==
7284 BTRFS_FILE_EXTENT_INLINE)
7285 continue;
7286 if (btrfs_file_extent_disk_bytenr(leaf, fi) == 0)
7287 continue;
7288 if (!inode || inode->i_ino != key.objectid) {
7289 iput(inode);
7290 inode = btrfs_ilookup(target_root->fs_info->sb,
7291 key.objectid, target_root, 1);
7292 }
7293 if (!inode) {
7294 skip_objectid = key.objectid;
7295 continue;
7296 }
7297 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
7298
Josef Bacik2ac55d42010-02-03 19:33:23 +00007299 lock_extent_bits(&BTRFS_I(inode)->io_tree, key.offset,
7300 key.offset + num_bytes - 1, 0, &cached_state,
7301 GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04007302 btrfs_drop_extent_cache(inode, key.offset,
7303 key.offset + num_bytes - 1, 1);
Josef Bacik2ac55d42010-02-03 19:33:23 +00007304 unlock_extent_cached(&BTRFS_I(inode)->io_tree, key.offset,
7305 key.offset + num_bytes - 1, &cached_state,
7306 GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04007307 cond_resched();
7308 }
7309 iput(inode);
7310 return 0;
7311}
7312
Chris Masond3977122009-01-05 21:25:51 -05007313static noinline int replace_extents_in_leaf(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007314 struct btrfs_root *root,
7315 struct extent_buffer *leaf,
7316 struct btrfs_block_group_cache *group,
7317 struct inode *reloc_inode)
7318{
7319 struct btrfs_key key;
7320 struct btrfs_key extent_key;
7321 struct btrfs_file_extent_item *fi;
7322 struct btrfs_leaf_ref *ref;
7323 struct disk_extent *new_extent;
7324 u64 bytenr;
7325 u64 num_bytes;
7326 u32 nritems;
7327 u32 i;
7328 int ext_index;
7329 int nr_extent;
7330 int ret;
7331
7332 new_extent = kmalloc(sizeof(*new_extent), GFP_NOFS);
7333 BUG_ON(!new_extent);
7334
7335 ref = btrfs_lookup_leaf_ref(root, leaf->start);
7336 BUG_ON(!ref);
7337
7338 ext_index = -1;
7339 nritems = btrfs_header_nritems(leaf);
7340 for (i = 0; i < nritems; i++) {
7341 btrfs_item_key_to_cpu(leaf, &key, i);
7342 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
7343 continue;
7344 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
7345 if (btrfs_file_extent_type(leaf, fi) ==
7346 BTRFS_FILE_EXTENT_INLINE)
7347 continue;
7348 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
7349 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
7350 if (bytenr == 0)
7351 continue;
7352
7353 ext_index++;
7354 if (bytenr >= group->key.objectid + group->key.offset ||
7355 bytenr + num_bytes <= group->key.objectid)
7356 continue;
7357
7358 extent_key.objectid = bytenr;
7359 extent_key.offset = num_bytes;
7360 extent_key.type = BTRFS_EXTENT_ITEM_KEY;
7361 nr_extent = 1;
7362 ret = get_new_locations(reloc_inode, &extent_key,
7363 group->key.objectid, 1,
7364 &new_extent, &nr_extent);
7365 if (ret > 0)
7366 continue;
7367 BUG_ON(ret < 0);
7368
7369 BUG_ON(ref->extents[ext_index].bytenr != bytenr);
7370 BUG_ON(ref->extents[ext_index].num_bytes != num_bytes);
7371 ref->extents[ext_index].bytenr = new_extent->disk_bytenr;
7372 ref->extents[ext_index].num_bytes = new_extent->disk_num_bytes;
7373
Zheng Yan1a40e232008-09-26 10:09:34 -04007374 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7375 new_extent->disk_bytenr);
7376 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7377 new_extent->disk_num_bytes);
Zheng Yan1a40e232008-09-26 10:09:34 -04007378 btrfs_mark_buffer_dirty(leaf);
7379
7380 ret = btrfs_inc_extent_ref(trans, root,
7381 new_extent->disk_bytenr,
7382 new_extent->disk_num_bytes,
7383 leaf->start,
7384 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007385 trans->transid, key.objectid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007386 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04007387
Zheng Yan1a40e232008-09-26 10:09:34 -04007388 ret = btrfs_free_extent(trans, root,
7389 bytenr, num_bytes, leaf->start,
7390 btrfs_header_owner(leaf),
7391 btrfs_header_generation(leaf),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007392 key.objectid, 0);
Zheng Yan1a40e232008-09-26 10:09:34 -04007393 BUG_ON(ret);
7394 cond_resched();
7395 }
7396 kfree(new_extent);
7397 BUG_ON(ext_index + 1 != ref->nritems);
7398 btrfs_free_leaf_ref(root, ref);
7399 return 0;
7400}
7401
Yan Zhengf82d02d2008-10-29 14:49:05 -04007402int btrfs_free_reloc_root(struct btrfs_trans_handle *trans,
7403 struct btrfs_root *root)
Zheng Yan1a40e232008-09-26 10:09:34 -04007404{
7405 struct btrfs_root *reloc_root;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007406 int ret;
Zheng Yan1a40e232008-09-26 10:09:34 -04007407
7408 if (root->reloc_root) {
7409 reloc_root = root->reloc_root;
7410 root->reloc_root = NULL;
7411 list_add(&reloc_root->dead_list,
7412 &root->fs_info->dead_reloc_roots);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007413
7414 btrfs_set_root_bytenr(&reloc_root->root_item,
7415 reloc_root->node->start);
7416 btrfs_set_root_level(&root->root_item,
7417 btrfs_header_level(reloc_root->node));
7418 memset(&reloc_root->root_item.drop_progress, 0,
7419 sizeof(struct btrfs_disk_key));
7420 reloc_root->root_item.drop_level = 0;
7421
7422 ret = btrfs_update_root(trans, root->fs_info->tree_root,
7423 &reloc_root->root_key,
7424 &reloc_root->root_item);
7425 BUG_ON(ret);
Zheng Yan1a40e232008-09-26 10:09:34 -04007426 }
7427 return 0;
7428}
7429
7430int btrfs_drop_dead_reloc_roots(struct btrfs_root *root)
7431{
7432 struct btrfs_trans_handle *trans;
7433 struct btrfs_root *reloc_root;
7434 struct btrfs_root *prev_root = NULL;
7435 struct list_head dead_roots;
7436 int ret;
7437 unsigned long nr;
7438
7439 INIT_LIST_HEAD(&dead_roots);
7440 list_splice_init(&root->fs_info->dead_reloc_roots, &dead_roots);
7441
7442 while (!list_empty(&dead_roots)) {
7443 reloc_root = list_entry(dead_roots.prev,
7444 struct btrfs_root, dead_list);
7445 list_del_init(&reloc_root->dead_list);
7446
7447 BUG_ON(reloc_root->commit_root != NULL);
7448 while (1) {
7449 trans = btrfs_join_transaction(root, 1);
7450 BUG_ON(!trans);
7451
7452 mutex_lock(&root->fs_info->drop_mutex);
7453 ret = btrfs_drop_snapshot(trans, reloc_root);
7454 if (ret != -EAGAIN)
7455 break;
7456 mutex_unlock(&root->fs_info->drop_mutex);
7457
7458 nr = trans->blocks_used;
7459 ret = btrfs_end_transaction(trans, root);
7460 BUG_ON(ret);
7461 btrfs_btree_balance_dirty(root, nr);
7462 }
7463
7464 free_extent_buffer(reloc_root->node);
7465
7466 ret = btrfs_del_root(trans, root->fs_info->tree_root,
7467 &reloc_root->root_key);
7468 BUG_ON(ret);
7469 mutex_unlock(&root->fs_info->drop_mutex);
7470
7471 nr = trans->blocks_used;
7472 ret = btrfs_end_transaction(trans, root);
7473 BUG_ON(ret);
7474 btrfs_btree_balance_dirty(root, nr);
7475
7476 kfree(prev_root);
7477 prev_root = reloc_root;
7478 }
7479 if (prev_root) {
7480 btrfs_remove_leaf_refs(prev_root, (u64)-1, 0);
7481 kfree(prev_root);
7482 }
7483 return 0;
7484}
7485
7486int btrfs_add_dead_reloc_root(struct btrfs_root *root)
7487{
7488 list_add(&root->dead_list, &root->fs_info->dead_reloc_roots);
7489 return 0;
7490}
7491
7492int btrfs_cleanup_reloc_trees(struct btrfs_root *root)
7493{
7494 struct btrfs_root *reloc_root;
7495 struct btrfs_trans_handle *trans;
7496 struct btrfs_key location;
7497 int found;
7498 int ret;
7499
7500 mutex_lock(&root->fs_info->tree_reloc_mutex);
7501 ret = btrfs_find_dead_roots(root, BTRFS_TREE_RELOC_OBJECTID, NULL);
7502 BUG_ON(ret);
7503 found = !list_empty(&root->fs_info->dead_reloc_roots);
7504 mutex_unlock(&root->fs_info->tree_reloc_mutex);
7505
7506 if (found) {
7507 trans = btrfs_start_transaction(root, 1);
7508 BUG_ON(!trans);
7509 ret = btrfs_commit_transaction(trans, root);
7510 BUG_ON(ret);
7511 }
7512
7513 location.objectid = BTRFS_DATA_RELOC_TREE_OBJECTID;
7514 location.offset = (u64)-1;
7515 location.type = BTRFS_ROOT_ITEM_KEY;
7516
7517 reloc_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
7518 BUG_ON(!reloc_root);
7519 btrfs_orphan_cleanup(reloc_root);
7520 return 0;
7521}
7522
Chris Masond3977122009-01-05 21:25:51 -05007523static noinline int init_reloc_tree(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007524 struct btrfs_root *root)
7525{
7526 struct btrfs_root *reloc_root;
7527 struct extent_buffer *eb;
7528 struct btrfs_root_item *root_item;
7529 struct btrfs_key root_key;
7530 int ret;
7531
7532 BUG_ON(!root->ref_cows);
7533 if (root->reloc_root)
7534 return 0;
7535
7536 root_item = kmalloc(sizeof(*root_item), GFP_NOFS);
7537 BUG_ON(!root_item);
7538
7539 ret = btrfs_copy_root(trans, root, root->commit_root,
7540 &eb, BTRFS_TREE_RELOC_OBJECTID);
7541 BUG_ON(ret);
7542
7543 root_key.objectid = BTRFS_TREE_RELOC_OBJECTID;
7544 root_key.offset = root->root_key.objectid;
7545 root_key.type = BTRFS_ROOT_ITEM_KEY;
7546
7547 memcpy(root_item, &root->root_item, sizeof(root_item));
7548 btrfs_set_root_refs(root_item, 0);
7549 btrfs_set_root_bytenr(root_item, eb->start);
7550 btrfs_set_root_level(root_item, btrfs_header_level(eb));
Yan Zheng84234f32008-10-29 14:49:05 -04007551 btrfs_set_root_generation(root_item, trans->transid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007552
7553 btrfs_tree_unlock(eb);
7554 free_extent_buffer(eb);
7555
7556 ret = btrfs_insert_root(trans, root->fs_info->tree_root,
7557 &root_key, root_item);
7558 BUG_ON(ret);
7559 kfree(root_item);
7560
7561 reloc_root = btrfs_read_fs_root_no_radix(root->fs_info->tree_root,
7562 &root_key);
7563 BUG_ON(!reloc_root);
7564 reloc_root->last_trans = trans->transid;
7565 reloc_root->commit_root = NULL;
7566 reloc_root->ref_tree = &root->fs_info->reloc_ref_tree;
7567
7568 root->reloc_root = reloc_root;
7569 return 0;
7570}
7571
7572/*
7573 * Core function of space balance.
7574 *
7575 * The idea is using reloc trees to relocate tree blocks in reference
Yan Zhengf82d02d2008-10-29 14:49:05 -04007576 * counted roots. There is one reloc tree for each subvol, and all
7577 * reloc trees share same root key objectid. Reloc trees are snapshots
7578 * of the latest committed roots of subvols (root->commit_root).
7579 *
7580 * To relocate a tree block referenced by a subvol, there are two steps.
7581 * COW the block through subvol's reloc tree, then update block pointer
7582 * in the subvol to point to the new block. Since all reloc trees share
7583 * same root key objectid, doing special handing for tree blocks owned
7584 * by them is easy. Once a tree block has been COWed in one reloc tree,
7585 * we can use the resulting new block directly when the same block is
7586 * required to COW again through other reloc trees. By this way, relocated
7587 * tree blocks are shared between reloc trees, so they are also shared
7588 * between subvols.
Zheng Yan1a40e232008-09-26 10:09:34 -04007589 */
Chris Masond3977122009-01-05 21:25:51 -05007590static noinline int relocate_one_path(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007591 struct btrfs_root *root,
7592 struct btrfs_path *path,
7593 struct btrfs_key *first_key,
7594 struct btrfs_ref_path *ref_path,
7595 struct btrfs_block_group_cache *group,
7596 struct inode *reloc_inode)
7597{
7598 struct btrfs_root *reloc_root;
7599 struct extent_buffer *eb = NULL;
7600 struct btrfs_key *keys;
7601 u64 *nodes;
7602 int level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007603 int shared_level;
Zheng Yan1a40e232008-09-26 10:09:34 -04007604 int lowest_level = 0;
Zheng Yan1a40e232008-09-26 10:09:34 -04007605 int ret;
7606
7607 if (ref_path->owner_objectid < BTRFS_FIRST_FREE_OBJECTID)
7608 lowest_level = ref_path->owner_objectid;
7609
Yan Zhengf82d02d2008-10-29 14:49:05 -04007610 if (!root->ref_cows) {
Zheng Yan1a40e232008-09-26 10:09:34 -04007611 path->lowest_level = lowest_level;
7612 ret = btrfs_search_slot(trans, root, first_key, path, 0, 1);
7613 BUG_ON(ret < 0);
7614 path->lowest_level = 0;
7615 btrfs_release_path(root, path);
7616 return 0;
7617 }
7618
Zheng Yan1a40e232008-09-26 10:09:34 -04007619 mutex_lock(&root->fs_info->tree_reloc_mutex);
7620 ret = init_reloc_tree(trans, root);
7621 BUG_ON(ret);
7622 reloc_root = root->reloc_root;
7623
Yan Zhengf82d02d2008-10-29 14:49:05 -04007624 shared_level = ref_path->shared_level;
7625 ref_path->shared_level = BTRFS_MAX_LEVEL - 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04007626
Yan Zhengf82d02d2008-10-29 14:49:05 -04007627 keys = ref_path->node_keys;
7628 nodes = ref_path->new_nodes;
7629 memset(&keys[shared_level + 1], 0,
7630 sizeof(*keys) * (BTRFS_MAX_LEVEL - shared_level - 1));
7631 memset(&nodes[shared_level + 1], 0,
7632 sizeof(*nodes) * (BTRFS_MAX_LEVEL - shared_level - 1));
Zheng Yan1a40e232008-09-26 10:09:34 -04007633
Yan Zhengf82d02d2008-10-29 14:49:05 -04007634 if (nodes[lowest_level] == 0) {
7635 path->lowest_level = lowest_level;
7636 ret = btrfs_search_slot(trans, reloc_root, first_key, path,
7637 0, 1);
7638 BUG_ON(ret);
7639 for (level = lowest_level; level < BTRFS_MAX_LEVEL; level++) {
7640 eb = path->nodes[level];
7641 if (!eb || eb == reloc_root->node)
7642 break;
7643 nodes[level] = eb->start;
7644 if (level == 0)
7645 btrfs_item_key_to_cpu(eb, &keys[level], 0);
7646 else
7647 btrfs_node_key_to_cpu(eb, &keys[level], 0);
7648 }
Yan Zheng2b820322008-11-17 21:11:30 -05007649 if (nodes[0] &&
7650 ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04007651 eb = path->nodes[0];
7652 ret = replace_extents_in_leaf(trans, reloc_root, eb,
7653 group, reloc_inode);
7654 BUG_ON(ret);
7655 }
7656 btrfs_release_path(reloc_root, path);
7657 } else {
Zheng Yan1a40e232008-09-26 10:09:34 -04007658 ret = btrfs_merge_path(trans, reloc_root, keys, nodes,
Yan Zhengf82d02d2008-10-29 14:49:05 -04007659 lowest_level);
Zheng Yan1a40e232008-09-26 10:09:34 -04007660 BUG_ON(ret);
7661 }
7662
Zheng Yan1a40e232008-09-26 10:09:34 -04007663 /*
7664 * replace tree blocks in the fs tree with tree blocks in
7665 * the reloc tree.
7666 */
7667 ret = btrfs_merge_path(trans, root, keys, nodes, lowest_level);
7668 BUG_ON(ret < 0);
7669
7670 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04007671 ret = btrfs_search_slot(trans, reloc_root, first_key, path,
7672 0, 0);
7673 BUG_ON(ret);
7674 extent_buffer_get(path->nodes[0]);
7675 eb = path->nodes[0];
7676 btrfs_release_path(reloc_root, path);
Zheng Yan1a40e232008-09-26 10:09:34 -04007677 ret = invalidate_extent_cache(reloc_root, eb, group, root);
7678 BUG_ON(ret);
7679 free_extent_buffer(eb);
7680 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007681
Yan Zhengf82d02d2008-10-29 14:49:05 -04007682 mutex_unlock(&root->fs_info->tree_reloc_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04007683 path->lowest_level = 0;
Zheng Yan1a40e232008-09-26 10:09:34 -04007684 return 0;
7685}
7686
Chris Masond3977122009-01-05 21:25:51 -05007687static noinline int relocate_tree_block(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007688 struct btrfs_root *root,
7689 struct btrfs_path *path,
7690 struct btrfs_key *first_key,
7691 struct btrfs_ref_path *ref_path)
7692{
7693 int ret;
Zheng Yan1a40e232008-09-26 10:09:34 -04007694
7695 ret = relocate_one_path(trans, root, path, first_key,
7696 ref_path, NULL, NULL);
7697 BUG_ON(ret);
7698
Zheng Yan1a40e232008-09-26 10:09:34 -04007699 return 0;
7700}
7701
Chris Masond3977122009-01-05 21:25:51 -05007702static noinline int del_extent_zero(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007703 struct btrfs_root *extent_root,
7704 struct btrfs_path *path,
7705 struct btrfs_key *extent_key)
7706{
7707 int ret;
7708
Zheng Yan1a40e232008-09-26 10:09:34 -04007709 ret = btrfs_search_slot(trans, extent_root, extent_key, path, -1, 1);
7710 if (ret)
7711 goto out;
7712 ret = btrfs_del_item(trans, extent_root, path);
7713out:
Chris Masonedbd8d42007-12-21 16:27:24 -05007714 btrfs_release_path(extent_root, path);
Zheng Yan1a40e232008-09-26 10:09:34 -04007715 return ret;
7716}
7717
Chris Masond3977122009-01-05 21:25:51 -05007718static noinline struct btrfs_root *read_ref_root(struct btrfs_fs_info *fs_info,
Zheng Yan1a40e232008-09-26 10:09:34 -04007719 struct btrfs_ref_path *ref_path)
7720{
7721 struct btrfs_key root_key;
7722
7723 root_key.objectid = ref_path->root_objectid;
7724 root_key.type = BTRFS_ROOT_ITEM_KEY;
7725 if (is_cowonly_root(ref_path->root_objectid))
7726 root_key.offset = 0;
7727 else
7728 root_key.offset = (u64)-1;
7729
7730 return btrfs_read_fs_root_no_name(fs_info, &root_key);
7731}
7732
Chris Masond3977122009-01-05 21:25:51 -05007733static noinline int relocate_one_extent(struct btrfs_root *extent_root,
Zheng Yan1a40e232008-09-26 10:09:34 -04007734 struct btrfs_path *path,
7735 struct btrfs_key *extent_key,
7736 struct btrfs_block_group_cache *group,
7737 struct inode *reloc_inode, int pass)
7738{
7739 struct btrfs_trans_handle *trans;
7740 struct btrfs_root *found_root;
7741 struct btrfs_ref_path *ref_path = NULL;
7742 struct disk_extent *new_extents = NULL;
7743 int nr_extents = 0;
7744 int loops;
7745 int ret;
7746 int level;
7747 struct btrfs_key first_key;
7748 u64 prev_block = 0;
7749
Zheng Yan1a40e232008-09-26 10:09:34 -04007750
7751 trans = btrfs_start_transaction(extent_root, 1);
7752 BUG_ON(!trans);
7753
7754 if (extent_key->objectid == 0) {
7755 ret = del_extent_zero(trans, extent_root, path, extent_key);
7756 goto out;
7757 }
7758
7759 ref_path = kmalloc(sizeof(*ref_path), GFP_NOFS);
7760 if (!ref_path) {
Chris Masond3977122009-01-05 21:25:51 -05007761 ret = -ENOMEM;
7762 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04007763 }
7764
7765 for (loops = 0; ; loops++) {
7766 if (loops == 0) {
7767 ret = btrfs_first_ref_path(trans, extent_root, ref_path,
7768 extent_key->objectid);
7769 } else {
7770 ret = btrfs_next_ref_path(trans, extent_root, ref_path);
7771 }
7772 if (ret < 0)
7773 goto out;
7774 if (ret > 0)
7775 break;
7776
7777 if (ref_path->root_objectid == BTRFS_TREE_LOG_OBJECTID ||
7778 ref_path->root_objectid == BTRFS_TREE_RELOC_OBJECTID)
7779 continue;
7780
7781 found_root = read_ref_root(extent_root->fs_info, ref_path);
7782 BUG_ON(!found_root);
7783 /*
7784 * for reference counted tree, only process reference paths
7785 * rooted at the latest committed root.
7786 */
7787 if (found_root->ref_cows &&
7788 ref_path->root_generation != found_root->root_key.offset)
7789 continue;
7790
7791 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
7792 if (pass == 0) {
7793 /*
7794 * copy data extents to new locations
7795 */
7796 u64 group_start = group->key.objectid;
7797 ret = relocate_data_extent(reloc_inode,
7798 extent_key,
7799 group_start);
7800 if (ret < 0)
7801 goto out;
7802 break;
7803 }
7804 level = 0;
7805 } else {
7806 level = ref_path->owner_objectid;
7807 }
7808
7809 if (prev_block != ref_path->nodes[level]) {
7810 struct extent_buffer *eb;
7811 u64 block_start = ref_path->nodes[level];
7812 u64 block_size = btrfs_level_size(found_root, level);
7813
7814 eb = read_tree_block(found_root, block_start,
7815 block_size, 0);
7816 btrfs_tree_lock(eb);
7817 BUG_ON(level != btrfs_header_level(eb));
7818
7819 if (level == 0)
7820 btrfs_item_key_to_cpu(eb, &first_key, 0);
7821 else
7822 btrfs_node_key_to_cpu(eb, &first_key, 0);
7823
7824 btrfs_tree_unlock(eb);
7825 free_extent_buffer(eb);
7826 prev_block = block_start;
7827 }
7828
Yan Zheng24562422009-02-12 14:14:53 -05007829 mutex_lock(&extent_root->fs_info->trans_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05007830 btrfs_record_root_in_trans(found_root);
Yan Zheng24562422009-02-12 14:14:53 -05007831 mutex_unlock(&extent_root->fs_info->trans_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05007832 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
7833 /*
7834 * try to update data extent references while
7835 * keeping metadata shared between snapshots.
7836 */
7837 if (pass == 1) {
7838 ret = relocate_one_path(trans, found_root,
7839 path, &first_key, ref_path,
7840 group, reloc_inode);
7841 if (ret < 0)
7842 goto out;
7843 continue;
7844 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007845 /*
7846 * use fallback method to process the remaining
7847 * references.
7848 */
7849 if (!new_extents) {
7850 u64 group_start = group->key.objectid;
Yan Zhengd899e052008-10-30 14:25:28 -04007851 new_extents = kmalloc(sizeof(*new_extents),
7852 GFP_NOFS);
7853 nr_extents = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04007854 ret = get_new_locations(reloc_inode,
7855 extent_key,
Yan Zhengd899e052008-10-30 14:25:28 -04007856 group_start, 1,
Zheng Yan1a40e232008-09-26 10:09:34 -04007857 &new_extents,
7858 &nr_extents);
Yan Zhengd899e052008-10-30 14:25:28 -04007859 if (ret)
Zheng Yan1a40e232008-09-26 10:09:34 -04007860 goto out;
7861 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007862 ret = replace_one_extent(trans, found_root,
7863 path, extent_key,
7864 &first_key, ref_path,
7865 new_extents, nr_extents);
Yan Zhenge4404d62008-12-12 10:03:26 -05007866 } else {
Zheng Yan1a40e232008-09-26 10:09:34 -04007867 ret = relocate_tree_block(trans, found_root, path,
7868 &first_key, ref_path);
Zheng Yan1a40e232008-09-26 10:09:34 -04007869 }
7870 if (ret < 0)
7871 goto out;
7872 }
7873 ret = 0;
7874out:
7875 btrfs_end_transaction(trans, extent_root);
7876 kfree(new_extents);
7877 kfree(ref_path);
Chris Masonedbd8d42007-12-21 16:27:24 -05007878 return ret;
7879}
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007880#endif
Chris Masonedbd8d42007-12-21 16:27:24 -05007881
Chris Masonec44a352008-04-28 15:29:52 -04007882static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
7883{
7884 u64 num_devices;
7885 u64 stripped = BTRFS_BLOCK_GROUP_RAID0 |
7886 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
7887
Yan Zheng2b820322008-11-17 21:11:30 -05007888 num_devices = root->fs_info->fs_devices->rw_devices;
Chris Masonec44a352008-04-28 15:29:52 -04007889 if (num_devices == 1) {
7890 stripped |= BTRFS_BLOCK_GROUP_DUP;
7891 stripped = flags & ~stripped;
7892
7893 /* turn raid0 into single device chunks */
7894 if (flags & BTRFS_BLOCK_GROUP_RAID0)
7895 return stripped;
7896
7897 /* turn mirroring into duplication */
7898 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
7899 BTRFS_BLOCK_GROUP_RAID10))
7900 return stripped | BTRFS_BLOCK_GROUP_DUP;
7901 return flags;
7902 } else {
7903 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04007904 if (flags & stripped)
7905 return flags;
7906
7907 stripped |= BTRFS_BLOCK_GROUP_DUP;
7908 stripped = flags & ~stripped;
7909
7910 /* switch duplicated blocks with raid1 */
7911 if (flags & BTRFS_BLOCK_GROUP_DUP)
7912 return stripped | BTRFS_BLOCK_GROUP_RAID1;
7913
7914 /* turn single device chunks into raid0 */
7915 return stripped | BTRFS_BLOCK_GROUP_RAID0;
7916 }
7917 return flags;
7918}
7919
Yan, Zhengf0486c62010-05-16 10:46:25 -04007920static int set_block_group_ro(struct btrfs_block_group_cache *cache)
Chris Mason0ef3e662008-05-24 14:04:53 -04007921{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007922 struct btrfs_space_info *sinfo = cache->space_info;
7923 u64 num_bytes;
7924 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04007925
Yan, Zhengf0486c62010-05-16 10:46:25 -04007926 if (cache->ro)
7927 return 0;
Chris Masonc286ac42008-07-22 23:06:41 -04007928
Yan, Zhengf0486c62010-05-16 10:46:25 -04007929 spin_lock(&sinfo->lock);
7930 spin_lock(&cache->lock);
7931 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
7932 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04007933
Yan, Zhengf0486c62010-05-16 10:46:25 -04007934 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
7935 sinfo->bytes_may_use + sinfo->bytes_readonly +
7936 cache->reserved_pinned + num_bytes < sinfo->total_bytes) {
7937 sinfo->bytes_readonly += num_bytes;
7938 sinfo->bytes_reserved += cache->reserved_pinned;
7939 cache->reserved_pinned = 0;
7940 cache->ro = 1;
7941 ret = 0;
7942 }
7943 spin_unlock(&cache->lock);
7944 spin_unlock(&sinfo->lock);
7945 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04007946}
7947
Yan, Zhengf0486c62010-05-16 10:46:25 -04007948int btrfs_set_block_group_ro(struct btrfs_root *root,
7949 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007950
7951{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007952 struct btrfs_trans_handle *trans;
7953 u64 alloc_flags;
7954 int ret;
7955
7956 BUG_ON(cache->ro);
7957
7958 trans = btrfs_join_transaction(root, 1);
7959 BUG_ON(IS_ERR(trans));
7960
7961 alloc_flags = update_block_group_flags(root, cache->flags);
7962 if (alloc_flags != cache->flags)
7963 do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags, 1);
7964
7965 ret = set_block_group_ro(cache);
7966 if (!ret)
7967 goto out;
7968 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
7969 ret = do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags, 1);
7970 if (ret < 0)
7971 goto out;
7972 ret = set_block_group_ro(cache);
7973out:
7974 btrfs_end_transaction(trans, root);
7975 return ret;
7976}
7977
7978int btrfs_set_block_group_rw(struct btrfs_root *root,
7979 struct btrfs_block_group_cache *cache)
7980{
7981 struct btrfs_space_info *sinfo = cache->space_info;
7982 u64 num_bytes;
7983
7984 BUG_ON(!cache->ro);
7985
7986 spin_lock(&sinfo->lock);
7987 spin_lock(&cache->lock);
7988 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
7989 cache->bytes_super - btrfs_block_group_used(&cache->item);
7990 sinfo->bytes_readonly -= num_bytes;
7991 cache->ro = 0;
7992 spin_unlock(&cache->lock);
7993 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007994 return 0;
7995}
7996
Josef Bacikba1bf482009-09-11 16:11:19 -04007997/*
7998 * checks to see if its even possible to relocate this block group.
7999 *
8000 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
8001 * ok to go ahead and try.
8002 */
8003int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04008004{
Zheng Yan1a40e232008-09-26 10:09:34 -04008005 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04008006 struct btrfs_space_info *space_info;
8007 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
8008 struct btrfs_device *device;
8009 int full = 0;
8010 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05008011
Josef Bacikba1bf482009-09-11 16:11:19 -04008012 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04008013
Josef Bacikba1bf482009-09-11 16:11:19 -04008014 /* odd, couldn't find the block group, leave it alone */
8015 if (!block_group)
8016 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05008017
Josef Bacikba1bf482009-09-11 16:11:19 -04008018 /* no bytes used, we're good */
8019 if (!btrfs_block_group_used(&block_group->item))
8020 goto out;
Chris Mason323da792008-05-09 11:46:48 -04008021
Josef Bacikba1bf482009-09-11 16:11:19 -04008022 space_info = block_group->space_info;
8023 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04008024
Josef Bacikba1bf482009-09-11 16:11:19 -04008025 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04008026
Josef Bacikba1bf482009-09-11 16:11:19 -04008027 /*
8028 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04008029 * relocate it unless we're able to allocate a new chunk below.
8030 *
8031 * Otherwise, we need to make sure we have room in the space to handle
8032 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04008033 */
Chris Mason7ce618d2009-09-22 14:48:44 -04008034 if ((space_info->total_bytes != block_group->key.offset) &&
8035 (space_info->bytes_used + space_info->bytes_reserved +
Josef Bacikba1bf482009-09-11 16:11:19 -04008036 space_info->bytes_pinned + space_info->bytes_readonly +
8037 btrfs_block_group_used(&block_group->item) <
Chris Mason7ce618d2009-09-22 14:48:44 -04008038 space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04008039 spin_unlock(&space_info->lock);
8040 goto out;
8041 }
8042 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008043
Josef Bacikba1bf482009-09-11 16:11:19 -04008044 /*
8045 * ok we don't have enough space, but maybe we have free space on our
8046 * devices to allocate new chunks for relocation, so loop through our
8047 * alloc devices and guess if we have enough space. However, if we
8048 * were marked as full, then we know there aren't enough chunks, and we
8049 * can just return.
8050 */
8051 ret = -1;
8052 if (full)
8053 goto out;
Chris Mason4313b392008-01-03 09:08:48 -05008054
Josef Bacikba1bf482009-09-11 16:11:19 -04008055 mutex_lock(&root->fs_info->chunk_mutex);
8056 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
8057 u64 min_free = btrfs_block_group_used(&block_group->item);
8058 u64 dev_offset, max_avail;
Chris Masonea8c2812008-08-04 23:17:27 -04008059
Josef Bacikba1bf482009-09-11 16:11:19 -04008060 /*
8061 * check to make sure we can actually find a chunk with enough
8062 * space to fit our block group in.
8063 */
8064 if (device->total_bytes > device->bytes_used + min_free) {
8065 ret = find_free_dev_extent(NULL, device, min_free,
8066 &dev_offset, &max_avail);
8067 if (!ret)
Yan73e48b22008-01-03 14:14:39 -05008068 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04008069 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05008070 }
Chris Masonedbd8d42007-12-21 16:27:24 -05008071 }
Josef Bacikba1bf482009-09-11 16:11:19 -04008072 mutex_unlock(&root->fs_info->chunk_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05008073out:
Josef Bacikba1bf482009-09-11 16:11:19 -04008074 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05008075 return ret;
8076}
8077
Christoph Hellwigb2950862008-12-02 09:54:17 -05008078static int find_first_block_group(struct btrfs_root *root,
8079 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04008080{
Chris Mason925baed2008-06-25 16:01:30 -04008081 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008082 struct btrfs_key found_key;
8083 struct extent_buffer *leaf;
8084 int slot;
8085
8086 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
8087 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008088 goto out;
8089
Chris Masond3977122009-01-05 21:25:51 -05008090 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008091 slot = path->slots[0];
8092 leaf = path->nodes[0];
8093 if (slot >= btrfs_header_nritems(leaf)) {
8094 ret = btrfs_next_leaf(root, path);
8095 if (ret == 0)
8096 continue;
8097 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008098 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04008099 break;
8100 }
8101 btrfs_item_key_to_cpu(leaf, &found_key, slot);
8102
8103 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04008104 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
8105 ret = 0;
8106 goto out;
8107 }
Chris Mason0b86a832008-03-24 15:01:56 -04008108 path->slots[0]++;
8109 }
Chris Mason925baed2008-06-25 16:01:30 -04008110out:
Chris Mason0b86a832008-03-24 15:01:56 -04008111 return ret;
8112}
8113
Josef Bacik0af3d002010-06-21 14:48:16 -04008114void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
8115{
8116 struct btrfs_block_group_cache *block_group;
8117 u64 last = 0;
8118
8119 while (1) {
8120 struct inode *inode;
8121
8122 block_group = btrfs_lookup_first_block_group(info, last);
8123 while (block_group) {
8124 spin_lock(&block_group->lock);
8125 if (block_group->iref)
8126 break;
8127 spin_unlock(&block_group->lock);
8128 block_group = next_block_group(info->tree_root,
8129 block_group);
8130 }
8131 if (!block_group) {
8132 if (last == 0)
8133 break;
8134 last = 0;
8135 continue;
8136 }
8137
8138 inode = block_group->inode;
8139 block_group->iref = 0;
8140 block_group->inode = NULL;
8141 spin_unlock(&block_group->lock);
8142 iput(inode);
8143 last = block_group->key.objectid + block_group->key.offset;
8144 btrfs_put_block_group(block_group);
8145 }
8146}
8147
Zheng Yan1a40e232008-09-26 10:09:34 -04008148int btrfs_free_block_groups(struct btrfs_fs_info *info)
8149{
8150 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04008151 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04008152 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04008153 struct rb_node *n;
8154
Yan Zheng11833d62009-09-11 16:11:19 -04008155 down_write(&info->extent_commit_sem);
8156 while (!list_empty(&info->caching_block_groups)) {
8157 caching_ctl = list_entry(info->caching_block_groups.next,
8158 struct btrfs_caching_control, list);
8159 list_del(&caching_ctl->list);
8160 put_caching_control(caching_ctl);
8161 }
8162 up_write(&info->extent_commit_sem);
8163
Zheng Yan1a40e232008-09-26 10:09:34 -04008164 spin_lock(&info->block_group_cache_lock);
8165 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
8166 block_group = rb_entry(n, struct btrfs_block_group_cache,
8167 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04008168 rb_erase(&block_group->cache_node,
8169 &info->block_group_cache_tree);
Yan Zhengd899e052008-10-30 14:25:28 -04008170 spin_unlock(&info->block_group_cache_lock);
8171
Josef Bacik80eb2342008-10-29 14:49:05 -04008172 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008173 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04008174 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05008175
Josef Bacik817d52f2009-07-13 21:29:25 -04008176 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008177 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008178
8179 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00008180 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04008181
8182 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008183 }
8184 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04008185
8186 /* now that all the block groups are freed, go through and
8187 * free all the space_info structs. This is only called during
8188 * the final stages of unmount, and so we know nobody is
8189 * using them. We call synchronize_rcu() once before we start,
8190 * just to be on the safe side.
8191 */
8192 synchronize_rcu();
8193
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04008194 release_global_block_rsv(info);
8195
Chris Mason4184ea72009-03-10 12:39:20 -04008196 while(!list_empty(&info->space_info)) {
8197 space_info = list_entry(info->space_info.next,
8198 struct btrfs_space_info,
8199 list);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008200 if (space_info->bytes_pinned > 0 ||
8201 space_info->bytes_reserved > 0) {
8202 WARN_ON(1);
8203 dump_space_info(space_info, 0, 0);
8204 }
Chris Mason4184ea72009-03-10 12:39:20 -04008205 list_del(&space_info->list);
8206 kfree(space_info);
8207 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008208 return 0;
8209}
8210
Yan, Zhengb742bb82010-05-16 10:46:24 -04008211static void __link_block_group(struct btrfs_space_info *space_info,
8212 struct btrfs_block_group_cache *cache)
8213{
8214 int index = get_block_group_index(cache);
8215
8216 down_write(&space_info->groups_sem);
8217 list_add_tail(&cache->list, &space_info->block_groups[index]);
8218 up_write(&space_info->groups_sem);
8219}
8220
Chris Mason9078a3e2007-04-26 16:46:15 -04008221int btrfs_read_block_groups(struct btrfs_root *root)
8222{
8223 struct btrfs_path *path;
8224 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008225 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04008226 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04008227 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04008228 struct btrfs_key key;
8229 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04008230 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04008231 int need_clear = 0;
8232 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04008233
Chris Masonbe744172007-05-06 10:15:01 -04008234 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04008235 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008236 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04008237 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04008238 path = btrfs_alloc_path();
8239 if (!path)
8240 return -ENOMEM;
8241
Josef Bacik0af3d002010-06-21 14:48:16 -04008242 cache_gen = btrfs_super_cache_generation(&root->fs_info->super_copy);
8243 if (cache_gen != 0 &&
8244 btrfs_super_generation(&root->fs_info->super_copy) != cache_gen)
8245 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04008246 if (btrfs_test_opt(root, CLEAR_CACHE))
8247 need_clear = 1;
Josef Bacik8216ef82010-10-28 16:55:47 -04008248 if (!btrfs_test_opt(root, SPACE_CACHE) && cache_gen)
8249 printk(KERN_INFO "btrfs: disk space caching is enabled\n");
Josef Bacik0af3d002010-06-21 14:48:16 -04008250
Chris Masond3977122009-01-05 21:25:51 -05008251 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008252 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008253 if (ret > 0)
8254 break;
Chris Mason0b86a832008-03-24 15:01:56 -04008255 if (ret != 0)
8256 goto error;
8257
Chris Mason5f39d392007-10-15 16:14:19 -04008258 leaf = path->nodes[0];
8259 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04008260 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04008261 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04008262 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008263 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04008264 }
Chris Mason3e1ad542007-05-07 20:03:49 -04008265
Yan Zhengd2fb3432008-12-11 16:30:39 -05008266 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04008267 spin_lock_init(&cache->lock);
Josef Bacik6226cb02009-04-03 10:14:18 -04008268 spin_lock_init(&cache->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008269 cache->fs_info = info;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008270 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d72009-04-03 09:47:43 -04008271 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik96303082009-07-13 21:29:25 -04008272
Josef Bacik0af3d002010-06-21 14:48:16 -04008273 if (need_clear)
8274 cache->disk_cache_state = BTRFS_DC_CLEAR;
8275
Josef Bacik96303082009-07-13 21:29:25 -04008276 /*
8277 * we only want to have 32k of ram per block group for keeping
8278 * track of free space, and if we pass 1/2 of that we want to
8279 * start converting things over to using bitmaps
8280 */
8281 cache->extents_thresh = ((1024 * 32) / 2) /
8282 sizeof(struct btrfs_free_space);
8283
Chris Mason5f39d392007-10-15 16:14:19 -04008284 read_extent_buffer(leaf, &cache->item,
8285 btrfs_item_ptr_offset(leaf, path->slots[0]),
8286 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04008287 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason0b86a832008-03-24 15:01:56 -04008288
Chris Mason9078a3e2007-04-26 16:46:15 -04008289 key.objectid = found_key.objectid + found_key.offset;
8290 btrfs_release_path(root, path);
Chris Mason0b86a832008-03-24 15:01:56 -04008291 cache->flags = btrfs_block_group_flags(&cache->item);
Josef Bacik817d52f2009-07-13 21:29:25 -04008292 cache->sectorsize = root->sectorsize;
8293
Josef Bacik817d52f2009-07-13 21:29:25 -04008294 /*
8295 * check for two cases, either we are full, and therefore
8296 * don't need to bother with the caching work since we won't
8297 * find any space, or we are empty, and we can just add all
8298 * the space in and be done with it. This saves us _alot_ of
8299 * time, particularly in the full case.
8300 */
8301 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Josef Bacik1b2da372009-09-11 16:11:20 -04008302 exclude_super_stripes(root, cache);
Yan Zheng11833d62009-09-11 16:11:19 -04008303 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008304 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04008305 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008306 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04008307 exclude_super_stripes(root, cache);
8308 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008309 cache->cached = BTRFS_CACHE_FINISHED;
8310 add_new_free_space(cache, root->fs_info,
8311 found_key.objectid,
8312 found_key.objectid +
8313 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04008314 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008315 }
Chris Mason96b51792007-10-15 16:15:19 -04008316
Chris Mason6324fbf2008-03-24 15:01:59 -04008317 ret = update_space_info(info, cache->flags, found_key.offset,
8318 btrfs_block_group_used(&cache->item),
8319 &space_info);
8320 BUG_ON(ret);
8321 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04008322 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008323 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008324 spin_unlock(&cache->space_info->lock);
8325
Yan, Zhengb742bb82010-05-16 10:46:24 -04008326 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008327
Josef Bacik0f9dd462008-09-23 13:14:11 -04008328 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8329 BUG_ON(ret);
Chris Mason75ccf472008-09-30 19:24:06 -04008330
8331 set_avail_alloc_bits(root->fs_info, cache->flags);
Yan Zheng2b820322008-11-17 21:11:30 -05008332 if (btrfs_chunk_readonly(root, cache->key.objectid))
Yan, Zhengf0486c62010-05-16 10:46:25 -04008333 set_block_group_ro(cache);
Chris Mason9078a3e2007-04-26 16:46:15 -04008334 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04008335
8336 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
8337 if (!(get_alloc_profile(root, space_info->flags) &
8338 (BTRFS_BLOCK_GROUP_RAID10 |
8339 BTRFS_BLOCK_GROUP_RAID1 |
8340 BTRFS_BLOCK_GROUP_DUP)))
8341 continue;
8342 /*
8343 * avoid allocating from un-mirrored block group if there are
8344 * mirrored block groups.
8345 */
8346 list_for_each_entry(cache, &space_info->block_groups[3], list)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008347 set_block_group_ro(cache);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008348 list_for_each_entry(cache, &space_info->block_groups[4], list)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008349 set_block_group_ro(cache);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008350 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008351
8352 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04008353 ret = 0;
8354error:
Chris Mason9078a3e2007-04-26 16:46:15 -04008355 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04008356 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008357}
Chris Mason6324fbf2008-03-24 15:01:59 -04008358
8359int btrfs_make_block_group(struct btrfs_trans_handle *trans,
8360 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04008361 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04008362 u64 size)
8363{
8364 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04008365 struct btrfs_root *extent_root;
8366 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04008367
8368 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04008369
Chris Mason12fcfd22009-03-24 10:24:20 -04008370 root->fs_info->last_trans_log_full_commit = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04008371
Chris Mason8f18cf12008-04-25 16:53:30 -04008372 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008373 if (!cache)
8374 return -ENOMEM;
8375
Chris Masone17cade2008-04-15 15:41:47 -04008376 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04008377 cache->key.offset = size;
Yan Zhengd2fb3432008-12-11 16:30:39 -05008378 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Josef Bacik96303082009-07-13 21:29:25 -04008379 cache->sectorsize = root->sectorsize;
Josef Bacik0af3d002010-06-21 14:48:16 -04008380 cache->fs_info = root->fs_info;
Josef Bacik96303082009-07-13 21:29:25 -04008381
8382 /*
8383 * we only want to have 32k of ram per block group for keeping track
8384 * of free space, and if we pass 1/2 of that we want to start
8385 * converting things over to using bitmaps
8386 */
8387 cache->extents_thresh = ((1024 * 32) / 2) /
8388 sizeof(struct btrfs_free_space);
Yan Zhengd2fb3432008-12-11 16:30:39 -05008389 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04008390 spin_lock_init(&cache->lock);
Josef Bacik6226cb02009-04-03 10:14:18 -04008391 spin_lock_init(&cache->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008392 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d72009-04-03 09:47:43 -04008393 INIT_LIST_HEAD(&cache->cluster_list);
Chris Mason0ef3e662008-05-24 14:04:53 -04008394
Chris Mason6324fbf2008-03-24 15:01:59 -04008395 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04008396 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
8397 cache->flags = type;
8398 btrfs_set_block_group_flags(&cache->item, type);
8399
Yan Zheng11833d62009-09-11 16:11:19 -04008400 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008401 cache->cached = BTRFS_CACHE_FINISHED;
Yan Zheng11833d62009-09-11 16:11:19 -04008402 exclude_super_stripes(root, cache);
Josef Bacik96303082009-07-13 21:29:25 -04008403
Josef Bacik817d52f2009-07-13 21:29:25 -04008404 add_new_free_space(cache, root->fs_info, chunk_offset,
8405 chunk_offset + size);
8406
Yan Zheng11833d62009-09-11 16:11:19 -04008407 free_excluded_extents(root, cache);
8408
Chris Mason6324fbf2008-03-24 15:01:59 -04008409 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
8410 &cache->space_info);
8411 BUG_ON(ret);
Josef Bacik1b2da372009-09-11 16:11:20 -04008412
8413 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008414 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008415 spin_unlock(&cache->space_info->lock);
8416
Yan, Zhengb742bb82010-05-16 10:46:24 -04008417 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008418
Josef Bacik0f9dd462008-09-23 13:14:11 -04008419 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8420 BUG_ON(ret);
Chris Masonc286ac42008-07-22 23:06:41 -04008421
Chris Mason6324fbf2008-03-24 15:01:59 -04008422 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
8423 sizeof(cache->item));
8424 BUG_ON(ret);
8425
Chris Masond18a2c42008-04-04 15:40:00 -04008426 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04008427
Chris Mason6324fbf2008-03-24 15:01:59 -04008428 return 0;
8429}
Zheng Yan1a40e232008-09-26 10:09:34 -04008430
8431int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
8432 struct btrfs_root *root, u64 group_start)
8433{
8434 struct btrfs_path *path;
8435 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04008436 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -04008437 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04008438 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04008439 struct inode *inode;
Zheng Yan1a40e232008-09-26 10:09:34 -04008440 int ret;
Josef Bacik89a55892010-10-14 14:52:27 -04008441 int factor;
Zheng Yan1a40e232008-09-26 10:09:34 -04008442
Zheng Yan1a40e232008-09-26 10:09:34 -04008443 root = root->fs_info->extent_root;
8444
8445 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
8446 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05008447 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04008448
8449 memcpy(&key, &block_group->key, sizeof(key));
Josef Bacik89a55892010-10-14 14:52:27 -04008450 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
8451 BTRFS_BLOCK_GROUP_RAID1 |
8452 BTRFS_BLOCK_GROUP_RAID10))
8453 factor = 2;
8454 else
8455 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04008456
Chris Mason44fb5512009-06-04 15:34:51 -04008457 /* make sure this block group isn't part of an allocation cluster */
8458 cluster = &root->fs_info->data_alloc_cluster;
8459 spin_lock(&cluster->refill_lock);
8460 btrfs_return_cluster_to_free_space(block_group, cluster);
8461 spin_unlock(&cluster->refill_lock);
8462
8463 /*
8464 * make sure this block group isn't part of a metadata
8465 * allocation cluster
8466 */
8467 cluster = &root->fs_info->meta_alloc_cluster;
8468 spin_lock(&cluster->refill_lock);
8469 btrfs_return_cluster_to_free_space(block_group, cluster);
8470 spin_unlock(&cluster->refill_lock);
8471
Zheng Yan1a40e232008-09-26 10:09:34 -04008472 path = btrfs_alloc_path();
8473 BUG_ON(!path);
8474
Josef Bacik0af3d002010-06-21 14:48:16 -04008475 inode = lookup_free_space_inode(root, block_group, path);
8476 if (!IS_ERR(inode)) {
8477 btrfs_orphan_add(trans, inode);
8478 clear_nlink(inode);
8479 /* One for the block groups ref */
8480 spin_lock(&block_group->lock);
8481 if (block_group->iref) {
8482 block_group->iref = 0;
8483 block_group->inode = NULL;
8484 spin_unlock(&block_group->lock);
8485 iput(inode);
8486 } else {
8487 spin_unlock(&block_group->lock);
8488 }
8489 /* One for our lookup ref */
8490 iput(inode);
8491 }
8492
8493 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
8494 key.offset = block_group->key.objectid;
8495 key.type = 0;
8496
8497 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
8498 if (ret < 0)
8499 goto out;
8500 if (ret > 0)
8501 btrfs_release_path(tree_root, path);
8502 if (ret == 0) {
8503 ret = btrfs_del_item(trans, tree_root, path);
8504 if (ret)
8505 goto out;
8506 btrfs_release_path(tree_root, path);
8507 }
8508
Yan Zheng3dfdb932009-01-21 10:49:16 -05008509 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008510 rb_erase(&block_group->cache_node,
8511 &root->fs_info->block_group_cache_tree);
Yan Zheng3dfdb932009-01-21 10:49:16 -05008512 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008513
Josef Bacik80eb2342008-10-29 14:49:05 -04008514 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04008515 /*
8516 * we must use list_del_init so people can check to see if they
8517 * are still on the list after taking the semaphore
8518 */
8519 list_del_init(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04008520 up_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008521
Josef Bacik817d52f2009-07-13 21:29:25 -04008522 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008523 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008524
8525 btrfs_remove_free_space_cache(block_group);
8526
Yan Zhengc146afa2008-11-12 14:34:12 -05008527 spin_lock(&block_group->space_info->lock);
8528 block_group->space_info->total_bytes -= block_group->key.offset;
8529 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -04008530 block_group->space_info->disk_total -= block_group->key.offset * factor;
Yan Zhengc146afa2008-11-12 14:34:12 -05008531 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04008532
Josef Bacik0af3d002010-06-21 14:48:16 -04008533 memcpy(&key, &block_group->key, sizeof(key));
8534
Chris Mason283bb192009-07-24 16:30:55 -04008535 btrfs_clear_space_info_full(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05008536
Chris Masonfa9c0d72009-04-03 09:47:43 -04008537 btrfs_put_block_group(block_group);
8538 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04008539
8540 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
8541 if (ret > 0)
8542 ret = -EIO;
8543 if (ret < 0)
8544 goto out;
8545
8546 ret = btrfs_del_item(trans, root, path);
8547out:
8548 btrfs_free_path(path);
8549 return ret;
8550}