blob: 5bc658a9d85cb45cca0cbd8c8b68b2dddb8fce04 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
Zach Brownec6b9102007-07-11 10:00:37 -040018#include <linux/sched.h>
Chris Masonedbd8d42007-12-21 16:27:24 -050019#include <linux/pagemap.h>
Chris Masonec44a352008-04-28 15:29:52 -040020#include <linux/writeback.h>
David Woodhouse21af8042008-08-12 14:13:26 +010021#include <linux/blkdev.h>
Chris Masonb7a9f292009-02-04 09:23:45 -050022#include <linux/sort.h>
Chris Mason4184ea72009-03-10 12:39:20 -040023#include <linux/rcupdate.h>
Josef Bacik817d52f2009-07-13 21:29:25 -040024#include <linux/kthread.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050026#include "compat.h"
Chris Mason74493f72007-12-11 09:25:06 -050027#include "hash.h"
Chris Masonfec577f2007-02-26 10:40:21 -050028#include "ctree.h"
29#include "disk-io.h"
30#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040031#include "transaction.h"
Chris Mason0b86a832008-03-24 15:01:56 -040032#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040033#include "locking.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040034#include "free-space-cache.h"
Chris Masonfec577f2007-02-26 10:40:21 -050035
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
Josef Bacik817d52f2009-07-13 21:29:25 -0400323 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400324
Chris Mason5cd57b22008-06-25 16:01:30 -0400325 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400326 * We don't want to deadlock with somebody trying to allocate a new
327 * extent for the extent root while also trying to search the extent
328 * root to add free space. So we skip locking and search the commit
329 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400330 */
331 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400332 path->search_commit_root = 1;
333 path->reada = 2;
334
Yan Zhenge4404d62008-12-12 10:03:26 -0500335 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400336 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400337 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400338again:
Yan Zheng11833d62009-09-11 16:11:19 -0400339 mutex_lock(&caching_ctl->mutex);
Chris Mason013f1b12009-07-31 14:57:55 -0400340 /* need to make sure the commit_root doesn't disappear */
341 down_read(&fs_info->extent_commit_sem);
342
Yan Zheng11833d62009-09-11 16:11:19 -0400343 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400344 if (ret < 0)
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400345 goto err;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500346
Yan Zheng11833d62009-09-11 16:11:19 -0400347 leaf = path->nodes[0];
348 nritems = btrfs_header_nritems(leaf);
349
Chris Masond3977122009-01-05 21:25:51 -0500350 while (1) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400351 smp_mb();
Yan Zheng11833d62009-09-11 16:11:19 -0400352 if (fs_info->closing > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400353 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400354 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400355 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400356
Yan Zheng11833d62009-09-11 16:11:19 -0400357 if (path->slots[0] < nritems) {
358 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
359 } else {
360 ret = find_next_key(path, 0, &key);
361 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400362 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400363
Yan Zheng11833d62009-09-11 16:11:19 -0400364 caching_ctl->progress = last;
365 btrfs_release_path(extent_root, path);
366 up_read(&fs_info->extent_commit_sem);
367 mutex_unlock(&caching_ctl->mutex);
368 if (btrfs_transaction_in_commit(fs_info))
Chris Masonf36f3042009-07-30 10:04:48 -0400369 schedule_timeout(1);
Yan Zheng11833d62009-09-11 16:11:19 -0400370 else
371 cond_resched();
372 goto again;
373 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400374
Yan Zheng11833d62009-09-11 16:11:19 -0400375 if (key.objectid < block_group->key.objectid) {
376 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400377 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400378 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400379
Chris Masone37c9e62007-05-09 20:13:14 -0400380 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400381 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400382 break;
Yan7d7d6062007-09-14 16:15:28 -0400383
Yan Zheng11833d62009-09-11 16:11:19 -0400384 if (key.type == BTRFS_EXTENT_ITEM_KEY) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400385 total_found += add_new_free_space(block_group,
386 fs_info, last,
387 key.objectid);
Yan7d7d6062007-09-14 16:15:28 -0400388 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400389
Yan Zheng11833d62009-09-11 16:11:19 -0400390 if (total_found > (1024 * 1024 * 2)) {
391 total_found = 0;
392 wake_up(&caching_ctl->wait);
393 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400394 }
Chris Masone37c9e62007-05-09 20:13:14 -0400395 path->slots[0]++;
396 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400397 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400398
399 total_found += add_new_free_space(block_group, fs_info, last,
400 block_group->key.objectid +
401 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400402 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400403
404 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400405 block_group->caching_ctl = NULL;
Josef Bacik817d52f2009-07-13 21:29:25 -0400406 block_group->cached = BTRFS_CACHE_FINISHED;
407 spin_unlock(&block_group->lock);
408
Chris Mason54aa1f42007-06-22 14:16:25 -0400409err:
Chris Masone37c9e62007-05-09 20:13:14 -0400410 btrfs_free_path(path);
Yan Zheng276e6802009-07-30 09:40:40 -0400411 up_read(&fs_info->extent_commit_sem);
Josef Bacik817d52f2009-07-13 21:29:25 -0400412
Yan Zheng11833d62009-09-11 16:11:19 -0400413 free_excluded_extents(extent_root, block_group);
414
415 mutex_unlock(&caching_ctl->mutex);
416 wake_up(&caching_ctl->wait);
417
418 put_caching_control(caching_ctl);
419 atomic_dec(&block_group->space_info->caching_threads);
Josef Bacik11dfe352009-11-13 20:12:59 +0000420 btrfs_put_block_group(block_group);
421
Josef Bacik817d52f2009-07-13 21:29:25 -0400422 return 0;
423}
424
Josef Bacik9d66e232010-08-25 16:54:15 -0400425static int cache_block_group(struct btrfs_block_group_cache *cache,
426 struct btrfs_trans_handle *trans,
Josef Bacikb8399de2010-12-08 09:15:11 -0500427 struct btrfs_root *root,
Josef Bacik9d66e232010-08-25 16:54:15 -0400428 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400429{
Yan Zheng11833d62009-09-11 16:11:19 -0400430 struct btrfs_fs_info *fs_info = cache->fs_info;
431 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400432 struct task_struct *tsk;
433 int ret = 0;
434
Yan Zheng11833d62009-09-11 16:11:19 -0400435 smp_mb();
436 if (cache->cached != BTRFS_CACHE_NO)
437 return 0;
438
Josef Bacik9d66e232010-08-25 16:54:15 -0400439 /*
440 * We can't do the read from on-disk cache during a commit since we need
Josef Bacikb8399de2010-12-08 09:15:11 -0500441 * to have the normal tree locking. Also if we are currently trying to
442 * allocate blocks for the tree root we can't do the fast caching since
443 * we likely hold important locks.
Josef Bacik9d66e232010-08-25 16:54:15 -0400444 */
Josef Bacikb8399de2010-12-08 09:15:11 -0500445 if (!trans->transaction->in_commit &&
446 (root && root != root->fs_info->tree_root)) {
Josef Bacik9d66e232010-08-25 16:54:15 -0400447 spin_lock(&cache->lock);
448 if (cache->cached != BTRFS_CACHE_NO) {
449 spin_unlock(&cache->lock);
450 return 0;
451 }
452 cache->cached = BTRFS_CACHE_STARTED;
453 spin_unlock(&cache->lock);
454
455 ret = load_free_space_cache(fs_info, cache);
456
457 spin_lock(&cache->lock);
458 if (ret == 1) {
459 cache->cached = BTRFS_CACHE_FINISHED;
460 cache->last_byte_to_unpin = (u64)-1;
461 } else {
462 cache->cached = BTRFS_CACHE_NO;
463 }
464 spin_unlock(&cache->lock);
Josef Bacik3c148742011-02-02 15:53:47 +0000465 if (ret == 1) {
466 free_excluded_extents(fs_info->extent_root, cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400467 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000468 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400469 }
470
471 if (load_cache_only)
472 return 0;
473
Yan Zheng11833d62009-09-11 16:11:19 -0400474 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_KERNEL);
475 BUG_ON(!caching_ctl);
476
477 INIT_LIST_HEAD(&caching_ctl->list);
478 mutex_init(&caching_ctl->mutex);
479 init_waitqueue_head(&caching_ctl->wait);
480 caching_ctl->block_group = cache;
481 caching_ctl->progress = cache->key.objectid;
482 /* one for caching kthread, one for caching block group list */
483 atomic_set(&caching_ctl->count, 2);
484
Josef Bacik817d52f2009-07-13 21:29:25 -0400485 spin_lock(&cache->lock);
486 if (cache->cached != BTRFS_CACHE_NO) {
487 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400488 kfree(caching_ctl);
489 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400490 }
Yan Zheng11833d62009-09-11 16:11:19 -0400491 cache->caching_ctl = caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400492 cache->cached = BTRFS_CACHE_STARTED;
493 spin_unlock(&cache->lock);
494
Yan Zheng11833d62009-09-11 16:11:19 -0400495 down_write(&fs_info->extent_commit_sem);
496 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
497 up_write(&fs_info->extent_commit_sem);
498
499 atomic_inc(&cache->space_info->caching_threads);
Josef Bacik11dfe352009-11-13 20:12:59 +0000500 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400501
Josef Bacik817d52f2009-07-13 21:29:25 -0400502 tsk = kthread_run(caching_kthread, cache, "btrfs-cache-%llu\n",
503 cache->key.objectid);
504 if (IS_ERR(tsk)) {
505 ret = PTR_ERR(tsk);
506 printk(KERN_ERR "error running thread %d\n", ret);
507 BUG();
508 }
509
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400510 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400511}
512
Josef Bacik0f9dd462008-09-23 13:14:11 -0400513/*
514 * return the block group that starts at or after bytenr
515 */
Chris Masond3977122009-01-05 21:25:51 -0500516static struct btrfs_block_group_cache *
517btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400518{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400519 struct btrfs_block_group_cache *cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400520
Josef Bacik0f9dd462008-09-23 13:14:11 -0400521 cache = block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400522
Josef Bacik0f9dd462008-09-23 13:14:11 -0400523 return cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400524}
525
Josef Bacik0f9dd462008-09-23 13:14:11 -0400526/*
Sankar P9f556842009-05-14 13:52:22 -0400527 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400528 */
Chris Masond3977122009-01-05 21:25:51 -0500529struct btrfs_block_group_cache *btrfs_lookup_block_group(
530 struct btrfs_fs_info *info,
531 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400532{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400533 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -0400534
Josef Bacik0f9dd462008-09-23 13:14:11 -0400535 cache = block_group_cache_tree_search(info, bytenr, 1);
Chris Mason96b51792007-10-15 16:15:19 -0400536
Josef Bacik0f9dd462008-09-23 13:14:11 -0400537 return cache;
Chris Masonbe744172007-05-06 10:15:01 -0400538}
Chris Mason0b86a832008-03-24 15:01:56 -0400539
Josef Bacik0f9dd462008-09-23 13:14:11 -0400540static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
541 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400542{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400543 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400544 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400545
Yan, Zhengb742bb82010-05-16 10:46:24 -0400546 flags &= BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_SYSTEM |
547 BTRFS_BLOCK_GROUP_METADATA;
548
Chris Mason4184ea72009-03-10 12:39:20 -0400549 rcu_read_lock();
550 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400551 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400552 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400553 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400554 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400555 }
Chris Mason4184ea72009-03-10 12:39:20 -0400556 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400557 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400558}
559
Chris Mason4184ea72009-03-10 12:39:20 -0400560/*
561 * after adding space to the filesystem, we need to clear the full flags
562 * on all the space infos.
563 */
564void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
565{
566 struct list_head *head = &info->space_info;
567 struct btrfs_space_info *found;
568
569 rcu_read_lock();
570 list_for_each_entry_rcu(found, head, list)
571 found->full = 0;
572 rcu_read_unlock();
573}
574
Josef Bacik80eb2342008-10-29 14:49:05 -0400575static u64 div_factor(u64 num, int factor)
576{
577 if (factor == 10)
578 return num;
579 num *= factor;
580 do_div(num, 10);
581 return num;
582}
583
Chris Masone5bc2452010-10-26 13:37:56 -0400584static u64 div_factor_fine(u64 num, int factor)
585{
586 if (factor == 100)
587 return num;
588 num *= factor;
589 do_div(num, 100);
590 return num;
591}
592
Yan Zhengd2fb3432008-12-11 16:30:39 -0500593u64 btrfs_find_block_group(struct btrfs_root *root,
594 u64 search_start, u64 search_hint, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400595{
Chris Mason96b51792007-10-15 16:15:19 -0400596 struct btrfs_block_group_cache *cache;
Chris Masoncd1bc462007-04-27 10:08:34 -0400597 u64 used;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500598 u64 last = max(search_hint, search_start);
599 u64 group_start = 0;
Chris Mason31f3c992007-04-30 15:25:45 -0400600 int full_search = 0;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500601 int factor = 9;
Chris Mason0ef3e662008-05-24 14:04:53 -0400602 int wrapped = 0;
Chris Mason31f3c992007-04-30 15:25:45 -0400603again:
Zheng Yane8569812008-09-26 10:05:48 -0400604 while (1) {
605 cache = btrfs_lookup_first_block_group(root->fs_info, last);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400606 if (!cache)
Chris Masoncd1bc462007-04-27 10:08:34 -0400607 break;
Chris Mason96b51792007-10-15 16:15:19 -0400608
Chris Masonc286ac42008-07-22 23:06:41 -0400609 spin_lock(&cache->lock);
Chris Mason96b51792007-10-15 16:15:19 -0400610 last = cache->key.objectid + cache->key.offset;
611 used = btrfs_block_group_used(&cache->item);
612
Yan Zhengd2fb3432008-12-11 16:30:39 -0500613 if ((full_search || !cache->ro) &&
614 block_group_bits(cache, BTRFS_BLOCK_GROUP_METADATA)) {
Zheng Yane8569812008-09-26 10:05:48 -0400615 if (used + cache->pinned + cache->reserved <
Yan Zhengd2fb3432008-12-11 16:30:39 -0500616 div_factor(cache->key.offset, factor)) {
617 group_start = cache->key.objectid;
Chris Masonc286ac42008-07-22 23:06:41 -0400618 spin_unlock(&cache->lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -0400619 btrfs_put_block_group(cache);
Chris Mason8790d502008-04-03 16:29:03 -0400620 goto found;
621 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400622 }
Chris Masonc286ac42008-07-22 23:06:41 -0400623 spin_unlock(&cache->lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -0400624 btrfs_put_block_group(cache);
Chris Masonde428b62007-05-18 13:28:27 -0400625 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400626 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400627 if (!wrapped) {
628 last = search_start;
629 wrapped = 1;
630 goto again;
631 }
632 if (!full_search && factor < 10) {
Chris Masonbe744172007-05-06 10:15:01 -0400633 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400634 full_search = 1;
Chris Mason0ef3e662008-05-24 14:04:53 -0400635 factor = 10;
Chris Mason31f3c992007-04-30 15:25:45 -0400636 goto again;
637 }
Chris Masonbe744172007-05-06 10:15:01 -0400638found:
Yan Zhengd2fb3432008-12-11 16:30:39 -0500639 return group_start;
Chris Mason925baed2008-06-25 16:01:30 -0400640}
Josef Bacik0f9dd462008-09-23 13:14:11 -0400641
Chris Masone02119d2008-09-05 16:13:11 -0400642/* simple helper to search for an existing extent at a given offset */
Zheng Yan31840ae2008-09-23 13:14:14 -0400643int btrfs_lookup_extent(struct btrfs_root *root, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400644{
645 int ret;
646 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400647 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400648
Zheng Yan31840ae2008-09-23 13:14:14 -0400649 path = btrfs_alloc_path();
650 BUG_ON(!path);
Chris Masone02119d2008-09-05 16:13:11 -0400651 key.objectid = start;
652 key.offset = len;
653 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
654 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
655 0, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400656 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500657 return ret;
658}
659
Chris Masond8d5f3e2007-12-11 12:42:00 -0500660/*
Yan, Zhenga22285a2010-05-16 10:48:46 -0400661 * helper function to lookup reference count and flags of extent.
662 *
663 * the head node for delayed ref is used to store the sum of all the
664 * reference count modifications queued up in the rbtree. the head
665 * node may also store the extent flags to set. This way you can check
666 * to see what the reference count and extent flags would be if all of
667 * the delayed refs are not processed.
668 */
669int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
670 struct btrfs_root *root, u64 bytenr,
671 u64 num_bytes, u64 *refs, u64 *flags)
672{
673 struct btrfs_delayed_ref_head *head;
674 struct btrfs_delayed_ref_root *delayed_refs;
675 struct btrfs_path *path;
676 struct btrfs_extent_item *ei;
677 struct extent_buffer *leaf;
678 struct btrfs_key key;
679 u32 item_size;
680 u64 num_refs;
681 u64 extent_flags;
682 int ret;
683
684 path = btrfs_alloc_path();
685 if (!path)
686 return -ENOMEM;
687
688 key.objectid = bytenr;
689 key.type = BTRFS_EXTENT_ITEM_KEY;
690 key.offset = num_bytes;
691 if (!trans) {
692 path->skip_locking = 1;
693 path->search_commit_root = 1;
694 }
695again:
696 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
697 &key, path, 0, 0);
698 if (ret < 0)
699 goto out_free;
700
701 if (ret == 0) {
702 leaf = path->nodes[0];
703 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
704 if (item_size >= sizeof(*ei)) {
705 ei = btrfs_item_ptr(leaf, path->slots[0],
706 struct btrfs_extent_item);
707 num_refs = btrfs_extent_refs(leaf, ei);
708 extent_flags = btrfs_extent_flags(leaf, ei);
709 } else {
710#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
711 struct btrfs_extent_item_v0 *ei0;
712 BUG_ON(item_size != sizeof(*ei0));
713 ei0 = btrfs_item_ptr(leaf, path->slots[0],
714 struct btrfs_extent_item_v0);
715 num_refs = btrfs_extent_refs_v0(leaf, ei0);
716 /* FIXME: this isn't correct for data */
717 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
718#else
719 BUG();
720#endif
721 }
722 BUG_ON(num_refs == 0);
723 } else {
724 num_refs = 0;
725 extent_flags = 0;
726 ret = 0;
727 }
728
729 if (!trans)
730 goto out;
731
732 delayed_refs = &trans->transaction->delayed_refs;
733 spin_lock(&delayed_refs->lock);
734 head = btrfs_find_delayed_ref_head(trans, bytenr);
735 if (head) {
736 if (!mutex_trylock(&head->mutex)) {
737 atomic_inc(&head->node.refs);
738 spin_unlock(&delayed_refs->lock);
739
740 btrfs_release_path(root->fs_info->extent_root, path);
741
742 mutex_lock(&head->mutex);
743 mutex_unlock(&head->mutex);
744 btrfs_put_delayed_ref(&head->node);
745 goto again;
746 }
747 if (head->extent_op && head->extent_op->update_flags)
748 extent_flags |= head->extent_op->flags_to_set;
749 else
750 BUG_ON(num_refs == 0);
751
752 num_refs += head->node.ref_mod;
753 mutex_unlock(&head->mutex);
754 }
755 spin_unlock(&delayed_refs->lock);
756out:
757 WARN_ON(num_refs == 0);
758 if (refs)
759 *refs = num_refs;
760 if (flags)
761 *flags = extent_flags;
762out_free:
763 btrfs_free_path(path);
764 return ret;
765}
766
767/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500768 * Back reference rules. Back refs have three main goals:
769 *
770 * 1) differentiate between all holders of references to an extent so that
771 * when a reference is dropped we can make sure it was a valid reference
772 * before freeing the extent.
773 *
774 * 2) Provide enough information to quickly find the holders of an extent
775 * if we notice a given block is corrupted or bad.
776 *
777 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
778 * maintenance. This is actually the same as #2, but with a slightly
779 * different use case.
780 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400781 * There are two kinds of back refs. The implicit back refs is optimized
782 * for pointers in non-shared tree blocks. For a given pointer in a block,
783 * back refs of this kind provide information about the block's owner tree
784 * and the pointer's key. These information allow us to find the block by
785 * b-tree searching. The full back refs is for pointers in tree blocks not
786 * referenced by their owner trees. The location of tree block is recorded
787 * in the back refs. Actually the full back refs is generic, and can be
788 * used in all cases the implicit back refs is used. The major shortcoming
789 * of the full back refs is its overhead. Every time a tree block gets
790 * COWed, we have to update back refs entry for all pointers in it.
791 *
792 * For a newly allocated tree block, we use implicit back refs for
793 * pointers in it. This means most tree related operations only involve
794 * implicit back refs. For a tree block created in old transaction, the
795 * only way to drop a reference to it is COW it. So we can detect the
796 * event that tree block loses its owner tree's reference and do the
797 * back refs conversion.
798 *
799 * When a tree block is COW'd through a tree, there are four cases:
800 *
801 * The reference count of the block is one and the tree is the block's
802 * owner tree. Nothing to do in this case.
803 *
804 * The reference count of the block is one and the tree is not the
805 * block's owner tree. In this case, full back refs is used for pointers
806 * in the block. Remove these full back refs, add implicit back refs for
807 * every pointers in the new block.
808 *
809 * The reference count of the block is greater than one and the tree is
810 * the block's owner tree. In this case, implicit back refs is used for
811 * pointers in the block. Add full back refs for every pointers in the
812 * block, increase lower level extents' reference counts. The original
813 * implicit back refs are entailed to the new block.
814 *
815 * The reference count of the block is greater than one and the tree is
816 * not the block's owner tree. Add implicit back refs for every pointer in
817 * the new block, increase lower level extents' reference count.
818 *
819 * Back Reference Key composing:
820 *
821 * The key objectid corresponds to the first byte in the extent,
822 * The key type is used to differentiate between types of back refs.
823 * There are different meanings of the key offset for different types
824 * of back refs.
825 *
Chris Masond8d5f3e2007-12-11 12:42:00 -0500826 * File extents can be referenced by:
827 *
828 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -0400829 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -0500830 * - different offsets inside a file (bookend extents in file.c)
831 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400832 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500833 *
834 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -0500835 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400836 * - original offset in the file
837 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -0400838 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400839 * The key offset for the implicit back refs is hash of the first
840 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500841 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400842 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500843 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400844 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500845 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400846 * The key offset for the implicit back refs is the first byte of
847 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500848 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400849 * When a file extent is allocated, The implicit back refs is used.
850 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500851 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400852 * (root_key.objectid, inode objectid, offset in file, 1)
853 *
854 * When a file extent is removed file truncation, we find the
855 * corresponding implicit back refs and check the following fields:
856 *
857 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500858 *
859 * Btree extents can be referenced by:
860 *
861 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -0500862 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400863 * Both the implicit back refs and the full back refs for tree blocks
864 * only consist of key. The key offset for the implicit back refs is
865 * objectid of block's owner tree. The key offset for the full back refs
866 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500867 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400868 * When implicit back refs is used, information about the lowest key and
869 * level of the tree block are required. These information are stored in
870 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500871 */
Zheng Yan31840ae2008-09-23 13:14:14 -0400872
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400873#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
874static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
875 struct btrfs_root *root,
876 struct btrfs_path *path,
877 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -0500878{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400879 struct btrfs_extent_item *item;
880 struct btrfs_extent_item_v0 *ei0;
881 struct btrfs_extent_ref_v0 *ref0;
882 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -0400883 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400884 struct btrfs_key key;
885 struct btrfs_key found_key;
886 u32 new_size = sizeof(*item);
887 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -0500888 int ret;
889
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400890 leaf = path->nodes[0];
891 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -0500892
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400893 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
894 ei0 = btrfs_item_ptr(leaf, path->slots[0],
895 struct btrfs_extent_item_v0);
896 refs = btrfs_extent_refs_v0(leaf, ei0);
897
898 if (owner == (u64)-1) {
899 while (1) {
900 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
901 ret = btrfs_next_leaf(root, path);
902 if (ret < 0)
903 return ret;
904 BUG_ON(ret > 0);
905 leaf = path->nodes[0];
906 }
907 btrfs_item_key_to_cpu(leaf, &found_key,
908 path->slots[0]);
909 BUG_ON(key.objectid != found_key.objectid);
910 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
911 path->slots[0]++;
912 continue;
913 }
914 ref0 = btrfs_item_ptr(leaf, path->slots[0],
915 struct btrfs_extent_ref_v0);
916 owner = btrfs_ref_objectid_v0(leaf, ref0);
917 break;
918 }
919 }
920 btrfs_release_path(root, path);
921
922 if (owner < BTRFS_FIRST_FREE_OBJECTID)
923 new_size += sizeof(*bi);
924
925 new_size -= sizeof(*ei0);
926 ret = btrfs_search_slot(trans, root, &key, path,
927 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -0400928 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400929 return ret;
930 BUG_ON(ret);
931
932 ret = btrfs_extend_item(trans, root, path, new_size);
933 BUG_ON(ret);
934
935 leaf = path->nodes[0];
936 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
937 btrfs_set_extent_refs(leaf, item, refs);
938 /* FIXME: get real generation */
939 btrfs_set_extent_generation(leaf, item, 0);
940 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
941 btrfs_set_extent_flags(leaf, item,
942 BTRFS_EXTENT_FLAG_TREE_BLOCK |
943 BTRFS_BLOCK_FLAG_FULL_BACKREF);
944 bi = (struct btrfs_tree_block_info *)(item + 1);
945 /* FIXME: get first key of the block */
946 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
947 btrfs_set_tree_block_level(leaf, bi, (int)owner);
948 } else {
949 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
950 }
951 btrfs_mark_buffer_dirty(leaf);
952 return 0;
953}
954#endif
955
956static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
957{
958 u32 high_crc = ~(u32)0;
959 u32 low_crc = ~(u32)0;
960 __le64 lenum;
961
962 lenum = cpu_to_le64(root_objectid);
David Woodhouse163e7832009-04-19 13:02:41 +0100963 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400964 lenum = cpu_to_le64(owner);
David Woodhouse163e7832009-04-19 13:02:41 +0100965 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400966 lenum = cpu_to_le64(offset);
David Woodhouse163e7832009-04-19 13:02:41 +0100967 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400968
969 return ((u64)high_crc << 31) ^ (u64)low_crc;
970}
971
972static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
973 struct btrfs_extent_data_ref *ref)
974{
975 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
976 btrfs_extent_data_ref_objectid(leaf, ref),
977 btrfs_extent_data_ref_offset(leaf, ref));
978}
979
980static int match_extent_data_ref(struct extent_buffer *leaf,
981 struct btrfs_extent_data_ref *ref,
982 u64 root_objectid, u64 owner, u64 offset)
983{
984 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
985 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
986 btrfs_extent_data_ref_offset(leaf, ref) != offset)
987 return 0;
988 return 1;
989}
990
991static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
992 struct btrfs_root *root,
993 struct btrfs_path *path,
994 u64 bytenr, u64 parent,
995 u64 root_objectid,
996 u64 owner, u64 offset)
997{
998 struct btrfs_key key;
999 struct btrfs_extent_data_ref *ref;
1000 struct extent_buffer *leaf;
1001 u32 nritems;
1002 int ret;
1003 int recow;
1004 int err = -ENOENT;
1005
1006 key.objectid = bytenr;
1007 if (parent) {
1008 key.type = BTRFS_SHARED_DATA_REF_KEY;
1009 key.offset = parent;
1010 } else {
1011 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1012 key.offset = hash_extent_data_ref(root_objectid,
1013 owner, offset);
1014 }
1015again:
1016 recow = 0;
1017 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1018 if (ret < 0) {
1019 err = ret;
1020 goto fail;
1021 }
1022
1023 if (parent) {
1024 if (!ret)
1025 return 0;
1026#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1027 key.type = BTRFS_EXTENT_REF_V0_KEY;
1028 btrfs_release_path(root, path);
1029 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1030 if (ret < 0) {
1031 err = ret;
1032 goto fail;
1033 }
1034 if (!ret)
1035 return 0;
1036#endif
1037 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001038 }
1039
1040 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001041 nritems = btrfs_header_nritems(leaf);
1042 while (1) {
1043 if (path->slots[0] >= nritems) {
1044 ret = btrfs_next_leaf(root, path);
1045 if (ret < 0)
1046 err = ret;
1047 if (ret)
1048 goto fail;
1049
1050 leaf = path->nodes[0];
1051 nritems = btrfs_header_nritems(leaf);
1052 recow = 1;
1053 }
1054
1055 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1056 if (key.objectid != bytenr ||
1057 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1058 goto fail;
1059
1060 ref = btrfs_item_ptr(leaf, path->slots[0],
1061 struct btrfs_extent_data_ref);
1062
1063 if (match_extent_data_ref(leaf, ref, root_objectid,
1064 owner, offset)) {
1065 if (recow) {
1066 btrfs_release_path(root, path);
1067 goto again;
1068 }
1069 err = 0;
1070 break;
1071 }
1072 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001073 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001074fail:
1075 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001076}
1077
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001078static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1079 struct btrfs_root *root,
1080 struct btrfs_path *path,
1081 u64 bytenr, u64 parent,
1082 u64 root_objectid, u64 owner,
1083 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001084{
1085 struct btrfs_key key;
1086 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001087 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001088 u32 num_refs;
1089 int ret;
1090
1091 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001092 if (parent) {
1093 key.type = BTRFS_SHARED_DATA_REF_KEY;
1094 key.offset = parent;
1095 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001096 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001097 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1098 key.offset = hash_extent_data_ref(root_objectid,
1099 owner, offset);
1100 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001101 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001102
1103 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1104 if (ret && ret != -EEXIST)
1105 goto fail;
1106
1107 leaf = path->nodes[0];
1108 if (parent) {
1109 struct btrfs_shared_data_ref *ref;
1110 ref = btrfs_item_ptr(leaf, path->slots[0],
1111 struct btrfs_shared_data_ref);
1112 if (ret == 0) {
1113 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1114 } else {
1115 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1116 num_refs += refs_to_add;
1117 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1118 }
1119 } else {
1120 struct btrfs_extent_data_ref *ref;
1121 while (ret == -EEXIST) {
1122 ref = btrfs_item_ptr(leaf, path->slots[0],
1123 struct btrfs_extent_data_ref);
1124 if (match_extent_data_ref(leaf, ref, root_objectid,
1125 owner, offset))
1126 break;
1127 btrfs_release_path(root, path);
1128 key.offset++;
1129 ret = btrfs_insert_empty_item(trans, root, path, &key,
1130 size);
1131 if (ret && ret != -EEXIST)
1132 goto fail;
1133
1134 leaf = path->nodes[0];
1135 }
1136 ref = btrfs_item_ptr(leaf, path->slots[0],
1137 struct btrfs_extent_data_ref);
1138 if (ret == 0) {
1139 btrfs_set_extent_data_ref_root(leaf, ref,
1140 root_objectid);
1141 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1142 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1143 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1144 } else {
1145 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1146 num_refs += refs_to_add;
1147 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1148 }
1149 }
1150 btrfs_mark_buffer_dirty(leaf);
1151 ret = 0;
1152fail:
Chris Mason7bb86312007-12-11 09:25:06 -05001153 btrfs_release_path(root, path);
1154 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001155}
1156
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001157static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1158 struct btrfs_root *root,
1159 struct btrfs_path *path,
1160 int refs_to_drop)
Zheng Yan31840ae2008-09-23 13:14:14 -04001161{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001162 struct btrfs_key key;
1163 struct btrfs_extent_data_ref *ref1 = NULL;
1164 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001165 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001166 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001167 int ret = 0;
1168
1169 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001170 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1171
1172 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1173 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1174 struct btrfs_extent_data_ref);
1175 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1176 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1177 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1178 struct btrfs_shared_data_ref);
1179 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1180#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1181 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1182 struct btrfs_extent_ref_v0 *ref0;
1183 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1184 struct btrfs_extent_ref_v0);
1185 num_refs = btrfs_ref_count_v0(leaf, ref0);
1186#endif
1187 } else {
1188 BUG();
1189 }
1190
Chris Mason56bec292009-03-13 10:10:06 -04001191 BUG_ON(num_refs < refs_to_drop);
1192 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001193
Zheng Yan31840ae2008-09-23 13:14:14 -04001194 if (num_refs == 0) {
1195 ret = btrfs_del_item(trans, root, path);
1196 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001197 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1198 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1199 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1200 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1201#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1202 else {
1203 struct btrfs_extent_ref_v0 *ref0;
1204 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1205 struct btrfs_extent_ref_v0);
1206 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1207 }
1208#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001209 btrfs_mark_buffer_dirty(leaf);
1210 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001211 return ret;
1212}
1213
1214static noinline u32 extent_data_ref_count(struct btrfs_root *root,
1215 struct btrfs_path *path,
1216 struct btrfs_extent_inline_ref *iref)
1217{
1218 struct btrfs_key key;
1219 struct extent_buffer *leaf;
1220 struct btrfs_extent_data_ref *ref1;
1221 struct btrfs_shared_data_ref *ref2;
1222 u32 num_refs = 0;
1223
1224 leaf = path->nodes[0];
1225 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1226 if (iref) {
1227 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1228 BTRFS_EXTENT_DATA_REF_KEY) {
1229 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1230 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1231 } else {
1232 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1233 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1234 }
1235 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1236 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1237 struct btrfs_extent_data_ref);
1238 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1239 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1240 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1241 struct btrfs_shared_data_ref);
1242 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1243#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1244 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1245 struct btrfs_extent_ref_v0 *ref0;
1246 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1247 struct btrfs_extent_ref_v0);
1248 num_refs = btrfs_ref_count_v0(leaf, ref0);
1249#endif
1250 } else {
1251 WARN_ON(1);
1252 }
1253 return num_refs;
1254}
1255
1256static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1257 struct btrfs_root *root,
1258 struct btrfs_path *path,
1259 u64 bytenr, u64 parent,
1260 u64 root_objectid)
1261{
1262 struct btrfs_key key;
1263 int ret;
1264
1265 key.objectid = bytenr;
1266 if (parent) {
1267 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1268 key.offset = parent;
1269 } else {
1270 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1271 key.offset = root_objectid;
1272 }
1273
1274 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1275 if (ret > 0)
1276 ret = -ENOENT;
1277#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1278 if (ret == -ENOENT && parent) {
1279 btrfs_release_path(root, path);
1280 key.type = BTRFS_EXTENT_REF_V0_KEY;
1281 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1282 if (ret > 0)
1283 ret = -ENOENT;
1284 }
1285#endif
1286 return ret;
1287}
1288
1289static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1290 struct btrfs_root *root,
1291 struct btrfs_path *path,
1292 u64 bytenr, u64 parent,
1293 u64 root_objectid)
1294{
1295 struct btrfs_key key;
1296 int ret;
1297
1298 key.objectid = bytenr;
1299 if (parent) {
1300 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1301 key.offset = parent;
1302 } else {
1303 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1304 key.offset = root_objectid;
1305 }
1306
1307 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04001308 btrfs_release_path(root, path);
1309 return ret;
1310}
1311
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001312static inline int extent_ref_type(u64 parent, u64 owner)
1313{
1314 int type;
1315 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1316 if (parent > 0)
1317 type = BTRFS_SHARED_BLOCK_REF_KEY;
1318 else
1319 type = BTRFS_TREE_BLOCK_REF_KEY;
1320 } else {
1321 if (parent > 0)
1322 type = BTRFS_SHARED_DATA_REF_KEY;
1323 else
1324 type = BTRFS_EXTENT_DATA_REF_KEY;
1325 }
1326 return type;
1327}
1328
Yan Zheng2c47e6052009-06-27 21:07:35 -04001329static int find_next_key(struct btrfs_path *path, int level,
1330 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001331
1332{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001333 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001334 if (!path->nodes[level])
1335 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001336 if (path->slots[level] + 1 >=
1337 btrfs_header_nritems(path->nodes[level]))
1338 continue;
1339 if (level == 0)
1340 btrfs_item_key_to_cpu(path->nodes[level], key,
1341 path->slots[level] + 1);
1342 else
1343 btrfs_node_key_to_cpu(path->nodes[level], key,
1344 path->slots[level] + 1);
1345 return 0;
1346 }
1347 return 1;
1348}
1349
1350/*
1351 * look for inline back ref. if back ref is found, *ref_ret is set
1352 * to the address of inline back ref, and 0 is returned.
1353 *
1354 * if back ref isn't found, *ref_ret is set to the address where it
1355 * should be inserted, and -ENOENT is returned.
1356 *
1357 * if insert is true and there are too many inline back refs, the path
1358 * points to the extent item, and -EAGAIN is returned.
1359 *
1360 * NOTE: inline back refs are ordered in the same way that back ref
1361 * items in the tree are ordered.
1362 */
1363static noinline_for_stack
1364int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1365 struct btrfs_root *root,
1366 struct btrfs_path *path,
1367 struct btrfs_extent_inline_ref **ref_ret,
1368 u64 bytenr, u64 num_bytes,
1369 u64 parent, u64 root_objectid,
1370 u64 owner, u64 offset, int insert)
1371{
1372 struct btrfs_key key;
1373 struct extent_buffer *leaf;
1374 struct btrfs_extent_item *ei;
1375 struct btrfs_extent_inline_ref *iref;
1376 u64 flags;
1377 u64 item_size;
1378 unsigned long ptr;
1379 unsigned long end;
1380 int extra_size;
1381 int type;
1382 int want;
1383 int ret;
1384 int err = 0;
1385
1386 key.objectid = bytenr;
1387 key.type = BTRFS_EXTENT_ITEM_KEY;
1388 key.offset = num_bytes;
1389
1390 want = extent_ref_type(parent, owner);
1391 if (insert) {
1392 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001393 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001394 } else
1395 extra_size = -1;
1396 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1397 if (ret < 0) {
1398 err = ret;
1399 goto out;
1400 }
1401 BUG_ON(ret);
1402
1403 leaf = path->nodes[0];
1404 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1405#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1406 if (item_size < sizeof(*ei)) {
1407 if (!insert) {
1408 err = -ENOENT;
1409 goto out;
1410 }
1411 ret = convert_extent_item_v0(trans, root, path, owner,
1412 extra_size);
1413 if (ret < 0) {
1414 err = ret;
1415 goto out;
1416 }
1417 leaf = path->nodes[0];
1418 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1419 }
1420#endif
1421 BUG_ON(item_size < sizeof(*ei));
1422
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001423 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1424 flags = btrfs_extent_flags(leaf, ei);
1425
1426 ptr = (unsigned long)(ei + 1);
1427 end = (unsigned long)ei + item_size;
1428
1429 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
1430 ptr += sizeof(struct btrfs_tree_block_info);
1431 BUG_ON(ptr > end);
1432 } else {
1433 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_DATA));
1434 }
1435
1436 err = -ENOENT;
1437 while (1) {
1438 if (ptr >= end) {
1439 WARN_ON(ptr > end);
1440 break;
1441 }
1442 iref = (struct btrfs_extent_inline_ref *)ptr;
1443 type = btrfs_extent_inline_ref_type(leaf, iref);
1444 if (want < type)
1445 break;
1446 if (want > type) {
1447 ptr += btrfs_extent_inline_ref_size(type);
1448 continue;
1449 }
1450
1451 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1452 struct btrfs_extent_data_ref *dref;
1453 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1454 if (match_extent_data_ref(leaf, dref, root_objectid,
1455 owner, offset)) {
1456 err = 0;
1457 break;
1458 }
1459 if (hash_extent_data_ref_item(leaf, dref) <
1460 hash_extent_data_ref(root_objectid, owner, offset))
1461 break;
1462 } else {
1463 u64 ref_offset;
1464 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1465 if (parent > 0) {
1466 if (parent == ref_offset) {
1467 err = 0;
1468 break;
1469 }
1470 if (ref_offset < parent)
1471 break;
1472 } else {
1473 if (root_objectid == ref_offset) {
1474 err = 0;
1475 break;
1476 }
1477 if (ref_offset < root_objectid)
1478 break;
1479 }
1480 }
1481 ptr += btrfs_extent_inline_ref_size(type);
1482 }
1483 if (err == -ENOENT && insert) {
1484 if (item_size + extra_size >=
1485 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1486 err = -EAGAIN;
1487 goto out;
1488 }
1489 /*
1490 * To add new inline back ref, we have to make sure
1491 * there is no corresponding back ref item.
1492 * For simplicity, we just do not add new inline back
1493 * ref if there is any kind of item for this block
1494 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001495 if (find_next_key(path, 0, &key) == 0 &&
1496 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001497 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001498 err = -EAGAIN;
1499 goto out;
1500 }
1501 }
1502 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1503out:
Yan Zheng85d41982009-06-11 08:51:10 -04001504 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001505 path->keep_locks = 0;
1506 btrfs_unlock_up_safe(path, 1);
1507 }
1508 return err;
1509}
1510
1511/*
1512 * helper to add new inline back ref
1513 */
1514static noinline_for_stack
1515int setup_inline_extent_backref(struct btrfs_trans_handle *trans,
1516 struct btrfs_root *root,
1517 struct btrfs_path *path,
1518 struct btrfs_extent_inline_ref *iref,
1519 u64 parent, u64 root_objectid,
1520 u64 owner, u64 offset, int refs_to_add,
1521 struct btrfs_delayed_extent_op *extent_op)
1522{
1523 struct extent_buffer *leaf;
1524 struct btrfs_extent_item *ei;
1525 unsigned long ptr;
1526 unsigned long end;
1527 unsigned long item_offset;
1528 u64 refs;
1529 int size;
1530 int type;
1531 int ret;
1532
1533 leaf = path->nodes[0];
1534 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1535 item_offset = (unsigned long)iref - (unsigned long)ei;
1536
1537 type = extent_ref_type(parent, owner);
1538 size = btrfs_extent_inline_ref_size(type);
1539
1540 ret = btrfs_extend_item(trans, root, path, size);
1541 BUG_ON(ret);
1542
1543 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1544 refs = btrfs_extent_refs(leaf, ei);
1545 refs += refs_to_add;
1546 btrfs_set_extent_refs(leaf, ei, refs);
1547 if (extent_op)
1548 __run_delayed_extent_op(extent_op, leaf, ei);
1549
1550 ptr = (unsigned long)ei + item_offset;
1551 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1552 if (ptr < end - size)
1553 memmove_extent_buffer(leaf, ptr + size, ptr,
1554 end - size - ptr);
1555
1556 iref = (struct btrfs_extent_inline_ref *)ptr;
1557 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1558 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1559 struct btrfs_extent_data_ref *dref;
1560 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1561 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1562 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1563 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1564 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1565 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1566 struct btrfs_shared_data_ref *sref;
1567 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1568 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1569 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1570 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1571 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1572 } else {
1573 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1574 }
1575 btrfs_mark_buffer_dirty(leaf);
1576 return 0;
1577}
1578
1579static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1580 struct btrfs_root *root,
1581 struct btrfs_path *path,
1582 struct btrfs_extent_inline_ref **ref_ret,
1583 u64 bytenr, u64 num_bytes, u64 parent,
1584 u64 root_objectid, u64 owner, u64 offset)
1585{
1586 int ret;
1587
1588 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1589 bytenr, num_bytes, parent,
1590 root_objectid, owner, offset, 0);
1591 if (ret != -ENOENT)
1592 return ret;
1593
1594 btrfs_release_path(root, path);
1595 *ref_ret = NULL;
1596
1597 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1598 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1599 root_objectid);
1600 } else {
1601 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1602 root_objectid, owner, offset);
1603 }
1604 return ret;
1605}
1606
1607/*
1608 * helper to update/remove inline back ref
1609 */
1610static noinline_for_stack
1611int update_inline_extent_backref(struct btrfs_trans_handle *trans,
1612 struct btrfs_root *root,
1613 struct btrfs_path *path,
1614 struct btrfs_extent_inline_ref *iref,
1615 int refs_to_mod,
1616 struct btrfs_delayed_extent_op *extent_op)
1617{
1618 struct extent_buffer *leaf;
1619 struct btrfs_extent_item *ei;
1620 struct btrfs_extent_data_ref *dref = NULL;
1621 struct btrfs_shared_data_ref *sref = NULL;
1622 unsigned long ptr;
1623 unsigned long end;
1624 u32 item_size;
1625 int size;
1626 int type;
1627 int ret;
1628 u64 refs;
1629
1630 leaf = path->nodes[0];
1631 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1632 refs = btrfs_extent_refs(leaf, ei);
1633 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1634 refs += refs_to_mod;
1635 btrfs_set_extent_refs(leaf, ei, refs);
1636 if (extent_op)
1637 __run_delayed_extent_op(extent_op, leaf, ei);
1638
1639 type = btrfs_extent_inline_ref_type(leaf, iref);
1640
1641 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1642 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1643 refs = btrfs_extent_data_ref_count(leaf, dref);
1644 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1645 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1646 refs = btrfs_shared_data_ref_count(leaf, sref);
1647 } else {
1648 refs = 1;
1649 BUG_ON(refs_to_mod != -1);
1650 }
1651
1652 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1653 refs += refs_to_mod;
1654
1655 if (refs > 0) {
1656 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1657 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1658 else
1659 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1660 } else {
1661 size = btrfs_extent_inline_ref_size(type);
1662 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1663 ptr = (unsigned long)iref;
1664 end = (unsigned long)ei + item_size;
1665 if (ptr + size < end)
1666 memmove_extent_buffer(leaf, ptr, ptr + size,
1667 end - ptr - size);
1668 item_size -= size;
1669 ret = btrfs_truncate_item(trans, root, path, item_size, 1);
1670 BUG_ON(ret);
1671 }
1672 btrfs_mark_buffer_dirty(leaf);
1673 return 0;
1674}
1675
1676static noinline_for_stack
1677int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1678 struct btrfs_root *root,
1679 struct btrfs_path *path,
1680 u64 bytenr, u64 num_bytes, u64 parent,
1681 u64 root_objectid, u64 owner,
1682 u64 offset, int refs_to_add,
1683 struct btrfs_delayed_extent_op *extent_op)
1684{
1685 struct btrfs_extent_inline_ref *iref;
1686 int ret;
1687
1688 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1689 bytenr, num_bytes, parent,
1690 root_objectid, owner, offset, 1);
1691 if (ret == 0) {
1692 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
1693 ret = update_inline_extent_backref(trans, root, path, iref,
1694 refs_to_add, extent_op);
1695 } else if (ret == -ENOENT) {
1696 ret = setup_inline_extent_backref(trans, root, path, iref,
1697 parent, root_objectid,
1698 owner, offset, refs_to_add,
1699 extent_op);
1700 }
1701 return ret;
1702}
1703
1704static int insert_extent_backref(struct btrfs_trans_handle *trans,
1705 struct btrfs_root *root,
1706 struct btrfs_path *path,
1707 u64 bytenr, u64 parent, u64 root_objectid,
1708 u64 owner, u64 offset, int refs_to_add)
1709{
1710 int ret;
1711 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1712 BUG_ON(refs_to_add != 1);
1713 ret = insert_tree_block_ref(trans, root, path, bytenr,
1714 parent, root_objectid);
1715 } else {
1716 ret = insert_extent_data_ref(trans, root, path, bytenr,
1717 parent, root_objectid,
1718 owner, offset, refs_to_add);
1719 }
1720 return ret;
1721}
1722
1723static int remove_extent_backref(struct btrfs_trans_handle *trans,
1724 struct btrfs_root *root,
1725 struct btrfs_path *path,
1726 struct btrfs_extent_inline_ref *iref,
1727 int refs_to_drop, int is_data)
1728{
1729 int ret;
1730
1731 BUG_ON(!is_data && refs_to_drop != 1);
1732 if (iref) {
1733 ret = update_inline_extent_backref(trans, root, path, iref,
1734 -refs_to_drop, NULL);
1735 } else if (is_data) {
1736 ret = remove_extent_data_ref(trans, root, path, refs_to_drop);
1737 } else {
1738 ret = btrfs_del_item(trans, root, path);
1739 }
1740 return ret;
1741}
1742
Chris Mason15916de2008-11-19 21:17:22 -05001743static void btrfs_issue_discard(struct block_device *bdev,
1744 u64 start, u64 len)
1745{
Christoph Hellwigdd3932e2010-09-16 20:51:46 +02001746 blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_KERNEL, 0);
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;
Josef Bacik2b209822010-12-03 13:17:53 -05002745 int dcs = BTRFS_DC_ERROR;
Josef Bacik0af3d002010-06-21 14:48:16 -04002746 int num_pages = 0;
2747 int retries = 0;
2748 int ret = 0;
2749
2750 /*
2751 * If this block group is smaller than 100 megs don't bother caching the
2752 * block group.
2753 */
2754 if (block_group->key.offset < (100 * 1024 * 1024)) {
2755 spin_lock(&block_group->lock);
2756 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
2757 spin_unlock(&block_group->lock);
2758 return 0;
2759 }
2760
2761again:
2762 inode = lookup_free_space_inode(root, block_group, path);
2763 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
2764 ret = PTR_ERR(inode);
2765 btrfs_release_path(root, path);
2766 goto out;
2767 }
2768
2769 if (IS_ERR(inode)) {
2770 BUG_ON(retries);
2771 retries++;
2772
2773 if (block_group->ro)
2774 goto out_free;
2775
2776 ret = create_free_space_inode(root, trans, block_group, path);
2777 if (ret)
2778 goto out_free;
2779 goto again;
2780 }
2781
2782 /*
2783 * We want to set the generation to 0, that way if anything goes wrong
2784 * from here on out we know not to trust this cache when we load up next
2785 * time.
2786 */
2787 BTRFS_I(inode)->generation = 0;
2788 ret = btrfs_update_inode(trans, root, inode);
2789 WARN_ON(ret);
2790
2791 if (i_size_read(inode) > 0) {
2792 ret = btrfs_truncate_free_space_cache(root, trans, path,
2793 inode);
2794 if (ret)
2795 goto out_put;
2796 }
2797
2798 spin_lock(&block_group->lock);
2799 if (block_group->cached != BTRFS_CACHE_FINISHED) {
Josef Bacik2b209822010-12-03 13:17:53 -05002800 /* We're not cached, don't bother trying to write stuff out */
2801 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04002802 spin_unlock(&block_group->lock);
2803 goto out_put;
2804 }
2805 spin_unlock(&block_group->lock);
2806
2807 num_pages = (int)div64_u64(block_group->key.offset, 1024 * 1024 * 1024);
2808 if (!num_pages)
2809 num_pages = 1;
2810
2811 /*
2812 * Just to make absolutely sure we have enough space, we're going to
2813 * preallocate 12 pages worth of space for each block group. In
2814 * practice we ought to use at most 8, but we need extra space so we can
2815 * add our header and have a terminator between the extents and the
2816 * bitmaps.
2817 */
2818 num_pages *= 16;
2819 num_pages *= PAGE_CACHE_SIZE;
2820
2821 ret = btrfs_check_data_free_space(inode, num_pages);
2822 if (ret)
2823 goto out_put;
2824
2825 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
2826 num_pages, num_pages,
2827 &alloc_hint);
Josef Bacik2b209822010-12-03 13:17:53 -05002828 if (!ret)
2829 dcs = BTRFS_DC_SETUP;
Josef Bacik0af3d002010-06-21 14:48:16 -04002830 btrfs_free_reserved_data_space(inode, num_pages);
2831out_put:
2832 iput(inode);
2833out_free:
2834 btrfs_release_path(root, path);
2835out:
2836 spin_lock(&block_group->lock);
Josef Bacik2b209822010-12-03 13:17:53 -05002837 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04002838 spin_unlock(&block_group->lock);
2839
2840 return ret;
2841}
2842
Chris Mason96b51792007-10-15 16:15:19 -04002843int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
2844 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04002845{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002846 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002847 int err = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002848 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04002849 u64 last = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002850
2851 path = btrfs_alloc_path();
2852 if (!path)
2853 return -ENOMEM;
2854
Josef Bacik0af3d002010-06-21 14:48:16 -04002855again:
2856 while (1) {
2857 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2858 while (cache) {
2859 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
2860 break;
2861 cache = next_block_group(root, cache);
2862 }
2863 if (!cache) {
2864 if (last == 0)
2865 break;
2866 last = 0;
2867 continue;
2868 }
2869 err = cache_save_setup(cache, trans, path);
2870 last = cache->key.objectid + cache->key.offset;
2871 btrfs_put_block_group(cache);
2872 }
2873
Chris Masond3977122009-01-05 21:25:51 -05002874 while (1) {
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002875 if (last == 0) {
2876 err = btrfs_run_delayed_refs(trans, root,
2877 (unsigned long)-1);
2878 BUG_ON(err);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002879 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002880
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002881 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2882 while (cache) {
Josef Bacik0af3d002010-06-21 14:48:16 -04002883 if (cache->disk_cache_state == BTRFS_DC_CLEAR) {
2884 btrfs_put_block_group(cache);
2885 goto again;
2886 }
2887
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002888 if (cache->dirty)
2889 break;
2890 cache = next_block_group(root, cache);
2891 }
2892 if (!cache) {
2893 if (last == 0)
2894 break;
2895 last = 0;
Chris Mason96b51792007-10-15 16:15:19 -04002896 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04002897 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002898
Josef Bacik0cb59c92010-07-02 12:14:14 -04002899 if (cache->disk_cache_state == BTRFS_DC_SETUP)
2900 cache->disk_cache_state = BTRFS_DC_NEED_WRITE;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002901 cache->dirty = 0;
2902 last = cache->key.objectid + cache->key.offset;
2903
2904 err = write_one_cache_group(trans, root, path, cache);
2905 BUG_ON(err);
2906 btrfs_put_block_group(cache);
Chris Mason9078a3e2007-04-26 16:46:15 -04002907 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002908
Josef Bacik0cb59c92010-07-02 12:14:14 -04002909 while (1) {
2910 /*
2911 * I don't think this is needed since we're just marking our
2912 * preallocated extent as written, but just in case it can't
2913 * hurt.
2914 */
2915 if (last == 0) {
2916 err = btrfs_run_delayed_refs(trans, root,
2917 (unsigned long)-1);
2918 BUG_ON(err);
2919 }
2920
2921 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2922 while (cache) {
2923 /*
2924 * Really this shouldn't happen, but it could if we
2925 * couldn't write the entire preallocated extent and
2926 * splitting the extent resulted in a new block.
2927 */
2928 if (cache->dirty) {
2929 btrfs_put_block_group(cache);
2930 goto again;
2931 }
2932 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
2933 break;
2934 cache = next_block_group(root, cache);
2935 }
2936 if (!cache) {
2937 if (last == 0)
2938 break;
2939 last = 0;
2940 continue;
2941 }
2942
2943 btrfs_write_out_cache(root, trans, cache, path);
2944
2945 /*
2946 * If we didn't have an error then the cache state is still
2947 * NEED_WRITE, so we can set it to WRITTEN.
2948 */
2949 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
2950 cache->disk_cache_state = BTRFS_DC_WRITTEN;
2951 last = cache->key.objectid + cache->key.offset;
2952 btrfs_put_block_group(cache);
2953 }
2954
Chris Mason9078a3e2007-04-26 16:46:15 -04002955 btrfs_free_path(path);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002956 return 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002957}
2958
Yan Zhengd2fb3432008-12-11 16:30:39 -05002959int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
2960{
2961 struct btrfs_block_group_cache *block_group;
2962 int readonly = 0;
2963
2964 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
2965 if (!block_group || block_group->ro)
2966 readonly = 1;
2967 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002968 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002969 return readonly;
2970}
2971
Chris Mason593060d2008-03-25 16:50:33 -04002972static int update_space_info(struct btrfs_fs_info *info, u64 flags,
2973 u64 total_bytes, u64 bytes_used,
2974 struct btrfs_space_info **space_info)
2975{
2976 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04002977 int i;
2978 int factor;
2979
2980 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
2981 BTRFS_BLOCK_GROUP_RAID10))
2982 factor = 2;
2983 else
2984 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04002985
2986 found = __find_space_info(info, flags);
2987 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04002988 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04002989 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04002990 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04002991 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04002992 found->disk_used += bytes_used * factor;
Chris Mason8f18cf12008-04-25 16:53:30 -04002993 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04002994 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04002995 *space_info = found;
2996 return 0;
2997 }
Yan Zhengc146afa2008-11-12 14:34:12 -05002998 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04002999 if (!found)
3000 return -ENOMEM;
3001
Yan, Zhengb742bb82010-05-16 10:46:24 -04003002 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
3003 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003004 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003005 spin_lock_init(&found->lock);
Yan, Zhengb742bb82010-05-16 10:46:24 -04003006 found->flags = flags & (BTRFS_BLOCK_GROUP_DATA |
3007 BTRFS_BLOCK_GROUP_SYSTEM |
3008 BTRFS_BLOCK_GROUP_METADATA);
Chris Mason593060d2008-03-25 16:50:33 -04003009 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003010 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003011 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003012 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003013 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003014 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003015 found->bytes_readonly = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003016 found->bytes_may_use = 0;
Chris Mason593060d2008-03-25 16:50:33 -04003017 found->full = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04003018 found->force_alloc = 0;
Chris Mason593060d2008-03-25 16:50:33 -04003019 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003020 list_add_rcu(&found->list, &info->space_info);
Josef Bacik817d52f2009-07-13 21:29:25 -04003021 atomic_set(&found->caching_threads, 0);
Chris Mason593060d2008-03-25 16:50:33 -04003022 return 0;
3023}
3024
Chris Mason8790d502008-04-03 16:29:03 -04003025static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3026{
3027 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
Chris Mason611f0e02008-04-03 16:29:03 -04003028 BTRFS_BLOCK_GROUP_RAID1 |
Chris Mason321aecc2008-04-16 10:49:51 -04003029 BTRFS_BLOCK_GROUP_RAID10 |
Chris Mason611f0e02008-04-03 16:29:03 -04003030 BTRFS_BLOCK_GROUP_DUP);
Chris Mason8790d502008-04-03 16:29:03 -04003031 if (extra_flags) {
3032 if (flags & BTRFS_BLOCK_GROUP_DATA)
3033 fs_info->avail_data_alloc_bits |= extra_flags;
3034 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3035 fs_info->avail_metadata_alloc_bits |= extra_flags;
3036 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3037 fs_info->avail_system_alloc_bits |= extra_flags;
3038 }
3039}
Chris Mason593060d2008-03-25 16:50:33 -04003040
Yan Zheng2b820322008-11-17 21:11:30 -05003041u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003042{
Chris Masoncd02dca2010-12-13 14:56:23 -05003043 /*
3044 * we add in the count of missing devices because we want
3045 * to make sure that any RAID levels on a degraded FS
3046 * continue to be honored.
3047 */
3048 u64 num_devices = root->fs_info->fs_devices->rw_devices +
3049 root->fs_info->fs_devices->missing_devices;
Chris Masona061fc82008-05-07 11:43:44 -04003050
3051 if (num_devices == 1)
3052 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0);
3053 if (num_devices < 4)
3054 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
3055
Chris Masonec44a352008-04-28 15:29:52 -04003056 if ((flags & BTRFS_BLOCK_GROUP_DUP) &&
3057 (flags & (BTRFS_BLOCK_GROUP_RAID1 |
Chris Masona061fc82008-05-07 11:43:44 -04003058 BTRFS_BLOCK_GROUP_RAID10))) {
Chris Masonec44a352008-04-28 15:29:52 -04003059 flags &= ~BTRFS_BLOCK_GROUP_DUP;
Chris Masona061fc82008-05-07 11:43:44 -04003060 }
Chris Masonec44a352008-04-28 15:29:52 -04003061
3062 if ((flags & BTRFS_BLOCK_GROUP_RAID1) &&
Chris Masona061fc82008-05-07 11:43:44 -04003063 (flags & BTRFS_BLOCK_GROUP_RAID10)) {
Chris Masonec44a352008-04-28 15:29:52 -04003064 flags &= ~BTRFS_BLOCK_GROUP_RAID1;
Chris Masona061fc82008-05-07 11:43:44 -04003065 }
Chris Masonec44a352008-04-28 15:29:52 -04003066
3067 if ((flags & BTRFS_BLOCK_GROUP_RAID0) &&
3068 ((flags & BTRFS_BLOCK_GROUP_RAID1) |
3069 (flags & BTRFS_BLOCK_GROUP_RAID10) |
3070 (flags & BTRFS_BLOCK_GROUP_DUP)))
3071 flags &= ~BTRFS_BLOCK_GROUP_RAID0;
3072 return flags;
3073}
3074
Yan, Zhengb742bb82010-05-16 10:46:24 -04003075static u64 get_alloc_profile(struct btrfs_root *root, u64 flags)
Josef Bacik6a632092009-02-20 11:00:09 -05003076{
Yan, Zhengb742bb82010-05-16 10:46:24 -04003077 if (flags & BTRFS_BLOCK_GROUP_DATA)
3078 flags |= root->fs_info->avail_data_alloc_bits &
3079 root->fs_info->data_alloc_profile;
3080 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3081 flags |= root->fs_info->avail_system_alloc_bits &
3082 root->fs_info->system_alloc_profile;
3083 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3084 flags |= root->fs_info->avail_metadata_alloc_bits &
3085 root->fs_info->metadata_alloc_profile;
3086 return btrfs_reduce_alloc_profile(root, flags);
3087}
Josef Bacik6a632092009-02-20 11:00:09 -05003088
Miao Xie6d07bce2011-01-05 10:07:31 +00003089u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003090{
3091 u64 flags;
Josef Bacik6a632092009-02-20 11:00:09 -05003092
Yan, Zhengb742bb82010-05-16 10:46:24 -04003093 if (data)
3094 flags = BTRFS_BLOCK_GROUP_DATA;
3095 else if (root == root->fs_info->chunk_root)
3096 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3097 else
3098 flags = BTRFS_BLOCK_GROUP_METADATA;
3099
3100 return get_alloc_profile(root, flags);
Josef Bacik6a632092009-02-20 11:00:09 -05003101}
3102
3103void btrfs_set_inode_space_info(struct btrfs_root *root, struct inode *inode)
3104{
Josef Bacik6a632092009-02-20 11:00:09 -05003105 BTRFS_I(inode)->space_info = __find_space_info(root->fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04003106 BTRFS_BLOCK_GROUP_DATA);
Josef Bacik6a632092009-02-20 11:00:09 -05003107}
3108
3109/*
3110 * This will check the space that the inode allocates from to make sure we have
3111 * enough space for bytes.
3112 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003113int btrfs_check_data_free_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003114{
3115 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003116 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikab6e24102010-03-19 14:38:13 +00003117 u64 used;
Josef Bacik0af3d002010-06-21 14:48:16 -04003118 int ret = 0, committed = 0, alloc_chunk = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003119
3120 /* make sure bytes are sectorsize aligned */
3121 bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
3122
Josef Bacik0af3d002010-06-21 14:48:16 -04003123 if (root == root->fs_info->tree_root) {
3124 alloc_chunk = 0;
3125 committed = 1;
3126 }
3127
Josef Bacik6a632092009-02-20 11:00:09 -05003128 data_sinfo = BTRFS_I(inode)->space_info;
Chris Mason33b4d472009-09-22 14:45:50 -04003129 if (!data_sinfo)
3130 goto alloc;
3131
Josef Bacik6a632092009-02-20 11:00:09 -05003132again:
3133 /* make sure we have enough space to handle the data first */
3134 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003135 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3136 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3137 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00003138
3139 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003140 struct btrfs_trans_handle *trans;
3141
Josef Bacik6a632092009-02-20 11:00:09 -05003142 /*
3143 * if we don't have enough free bytes in this space then we need
3144 * to alloc a new chunk.
3145 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003146 if (!data_sinfo->full && alloc_chunk) {
Josef Bacik6a632092009-02-20 11:00:09 -05003147 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05003148
3149 data_sinfo->force_alloc = 1;
3150 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04003151alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05003152 alloc_target = btrfs_get_alloc_profile(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003153 trans = btrfs_join_transaction(root, 1);
3154 if (IS_ERR(trans))
3155 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05003156
3157 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
3158 bytes + 2 * 1024 * 1024,
3159 alloc_target, 0);
3160 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00003161 if (ret < 0) {
3162 if (ret != -ENOSPC)
3163 return ret;
3164 else
3165 goto commit_trans;
3166 }
Chris Mason33b4d472009-09-22 14:45:50 -04003167
3168 if (!data_sinfo) {
3169 btrfs_set_inode_space_info(root, inode);
3170 data_sinfo = BTRFS_I(inode)->space_info;
3171 }
Josef Bacik6a632092009-02-20 11:00:09 -05003172 goto again;
3173 }
3174 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003175
3176 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00003177commit_trans:
Sage Weildd7e0b72009-09-29 18:38:44 -04003178 if (!committed && !root->fs_info->open_ioctl_trans) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003179 committed = 1;
3180 trans = btrfs_join_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003181 if (IS_ERR(trans))
3182 return PTR_ERR(trans);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003183 ret = btrfs_commit_transaction(trans, root);
3184 if (ret)
3185 return ret;
3186 goto again;
3187 }
3188
Chris Mason933b5852010-05-26 11:31:00 -04003189#if 0 /* I hope we never need this code again, just in case */
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003190 printk(KERN_ERR "no space left, need %llu, %llu bytes_used, "
3191 "%llu bytes_reserved, " "%llu bytes_pinned, "
3192 "%llu bytes_readonly, %llu may use %llu total\n",
3193 (unsigned long long)bytes,
Joel Becker21380932009-04-21 12:38:29 -07003194 (unsigned long long)data_sinfo->bytes_used,
3195 (unsigned long long)data_sinfo->bytes_reserved,
3196 (unsigned long long)data_sinfo->bytes_pinned,
3197 (unsigned long long)data_sinfo->bytes_readonly,
3198 (unsigned long long)data_sinfo->bytes_may_use,
3199 (unsigned long long)data_sinfo->total_bytes);
Chris Mason933b5852010-05-26 11:31:00 -04003200#endif
Josef Bacik6a632092009-02-20 11:00:09 -05003201 return -ENOSPC;
3202 }
3203 data_sinfo->bytes_may_use += bytes;
3204 BTRFS_I(inode)->reserved_bytes += bytes;
3205 spin_unlock(&data_sinfo->lock);
3206
Josef Bacik9ed74f22009-09-11 16:12:44 -04003207 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003208}
3209
3210/*
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003211 * called when we are clearing an delalloc extent from the
3212 * inode's io_tree or there was an error for whatever reason
3213 * after calling btrfs_check_data_free_space
Josef Bacik6a632092009-02-20 11:00:09 -05003214 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003215void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003216{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003217 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003218 struct btrfs_space_info *data_sinfo;
3219
3220 /* make sure bytes are sectorsize aligned */
3221 bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
3222
3223 data_sinfo = BTRFS_I(inode)->space_info;
3224 spin_lock(&data_sinfo->lock);
3225 data_sinfo->bytes_may_use -= bytes;
3226 BTRFS_I(inode)->reserved_bytes -= bytes;
3227 spin_unlock(&data_sinfo->lock);
3228}
3229
Josef Bacik97e728d2009-04-21 17:40:57 -04003230static void force_metadata_allocation(struct btrfs_fs_info *info)
3231{
3232 struct list_head *head = &info->space_info;
3233 struct btrfs_space_info *found;
3234
3235 rcu_read_lock();
3236 list_for_each_entry_rcu(found, head, list) {
3237 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
3238 found->force_alloc = 1;
3239 }
3240 rcu_read_unlock();
3241}
3242
Chris Masone5bc2452010-10-26 13:37:56 -04003243static int should_alloc_chunk(struct btrfs_root *root,
3244 struct btrfs_space_info *sinfo, u64 alloc_bytes)
Yan, Zheng424499d2010-05-16 10:46:25 -04003245{
3246 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Masone5bc2452010-10-26 13:37:56 -04003247 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04003248
3249 if (sinfo->bytes_used + sinfo->bytes_reserved +
3250 alloc_bytes + 256 * 1024 * 1024 < num_bytes)
3251 return 0;
3252
3253 if (sinfo->bytes_used + sinfo->bytes_reserved +
3254 alloc_bytes < div_factor(num_bytes, 8))
3255 return 0;
3256
Chris Masone5bc2452010-10-26 13:37:56 -04003257 thresh = btrfs_super_total_bytes(&root->fs_info->super_copy);
3258 thresh = max_t(u64, 256 * 1024 * 1024, div_factor_fine(thresh, 5));
3259
3260 if (num_bytes > thresh && sinfo->bytes_used < div_factor(num_bytes, 3))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04003261 return 0;
3262
Yan, Zheng424499d2010-05-16 10:46:25 -04003263 return 1;
3264}
3265
Chris Mason6324fbf2008-03-24 15:01:59 -04003266static int do_chunk_alloc(struct btrfs_trans_handle *trans,
3267 struct btrfs_root *extent_root, u64 alloc_bytes,
Chris Mason0ef3e662008-05-24 14:04:53 -04003268 u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04003269{
3270 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04003271 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Yan Zhengc146afa2008-11-12 14:34:12 -05003272 int ret = 0;
3273
Josef Bacik97e728d2009-04-21 17:40:57 -04003274 mutex_lock(&fs_info->chunk_mutex);
Chris Mason6324fbf2008-03-24 15:01:59 -04003275
Yan Zheng2b820322008-11-17 21:11:30 -05003276 flags = btrfs_reduce_alloc_profile(extent_root, flags);
Chris Masonec44a352008-04-28 15:29:52 -04003277
Chris Mason6324fbf2008-03-24 15:01:59 -04003278 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04003279 if (!space_info) {
3280 ret = update_space_info(extent_root->fs_info, flags,
3281 0, 0, &space_info);
3282 BUG_ON(ret);
3283 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003284 BUG_ON(!space_info);
3285
Josef Bacik25179202008-10-29 14:49:05 -04003286 spin_lock(&space_info->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003287 if (space_info->force_alloc)
Chris Mason0ef3e662008-05-24 14:04:53 -04003288 force = 1;
Josef Bacik25179202008-10-29 14:49:05 -04003289 if (space_info->full) {
3290 spin_unlock(&space_info->lock);
Chris Mason925baed2008-06-25 16:01:30 -04003291 goto out;
Josef Bacik25179202008-10-29 14:49:05 -04003292 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003293
Chris Masone5bc2452010-10-26 13:37:56 -04003294 if (!force && !should_alloc_chunk(extent_root, space_info,
3295 alloc_bytes)) {
Josef Bacik25179202008-10-29 14:49:05 -04003296 spin_unlock(&space_info->lock);
Chris Mason925baed2008-06-25 16:01:30 -04003297 goto out;
Josef Bacik25179202008-10-29 14:49:05 -04003298 }
Josef Bacik25179202008-10-29 14:49:05 -04003299 spin_unlock(&space_info->lock);
3300
Josef Bacik97e728d2009-04-21 17:40:57 -04003301 /*
Josef Bacik67377732010-09-16 16:19:09 -04003302 * If we have mixed data/metadata chunks we want to make sure we keep
3303 * allocating mixed chunks instead of individual chunks.
3304 */
3305 if (btrfs_mixed_space_info(space_info))
3306 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
3307
3308 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04003309 * if we're doing a data chunk, go ahead and make sure that
3310 * we keep a reasonable number of metadata chunks allocated in the
3311 * FS as well.
3312 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04003313 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04003314 fs_info->data_chunk_allocations++;
3315 if (!(fs_info->data_chunk_allocations %
3316 fs_info->metadata_ratio))
3317 force_metadata_allocation(fs_info);
3318 }
3319
Yan Zheng2b820322008-11-17 21:11:30 -05003320 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003321 spin_lock(&space_info->lock);
Chris Masond3977122009-01-05 21:25:51 -05003322 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04003323 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04003324 else
3325 ret = 1;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003326 space_info->force_alloc = 0;
3327 spin_unlock(&space_info->lock);
Chris Masona74a4b92008-06-25 16:01:31 -04003328out:
Yan Zhengc146afa2008-11-12 14:34:12 -05003329 mutex_unlock(&extent_root->fs_info->chunk_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003330 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04003331}
3332
Yan, Zheng5da9d012010-05-16 10:46:25 -04003333/*
3334 * shrink metadata reservation for delalloc
3335 */
3336static int shrink_delalloc(struct btrfs_trans_handle *trans,
Josef Bacik0019f102010-10-15 15:18:40 -04003337 struct btrfs_root *root, u64 to_reclaim, int sync)
Yan, Zheng5da9d012010-05-16 10:46:25 -04003338{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003339 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04003340 struct btrfs_space_info *space_info;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003341 u64 reserved;
3342 u64 max_reclaim;
3343 u64 reclaimed = 0;
Josef Bacikb1953bc2011-01-21 21:10:01 +00003344 long time_left;
Chris Masonbf9022e2010-10-26 13:40:45 -04003345 int nr_pages = (2 * 1024 * 1024) >> PAGE_CACHE_SHIFT;
Josef Bacikb1953bc2011-01-21 21:10:01 +00003346 int loops = 0;
Chris Mason36e39c42011-03-12 07:08:42 -05003347 unsigned long progress;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003348
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003349 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04003350 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04003351
3352 smp_mb();
Josef Bacik0019f102010-10-15 15:18:40 -04003353 reserved = space_info->bytes_reserved;
Chris Mason36e39c42011-03-12 07:08:42 -05003354 progress = space_info->reservation_progress;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003355
3356 if (reserved == 0)
3357 return 0;
3358
3359 max_reclaim = min(reserved, to_reclaim);
3360
Josef Bacikb1953bc2011-01-21 21:10:01 +00003361 while (loops < 1024) {
Chris Masonbf9022e2010-10-26 13:40:45 -04003362 /* have the flusher threads jump in and do some IO */
3363 smp_mb();
3364 nr_pages = min_t(unsigned long, nr_pages,
3365 root->fs_info->delalloc_bytes >> PAGE_CACHE_SHIFT);
3366 writeback_inodes_sb_nr_if_idle(root->fs_info->sb, nr_pages);
Yan, Zheng5da9d012010-05-16 10:46:25 -04003367
Josef Bacik0019f102010-10-15 15:18:40 -04003368 spin_lock(&space_info->lock);
Chris Mason36e39c42011-03-12 07:08:42 -05003369 if (reserved > space_info->bytes_reserved)
Josef Bacik0019f102010-10-15 15:18:40 -04003370 reclaimed += reserved - space_info->bytes_reserved;
3371 reserved = space_info->bytes_reserved;
3372 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04003373
Chris Mason36e39c42011-03-12 07:08:42 -05003374 loops++;
3375
Yan, Zheng5da9d012010-05-16 10:46:25 -04003376 if (reserved == 0 || reclaimed >= max_reclaim)
3377 break;
3378
3379 if (trans && trans->transaction->blocked)
3380 return -EAGAIN;
Chris Masonbf9022e2010-10-26 13:40:45 -04003381
Chris Mason36e39c42011-03-12 07:08:42 -05003382 time_left = schedule_timeout_interruptible(1);
Josef Bacikb1953bc2011-01-21 21:10:01 +00003383
3384 /* We were interrupted, exit */
3385 if (time_left)
3386 break;
3387
Chris Mason36e39c42011-03-12 07:08:42 -05003388 /* we've kicked the IO a few times, if anything has been freed,
3389 * exit. There is no sense in looping here for a long time
3390 * when we really need to commit the transaction, or there are
3391 * just too many writers without enough free space
3392 */
3393
3394 if (loops > 3) {
3395 smp_mb();
3396 if (progress != space_info->reservation_progress)
3397 break;
3398 }
Chris Masonbf9022e2010-10-26 13:40:45 -04003399
Yan, Zheng5da9d012010-05-16 10:46:25 -04003400 }
3401 return reclaimed >= to_reclaim;
3402}
3403
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003404/*
3405 * Retries tells us how many times we've called reserve_metadata_bytes. The
3406 * idea is if this is the first call (retries == 0) then we will add to our
3407 * reserved count if we can't make the allocation in order to hold our place
3408 * while we go and try and free up space. That way for retries > 1 we don't try
3409 * and add space, we just check to see if the amount of unused space is >= the
3410 * total space, meaning that our reservation is valid.
3411 *
3412 * However if we don't intend to retry this reservation, pass -1 as retries so
3413 * that it short circuits this logic.
3414 */
3415static int reserve_metadata_bytes(struct btrfs_trans_handle *trans,
3416 struct btrfs_root *root,
3417 struct btrfs_block_rsv *block_rsv,
3418 u64 orig_bytes, int flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003419{
3420 struct btrfs_space_info *space_info = block_rsv->space_info;
3421 u64 unused;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003422 u64 num_bytes = orig_bytes;
3423 int retries = 0;
3424 int ret = 0;
3425 bool reserved = false;
Josef Bacik38227932010-10-26 12:52:53 -04003426 bool committed = false;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003427
3428again:
3429 ret = -ENOSPC;
3430 if (reserved)
3431 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003432
3433 spin_lock(&space_info->lock);
3434 unused = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik6d487552010-10-15 15:13:32 -04003435 space_info->bytes_pinned + space_info->bytes_readonly +
3436 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003437
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003438 /*
3439 * The idea here is that we've not already over-reserved the block group
3440 * then we can go ahead and save our reservation first and then start
3441 * flushing if we need to. Otherwise if we've already overcommitted
3442 * lets start flushing stuff first and then come back and try to make
3443 * our reservation.
3444 */
3445 if (unused <= space_info->total_bytes) {
Arne Jansen6f334342010-11-12 23:17:56 +00003446 unused = space_info->total_bytes - unused;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003447 if (unused >= num_bytes) {
3448 if (!reserved)
3449 space_info->bytes_reserved += orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003450 ret = 0;
3451 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003452 /*
3453 * Ok set num_bytes to orig_bytes since we aren't
3454 * overocmmitted, this way we only try and reclaim what
3455 * we need.
3456 */
3457 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003458 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003459 } else {
3460 /*
3461 * Ok we're over committed, set num_bytes to the overcommitted
3462 * amount plus the amount of bytes that we need for this
3463 * reservation.
3464 */
3465 num_bytes = unused - space_info->total_bytes +
3466 (orig_bytes * (retries + 1));
Yan, Zhengf0486c62010-05-16 10:46:25 -04003467 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003468
3469 /*
3470 * Couldn't make our reservation, save our place so while we're trying
3471 * to reclaim space we can actually use it instead of somebody else
3472 * stealing it from us.
3473 */
3474 if (ret && !reserved) {
3475 space_info->bytes_reserved += orig_bytes;
3476 reserved = true;
3477 }
3478
Yan, Zhengf0486c62010-05-16 10:46:25 -04003479 spin_unlock(&space_info->lock);
3480
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003481 if (!ret)
3482 return 0;
3483
3484 if (!flush)
3485 goto out;
3486
3487 /*
3488 * We do synchronous shrinking since we don't actually unreserve
3489 * metadata until after the IO is completed.
3490 */
3491 ret = shrink_delalloc(trans, root, num_bytes, 1);
3492 if (ret > 0)
3493 return 0;
3494 else if (ret < 0)
3495 goto out;
3496
3497 /*
3498 * So if we were overcommitted it's possible that somebody else flushed
3499 * out enough space and we simply didn't have enough space to reclaim,
3500 * so go back around and try again.
3501 */
3502 if (retries < 2) {
3503 retries++;
3504 goto again;
3505 }
3506
3507 spin_lock(&space_info->lock);
3508 /*
3509 * Not enough space to be reclaimed, don't bother committing the
3510 * transaction.
3511 */
3512 if (space_info->bytes_pinned < orig_bytes)
3513 ret = -ENOSPC;
3514 spin_unlock(&space_info->lock);
3515 if (ret)
3516 goto out;
3517
3518 ret = -EAGAIN;
Josef Bacik38227932010-10-26 12:52:53 -04003519 if (trans || committed)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003520 goto out;
3521
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003522 ret = -ENOSPC;
3523 trans = btrfs_join_transaction(root, 1);
3524 if (IS_ERR(trans))
3525 goto out;
3526 ret = btrfs_commit_transaction(trans, root);
Josef Bacik38227932010-10-26 12:52:53 -04003527 if (!ret) {
3528 trans = NULL;
3529 committed = true;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003530 goto again;
Josef Bacik38227932010-10-26 12:52:53 -04003531 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003532
3533out:
3534 if (reserved) {
3535 spin_lock(&space_info->lock);
3536 space_info->bytes_reserved -= orig_bytes;
3537 spin_unlock(&space_info->lock);
3538 }
3539
Yan, Zhengf0486c62010-05-16 10:46:25 -04003540 return ret;
3541}
3542
3543static struct btrfs_block_rsv *get_block_rsv(struct btrfs_trans_handle *trans,
3544 struct btrfs_root *root)
3545{
3546 struct btrfs_block_rsv *block_rsv;
3547 if (root->ref_cows)
3548 block_rsv = trans->block_rsv;
3549 else
3550 block_rsv = root->block_rsv;
3551
3552 if (!block_rsv)
3553 block_rsv = &root->fs_info->empty_block_rsv;
3554
3555 return block_rsv;
3556}
3557
3558static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
3559 u64 num_bytes)
3560{
3561 int ret = -ENOSPC;
3562 spin_lock(&block_rsv->lock);
3563 if (block_rsv->reserved >= num_bytes) {
3564 block_rsv->reserved -= num_bytes;
3565 if (block_rsv->reserved < block_rsv->size)
3566 block_rsv->full = 0;
3567 ret = 0;
3568 }
3569 spin_unlock(&block_rsv->lock);
3570 return ret;
3571}
3572
3573static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
3574 u64 num_bytes, int update_size)
3575{
3576 spin_lock(&block_rsv->lock);
3577 block_rsv->reserved += num_bytes;
3578 if (update_size)
3579 block_rsv->size += num_bytes;
3580 else if (block_rsv->reserved >= block_rsv->size)
3581 block_rsv->full = 1;
3582 spin_unlock(&block_rsv->lock);
3583}
3584
3585void block_rsv_release_bytes(struct btrfs_block_rsv *block_rsv,
3586 struct btrfs_block_rsv *dest, u64 num_bytes)
3587{
3588 struct btrfs_space_info *space_info = block_rsv->space_info;
3589
3590 spin_lock(&block_rsv->lock);
3591 if (num_bytes == (u64)-1)
3592 num_bytes = block_rsv->size;
3593 block_rsv->size -= num_bytes;
3594 if (block_rsv->reserved >= block_rsv->size) {
3595 num_bytes = block_rsv->reserved - block_rsv->size;
3596 block_rsv->reserved = block_rsv->size;
3597 block_rsv->full = 1;
3598 } else {
3599 num_bytes = 0;
3600 }
3601 spin_unlock(&block_rsv->lock);
3602
3603 if (num_bytes > 0) {
3604 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00003605 spin_lock(&dest->lock);
3606 if (!dest->full) {
3607 u64 bytes_to_add;
3608
3609 bytes_to_add = dest->size - dest->reserved;
3610 bytes_to_add = min(num_bytes, bytes_to_add);
3611 dest->reserved += bytes_to_add;
3612 if (dest->reserved >= dest->size)
3613 dest->full = 1;
3614 num_bytes -= bytes_to_add;
3615 }
3616 spin_unlock(&dest->lock);
3617 }
3618 if (num_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04003619 spin_lock(&space_info->lock);
3620 space_info->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05003621 space_info->reservation_progress++;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003622 spin_unlock(&space_info->lock);
3623 }
3624 }
3625}
3626
3627static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
3628 struct btrfs_block_rsv *dst, u64 num_bytes)
3629{
3630 int ret;
3631
3632 ret = block_rsv_use_bytes(src, num_bytes);
3633 if (ret)
3634 return ret;
3635
3636 block_rsv_add_bytes(dst, num_bytes, 1);
3637 return 0;
3638}
3639
3640void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv)
3641{
3642 memset(rsv, 0, sizeof(*rsv));
3643 spin_lock_init(&rsv->lock);
3644 atomic_set(&rsv->usage, 1);
3645 rsv->priority = 6;
3646 INIT_LIST_HEAD(&rsv->list);
3647}
3648
3649struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root)
3650{
3651 struct btrfs_block_rsv *block_rsv;
3652 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003653
3654 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
3655 if (!block_rsv)
3656 return NULL;
3657
3658 btrfs_init_block_rsv(block_rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003659 block_rsv->space_info = __find_space_info(fs_info,
3660 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003661 return block_rsv;
3662}
3663
3664void btrfs_free_block_rsv(struct btrfs_root *root,
3665 struct btrfs_block_rsv *rsv)
3666{
3667 if (rsv && atomic_dec_and_test(&rsv->usage)) {
3668 btrfs_block_rsv_release(root, rsv, (u64)-1);
3669 if (!rsv->durable)
3670 kfree(rsv);
3671 }
3672}
3673
3674/*
3675 * make the block_rsv struct be able to capture freed space.
3676 * the captured space will re-add to the the block_rsv struct
3677 * after transaction commit
3678 */
3679void btrfs_add_durable_block_rsv(struct btrfs_fs_info *fs_info,
3680 struct btrfs_block_rsv *block_rsv)
3681{
3682 block_rsv->durable = 1;
3683 mutex_lock(&fs_info->durable_block_rsv_mutex);
3684 list_add_tail(&block_rsv->list, &fs_info->durable_block_rsv_list);
3685 mutex_unlock(&fs_info->durable_block_rsv_mutex);
3686}
3687
3688int btrfs_block_rsv_add(struct btrfs_trans_handle *trans,
3689 struct btrfs_root *root,
3690 struct btrfs_block_rsv *block_rsv,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003691 u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003692{
3693 int ret;
3694
3695 if (num_bytes == 0)
3696 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003697
3698 ret = reserve_metadata_bytes(trans, root, block_rsv, num_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003699 if (!ret) {
3700 block_rsv_add_bytes(block_rsv, num_bytes, 1);
3701 return 0;
3702 }
3703
Yan, Zhengf0486c62010-05-16 10:46:25 -04003704 return ret;
3705}
3706
3707int btrfs_block_rsv_check(struct btrfs_trans_handle *trans,
3708 struct btrfs_root *root,
3709 struct btrfs_block_rsv *block_rsv,
3710 u64 min_reserved, int min_factor)
3711{
3712 u64 num_bytes = 0;
3713 int commit_trans = 0;
3714 int ret = -ENOSPC;
3715
3716 if (!block_rsv)
3717 return 0;
3718
3719 spin_lock(&block_rsv->lock);
3720 if (min_factor > 0)
3721 num_bytes = div_factor(block_rsv->size, min_factor);
3722 if (min_reserved > num_bytes)
3723 num_bytes = min_reserved;
3724
3725 if (block_rsv->reserved >= num_bytes) {
3726 ret = 0;
3727 } else {
3728 num_bytes -= block_rsv->reserved;
3729 if (block_rsv->durable &&
3730 block_rsv->freed[0] + block_rsv->freed[1] >= num_bytes)
3731 commit_trans = 1;
3732 }
3733 spin_unlock(&block_rsv->lock);
3734 if (!ret)
3735 return 0;
3736
3737 if (block_rsv->refill_used) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003738 ret = reserve_metadata_bytes(trans, root, block_rsv,
3739 num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003740 if (!ret) {
3741 block_rsv_add_bytes(block_rsv, num_bytes, 0);
3742 return 0;
3743 }
3744 }
3745
3746 if (commit_trans) {
3747 if (trans)
3748 return -EAGAIN;
3749
3750 trans = btrfs_join_transaction(root, 1);
3751 BUG_ON(IS_ERR(trans));
3752 ret = btrfs_commit_transaction(trans, root);
3753 return 0;
3754 }
3755
Yan, Zhengf0486c62010-05-16 10:46:25 -04003756 return -ENOSPC;
3757}
3758
3759int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
3760 struct btrfs_block_rsv *dst_rsv,
3761 u64 num_bytes)
3762{
3763 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3764}
3765
3766void btrfs_block_rsv_release(struct btrfs_root *root,
3767 struct btrfs_block_rsv *block_rsv,
3768 u64 num_bytes)
3769{
3770 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
3771 if (global_rsv->full || global_rsv == block_rsv ||
3772 block_rsv->space_info != global_rsv->space_info)
3773 global_rsv = NULL;
3774 block_rsv_release_bytes(block_rsv, global_rsv, num_bytes);
3775}
3776
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003777/*
3778 * helper to calculate size of global block reservation.
3779 * the desired value is sum of space used by extent tree,
3780 * checksum tree and root tree
3781 */
3782static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
3783{
3784 struct btrfs_space_info *sinfo;
3785 u64 num_bytes;
3786 u64 meta_used;
3787 u64 data_used;
3788 int csum_size = btrfs_super_csum_size(&fs_info->super_copy);
3789#if 0
3790 /*
3791 * per tree used space accounting can be inaccuracy, so we
3792 * can't rely on it.
3793 */
3794 spin_lock(&fs_info->extent_root->accounting_lock);
3795 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item);
3796 spin_unlock(&fs_info->extent_root->accounting_lock);
3797
3798 spin_lock(&fs_info->csum_root->accounting_lock);
3799 num_bytes += btrfs_root_used(&fs_info->csum_root->root_item);
3800 spin_unlock(&fs_info->csum_root->accounting_lock);
3801
3802 spin_lock(&fs_info->tree_root->accounting_lock);
3803 num_bytes += btrfs_root_used(&fs_info->tree_root->root_item);
3804 spin_unlock(&fs_info->tree_root->accounting_lock);
3805#endif
3806 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
3807 spin_lock(&sinfo->lock);
3808 data_used = sinfo->bytes_used;
3809 spin_unlock(&sinfo->lock);
3810
3811 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
3812 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04003813 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
3814 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003815 meta_used = sinfo->bytes_used;
3816 spin_unlock(&sinfo->lock);
3817
3818 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
3819 csum_size * 2;
3820 num_bytes += div64_u64(data_used + meta_used, 50);
3821
3822 if (num_bytes * 3 > meta_used)
3823 num_bytes = div64_u64(meta_used, 3);
3824
3825 return ALIGN(num_bytes, fs_info->extent_root->leafsize << 10);
3826}
3827
3828static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
3829{
3830 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
3831 struct btrfs_space_info *sinfo = block_rsv->space_info;
3832 u64 num_bytes;
3833
3834 num_bytes = calc_global_metadata_size(fs_info);
3835
3836 spin_lock(&block_rsv->lock);
3837 spin_lock(&sinfo->lock);
3838
3839 block_rsv->size = num_bytes;
3840
3841 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04003842 sinfo->bytes_reserved + sinfo->bytes_readonly +
3843 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003844
3845 if (sinfo->total_bytes > num_bytes) {
3846 num_bytes = sinfo->total_bytes - num_bytes;
3847 block_rsv->reserved += num_bytes;
3848 sinfo->bytes_reserved += num_bytes;
3849 }
3850
3851 if (block_rsv->reserved >= block_rsv->size) {
3852 num_bytes = block_rsv->reserved - block_rsv->size;
3853 sinfo->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05003854 sinfo->reservation_progress++;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003855 block_rsv->reserved = block_rsv->size;
3856 block_rsv->full = 1;
3857 }
3858#if 0
3859 printk(KERN_INFO"global block rsv size %llu reserved %llu\n",
3860 block_rsv->size, block_rsv->reserved);
3861#endif
3862 spin_unlock(&sinfo->lock);
3863 spin_unlock(&block_rsv->lock);
3864}
3865
Yan, Zhengf0486c62010-05-16 10:46:25 -04003866static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
3867{
3868 struct btrfs_space_info *space_info;
3869
3870 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
3871 fs_info->chunk_block_rsv.space_info = space_info;
3872 fs_info->chunk_block_rsv.priority = 10;
3873
3874 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003875 fs_info->global_block_rsv.space_info = space_info;
3876 fs_info->global_block_rsv.priority = 10;
3877 fs_info->global_block_rsv.refill_used = 1;
3878 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003879 fs_info->trans_block_rsv.space_info = space_info;
3880 fs_info->empty_block_rsv.space_info = space_info;
3881 fs_info->empty_block_rsv.priority = 10;
3882
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003883 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
3884 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
3885 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
3886 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003887 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003888
3889 btrfs_add_durable_block_rsv(fs_info, &fs_info->global_block_rsv);
3890
3891 btrfs_add_durable_block_rsv(fs_info, &fs_info->delalloc_block_rsv);
3892
3893 update_global_block_rsv(fs_info);
3894}
3895
3896static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
3897{
3898 block_rsv_release_bytes(&fs_info->global_block_rsv, NULL, (u64)-1);
3899 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
3900 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
3901 WARN_ON(fs_info->trans_block_rsv.size > 0);
3902 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
3903 WARN_ON(fs_info->chunk_block_rsv.size > 0);
3904 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003905}
3906
Yan, Zhenga22285a2010-05-16 10:48:46 -04003907static u64 calc_trans_metadata_size(struct btrfs_root *root, int num_items)
3908{
3909 return (root->leafsize + root->nodesize * (BTRFS_MAX_LEVEL - 1)) *
3910 3 * num_items;
3911}
3912
3913int btrfs_trans_reserve_metadata(struct btrfs_trans_handle *trans,
3914 struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003915 int num_items)
Yan, Zhenga22285a2010-05-16 10:48:46 -04003916{
3917 u64 num_bytes;
3918 int ret;
3919
3920 if (num_items == 0 || root->fs_info->chunk_root == root)
3921 return 0;
3922
3923 num_bytes = calc_trans_metadata_size(root, num_items);
3924 ret = btrfs_block_rsv_add(trans, root, &root->fs_info->trans_block_rsv,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003925 num_bytes);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003926 if (!ret) {
3927 trans->bytes_reserved += num_bytes;
3928 trans->block_rsv = &root->fs_info->trans_block_rsv;
3929 }
3930 return ret;
3931}
3932
3933void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
3934 struct btrfs_root *root)
3935{
3936 if (!trans->bytes_reserved)
3937 return;
3938
3939 BUG_ON(trans->block_rsv != &root->fs_info->trans_block_rsv);
3940 btrfs_block_rsv_release(root, trans->block_rsv,
3941 trans->bytes_reserved);
3942 trans->bytes_reserved = 0;
3943}
3944
Yan, Zhengd68fc572010-05-16 10:49:58 -04003945int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
3946 struct inode *inode)
3947{
3948 struct btrfs_root *root = BTRFS_I(inode)->root;
3949 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
3950 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
3951
3952 /*
3953 * one for deleting orphan item, one for updating inode and
3954 * two for calling btrfs_truncate_inode_items.
3955 *
3956 * btrfs_truncate_inode_items is a delete operation, it frees
3957 * more space than it uses in most cases. So two units of
3958 * metadata space should be enough for calling it many times.
3959 * If all of the metadata space is used, we can commit
3960 * transaction and use space it freed.
3961 */
3962 u64 num_bytes = calc_trans_metadata_size(root, 4);
3963 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3964}
3965
3966void btrfs_orphan_release_metadata(struct inode *inode)
3967{
3968 struct btrfs_root *root = BTRFS_I(inode)->root;
3969 u64 num_bytes = calc_trans_metadata_size(root, 4);
3970 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
3971}
3972
Yan, Zhenga22285a2010-05-16 10:48:46 -04003973int btrfs_snap_reserve_metadata(struct btrfs_trans_handle *trans,
3974 struct btrfs_pending_snapshot *pending)
3975{
3976 struct btrfs_root *root = pending->root;
3977 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
3978 struct btrfs_block_rsv *dst_rsv = &pending->block_rsv;
3979 /*
3980 * two for root back/forward refs, two for directory entries
3981 * and one for root of the snapshot.
3982 */
3983 u64 num_bytes = calc_trans_metadata_size(root, 5);
3984 dst_rsv->space_info = src_rsv->space_info;
3985 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3986}
3987
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003988static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes)
3989{
3990 return num_bytes >>= 3;
3991}
3992
3993int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
3994{
3995 struct btrfs_root *root = BTRFS_I(inode)->root;
3996 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
3997 u64 to_reserve;
3998 int nr_extents;
Josef Bacik57a45ced2011-01-25 16:30:38 -05003999 int reserved_extents;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004000 int ret;
4001
4002 if (btrfs_transaction_in_commit(root->fs_info))
4003 schedule_timeout(1);
4004
4005 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004006
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004007 nr_extents = atomic_read(&BTRFS_I(inode)->outstanding_extents) + 1;
Josef Bacik57a45ced2011-01-25 16:30:38 -05004008 reserved_extents = atomic_read(&BTRFS_I(inode)->reserved_extents);
4009
4010 if (nr_extents > reserved_extents) {
4011 nr_extents -= reserved_extents;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004012 to_reserve = calc_trans_metadata_size(root, nr_extents);
4013 } else {
4014 nr_extents = 0;
4015 to_reserve = 0;
4016 }
Josef Bacik57a45ced2011-01-25 16:30:38 -05004017
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004018 to_reserve += calc_csum_metadata_size(inode, num_bytes);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004019 ret = reserve_metadata_bytes(NULL, root, block_rsv, to_reserve, 1);
4020 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004021 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004022
Josef Bacik57a45ced2011-01-25 16:30:38 -05004023 atomic_add(nr_extents, &BTRFS_I(inode)->reserved_extents);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004024 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004025
4026 block_rsv_add_bytes(block_rsv, to_reserve, 1);
4027
4028 if (block_rsv->size > 512 * 1024 * 1024)
Josef Bacik0019f102010-10-15 15:18:40 -04004029 shrink_delalloc(NULL, root, to_reserve, 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004030
4031 return 0;
4032}
4033
4034void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
4035{
4036 struct btrfs_root *root = BTRFS_I(inode)->root;
4037 u64 to_free;
4038 int nr_extents;
Josef Bacik57a45ced2011-01-25 16:30:38 -05004039 int reserved_extents;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004040
4041 num_bytes = ALIGN(num_bytes, root->sectorsize);
4042 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik3c148742011-02-02 15:53:47 +00004043 WARN_ON(atomic_read(&BTRFS_I(inode)->outstanding_extents) < 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004044
Josef Bacik57a45ced2011-01-25 16:30:38 -05004045 reserved_extents = atomic_read(&BTRFS_I(inode)->reserved_extents);
4046 do {
4047 int old, new;
4048
4049 nr_extents = atomic_read(&BTRFS_I(inode)->outstanding_extents);
4050 if (nr_extents >= reserved_extents) {
4051 nr_extents = 0;
4052 break;
4053 }
4054 old = reserved_extents;
4055 nr_extents = reserved_extents - nr_extents;
4056 new = reserved_extents - nr_extents;
4057 old = atomic_cmpxchg(&BTRFS_I(inode)->reserved_extents,
4058 reserved_extents, new);
4059 if (likely(old == reserved_extents))
4060 break;
4061 reserved_extents = old;
4062 } while (1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004063
4064 to_free = calc_csum_metadata_size(inode, num_bytes);
4065 if (nr_extents > 0)
4066 to_free += calc_trans_metadata_size(root, nr_extents);
4067
4068 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
4069 to_free);
4070}
4071
4072int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
4073{
4074 int ret;
4075
4076 ret = btrfs_check_data_free_space(inode, num_bytes);
4077 if (ret)
4078 return ret;
4079
4080 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
4081 if (ret) {
4082 btrfs_free_reserved_data_space(inode, num_bytes);
4083 return ret;
4084 }
4085
4086 return 0;
4087}
4088
4089void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
4090{
4091 btrfs_delalloc_release_metadata(inode, num_bytes);
4092 btrfs_free_reserved_data_space(inode, num_bytes);
4093}
4094
Chris Mason9078a3e2007-04-26 16:46:15 -04004095static int update_block_group(struct btrfs_trans_handle *trans,
4096 struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04004097 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04004098{
Josef Bacik0af3d002010-06-21 14:48:16 -04004099 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04004100 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04004101 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004102 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04004103 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04004104 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04004105
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004106 /* block accounting for super block */
4107 spin_lock(&info->delalloc_lock);
4108 old_val = btrfs_super_bytes_used(&info->super_copy);
4109 if (alloc)
4110 old_val += num_bytes;
4111 else
4112 old_val -= num_bytes;
4113 btrfs_set_super_bytes_used(&info->super_copy, old_val);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004114 spin_unlock(&info->delalloc_lock);
4115
Chris Masond3977122009-01-05 21:25:51 -05004116 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04004117 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004118 if (!cache)
Chris Mason9078a3e2007-04-26 16:46:15 -04004119 return -1;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004120 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
4121 BTRFS_BLOCK_GROUP_RAID1 |
4122 BTRFS_BLOCK_GROUP_RAID10))
4123 factor = 2;
4124 else
4125 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04004126 /*
4127 * If this block group has free space cache written out, we
4128 * need to make sure to load it if we are removing space. This
4129 * is because we need the unpinning stage to actually add the
4130 * space back to the block group, otherwise we will leak space.
4131 */
4132 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Josef Bacikb8399de2010-12-08 09:15:11 -05004133 cache_block_group(cache, trans, NULL, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04004134
Chris Masondb945352007-10-15 16:15:53 -04004135 byte_in_group = bytenr - cache->key.objectid;
4136 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04004137
Josef Bacik25179202008-10-29 14:49:05 -04004138 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04004139 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04004140
4141 if (btrfs_super_cache_generation(&info->super_copy) != 0 &&
4142 cache->disk_cache_state < BTRFS_DC_CLEAR)
4143 cache->disk_cache_state = BTRFS_DC_CLEAR;
4144
Josef Bacik0f9dd462008-09-23 13:14:11 -04004145 cache->dirty = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04004146 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04004147 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04004148 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04004149 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04004150 btrfs_set_block_group_used(&cache->item, old_val);
4151 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04004152 cache->space_info->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05004153 cache->space_info->reservation_progress++;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004154 cache->space_info->bytes_used += num_bytes;
4155 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04004156 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04004157 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04004158 } else {
Chris Masondb945352007-10-15 16:15:53 -04004159 old_val -= num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04004160 btrfs_set_block_group_used(&cache->item, old_val);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004161 cache->pinned += num_bytes;
4162 cache->space_info->bytes_pinned += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004163 cache->space_info->bytes_used -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004164 cache->space_info->disk_used -= num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04004165 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04004166 spin_unlock(&cache->space_info->lock);
Liu Hui1f3c79a2009-01-05 15:57:51 -05004167
Yan, Zhengf0486c62010-05-16 10:46:25 -04004168 set_extent_dirty(info->pinned_extents,
4169 bytenr, bytenr + num_bytes - 1,
4170 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04004171 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04004172 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04004173 total -= num_bytes;
4174 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004175 }
4176 return 0;
4177}
Chris Mason6324fbf2008-03-24 15:01:59 -04004178
Chris Masona061fc82008-05-07 11:43:44 -04004179static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
4180{
Josef Bacik0f9dd462008-09-23 13:14:11 -04004181 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004182 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004183
4184 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
4185 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04004186 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004187
Yan Zhengd2fb3432008-12-11 16:30:39 -05004188 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04004189 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05004190
4191 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04004192}
4193
Yan, Zhengf0486c62010-05-16 10:46:25 -04004194static int pin_down_extent(struct btrfs_root *root,
4195 struct btrfs_block_group_cache *cache,
4196 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05004197{
Yan Zheng11833d62009-09-11 16:11:19 -04004198 spin_lock(&cache->space_info->lock);
4199 spin_lock(&cache->lock);
4200 cache->pinned += num_bytes;
4201 cache->space_info->bytes_pinned += num_bytes;
4202 if (reserved) {
4203 cache->reserved -= num_bytes;
4204 cache->space_info->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05004205 cache->space_info->reservation_progress++;
Yan324ae4d2007-11-16 14:57:08 -05004206 }
Yan Zheng11833d62009-09-11 16:11:19 -04004207 spin_unlock(&cache->lock);
4208 spin_unlock(&cache->space_info->lock);
4209
Yan, Zhengf0486c62010-05-16 10:46:25 -04004210 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
4211 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05004212 return 0;
4213}
Chris Mason9078a3e2007-04-26 16:46:15 -04004214
Yan, Zhengf0486c62010-05-16 10:46:25 -04004215/*
4216 * this function must be called within transaction
4217 */
4218int btrfs_pin_extent(struct btrfs_root *root,
4219 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04004220{
Yan, Zhengf0486c62010-05-16 10:46:25 -04004221 struct btrfs_block_group_cache *cache;
4222
4223 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
4224 BUG_ON(!cache);
4225
4226 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
4227
4228 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04004229 return 0;
4230}
Zheng Yane8569812008-09-26 10:05:48 -04004231
Yan, Zhengf0486c62010-05-16 10:46:25 -04004232/*
4233 * update size of reserved extents. this function may return -EAGAIN
4234 * if 'reserve' is true or 'sinfo' is false.
4235 */
4236static int update_reserved_bytes(struct btrfs_block_group_cache *cache,
4237 u64 num_bytes, int reserve, int sinfo)
4238{
4239 int ret = 0;
4240 if (sinfo) {
4241 struct btrfs_space_info *space_info = cache->space_info;
4242 spin_lock(&space_info->lock);
4243 spin_lock(&cache->lock);
4244 if (reserve) {
4245 if (cache->ro) {
4246 ret = -EAGAIN;
4247 } else {
4248 cache->reserved += num_bytes;
4249 space_info->bytes_reserved += num_bytes;
4250 }
4251 } else {
4252 if (cache->ro)
4253 space_info->bytes_readonly += num_bytes;
4254 cache->reserved -= num_bytes;
4255 space_info->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05004256 space_info->reservation_progress++;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004257 }
4258 spin_unlock(&cache->lock);
4259 spin_unlock(&space_info->lock);
4260 } else {
4261 spin_lock(&cache->lock);
4262 if (cache->ro) {
4263 ret = -EAGAIN;
4264 } else {
4265 if (reserve)
4266 cache->reserved += num_bytes;
4267 else
4268 cache->reserved -= num_bytes;
4269 }
4270 spin_unlock(&cache->lock);
4271 }
4272 return ret;
4273}
4274
Yan Zheng11833d62009-09-11 16:11:19 -04004275int btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
4276 struct btrfs_root *root)
4277{
4278 struct btrfs_fs_info *fs_info = root->fs_info;
4279 struct btrfs_caching_control *next;
4280 struct btrfs_caching_control *caching_ctl;
4281 struct btrfs_block_group_cache *cache;
4282
4283 down_write(&fs_info->extent_commit_sem);
4284
4285 list_for_each_entry_safe(caching_ctl, next,
4286 &fs_info->caching_block_groups, list) {
4287 cache = caching_ctl->block_group;
4288 if (block_group_cache_done(cache)) {
4289 cache->last_byte_to_unpin = (u64)-1;
4290 list_del_init(&caching_ctl->list);
4291 put_caching_control(caching_ctl);
4292 } else {
4293 cache->last_byte_to_unpin = caching_ctl->progress;
4294 }
4295 }
4296
4297 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
4298 fs_info->pinned_extents = &fs_info->freed_extents[1];
4299 else
4300 fs_info->pinned_extents = &fs_info->freed_extents[0];
4301
4302 up_write(&fs_info->extent_commit_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004303
4304 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04004305 return 0;
4306}
4307
4308static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
4309{
4310 struct btrfs_fs_info *fs_info = root->fs_info;
4311 struct btrfs_block_group_cache *cache = NULL;
4312 u64 len;
4313
4314 while (start <= end) {
4315 if (!cache ||
4316 start >= cache->key.objectid + cache->key.offset) {
4317 if (cache)
4318 btrfs_put_block_group(cache);
4319 cache = btrfs_lookup_block_group(fs_info, start);
4320 BUG_ON(!cache);
4321 }
4322
4323 len = cache->key.objectid + cache->key.offset - start;
4324 len = min(len, end + 1 - start);
4325
4326 if (start < cache->last_byte_to_unpin) {
4327 len = min(len, cache->last_byte_to_unpin - start);
4328 btrfs_add_free_space(cache, start, len);
4329 }
Josef Bacik25179202008-10-29 14:49:05 -04004330
Yan, Zhengf0486c62010-05-16 10:46:25 -04004331 start += len;
4332
Josef Bacik25179202008-10-29 14:49:05 -04004333 spin_lock(&cache->space_info->lock);
4334 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04004335 cache->pinned -= len;
4336 cache->space_info->bytes_pinned -= len;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004337 if (cache->ro) {
4338 cache->space_info->bytes_readonly += len;
4339 } else if (cache->reserved_pinned > 0) {
4340 len = min(len, cache->reserved_pinned);
4341 cache->reserved_pinned -= len;
4342 cache->space_info->bytes_reserved += len;
4343 }
Josef Bacik25179202008-10-29 14:49:05 -04004344 spin_unlock(&cache->lock);
4345 spin_unlock(&cache->space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04004346 }
4347
4348 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04004349 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04004350 return 0;
4351}
4352
4353int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04004354 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05004355{
Yan Zheng11833d62009-09-11 16:11:19 -04004356 struct btrfs_fs_info *fs_info = root->fs_info;
4357 struct extent_io_tree *unpin;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004358 struct btrfs_block_rsv *block_rsv;
4359 struct btrfs_block_rsv *next_rsv;
Chris Mason1a5bc162007-10-15 16:15:26 -04004360 u64 start;
4361 u64 end;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004362 int idx;
Chris Masona28ec192007-03-06 20:08:01 -05004363 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05004364
Yan Zheng11833d62009-09-11 16:11:19 -04004365 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
4366 unpin = &fs_info->freed_extents[1];
4367 else
4368 unpin = &fs_info->freed_extents[0];
4369
Chris Masond3977122009-01-05 21:25:51 -05004370 while (1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04004371 ret = find_first_extent_bit(unpin, 0, &start, &end,
4372 EXTENT_DIRTY);
4373 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05004374 break;
Liu Hui1f3c79a2009-01-05 15:57:51 -05004375
4376 ret = btrfs_discard_extent(root, start, end + 1 - start);
4377
Chris Mason1a5bc162007-10-15 16:15:26 -04004378 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Yan Zheng11833d62009-09-11 16:11:19 -04004379 unpin_extent_range(root, start, end);
Chris Masonb9473432009-03-13 11:00:37 -04004380 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05004381 }
Josef Bacik817d52f2009-07-13 21:29:25 -04004382
Yan, Zhengf0486c62010-05-16 10:46:25 -04004383 mutex_lock(&fs_info->durable_block_rsv_mutex);
4384 list_for_each_entry_safe(block_rsv, next_rsv,
4385 &fs_info->durable_block_rsv_list, list) {
Chris Masona28ec192007-03-06 20:08:01 -05004386
Yan, Zhengf0486c62010-05-16 10:46:25 -04004387 idx = trans->transid & 0x1;
4388 if (block_rsv->freed[idx] > 0) {
4389 block_rsv_add_bytes(block_rsv,
4390 block_rsv->freed[idx], 0);
4391 block_rsv->freed[idx] = 0;
Chris Mason8ef97622007-03-26 10:15:30 -04004392 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004393 if (atomic_read(&block_rsv->usage) == 0) {
4394 btrfs_block_rsv_release(root, block_rsv, (u64)-1);
Zheng Yan31840ae2008-09-23 13:14:14 -04004395
Yan, Zhengf0486c62010-05-16 10:46:25 -04004396 if (block_rsv->freed[0] == 0 &&
4397 block_rsv->freed[1] == 0) {
4398 list_del_init(&block_rsv->list);
4399 kfree(block_rsv);
4400 }
4401 } else {
4402 btrfs_block_rsv_release(root, block_rsv, 0);
4403 }
4404 }
4405 mutex_unlock(&fs_info->durable_block_rsv_mutex);
4406
Chris Masone20d96d2007-03-22 12:13:20 -04004407 return 0;
4408}
4409
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004410static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
4411 struct btrfs_root *root,
4412 u64 bytenr, u64 num_bytes, u64 parent,
4413 u64 root_objectid, u64 owner_objectid,
4414 u64 owner_offset, int refs_to_drop,
4415 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05004416{
Chris Masone2fa7222007-03-12 16:22:34 -04004417 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004418 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04004419 struct btrfs_fs_info *info = root->fs_info;
4420 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04004421 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004422 struct btrfs_extent_item *ei;
4423 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05004424 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004425 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05004426 int extent_slot = 0;
4427 int found_extent = 0;
4428 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004429 u32 item_size;
4430 u64 refs;
Chris Mason037e6392007-03-07 11:50:24 -05004431
Chris Mason5caf2a02007-04-02 11:20:42 -04004432 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04004433 if (!path)
4434 return -ENOMEM;
4435
Chris Mason3c12ac72008-04-21 12:01:38 -04004436 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04004437 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004438
4439 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
4440 BUG_ON(!is_data && refs_to_drop != 1);
4441
4442 ret = lookup_extent_backref(trans, extent_root, path, &iref,
4443 bytenr, num_bytes, parent,
4444 root_objectid, owner_objectid,
4445 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05004446 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05004447 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004448 while (extent_slot >= 0) {
4449 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05004450 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004451 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05004452 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004453 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
4454 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05004455 found_extent = 1;
4456 break;
4457 }
4458 if (path->slots[0] - extent_slot > 5)
4459 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004460 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05004461 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004462#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4463 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
4464 if (found_extent && item_size < sizeof(*ei))
4465 found_extent = 0;
4466#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04004467 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004468 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04004469 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004470 NULL, refs_to_drop,
4471 is_data);
Zheng Yan31840ae2008-09-23 13:14:14 -04004472 BUG_ON(ret);
4473 btrfs_release_path(extent_root, path);
Chris Masonb9473432009-03-13 11:00:37 -04004474 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004475
4476 key.objectid = bytenr;
4477 key.type = BTRFS_EXTENT_ITEM_KEY;
4478 key.offset = num_bytes;
4479
Zheng Yan31840ae2008-09-23 13:14:14 -04004480 ret = btrfs_search_slot(trans, extent_root,
4481 &key, path, -1, 1);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004482 if (ret) {
4483 printk(KERN_ERR "umm, got %d back from search"
Chris Masond3977122009-01-05 21:25:51 -05004484 ", was looking for %llu\n", ret,
4485 (unsigned long long)bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004486 btrfs_print_leaf(extent_root, path->nodes[0]);
4487 }
Zheng Yan31840ae2008-09-23 13:14:14 -04004488 BUG_ON(ret);
4489 extent_slot = path->slots[0];
4490 }
Chris Mason7bb86312007-12-11 09:25:06 -05004491 } else {
4492 btrfs_print_leaf(extent_root, path->nodes[0]);
4493 WARN_ON(1);
Chris Masond3977122009-01-05 21:25:51 -05004494 printk(KERN_ERR "btrfs unable to find ref byte nr %llu "
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004495 "parent %llu root %llu owner %llu offset %llu\n",
Chris Masond3977122009-01-05 21:25:51 -05004496 (unsigned long long)bytenr,
Chris Mason56bec292009-03-13 10:10:06 -04004497 (unsigned long long)parent,
Chris Masond3977122009-01-05 21:25:51 -05004498 (unsigned long long)root_objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004499 (unsigned long long)owner_objectid,
4500 (unsigned long long)owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05004501 }
Chris Mason5f39d392007-10-15 16:14:19 -04004502
4503 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004504 item_size = btrfs_item_size_nr(leaf, extent_slot);
4505#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4506 if (item_size < sizeof(*ei)) {
4507 BUG_ON(found_extent || extent_slot != path->slots[0]);
4508 ret = convert_extent_item_v0(trans, extent_root, path,
4509 owner_objectid, 0);
4510 BUG_ON(ret < 0);
4511
4512 btrfs_release_path(extent_root, path);
4513 path->leave_spinning = 1;
4514
4515 key.objectid = bytenr;
4516 key.type = BTRFS_EXTENT_ITEM_KEY;
4517 key.offset = num_bytes;
4518
4519 ret = btrfs_search_slot(trans, extent_root, &key, path,
4520 -1, 1);
4521 if (ret) {
4522 printk(KERN_ERR "umm, got %d back from search"
4523 ", was looking for %llu\n", ret,
4524 (unsigned long long)bytenr);
4525 btrfs_print_leaf(extent_root, path->nodes[0]);
4526 }
4527 BUG_ON(ret);
4528 extent_slot = path->slots[0];
4529 leaf = path->nodes[0];
4530 item_size = btrfs_item_size_nr(leaf, extent_slot);
4531 }
4532#endif
4533 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05004534 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04004535 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004536 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID) {
4537 struct btrfs_tree_block_info *bi;
4538 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
4539 bi = (struct btrfs_tree_block_info *)(ei + 1);
4540 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05004541 }
4542
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004543 refs = btrfs_extent_refs(leaf, ei);
4544 BUG_ON(refs < refs_to_drop);
4545 refs -= refs_to_drop;
4546
4547 if (refs > 0) {
4548 if (extent_op)
4549 __run_delayed_extent_op(extent_op, leaf, ei);
4550 /*
4551 * In the case of inline back ref, reference count will
4552 * be updated by remove_extent_backref
4553 */
4554 if (iref) {
4555 BUG_ON(!found_extent);
4556 } else {
4557 btrfs_set_extent_refs(leaf, ei, refs);
4558 btrfs_mark_buffer_dirty(leaf);
4559 }
4560 if (found_extent) {
4561 ret = remove_extent_backref(trans, extent_root, path,
4562 iref, refs_to_drop,
4563 is_data);
4564 BUG_ON(ret);
4565 }
4566 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004567 if (found_extent) {
4568 BUG_ON(is_data && refs_to_drop !=
4569 extent_data_ref_count(root, path, iref));
4570 if (iref) {
4571 BUG_ON(path->slots[0] != extent_slot);
4572 } else {
4573 BUG_ON(path->slots[0] != extent_slot + 1);
4574 path->slots[0] = extent_slot;
4575 num_to_del = 2;
4576 }
Chris Mason78fae272007-03-25 11:35:08 -04004577 }
Chris Masonb9473432009-03-13 11:00:37 -04004578
Chris Mason952fcca2008-02-18 16:33:44 -05004579 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
4580 num_to_del);
Zheng Yan31840ae2008-09-23 13:14:14 -04004581 BUG_ON(ret);
Josef Bacik25179202008-10-29 14:49:05 -04004582 btrfs_release_path(extent_root, path);
David Woodhouse21af8042008-08-12 14:13:26 +01004583
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004584 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05004585 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
4586 BUG_ON(ret);
Chris Masond57e62b2009-03-31 13:47:50 -04004587 } else {
4588 invalidate_mapping_pages(info->btree_inode->i_mapping,
4589 bytenr >> PAGE_CACHE_SHIFT,
4590 (bytenr + num_bytes - 1) >> PAGE_CACHE_SHIFT);
Chris Mason459931e2008-12-10 09:10:46 -05004591 }
4592
Yan, Zhengf0486c62010-05-16 10:46:25 -04004593 ret = update_block_group(trans, root, bytenr, num_bytes, 0);
Chris Masondcbdd4d2008-12-16 13:51:01 -05004594 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05004595 }
Chris Mason5caf2a02007-04-02 11:20:42 -04004596 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05004597 return ret;
4598}
4599
4600/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04004601 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04004602 * delayed ref for that extent as well. This searches the delayed ref tree for
4603 * a given extent, and if there are no other delayed refs to be processed, it
4604 * removes it from the tree.
4605 */
4606static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
4607 struct btrfs_root *root, u64 bytenr)
4608{
4609 struct btrfs_delayed_ref_head *head;
4610 struct btrfs_delayed_ref_root *delayed_refs;
4611 struct btrfs_delayed_ref_node *ref;
4612 struct rb_node *node;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004613 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04004614
4615 delayed_refs = &trans->transaction->delayed_refs;
4616 spin_lock(&delayed_refs->lock);
4617 head = btrfs_find_delayed_ref_head(trans, bytenr);
4618 if (!head)
4619 goto out;
4620
4621 node = rb_prev(&head->node.rb_node);
4622 if (!node)
4623 goto out;
4624
4625 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
4626
4627 /* there are still entries for this ref, we can't drop it */
4628 if (ref->bytenr == bytenr)
4629 goto out;
4630
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004631 if (head->extent_op) {
4632 if (!head->must_insert_reserved)
4633 goto out;
4634 kfree(head->extent_op);
4635 head->extent_op = NULL;
4636 }
4637
Chris Mason1887be62009-03-13 10:11:24 -04004638 /*
4639 * waiting for the lock here would deadlock. If someone else has it
4640 * locked they are already in the process of dropping it anyway
4641 */
4642 if (!mutex_trylock(&head->mutex))
4643 goto out;
4644
4645 /*
4646 * at this point we have a head with no other entries. Go
4647 * ahead and process it.
4648 */
4649 head->node.in_tree = 0;
4650 rb_erase(&head->node.rb_node, &delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04004651
Chris Mason1887be62009-03-13 10:11:24 -04004652 delayed_refs->num_entries--;
4653
4654 /*
4655 * we don't take a ref on the node because we're removing it from the
4656 * tree, so we just steal the ref the tree was holding.
4657 */
Chris Masonc3e69d52009-03-13 10:17:05 -04004658 delayed_refs->num_heads--;
4659 if (list_empty(&head->cluster))
4660 delayed_refs->num_heads_ready--;
4661
4662 list_del_init(&head->cluster);
Chris Mason1887be62009-03-13 10:11:24 -04004663 spin_unlock(&delayed_refs->lock);
4664
Yan, Zhengf0486c62010-05-16 10:46:25 -04004665 BUG_ON(head->extent_op);
4666 if (head->must_insert_reserved)
4667 ret = 1;
4668
4669 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04004670 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004671 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04004672out:
4673 spin_unlock(&delayed_refs->lock);
4674 return 0;
4675}
4676
Yan, Zhengf0486c62010-05-16 10:46:25 -04004677void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
4678 struct btrfs_root *root,
4679 struct extent_buffer *buf,
4680 u64 parent, int last_ref)
4681{
4682 struct btrfs_block_rsv *block_rsv;
4683 struct btrfs_block_group_cache *cache = NULL;
4684 int ret;
4685
4686 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4687 ret = btrfs_add_delayed_tree_ref(trans, buf->start, buf->len,
4688 parent, root->root_key.objectid,
4689 btrfs_header_level(buf),
4690 BTRFS_DROP_DELAYED_REF, NULL);
4691 BUG_ON(ret);
4692 }
4693
4694 if (!last_ref)
4695 return;
4696
4697 block_rsv = get_block_rsv(trans, root);
4698 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
Yan, Zheng3bf84a52010-05-31 09:04:46 +00004699 if (block_rsv->space_info != cache->space_info)
4700 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004701
4702 if (btrfs_header_generation(buf) == trans->transid) {
4703 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4704 ret = check_ref_cleanup(trans, root, buf->start);
4705 if (!ret)
4706 goto pin;
4707 }
4708
4709 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
4710 pin_down_extent(root, cache, buf->start, buf->len, 1);
4711 goto pin;
4712 }
4713
4714 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
4715
4716 btrfs_add_free_space(cache, buf->start, buf->len);
4717 ret = update_reserved_bytes(cache, buf->len, 0, 0);
4718 if (ret == -EAGAIN) {
4719 /* block group became read-only */
4720 update_reserved_bytes(cache, buf->len, 0, 1);
4721 goto out;
4722 }
4723
4724 ret = 1;
4725 spin_lock(&block_rsv->lock);
4726 if (block_rsv->reserved < block_rsv->size) {
4727 block_rsv->reserved += buf->len;
4728 ret = 0;
4729 }
4730 spin_unlock(&block_rsv->lock);
4731
4732 if (ret) {
4733 spin_lock(&cache->space_info->lock);
4734 cache->space_info->bytes_reserved -= buf->len;
Chris Mason36e39c42011-03-12 07:08:42 -05004735 cache->space_info->reservation_progress++;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004736 spin_unlock(&cache->space_info->lock);
4737 }
4738 goto out;
4739 }
4740pin:
4741 if (block_rsv->durable && !cache->ro) {
4742 ret = 0;
4743 spin_lock(&cache->lock);
4744 if (!cache->ro) {
4745 cache->reserved_pinned += buf->len;
4746 ret = 1;
4747 }
4748 spin_unlock(&cache->lock);
4749
4750 if (ret) {
4751 spin_lock(&block_rsv->lock);
4752 block_rsv->freed[trans->transid & 0x1] += buf->len;
4753 spin_unlock(&block_rsv->lock);
4754 }
4755 }
4756out:
Josef Bacika826d6d2011-03-16 13:42:43 -04004757 /*
4758 * Deleting the buffer, clear the corrupt flag since it doesn't matter
4759 * anymore.
4760 */
4761 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004762 btrfs_put_block_group(cache);
4763}
4764
Chris Mason925baed2008-06-25 16:01:30 -04004765int btrfs_free_extent(struct btrfs_trans_handle *trans,
Zheng Yan31840ae2008-09-23 13:14:14 -04004766 struct btrfs_root *root,
4767 u64 bytenr, u64 num_bytes, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004768 u64 root_objectid, u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04004769{
4770 int ret;
4771
Chris Mason56bec292009-03-13 10:10:06 -04004772 /*
4773 * tree log blocks never actually go into the extent allocation
4774 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04004775 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004776 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
4777 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04004778 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04004779 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04004780 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004781 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
4782 ret = btrfs_add_delayed_tree_ref(trans, bytenr, num_bytes,
4783 parent, root_objectid, (int)owner,
4784 BTRFS_DROP_DELAYED_REF, NULL);
Chris Mason1887be62009-03-13 10:11:24 -04004785 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004786 } else {
4787 ret = btrfs_add_delayed_data_ref(trans, bytenr, num_bytes,
4788 parent, root_objectid, owner,
4789 offset, BTRFS_DROP_DELAYED_REF, NULL);
4790 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04004791 }
Chris Mason925baed2008-06-25 16:01:30 -04004792 return ret;
4793}
4794
Chris Mason87ee04e2007-11-30 11:30:34 -05004795static u64 stripe_align(struct btrfs_root *root, u64 val)
4796{
4797 u64 mask = ((u64)root->stripesize - 1);
4798 u64 ret = (val + mask) & ~mask;
4799 return ret;
4800}
4801
Chris Masonfec577f2007-02-26 10:40:21 -05004802/*
Josef Bacik817d52f2009-07-13 21:29:25 -04004803 * when we wait for progress in the block group caching, its because
4804 * our allocation attempt failed at least once. So, we must sleep
4805 * and let some progress happen before we try again.
4806 *
4807 * This function will sleep at least once waiting for new free space to
4808 * show up, and then it will check the block group free space numbers
4809 * for our min num_bytes. Another option is to have it go ahead
4810 * and look in the rbtree for a free extent of a given size, but this
4811 * is a good start.
4812 */
4813static noinline int
4814wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
4815 u64 num_bytes)
4816{
Yan Zheng11833d62009-09-11 16:11:19 -04004817 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04004818 DEFINE_WAIT(wait);
4819
Yan Zheng11833d62009-09-11 16:11:19 -04004820 caching_ctl = get_caching_control(cache);
4821 if (!caching_ctl)
Josef Bacik817d52f2009-07-13 21:29:25 -04004822 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -04004823
Yan Zheng11833d62009-09-11 16:11:19 -04004824 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Josef Bacik817d52f2009-07-13 21:29:25 -04004825 (cache->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04004826
4827 put_caching_control(caching_ctl);
4828 return 0;
4829}
4830
4831static noinline int
4832wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
4833{
4834 struct btrfs_caching_control *caching_ctl;
4835 DEFINE_WAIT(wait);
4836
4837 caching_ctl = get_caching_control(cache);
4838 if (!caching_ctl)
4839 return 0;
4840
4841 wait_event(caching_ctl->wait, block_group_cache_done(cache));
4842
4843 put_caching_control(caching_ctl);
Josef Bacik817d52f2009-07-13 21:29:25 -04004844 return 0;
4845}
4846
Yan, Zhengb742bb82010-05-16 10:46:24 -04004847static int get_block_group_index(struct btrfs_block_group_cache *cache)
4848{
4849 int index;
4850 if (cache->flags & BTRFS_BLOCK_GROUP_RAID10)
4851 index = 0;
4852 else if (cache->flags & BTRFS_BLOCK_GROUP_RAID1)
4853 index = 1;
4854 else if (cache->flags & BTRFS_BLOCK_GROUP_DUP)
4855 index = 2;
4856 else if (cache->flags & BTRFS_BLOCK_GROUP_RAID0)
4857 index = 3;
4858 else
4859 index = 4;
4860 return index;
4861}
4862
Josef Bacik817d52f2009-07-13 21:29:25 -04004863enum btrfs_loop_type {
Josef Bacikccf0e722009-11-10 21:23:48 -05004864 LOOP_FIND_IDEAL = 0,
Josef Bacik817d52f2009-07-13 21:29:25 -04004865 LOOP_CACHING_NOWAIT = 1,
4866 LOOP_CACHING_WAIT = 2,
4867 LOOP_ALLOC_CHUNK = 3,
4868 LOOP_NO_EMPTY_SIZE = 4,
4869};
4870
4871/*
Chris Masonfec577f2007-02-26 10:40:21 -05004872 * walks the btree of allocated extents and find a hole of a given size.
4873 * The key ins is changed to record the hole:
4874 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04004875 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05004876 * ins->offset == number of blocks
4877 * Any available blocks before search_start are skipped.
4878 */
Chris Masond3977122009-01-05 21:25:51 -05004879static noinline int find_free_extent(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05004880 struct btrfs_root *orig_root,
4881 u64 num_bytes, u64 empty_size,
4882 u64 search_start, u64 search_end,
4883 u64 hint_byte, struct btrfs_key *ins,
Chris Mason98ed5172008-01-03 10:01:48 -05004884 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05004885{
Josef Bacik80eb2342008-10-29 14:49:05 -04004886 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05004887 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04004888 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04004889 struct btrfs_block_group_cache *block_group = NULL;
Chris Mason239b14b2008-03-24 15:02:07 -04004890 int empty_cluster = 2 * 1024 * 1024;
Chris Mason0ef3e662008-05-24 14:04:53 -04004891 int allowed_chunk_alloc = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05004892 int done_chunk_alloc = 0;
Josef Bacik80eb2342008-10-29 14:49:05 -04004893 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04004894 int last_ptr_loop = 0;
4895 int loop = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004896 int index = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -04004897 bool found_uncached_bg = false;
Josef Bacik0a243252009-09-11 16:11:20 -04004898 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04004899 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04004900 bool use_cluster = true;
Josef Bacikccf0e722009-11-10 21:23:48 -05004901 u64 ideal_cache_percent = 0;
4902 u64 ideal_cache_offset = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05004903
Chris Masondb945352007-10-15 16:15:53 -04004904 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04004905 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
Josef Bacik80eb2342008-10-29 14:49:05 -04004906 ins->objectid = 0;
4907 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04004908
Josef Bacik2552d172009-04-03 10:14:19 -04004909 space_info = __find_space_info(root->fs_info, data);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00004910 if (!space_info) {
4911 printk(KERN_ERR "No space info for %d\n", data);
4912 return -ENOSPC;
4913 }
Josef Bacik2552d172009-04-03 10:14:19 -04004914
Josef Bacik67377732010-09-16 16:19:09 -04004915 /*
4916 * If the space info is for both data and metadata it means we have a
4917 * small filesystem and we can't use the clustering stuff.
4918 */
4919 if (btrfs_mixed_space_info(space_info))
4920 use_cluster = false;
4921
Chris Mason0ef3e662008-05-24 14:04:53 -04004922 if (orig_root->ref_cows || empty_size)
4923 allowed_chunk_alloc = 1;
4924
Josef Bacik67377732010-09-16 16:19:09 -04004925 if (data & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04004926 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05004927 if (!btrfs_test_opt(root, SSD))
4928 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04004929 }
4930
Josef Bacik67377732010-09-16 16:19:09 -04004931 if ((data & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
4932 btrfs_test_opt(root, SSD)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04004933 last_ptr = &root->fs_info->data_alloc_cluster;
4934 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04004935
Chris Mason239b14b2008-03-24 15:02:07 -04004936 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04004937 spin_lock(&last_ptr->lock);
4938 if (last_ptr->block_group)
4939 hint_byte = last_ptr->window_start;
4940 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04004941 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04004942
Chris Masona061fc82008-05-07 11:43:44 -04004943 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04004944 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04004945
Josef Bacik817d52f2009-07-13 21:29:25 -04004946 if (!last_ptr)
Chris Masonfa9c0d792009-04-03 09:47:43 -04004947 empty_cluster = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04004948
Josef Bacik2552d172009-04-03 10:14:19 -04004949 if (search_start == hint_byte) {
Josef Bacikccf0e722009-11-10 21:23:48 -05004950ideal_cache:
Josef Bacik2552d172009-04-03 10:14:19 -04004951 block_group = btrfs_lookup_block_group(root->fs_info,
4952 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04004953 /*
4954 * we don't want to use the block group if it doesn't match our
4955 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05004956 *
4957 * However if we are re-searching with an ideal block group
4958 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04004959 */
4960 if (block_group && block_group_bits(block_group, data) &&
Josef Bacikccf0e722009-11-10 21:23:48 -05004961 (block_group->cached != BTRFS_CACHE_NO ||
4962 search_start == ideal_cache_offset)) {
Josef Bacik2552d172009-04-03 10:14:19 -04004963 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04004964 if (list_empty(&block_group->list) ||
4965 block_group->ro) {
4966 /*
4967 * someone is removing this block group,
4968 * we can't jump into the have_block_group
4969 * target because our list pointers are not
4970 * valid
4971 */
4972 btrfs_put_block_group(block_group);
4973 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05004974 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04004975 index = get_block_group_index(block_group);
Chris Mason44fb5512009-06-04 15:34:51 -04004976 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05004977 }
Josef Bacik2552d172009-04-03 10:14:19 -04004978 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04004979 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04004980 }
Chris Mason42e70e72008-11-07 18:17:11 -05004981 }
Josef Bacik2552d172009-04-03 10:14:19 -04004982search:
Josef Bacik80eb2342008-10-29 14:49:05 -04004983 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04004984 list_for_each_entry(block_group, &space_info->block_groups[index],
4985 list) {
Josef Bacik6226cb0a2009-04-03 10:14:18 -04004986 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04004987 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05004988
Josef Bacik11dfe352009-11-13 20:12:59 +00004989 btrfs_get_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04004990 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05004991
Chris Mason83a50de2010-12-13 15:06:46 -05004992 /*
4993 * this can happen if we end up cycling through all the
4994 * raid types, but we want to make sure we only allocate
4995 * for the proper type.
4996 */
4997 if (!block_group_bits(block_group, data)) {
4998 u64 extra = BTRFS_BLOCK_GROUP_DUP |
4999 BTRFS_BLOCK_GROUP_RAID1 |
5000 BTRFS_BLOCK_GROUP_RAID10;
5001
5002 /*
5003 * if they asked for extra copies and this block group
5004 * doesn't provide them, bail. This does allow us to
5005 * fill raid0 from raid1.
5006 */
5007 if ((data & extra) && !(block_group->flags & extra))
5008 goto loop;
5009 }
5010
Josef Bacik2552d172009-04-03 10:14:19 -04005011have_block_group:
Josef Bacik817d52f2009-07-13 21:29:25 -04005012 if (unlikely(block_group->cached == BTRFS_CACHE_NO)) {
Josef Bacikccf0e722009-11-10 21:23:48 -05005013 u64 free_percent;
5014
Josef Bacikb8399de2010-12-08 09:15:11 -05005015 ret = cache_block_group(block_group, trans,
5016 orig_root, 1);
Josef Bacik9d66e232010-08-25 16:54:15 -04005017 if (block_group->cached == BTRFS_CACHE_FINISHED)
5018 goto have_block_group;
5019
Josef Bacikccf0e722009-11-10 21:23:48 -05005020 free_percent = btrfs_block_group_used(&block_group->item);
5021 free_percent *= 100;
5022 free_percent = div64_u64(free_percent,
5023 block_group->key.offset);
5024 free_percent = 100 - free_percent;
5025 if (free_percent > ideal_cache_percent &&
5026 likely(!block_group->ro)) {
5027 ideal_cache_offset = block_group->key.objectid;
5028 ideal_cache_percent = free_percent;
5029 }
5030
Josef Bacik817d52f2009-07-13 21:29:25 -04005031 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05005032 * We only want to start kthread caching if we are at
5033 * the point where we will wait for caching to make
5034 * progress, or if our ideal search is over and we've
5035 * found somebody to start caching.
Josef Bacik817d52f2009-07-13 21:29:25 -04005036 */
5037 if (loop > LOOP_CACHING_NOWAIT ||
Josef Bacikccf0e722009-11-10 21:23:48 -05005038 (loop > LOOP_FIND_IDEAL &&
5039 atomic_read(&space_info->caching_threads) < 2)) {
Josef Bacikb8399de2010-12-08 09:15:11 -05005040 ret = cache_block_group(block_group, trans,
5041 orig_root, 0);
Josef Bacik817d52f2009-07-13 21:29:25 -04005042 BUG_ON(ret);
Josef Bacik2552d172009-04-03 10:14:19 -04005043 }
Josef Bacikccf0e722009-11-10 21:23:48 -05005044 found_uncached_bg = true;
5045
5046 /*
5047 * If loop is set for cached only, try the next block
5048 * group.
5049 */
5050 if (loop == LOOP_FIND_IDEAL)
5051 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05005052 }
5053
Josef Bacik817d52f2009-07-13 21:29:25 -04005054 cached = block_group_cache_done(block_group);
Josef Bacikccf0e722009-11-10 21:23:48 -05005055 if (unlikely(!cached))
Josef Bacik817d52f2009-07-13 21:29:25 -04005056 found_uncached_bg = true;
5057
Josef Bacikea6a4782008-11-20 12:16:16 -05005058 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04005059 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005060
Josef Bacik0a243252009-09-11 16:11:20 -04005061 /*
5062 * Ok we want to try and use the cluster allocator, so lets look
5063 * there, unless we are on LOOP_NO_EMPTY_SIZE, since we will
5064 * have tried the cluster allocator plenty of times at this
5065 * point and not have found anything, so we are likely way too
5066 * fragmented for the clustering stuff to find anything, so lets
5067 * just skip it and let the allocator find whatever block it can
5068 * find
5069 */
5070 if (last_ptr && loop < LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005071 /*
5072 * the refill lock keeps out other
5073 * people trying to start a new cluster
5074 */
5075 spin_lock(&last_ptr->refill_lock);
Chris Mason44fb5512009-06-04 15:34:51 -04005076 if (last_ptr->block_group &&
5077 (last_ptr->block_group->ro ||
5078 !block_group_bits(last_ptr->block_group, data))) {
5079 offset = 0;
5080 goto refill_cluster;
5081 }
5082
Chris Masonfa9c0d792009-04-03 09:47:43 -04005083 offset = btrfs_alloc_from_cluster(block_group, last_ptr,
5084 num_bytes, search_start);
5085 if (offset) {
5086 /* we have a block, we're done */
5087 spin_unlock(&last_ptr->refill_lock);
5088 goto checks;
5089 }
5090
5091 spin_lock(&last_ptr->lock);
5092 /*
5093 * whoops, this cluster doesn't actually point to
5094 * this block group. Get a ref on the block
5095 * group is does point to and try again
5096 */
5097 if (!last_ptr_loop && last_ptr->block_group &&
5098 last_ptr->block_group != block_group) {
5099
5100 btrfs_put_block_group(block_group);
5101 block_group = last_ptr->block_group;
Josef Bacik11dfe352009-11-13 20:12:59 +00005102 btrfs_get_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005103 spin_unlock(&last_ptr->lock);
5104 spin_unlock(&last_ptr->refill_lock);
5105
5106 last_ptr_loop = 1;
5107 search_start = block_group->key.objectid;
Chris Mason44fb5512009-06-04 15:34:51 -04005108 /*
5109 * we know this block group is properly
5110 * in the list because
5111 * btrfs_remove_block_group, drops the
5112 * cluster before it removes the block
5113 * group from the list
5114 */
Chris Masonfa9c0d792009-04-03 09:47:43 -04005115 goto have_block_group;
5116 }
5117 spin_unlock(&last_ptr->lock);
Chris Mason44fb5512009-06-04 15:34:51 -04005118refill_cluster:
Chris Masonfa9c0d792009-04-03 09:47:43 -04005119 /*
5120 * this cluster didn't work out, free it and
5121 * start over
5122 */
5123 btrfs_return_cluster_to_free_space(NULL, last_ptr);
5124
5125 last_ptr_loop = 0;
5126
5127 /* allocate a cluster in this block group */
Chris Mason451d7582009-06-09 20:28:34 -04005128 ret = btrfs_find_space_cluster(trans, root,
Chris Masonfa9c0d792009-04-03 09:47:43 -04005129 block_group, last_ptr,
5130 offset, num_bytes,
5131 empty_cluster + empty_size);
5132 if (ret == 0) {
5133 /*
5134 * now pull our allocation out of this
5135 * cluster
5136 */
5137 offset = btrfs_alloc_from_cluster(block_group,
5138 last_ptr, num_bytes,
5139 search_start);
5140 if (offset) {
5141 /* we found one, proceed */
5142 spin_unlock(&last_ptr->refill_lock);
5143 goto checks;
5144 }
Josef Bacik0a243252009-09-11 16:11:20 -04005145 } else if (!cached && loop > LOOP_CACHING_NOWAIT
5146 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005147 spin_unlock(&last_ptr->refill_lock);
5148
Josef Bacik0a243252009-09-11 16:11:20 -04005149 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04005150 wait_block_group_cache_progress(block_group,
5151 num_bytes + empty_cluster + empty_size);
5152 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005153 }
Josef Bacik817d52f2009-07-13 21:29:25 -04005154
Chris Masonfa9c0d792009-04-03 09:47:43 -04005155 /*
5156 * at this point we either didn't find a cluster
5157 * or we weren't able to allocate a block from our
5158 * cluster. Free the cluster we've been trying
5159 * to use, and go to the next block group
5160 */
Josef Bacik0a243252009-09-11 16:11:20 -04005161 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005162 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04005163 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005164 }
5165
Josef Bacik6226cb0a2009-04-03 10:14:18 -04005166 offset = btrfs_find_space_for_alloc(block_group, search_start,
5167 num_bytes, empty_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005168 /*
5169 * If we didn't find a chunk, and we haven't failed on this
5170 * block group before, and this block group is in the middle of
5171 * caching and we are ok with waiting, then go ahead and wait
5172 * for progress to be made, and set failed_alloc to true.
5173 *
5174 * If failed_alloc is true then we've already waited on this
5175 * block group once and should move on to the next block group.
5176 */
5177 if (!offset && !failed_alloc && !cached &&
5178 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005179 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005180 num_bytes + empty_size);
5181 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04005182 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005183 } else if (!offset) {
5184 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04005185 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04005186checks:
Josef Bacik6226cb0a2009-04-03 10:14:18 -04005187 search_start = stripe_align(root, offset);
Josef Bacik2552d172009-04-03 10:14:19 -04005188 /* move on to the next group */
Josef Bacik6226cb0a2009-04-03 10:14:18 -04005189 if (search_start + num_bytes >= search_end) {
5190 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04005191 goto loop;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04005192 }
Chris Masone37c9e62007-05-09 20:13:14 -04005193
Josef Bacik2552d172009-04-03 10:14:19 -04005194 /* move on to the next group */
5195 if (search_start + num_bytes >
Josef Bacik6226cb0a2009-04-03 10:14:18 -04005196 block_group->key.objectid + block_group->key.offset) {
5197 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04005198 goto loop;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04005199 }
Josef Bacik80eb2342008-10-29 14:49:05 -04005200
Josef Bacik2552d172009-04-03 10:14:19 -04005201 ins->objectid = search_start;
5202 ins->offset = num_bytes;
5203
Josef Bacik6226cb0a2009-04-03 10:14:18 -04005204 if (offset < search_start)
5205 btrfs_add_free_space(block_group, offset,
5206 search_start - offset);
5207 BUG_ON(offset > search_start);
5208
Yan, Zhengf0486c62010-05-16 10:46:25 -04005209 ret = update_reserved_bytes(block_group, num_bytes, 1,
5210 (data & BTRFS_BLOCK_GROUP_DATA));
5211 if (ret == -EAGAIN) {
5212 btrfs_add_free_space(block_group, offset, num_bytes);
5213 goto loop;
5214 }
Yan Zheng11833d62009-09-11 16:11:19 -04005215
Josef Bacik2552d172009-04-03 10:14:19 -04005216 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005217 ins->objectid = search_start;
5218 ins->offset = num_bytes;
5219
5220 if (offset < search_start)
5221 btrfs_add_free_space(block_group, offset,
5222 search_start - offset);
5223 BUG_ON(offset > search_start);
Josef Bacik2552d172009-04-03 10:14:19 -04005224 break;
5225loop:
Josef Bacik0a243252009-09-11 16:11:20 -04005226 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005227 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005228 BUG_ON(index != get_block_group_index(block_group));
Chris Masonfa9c0d792009-04-03 09:47:43 -04005229 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04005230 }
5231 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05005232
Yan, Zhengb742bb82010-05-16 10:46:24 -04005233 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
5234 goto search;
5235
Josef Bacikccf0e722009-11-10 21:23:48 -05005236 /* LOOP_FIND_IDEAL, only search caching/cached bg's, and don't wait for
5237 * for them to make caching progress. Also
5238 * determine the best possible bg to cache
5239 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
5240 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04005241 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
5242 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
5243 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
5244 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04005245 */
Josef Bacik817d52f2009-07-13 21:29:25 -04005246 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE &&
5247 (found_uncached_bg || empty_size || empty_cluster ||
5248 allowed_chunk_alloc)) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04005249 index = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05005250 if (loop == LOOP_FIND_IDEAL && found_uncached_bg) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005251 found_uncached_bg = false;
Josef Bacikccf0e722009-11-10 21:23:48 -05005252 loop++;
5253 if (!ideal_cache_percent &&
5254 atomic_read(&space_info->caching_threads))
Josef Bacik817d52f2009-07-13 21:29:25 -04005255 goto search;
Josef Bacikccf0e722009-11-10 21:23:48 -05005256
5257 /*
5258 * 1 of the following 2 things have happened so far
5259 *
5260 * 1) We found an ideal block group for caching that
5261 * is mostly full and will cache quickly, so we might
5262 * as well wait for it.
5263 *
5264 * 2) We searched for cached only and we didn't find
5265 * anything, and we didn't start any caching kthreads
5266 * either, so chances are we will loop through and
5267 * start a couple caching kthreads, and then come back
5268 * around and just wait for them. This will be slower
5269 * because we will have 2 caching kthreads reading at
5270 * the same time when we could have just started one
5271 * and waited for it to get far enough to give us an
5272 * allocation, so go ahead and go to the wait caching
5273 * loop.
5274 */
5275 loop = LOOP_CACHING_WAIT;
5276 search_start = ideal_cache_offset;
5277 ideal_cache_percent = 0;
5278 goto ideal_cache;
5279 } else if (loop == LOOP_FIND_IDEAL) {
5280 /*
5281 * Didn't find a uncached bg, wait on anything we find
5282 * next.
5283 */
5284 loop = LOOP_CACHING_WAIT;
5285 goto search;
5286 }
5287
5288 if (loop < LOOP_CACHING_WAIT) {
5289 loop++;
5290 goto search;
Josef Bacik817d52f2009-07-13 21:29:25 -04005291 }
5292
5293 if (loop == LOOP_ALLOC_CHUNK) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005294 empty_size = 0;
5295 empty_cluster = 0;
5296 }
Chris Mason42e70e72008-11-07 18:17:11 -05005297
Josef Bacik2552d172009-04-03 10:14:19 -04005298 if (allowed_chunk_alloc) {
5299 ret = do_chunk_alloc(trans, root, num_bytes +
5300 2 * 1024 * 1024, data, 1);
Josef Bacik2552d172009-04-03 10:14:19 -04005301 allowed_chunk_alloc = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05005302 done_chunk_alloc = 1;
5303 } else if (!done_chunk_alloc) {
Josef Bacik2552d172009-04-03 10:14:19 -04005304 space_info->force_alloc = 1;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005305 }
Josef Bacik80eb2342008-10-29 14:49:05 -04005306
Josef Bacik817d52f2009-07-13 21:29:25 -04005307 if (loop < LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005308 loop++;
Josef Bacik2552d172009-04-03 10:14:19 -04005309 goto search;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005310 }
Josef Bacik2552d172009-04-03 10:14:19 -04005311 ret = -ENOSPC;
5312 } else if (!ins->objectid) {
5313 ret = -ENOSPC;
Chris Masone19caa52007-10-15 16:17:44 -04005314 }
Chris Mason0b86a832008-03-24 15:01:56 -04005315
Josef Bacik80eb2342008-10-29 14:49:05 -04005316 /* we found what we needed */
5317 if (ins->objectid) {
5318 if (!(data & BTRFS_BLOCK_GROUP_DATA))
Yan Zhengd2fb3432008-12-11 16:30:39 -05005319 trans->block_group = block_group->key.objectid;
Josef Bacik80eb2342008-10-29 14:49:05 -04005320
Chris Masonfa9c0d792009-04-03 09:47:43 -04005321 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04005322 ret = 0;
5323 }
Chris Mason0b86a832008-03-24 15:01:56 -04005324
Chris Mason0f70abe2007-02-28 16:46:22 -05005325 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05005326}
Chris Masonec44a352008-04-28 15:29:52 -04005327
Josef Bacik9ed74f22009-09-11 16:12:44 -04005328static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
5329 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04005330{
5331 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005332 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005333
Josef Bacik9ed74f22009-09-11 16:12:44 -04005334 spin_lock(&info->lock);
Chris Masond3977122009-01-05 21:25:51 -05005335 printk(KERN_INFO "space_info has %llu free, is %sfull\n",
5336 (unsigned long long)(info->total_bytes - info->bytes_used -
Josef Bacik9ed74f22009-09-11 16:12:44 -04005337 info->bytes_pinned - info->bytes_reserved -
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005338 info->bytes_readonly),
Chris Masond3977122009-01-05 21:25:51 -05005339 (info->full) ? "" : "not ");
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005340 printk(KERN_INFO "space_info total=%llu, used=%llu, pinned=%llu, "
5341 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Joel Becker21380932009-04-21 12:38:29 -07005342 (unsigned long long)info->total_bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -04005343 (unsigned long long)info->bytes_used,
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005344 (unsigned long long)info->bytes_pinned,
5345 (unsigned long long)info->bytes_reserved,
5346 (unsigned long long)info->bytes_may_use,
5347 (unsigned long long)info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005348 spin_unlock(&info->lock);
5349
5350 if (!dump_block_groups)
5351 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005352
Josef Bacik80eb2342008-10-29 14:49:05 -04005353 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04005354again:
5355 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04005356 spin_lock(&cache->lock);
Chris Masond3977122009-01-05 21:25:51 -05005357 printk(KERN_INFO "block group %llu has %llu bytes, %llu used "
5358 "%llu pinned %llu reserved\n",
5359 (unsigned long long)cache->key.objectid,
5360 (unsigned long long)cache->key.offset,
5361 (unsigned long long)btrfs_block_group_used(&cache->item),
5362 (unsigned long long)cache->pinned,
5363 (unsigned long long)cache->reserved);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005364 btrfs_dump_free_space(cache, bytes);
5365 spin_unlock(&cache->lock);
5366 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04005367 if (++index < BTRFS_NR_RAID_TYPES)
5368 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04005369 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005370}
Zheng Yane8569812008-09-26 10:05:48 -04005371
Yan Zheng11833d62009-09-11 16:11:19 -04005372int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
5373 struct btrfs_root *root,
5374 u64 num_bytes, u64 min_alloc_size,
5375 u64 empty_size, u64 hint_byte,
5376 u64 search_end, struct btrfs_key *ins,
5377 u64 data)
Chris Masonfec577f2007-02-26 10:40:21 -05005378{
5379 int ret;
Chris Masonfbdc7622007-05-30 10:22:12 -04005380 u64 search_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005381
Josef Bacik6a632092009-02-20 11:00:09 -05005382 data = btrfs_get_alloc_profile(root, data);
Chris Mason98d20f62008-04-14 09:46:10 -04005383again:
Chris Mason0ef3e662008-05-24 14:04:53 -04005384 /*
5385 * the only place that sets empty_size is btrfs_realloc_node, which
5386 * is not called recursively on allocations
5387 */
Josef Bacik83d3c962009-12-07 21:45:59 +00005388 if (empty_size || root->ref_cows)
Chris Mason6324fbf2008-03-24 15:01:59 -04005389 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0ef3e662008-05-24 14:04:53 -04005390 num_bytes + 2 * 1024 * 1024, data, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04005391
Chris Masondb945352007-10-15 16:15:53 -04005392 WARN_ON(num_bytes < root->sectorsize);
5393 ret = find_free_extent(trans, root, num_bytes, empty_size,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005394 search_start, search_end, hint_byte,
5395 ins, data);
Chris Mason3b951512008-04-17 11:29:12 -04005396
Chris Mason98d20f62008-04-14 09:46:10 -04005397 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
5398 num_bytes = num_bytes >> 1;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005399 num_bytes = num_bytes & ~(root->sectorsize - 1);
Chris Mason98d20f62008-04-14 09:46:10 -04005400 num_bytes = max(num_bytes, min_alloc_size);
Chris Mason0ef3e662008-05-24 14:04:53 -04005401 do_chunk_alloc(trans, root->fs_info->extent_root,
5402 num_bytes, data, 1);
Chris Mason98d20f62008-04-14 09:46:10 -04005403 goto again;
5404 }
Chris Mason91435652011-02-16 13:10:41 -05005405 if (ret == -ENOSPC && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04005406 struct btrfs_space_info *sinfo;
5407
5408 sinfo = __find_space_info(root->fs_info, data);
Chris Masond3977122009-01-05 21:25:51 -05005409 printk(KERN_ERR "btrfs allocation failed flags %llu, "
5410 "wanted %llu\n", (unsigned long long)data,
5411 (unsigned long long)num_bytes);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005412 dump_space_info(sinfo, num_bytes, 1);
Chris Mason925baed2008-06-25 16:01:30 -04005413 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04005414
liubo1abe9b82011-03-24 11:18:59 +00005415 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
5416
Josef Bacik0f9dd462008-09-23 13:14:11 -04005417 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005418}
5419
Chris Mason65b51a02008-08-01 15:11:20 -04005420int btrfs_free_reserved_extent(struct btrfs_root *root, u64 start, u64 len)
5421{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005422 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05005423 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005424
Josef Bacik0f9dd462008-09-23 13:14:11 -04005425 cache = btrfs_lookup_block_group(root->fs_info, start);
5426 if (!cache) {
Chris Masond3977122009-01-05 21:25:51 -05005427 printk(KERN_ERR "Unable to find block group for %llu\n",
5428 (unsigned long long)start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005429 return -ENOSPC;
5430 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05005431
5432 ret = btrfs_discard_extent(root, start, len);
5433
Josef Bacik0f9dd462008-09-23 13:14:11 -04005434 btrfs_add_free_space(cache, start, len);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005435 update_reserved_bytes(cache, len, 0, 1);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005436 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04005437
liubo1abe9b82011-03-24 11:18:59 +00005438 trace_btrfs_reserved_extent_free(root, start, len);
5439
Chris Masone6dcd2d2008-07-17 12:53:50 -04005440 return ret;
5441}
5442
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005443static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5444 struct btrfs_root *root,
5445 u64 parent, u64 root_objectid,
5446 u64 flags, u64 owner, u64 offset,
5447 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04005448{
5449 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005450 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005451 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005452 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005453 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005454 struct extent_buffer *leaf;
5455 int type;
5456 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04005457
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005458 if (parent > 0)
5459 type = BTRFS_SHARED_DATA_REF_KEY;
5460 else
5461 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04005462
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005463 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05005464
5465 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00005466 if (!path)
5467 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05005468
Chris Masonb9473432009-03-13 11:00:37 -04005469 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005470 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
5471 ins, size);
Chris Masonccd467d2007-06-28 15:57:36 -04005472 BUG_ON(ret);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005473
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005474 leaf = path->nodes[0];
5475 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05005476 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005477 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
5478 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
5479 btrfs_set_extent_flags(leaf, extent_item,
5480 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05005481
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005482 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
5483 btrfs_set_extent_inline_ref_type(leaf, iref, type);
5484 if (parent > 0) {
5485 struct btrfs_shared_data_ref *ref;
5486 ref = (struct btrfs_shared_data_ref *)(iref + 1);
5487 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
5488 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
5489 } else {
5490 struct btrfs_extent_data_ref *ref;
5491 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
5492 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
5493 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
5494 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
5495 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
5496 }
Chris Mason47e4bb92008-02-01 14:51:59 -05005497
5498 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05005499 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04005500
Yan, Zhengf0486c62010-05-16 10:46:25 -04005501 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Chris Masonf5947062008-02-04 10:10:13 -05005502 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05005503 printk(KERN_ERR "btrfs update block group failed for %llu "
5504 "%llu\n", (unsigned long long)ins->objectid,
5505 (unsigned long long)ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05005506 BUG();
5507 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005508 return ret;
5509}
5510
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005511static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
5512 struct btrfs_root *root,
5513 u64 parent, u64 root_objectid,
5514 u64 flags, struct btrfs_disk_key *key,
5515 int level, struct btrfs_key *ins)
5516{
5517 int ret;
5518 struct btrfs_fs_info *fs_info = root->fs_info;
5519 struct btrfs_extent_item *extent_item;
5520 struct btrfs_tree_block_info *block_info;
5521 struct btrfs_extent_inline_ref *iref;
5522 struct btrfs_path *path;
5523 struct extent_buffer *leaf;
5524 u32 size = sizeof(*extent_item) + sizeof(*block_info) + sizeof(*iref);
5525
5526 path = btrfs_alloc_path();
5527 BUG_ON(!path);
5528
5529 path->leave_spinning = 1;
5530 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
5531 ins, size);
5532 BUG_ON(ret);
5533
5534 leaf = path->nodes[0];
5535 extent_item = btrfs_item_ptr(leaf, path->slots[0],
5536 struct btrfs_extent_item);
5537 btrfs_set_extent_refs(leaf, extent_item, 1);
5538 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
5539 btrfs_set_extent_flags(leaf, extent_item,
5540 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
5541 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
5542
5543 btrfs_set_tree_block_key(leaf, block_info, key);
5544 btrfs_set_tree_block_level(leaf, block_info, level);
5545
5546 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
5547 if (parent > 0) {
5548 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
5549 btrfs_set_extent_inline_ref_type(leaf, iref,
5550 BTRFS_SHARED_BLOCK_REF_KEY);
5551 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
5552 } else {
5553 btrfs_set_extent_inline_ref_type(leaf, iref,
5554 BTRFS_TREE_BLOCK_REF_KEY);
5555 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
5556 }
5557
5558 btrfs_mark_buffer_dirty(leaf);
5559 btrfs_free_path(path);
5560
Yan, Zhengf0486c62010-05-16 10:46:25 -04005561 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005562 if (ret) {
5563 printk(KERN_ERR "btrfs update block group failed for %llu "
5564 "%llu\n", (unsigned long long)ins->objectid,
5565 (unsigned long long)ins->offset);
5566 BUG();
5567 }
5568 return ret;
5569}
5570
5571int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5572 struct btrfs_root *root,
5573 u64 root_objectid, u64 owner,
5574 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04005575{
5576 int ret;
Chris Mason1c2308f2008-09-23 13:14:13 -04005577
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005578 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04005579
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005580 ret = btrfs_add_delayed_data_ref(trans, ins->objectid, ins->offset,
5581 0, root_objectid, owner, offset,
5582 BTRFS_ADD_DELAYED_EXTENT, NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005583 return ret;
5584}
Chris Masone02119d2008-09-05 16:13:11 -04005585
5586/*
5587 * this is used by the tree logging recovery code. It records that
5588 * an extent has been allocated and makes sure to clear the free
5589 * space cache bits as well
5590 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005591int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
5592 struct btrfs_root *root,
5593 u64 root_objectid, u64 owner, u64 offset,
5594 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04005595{
5596 int ret;
5597 struct btrfs_block_group_cache *block_group;
Yan Zheng11833d62009-09-11 16:11:19 -04005598 struct btrfs_caching_control *caching_ctl;
5599 u64 start = ins->objectid;
5600 u64 num_bytes = ins->offset;
Chris Masone02119d2008-09-05 16:13:11 -04005601
Chris Masone02119d2008-09-05 16:13:11 -04005602 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacikb8399de2010-12-08 09:15:11 -05005603 cache_block_group(block_group, trans, NULL, 0);
Yan Zheng11833d62009-09-11 16:11:19 -04005604 caching_ctl = get_caching_control(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04005605
Yan Zheng11833d62009-09-11 16:11:19 -04005606 if (!caching_ctl) {
5607 BUG_ON(!block_group_cache_done(block_group));
5608 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5609 BUG_ON(ret);
5610 } else {
5611 mutex_lock(&caching_ctl->mutex);
5612
5613 if (start >= caching_ctl->progress) {
5614 ret = add_excluded_extent(root, start, num_bytes);
5615 BUG_ON(ret);
5616 } else if (start + num_bytes <= caching_ctl->progress) {
5617 ret = btrfs_remove_free_space(block_group,
5618 start, num_bytes);
5619 BUG_ON(ret);
5620 } else {
5621 num_bytes = caching_ctl->progress - start;
5622 ret = btrfs_remove_free_space(block_group,
5623 start, num_bytes);
5624 BUG_ON(ret);
5625
5626 start = caching_ctl->progress;
5627 num_bytes = ins->objectid + ins->offset -
5628 caching_ctl->progress;
5629 ret = add_excluded_extent(root, start, num_bytes);
5630 BUG_ON(ret);
5631 }
5632
5633 mutex_unlock(&caching_ctl->mutex);
5634 put_caching_control(caching_ctl);
5635 }
5636
Yan, Zhengf0486c62010-05-16 10:46:25 -04005637 ret = update_reserved_bytes(block_group, ins->offset, 1, 1);
5638 BUG_ON(ret);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005639 btrfs_put_block_group(block_group);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005640 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
5641 0, owner, offset, ins, 1);
Chris Masone02119d2008-09-05 16:13:11 -04005642 return ret;
5643}
5644
Chris Mason65b51a02008-08-01 15:11:20 -04005645struct extent_buffer *btrfs_init_new_buffer(struct btrfs_trans_handle *trans,
5646 struct btrfs_root *root,
Chris Mason4008c042009-02-12 14:09:45 -05005647 u64 bytenr, u32 blocksize,
5648 int level)
Chris Mason65b51a02008-08-01 15:11:20 -04005649{
5650 struct extent_buffer *buf;
5651
5652 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
5653 if (!buf)
5654 return ERR_PTR(-ENOMEM);
5655 btrfs_set_header_generation(buf, trans->transid);
Chris Mason4008c042009-02-12 14:09:45 -05005656 btrfs_set_buffer_lockdep_class(buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04005657 btrfs_tree_lock(buf);
5658 clean_tree_block(trans, root, buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005659
5660 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04005661 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005662
Chris Masond0c803c2008-09-11 16:17:57 -04005663 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00005664 /*
5665 * we allow two log transactions at a time, use different
5666 * EXENT bit to differentiate dirty pages.
5667 */
5668 if (root->log_transid % 2 == 0)
5669 set_extent_dirty(&root->dirty_log_pages, buf->start,
5670 buf->start + buf->len - 1, GFP_NOFS);
5671 else
5672 set_extent_new(&root->dirty_log_pages, buf->start,
5673 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04005674 } else {
5675 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
5676 buf->start + buf->len - 1, GFP_NOFS);
5677 }
Chris Mason65b51a02008-08-01 15:11:20 -04005678 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005679 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04005680 return buf;
5681}
5682
Yan, Zhengf0486c62010-05-16 10:46:25 -04005683static struct btrfs_block_rsv *
5684use_block_rsv(struct btrfs_trans_handle *trans,
5685 struct btrfs_root *root, u32 blocksize)
5686{
5687 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00005688 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005689 int ret;
5690
5691 block_rsv = get_block_rsv(trans, root);
5692
5693 if (block_rsv->size == 0) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005694 ret = reserve_metadata_bytes(trans, root, block_rsv,
5695 blocksize, 0);
Josef Bacik68a82272011-01-24 21:43:20 +00005696 /*
5697 * If we couldn't reserve metadata bytes try and use some from
5698 * the global reserve.
5699 */
5700 if (ret && block_rsv != global_rsv) {
5701 ret = block_rsv_use_bytes(global_rsv, blocksize);
5702 if (!ret)
5703 return global_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005704 return ERR_PTR(ret);
Josef Bacik68a82272011-01-24 21:43:20 +00005705 } else if (ret) {
5706 return ERR_PTR(ret);
5707 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005708 return block_rsv;
5709 }
5710
5711 ret = block_rsv_use_bytes(block_rsv, blocksize);
5712 if (!ret)
5713 return block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00005714 if (ret) {
5715 WARN_ON(1);
5716 ret = reserve_metadata_bytes(trans, root, block_rsv, blocksize,
5717 0);
5718 if (!ret) {
5719 spin_lock(&block_rsv->lock);
5720 block_rsv->size += blocksize;
5721 spin_unlock(&block_rsv->lock);
5722 return block_rsv;
5723 } else if (ret && block_rsv != global_rsv) {
5724 ret = block_rsv_use_bytes(global_rsv, blocksize);
5725 if (!ret)
5726 return global_rsv;
5727 }
5728 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005729
Yan, Zhengf0486c62010-05-16 10:46:25 -04005730 return ERR_PTR(-ENOSPC);
5731}
5732
5733static void unuse_block_rsv(struct btrfs_block_rsv *block_rsv, u32 blocksize)
5734{
5735 block_rsv_add_bytes(block_rsv, blocksize, 0);
5736 block_rsv_release_bytes(block_rsv, NULL, 0);
5737}
5738
Chris Masonfec577f2007-02-26 10:40:21 -05005739/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04005740 * finds a free extent and does all the dirty work required for allocation
5741 * returns the key for the extent through ins, and a tree buffer for
5742 * the first block of the extent through buf.
5743 *
Chris Masonfec577f2007-02-26 10:40:21 -05005744 * returns the tree buffer or NULL.
5745 */
Chris Mason5f39d392007-10-15 16:14:19 -04005746struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005747 struct btrfs_root *root, u32 blocksize,
5748 u64 parent, u64 root_objectid,
5749 struct btrfs_disk_key *key, int level,
5750 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05005751{
Chris Masone2fa7222007-03-12 16:22:34 -04005752 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005753 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04005754 struct extent_buffer *buf;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005755 u64 flags = 0;
5756 int ret;
Chris Masonfec577f2007-02-26 10:40:21 -05005757
Yan, Zhengf0486c62010-05-16 10:46:25 -04005758
5759 block_rsv = use_block_rsv(trans, root, blocksize);
5760 if (IS_ERR(block_rsv))
5761 return ERR_CAST(block_rsv);
5762
5763 ret = btrfs_reserve_extent(trans, root, blocksize, blocksize,
5764 empty_size, hint, (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05005765 if (ret) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005766 unuse_block_rsv(block_rsv, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04005767 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05005768 }
Chris Mason55c69072008-01-09 15:55:33 -05005769
Chris Mason4008c042009-02-12 14:09:45 -05005770 buf = btrfs_init_new_buffer(trans, root, ins.objectid,
5771 blocksize, level);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005772 BUG_ON(IS_ERR(buf));
5773
5774 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
5775 if (parent == 0)
5776 parent = ins.objectid;
5777 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
5778 } else
5779 BUG_ON(parent > 0);
5780
5781 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
5782 struct btrfs_delayed_extent_op *extent_op;
5783 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
5784 BUG_ON(!extent_op);
5785 if (key)
5786 memcpy(&extent_op->key, key, sizeof(extent_op->key));
5787 else
5788 memset(&extent_op->key, 0, sizeof(extent_op->key));
5789 extent_op->flags_to_set = flags;
5790 extent_op->update_key = 1;
5791 extent_op->update_flags = 1;
5792 extent_op->is_data = 0;
5793
5794 ret = btrfs_add_delayed_tree_ref(trans, ins.objectid,
5795 ins.offset, parent, root_objectid,
5796 level, BTRFS_ADD_DELAYED_EXTENT,
5797 extent_op);
5798 BUG_ON(ret);
5799 }
Chris Masonfec577f2007-02-26 10:40:21 -05005800 return buf;
5801}
Chris Masona28ec192007-03-06 20:08:01 -05005802
Yan Zheng2c47e6052009-06-27 21:07:35 -04005803struct walk_control {
5804 u64 refs[BTRFS_MAX_LEVEL];
5805 u64 flags[BTRFS_MAX_LEVEL];
5806 struct btrfs_key update_progress;
5807 int stage;
5808 int level;
5809 int shared_level;
5810 int update_ref;
5811 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005812 int reada_slot;
5813 int reada_count;
Yan Zheng2c47e6052009-06-27 21:07:35 -04005814};
5815
5816#define DROP_REFERENCE 1
5817#define UPDATE_BACKREF 2
5818
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005819static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
5820 struct btrfs_root *root,
5821 struct walk_control *wc,
5822 struct btrfs_path *path)
5823{
5824 u64 bytenr;
5825 u64 generation;
5826 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005827 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005828 u32 nritems;
5829 u32 blocksize;
5830 struct btrfs_key key;
5831 struct extent_buffer *eb;
5832 int ret;
5833 int slot;
5834 int nread = 0;
5835
5836 if (path->slots[wc->level] < wc->reada_slot) {
5837 wc->reada_count = wc->reada_count * 2 / 3;
5838 wc->reada_count = max(wc->reada_count, 2);
5839 } else {
5840 wc->reada_count = wc->reada_count * 3 / 2;
5841 wc->reada_count = min_t(int, wc->reada_count,
5842 BTRFS_NODEPTRS_PER_BLOCK(root));
5843 }
5844
5845 eb = path->nodes[wc->level];
5846 nritems = btrfs_header_nritems(eb);
5847 blocksize = btrfs_level_size(root, wc->level - 1);
5848
5849 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
5850 if (nread >= wc->reada_count)
5851 break;
5852
5853 cond_resched();
5854 bytenr = btrfs_node_blockptr(eb, slot);
5855 generation = btrfs_node_ptr_generation(eb, slot);
5856
5857 if (slot == path->slots[wc->level])
5858 goto reada;
5859
5860 if (wc->stage == UPDATE_BACKREF &&
5861 generation <= root->root_key.offset)
5862 continue;
5863
Yan, Zheng94fcca92009-10-09 09:25:16 -04005864 /* We don't lock the tree block, it's OK to be racy here */
5865 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
5866 &refs, &flags);
5867 BUG_ON(ret);
5868 BUG_ON(refs == 0);
5869
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005870 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005871 if (refs == 1)
5872 goto reada;
5873
Yan, Zheng94fcca92009-10-09 09:25:16 -04005874 if (wc->level == 1 &&
5875 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5876 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005877 if (!wc->update_ref ||
5878 generation <= root->root_key.offset)
5879 continue;
5880 btrfs_node_key_to_cpu(eb, &key, slot);
5881 ret = btrfs_comp_cpu_keys(&key,
5882 &wc->update_progress);
5883 if (ret < 0)
5884 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005885 } else {
5886 if (wc->level == 1 &&
5887 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5888 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005889 }
5890reada:
5891 ret = readahead_tree_block(root, bytenr, blocksize,
5892 generation);
5893 if (ret)
5894 break;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005895 nread++;
5896 }
5897 wc->reada_slot = slot;
5898}
5899
Chris Mason9aca1d52007-03-13 11:09:37 -04005900/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04005901 * hepler to process tree block while walking down the tree.
5902 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04005903 * when wc->stage == UPDATE_BACKREF, this function updates
5904 * back refs for pointers in the block.
5905 *
5906 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04005907 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04005908static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
5909 struct btrfs_root *root,
5910 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04005911 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04005912{
5913 int level = wc->level;
5914 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04005915 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
5916 int ret;
5917
5918 if (wc->stage == UPDATE_BACKREF &&
5919 btrfs_header_owner(eb) != root->root_key.objectid)
5920 return 1;
5921
5922 /*
5923 * when reference count of tree block is 1, it won't increase
5924 * again. once full backref flag is set, we never clear it.
5925 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04005926 if (lookup_info &&
5927 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
5928 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04005929 BUG_ON(!path->locks[level]);
5930 ret = btrfs_lookup_extent_info(trans, root,
5931 eb->start, eb->len,
5932 &wc->refs[level],
5933 &wc->flags[level]);
5934 BUG_ON(ret);
5935 BUG_ON(wc->refs[level] == 0);
5936 }
5937
Yan Zheng2c47e6052009-06-27 21:07:35 -04005938 if (wc->stage == DROP_REFERENCE) {
5939 if (wc->refs[level] > 1)
5940 return 1;
5941
5942 if (path->locks[level] && !wc->keep_locks) {
5943 btrfs_tree_unlock(eb);
5944 path->locks[level] = 0;
5945 }
5946 return 0;
5947 }
5948
5949 /* wc->stage == UPDATE_BACKREF */
5950 if (!(wc->flags[level] & flag)) {
5951 BUG_ON(!path->locks[level]);
5952 ret = btrfs_inc_ref(trans, root, eb, 1);
5953 BUG_ON(ret);
5954 ret = btrfs_dec_ref(trans, root, eb, 0);
5955 BUG_ON(ret);
5956 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
5957 eb->len, flag, 0);
5958 BUG_ON(ret);
5959 wc->flags[level] |= flag;
5960 }
5961
5962 /*
5963 * the block is shared by multiple trees, so it's not good to
5964 * keep the tree lock
5965 */
5966 if (path->locks[level] && level > 0) {
5967 btrfs_tree_unlock(eb);
5968 path->locks[level] = 0;
5969 }
5970 return 0;
5971}
5972
5973/*
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005974 * hepler to process tree block pointer.
5975 *
5976 * when wc->stage == DROP_REFERENCE, this function checks
5977 * reference count of the block pointed to. if the block
5978 * is shared and we need update back refs for the subtree
5979 * rooted at the block, this function changes wc->stage to
5980 * UPDATE_BACKREF. if the block is shared and there is no
5981 * need to update back, this function drops the reference
5982 * to the block.
5983 *
5984 * NOTE: return value 1 means we should stop walking down.
5985 */
5986static noinline int do_walk_down(struct btrfs_trans_handle *trans,
5987 struct btrfs_root *root,
5988 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04005989 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005990{
5991 u64 bytenr;
5992 u64 generation;
5993 u64 parent;
5994 u32 blocksize;
5995 struct btrfs_key key;
5996 struct extent_buffer *next;
5997 int level = wc->level;
5998 int reada = 0;
5999 int ret = 0;
6000
6001 generation = btrfs_node_ptr_generation(path->nodes[level],
6002 path->slots[level]);
6003 /*
6004 * if the lower level block was created before the snapshot
6005 * was created, we know there is no need to update back refs
6006 * for the subtree
6007 */
6008 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04006009 generation <= root->root_key.offset) {
6010 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006011 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006012 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006013
6014 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
6015 blocksize = btrfs_level_size(root, level - 1);
6016
6017 next = btrfs_find_tree_block(root, bytenr, blocksize);
6018 if (!next) {
6019 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
Miao Xie90d2c51d2010-03-25 12:37:12 +00006020 if (!next)
6021 return -ENOMEM;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006022 reada = 1;
6023 }
6024 btrfs_tree_lock(next);
6025 btrfs_set_lock_blocking(next);
6026
Yan, Zheng94fcca92009-10-09 09:25:16 -04006027 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
6028 &wc->refs[level - 1],
6029 &wc->flags[level - 1]);
6030 BUG_ON(ret);
6031 BUG_ON(wc->refs[level - 1] == 0);
6032 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006033
Yan, Zheng94fcca92009-10-09 09:25:16 -04006034 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006035 if (wc->refs[level - 1] > 1) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04006036 if (level == 1 &&
6037 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
6038 goto skip;
6039
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006040 if (!wc->update_ref ||
6041 generation <= root->root_key.offset)
6042 goto skip;
6043
6044 btrfs_node_key_to_cpu(path->nodes[level], &key,
6045 path->slots[level]);
6046 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
6047 if (ret < 0)
6048 goto skip;
6049
6050 wc->stage = UPDATE_BACKREF;
6051 wc->shared_level = level - 1;
6052 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04006053 } else {
6054 if (level == 1 &&
6055 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
6056 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006057 }
6058
6059 if (!btrfs_buffer_uptodate(next, generation)) {
6060 btrfs_tree_unlock(next);
6061 free_extent_buffer(next);
6062 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006063 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006064 }
6065
6066 if (!next) {
6067 if (reada && level == 1)
6068 reada_walk_down(trans, root, wc, path);
6069 next = read_tree_block(root, bytenr, blocksize, generation);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00006070 if (!next)
6071 return -EIO;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006072 btrfs_tree_lock(next);
6073 btrfs_set_lock_blocking(next);
6074 }
6075
6076 level--;
6077 BUG_ON(level != btrfs_header_level(next));
6078 path->nodes[level] = next;
6079 path->slots[level] = 0;
6080 path->locks[level] = 1;
6081 wc->level = level;
6082 if (wc->level == 1)
6083 wc->reada_slot = 0;
6084 return 0;
6085skip:
6086 wc->refs[level - 1] = 0;
6087 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006088 if (wc->stage == DROP_REFERENCE) {
6089 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
6090 parent = path->nodes[level]->start;
6091 } else {
6092 BUG_ON(root->root_key.objectid !=
6093 btrfs_header_owner(path->nodes[level]));
6094 parent = 0;
6095 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006096
Yan, Zheng94fcca92009-10-09 09:25:16 -04006097 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
6098 root->root_key.objectid, level - 1, 0);
6099 BUG_ON(ret);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006100 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006101 btrfs_tree_unlock(next);
6102 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04006103 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006104 return 1;
6105}
6106
6107/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04006108 * hepler to process tree block while walking up the tree.
6109 *
6110 * when wc->stage == DROP_REFERENCE, this function drops
6111 * reference count on the block.
6112 *
6113 * when wc->stage == UPDATE_BACKREF, this function changes
6114 * wc->stage back to DROP_REFERENCE if we changed wc->stage
6115 * to UPDATE_BACKREF previously while processing the block.
6116 *
6117 * NOTE: return value 1 means we should stop walking up.
6118 */
6119static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
6120 struct btrfs_root *root,
6121 struct btrfs_path *path,
6122 struct walk_control *wc)
6123{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006124 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006125 int level = wc->level;
6126 struct extent_buffer *eb = path->nodes[level];
6127 u64 parent = 0;
6128
6129 if (wc->stage == UPDATE_BACKREF) {
6130 BUG_ON(wc->shared_level < level);
6131 if (level < wc->shared_level)
6132 goto out;
6133
Yan Zheng2c47e6052009-06-27 21:07:35 -04006134 ret = find_next_key(path, level + 1, &wc->update_progress);
6135 if (ret > 0)
6136 wc->update_ref = 0;
6137
6138 wc->stage = DROP_REFERENCE;
6139 wc->shared_level = -1;
6140 path->slots[level] = 0;
6141
6142 /*
6143 * check reference count again if the block isn't locked.
6144 * we should start walking down the tree again if reference
6145 * count is one.
6146 */
6147 if (!path->locks[level]) {
6148 BUG_ON(level == 0);
6149 btrfs_tree_lock(eb);
6150 btrfs_set_lock_blocking(eb);
6151 path->locks[level] = 1;
6152
6153 ret = btrfs_lookup_extent_info(trans, root,
6154 eb->start, eb->len,
6155 &wc->refs[level],
6156 &wc->flags[level]);
6157 BUG_ON(ret);
6158 BUG_ON(wc->refs[level] == 0);
6159 if (wc->refs[level] == 1) {
6160 btrfs_tree_unlock(eb);
6161 path->locks[level] = 0;
6162 return 1;
6163 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006164 }
6165 }
6166
6167 /* wc->stage == DROP_REFERENCE */
6168 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
6169
6170 if (wc->refs[level] == 1) {
6171 if (level == 0) {
6172 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6173 ret = btrfs_dec_ref(trans, root, eb, 1);
6174 else
6175 ret = btrfs_dec_ref(trans, root, eb, 0);
6176 BUG_ON(ret);
6177 }
6178 /* make block locked assertion in clean_tree_block happy */
6179 if (!path->locks[level] &&
6180 btrfs_header_generation(eb) == trans->transid) {
6181 btrfs_tree_lock(eb);
6182 btrfs_set_lock_blocking(eb);
6183 path->locks[level] = 1;
6184 }
6185 clean_tree_block(trans, root, eb);
6186 }
6187
6188 if (eb == root->node) {
6189 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6190 parent = eb->start;
6191 else
6192 BUG_ON(root->root_key.objectid !=
6193 btrfs_header_owner(eb));
6194 } else {
6195 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6196 parent = path->nodes[level + 1]->start;
6197 else
6198 BUG_ON(root->root_key.objectid !=
6199 btrfs_header_owner(path->nodes[level + 1]));
6200 }
6201
Yan, Zhengf0486c62010-05-16 10:46:25 -04006202 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006203out:
6204 wc->refs[level] = 0;
6205 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006206 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006207}
6208
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006209static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
6210 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04006211 struct btrfs_path *path,
6212 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04006213{
Yan Zheng2c47e6052009-06-27 21:07:35 -04006214 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006215 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006216 int ret;
6217
Yan Zheng2c47e6052009-06-27 21:07:35 -04006218 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04006219 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006220 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04006221 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006222
Yan Zheng2c47e6052009-06-27 21:07:35 -04006223 if (level == 0)
6224 break;
6225
Yan, Zheng7a7965f2010-02-01 02:41:17 +00006226 if (path->slots[level] >=
6227 btrfs_header_nritems(path->nodes[level]))
6228 break;
6229
Yan, Zheng94fcca92009-10-09 09:25:16 -04006230 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006231 if (ret > 0) {
6232 path->slots[level]++;
6233 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00006234 } else if (ret < 0)
6235 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006236 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006237 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04006238 return 0;
6239}
6240
Chris Masond3977122009-01-05 21:25:51 -05006241static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05006242 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04006243 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04006244 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05006245{
Yan Zheng2c47e6052009-06-27 21:07:35 -04006246 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05006247 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04006248
Yan Zheng2c47e6052009-06-27 21:07:35 -04006249 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
6250 while (level < max_level && path->nodes[level]) {
6251 wc->level = level;
6252 if (path->slots[level] + 1 <
6253 btrfs_header_nritems(path->nodes[level])) {
6254 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05006255 return 0;
6256 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006257 ret = walk_up_proc(trans, root, path, wc);
6258 if (ret > 0)
6259 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05006260
Yan Zheng2c47e6052009-06-27 21:07:35 -04006261 if (path->locks[level]) {
6262 btrfs_tree_unlock(path->nodes[level]);
6263 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006264 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006265 free_extent_buffer(path->nodes[level]);
6266 path->nodes[level] = NULL;
6267 level++;
Chris Mason20524f02007-03-10 06:35:47 -05006268 }
6269 }
6270 return 1;
6271}
6272
Chris Mason9aca1d52007-03-13 11:09:37 -04006273/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04006274 * drop a subvolume tree.
6275 *
6276 * this function traverses the tree freeing any blocks that only
6277 * referenced by the tree.
6278 *
6279 * when a shared tree block is found. this function decreases its
6280 * reference count by one. if update_ref is true, this function
6281 * also make sure backrefs for the shared block and all lower level
6282 * blocks are properly updated.
Chris Mason9aca1d52007-03-13 11:09:37 -04006283 */
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006284int btrfs_drop_snapshot(struct btrfs_root *root,
6285 struct btrfs_block_rsv *block_rsv, int update_ref)
Chris Mason20524f02007-03-10 06:35:47 -05006286{
Chris Mason5caf2a02007-04-02 11:20:42 -04006287 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006288 struct btrfs_trans_handle *trans;
6289 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04006290 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006291 struct walk_control *wc;
6292 struct btrfs_key key;
6293 int err = 0;
6294 int ret;
6295 int level;
Chris Mason20524f02007-03-10 06:35:47 -05006296
Chris Mason5caf2a02007-04-02 11:20:42 -04006297 path = btrfs_alloc_path();
6298 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05006299
Yan Zheng2c47e6052009-06-27 21:07:35 -04006300 wc = kzalloc(sizeof(*wc), GFP_NOFS);
6301 BUG_ON(!wc);
6302
Yan, Zhenga22285a2010-05-16 10:48:46 -04006303 trans = btrfs_start_transaction(tree_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00006304 BUG_ON(IS_ERR(trans));
6305
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006306 if (block_rsv)
6307 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006308
Chris Mason9f3a7422007-08-07 15:52:19 -04006309 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006310 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006311 path->nodes[level] = btrfs_lock_root_node(root);
6312 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04006313 path->slots[level] = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006314 path->locks[level] = 1;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006315 memset(&wc->update_progress, 0,
6316 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04006317 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04006318 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006319 memcpy(&wc->update_progress, &key,
6320 sizeof(wc->update_progress));
6321
Chris Mason6702ed42007-08-07 16:15:09 -04006322 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006323 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04006324 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006325 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6326 path->lowest_level = 0;
6327 if (ret < 0) {
6328 err = ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04006329 goto out;
6330 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006331 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006332
Chris Mason7d9eb122008-07-08 14:19:17 -04006333 /*
6334 * unlock our path, this is safe because only this
6335 * function is allowed to delete this snapshot
6336 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006337 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04006338
Yan Zheng2c47e6052009-06-27 21:07:35 -04006339 level = btrfs_header_level(root->node);
6340 while (1) {
6341 btrfs_tree_lock(path->nodes[level]);
6342 btrfs_set_lock_blocking(path->nodes[level]);
6343
6344 ret = btrfs_lookup_extent_info(trans, root,
6345 path->nodes[level]->start,
6346 path->nodes[level]->len,
6347 &wc->refs[level],
6348 &wc->flags[level]);
6349 BUG_ON(ret);
6350 BUG_ON(wc->refs[level] == 0);
6351
6352 if (level == root_item->drop_level)
6353 break;
6354
6355 btrfs_tree_unlock(path->nodes[level]);
6356 WARN_ON(wc->refs[level] != 1);
6357 level--;
6358 }
6359 }
6360
6361 wc->level = level;
6362 wc->shared_level = -1;
6363 wc->stage = DROP_REFERENCE;
6364 wc->update_ref = update_ref;
6365 wc->keep_locks = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006366 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006367
6368 while (1) {
6369 ret = walk_down_tree(trans, root, path, wc);
6370 if (ret < 0) {
6371 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04006372 break;
6373 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006374
6375 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
6376 if (ret < 0) {
6377 err = ret;
6378 break;
6379 }
6380
6381 if (ret > 0) {
6382 BUG_ON(wc->stage != DROP_REFERENCE);
6383 break;
6384 }
6385
6386 if (wc->stage == DROP_REFERENCE) {
6387 level = wc->level;
6388 btrfs_node_key(path->nodes[level],
6389 &root_item->drop_progress,
6390 path->slots[level]);
6391 root_item->drop_level = level;
6392 }
6393
6394 BUG_ON(wc->level == 0);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006395 if (btrfs_should_end_transaction(trans, tree_root)) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006396 ret = btrfs_update_root(trans, tree_root,
6397 &root->root_key,
6398 root_item);
6399 BUG_ON(ret);
6400
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006401 btrfs_end_transaction_throttle(trans, tree_root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006402 trans = btrfs_start_transaction(tree_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00006403 BUG_ON(IS_ERR(trans));
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006404 if (block_rsv)
6405 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04006406 }
Chris Mason20524f02007-03-10 06:35:47 -05006407 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006408 btrfs_release_path(root, path);
6409 BUG_ON(err);
6410
6411 ret = btrfs_del_root(trans, tree_root, &root->root_key);
6412 BUG_ON(ret);
6413
Yan, Zheng76dda932009-09-21 16:00:26 -04006414 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
6415 ret = btrfs_find_last_root(tree_root, root->root_key.objectid,
6416 NULL, NULL);
6417 BUG_ON(ret < 0);
6418 if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05006419 /* if we fail to delete the orphan item this time
6420 * around, it'll get picked up the next time.
6421 *
6422 * The most common failure here is just -ENOENT.
6423 */
6424 btrfs_del_orphan_item(trans, tree_root,
6425 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04006426 }
6427 }
6428
6429 if (root->in_radix) {
6430 btrfs_free_fs_root(tree_root->fs_info, root);
6431 } else {
6432 free_extent_buffer(root->node);
6433 free_extent_buffer(root->commit_root);
6434 kfree(root);
6435 }
Chris Mason9f3a7422007-08-07 15:52:19 -04006436out:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006437 btrfs_end_transaction_throttle(trans, tree_root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006438 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04006439 btrfs_free_path(path);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006440 return err;
Chris Mason20524f02007-03-10 06:35:47 -05006441}
Chris Mason9078a3e2007-04-26 16:46:15 -04006442
Yan Zheng2c47e6052009-06-27 21:07:35 -04006443/*
6444 * drop subtree rooted at tree block 'node'.
6445 *
6446 * NOTE: this function will unlock and release tree block 'node'
6447 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04006448int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
6449 struct btrfs_root *root,
6450 struct extent_buffer *node,
6451 struct extent_buffer *parent)
6452{
6453 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006454 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006455 int level;
6456 int parent_level;
6457 int ret = 0;
6458 int wret;
6459
Yan Zheng2c47e6052009-06-27 21:07:35 -04006460 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
6461
Yan Zhengf82d02d2008-10-29 14:49:05 -04006462 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00006463 if (!path)
6464 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006465
Yan Zheng2c47e6052009-06-27 21:07:35 -04006466 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00006467 if (!wc) {
6468 btrfs_free_path(path);
6469 return -ENOMEM;
6470 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006471
Chris Masonb9447ef2009-03-09 11:45:38 -04006472 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006473 parent_level = btrfs_header_level(parent);
6474 extent_buffer_get(parent);
6475 path->nodes[parent_level] = parent;
6476 path->slots[parent_level] = btrfs_header_nritems(parent);
6477
Chris Masonb9447ef2009-03-09 11:45:38 -04006478 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006479 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006480 path->nodes[level] = node;
6481 path->slots[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006482 path->locks[level] = 1;
6483
6484 wc->refs[parent_level] = 1;
6485 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
6486 wc->level = level;
6487 wc->shared_level = -1;
6488 wc->stage = DROP_REFERENCE;
6489 wc->update_ref = 0;
6490 wc->keep_locks = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006491 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006492
6493 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006494 wret = walk_down_tree(trans, root, path, wc);
6495 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04006496 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006497 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006498 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04006499
Yan Zheng2c47e6052009-06-27 21:07:35 -04006500 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006501 if (wret < 0)
6502 ret = wret;
6503 if (wret != 0)
6504 break;
6505 }
6506
Yan Zheng2c47e6052009-06-27 21:07:35 -04006507 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006508 btrfs_free_path(path);
6509 return ret;
6510}
6511
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006512#if 0
Chris Mason8e7bf942008-04-28 09:02:36 -04006513static unsigned long calc_ra(unsigned long start, unsigned long last,
6514 unsigned long nr)
6515{
6516 return min(last, start + nr - 1);
6517}
6518
Chris Masond3977122009-01-05 21:25:51 -05006519static noinline int relocate_inode_pages(struct inode *inode, u64 start,
Chris Mason98ed5172008-01-03 10:01:48 -05006520 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05006521{
6522 u64 page_start;
6523 u64 page_end;
Zheng Yan1a40e232008-09-26 10:09:34 -04006524 unsigned long first_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05006525 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05006526 unsigned long i;
6527 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05006528 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05006529 struct file_ra_state *ra;
Chris Mason3eaa2882008-07-24 11:57:52 -04006530 struct btrfs_ordered_extent *ordered;
Zheng Yan1a40e232008-09-26 10:09:34 -04006531 unsigned int total_read = 0;
6532 unsigned int total_dirty = 0;
6533 int ret = 0;
Chris Mason4313b392008-01-03 09:08:48 -05006534
6535 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00006536 if (!ra)
6537 return -ENOMEM;
Chris Masonedbd8d42007-12-21 16:27:24 -05006538
6539 mutex_lock(&inode->i_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04006540 first_index = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05006541 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
6542
Zheng Yan1a40e232008-09-26 10:09:34 -04006543 /* make sure the dirty trick played by the caller work */
6544 ret = invalidate_inode_pages2_range(inode->i_mapping,
6545 first_index, last_index);
6546 if (ret)
6547 goto out_unlock;
Chris Mason8e7bf942008-04-28 09:02:36 -04006548
Chris Mason4313b392008-01-03 09:08:48 -05006549 file_ra_state_init(ra, inode->i_mapping);
Chris Masonedbd8d42007-12-21 16:27:24 -05006550
Zheng Yan1a40e232008-09-26 10:09:34 -04006551 for (i = first_index ; i <= last_index; i++) {
6552 if (total_read % ra->ra_pages == 0) {
Chris Mason8e7bf942008-04-28 09:02:36 -04006553 btrfs_force_ra(inode->i_mapping, ra, NULL, i,
Zheng Yan1a40e232008-09-26 10:09:34 -04006554 calc_ra(i, last_index, ra->ra_pages));
Chris Mason8e7bf942008-04-28 09:02:36 -04006555 }
6556 total_read++;
Chris Mason3eaa2882008-07-24 11:57:52 -04006557again:
6558 if (((u64)i << PAGE_CACHE_SHIFT) > i_size_read(inode))
Zheng Yan1a40e232008-09-26 10:09:34 -04006559 BUG_ON(1);
Chris Masonedbd8d42007-12-21 16:27:24 -05006560 page = grab_cache_page(inode->i_mapping, i);
Chris Masona061fc82008-05-07 11:43:44 -04006561 if (!page) {
Zheng Yan1a40e232008-09-26 10:09:34 -04006562 ret = -ENOMEM;
Chris Masonedbd8d42007-12-21 16:27:24 -05006563 goto out_unlock;
Chris Masona061fc82008-05-07 11:43:44 -04006564 }
Chris Masonedbd8d42007-12-21 16:27:24 -05006565 if (!PageUptodate(page)) {
6566 btrfs_readpage(NULL, page);
6567 lock_page(page);
6568 if (!PageUptodate(page)) {
6569 unlock_page(page);
6570 page_cache_release(page);
Zheng Yan1a40e232008-09-26 10:09:34 -04006571 ret = -EIO;
Chris Masonedbd8d42007-12-21 16:27:24 -05006572 goto out_unlock;
6573 }
6574 }
Chris Masonec44a352008-04-28 15:29:52 -04006575 wait_on_page_writeback(page);
Chris Mason3eaa2882008-07-24 11:57:52 -04006576
Chris Masonedbd8d42007-12-21 16:27:24 -05006577 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
6578 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05006579 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05006580
Chris Mason3eaa2882008-07-24 11:57:52 -04006581 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6582 if (ordered) {
6583 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
6584 unlock_page(page);
6585 page_cache_release(page);
6586 btrfs_start_ordered_extent(inode, ordered, 1);
6587 btrfs_put_ordered_extent(ordered);
6588 goto again;
6589 }
6590 set_page_extent_mapped(page);
6591
Zheng Yan1a40e232008-09-26 10:09:34 -04006592 if (i == first_index)
6593 set_extent_bits(io_tree, page_start, page_end,
6594 EXTENT_BOUNDARY, GFP_NOFS);
Yan Zheng1f80e4d2008-12-19 10:59:04 -05006595 btrfs_set_extent_delalloc(inode, page_start, page_end);
Zheng Yan1a40e232008-09-26 10:09:34 -04006596
Chris Masona061fc82008-05-07 11:43:44 -04006597 set_page_dirty(page);
Zheng Yan1a40e232008-09-26 10:09:34 -04006598 total_dirty++;
Chris Masonedbd8d42007-12-21 16:27:24 -05006599
Chris Masond1310b22008-01-24 16:13:08 -05006600 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05006601 unlock_page(page);
6602 page_cache_release(page);
6603 }
6604
6605out_unlock:
Chris Masonec44a352008-04-28 15:29:52 -04006606 kfree(ra);
Chris Masonedbd8d42007-12-21 16:27:24 -05006607 mutex_unlock(&inode->i_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04006608 balance_dirty_pages_ratelimited_nr(inode->i_mapping, total_dirty);
Chris Masonbf4ef672008-05-08 13:26:18 -04006609 return ret;
6610}
6611
Chris Masond3977122009-01-05 21:25:51 -05006612static noinline int relocate_data_extent(struct inode *reloc_inode,
Zheng Yan1a40e232008-09-26 10:09:34 -04006613 struct btrfs_key *extent_key,
6614 u64 offset)
Chris Masonedbd8d42007-12-21 16:27:24 -05006615{
Zheng Yan1a40e232008-09-26 10:09:34 -04006616 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
6617 struct extent_map_tree *em_tree = &BTRFS_I(reloc_inode)->extent_tree;
6618 struct extent_map *em;
Yan Zheng66435582008-10-30 14:19:50 -04006619 u64 start = extent_key->objectid - offset;
6620 u64 end = start + extent_key->offset - 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04006621
6622 em = alloc_extent_map(GFP_NOFS);
Tsutomu Itohc26a9202011-02-14 00:45:29 +00006623 BUG_ON(!em);
Zheng Yan1a40e232008-09-26 10:09:34 -04006624
Yan Zheng66435582008-10-30 14:19:50 -04006625 em->start = start;
Zheng Yan1a40e232008-09-26 10:09:34 -04006626 em->len = extent_key->offset;
Chris Masonc8b97812008-10-29 14:49:59 -04006627 em->block_len = extent_key->offset;
Zheng Yan1a40e232008-09-26 10:09:34 -04006628 em->block_start = extent_key->objectid;
6629 em->bdev = root->fs_info->fs_devices->latest_bdev;
6630 set_bit(EXTENT_FLAG_PINNED, &em->flags);
6631
6632 /* setup extent map to cheat btrfs_readpage */
Yan Zheng66435582008-10-30 14:19:50 -04006633 lock_extent(&BTRFS_I(reloc_inode)->io_tree, start, end, GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04006634 while (1) {
6635 int ret;
Chris Mason890871b2009-09-02 16:24:52 -04006636 write_lock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04006637 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04006638 write_unlock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04006639 if (ret != -EEXIST) {
6640 free_extent_map(em);
6641 break;
6642 }
Yan Zheng66435582008-10-30 14:19:50 -04006643 btrfs_drop_extent_cache(reloc_inode, start, end, 0);
Zheng Yan1a40e232008-09-26 10:09:34 -04006644 }
Yan Zheng66435582008-10-30 14:19:50 -04006645 unlock_extent(&BTRFS_I(reloc_inode)->io_tree, start, end, GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04006646
Yan Zheng66435582008-10-30 14:19:50 -04006647 return relocate_inode_pages(reloc_inode, start, extent_key->offset);
Zheng Yan1a40e232008-09-26 10:09:34 -04006648}
6649
6650struct btrfs_ref_path {
6651 u64 extent_start;
6652 u64 nodes[BTRFS_MAX_LEVEL];
6653 u64 root_objectid;
6654 u64 root_generation;
6655 u64 owner_objectid;
Zheng Yan1a40e232008-09-26 10:09:34 -04006656 u32 num_refs;
6657 int lowest_level;
6658 int current_level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006659 int shared_level;
6660
6661 struct btrfs_key node_keys[BTRFS_MAX_LEVEL];
6662 u64 new_nodes[BTRFS_MAX_LEVEL];
Zheng Yan1a40e232008-09-26 10:09:34 -04006663};
6664
6665struct disk_extent {
Chris Masonc8b97812008-10-29 14:49:59 -04006666 u64 ram_bytes;
Zheng Yan1a40e232008-09-26 10:09:34 -04006667 u64 disk_bytenr;
6668 u64 disk_num_bytes;
6669 u64 offset;
6670 u64 num_bytes;
Chris Masonc8b97812008-10-29 14:49:59 -04006671 u8 compression;
6672 u8 encryption;
6673 u16 other_encoding;
Zheng Yan1a40e232008-09-26 10:09:34 -04006674};
6675
6676static int is_cowonly_root(u64 root_objectid)
6677{
6678 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID ||
6679 root_objectid == BTRFS_EXTENT_TREE_OBJECTID ||
6680 root_objectid == BTRFS_CHUNK_TREE_OBJECTID ||
6681 root_objectid == BTRFS_DEV_TREE_OBJECTID ||
Yan Zheng0403e472008-12-10 20:32:51 -05006682 root_objectid == BTRFS_TREE_LOG_OBJECTID ||
6683 root_objectid == BTRFS_CSUM_TREE_OBJECTID)
Zheng Yan1a40e232008-09-26 10:09:34 -04006684 return 1;
6685 return 0;
6686}
6687
Chris Masond3977122009-01-05 21:25:51 -05006688static noinline int __next_ref_path(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04006689 struct btrfs_root *extent_root,
6690 struct btrfs_ref_path *ref_path,
6691 int first_time)
6692{
6693 struct extent_buffer *leaf;
6694 struct btrfs_path *path;
Chris Mason4313b392008-01-03 09:08:48 -05006695 struct btrfs_extent_ref *ref;
Chris Masonedbd8d42007-12-21 16:27:24 -05006696 struct btrfs_key key;
6697 struct btrfs_key found_key;
Zheng Yan1a40e232008-09-26 10:09:34 -04006698 u64 bytenr;
Chris Masonedbd8d42007-12-21 16:27:24 -05006699 u32 nritems;
Zheng Yan1a40e232008-09-26 10:09:34 -04006700 int level;
6701 int ret = 1;
Chris Masonedbd8d42007-12-21 16:27:24 -05006702
Zheng Yan1a40e232008-09-26 10:09:34 -04006703 path = btrfs_alloc_path();
6704 if (!path)
6705 return -ENOMEM;
6706
Zheng Yan1a40e232008-09-26 10:09:34 -04006707 if (first_time) {
6708 ref_path->lowest_level = -1;
6709 ref_path->current_level = -1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006710 ref_path->shared_level = -1;
Zheng Yan1a40e232008-09-26 10:09:34 -04006711 goto walk_up;
Chris Masona061fc82008-05-07 11:43:44 -04006712 }
Zheng Yan1a40e232008-09-26 10:09:34 -04006713walk_down:
6714 level = ref_path->current_level - 1;
6715 while (level >= -1) {
6716 u64 parent;
6717 if (level < ref_path->lowest_level)
6718 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05006719
Chris Masond3977122009-01-05 21:25:51 -05006720 if (level >= 0)
Zheng Yan1a40e232008-09-26 10:09:34 -04006721 bytenr = ref_path->nodes[level];
Chris Masond3977122009-01-05 21:25:51 -05006722 else
Zheng Yan1a40e232008-09-26 10:09:34 -04006723 bytenr = ref_path->extent_start;
Zheng Yan1a40e232008-09-26 10:09:34 -04006724 BUG_ON(bytenr == 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006725
Zheng Yan1a40e232008-09-26 10:09:34 -04006726 parent = ref_path->nodes[level + 1];
6727 ref_path->nodes[level + 1] = 0;
6728 ref_path->current_level = level;
6729 BUG_ON(parent == 0);
6730
6731 key.objectid = bytenr;
6732 key.offset = parent + 1;
6733 key.type = BTRFS_EXTENT_REF_KEY;
6734
6735 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006736 if (ret < 0)
6737 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04006738 BUG_ON(ret == 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006739
Chris Masonedbd8d42007-12-21 16:27:24 -05006740 leaf = path->nodes[0];
6741 nritems = btrfs_header_nritems(leaf);
Zheng Yan1a40e232008-09-26 10:09:34 -04006742 if (path->slots[0] >= nritems) {
Chris Masona061fc82008-05-07 11:43:44 -04006743 ret = btrfs_next_leaf(extent_root, path);
Chris Masona061fc82008-05-07 11:43:44 -04006744 if (ret < 0)
6745 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04006746 if (ret > 0)
6747 goto next;
Chris Masonbf4ef672008-05-08 13:26:18 -04006748 leaf = path->nodes[0];
Chris Masona061fc82008-05-07 11:43:44 -04006749 }
Chris Masonedbd8d42007-12-21 16:27:24 -05006750
6751 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Zheng Yan1a40e232008-09-26 10:09:34 -04006752 if (found_key.objectid == bytenr &&
Yan Zhengf82d02d2008-10-29 14:49:05 -04006753 found_key.type == BTRFS_EXTENT_REF_KEY) {
6754 if (level < ref_path->shared_level)
6755 ref_path->shared_level = level;
Zheng Yan1a40e232008-09-26 10:09:34 -04006756 goto found;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006757 }
Zheng Yan1a40e232008-09-26 10:09:34 -04006758next:
6759 level--;
6760 btrfs_release_path(extent_root, path);
Yan Zhengd899e052008-10-30 14:25:28 -04006761 cond_resched();
Zheng Yan1a40e232008-09-26 10:09:34 -04006762 }
6763 /* reached lowest level */
6764 ret = 1;
6765 goto out;
6766walk_up:
6767 level = ref_path->current_level;
6768 while (level < BTRFS_MAX_LEVEL - 1) {
6769 u64 ref_objectid;
Chris Masond3977122009-01-05 21:25:51 -05006770
6771 if (level >= 0)
Zheng Yan1a40e232008-09-26 10:09:34 -04006772 bytenr = ref_path->nodes[level];
Chris Masond3977122009-01-05 21:25:51 -05006773 else
Zheng Yan1a40e232008-09-26 10:09:34 -04006774 bytenr = ref_path->extent_start;
Chris Masond3977122009-01-05 21:25:51 -05006775
Zheng Yan1a40e232008-09-26 10:09:34 -04006776 BUG_ON(bytenr == 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006777
Zheng Yan1a40e232008-09-26 10:09:34 -04006778 key.objectid = bytenr;
6779 key.offset = 0;
6780 key.type = BTRFS_EXTENT_REF_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05006781
Zheng Yan1a40e232008-09-26 10:09:34 -04006782 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 0);
6783 if (ret < 0)
Chris Masonedbd8d42007-12-21 16:27:24 -05006784 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04006785
6786 leaf = path->nodes[0];
6787 nritems = btrfs_header_nritems(leaf);
6788 if (path->slots[0] >= nritems) {
6789 ret = btrfs_next_leaf(extent_root, path);
6790 if (ret < 0)
6791 goto out;
6792 if (ret > 0) {
6793 /* the extent was freed by someone */
6794 if (ref_path->lowest_level == level)
6795 goto out;
6796 btrfs_release_path(extent_root, path);
6797 goto walk_down;
6798 }
6799 leaf = path->nodes[0];
6800 }
6801
6802 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6803 if (found_key.objectid != bytenr ||
6804 found_key.type != BTRFS_EXTENT_REF_KEY) {
6805 /* the extent was freed by someone */
6806 if (ref_path->lowest_level == level) {
6807 ret = 1;
6808 goto out;
6809 }
6810 btrfs_release_path(extent_root, path);
6811 goto walk_down;
6812 }
6813found:
6814 ref = btrfs_item_ptr(leaf, path->slots[0],
6815 struct btrfs_extent_ref);
6816 ref_objectid = btrfs_ref_objectid(leaf, ref);
6817 if (ref_objectid < BTRFS_FIRST_FREE_OBJECTID) {
6818 if (first_time) {
6819 level = (int)ref_objectid;
6820 BUG_ON(level >= BTRFS_MAX_LEVEL);
6821 ref_path->lowest_level = level;
6822 ref_path->current_level = level;
6823 ref_path->nodes[level] = bytenr;
6824 } else {
6825 WARN_ON(ref_objectid != level);
6826 }
6827 } else {
6828 WARN_ON(level != -1);
6829 }
6830 first_time = 0;
6831
6832 if (ref_path->lowest_level == level) {
6833 ref_path->owner_objectid = ref_objectid;
Zheng Yan1a40e232008-09-26 10:09:34 -04006834 ref_path->num_refs = btrfs_ref_num_refs(leaf, ref);
6835 }
6836
6837 /*
6838 * the block is tree root or the block isn't in reference
6839 * counted tree.
6840 */
6841 if (found_key.objectid == found_key.offset ||
6842 is_cowonly_root(btrfs_ref_root(leaf, ref))) {
6843 ref_path->root_objectid = btrfs_ref_root(leaf, ref);
6844 ref_path->root_generation =
6845 btrfs_ref_generation(leaf, ref);
6846 if (level < 0) {
6847 /* special reference from the tree log */
6848 ref_path->nodes[0] = found_key.offset;
6849 ref_path->current_level = 0;
6850 }
6851 ret = 0;
6852 goto out;
6853 }
6854
6855 level++;
6856 BUG_ON(ref_path->nodes[level] != 0);
6857 ref_path->nodes[level] = found_key.offset;
6858 ref_path->current_level = level;
6859
6860 /*
6861 * the reference was created in the running transaction,
6862 * no need to continue walking up.
6863 */
6864 if (btrfs_ref_generation(leaf, ref) == trans->transid) {
6865 ref_path->root_objectid = btrfs_ref_root(leaf, ref);
6866 ref_path->root_generation =
6867 btrfs_ref_generation(leaf, ref);
6868 ret = 0;
6869 goto out;
6870 }
6871
6872 btrfs_release_path(extent_root, path);
Yan Zhengd899e052008-10-30 14:25:28 -04006873 cond_resched();
Zheng Yan1a40e232008-09-26 10:09:34 -04006874 }
6875 /* reached max tree level, but no tree root found. */
6876 BUG();
6877out:
Zheng Yan1a40e232008-09-26 10:09:34 -04006878 btrfs_free_path(path);
6879 return ret;
6880}
6881
6882static int btrfs_first_ref_path(struct btrfs_trans_handle *trans,
6883 struct btrfs_root *extent_root,
6884 struct btrfs_ref_path *ref_path,
6885 u64 extent_start)
6886{
6887 memset(ref_path, 0, sizeof(*ref_path));
6888 ref_path->extent_start = extent_start;
6889
6890 return __next_ref_path(trans, extent_root, ref_path, 1);
6891}
6892
6893static int btrfs_next_ref_path(struct btrfs_trans_handle *trans,
6894 struct btrfs_root *extent_root,
6895 struct btrfs_ref_path *ref_path)
6896{
6897 return __next_ref_path(trans, extent_root, ref_path, 0);
6898}
6899
Chris Masond3977122009-01-05 21:25:51 -05006900static noinline int get_new_locations(struct inode *reloc_inode,
Zheng Yan1a40e232008-09-26 10:09:34 -04006901 struct btrfs_key *extent_key,
6902 u64 offset, int no_fragment,
6903 struct disk_extent **extents,
6904 int *nr_extents)
6905{
6906 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
6907 struct btrfs_path *path;
6908 struct btrfs_file_extent_item *fi;
6909 struct extent_buffer *leaf;
6910 struct disk_extent *exts = *extents;
6911 struct btrfs_key found_key;
6912 u64 cur_pos;
6913 u64 last_byte;
6914 u32 nritems;
6915 int nr = 0;
6916 int max = *nr_extents;
6917 int ret;
6918
6919 WARN_ON(!no_fragment && *extents);
6920 if (!exts) {
6921 max = 1;
6922 exts = kmalloc(sizeof(*exts) * max, GFP_NOFS);
6923 if (!exts)
6924 return -ENOMEM;
6925 }
6926
6927 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00006928 if (!path) {
6929 if (exts != *extents)
6930 kfree(exts);
6931 return -ENOMEM;
6932 }
Zheng Yan1a40e232008-09-26 10:09:34 -04006933
6934 cur_pos = extent_key->objectid - offset;
6935 last_byte = extent_key->objectid + extent_key->offset;
6936 ret = btrfs_lookup_file_extent(NULL, root, path, reloc_inode->i_ino,
6937 cur_pos, 0);
6938 if (ret < 0)
6939 goto out;
6940 if (ret > 0) {
6941 ret = -ENOENT;
6942 goto out;
6943 }
6944
6945 while (1) {
6946 leaf = path->nodes[0];
6947 nritems = btrfs_header_nritems(leaf);
6948 if (path->slots[0] >= nritems) {
6949 ret = btrfs_next_leaf(root, path);
6950 if (ret < 0)
6951 goto out;
6952 if (ret > 0)
6953 break;
6954 leaf = path->nodes[0];
6955 }
6956
6957 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6958 if (found_key.offset != cur_pos ||
6959 found_key.type != BTRFS_EXTENT_DATA_KEY ||
6960 found_key.objectid != reloc_inode->i_ino)
6961 break;
6962
6963 fi = btrfs_item_ptr(leaf, path->slots[0],
6964 struct btrfs_file_extent_item);
6965 if (btrfs_file_extent_type(leaf, fi) !=
6966 BTRFS_FILE_EXTENT_REG ||
6967 btrfs_file_extent_disk_bytenr(leaf, fi) == 0)
6968 break;
6969
6970 if (nr == max) {
6971 struct disk_extent *old = exts;
6972 max *= 2;
6973 exts = kzalloc(sizeof(*exts) * max, GFP_NOFS);
6974 memcpy(exts, old, sizeof(*exts) * nr);
6975 if (old != *extents)
6976 kfree(old);
6977 }
6978
6979 exts[nr].disk_bytenr =
6980 btrfs_file_extent_disk_bytenr(leaf, fi);
6981 exts[nr].disk_num_bytes =
6982 btrfs_file_extent_disk_num_bytes(leaf, fi);
6983 exts[nr].offset = btrfs_file_extent_offset(leaf, fi);
6984 exts[nr].num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
Chris Masonc8b97812008-10-29 14:49:59 -04006985 exts[nr].ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
6986 exts[nr].compression = btrfs_file_extent_compression(leaf, fi);
6987 exts[nr].encryption = btrfs_file_extent_encryption(leaf, fi);
6988 exts[nr].other_encoding = btrfs_file_extent_other_encoding(leaf,
6989 fi);
Yan Zhengd899e052008-10-30 14:25:28 -04006990 BUG_ON(exts[nr].offset > 0);
6991 BUG_ON(exts[nr].compression || exts[nr].encryption);
6992 BUG_ON(exts[nr].num_bytes != exts[nr].disk_num_bytes);
Zheng Yan1a40e232008-09-26 10:09:34 -04006993
6994 cur_pos += exts[nr].num_bytes;
6995 nr++;
6996
6997 if (cur_pos + offset >= last_byte)
6998 break;
6999
7000 if (no_fragment) {
7001 ret = 1;
7002 goto out;
7003 }
7004 path->slots[0]++;
7005 }
7006
Yan Zheng1f80e4d2008-12-19 10:59:04 -05007007 BUG_ON(cur_pos + offset > last_byte);
Zheng Yan1a40e232008-09-26 10:09:34 -04007008 if (cur_pos + offset < last_byte) {
7009 ret = -ENOENT;
7010 goto out;
Chris Masonedbd8d42007-12-21 16:27:24 -05007011 }
7012 ret = 0;
7013out:
Zheng Yan1a40e232008-09-26 10:09:34 -04007014 btrfs_free_path(path);
7015 if (ret) {
7016 if (exts != *extents)
7017 kfree(exts);
7018 } else {
7019 *extents = exts;
7020 *nr_extents = nr;
7021 }
7022 return ret;
7023}
7024
Chris Masond3977122009-01-05 21:25:51 -05007025static noinline int replace_one_extent(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007026 struct btrfs_root *root,
7027 struct btrfs_path *path,
7028 struct btrfs_key *extent_key,
7029 struct btrfs_key *leaf_key,
7030 struct btrfs_ref_path *ref_path,
7031 struct disk_extent *new_extents,
7032 int nr_extents)
7033{
7034 struct extent_buffer *leaf;
7035 struct btrfs_file_extent_item *fi;
7036 struct inode *inode = NULL;
7037 struct btrfs_key key;
7038 u64 lock_start = 0;
7039 u64 lock_end = 0;
7040 u64 num_bytes;
7041 u64 ext_offset;
Yan Zheng86288a12009-01-21 10:49:16 -05007042 u64 search_end = (u64)-1;
Zheng Yan1a40e232008-09-26 10:09:34 -04007043 u32 nritems;
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007044 int nr_scaned = 0;
Zheng Yan1a40e232008-09-26 10:09:34 -04007045 int extent_locked = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04007046 int extent_type;
Zheng Yan1a40e232008-09-26 10:09:34 -04007047 int ret;
7048
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007049 memcpy(&key, leaf_key, sizeof(key));
Zheng Yan1a40e232008-09-26 10:09:34 -04007050 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS) {
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007051 if (key.objectid < ref_path->owner_objectid ||
7052 (key.objectid == ref_path->owner_objectid &&
7053 key.type < BTRFS_EXTENT_DATA_KEY)) {
7054 key.objectid = ref_path->owner_objectid;
7055 key.type = BTRFS_EXTENT_DATA_KEY;
7056 key.offset = 0;
7057 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007058 }
7059
7060 while (1) {
7061 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
7062 if (ret < 0)
7063 goto out;
7064
7065 leaf = path->nodes[0];
7066 nritems = btrfs_header_nritems(leaf);
7067next:
7068 if (extent_locked && ret > 0) {
7069 /*
7070 * the file extent item was modified by someone
7071 * before the extent got locked.
7072 */
Zheng Yan1a40e232008-09-26 10:09:34 -04007073 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7074 lock_end, GFP_NOFS);
7075 extent_locked = 0;
7076 }
7077
7078 if (path->slots[0] >= nritems) {
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007079 if (++nr_scaned > 2)
Zheng Yan1a40e232008-09-26 10:09:34 -04007080 break;
7081
7082 BUG_ON(extent_locked);
7083 ret = btrfs_next_leaf(root, path);
7084 if (ret < 0)
7085 goto out;
7086 if (ret > 0)
7087 break;
7088 leaf = path->nodes[0];
7089 nritems = btrfs_header_nritems(leaf);
7090 }
7091
7092 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
7093
7094 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS) {
7095 if ((key.objectid > ref_path->owner_objectid) ||
7096 (key.objectid == ref_path->owner_objectid &&
7097 key.type > BTRFS_EXTENT_DATA_KEY) ||
Yan Zheng86288a12009-01-21 10:49:16 -05007098 key.offset >= search_end)
Zheng Yan1a40e232008-09-26 10:09:34 -04007099 break;
7100 }
7101
7102 if (inode && key.objectid != inode->i_ino) {
7103 BUG_ON(extent_locked);
7104 btrfs_release_path(root, path);
7105 mutex_unlock(&inode->i_mutex);
7106 iput(inode);
7107 inode = NULL;
7108 continue;
7109 }
7110
7111 if (key.type != BTRFS_EXTENT_DATA_KEY) {
7112 path->slots[0]++;
7113 ret = 1;
7114 goto next;
7115 }
7116 fi = btrfs_item_ptr(leaf, path->slots[0],
7117 struct btrfs_file_extent_item);
Yan Zhengd899e052008-10-30 14:25:28 -04007118 extent_type = btrfs_file_extent_type(leaf, fi);
7119 if ((extent_type != BTRFS_FILE_EXTENT_REG &&
7120 extent_type != BTRFS_FILE_EXTENT_PREALLOC) ||
Zheng Yan1a40e232008-09-26 10:09:34 -04007121 (btrfs_file_extent_disk_bytenr(leaf, fi) !=
7122 extent_key->objectid)) {
7123 path->slots[0]++;
7124 ret = 1;
7125 goto next;
7126 }
7127
7128 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
7129 ext_offset = btrfs_file_extent_offset(leaf, fi);
7130
Yan Zheng86288a12009-01-21 10:49:16 -05007131 if (search_end == (u64)-1) {
7132 search_end = key.offset - ext_offset +
7133 btrfs_file_extent_ram_bytes(leaf, fi);
7134 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007135
7136 if (!extent_locked) {
7137 lock_start = key.offset;
7138 lock_end = lock_start + num_bytes - 1;
7139 } else {
Yan Zheng66435582008-10-30 14:19:50 -04007140 if (lock_start > key.offset ||
7141 lock_end + 1 < key.offset + num_bytes) {
7142 unlock_extent(&BTRFS_I(inode)->io_tree,
7143 lock_start, lock_end, GFP_NOFS);
7144 extent_locked = 0;
7145 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007146 }
7147
7148 if (!inode) {
7149 btrfs_release_path(root, path);
7150
7151 inode = btrfs_iget_locked(root->fs_info->sb,
7152 key.objectid, root);
7153 if (inode->i_state & I_NEW) {
7154 BTRFS_I(inode)->root = root;
7155 BTRFS_I(inode)->location.objectid =
7156 key.objectid;
7157 BTRFS_I(inode)->location.type =
7158 BTRFS_INODE_ITEM_KEY;
7159 BTRFS_I(inode)->location.offset = 0;
7160 btrfs_read_locked_inode(inode);
7161 unlock_new_inode(inode);
7162 }
7163 /*
7164 * some code call btrfs_commit_transaction while
7165 * holding the i_mutex, so we can't use mutex_lock
7166 * here.
7167 */
7168 if (is_bad_inode(inode) ||
7169 !mutex_trylock(&inode->i_mutex)) {
7170 iput(inode);
7171 inode = NULL;
7172 key.offset = (u64)-1;
7173 goto skip;
7174 }
7175 }
7176
7177 if (!extent_locked) {
7178 struct btrfs_ordered_extent *ordered;
7179
7180 btrfs_release_path(root, path);
7181
7182 lock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7183 lock_end, GFP_NOFS);
7184 ordered = btrfs_lookup_first_ordered_extent(inode,
7185 lock_end);
7186 if (ordered &&
7187 ordered->file_offset <= lock_end &&
7188 ordered->file_offset + ordered->len > lock_start) {
7189 unlock_extent(&BTRFS_I(inode)->io_tree,
7190 lock_start, lock_end, GFP_NOFS);
7191 btrfs_start_ordered_extent(inode, ordered, 1);
7192 btrfs_put_ordered_extent(ordered);
7193 key.offset += num_bytes;
7194 goto skip;
7195 }
7196 if (ordered)
7197 btrfs_put_ordered_extent(ordered);
7198
Zheng Yan1a40e232008-09-26 10:09:34 -04007199 extent_locked = 1;
7200 continue;
7201 }
7202
7203 if (nr_extents == 1) {
7204 /* update extent pointer in place */
Zheng Yan1a40e232008-09-26 10:09:34 -04007205 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7206 new_extents[0].disk_bytenr);
7207 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7208 new_extents[0].disk_num_bytes);
Zheng Yan1a40e232008-09-26 10:09:34 -04007209 btrfs_mark_buffer_dirty(leaf);
7210
7211 btrfs_drop_extent_cache(inode, key.offset,
7212 key.offset + num_bytes - 1, 0);
7213
7214 ret = btrfs_inc_extent_ref(trans, root,
7215 new_extents[0].disk_bytenr,
7216 new_extents[0].disk_num_bytes,
7217 leaf->start,
7218 root->root_key.objectid,
7219 trans->transid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007220 key.objectid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007221 BUG_ON(ret);
7222
7223 ret = btrfs_free_extent(trans, root,
7224 extent_key->objectid,
7225 extent_key->offset,
7226 leaf->start,
7227 btrfs_header_owner(leaf),
7228 btrfs_header_generation(leaf),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007229 key.objectid, 0);
Zheng Yan1a40e232008-09-26 10:09:34 -04007230 BUG_ON(ret);
7231
7232 btrfs_release_path(root, path);
7233 key.offset += num_bytes;
7234 } else {
Yan Zhengd899e052008-10-30 14:25:28 -04007235 BUG_ON(1);
7236#if 0
Zheng Yan1a40e232008-09-26 10:09:34 -04007237 u64 alloc_hint;
7238 u64 extent_len;
7239 int i;
7240 /*
7241 * drop old extent pointer at first, then insert the
7242 * new pointers one bye one
7243 */
7244 btrfs_release_path(root, path);
7245 ret = btrfs_drop_extents(trans, root, inode, key.offset,
7246 key.offset + num_bytes,
7247 key.offset, &alloc_hint);
7248 BUG_ON(ret);
7249
7250 for (i = 0; i < nr_extents; i++) {
7251 if (ext_offset >= new_extents[i].num_bytes) {
7252 ext_offset -= new_extents[i].num_bytes;
7253 continue;
7254 }
7255 extent_len = min(new_extents[i].num_bytes -
7256 ext_offset, num_bytes);
7257
7258 ret = btrfs_insert_empty_item(trans, root,
7259 path, &key,
7260 sizeof(*fi));
7261 BUG_ON(ret);
7262
7263 leaf = path->nodes[0];
7264 fi = btrfs_item_ptr(leaf, path->slots[0],
7265 struct btrfs_file_extent_item);
7266 btrfs_set_file_extent_generation(leaf, fi,
7267 trans->transid);
7268 btrfs_set_file_extent_type(leaf, fi,
7269 BTRFS_FILE_EXTENT_REG);
7270 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7271 new_extents[i].disk_bytenr);
7272 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7273 new_extents[i].disk_num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -04007274 btrfs_set_file_extent_ram_bytes(leaf, fi,
7275 new_extents[i].ram_bytes);
7276
7277 btrfs_set_file_extent_compression(leaf, fi,
7278 new_extents[i].compression);
7279 btrfs_set_file_extent_encryption(leaf, fi,
7280 new_extents[i].encryption);
7281 btrfs_set_file_extent_other_encoding(leaf, fi,
7282 new_extents[i].other_encoding);
7283
Zheng Yan1a40e232008-09-26 10:09:34 -04007284 btrfs_set_file_extent_num_bytes(leaf, fi,
7285 extent_len);
7286 ext_offset += new_extents[i].offset;
7287 btrfs_set_file_extent_offset(leaf, fi,
7288 ext_offset);
7289 btrfs_mark_buffer_dirty(leaf);
7290
7291 btrfs_drop_extent_cache(inode, key.offset,
7292 key.offset + extent_len - 1, 0);
7293
7294 ret = btrfs_inc_extent_ref(trans, root,
7295 new_extents[i].disk_bytenr,
7296 new_extents[i].disk_num_bytes,
7297 leaf->start,
7298 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007299 trans->transid, key.objectid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007300 BUG_ON(ret);
7301 btrfs_release_path(root, path);
7302
Yan Zhenga76a3cd2008-10-09 11:46:29 -04007303 inode_add_bytes(inode, extent_len);
Zheng Yan1a40e232008-09-26 10:09:34 -04007304
7305 ext_offset = 0;
7306 num_bytes -= extent_len;
7307 key.offset += extent_len;
7308
7309 if (num_bytes == 0)
7310 break;
7311 }
7312 BUG_ON(i >= nr_extents);
Yan Zhengd899e052008-10-30 14:25:28 -04007313#endif
Zheng Yan1a40e232008-09-26 10:09:34 -04007314 }
7315
7316 if (extent_locked) {
Zheng Yan1a40e232008-09-26 10:09:34 -04007317 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7318 lock_end, GFP_NOFS);
7319 extent_locked = 0;
7320 }
7321skip:
7322 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS &&
Yan Zheng86288a12009-01-21 10:49:16 -05007323 key.offset >= search_end)
Zheng Yan1a40e232008-09-26 10:09:34 -04007324 break;
7325
7326 cond_resched();
7327 }
7328 ret = 0;
7329out:
7330 btrfs_release_path(root, path);
7331 if (inode) {
7332 mutex_unlock(&inode->i_mutex);
7333 if (extent_locked) {
Zheng Yan1a40e232008-09-26 10:09:34 -04007334 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7335 lock_end, GFP_NOFS);
7336 }
7337 iput(inode);
7338 }
7339 return ret;
7340}
7341
Zheng Yan1a40e232008-09-26 10:09:34 -04007342int btrfs_reloc_tree_cache_ref(struct btrfs_trans_handle *trans,
7343 struct btrfs_root *root,
7344 struct extent_buffer *buf, u64 orig_start)
7345{
7346 int level;
7347 int ret;
7348
7349 BUG_ON(btrfs_header_generation(buf) != trans->transid);
7350 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
7351
7352 level = btrfs_header_level(buf);
7353 if (level == 0) {
7354 struct btrfs_leaf_ref *ref;
7355 struct btrfs_leaf_ref *orig_ref;
7356
7357 orig_ref = btrfs_lookup_leaf_ref(root, orig_start);
7358 if (!orig_ref)
7359 return -ENOENT;
7360
7361 ref = btrfs_alloc_leaf_ref(root, orig_ref->nritems);
7362 if (!ref) {
7363 btrfs_free_leaf_ref(root, orig_ref);
7364 return -ENOMEM;
7365 }
7366
7367 ref->nritems = orig_ref->nritems;
7368 memcpy(ref->extents, orig_ref->extents,
7369 sizeof(ref->extents[0]) * ref->nritems);
7370
7371 btrfs_free_leaf_ref(root, orig_ref);
7372
7373 ref->root_gen = trans->transid;
7374 ref->bytenr = buf->start;
7375 ref->owner = btrfs_header_owner(buf);
7376 ref->generation = btrfs_header_generation(buf);
Chris Masonbd56b302009-02-04 09:27:02 -05007377
Zheng Yan1a40e232008-09-26 10:09:34 -04007378 ret = btrfs_add_leaf_ref(root, ref, 0);
7379 WARN_ON(ret);
7380 btrfs_free_leaf_ref(root, ref);
7381 }
7382 return 0;
7383}
7384
Chris Masond3977122009-01-05 21:25:51 -05007385static noinline int invalidate_extent_cache(struct btrfs_root *root,
Zheng Yan1a40e232008-09-26 10:09:34 -04007386 struct extent_buffer *leaf,
7387 struct btrfs_block_group_cache *group,
7388 struct btrfs_root *target_root)
7389{
7390 struct btrfs_key key;
7391 struct inode *inode = NULL;
7392 struct btrfs_file_extent_item *fi;
Josef Bacik2ac55d42010-02-03 19:33:23 +00007393 struct extent_state *cached_state = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -04007394 u64 num_bytes;
7395 u64 skip_objectid = 0;
7396 u32 nritems;
7397 u32 i;
7398
7399 nritems = btrfs_header_nritems(leaf);
7400 for (i = 0; i < nritems; i++) {
7401 btrfs_item_key_to_cpu(leaf, &key, i);
7402 if (key.objectid == skip_objectid ||
7403 key.type != BTRFS_EXTENT_DATA_KEY)
7404 continue;
7405 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
7406 if (btrfs_file_extent_type(leaf, fi) ==
7407 BTRFS_FILE_EXTENT_INLINE)
7408 continue;
7409 if (btrfs_file_extent_disk_bytenr(leaf, fi) == 0)
7410 continue;
7411 if (!inode || inode->i_ino != key.objectid) {
7412 iput(inode);
7413 inode = btrfs_ilookup(target_root->fs_info->sb,
7414 key.objectid, target_root, 1);
7415 }
7416 if (!inode) {
7417 skip_objectid = key.objectid;
7418 continue;
7419 }
7420 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
7421
Josef Bacik2ac55d42010-02-03 19:33:23 +00007422 lock_extent_bits(&BTRFS_I(inode)->io_tree, key.offset,
7423 key.offset + num_bytes - 1, 0, &cached_state,
7424 GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04007425 btrfs_drop_extent_cache(inode, key.offset,
7426 key.offset + num_bytes - 1, 1);
Josef Bacik2ac55d42010-02-03 19:33:23 +00007427 unlock_extent_cached(&BTRFS_I(inode)->io_tree, key.offset,
7428 key.offset + num_bytes - 1, &cached_state,
7429 GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04007430 cond_resched();
7431 }
7432 iput(inode);
7433 return 0;
7434}
7435
Chris Masond3977122009-01-05 21:25:51 -05007436static noinline int replace_extents_in_leaf(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007437 struct btrfs_root *root,
7438 struct extent_buffer *leaf,
7439 struct btrfs_block_group_cache *group,
7440 struct inode *reloc_inode)
7441{
7442 struct btrfs_key key;
7443 struct btrfs_key extent_key;
7444 struct btrfs_file_extent_item *fi;
7445 struct btrfs_leaf_ref *ref;
7446 struct disk_extent *new_extent;
7447 u64 bytenr;
7448 u64 num_bytes;
7449 u32 nritems;
7450 u32 i;
7451 int ext_index;
7452 int nr_extent;
7453 int ret;
7454
7455 new_extent = kmalloc(sizeof(*new_extent), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007456 if (!new_extent)
7457 return -ENOMEM;
Zheng Yan1a40e232008-09-26 10:09:34 -04007458
7459 ref = btrfs_lookup_leaf_ref(root, leaf->start);
7460 BUG_ON(!ref);
7461
7462 ext_index = -1;
7463 nritems = btrfs_header_nritems(leaf);
7464 for (i = 0; i < nritems; i++) {
7465 btrfs_item_key_to_cpu(leaf, &key, i);
7466 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
7467 continue;
7468 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
7469 if (btrfs_file_extent_type(leaf, fi) ==
7470 BTRFS_FILE_EXTENT_INLINE)
7471 continue;
7472 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
7473 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
7474 if (bytenr == 0)
7475 continue;
7476
7477 ext_index++;
7478 if (bytenr >= group->key.objectid + group->key.offset ||
7479 bytenr + num_bytes <= group->key.objectid)
7480 continue;
7481
7482 extent_key.objectid = bytenr;
7483 extent_key.offset = num_bytes;
7484 extent_key.type = BTRFS_EXTENT_ITEM_KEY;
7485 nr_extent = 1;
7486 ret = get_new_locations(reloc_inode, &extent_key,
7487 group->key.objectid, 1,
7488 &new_extent, &nr_extent);
7489 if (ret > 0)
7490 continue;
7491 BUG_ON(ret < 0);
7492
7493 BUG_ON(ref->extents[ext_index].bytenr != bytenr);
7494 BUG_ON(ref->extents[ext_index].num_bytes != num_bytes);
7495 ref->extents[ext_index].bytenr = new_extent->disk_bytenr;
7496 ref->extents[ext_index].num_bytes = new_extent->disk_num_bytes;
7497
Zheng Yan1a40e232008-09-26 10:09:34 -04007498 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7499 new_extent->disk_bytenr);
7500 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7501 new_extent->disk_num_bytes);
Zheng Yan1a40e232008-09-26 10:09:34 -04007502 btrfs_mark_buffer_dirty(leaf);
7503
7504 ret = btrfs_inc_extent_ref(trans, root,
7505 new_extent->disk_bytenr,
7506 new_extent->disk_num_bytes,
7507 leaf->start,
7508 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007509 trans->transid, key.objectid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007510 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04007511
Zheng Yan1a40e232008-09-26 10:09:34 -04007512 ret = btrfs_free_extent(trans, root,
7513 bytenr, num_bytes, leaf->start,
7514 btrfs_header_owner(leaf),
7515 btrfs_header_generation(leaf),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007516 key.objectid, 0);
Zheng Yan1a40e232008-09-26 10:09:34 -04007517 BUG_ON(ret);
7518 cond_resched();
7519 }
7520 kfree(new_extent);
7521 BUG_ON(ext_index + 1 != ref->nritems);
7522 btrfs_free_leaf_ref(root, ref);
7523 return 0;
7524}
7525
Yan Zhengf82d02d2008-10-29 14:49:05 -04007526int btrfs_free_reloc_root(struct btrfs_trans_handle *trans,
7527 struct btrfs_root *root)
Zheng Yan1a40e232008-09-26 10:09:34 -04007528{
7529 struct btrfs_root *reloc_root;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007530 int ret;
Zheng Yan1a40e232008-09-26 10:09:34 -04007531
7532 if (root->reloc_root) {
7533 reloc_root = root->reloc_root;
7534 root->reloc_root = NULL;
7535 list_add(&reloc_root->dead_list,
7536 &root->fs_info->dead_reloc_roots);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007537
7538 btrfs_set_root_bytenr(&reloc_root->root_item,
7539 reloc_root->node->start);
7540 btrfs_set_root_level(&root->root_item,
7541 btrfs_header_level(reloc_root->node));
7542 memset(&reloc_root->root_item.drop_progress, 0,
7543 sizeof(struct btrfs_disk_key));
7544 reloc_root->root_item.drop_level = 0;
7545
7546 ret = btrfs_update_root(trans, root->fs_info->tree_root,
7547 &reloc_root->root_key,
7548 &reloc_root->root_item);
7549 BUG_ON(ret);
Zheng Yan1a40e232008-09-26 10:09:34 -04007550 }
7551 return 0;
7552}
7553
7554int btrfs_drop_dead_reloc_roots(struct btrfs_root *root)
7555{
7556 struct btrfs_trans_handle *trans;
7557 struct btrfs_root *reloc_root;
7558 struct btrfs_root *prev_root = NULL;
7559 struct list_head dead_roots;
7560 int ret;
7561 unsigned long nr;
7562
7563 INIT_LIST_HEAD(&dead_roots);
7564 list_splice_init(&root->fs_info->dead_reloc_roots, &dead_roots);
7565
7566 while (!list_empty(&dead_roots)) {
7567 reloc_root = list_entry(dead_roots.prev,
7568 struct btrfs_root, dead_list);
7569 list_del_init(&reloc_root->dead_list);
7570
7571 BUG_ON(reloc_root->commit_root != NULL);
7572 while (1) {
7573 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00007574 BUG_ON(IS_ERR(trans));
Zheng Yan1a40e232008-09-26 10:09:34 -04007575
7576 mutex_lock(&root->fs_info->drop_mutex);
7577 ret = btrfs_drop_snapshot(trans, reloc_root);
7578 if (ret != -EAGAIN)
7579 break;
7580 mutex_unlock(&root->fs_info->drop_mutex);
7581
7582 nr = trans->blocks_used;
7583 ret = btrfs_end_transaction(trans, root);
7584 BUG_ON(ret);
7585 btrfs_btree_balance_dirty(root, nr);
7586 }
7587
7588 free_extent_buffer(reloc_root->node);
7589
7590 ret = btrfs_del_root(trans, root->fs_info->tree_root,
7591 &reloc_root->root_key);
7592 BUG_ON(ret);
7593 mutex_unlock(&root->fs_info->drop_mutex);
7594
7595 nr = trans->blocks_used;
7596 ret = btrfs_end_transaction(trans, root);
7597 BUG_ON(ret);
7598 btrfs_btree_balance_dirty(root, nr);
7599
7600 kfree(prev_root);
7601 prev_root = reloc_root;
7602 }
7603 if (prev_root) {
7604 btrfs_remove_leaf_refs(prev_root, (u64)-1, 0);
7605 kfree(prev_root);
7606 }
7607 return 0;
7608}
7609
7610int btrfs_add_dead_reloc_root(struct btrfs_root *root)
7611{
7612 list_add(&root->dead_list, &root->fs_info->dead_reloc_roots);
7613 return 0;
7614}
7615
7616int btrfs_cleanup_reloc_trees(struct btrfs_root *root)
7617{
7618 struct btrfs_root *reloc_root;
7619 struct btrfs_trans_handle *trans;
7620 struct btrfs_key location;
7621 int found;
7622 int ret;
7623
7624 mutex_lock(&root->fs_info->tree_reloc_mutex);
7625 ret = btrfs_find_dead_roots(root, BTRFS_TREE_RELOC_OBJECTID, NULL);
7626 BUG_ON(ret);
7627 found = !list_empty(&root->fs_info->dead_reloc_roots);
7628 mutex_unlock(&root->fs_info->tree_reloc_mutex);
7629
7630 if (found) {
7631 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00007632 BUG_ON(IS_ERR(trans));
Zheng Yan1a40e232008-09-26 10:09:34 -04007633 ret = btrfs_commit_transaction(trans, root);
7634 BUG_ON(ret);
7635 }
7636
7637 location.objectid = BTRFS_DATA_RELOC_TREE_OBJECTID;
7638 location.offset = (u64)-1;
7639 location.type = BTRFS_ROOT_ITEM_KEY;
7640
7641 reloc_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
7642 BUG_ON(!reloc_root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05007643 ret = btrfs_orphan_cleanup(reloc_root);
7644 BUG_ON(ret);
Zheng Yan1a40e232008-09-26 10:09:34 -04007645 return 0;
7646}
7647
Chris Masond3977122009-01-05 21:25:51 -05007648static noinline int init_reloc_tree(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007649 struct btrfs_root *root)
7650{
7651 struct btrfs_root *reloc_root;
7652 struct extent_buffer *eb;
7653 struct btrfs_root_item *root_item;
7654 struct btrfs_key root_key;
7655 int ret;
7656
7657 BUG_ON(!root->ref_cows);
7658 if (root->reloc_root)
7659 return 0;
7660
7661 root_item = kmalloc(sizeof(*root_item), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007662 if (!root_item)
7663 return -ENOMEM;
Zheng Yan1a40e232008-09-26 10:09:34 -04007664
7665 ret = btrfs_copy_root(trans, root, root->commit_root,
7666 &eb, BTRFS_TREE_RELOC_OBJECTID);
7667 BUG_ON(ret);
7668
7669 root_key.objectid = BTRFS_TREE_RELOC_OBJECTID;
7670 root_key.offset = root->root_key.objectid;
7671 root_key.type = BTRFS_ROOT_ITEM_KEY;
7672
7673 memcpy(root_item, &root->root_item, sizeof(root_item));
7674 btrfs_set_root_refs(root_item, 0);
7675 btrfs_set_root_bytenr(root_item, eb->start);
7676 btrfs_set_root_level(root_item, btrfs_header_level(eb));
Yan Zheng84234f32008-10-29 14:49:05 -04007677 btrfs_set_root_generation(root_item, trans->transid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007678
7679 btrfs_tree_unlock(eb);
7680 free_extent_buffer(eb);
7681
7682 ret = btrfs_insert_root(trans, root->fs_info->tree_root,
7683 &root_key, root_item);
7684 BUG_ON(ret);
7685 kfree(root_item);
7686
7687 reloc_root = btrfs_read_fs_root_no_radix(root->fs_info->tree_root,
7688 &root_key);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007689 BUG_ON(IS_ERR(reloc_root));
Zheng Yan1a40e232008-09-26 10:09:34 -04007690 reloc_root->last_trans = trans->transid;
7691 reloc_root->commit_root = NULL;
7692 reloc_root->ref_tree = &root->fs_info->reloc_ref_tree;
7693
7694 root->reloc_root = reloc_root;
7695 return 0;
7696}
7697
7698/*
7699 * Core function of space balance.
7700 *
7701 * The idea is using reloc trees to relocate tree blocks in reference
Yan Zhengf82d02d2008-10-29 14:49:05 -04007702 * counted roots. There is one reloc tree for each subvol, and all
7703 * reloc trees share same root key objectid. Reloc trees are snapshots
7704 * of the latest committed roots of subvols (root->commit_root).
7705 *
7706 * To relocate a tree block referenced by a subvol, there are two steps.
7707 * COW the block through subvol's reloc tree, then update block pointer
7708 * in the subvol to point to the new block. Since all reloc trees share
7709 * same root key objectid, doing special handing for tree blocks owned
7710 * by them is easy. Once a tree block has been COWed in one reloc tree,
7711 * we can use the resulting new block directly when the same block is
7712 * required to COW again through other reloc trees. By this way, relocated
7713 * tree blocks are shared between reloc trees, so they are also shared
7714 * between subvols.
Zheng Yan1a40e232008-09-26 10:09:34 -04007715 */
Chris Masond3977122009-01-05 21:25:51 -05007716static noinline int relocate_one_path(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007717 struct btrfs_root *root,
7718 struct btrfs_path *path,
7719 struct btrfs_key *first_key,
7720 struct btrfs_ref_path *ref_path,
7721 struct btrfs_block_group_cache *group,
7722 struct inode *reloc_inode)
7723{
7724 struct btrfs_root *reloc_root;
7725 struct extent_buffer *eb = NULL;
7726 struct btrfs_key *keys;
7727 u64 *nodes;
7728 int level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007729 int shared_level;
Zheng Yan1a40e232008-09-26 10:09:34 -04007730 int lowest_level = 0;
Zheng Yan1a40e232008-09-26 10:09:34 -04007731 int ret;
7732
7733 if (ref_path->owner_objectid < BTRFS_FIRST_FREE_OBJECTID)
7734 lowest_level = ref_path->owner_objectid;
7735
Yan Zhengf82d02d2008-10-29 14:49:05 -04007736 if (!root->ref_cows) {
Zheng Yan1a40e232008-09-26 10:09:34 -04007737 path->lowest_level = lowest_level;
7738 ret = btrfs_search_slot(trans, root, first_key, path, 0, 1);
7739 BUG_ON(ret < 0);
7740 path->lowest_level = 0;
7741 btrfs_release_path(root, path);
7742 return 0;
7743 }
7744
Zheng Yan1a40e232008-09-26 10:09:34 -04007745 mutex_lock(&root->fs_info->tree_reloc_mutex);
7746 ret = init_reloc_tree(trans, root);
7747 BUG_ON(ret);
7748 reloc_root = root->reloc_root;
7749
Yan Zhengf82d02d2008-10-29 14:49:05 -04007750 shared_level = ref_path->shared_level;
7751 ref_path->shared_level = BTRFS_MAX_LEVEL - 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04007752
Yan Zhengf82d02d2008-10-29 14:49:05 -04007753 keys = ref_path->node_keys;
7754 nodes = ref_path->new_nodes;
7755 memset(&keys[shared_level + 1], 0,
7756 sizeof(*keys) * (BTRFS_MAX_LEVEL - shared_level - 1));
7757 memset(&nodes[shared_level + 1], 0,
7758 sizeof(*nodes) * (BTRFS_MAX_LEVEL - shared_level - 1));
Zheng Yan1a40e232008-09-26 10:09:34 -04007759
Yan Zhengf82d02d2008-10-29 14:49:05 -04007760 if (nodes[lowest_level] == 0) {
7761 path->lowest_level = lowest_level;
7762 ret = btrfs_search_slot(trans, reloc_root, first_key, path,
7763 0, 1);
7764 BUG_ON(ret);
7765 for (level = lowest_level; level < BTRFS_MAX_LEVEL; level++) {
7766 eb = path->nodes[level];
7767 if (!eb || eb == reloc_root->node)
7768 break;
7769 nodes[level] = eb->start;
7770 if (level == 0)
7771 btrfs_item_key_to_cpu(eb, &keys[level], 0);
7772 else
7773 btrfs_node_key_to_cpu(eb, &keys[level], 0);
7774 }
Yan Zheng2b820322008-11-17 21:11:30 -05007775 if (nodes[0] &&
7776 ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04007777 eb = path->nodes[0];
7778 ret = replace_extents_in_leaf(trans, reloc_root, eb,
7779 group, reloc_inode);
7780 BUG_ON(ret);
7781 }
7782 btrfs_release_path(reloc_root, path);
7783 } else {
Zheng Yan1a40e232008-09-26 10:09:34 -04007784 ret = btrfs_merge_path(trans, reloc_root, keys, nodes,
Yan Zhengf82d02d2008-10-29 14:49:05 -04007785 lowest_level);
Zheng Yan1a40e232008-09-26 10:09:34 -04007786 BUG_ON(ret);
7787 }
7788
Zheng Yan1a40e232008-09-26 10:09:34 -04007789 /*
7790 * replace tree blocks in the fs tree with tree blocks in
7791 * the reloc tree.
7792 */
7793 ret = btrfs_merge_path(trans, root, keys, nodes, lowest_level);
7794 BUG_ON(ret < 0);
7795
7796 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04007797 ret = btrfs_search_slot(trans, reloc_root, first_key, path,
7798 0, 0);
7799 BUG_ON(ret);
7800 extent_buffer_get(path->nodes[0]);
7801 eb = path->nodes[0];
7802 btrfs_release_path(reloc_root, path);
Zheng Yan1a40e232008-09-26 10:09:34 -04007803 ret = invalidate_extent_cache(reloc_root, eb, group, root);
7804 BUG_ON(ret);
7805 free_extent_buffer(eb);
7806 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007807
Yan Zhengf82d02d2008-10-29 14:49:05 -04007808 mutex_unlock(&root->fs_info->tree_reloc_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04007809 path->lowest_level = 0;
Zheng Yan1a40e232008-09-26 10:09:34 -04007810 return 0;
7811}
7812
Chris Masond3977122009-01-05 21:25:51 -05007813static noinline int relocate_tree_block(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007814 struct btrfs_root *root,
7815 struct btrfs_path *path,
7816 struct btrfs_key *first_key,
7817 struct btrfs_ref_path *ref_path)
7818{
7819 int ret;
Zheng Yan1a40e232008-09-26 10:09:34 -04007820
7821 ret = relocate_one_path(trans, root, path, first_key,
7822 ref_path, NULL, NULL);
7823 BUG_ON(ret);
7824
Zheng Yan1a40e232008-09-26 10:09:34 -04007825 return 0;
7826}
7827
Chris Masond3977122009-01-05 21:25:51 -05007828static noinline int del_extent_zero(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007829 struct btrfs_root *extent_root,
7830 struct btrfs_path *path,
7831 struct btrfs_key *extent_key)
7832{
7833 int ret;
7834
Zheng Yan1a40e232008-09-26 10:09:34 -04007835 ret = btrfs_search_slot(trans, extent_root, extent_key, path, -1, 1);
7836 if (ret)
7837 goto out;
7838 ret = btrfs_del_item(trans, extent_root, path);
7839out:
Chris Masonedbd8d42007-12-21 16:27:24 -05007840 btrfs_release_path(extent_root, path);
Zheng Yan1a40e232008-09-26 10:09:34 -04007841 return ret;
7842}
7843
Chris Masond3977122009-01-05 21:25:51 -05007844static noinline struct btrfs_root *read_ref_root(struct btrfs_fs_info *fs_info,
Zheng Yan1a40e232008-09-26 10:09:34 -04007845 struct btrfs_ref_path *ref_path)
7846{
7847 struct btrfs_key root_key;
7848
7849 root_key.objectid = ref_path->root_objectid;
7850 root_key.type = BTRFS_ROOT_ITEM_KEY;
7851 if (is_cowonly_root(ref_path->root_objectid))
7852 root_key.offset = 0;
7853 else
7854 root_key.offset = (u64)-1;
7855
7856 return btrfs_read_fs_root_no_name(fs_info, &root_key);
7857}
7858
Chris Masond3977122009-01-05 21:25:51 -05007859static noinline int relocate_one_extent(struct btrfs_root *extent_root,
Zheng Yan1a40e232008-09-26 10:09:34 -04007860 struct btrfs_path *path,
7861 struct btrfs_key *extent_key,
7862 struct btrfs_block_group_cache *group,
7863 struct inode *reloc_inode, int pass)
7864{
7865 struct btrfs_trans_handle *trans;
7866 struct btrfs_root *found_root;
7867 struct btrfs_ref_path *ref_path = NULL;
7868 struct disk_extent *new_extents = NULL;
7869 int nr_extents = 0;
7870 int loops;
7871 int ret;
7872 int level;
7873 struct btrfs_key first_key;
7874 u64 prev_block = 0;
7875
Zheng Yan1a40e232008-09-26 10:09:34 -04007876
7877 trans = btrfs_start_transaction(extent_root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00007878 BUG_ON(IS_ERR(trans));
Zheng Yan1a40e232008-09-26 10:09:34 -04007879
7880 if (extent_key->objectid == 0) {
7881 ret = del_extent_zero(trans, extent_root, path, extent_key);
7882 goto out;
7883 }
7884
7885 ref_path = kmalloc(sizeof(*ref_path), GFP_NOFS);
7886 if (!ref_path) {
Chris Masond3977122009-01-05 21:25:51 -05007887 ret = -ENOMEM;
7888 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04007889 }
7890
7891 for (loops = 0; ; loops++) {
7892 if (loops == 0) {
7893 ret = btrfs_first_ref_path(trans, extent_root, ref_path,
7894 extent_key->objectid);
7895 } else {
7896 ret = btrfs_next_ref_path(trans, extent_root, ref_path);
7897 }
7898 if (ret < 0)
7899 goto out;
7900 if (ret > 0)
7901 break;
7902
7903 if (ref_path->root_objectid == BTRFS_TREE_LOG_OBJECTID ||
7904 ref_path->root_objectid == BTRFS_TREE_RELOC_OBJECTID)
7905 continue;
7906
7907 found_root = read_ref_root(extent_root->fs_info, ref_path);
7908 BUG_ON(!found_root);
7909 /*
7910 * for reference counted tree, only process reference paths
7911 * rooted at the latest committed root.
7912 */
7913 if (found_root->ref_cows &&
7914 ref_path->root_generation != found_root->root_key.offset)
7915 continue;
7916
7917 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
7918 if (pass == 0) {
7919 /*
7920 * copy data extents to new locations
7921 */
7922 u64 group_start = group->key.objectid;
7923 ret = relocate_data_extent(reloc_inode,
7924 extent_key,
7925 group_start);
7926 if (ret < 0)
7927 goto out;
7928 break;
7929 }
7930 level = 0;
7931 } else {
7932 level = ref_path->owner_objectid;
7933 }
7934
7935 if (prev_block != ref_path->nodes[level]) {
7936 struct extent_buffer *eb;
7937 u64 block_start = ref_path->nodes[level];
7938 u64 block_size = btrfs_level_size(found_root, level);
7939
7940 eb = read_tree_block(found_root, block_start,
7941 block_size, 0);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00007942 if (!eb) {
7943 ret = -EIO;
7944 goto out;
7945 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007946 btrfs_tree_lock(eb);
7947 BUG_ON(level != btrfs_header_level(eb));
7948
7949 if (level == 0)
7950 btrfs_item_key_to_cpu(eb, &first_key, 0);
7951 else
7952 btrfs_node_key_to_cpu(eb, &first_key, 0);
7953
7954 btrfs_tree_unlock(eb);
7955 free_extent_buffer(eb);
7956 prev_block = block_start;
7957 }
7958
Yan Zheng24562422009-02-12 14:14:53 -05007959 mutex_lock(&extent_root->fs_info->trans_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05007960 btrfs_record_root_in_trans(found_root);
Yan Zheng24562422009-02-12 14:14:53 -05007961 mutex_unlock(&extent_root->fs_info->trans_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05007962 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
7963 /*
7964 * try to update data extent references while
7965 * keeping metadata shared between snapshots.
7966 */
7967 if (pass == 1) {
7968 ret = relocate_one_path(trans, found_root,
7969 path, &first_key, ref_path,
7970 group, reloc_inode);
7971 if (ret < 0)
7972 goto out;
7973 continue;
7974 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007975 /*
7976 * use fallback method to process the remaining
7977 * references.
7978 */
7979 if (!new_extents) {
7980 u64 group_start = group->key.objectid;
Yan Zhengd899e052008-10-30 14:25:28 -04007981 new_extents = kmalloc(sizeof(*new_extents),
7982 GFP_NOFS);
7983 nr_extents = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04007984 ret = get_new_locations(reloc_inode,
7985 extent_key,
Yan Zhengd899e052008-10-30 14:25:28 -04007986 group_start, 1,
Zheng Yan1a40e232008-09-26 10:09:34 -04007987 &new_extents,
7988 &nr_extents);
Yan Zhengd899e052008-10-30 14:25:28 -04007989 if (ret)
Zheng Yan1a40e232008-09-26 10:09:34 -04007990 goto out;
7991 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007992 ret = replace_one_extent(trans, found_root,
7993 path, extent_key,
7994 &first_key, ref_path,
7995 new_extents, nr_extents);
Yan Zhenge4404d62008-12-12 10:03:26 -05007996 } else {
Zheng Yan1a40e232008-09-26 10:09:34 -04007997 ret = relocate_tree_block(trans, found_root, path,
7998 &first_key, ref_path);
Zheng Yan1a40e232008-09-26 10:09:34 -04007999 }
8000 if (ret < 0)
8001 goto out;
8002 }
8003 ret = 0;
8004out:
8005 btrfs_end_transaction(trans, extent_root);
8006 kfree(new_extents);
8007 kfree(ref_path);
Chris Masonedbd8d42007-12-21 16:27:24 -05008008 return ret;
8009}
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008010#endif
Chris Masonedbd8d42007-12-21 16:27:24 -05008011
Chris Masonec44a352008-04-28 15:29:52 -04008012static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
8013{
8014 u64 num_devices;
8015 u64 stripped = BTRFS_BLOCK_GROUP_RAID0 |
8016 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
8017
Chris Masoncd02dca2010-12-13 14:56:23 -05008018 /*
8019 * we add in the count of missing devices because we want
8020 * to make sure that any RAID levels on a degraded FS
8021 * continue to be honored.
8022 */
8023 num_devices = root->fs_info->fs_devices->rw_devices +
8024 root->fs_info->fs_devices->missing_devices;
8025
Chris Masonec44a352008-04-28 15:29:52 -04008026 if (num_devices == 1) {
8027 stripped |= BTRFS_BLOCK_GROUP_DUP;
8028 stripped = flags & ~stripped;
8029
8030 /* turn raid0 into single device chunks */
8031 if (flags & BTRFS_BLOCK_GROUP_RAID0)
8032 return stripped;
8033
8034 /* turn mirroring into duplication */
8035 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
8036 BTRFS_BLOCK_GROUP_RAID10))
8037 return stripped | BTRFS_BLOCK_GROUP_DUP;
8038 return flags;
8039 } else {
8040 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04008041 if (flags & stripped)
8042 return flags;
8043
8044 stripped |= BTRFS_BLOCK_GROUP_DUP;
8045 stripped = flags & ~stripped;
8046
8047 /* switch duplicated blocks with raid1 */
8048 if (flags & BTRFS_BLOCK_GROUP_DUP)
8049 return stripped | BTRFS_BLOCK_GROUP_RAID1;
8050
8051 /* turn single device chunks into raid0 */
8052 return stripped | BTRFS_BLOCK_GROUP_RAID0;
8053 }
8054 return flags;
8055}
8056
Yan, Zhengf0486c62010-05-16 10:46:25 -04008057static int set_block_group_ro(struct btrfs_block_group_cache *cache)
Chris Mason0ef3e662008-05-24 14:04:53 -04008058{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008059 struct btrfs_space_info *sinfo = cache->space_info;
8060 u64 num_bytes;
8061 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04008062
Yan, Zhengf0486c62010-05-16 10:46:25 -04008063 if (cache->ro)
8064 return 0;
Chris Masonc286ac42008-07-22 23:06:41 -04008065
Yan, Zhengf0486c62010-05-16 10:46:25 -04008066 spin_lock(&sinfo->lock);
8067 spin_lock(&cache->lock);
8068 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8069 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04008070
Yan, Zhengf0486c62010-05-16 10:46:25 -04008071 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
8072 sinfo->bytes_may_use + sinfo->bytes_readonly +
Chris Mason65e53412010-12-24 06:41:52 -05008073 cache->reserved_pinned + num_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04008074 sinfo->bytes_readonly += num_bytes;
8075 sinfo->bytes_reserved += cache->reserved_pinned;
8076 cache->reserved_pinned = 0;
8077 cache->ro = 1;
8078 ret = 0;
8079 }
Chris Mason65e53412010-12-24 06:41:52 -05008080
Yan, Zhengf0486c62010-05-16 10:46:25 -04008081 spin_unlock(&cache->lock);
8082 spin_unlock(&sinfo->lock);
8083 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04008084}
8085
Yan, Zhengf0486c62010-05-16 10:46:25 -04008086int btrfs_set_block_group_ro(struct btrfs_root *root,
8087 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008088
8089{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008090 struct btrfs_trans_handle *trans;
8091 u64 alloc_flags;
8092 int ret;
8093
8094 BUG_ON(cache->ro);
8095
8096 trans = btrfs_join_transaction(root, 1);
8097 BUG_ON(IS_ERR(trans));
8098
8099 alloc_flags = update_block_group_flags(root, cache->flags);
8100 if (alloc_flags != cache->flags)
8101 do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags, 1);
8102
8103 ret = set_block_group_ro(cache);
8104 if (!ret)
8105 goto out;
8106 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
8107 ret = do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags, 1);
8108 if (ret < 0)
8109 goto out;
8110 ret = set_block_group_ro(cache);
8111out:
8112 btrfs_end_transaction(trans, root);
8113 return ret;
8114}
8115
Chris Masonc87f08c2011-02-16 13:57:04 -05008116int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
8117 struct btrfs_root *root, u64 type)
8118{
8119 u64 alloc_flags = get_alloc_profile(root, type);
8120 return do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags, 1);
8121}
8122
Miao Xie6d07bce2011-01-05 10:07:31 +00008123/*
8124 * helper to account the unused space of all the readonly block group in the
8125 * list. takes mirrors into account.
8126 */
8127static u64 __btrfs_get_ro_block_group_free_space(struct list_head *groups_list)
8128{
8129 struct btrfs_block_group_cache *block_group;
8130 u64 free_bytes = 0;
8131 int factor;
8132
8133 list_for_each_entry(block_group, groups_list, list) {
8134 spin_lock(&block_group->lock);
8135
8136 if (!block_group->ro) {
8137 spin_unlock(&block_group->lock);
8138 continue;
8139 }
8140
8141 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
8142 BTRFS_BLOCK_GROUP_RAID10 |
8143 BTRFS_BLOCK_GROUP_DUP))
8144 factor = 2;
8145 else
8146 factor = 1;
8147
8148 free_bytes += (block_group->key.offset -
8149 btrfs_block_group_used(&block_group->item)) *
8150 factor;
8151
8152 spin_unlock(&block_group->lock);
8153 }
8154
8155 return free_bytes;
8156}
8157
8158/*
8159 * helper to account the unused space of all the readonly block group in the
8160 * space_info. takes mirrors into account.
8161 */
8162u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
8163{
8164 int i;
8165 u64 free_bytes = 0;
8166
8167 spin_lock(&sinfo->lock);
8168
8169 for(i = 0; i < BTRFS_NR_RAID_TYPES; i++)
8170 if (!list_empty(&sinfo->block_groups[i]))
8171 free_bytes += __btrfs_get_ro_block_group_free_space(
8172 &sinfo->block_groups[i]);
8173
8174 spin_unlock(&sinfo->lock);
8175
8176 return free_bytes;
8177}
8178
Yan, Zhengf0486c62010-05-16 10:46:25 -04008179int btrfs_set_block_group_rw(struct btrfs_root *root,
8180 struct btrfs_block_group_cache *cache)
8181{
8182 struct btrfs_space_info *sinfo = cache->space_info;
8183 u64 num_bytes;
8184
8185 BUG_ON(!cache->ro);
8186
8187 spin_lock(&sinfo->lock);
8188 spin_lock(&cache->lock);
8189 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8190 cache->bytes_super - btrfs_block_group_used(&cache->item);
8191 sinfo->bytes_readonly -= num_bytes;
8192 cache->ro = 0;
8193 spin_unlock(&cache->lock);
8194 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008195 return 0;
8196}
8197
Josef Bacikba1bf482009-09-11 16:11:19 -04008198/*
8199 * checks to see if its even possible to relocate this block group.
8200 *
8201 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
8202 * ok to go ahead and try.
8203 */
8204int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04008205{
Zheng Yan1a40e232008-09-26 10:09:34 -04008206 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04008207 struct btrfs_space_info *space_info;
8208 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
8209 struct btrfs_device *device;
8210 int full = 0;
8211 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05008212
Josef Bacikba1bf482009-09-11 16:11:19 -04008213 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04008214
Josef Bacikba1bf482009-09-11 16:11:19 -04008215 /* odd, couldn't find the block group, leave it alone */
8216 if (!block_group)
8217 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05008218
Josef Bacikba1bf482009-09-11 16:11:19 -04008219 /* no bytes used, we're good */
8220 if (!btrfs_block_group_used(&block_group->item))
8221 goto out;
Chris Mason323da792008-05-09 11:46:48 -04008222
Josef Bacikba1bf482009-09-11 16:11:19 -04008223 space_info = block_group->space_info;
8224 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04008225
Josef Bacikba1bf482009-09-11 16:11:19 -04008226 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04008227
Josef Bacikba1bf482009-09-11 16:11:19 -04008228 /*
8229 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04008230 * relocate it unless we're able to allocate a new chunk below.
8231 *
8232 * Otherwise, we need to make sure we have room in the space to handle
8233 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04008234 */
Chris Mason7ce618d2009-09-22 14:48:44 -04008235 if ((space_info->total_bytes != block_group->key.offset) &&
8236 (space_info->bytes_used + space_info->bytes_reserved +
Josef Bacikba1bf482009-09-11 16:11:19 -04008237 space_info->bytes_pinned + space_info->bytes_readonly +
8238 btrfs_block_group_used(&block_group->item) <
Chris Mason7ce618d2009-09-22 14:48:44 -04008239 space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04008240 spin_unlock(&space_info->lock);
8241 goto out;
8242 }
8243 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008244
Josef Bacikba1bf482009-09-11 16:11:19 -04008245 /*
8246 * ok we don't have enough space, but maybe we have free space on our
8247 * devices to allocate new chunks for relocation, so loop through our
8248 * alloc devices and guess if we have enough space. However, if we
8249 * were marked as full, then we know there aren't enough chunks, and we
8250 * can just return.
8251 */
8252 ret = -1;
8253 if (full)
8254 goto out;
Chris Mason4313b392008-01-03 09:08:48 -05008255
Josef Bacikba1bf482009-09-11 16:11:19 -04008256 mutex_lock(&root->fs_info->chunk_mutex);
8257 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
8258 u64 min_free = btrfs_block_group_used(&block_group->item);
Miao Xie7bfc8372011-01-05 10:07:26 +00008259 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04008260
Josef Bacikba1bf482009-09-11 16:11:19 -04008261 /*
8262 * check to make sure we can actually find a chunk with enough
8263 * space to fit our block group in.
8264 */
8265 if (device->total_bytes > device->bytes_used + min_free) {
8266 ret = find_free_dev_extent(NULL, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00008267 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04008268 if (!ret)
Yan73e48b22008-01-03 14:14:39 -05008269 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04008270 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05008271 }
Chris Masonedbd8d42007-12-21 16:27:24 -05008272 }
Josef Bacikba1bf482009-09-11 16:11:19 -04008273 mutex_unlock(&root->fs_info->chunk_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05008274out:
Josef Bacikba1bf482009-09-11 16:11:19 -04008275 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05008276 return ret;
8277}
8278
Christoph Hellwigb2950862008-12-02 09:54:17 -05008279static int find_first_block_group(struct btrfs_root *root,
8280 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04008281{
Chris Mason925baed2008-06-25 16:01:30 -04008282 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008283 struct btrfs_key found_key;
8284 struct extent_buffer *leaf;
8285 int slot;
8286
8287 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
8288 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008289 goto out;
8290
Chris Masond3977122009-01-05 21:25:51 -05008291 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008292 slot = path->slots[0];
8293 leaf = path->nodes[0];
8294 if (slot >= btrfs_header_nritems(leaf)) {
8295 ret = btrfs_next_leaf(root, path);
8296 if (ret == 0)
8297 continue;
8298 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008299 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04008300 break;
8301 }
8302 btrfs_item_key_to_cpu(leaf, &found_key, slot);
8303
8304 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04008305 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
8306 ret = 0;
8307 goto out;
8308 }
Chris Mason0b86a832008-03-24 15:01:56 -04008309 path->slots[0]++;
8310 }
Chris Mason925baed2008-06-25 16:01:30 -04008311out:
Chris Mason0b86a832008-03-24 15:01:56 -04008312 return ret;
8313}
8314
Josef Bacik0af3d002010-06-21 14:48:16 -04008315void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
8316{
8317 struct btrfs_block_group_cache *block_group;
8318 u64 last = 0;
8319
8320 while (1) {
8321 struct inode *inode;
8322
8323 block_group = btrfs_lookup_first_block_group(info, last);
8324 while (block_group) {
8325 spin_lock(&block_group->lock);
8326 if (block_group->iref)
8327 break;
8328 spin_unlock(&block_group->lock);
8329 block_group = next_block_group(info->tree_root,
8330 block_group);
8331 }
8332 if (!block_group) {
8333 if (last == 0)
8334 break;
8335 last = 0;
8336 continue;
8337 }
8338
8339 inode = block_group->inode;
8340 block_group->iref = 0;
8341 block_group->inode = NULL;
8342 spin_unlock(&block_group->lock);
8343 iput(inode);
8344 last = block_group->key.objectid + block_group->key.offset;
8345 btrfs_put_block_group(block_group);
8346 }
8347}
8348
Zheng Yan1a40e232008-09-26 10:09:34 -04008349int btrfs_free_block_groups(struct btrfs_fs_info *info)
8350{
8351 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04008352 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04008353 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04008354 struct rb_node *n;
8355
Yan Zheng11833d62009-09-11 16:11:19 -04008356 down_write(&info->extent_commit_sem);
8357 while (!list_empty(&info->caching_block_groups)) {
8358 caching_ctl = list_entry(info->caching_block_groups.next,
8359 struct btrfs_caching_control, list);
8360 list_del(&caching_ctl->list);
8361 put_caching_control(caching_ctl);
8362 }
8363 up_write(&info->extent_commit_sem);
8364
Zheng Yan1a40e232008-09-26 10:09:34 -04008365 spin_lock(&info->block_group_cache_lock);
8366 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
8367 block_group = rb_entry(n, struct btrfs_block_group_cache,
8368 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04008369 rb_erase(&block_group->cache_node,
8370 &info->block_group_cache_tree);
Yan Zhengd899e052008-10-30 14:25:28 -04008371 spin_unlock(&info->block_group_cache_lock);
8372
Josef Bacik80eb2342008-10-29 14:49:05 -04008373 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008374 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04008375 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05008376
Josef Bacik817d52f2009-07-13 21:29:25 -04008377 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008378 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008379
Josef Bacik3c148742011-02-02 15:53:47 +00008380 /*
8381 * We haven't cached this block group, which means we could
8382 * possibly have excluded extents on this block group.
8383 */
8384 if (block_group->cached == BTRFS_CACHE_NO)
8385 free_excluded_extents(info->extent_root, block_group);
8386
Josef Bacik817d52f2009-07-13 21:29:25 -04008387 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00008388 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04008389
8390 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008391 }
8392 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04008393
8394 /* now that all the block groups are freed, go through and
8395 * free all the space_info structs. This is only called during
8396 * the final stages of unmount, and so we know nobody is
8397 * using them. We call synchronize_rcu() once before we start,
8398 * just to be on the safe side.
8399 */
8400 synchronize_rcu();
8401
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04008402 release_global_block_rsv(info);
8403
Chris Mason4184ea72009-03-10 12:39:20 -04008404 while(!list_empty(&info->space_info)) {
8405 space_info = list_entry(info->space_info.next,
8406 struct btrfs_space_info,
8407 list);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008408 if (space_info->bytes_pinned > 0 ||
8409 space_info->bytes_reserved > 0) {
8410 WARN_ON(1);
8411 dump_space_info(space_info, 0, 0);
8412 }
Chris Mason4184ea72009-03-10 12:39:20 -04008413 list_del(&space_info->list);
8414 kfree(space_info);
8415 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008416 return 0;
8417}
8418
Yan, Zhengb742bb82010-05-16 10:46:24 -04008419static void __link_block_group(struct btrfs_space_info *space_info,
8420 struct btrfs_block_group_cache *cache)
8421{
8422 int index = get_block_group_index(cache);
8423
8424 down_write(&space_info->groups_sem);
8425 list_add_tail(&cache->list, &space_info->block_groups[index]);
8426 up_write(&space_info->groups_sem);
8427}
8428
Chris Mason9078a3e2007-04-26 16:46:15 -04008429int btrfs_read_block_groups(struct btrfs_root *root)
8430{
8431 struct btrfs_path *path;
8432 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008433 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04008434 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04008435 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04008436 struct btrfs_key key;
8437 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04008438 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04008439 int need_clear = 0;
8440 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04008441
Chris Masonbe744172007-05-06 10:15:01 -04008442 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04008443 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008444 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04008445 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04008446 path = btrfs_alloc_path();
8447 if (!path)
8448 return -ENOMEM;
8449
Josef Bacik0af3d002010-06-21 14:48:16 -04008450 cache_gen = btrfs_super_cache_generation(&root->fs_info->super_copy);
8451 if (cache_gen != 0 &&
8452 btrfs_super_generation(&root->fs_info->super_copy) != cache_gen)
8453 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04008454 if (btrfs_test_opt(root, CLEAR_CACHE))
8455 need_clear = 1;
Josef Bacik8216ef82010-10-28 16:55:47 -04008456 if (!btrfs_test_opt(root, SPACE_CACHE) && cache_gen)
8457 printk(KERN_INFO "btrfs: disk space caching is enabled\n");
Josef Bacik0af3d002010-06-21 14:48:16 -04008458
Chris Masond3977122009-01-05 21:25:51 -05008459 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008460 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008461 if (ret > 0)
8462 break;
Chris Mason0b86a832008-03-24 15:01:56 -04008463 if (ret != 0)
8464 goto error;
Chris Mason5f39d392007-10-15 16:14:19 -04008465 leaf = path->nodes[0];
8466 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04008467 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04008468 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04008469 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008470 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04008471 }
Chris Mason3e1ad542007-05-07 20:03:49 -04008472
Yan Zhengd2fb3432008-12-11 16:30:39 -05008473 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04008474 spin_lock_init(&cache->lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04008475 spin_lock_init(&cache->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008476 cache->fs_info = info;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008477 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04008478 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik96303082009-07-13 21:29:25 -04008479
Josef Bacik0af3d002010-06-21 14:48:16 -04008480 if (need_clear)
8481 cache->disk_cache_state = BTRFS_DC_CLEAR;
8482
Josef Bacik96303082009-07-13 21:29:25 -04008483 /*
8484 * we only want to have 32k of ram per block group for keeping
8485 * track of free space, and if we pass 1/2 of that we want to
8486 * start converting things over to using bitmaps
8487 */
8488 cache->extents_thresh = ((1024 * 32) / 2) /
8489 sizeof(struct btrfs_free_space);
8490
Chris Mason5f39d392007-10-15 16:14:19 -04008491 read_extent_buffer(leaf, &cache->item,
8492 btrfs_item_ptr_offset(leaf, path->slots[0]),
8493 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04008494 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason0b86a832008-03-24 15:01:56 -04008495
Chris Mason9078a3e2007-04-26 16:46:15 -04008496 key.objectid = found_key.objectid + found_key.offset;
8497 btrfs_release_path(root, path);
Chris Mason0b86a832008-03-24 15:01:56 -04008498 cache->flags = btrfs_block_group_flags(&cache->item);
Josef Bacik817d52f2009-07-13 21:29:25 -04008499 cache->sectorsize = root->sectorsize;
8500
Josef Bacik817d52f2009-07-13 21:29:25 -04008501 /*
Josef Bacik3c148742011-02-02 15:53:47 +00008502 * We need to exclude the super stripes now so that the space
8503 * info has super bytes accounted for, otherwise we'll think
8504 * we have more space than we actually do.
8505 */
8506 exclude_super_stripes(root, cache);
8507
8508 /*
Josef Bacik817d52f2009-07-13 21:29:25 -04008509 * check for two cases, either we are full, and therefore
8510 * don't need to bother with the caching work since we won't
8511 * find any space, or we are empty, and we can just add all
8512 * the space in and be done with it. This saves us _alot_ of
8513 * time, particularly in the full case.
8514 */
8515 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -04008516 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008517 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04008518 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008519 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04008520 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008521 cache->cached = BTRFS_CACHE_FINISHED;
8522 add_new_free_space(cache, root->fs_info,
8523 found_key.objectid,
8524 found_key.objectid +
8525 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04008526 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008527 }
Chris Mason96b51792007-10-15 16:15:19 -04008528
Chris Mason6324fbf2008-03-24 15:01:59 -04008529 ret = update_space_info(info, cache->flags, found_key.offset,
8530 btrfs_block_group_used(&cache->item),
8531 &space_info);
8532 BUG_ON(ret);
8533 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04008534 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008535 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008536 spin_unlock(&cache->space_info->lock);
8537
Yan, Zhengb742bb82010-05-16 10:46:24 -04008538 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008539
Josef Bacik0f9dd462008-09-23 13:14:11 -04008540 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8541 BUG_ON(ret);
Chris Mason75ccf472008-09-30 19:24:06 -04008542
8543 set_avail_alloc_bits(root->fs_info, cache->flags);
Yan Zheng2b820322008-11-17 21:11:30 -05008544 if (btrfs_chunk_readonly(root, cache->key.objectid))
Yan, Zhengf0486c62010-05-16 10:46:25 -04008545 set_block_group_ro(cache);
Chris Mason9078a3e2007-04-26 16:46:15 -04008546 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04008547
8548 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
8549 if (!(get_alloc_profile(root, space_info->flags) &
8550 (BTRFS_BLOCK_GROUP_RAID10 |
8551 BTRFS_BLOCK_GROUP_RAID1 |
8552 BTRFS_BLOCK_GROUP_DUP)))
8553 continue;
8554 /*
8555 * avoid allocating from un-mirrored block group if there are
8556 * mirrored block groups.
8557 */
8558 list_for_each_entry(cache, &space_info->block_groups[3], list)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008559 set_block_group_ro(cache);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008560 list_for_each_entry(cache, &space_info->block_groups[4], list)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008561 set_block_group_ro(cache);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008562 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008563
8564 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04008565 ret = 0;
8566error:
Chris Mason9078a3e2007-04-26 16:46:15 -04008567 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04008568 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008569}
Chris Mason6324fbf2008-03-24 15:01:59 -04008570
8571int btrfs_make_block_group(struct btrfs_trans_handle *trans,
8572 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04008573 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04008574 u64 size)
8575{
8576 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04008577 struct btrfs_root *extent_root;
8578 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04008579
8580 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04008581
Chris Mason12fcfd22009-03-24 10:24:20 -04008582 root->fs_info->last_trans_log_full_commit = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04008583
Chris Mason8f18cf12008-04-25 16:53:30 -04008584 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008585 if (!cache)
8586 return -ENOMEM;
8587
Chris Masone17cade2008-04-15 15:41:47 -04008588 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04008589 cache->key.offset = size;
Yan Zhengd2fb3432008-12-11 16:30:39 -05008590 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Josef Bacik96303082009-07-13 21:29:25 -04008591 cache->sectorsize = root->sectorsize;
Josef Bacik0af3d002010-06-21 14:48:16 -04008592 cache->fs_info = root->fs_info;
Josef Bacik96303082009-07-13 21:29:25 -04008593
8594 /*
8595 * we only want to have 32k of ram per block group for keeping track
8596 * of free space, and if we pass 1/2 of that we want to start
8597 * converting things over to using bitmaps
8598 */
8599 cache->extents_thresh = ((1024 * 32) / 2) /
8600 sizeof(struct btrfs_free_space);
Yan Zhengd2fb3432008-12-11 16:30:39 -05008601 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04008602 spin_lock_init(&cache->lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04008603 spin_lock_init(&cache->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008604 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04008605 INIT_LIST_HEAD(&cache->cluster_list);
Chris Mason0ef3e662008-05-24 14:04:53 -04008606
Chris Mason6324fbf2008-03-24 15:01:59 -04008607 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04008608 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
8609 cache->flags = type;
8610 btrfs_set_block_group_flags(&cache->item, type);
8611
Yan Zheng11833d62009-09-11 16:11:19 -04008612 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008613 cache->cached = BTRFS_CACHE_FINISHED;
Yan Zheng11833d62009-09-11 16:11:19 -04008614 exclude_super_stripes(root, cache);
Josef Bacik96303082009-07-13 21:29:25 -04008615
Josef Bacik817d52f2009-07-13 21:29:25 -04008616 add_new_free_space(cache, root->fs_info, chunk_offset,
8617 chunk_offset + size);
8618
Yan Zheng11833d62009-09-11 16:11:19 -04008619 free_excluded_extents(root, cache);
8620
Chris Mason6324fbf2008-03-24 15:01:59 -04008621 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
8622 &cache->space_info);
8623 BUG_ON(ret);
Josef Bacik1b2da372009-09-11 16:11:20 -04008624
8625 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008626 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008627 spin_unlock(&cache->space_info->lock);
8628
Yan, Zhengb742bb82010-05-16 10:46:24 -04008629 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008630
Josef Bacik0f9dd462008-09-23 13:14:11 -04008631 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8632 BUG_ON(ret);
Chris Masonc286ac42008-07-22 23:06:41 -04008633
Chris Mason6324fbf2008-03-24 15:01:59 -04008634 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
8635 sizeof(cache->item));
8636 BUG_ON(ret);
8637
Chris Masond18a2c42008-04-04 15:40:00 -04008638 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04008639
Chris Mason6324fbf2008-03-24 15:01:59 -04008640 return 0;
8641}
Zheng Yan1a40e232008-09-26 10:09:34 -04008642
8643int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
8644 struct btrfs_root *root, u64 group_start)
8645{
8646 struct btrfs_path *path;
8647 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04008648 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -04008649 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04008650 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04008651 struct inode *inode;
Zheng Yan1a40e232008-09-26 10:09:34 -04008652 int ret;
Josef Bacik89a55892010-10-14 14:52:27 -04008653 int factor;
Zheng Yan1a40e232008-09-26 10:09:34 -04008654
Zheng Yan1a40e232008-09-26 10:09:34 -04008655 root = root->fs_info->extent_root;
8656
8657 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
8658 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05008659 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04008660
8661 memcpy(&key, &block_group->key, sizeof(key));
Josef Bacik89a55892010-10-14 14:52:27 -04008662 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
8663 BTRFS_BLOCK_GROUP_RAID1 |
8664 BTRFS_BLOCK_GROUP_RAID10))
8665 factor = 2;
8666 else
8667 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04008668
Chris Mason44fb5512009-06-04 15:34:51 -04008669 /* make sure this block group isn't part of an allocation cluster */
8670 cluster = &root->fs_info->data_alloc_cluster;
8671 spin_lock(&cluster->refill_lock);
8672 btrfs_return_cluster_to_free_space(block_group, cluster);
8673 spin_unlock(&cluster->refill_lock);
8674
8675 /*
8676 * make sure this block group isn't part of a metadata
8677 * allocation cluster
8678 */
8679 cluster = &root->fs_info->meta_alloc_cluster;
8680 spin_lock(&cluster->refill_lock);
8681 btrfs_return_cluster_to_free_space(block_group, cluster);
8682 spin_unlock(&cluster->refill_lock);
8683
Zheng Yan1a40e232008-09-26 10:09:34 -04008684 path = btrfs_alloc_path();
8685 BUG_ON(!path);
8686
Josef Bacik0af3d002010-06-21 14:48:16 -04008687 inode = lookup_free_space_inode(root, block_group, path);
8688 if (!IS_ERR(inode)) {
8689 btrfs_orphan_add(trans, inode);
8690 clear_nlink(inode);
8691 /* One for the block groups ref */
8692 spin_lock(&block_group->lock);
8693 if (block_group->iref) {
8694 block_group->iref = 0;
8695 block_group->inode = NULL;
8696 spin_unlock(&block_group->lock);
8697 iput(inode);
8698 } else {
8699 spin_unlock(&block_group->lock);
8700 }
8701 /* One for our lookup ref */
8702 iput(inode);
8703 }
8704
8705 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
8706 key.offset = block_group->key.objectid;
8707 key.type = 0;
8708
8709 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
8710 if (ret < 0)
8711 goto out;
8712 if (ret > 0)
8713 btrfs_release_path(tree_root, path);
8714 if (ret == 0) {
8715 ret = btrfs_del_item(trans, tree_root, path);
8716 if (ret)
8717 goto out;
8718 btrfs_release_path(tree_root, path);
8719 }
8720
Yan Zheng3dfdb932009-01-21 10:49:16 -05008721 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008722 rb_erase(&block_group->cache_node,
8723 &root->fs_info->block_group_cache_tree);
Yan Zheng3dfdb932009-01-21 10:49:16 -05008724 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008725
Josef Bacik80eb2342008-10-29 14:49:05 -04008726 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04008727 /*
8728 * we must use list_del_init so people can check to see if they
8729 * are still on the list after taking the semaphore
8730 */
8731 list_del_init(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04008732 up_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008733
Josef Bacik817d52f2009-07-13 21:29:25 -04008734 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008735 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008736
8737 btrfs_remove_free_space_cache(block_group);
8738
Yan Zhengc146afa2008-11-12 14:34:12 -05008739 spin_lock(&block_group->space_info->lock);
8740 block_group->space_info->total_bytes -= block_group->key.offset;
8741 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -04008742 block_group->space_info->disk_total -= block_group->key.offset * factor;
Yan Zhengc146afa2008-11-12 14:34:12 -05008743 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04008744
Josef Bacik0af3d002010-06-21 14:48:16 -04008745 memcpy(&key, &block_group->key, sizeof(key));
8746
Chris Mason283bb192009-07-24 16:30:55 -04008747 btrfs_clear_space_info_full(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05008748
Chris Masonfa9c0d792009-04-03 09:47:43 -04008749 btrfs_put_block_group(block_group);
8750 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04008751
8752 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
8753 if (ret > 0)
8754 ret = -EIO;
8755 if (ret < 0)
8756 goto out;
8757
8758 ret = btrfs_del_item(trans, root, path);
8759out:
8760 btrfs_free_path(path);
8761 return ret;
8762}
liuboacce9522011-01-06 19:30:25 +08008763
8764int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
8765{
8766 return unpin_extent_range(root, start, end);
8767}
8768
8769int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr,
8770 u64 num_bytes)
8771{
8772 return btrfs_discard_extent(root, bytenr, num_bytes);
8773}