blob: f1db57d4a016e3d060db66ccb25341cc64d8a453 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
Zach Brownec6b9102007-07-11 10:00:37 -040018#include <linux/sched.h>
Chris Masonedbd8d42007-12-21 16:27:24 -050019#include <linux/pagemap.h>
Chris Masonec44a352008-04-28 15:29:52 -040020#include <linux/writeback.h>
David Woodhouse21af8042008-08-12 14:13:26 +010021#include <linux/blkdev.h>
Chris Masonb7a9f292009-02-04 09:23:45 -050022#include <linux/sort.h>
Chris Mason4184ea72009-03-10 12:39:20 -040023#include <linux/rcupdate.h>
Josef Bacik817d52f2009-07-13 21:29:25 -040024#include <linux/kthread.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050026#include "compat.h"
Chris Mason74493f72007-12-11 09:25:06 -050027#include "hash.h"
Chris Masonfec577f2007-02-26 10:40:21 -050028#include "ctree.h"
29#include "disk-io.h"
30#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040031#include "transaction.h"
Chris Mason0b86a832008-03-24 15:01:56 -040032#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040033#include "locking.h"
Chris Masonfa9c0d72009-04-03 09:47:43 -040034#include "free-space-cache.h"
Chris Masonfec577f2007-02-26 10:40:21 -050035
Josef Bacikf3465ca2008-11-12 14:19:50 -050036static int update_block_group(struct btrfs_trans_handle *trans,
37 struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -040038 u64 bytenr, u64 num_bytes, int alloc);
39static int update_reserved_bytes(struct btrfs_block_group_cache *cache,
40 u64 num_bytes, int reserve, int sinfo);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040041static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
42 struct btrfs_root *root,
43 u64 bytenr, u64 num_bytes, u64 parent,
44 u64 root_objectid, u64 owner_objectid,
45 u64 owner_offset, int refs_to_drop,
46 struct btrfs_delayed_extent_op *extra_op);
47static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
48 struct extent_buffer *leaf,
49 struct btrfs_extent_item *ei);
50static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
51 struct btrfs_root *root,
52 u64 parent, u64 root_objectid,
53 u64 flags, u64 owner, u64 offset,
54 struct btrfs_key *ins, int ref_mod);
55static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
56 struct btrfs_root *root,
57 u64 parent, u64 root_objectid,
58 u64 flags, struct btrfs_disk_key *key,
59 int level, struct btrfs_key *ins);
Josef Bacik6a632092009-02-20 11:00:09 -050060static int do_chunk_alloc(struct btrfs_trans_handle *trans,
61 struct btrfs_root *extent_root, u64 alloc_bytes,
62 u64 flags, int force);
Yan Zheng11833d62009-09-11 16:11:19 -040063static int find_next_key(struct btrfs_path *path, int level,
64 struct btrfs_key *key);
Josef Bacik9ed74f22009-09-11 16:12:44 -040065static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
66 int dump_block_groups);
Josef Bacik6a632092009-02-20 11:00:09 -050067
Josef Bacik817d52f2009-07-13 21:29:25 -040068static noinline int
69block_group_cache_done(struct btrfs_block_group_cache *cache)
70{
71 smp_mb();
72 return cache->cached == BTRFS_CACHE_FINISHED;
73}
74
Josef Bacik0f9dd462008-09-23 13:14:11 -040075static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
76{
77 return (cache->flags & bits) == bits;
78}
79
Josef Bacik11dfe352009-11-13 20:12:59 +000080void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
81{
82 atomic_inc(&cache->count);
83}
84
85void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
86{
Yan, Zhengf0486c62010-05-16 10:46:25 -040087 if (atomic_dec_and_test(&cache->count)) {
88 WARN_ON(cache->pinned > 0);
89 WARN_ON(cache->reserved > 0);
90 WARN_ON(cache->reserved_pinned > 0);
Josef Bacik11dfe352009-11-13 20:12:59 +000091 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -040092 }
Josef Bacik11dfe352009-11-13 20:12:59 +000093}
94
Josef Bacik0f9dd462008-09-23 13:14:11 -040095/*
96 * this adds the block group to the fs_info rb tree for the block group
97 * cache
98 */
Christoph Hellwigb2950862008-12-02 09:54:17 -050099static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400100 struct btrfs_block_group_cache *block_group)
101{
102 struct rb_node **p;
103 struct rb_node *parent = NULL;
104 struct btrfs_block_group_cache *cache;
105
106 spin_lock(&info->block_group_cache_lock);
107 p = &info->block_group_cache_tree.rb_node;
108
109 while (*p) {
110 parent = *p;
111 cache = rb_entry(parent, struct btrfs_block_group_cache,
112 cache_node);
113 if (block_group->key.objectid < cache->key.objectid) {
114 p = &(*p)->rb_left;
115 } else if (block_group->key.objectid > cache->key.objectid) {
116 p = &(*p)->rb_right;
117 } else {
118 spin_unlock(&info->block_group_cache_lock);
119 return -EEXIST;
120 }
121 }
122
123 rb_link_node(&block_group->cache_node, parent, p);
124 rb_insert_color(&block_group->cache_node,
125 &info->block_group_cache_tree);
126 spin_unlock(&info->block_group_cache_lock);
127
128 return 0;
129}
130
131/*
132 * This will return the block group at or after bytenr if contains is 0, else
133 * it will return the block group that contains the bytenr
134 */
135static struct btrfs_block_group_cache *
136block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
137 int contains)
138{
139 struct btrfs_block_group_cache *cache, *ret = NULL;
140 struct rb_node *n;
141 u64 end, start;
142
143 spin_lock(&info->block_group_cache_lock);
144 n = info->block_group_cache_tree.rb_node;
145
146 while (n) {
147 cache = rb_entry(n, struct btrfs_block_group_cache,
148 cache_node);
149 end = cache->key.objectid + cache->key.offset - 1;
150 start = cache->key.objectid;
151
152 if (bytenr < start) {
153 if (!contains && (!ret || start < ret->key.objectid))
154 ret = cache;
155 n = n->rb_left;
156 } else if (bytenr > start) {
157 if (contains && bytenr <= end) {
158 ret = cache;
159 break;
160 }
161 n = n->rb_right;
162 } else {
163 ret = cache;
164 break;
165 }
166 }
Yan Zhengd2fb3432008-12-11 16:30:39 -0500167 if (ret)
Josef Bacik11dfe352009-11-13 20:12:59 +0000168 btrfs_get_block_group(ret);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400169 spin_unlock(&info->block_group_cache_lock);
170
171 return ret;
172}
173
Yan Zheng11833d62009-09-11 16:11:19 -0400174static int add_excluded_extent(struct btrfs_root *root,
175 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400176{
Yan Zheng11833d62009-09-11 16:11:19 -0400177 u64 end = start + num_bytes - 1;
178 set_extent_bits(&root->fs_info->freed_extents[0],
179 start, end, EXTENT_UPTODATE, GFP_NOFS);
180 set_extent_bits(&root->fs_info->freed_extents[1],
181 start, end, EXTENT_UPTODATE, GFP_NOFS);
182 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400183}
184
Yan Zheng11833d62009-09-11 16:11:19 -0400185static void free_excluded_extents(struct btrfs_root *root,
186 struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400187{
Yan Zheng11833d62009-09-11 16:11:19 -0400188 u64 start, end;
189
190 start = cache->key.objectid;
191 end = start + cache->key.offset - 1;
192
193 clear_extent_bits(&root->fs_info->freed_extents[0],
194 start, end, EXTENT_UPTODATE, GFP_NOFS);
195 clear_extent_bits(&root->fs_info->freed_extents[1],
196 start, end, EXTENT_UPTODATE, GFP_NOFS);
197}
198
199static int exclude_super_stripes(struct btrfs_root *root,
200 struct btrfs_block_group_cache *cache)
201{
Josef Bacik817d52f2009-07-13 21:29:25 -0400202 u64 bytenr;
203 u64 *logical;
204 int stripe_len;
205 int i, nr, ret;
206
Yan, Zheng06b23312009-11-26 09:31:11 +0000207 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
208 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
209 cache->bytes_super += stripe_len;
210 ret = add_excluded_extent(root, cache->key.objectid,
211 stripe_len);
212 BUG_ON(ret);
213 }
214
Josef Bacik817d52f2009-07-13 21:29:25 -0400215 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
216 bytenr = btrfs_sb_offset(i);
217 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
218 cache->key.objectid, bytenr,
219 0, &logical, &nr, &stripe_len);
220 BUG_ON(ret);
Yan Zheng11833d62009-09-11 16:11:19 -0400221
Josef Bacik817d52f2009-07-13 21:29:25 -0400222 while (nr--) {
Josef Bacik1b2da372009-09-11 16:11:20 -0400223 cache->bytes_super += stripe_len;
Yan Zheng11833d62009-09-11 16:11:19 -0400224 ret = add_excluded_extent(root, logical[nr],
225 stripe_len);
226 BUG_ON(ret);
Josef Bacik817d52f2009-07-13 21:29:25 -0400227 }
Yan Zheng11833d62009-09-11 16:11:19 -0400228
Josef Bacik817d52f2009-07-13 21:29:25 -0400229 kfree(logical);
230 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400231 return 0;
232}
233
Yan Zheng11833d62009-09-11 16:11:19 -0400234static struct btrfs_caching_control *
235get_caching_control(struct btrfs_block_group_cache *cache)
236{
237 struct btrfs_caching_control *ctl;
238
239 spin_lock(&cache->lock);
240 if (cache->cached != BTRFS_CACHE_STARTED) {
241 spin_unlock(&cache->lock);
242 return NULL;
243 }
244
Josef Bacikdde5abe2010-09-16 16:17:03 -0400245 /* We're loading it the fast way, so we don't have a caching_ctl. */
246 if (!cache->caching_ctl) {
247 spin_unlock(&cache->lock);
248 return NULL;
249 }
250
Yan Zheng11833d62009-09-11 16:11:19 -0400251 ctl = cache->caching_ctl;
252 atomic_inc(&ctl->count);
253 spin_unlock(&cache->lock);
254 return ctl;
255}
256
257static void put_caching_control(struct btrfs_caching_control *ctl)
258{
259 if (atomic_dec_and_test(&ctl->count))
260 kfree(ctl);
261}
262
Josef Bacik0f9dd462008-09-23 13:14:11 -0400263/*
264 * this is only called by cache_block_group, since we could have freed extents
265 * we need to check the pinned_extents for any extents that can't be used yet
266 * since their free space will be released as soon as the transaction commits.
267 */
Josef Bacik817d52f2009-07-13 21:29:25 -0400268static u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400269 struct btrfs_fs_info *info, u64 start, u64 end)
270{
Josef Bacik817d52f2009-07-13 21:29:25 -0400271 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400272 int ret;
273
274 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400275 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400276 &extent_start, &extent_end,
Yan Zheng11833d62009-09-11 16:11:19 -0400277 EXTENT_DIRTY | EXTENT_UPTODATE);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400278 if (ret)
279 break;
280
Yan, Zheng06b23312009-11-26 09:31:11 +0000281 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400282 start = extent_end + 1;
283 } else if (extent_start > start && extent_start < end) {
284 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400285 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500286 ret = btrfs_add_free_space(block_group, start,
287 size);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400288 BUG_ON(ret);
289 start = extent_end + 1;
290 } else {
291 break;
292 }
293 }
294
295 if (start < end) {
296 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400297 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500298 ret = btrfs_add_free_space(block_group, start, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400299 BUG_ON(ret);
300 }
301
Josef Bacik817d52f2009-07-13 21:29:25 -0400302 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400303}
304
Josef Bacik817d52f2009-07-13 21:29:25 -0400305static int caching_kthread(void *data)
Chris Masone37c9e62007-05-09 20:13:14 -0400306{
Josef Bacik817d52f2009-07-13 21:29:25 -0400307 struct btrfs_block_group_cache *block_group = data;
308 struct btrfs_fs_info *fs_info = block_group->fs_info;
Yan Zheng11833d62009-09-11 16:11:19 -0400309 struct btrfs_caching_control *caching_ctl = block_group->caching_ctl;
310 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400311 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400312 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400313 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400314 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400315 u64 last = 0;
316 u32 nritems;
317 int ret = 0;
Chris Masonf510cfe2007-10-15 16:14:48 -0400318
Chris Masone37c9e62007-05-09 20:13:14 -0400319 path = btrfs_alloc_path();
320 if (!path)
321 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -0400322
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 Masonfa9c0d72009-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 Masonfa9c0d72009-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 Hellwig746cd1e2009-09-12 07:35:43 +02001746 blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_KERNEL,
Dmitry Monakhovfbd9b092010-04-28 17:55:06 +04001747 BLKDEV_IFL_WAIT | BLKDEV_IFL_BARRIER);
Chris Mason15916de2008-11-19 21:17:22 -05001748}
Chris Mason15916de2008-11-19 21:17:22 -05001749
Liu Hui1f3c79a2009-01-05 15:57:51 -05001750static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
1751 u64 num_bytes)
1752{
Liu Hui1f3c79a2009-01-05 15:57:51 -05001753 int ret;
1754 u64 map_length = num_bytes;
1755 struct btrfs_multi_bio *multi = NULL;
1756
Christoph Hellwige244a0a2009-10-14 09:24:59 -04001757 if (!btrfs_test_opt(root, DISCARD))
1758 return 0;
1759
Liu Hui1f3c79a2009-01-05 15:57:51 -05001760 /* Tell the block device(s) that the sectors can be discarded */
1761 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
1762 bytenr, &map_length, &multi, 0);
1763 if (!ret) {
1764 struct btrfs_bio_stripe *stripe = multi->stripes;
1765 int i;
1766
1767 if (map_length > num_bytes)
1768 map_length = num_bytes;
1769
1770 for (i = 0; i < multi->num_stripes; i++, stripe++) {
1771 btrfs_issue_discard(stripe->dev->bdev,
1772 stripe->physical,
1773 map_length);
1774 }
1775 kfree(multi);
1776 }
1777
1778 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001779}
1780
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001781int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1782 struct btrfs_root *root,
1783 u64 bytenr, u64 num_bytes, u64 parent,
1784 u64 root_objectid, u64 owner, u64 offset)
Zheng Yan31840ae2008-09-23 13:14:14 -04001785{
1786 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001787 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
1788 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04001789
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001790 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1791 ret = btrfs_add_delayed_tree_ref(trans, bytenr, num_bytes,
1792 parent, root_objectid, (int)owner,
1793 BTRFS_ADD_DELAYED_REF, NULL);
1794 } else {
1795 ret = btrfs_add_delayed_data_ref(trans, bytenr, num_bytes,
1796 parent, root_objectid, owner, offset,
1797 BTRFS_ADD_DELAYED_REF, NULL);
1798 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001799 return ret;
1800}
1801
Chris Mason925baed2008-06-25 16:01:30 -04001802static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001803 struct btrfs_root *root,
1804 u64 bytenr, u64 num_bytes,
1805 u64 parent, u64 root_objectid,
1806 u64 owner, u64 offset, int refs_to_add,
1807 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04001808{
Chris Mason5caf2a02007-04-02 11:20:42 -04001809 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001810 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04001811 struct btrfs_extent_item *item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001812 u64 refs;
1813 int ret;
1814 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001815
Chris Mason5caf2a02007-04-02 11:20:42 -04001816 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001817 if (!path)
1818 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04001819
Chris Mason3c12ac72008-04-21 12:01:38 -04001820 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001821 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001822 /* this will setup the path even if it fails to insert the back ref */
1823 ret = insert_inline_extent_backref(trans, root->fs_info->extent_root,
1824 path, bytenr, num_bytes, parent,
1825 root_objectid, owner, offset,
1826 refs_to_add, extent_op);
1827 if (ret == 0)
1828 goto out;
Zheng Yan31840ae2008-09-23 13:14:14 -04001829
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001830 if (ret != -EAGAIN) {
1831 err = ret;
1832 goto out;
Chris Masonb9473432009-03-13 11:00:37 -04001833 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001834
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001835 leaf = path->nodes[0];
1836 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1837 refs = btrfs_extent_refs(leaf, item);
1838 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
1839 if (extent_op)
1840 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04001841
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001842 btrfs_mark_buffer_dirty(leaf);
Chris Mason5caf2a02007-04-02 11:20:42 -04001843 btrfs_release_path(root->fs_info->extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -05001844
Chris Mason3c12ac72008-04-21 12:01:38 -04001845 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001846 path->leave_spinning = 1;
1847
Chris Mason56bec292009-03-13 10:10:06 -04001848 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04001849 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001850 path, bytenr, parent, root_objectid,
1851 owner, offset, refs_to_add);
Chris Mason7bb86312007-12-11 09:25:06 -05001852 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001853out:
Chris Mason74493f72007-12-11 09:25:06 -05001854 btrfs_free_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001855 return err;
Chris Mason02217ed2007-03-02 16:08:05 -05001856}
1857
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001858static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
1859 struct btrfs_root *root,
1860 struct btrfs_delayed_ref_node *node,
1861 struct btrfs_delayed_extent_op *extent_op,
1862 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04001863{
Chris Mason56bec292009-03-13 10:10:06 -04001864 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001865 struct btrfs_delayed_data_ref *ref;
1866 struct btrfs_key ins;
1867 u64 parent = 0;
1868 u64 ref_root = 0;
1869 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04001870
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001871 ins.objectid = node->bytenr;
1872 ins.offset = node->num_bytes;
1873 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04001874
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001875 ref = btrfs_delayed_node_to_data_ref(node);
1876 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
1877 parent = ref->parent;
1878 else
1879 ref_root = ref->root;
1880
1881 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
1882 if (extent_op) {
1883 BUG_ON(extent_op->update_key);
1884 flags |= extent_op->flags_to_set;
1885 }
1886 ret = alloc_reserved_file_extent(trans, root,
1887 parent, ref_root, flags,
1888 ref->objectid, ref->offset,
1889 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001890 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
1891 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
1892 node->num_bytes, parent,
1893 ref_root, ref->objectid,
1894 ref->offset, node->ref_mod,
1895 extent_op);
1896 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
1897 ret = __btrfs_free_extent(trans, root, node->bytenr,
1898 node->num_bytes, parent,
1899 ref_root, ref->objectid,
1900 ref->offset, node->ref_mod,
1901 extent_op);
1902 } else {
1903 BUG();
1904 }
Chris Mason56bec292009-03-13 10:10:06 -04001905 return ret;
1906}
1907
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001908static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
1909 struct extent_buffer *leaf,
1910 struct btrfs_extent_item *ei)
1911{
1912 u64 flags = btrfs_extent_flags(leaf, ei);
1913 if (extent_op->update_flags) {
1914 flags |= extent_op->flags_to_set;
1915 btrfs_set_extent_flags(leaf, ei, flags);
1916 }
1917
1918 if (extent_op->update_key) {
1919 struct btrfs_tree_block_info *bi;
1920 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
1921 bi = (struct btrfs_tree_block_info *)(ei + 1);
1922 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
1923 }
1924}
1925
1926static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
1927 struct btrfs_root *root,
1928 struct btrfs_delayed_ref_node *node,
1929 struct btrfs_delayed_extent_op *extent_op)
1930{
1931 struct btrfs_key key;
1932 struct btrfs_path *path;
1933 struct btrfs_extent_item *ei;
1934 struct extent_buffer *leaf;
1935 u32 item_size;
1936 int ret;
1937 int err = 0;
1938
1939 path = btrfs_alloc_path();
1940 if (!path)
1941 return -ENOMEM;
1942
1943 key.objectid = node->bytenr;
1944 key.type = BTRFS_EXTENT_ITEM_KEY;
1945 key.offset = node->num_bytes;
1946
1947 path->reada = 1;
1948 path->leave_spinning = 1;
1949 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
1950 path, 0, 1);
1951 if (ret < 0) {
1952 err = ret;
1953 goto out;
1954 }
1955 if (ret > 0) {
1956 err = -EIO;
1957 goto out;
1958 }
1959
1960 leaf = path->nodes[0];
1961 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1962#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1963 if (item_size < sizeof(*ei)) {
1964 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
1965 path, (u64)-1, 0);
1966 if (ret < 0) {
1967 err = ret;
1968 goto out;
1969 }
1970 leaf = path->nodes[0];
1971 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1972 }
1973#endif
1974 BUG_ON(item_size < sizeof(*ei));
1975 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1976 __run_delayed_extent_op(extent_op, leaf, ei);
1977
1978 btrfs_mark_buffer_dirty(leaf);
1979out:
1980 btrfs_free_path(path);
1981 return err;
1982}
1983
1984static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
1985 struct btrfs_root *root,
1986 struct btrfs_delayed_ref_node *node,
1987 struct btrfs_delayed_extent_op *extent_op,
1988 int insert_reserved)
1989{
1990 int ret = 0;
1991 struct btrfs_delayed_tree_ref *ref;
1992 struct btrfs_key ins;
1993 u64 parent = 0;
1994 u64 ref_root = 0;
1995
1996 ins.objectid = node->bytenr;
1997 ins.offset = node->num_bytes;
1998 ins.type = BTRFS_EXTENT_ITEM_KEY;
1999
2000 ref = btrfs_delayed_node_to_tree_ref(node);
2001 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2002 parent = ref->parent;
2003 else
2004 ref_root = ref->root;
2005
2006 BUG_ON(node->ref_mod != 1);
2007 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
2008 BUG_ON(!extent_op || !extent_op->update_flags ||
2009 !extent_op->update_key);
2010 ret = alloc_reserved_tree_block(trans, root,
2011 parent, ref_root,
2012 extent_op->flags_to_set,
2013 &extent_op->key,
2014 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002015 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2016 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2017 node->num_bytes, parent, ref_root,
2018 ref->level, 0, 1, extent_op);
2019 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2020 ret = __btrfs_free_extent(trans, root, node->bytenr,
2021 node->num_bytes, parent, ref_root,
2022 ref->level, 0, 1, extent_op);
2023 } else {
2024 BUG();
2025 }
2026 return ret;
2027}
2028
Chris Mason56bec292009-03-13 10:10:06 -04002029/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002030static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2031 struct btrfs_root *root,
2032 struct btrfs_delayed_ref_node *node,
2033 struct btrfs_delayed_extent_op *extent_op,
2034 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002035{
Josef Bacikeb099672009-02-12 09:27:38 -05002036 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002037 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002038 struct btrfs_delayed_ref_head *head;
2039 /*
2040 * we've hit the end of the chain and we were supposed
2041 * to insert this extent into the tree. But, it got
2042 * deleted before we ever needed to insert it, so all
2043 * we have to do is clean up the accounting
2044 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002045 BUG_ON(extent_op);
2046 head = btrfs_delayed_node_to_head(node);
Chris Mason56bec292009-03-13 10:10:06 -04002047 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002048 btrfs_pin_extent(root, node->bytenr,
2049 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002050 if (head->is_data) {
2051 ret = btrfs_del_csums(trans, root,
2052 node->bytenr,
2053 node->num_bytes);
2054 BUG_ON(ret);
2055 }
Chris Mason56bec292009-03-13 10:10:06 -04002056 }
Chris Mason56bec292009-03-13 10:10:06 -04002057 mutex_unlock(&head->mutex);
2058 return 0;
2059 }
Josef Bacikeb099672009-02-12 09:27:38 -05002060
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002061 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2062 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2063 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2064 insert_reserved);
2065 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2066 node->type == BTRFS_SHARED_DATA_REF_KEY)
2067 ret = run_delayed_data_ref(trans, root, node, extent_op,
2068 insert_reserved);
2069 else
2070 BUG();
2071 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002072}
2073
Chris Mason56bec292009-03-13 10:10:06 -04002074static noinline struct btrfs_delayed_ref_node *
2075select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002076{
Chris Mason56bec292009-03-13 10:10:06 -04002077 struct rb_node *node;
2078 struct btrfs_delayed_ref_node *ref;
2079 int action = BTRFS_ADD_DELAYED_REF;
2080again:
2081 /*
2082 * select delayed ref of type BTRFS_ADD_DELAYED_REF first.
2083 * this prevents ref count from going down to zero when
2084 * there still are pending delayed ref.
2085 */
2086 node = rb_prev(&head->node.rb_node);
2087 while (1) {
2088 if (!node)
2089 break;
2090 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2091 rb_node);
2092 if (ref->bytenr != head->node.bytenr)
2093 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002094 if (ref->action == action)
Chris Mason56bec292009-03-13 10:10:06 -04002095 return ref;
2096 node = rb_prev(node);
Chris Mason5f39d392007-10-15 16:14:19 -04002097 }
Chris Mason56bec292009-03-13 10:10:06 -04002098 if (action == BTRFS_ADD_DELAYED_REF) {
2099 action = BTRFS_DROP_DELAYED_REF;
2100 goto again;
2101 }
2102 return NULL;
2103}
2104
Chris Masonc3e69d52009-03-13 10:17:05 -04002105static noinline int run_clustered_refs(struct btrfs_trans_handle *trans,
2106 struct btrfs_root *root,
2107 struct list_head *cluster)
Chris Mason56bec292009-03-13 10:10:06 -04002108{
Chris Mason56bec292009-03-13 10:10:06 -04002109 struct btrfs_delayed_ref_root *delayed_refs;
2110 struct btrfs_delayed_ref_node *ref;
2111 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002112 struct btrfs_delayed_extent_op *extent_op;
Chris Mason56bec292009-03-13 10:10:06 -04002113 int ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002114 int count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002115 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002116
2117 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002118 while (1) {
2119 if (!locked_ref) {
Chris Masonc3e69d52009-03-13 10:17:05 -04002120 /* pick a new head ref from the cluster list */
2121 if (list_empty(cluster))
Chris Mason56bec292009-03-13 10:10:06 -04002122 break;
Chris Mason56bec292009-03-13 10:10:06 -04002123
Chris Masonc3e69d52009-03-13 10:17:05 -04002124 locked_ref = list_entry(cluster->next,
2125 struct btrfs_delayed_ref_head, cluster);
2126
2127 /* grab the lock that says we are going to process
2128 * all the refs for this head */
2129 ret = btrfs_delayed_ref_lock(trans, locked_ref);
2130
2131 /*
2132 * we may have dropped the spin lock to get the head
2133 * mutex lock, and that might have given someone else
2134 * time to free the head. If that's true, it has been
2135 * removed from our list and we can move on.
2136 */
2137 if (ret == -EAGAIN) {
2138 locked_ref = NULL;
2139 count++;
2140 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002141 }
2142 }
2143
2144 /*
2145 * record the must insert reserved flag before we
2146 * drop the spin lock.
2147 */
2148 must_insert_reserved = locked_ref->must_insert_reserved;
2149 locked_ref->must_insert_reserved = 0;
2150
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002151 extent_op = locked_ref->extent_op;
2152 locked_ref->extent_op = NULL;
2153
Chris Mason56bec292009-03-13 10:10:06 -04002154 /*
2155 * locked_ref is the head node, so we have to go one
2156 * node back for any delayed ref updates
2157 */
Chris Mason56bec292009-03-13 10:10:06 -04002158 ref = select_delayed_ref(locked_ref);
2159 if (!ref) {
2160 /* All delayed refs have been processed, Go ahead
2161 * and send the head node to run_one_delayed_ref,
2162 * so that any accounting fixes can happen
2163 */
2164 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002165
2166 if (extent_op && must_insert_reserved) {
2167 kfree(extent_op);
2168 extent_op = NULL;
2169 }
2170
2171 if (extent_op) {
2172 spin_unlock(&delayed_refs->lock);
2173
2174 ret = run_delayed_extent_op(trans, root,
2175 ref, extent_op);
2176 BUG_ON(ret);
2177 kfree(extent_op);
2178
2179 cond_resched();
2180 spin_lock(&delayed_refs->lock);
2181 continue;
2182 }
2183
Chris Masonc3e69d52009-03-13 10:17:05 -04002184 list_del_init(&locked_ref->cluster);
Chris Mason56bec292009-03-13 10:10:06 -04002185 locked_ref = NULL;
2186 }
2187
2188 ref->in_tree = 0;
2189 rb_erase(&ref->rb_node, &delayed_refs->root);
2190 delayed_refs->num_entries--;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002191
Chris Mason56bec292009-03-13 10:10:06 -04002192 spin_unlock(&delayed_refs->lock);
2193
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002194 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002195 must_insert_reserved);
2196 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04002197
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002198 btrfs_put_delayed_ref(ref);
2199 kfree(extent_op);
Chris Masonc3e69d52009-03-13 10:17:05 -04002200 count++;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002201
Chris Mason1887be62009-03-13 10:11:24 -04002202 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002203 spin_lock(&delayed_refs->lock);
2204 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002205 return count;
2206}
2207
2208/*
2209 * this starts processing the delayed reference count updates and
2210 * extent insertions we have queued up so far. count can be
2211 * 0, which means to process everything in the tree at the start
2212 * of the run (but not newly added entries), or it can be some target
2213 * number you'd like to process.
2214 */
2215int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2216 struct btrfs_root *root, unsigned long count)
2217{
2218 struct rb_node *node;
2219 struct btrfs_delayed_ref_root *delayed_refs;
2220 struct btrfs_delayed_ref_node *ref;
2221 struct list_head cluster;
2222 int ret;
2223 int run_all = count == (unsigned long)-1;
2224 int run_most = 0;
2225
2226 if (root == root->fs_info->extent_root)
2227 root = root->fs_info->tree_root;
2228
2229 delayed_refs = &trans->transaction->delayed_refs;
2230 INIT_LIST_HEAD(&cluster);
2231again:
2232 spin_lock(&delayed_refs->lock);
2233 if (count == 0) {
2234 count = delayed_refs->num_entries * 2;
2235 run_most = 1;
2236 }
2237 while (1) {
2238 if (!(run_all || run_most) &&
2239 delayed_refs->num_heads_ready < 64)
2240 break;
2241
2242 /*
2243 * go find something we can process in the rbtree. We start at
2244 * the beginning of the tree, and then build a cluster
2245 * of refs to process starting at the first one we are able to
2246 * lock
2247 */
2248 ret = btrfs_find_ref_cluster(trans, &cluster,
2249 delayed_refs->run_delayed_start);
2250 if (ret)
2251 break;
2252
2253 ret = run_clustered_refs(trans, root, &cluster);
2254 BUG_ON(ret < 0);
2255
2256 count -= min_t(unsigned long, ret, count);
2257
2258 if (count == 0)
2259 break;
2260 }
2261
Chris Mason56bec292009-03-13 10:10:06 -04002262 if (run_all) {
Chris Mason56bec292009-03-13 10:10:06 -04002263 node = rb_first(&delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04002264 if (!node)
Chris Mason56bec292009-03-13 10:10:06 -04002265 goto out;
Chris Masonc3e69d52009-03-13 10:17:05 -04002266 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002267
2268 while (node) {
2269 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2270 rb_node);
2271 if (btrfs_delayed_ref_is_head(ref)) {
2272 struct btrfs_delayed_ref_head *head;
2273
2274 head = btrfs_delayed_node_to_head(ref);
2275 atomic_inc(&ref->refs);
2276
2277 spin_unlock(&delayed_refs->lock);
2278 mutex_lock(&head->mutex);
2279 mutex_unlock(&head->mutex);
2280
2281 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002282 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002283 goto again;
2284 }
2285 node = rb_next(node);
2286 }
2287 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002288 schedule_timeout(1);
2289 goto again;
2290 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002291out:
Chris Masonc3e69d52009-03-13 10:17:05 -04002292 spin_unlock(&delayed_refs->lock);
Chris Masona28ec192007-03-06 20:08:01 -05002293 return 0;
2294}
2295
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002296int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2297 struct btrfs_root *root,
2298 u64 bytenr, u64 num_bytes, u64 flags,
2299 int is_data)
2300{
2301 struct btrfs_delayed_extent_op *extent_op;
2302 int ret;
2303
2304 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
2305 if (!extent_op)
2306 return -ENOMEM;
2307
2308 extent_op->flags_to_set = flags;
2309 extent_op->update_flags = 1;
2310 extent_op->update_key = 0;
2311 extent_op->is_data = is_data ? 1 : 0;
2312
2313 ret = btrfs_add_delayed_extent_op(trans, bytenr, num_bytes, extent_op);
2314 if (ret)
2315 kfree(extent_op);
2316 return ret;
2317}
2318
2319static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2320 struct btrfs_root *root,
2321 struct btrfs_path *path,
2322 u64 objectid, u64 offset, u64 bytenr)
2323{
2324 struct btrfs_delayed_ref_head *head;
2325 struct btrfs_delayed_ref_node *ref;
2326 struct btrfs_delayed_data_ref *data_ref;
2327 struct btrfs_delayed_ref_root *delayed_refs;
2328 struct rb_node *node;
2329 int ret = 0;
2330
2331 ret = -ENOENT;
2332 delayed_refs = &trans->transaction->delayed_refs;
2333 spin_lock(&delayed_refs->lock);
2334 head = btrfs_find_delayed_ref_head(trans, bytenr);
2335 if (!head)
2336 goto out;
2337
2338 if (!mutex_trylock(&head->mutex)) {
2339 atomic_inc(&head->node.refs);
2340 spin_unlock(&delayed_refs->lock);
2341
2342 btrfs_release_path(root->fs_info->extent_root, path);
2343
2344 mutex_lock(&head->mutex);
2345 mutex_unlock(&head->mutex);
2346 btrfs_put_delayed_ref(&head->node);
2347 return -EAGAIN;
2348 }
2349
2350 node = rb_prev(&head->node.rb_node);
2351 if (!node)
2352 goto out_unlock;
2353
2354 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2355
2356 if (ref->bytenr != bytenr)
2357 goto out_unlock;
2358
2359 ret = 1;
2360 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY)
2361 goto out_unlock;
2362
2363 data_ref = btrfs_delayed_node_to_data_ref(ref);
2364
2365 node = rb_prev(node);
2366 if (node) {
2367 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2368 if (ref->bytenr == bytenr)
2369 goto out_unlock;
2370 }
2371
2372 if (data_ref->root != root->root_key.objectid ||
2373 data_ref->objectid != objectid || data_ref->offset != offset)
2374 goto out_unlock;
2375
2376 ret = 0;
2377out_unlock:
2378 mutex_unlock(&head->mutex);
2379out:
2380 spin_unlock(&delayed_refs->lock);
2381 return ret;
2382}
2383
2384static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2385 struct btrfs_root *root,
2386 struct btrfs_path *path,
2387 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05002388{
2389 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04002390 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002391 struct btrfs_extent_data_ref *ref;
2392 struct btrfs_extent_inline_ref *iref;
2393 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05002394 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002395 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04002396 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05002397
Chris Masonbe20aa92007-12-17 20:14:01 -05002398 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04002399 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04002400 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05002401
Chris Masonbe20aa92007-12-17 20:14:01 -05002402 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2403 if (ret < 0)
2404 goto out;
2405 BUG_ON(ret == 0);
Yan Zheng80ff3852008-10-30 14:20:02 -04002406
2407 ret = -ENOENT;
2408 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04002409 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002410
Zheng Yan31840ae2008-09-23 13:14:14 -04002411 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04002412 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002413 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05002414
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002415 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05002416 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002417
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002418 ret = 1;
2419 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2420#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2421 if (item_size < sizeof(*ei)) {
2422 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2423 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002424 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002425#endif
2426 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2427
2428 if (item_size != sizeof(*ei) +
2429 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2430 goto out;
2431
2432 if (btrfs_extent_generation(leaf, ei) <=
2433 btrfs_root_last_snapshot(&root->root_item))
2434 goto out;
2435
2436 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2437 if (btrfs_extent_inline_ref_type(leaf, iref) !=
2438 BTRFS_EXTENT_DATA_REF_KEY)
2439 goto out;
2440
2441 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2442 if (btrfs_extent_refs(leaf, ei) !=
2443 btrfs_extent_data_ref_count(leaf, ref) ||
2444 btrfs_extent_data_ref_root(leaf, ref) !=
2445 root->root_key.objectid ||
2446 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
2447 btrfs_extent_data_ref_offset(leaf, ref) != offset)
2448 goto out;
2449
Yan Zhengf321e492008-07-30 09:26:11 -04002450 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05002451out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002452 return ret;
2453}
2454
2455int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
2456 struct btrfs_root *root,
2457 u64 objectid, u64 offset, u64 bytenr)
2458{
2459 struct btrfs_path *path;
2460 int ret;
2461 int ret2;
2462
2463 path = btrfs_alloc_path();
2464 if (!path)
2465 return -ENOENT;
2466
2467 do {
2468 ret = check_committed_ref(trans, root, path, objectid,
2469 offset, bytenr);
2470 if (ret && ret != -ENOENT)
2471 goto out;
2472
2473 ret2 = check_delayed_ref(trans, root, path, objectid,
2474 offset, bytenr);
2475 } while (ret2 == -EAGAIN);
2476
2477 if (ret2 && ret2 != -ENOENT) {
2478 ret = ret2;
2479 goto out;
2480 }
2481
2482 if (ret != -ENOENT || ret2 != -ENOENT)
2483 ret = 0;
2484out:
Yan Zhengf321e492008-07-30 09:26:11 -04002485 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002486 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
2487 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04002488 return ret;
2489}
2490
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002491#if 0
Zheng Yan31840ae2008-09-23 13:14:14 -04002492int btrfs_cache_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2493 struct extent_buffer *buf, u32 nr_extents)
Chris Mason02217ed2007-03-02 16:08:05 -05002494{
Chris Mason5f39d392007-10-15 16:14:19 -04002495 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04002496 struct btrfs_file_extent_item *fi;
Zheng Yane4657682008-09-26 10:04:53 -04002497 u64 root_gen;
2498 u32 nritems;
Chris Mason02217ed2007-03-02 16:08:05 -05002499 int i;
Chris Masondb945352007-10-15 16:15:53 -04002500 int level;
Zheng Yan31840ae2008-09-23 13:14:14 -04002501 int ret = 0;
Zheng Yane4657682008-09-26 10:04:53 -04002502 int shared = 0;
Chris Masona28ec192007-03-06 20:08:01 -05002503
Chris Mason3768f362007-03-13 16:47:54 -04002504 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -05002505 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002506
Zheng Yane4657682008-09-26 10:04:53 -04002507 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
2508 shared = 0;
2509 root_gen = root->root_key.offset;
2510 } else {
2511 shared = 1;
2512 root_gen = trans->transid - 1;
2513 }
2514
Chris Masondb945352007-10-15 16:15:53 -04002515 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -04002516 nritems = btrfs_header_nritems(buf);
Chris Mason4a096752008-07-21 10:29:44 -04002517
Zheng Yan31840ae2008-09-23 13:14:14 -04002518 if (level == 0) {
Yan Zheng31153d82008-07-28 15:32:19 -04002519 struct btrfs_leaf_ref *ref;
2520 struct btrfs_extent_info *info;
2521
Zheng Yan31840ae2008-09-23 13:14:14 -04002522 ref = btrfs_alloc_leaf_ref(root, nr_extents);
Yan Zheng31153d82008-07-28 15:32:19 -04002523 if (!ref) {
Zheng Yan31840ae2008-09-23 13:14:14 -04002524 ret = -ENOMEM;
Yan Zheng31153d82008-07-28 15:32:19 -04002525 goto out;
2526 }
2527
Zheng Yane4657682008-09-26 10:04:53 -04002528 ref->root_gen = root_gen;
Yan Zheng31153d82008-07-28 15:32:19 -04002529 ref->bytenr = buf->start;
2530 ref->owner = btrfs_header_owner(buf);
2531 ref->generation = btrfs_header_generation(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04002532 ref->nritems = nr_extents;
Yan Zheng31153d82008-07-28 15:32:19 -04002533 info = ref->extents;
Yanbcc63ab2008-07-30 16:29:20 -04002534
Zheng Yan31840ae2008-09-23 13:14:14 -04002535 for (i = 0; nr_extents > 0 && i < nritems; i++) {
Yan Zheng31153d82008-07-28 15:32:19 -04002536 u64 disk_bytenr;
2537 btrfs_item_key_to_cpu(buf, &key, i);
2538 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
2539 continue;
2540 fi = btrfs_item_ptr(buf, i,
2541 struct btrfs_file_extent_item);
2542 if (btrfs_file_extent_type(buf, fi) ==
2543 BTRFS_FILE_EXTENT_INLINE)
2544 continue;
2545 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
2546 if (disk_bytenr == 0)
2547 continue;
2548
2549 info->bytenr = disk_bytenr;
2550 info->num_bytes =
2551 btrfs_file_extent_disk_num_bytes(buf, fi);
2552 info->objectid = key.objectid;
2553 info->offset = key.offset;
2554 info++;
2555 }
2556
Zheng Yane4657682008-09-26 10:04:53 -04002557 ret = btrfs_add_leaf_ref(root, ref, shared);
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002558 if (ret == -EEXIST && shared) {
2559 struct btrfs_leaf_ref *old;
2560 old = btrfs_lookup_leaf_ref(root, ref->bytenr);
2561 BUG_ON(!old);
2562 btrfs_remove_leaf_ref(root, old);
2563 btrfs_free_leaf_ref(root, old);
2564 ret = btrfs_add_leaf_ref(root, ref, shared);
2565 }
Yan Zheng31153d82008-07-28 15:32:19 -04002566 WARN_ON(ret);
Yanbcc63ab2008-07-30 16:29:20 -04002567 btrfs_free_leaf_ref(root, ref);
Yan Zheng31153d82008-07-28 15:32:19 -04002568 }
2569out:
Zheng Yan31840ae2008-09-23 13:14:14 -04002570 return ret;
2571}
2572
Chris Masonb7a9f292009-02-04 09:23:45 -05002573/* when a block goes through cow, we update the reference counts of
2574 * everything that block points to. The internal pointers of the block
2575 * can be in just about any order, and it is likely to have clusters of
2576 * things that are close together and clusters of things that are not.
2577 *
2578 * To help reduce the seeks that come with updating all of these reference
2579 * counts, sort them by byte number before actual updates are done.
2580 *
2581 * struct refsort is used to match byte number to slot in the btree block.
2582 * we sort based on the byte number and then use the slot to actually
2583 * find the item.
Chris Masonbd56b302009-02-04 09:27:02 -05002584 *
2585 * struct refsort is smaller than strcut btrfs_item and smaller than
2586 * struct btrfs_key_ptr. Since we're currently limited to the page size
2587 * for a btree block, there's no way for a kmalloc of refsorts for a
2588 * single node to be bigger than a page.
Chris Masonb7a9f292009-02-04 09:23:45 -05002589 */
2590struct refsort {
2591 u64 bytenr;
2592 u32 slot;
2593};
2594
2595/*
2596 * for passing into sort()
2597 */
2598static int refsort_cmp(const void *a_void, const void *b_void)
2599{
2600 const struct refsort *a = a_void;
2601 const struct refsort *b = b_void;
2602
2603 if (a->bytenr < b->bytenr)
2604 return -1;
2605 if (a->bytenr > b->bytenr)
2606 return 1;
2607 return 0;
2608}
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002609#endif
Chris Masonb7a9f292009-02-04 09:23:45 -05002610
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002611static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05002612 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002613 struct extent_buffer *buf,
2614 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04002615{
2616 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002617 u64 num_bytes;
2618 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04002619 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04002620 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04002621 struct btrfs_key key;
2622 struct btrfs_file_extent_item *fi;
2623 int i;
2624 int level;
2625 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04002626 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002627 u64, u64, u64, u64, u64, u64);
Zheng Yan31840ae2008-09-23 13:14:14 -04002628
2629 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04002630 nritems = btrfs_header_nritems(buf);
2631 level = btrfs_header_level(buf);
2632
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002633 if (!root->ref_cows && level == 0)
2634 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05002635
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002636 if (inc)
2637 process_func = btrfs_inc_extent_ref;
2638 else
2639 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04002640
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002641 if (full_backref)
2642 parent = buf->start;
2643 else
2644 parent = 0;
2645
Zheng Yan31840ae2008-09-23 13:14:14 -04002646 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04002647 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002648 btrfs_item_key_to_cpu(buf, &key, i);
2649 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04002650 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04002651 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04002652 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002653 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04002654 BTRFS_FILE_EXTENT_INLINE)
2655 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04002656 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
2657 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04002658 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04002659
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002660 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
2661 key.offset -= btrfs_file_extent_offset(buf, fi);
2662 ret = process_func(trans, root, bytenr, num_bytes,
2663 parent, ref_root, key.objectid,
2664 key.offset);
2665 if (ret)
2666 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05002667 } else {
2668 bytenr = btrfs_node_blockptr(buf, i);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002669 num_bytes = btrfs_level_size(root, level - 1);
2670 ret = process_func(trans, root, bytenr, num_bytes,
2671 parent, ref_root, level - 1, 0);
2672 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04002673 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04002674 }
2675 }
Zheng Yan31840ae2008-09-23 13:14:14 -04002676 return 0;
2677fail:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002678 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04002679 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002680}
2681
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002682int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2683 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04002684{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002685 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
2686}
Zheng Yan31840ae2008-09-23 13:14:14 -04002687
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002688int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2689 struct extent_buffer *buf, int full_backref)
2690{
2691 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04002692}
2693
Chris Mason9078a3e2007-04-26 16:46:15 -04002694static int write_one_cache_group(struct btrfs_trans_handle *trans,
2695 struct btrfs_root *root,
2696 struct btrfs_path *path,
2697 struct btrfs_block_group_cache *cache)
2698{
2699 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04002700 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04002701 unsigned long bi;
2702 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04002703
Chris Mason9078a3e2007-04-26 16:46:15 -04002704 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04002705 if (ret < 0)
2706 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -04002707 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002708
2709 leaf = path->nodes[0];
2710 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
2711 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
2712 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -04002713 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -04002714fail:
Chris Mason9078a3e2007-04-26 16:46:15 -04002715 if (ret)
2716 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04002717 return 0;
2718
2719}
2720
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002721static struct btrfs_block_group_cache *
2722next_block_group(struct btrfs_root *root,
2723 struct btrfs_block_group_cache *cache)
2724{
2725 struct rb_node *node;
2726 spin_lock(&root->fs_info->block_group_cache_lock);
2727 node = rb_next(&cache->cache_node);
2728 btrfs_put_block_group(cache);
2729 if (node) {
2730 cache = rb_entry(node, struct btrfs_block_group_cache,
2731 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00002732 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002733 } else
2734 cache = NULL;
2735 spin_unlock(&root->fs_info->block_group_cache_lock);
2736 return cache;
2737}
2738
Josef Bacik0af3d002010-06-21 14:48:16 -04002739static int cache_save_setup(struct btrfs_block_group_cache *block_group,
2740 struct btrfs_trans_handle *trans,
2741 struct btrfs_path *path)
2742{
2743 struct btrfs_root *root = block_group->fs_info->tree_root;
2744 struct inode *inode = NULL;
2745 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05002746 int dcs = BTRFS_DC_ERROR;
Josef Bacik0af3d002010-06-21 14:48:16 -04002747 int num_pages = 0;
2748 int retries = 0;
2749 int ret = 0;
2750
2751 /*
2752 * If this block group is smaller than 100 megs don't bother caching the
2753 * block group.
2754 */
2755 if (block_group->key.offset < (100 * 1024 * 1024)) {
2756 spin_lock(&block_group->lock);
2757 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
2758 spin_unlock(&block_group->lock);
2759 return 0;
2760 }
2761
2762again:
2763 inode = lookup_free_space_inode(root, block_group, path);
2764 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
2765 ret = PTR_ERR(inode);
2766 btrfs_release_path(root, path);
2767 goto out;
2768 }
2769
2770 if (IS_ERR(inode)) {
2771 BUG_ON(retries);
2772 retries++;
2773
2774 if (block_group->ro)
2775 goto out_free;
2776
2777 ret = create_free_space_inode(root, trans, block_group, path);
2778 if (ret)
2779 goto out_free;
2780 goto again;
2781 }
2782
2783 /*
2784 * We want to set the generation to 0, that way if anything goes wrong
2785 * from here on out we know not to trust this cache when we load up next
2786 * time.
2787 */
2788 BTRFS_I(inode)->generation = 0;
2789 ret = btrfs_update_inode(trans, root, inode);
2790 WARN_ON(ret);
2791
2792 if (i_size_read(inode) > 0) {
2793 ret = btrfs_truncate_free_space_cache(root, trans, path,
2794 inode);
2795 if (ret)
2796 goto out_put;
2797 }
2798
2799 spin_lock(&block_group->lock);
2800 if (block_group->cached != BTRFS_CACHE_FINISHED) {
Josef Bacik2b209822010-12-03 13:17:53 -05002801 /* We're not cached, don't bother trying to write stuff out */
2802 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04002803 spin_unlock(&block_group->lock);
2804 goto out_put;
2805 }
2806 spin_unlock(&block_group->lock);
2807
2808 num_pages = (int)div64_u64(block_group->key.offset, 1024 * 1024 * 1024);
2809 if (!num_pages)
2810 num_pages = 1;
2811
2812 /*
2813 * Just to make absolutely sure we have enough space, we're going to
2814 * preallocate 12 pages worth of space for each block group. In
2815 * practice we ought to use at most 8, but we need extra space so we can
2816 * add our header and have a terminator between the extents and the
2817 * bitmaps.
2818 */
2819 num_pages *= 16;
2820 num_pages *= PAGE_CACHE_SIZE;
2821
2822 ret = btrfs_check_data_free_space(inode, num_pages);
2823 if (ret)
2824 goto out_put;
2825
2826 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
2827 num_pages, num_pages,
2828 &alloc_hint);
Josef Bacik2b209822010-12-03 13:17:53 -05002829 if (!ret)
2830 dcs = BTRFS_DC_SETUP;
Josef Bacik0af3d002010-06-21 14:48:16 -04002831 btrfs_free_reserved_data_space(inode, num_pages);
2832out_put:
2833 iput(inode);
2834out_free:
2835 btrfs_release_path(root, path);
2836out:
2837 spin_lock(&block_group->lock);
Josef Bacik2b209822010-12-03 13:17:53 -05002838 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04002839 spin_unlock(&block_group->lock);
2840
2841 return ret;
2842}
2843
Chris Mason96b51792007-10-15 16:15:19 -04002844int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
2845 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04002846{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002847 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002848 int err = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002849 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04002850 u64 last = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002851
2852 path = btrfs_alloc_path();
2853 if (!path)
2854 return -ENOMEM;
2855
Josef Bacik0af3d002010-06-21 14:48:16 -04002856again:
2857 while (1) {
2858 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2859 while (cache) {
2860 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
2861 break;
2862 cache = next_block_group(root, cache);
2863 }
2864 if (!cache) {
2865 if (last == 0)
2866 break;
2867 last = 0;
2868 continue;
2869 }
2870 err = cache_save_setup(cache, trans, path);
2871 last = cache->key.objectid + cache->key.offset;
2872 btrfs_put_block_group(cache);
2873 }
2874
Chris Masond3977122009-01-05 21:25:51 -05002875 while (1) {
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002876 if (last == 0) {
2877 err = btrfs_run_delayed_refs(trans, root,
2878 (unsigned long)-1);
2879 BUG_ON(err);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002880 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002881
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002882 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2883 while (cache) {
Josef Bacik0af3d002010-06-21 14:48:16 -04002884 if (cache->disk_cache_state == BTRFS_DC_CLEAR) {
2885 btrfs_put_block_group(cache);
2886 goto again;
2887 }
2888
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002889 if (cache->dirty)
2890 break;
2891 cache = next_block_group(root, cache);
2892 }
2893 if (!cache) {
2894 if (last == 0)
2895 break;
2896 last = 0;
Chris Mason96b51792007-10-15 16:15:19 -04002897 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04002898 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002899
Josef Bacik0cb59c92010-07-02 12:14:14 -04002900 if (cache->disk_cache_state == BTRFS_DC_SETUP)
2901 cache->disk_cache_state = BTRFS_DC_NEED_WRITE;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002902 cache->dirty = 0;
2903 last = cache->key.objectid + cache->key.offset;
2904
2905 err = write_one_cache_group(trans, root, path, cache);
2906 BUG_ON(err);
2907 btrfs_put_block_group(cache);
Chris Mason9078a3e2007-04-26 16:46:15 -04002908 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002909
Josef Bacik0cb59c92010-07-02 12:14:14 -04002910 while (1) {
2911 /*
2912 * I don't think this is needed since we're just marking our
2913 * preallocated extent as written, but just in case it can't
2914 * hurt.
2915 */
2916 if (last == 0) {
2917 err = btrfs_run_delayed_refs(trans, root,
2918 (unsigned long)-1);
2919 BUG_ON(err);
2920 }
2921
2922 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2923 while (cache) {
2924 /*
2925 * Really this shouldn't happen, but it could if we
2926 * couldn't write the entire preallocated extent and
2927 * splitting the extent resulted in a new block.
2928 */
2929 if (cache->dirty) {
2930 btrfs_put_block_group(cache);
2931 goto again;
2932 }
2933 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
2934 break;
2935 cache = next_block_group(root, cache);
2936 }
2937 if (!cache) {
2938 if (last == 0)
2939 break;
2940 last = 0;
2941 continue;
2942 }
2943
2944 btrfs_write_out_cache(root, trans, cache, path);
2945
2946 /*
2947 * If we didn't have an error then the cache state is still
2948 * NEED_WRITE, so we can set it to WRITTEN.
2949 */
2950 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
2951 cache->disk_cache_state = BTRFS_DC_WRITTEN;
2952 last = cache->key.objectid + cache->key.offset;
2953 btrfs_put_block_group(cache);
2954 }
2955
Chris Mason9078a3e2007-04-26 16:46:15 -04002956 btrfs_free_path(path);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002957 return 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002958}
2959
Yan Zhengd2fb3432008-12-11 16:30:39 -05002960int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
2961{
2962 struct btrfs_block_group_cache *block_group;
2963 int readonly = 0;
2964
2965 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
2966 if (!block_group || block_group->ro)
2967 readonly = 1;
2968 if (block_group)
Chris Masonfa9c0d72009-04-03 09:47:43 -04002969 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002970 return readonly;
2971}
2972
Chris Mason593060d2008-03-25 16:50:33 -04002973static int update_space_info(struct btrfs_fs_info *info, u64 flags,
2974 u64 total_bytes, u64 bytes_used,
2975 struct btrfs_space_info **space_info)
2976{
2977 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04002978 int i;
2979 int factor;
2980
2981 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
2982 BTRFS_BLOCK_GROUP_RAID10))
2983 factor = 2;
2984 else
2985 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04002986
2987 found = __find_space_info(info, flags);
2988 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04002989 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04002990 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04002991 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04002992 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04002993 found->disk_used += bytes_used * factor;
Chris Mason8f18cf12008-04-25 16:53:30 -04002994 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04002995 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04002996 *space_info = found;
2997 return 0;
2998 }
Yan Zhengc146afa2008-11-12 14:34:12 -05002999 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04003000 if (!found)
3001 return -ENOMEM;
3002
Yan, Zhengb742bb82010-05-16 10:46:24 -04003003 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
3004 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003005 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003006 spin_lock_init(&found->lock);
Yan, Zhengb742bb82010-05-16 10:46:24 -04003007 found->flags = flags & (BTRFS_BLOCK_GROUP_DATA |
3008 BTRFS_BLOCK_GROUP_SYSTEM |
3009 BTRFS_BLOCK_GROUP_METADATA);
Chris Mason593060d2008-03-25 16:50:33 -04003010 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003011 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003012 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003013 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003014 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003015 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003016 found->bytes_readonly = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003017 found->bytes_may_use = 0;
Chris Mason593060d2008-03-25 16:50:33 -04003018 found->full = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04003019 found->force_alloc = 0;
Chris Mason593060d2008-03-25 16:50:33 -04003020 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003021 list_add_rcu(&found->list, &info->space_info);
Josef Bacik817d52f2009-07-13 21:29:25 -04003022 atomic_set(&found->caching_threads, 0);
Chris Mason593060d2008-03-25 16:50:33 -04003023 return 0;
3024}
3025
Chris Mason8790d502008-04-03 16:29:03 -04003026static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3027{
3028 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
Chris Mason611f0e02008-04-03 16:29:03 -04003029 BTRFS_BLOCK_GROUP_RAID1 |
Chris Mason321aecc2008-04-16 10:49:51 -04003030 BTRFS_BLOCK_GROUP_RAID10 |
Chris Mason611f0e02008-04-03 16:29:03 -04003031 BTRFS_BLOCK_GROUP_DUP);
Chris Mason8790d502008-04-03 16:29:03 -04003032 if (extra_flags) {
3033 if (flags & BTRFS_BLOCK_GROUP_DATA)
3034 fs_info->avail_data_alloc_bits |= extra_flags;
3035 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3036 fs_info->avail_metadata_alloc_bits |= extra_flags;
3037 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3038 fs_info->avail_system_alloc_bits |= extra_flags;
3039 }
3040}
Chris Mason593060d2008-03-25 16:50:33 -04003041
Yan Zheng2b820322008-11-17 21:11:30 -05003042u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003043{
Chris Masoncd02dca2010-12-13 14:56:23 -05003044 /*
3045 * we add in the count of missing devices because we want
3046 * to make sure that any RAID levels on a degraded FS
3047 * continue to be honored.
3048 */
3049 u64 num_devices = root->fs_info->fs_devices->rw_devices +
3050 root->fs_info->fs_devices->missing_devices;
Chris Masona061fc82008-05-07 11:43:44 -04003051
3052 if (num_devices == 1)
3053 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0);
3054 if (num_devices < 4)
3055 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
3056
Chris Masonec44a352008-04-28 15:29:52 -04003057 if ((flags & BTRFS_BLOCK_GROUP_DUP) &&
3058 (flags & (BTRFS_BLOCK_GROUP_RAID1 |
Chris Masona061fc82008-05-07 11:43:44 -04003059 BTRFS_BLOCK_GROUP_RAID10))) {
Chris Masonec44a352008-04-28 15:29:52 -04003060 flags &= ~BTRFS_BLOCK_GROUP_DUP;
Chris Masona061fc82008-05-07 11:43:44 -04003061 }
Chris Masonec44a352008-04-28 15:29:52 -04003062
3063 if ((flags & BTRFS_BLOCK_GROUP_RAID1) &&
Chris Masona061fc82008-05-07 11:43:44 -04003064 (flags & BTRFS_BLOCK_GROUP_RAID10)) {
Chris Masonec44a352008-04-28 15:29:52 -04003065 flags &= ~BTRFS_BLOCK_GROUP_RAID1;
Chris Masona061fc82008-05-07 11:43:44 -04003066 }
Chris Masonec44a352008-04-28 15:29:52 -04003067
3068 if ((flags & BTRFS_BLOCK_GROUP_RAID0) &&
3069 ((flags & BTRFS_BLOCK_GROUP_RAID1) |
3070 (flags & BTRFS_BLOCK_GROUP_RAID10) |
3071 (flags & BTRFS_BLOCK_GROUP_DUP)))
3072 flags &= ~BTRFS_BLOCK_GROUP_RAID0;
3073 return flags;
3074}
3075
Yan, Zhengb742bb82010-05-16 10:46:24 -04003076static u64 get_alloc_profile(struct btrfs_root *root, u64 flags)
Josef Bacik6a632092009-02-20 11:00:09 -05003077{
Yan, Zhengb742bb82010-05-16 10:46:24 -04003078 if (flags & BTRFS_BLOCK_GROUP_DATA)
3079 flags |= root->fs_info->avail_data_alloc_bits &
3080 root->fs_info->data_alloc_profile;
3081 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3082 flags |= root->fs_info->avail_system_alloc_bits &
3083 root->fs_info->system_alloc_profile;
3084 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3085 flags |= root->fs_info->avail_metadata_alloc_bits &
3086 root->fs_info->metadata_alloc_profile;
3087 return btrfs_reduce_alloc_profile(root, flags);
3088}
Josef Bacik6a632092009-02-20 11:00:09 -05003089
Miao Xie6d07bce2011-01-05 10:07:31 +00003090u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003091{
3092 u64 flags;
Josef Bacik6a632092009-02-20 11:00:09 -05003093
Yan, Zhengb742bb82010-05-16 10:46:24 -04003094 if (data)
3095 flags = BTRFS_BLOCK_GROUP_DATA;
3096 else if (root == root->fs_info->chunk_root)
3097 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3098 else
3099 flags = BTRFS_BLOCK_GROUP_METADATA;
3100
3101 return get_alloc_profile(root, flags);
Josef Bacik6a632092009-02-20 11:00:09 -05003102}
3103
3104void btrfs_set_inode_space_info(struct btrfs_root *root, struct inode *inode)
3105{
Josef Bacik6a632092009-02-20 11:00:09 -05003106 BTRFS_I(inode)->space_info = __find_space_info(root->fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04003107 BTRFS_BLOCK_GROUP_DATA);
Josef Bacik6a632092009-02-20 11:00:09 -05003108}
3109
3110/*
3111 * This will check the space that the inode allocates from to make sure we have
3112 * enough space for bytes.
3113 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003114int btrfs_check_data_free_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003115{
3116 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003117 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikab6e2412010-03-19 14:38:13 +00003118 u64 used;
Josef Bacik0af3d002010-06-21 14:48:16 -04003119 int ret = 0, committed = 0, alloc_chunk = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003120
3121 /* make sure bytes are sectorsize aligned */
3122 bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
3123
Josef Bacik0af3d002010-06-21 14:48:16 -04003124 if (root == root->fs_info->tree_root) {
3125 alloc_chunk = 0;
3126 committed = 1;
3127 }
3128
Josef Bacik6a632092009-02-20 11:00:09 -05003129 data_sinfo = BTRFS_I(inode)->space_info;
Chris Mason33b4d472009-09-22 14:45:50 -04003130 if (!data_sinfo)
3131 goto alloc;
3132
Josef Bacik6a632092009-02-20 11:00:09 -05003133again:
3134 /* make sure we have enough space to handle the data first */
3135 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003136 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3137 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3138 data_sinfo->bytes_may_use;
Josef Bacikab6e2412010-03-19 14:38:13 +00003139
3140 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003141 struct btrfs_trans_handle *trans;
3142
Josef Bacik6a632092009-02-20 11:00:09 -05003143 /*
3144 * if we don't have enough free bytes in this space then we need
3145 * to alloc a new chunk.
3146 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003147 if (!data_sinfo->full && alloc_chunk) {
Josef Bacik6a632092009-02-20 11:00:09 -05003148 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05003149
3150 data_sinfo->force_alloc = 1;
3151 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04003152alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05003153 alloc_target = btrfs_get_alloc_profile(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003154 trans = btrfs_join_transaction(root, 1);
3155 if (IS_ERR(trans))
3156 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05003157
3158 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
3159 bytes + 2 * 1024 * 1024,
3160 alloc_target, 0);
3161 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00003162 if (ret < 0) {
3163 if (ret != -ENOSPC)
3164 return ret;
3165 else
3166 goto commit_trans;
3167 }
Chris Mason33b4d472009-09-22 14:45:50 -04003168
3169 if (!data_sinfo) {
3170 btrfs_set_inode_space_info(root, inode);
3171 data_sinfo = BTRFS_I(inode)->space_info;
3172 }
Josef Bacik6a632092009-02-20 11:00:09 -05003173 goto again;
3174 }
3175 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003176
3177 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00003178commit_trans:
Sage Weildd7e0b72009-09-29 18:38:44 -04003179 if (!committed && !root->fs_info->open_ioctl_trans) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003180 committed = 1;
3181 trans = btrfs_join_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003182 if (IS_ERR(trans))
3183 return PTR_ERR(trans);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003184 ret = btrfs_commit_transaction(trans, root);
3185 if (ret)
3186 return ret;
3187 goto again;
3188 }
3189
Chris Mason933b5852010-05-26 11:31:00 -04003190#if 0 /* I hope we never need this code again, just in case */
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003191 printk(KERN_ERR "no space left, need %llu, %llu bytes_used, "
3192 "%llu bytes_reserved, " "%llu bytes_pinned, "
3193 "%llu bytes_readonly, %llu may use %llu total\n",
3194 (unsigned long long)bytes,
Joel Becker21380932009-04-21 12:38:29 -07003195 (unsigned long long)data_sinfo->bytes_used,
3196 (unsigned long long)data_sinfo->bytes_reserved,
3197 (unsigned long long)data_sinfo->bytes_pinned,
3198 (unsigned long long)data_sinfo->bytes_readonly,
3199 (unsigned long long)data_sinfo->bytes_may_use,
3200 (unsigned long long)data_sinfo->total_bytes);
Chris Mason933b5852010-05-26 11:31:00 -04003201#endif
Josef Bacik6a632092009-02-20 11:00:09 -05003202 return -ENOSPC;
3203 }
3204 data_sinfo->bytes_may_use += bytes;
3205 BTRFS_I(inode)->reserved_bytes += bytes;
3206 spin_unlock(&data_sinfo->lock);
3207
Josef Bacik9ed74f22009-09-11 16:12:44 -04003208 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003209}
3210
3211/*
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003212 * called when we are clearing an delalloc extent from the
3213 * inode's io_tree or there was an error for whatever reason
3214 * after calling btrfs_check_data_free_space
Josef Bacik6a632092009-02-20 11:00:09 -05003215 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003216void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003217{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003218 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003219 struct btrfs_space_info *data_sinfo;
3220
3221 /* make sure bytes are sectorsize aligned */
3222 bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
3223
3224 data_sinfo = BTRFS_I(inode)->space_info;
3225 spin_lock(&data_sinfo->lock);
3226 data_sinfo->bytes_may_use -= bytes;
3227 BTRFS_I(inode)->reserved_bytes -= bytes;
3228 spin_unlock(&data_sinfo->lock);
3229}
3230
Josef Bacik97e728d2009-04-21 17:40:57 -04003231static void force_metadata_allocation(struct btrfs_fs_info *info)
3232{
3233 struct list_head *head = &info->space_info;
3234 struct btrfs_space_info *found;
3235
3236 rcu_read_lock();
3237 list_for_each_entry_rcu(found, head, list) {
3238 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
3239 found->force_alloc = 1;
3240 }
3241 rcu_read_unlock();
3242}
3243
Chris Masone5bc2452010-10-26 13:37:56 -04003244static int should_alloc_chunk(struct btrfs_root *root,
3245 struct btrfs_space_info *sinfo, u64 alloc_bytes)
Yan, Zheng424499d2010-05-16 10:46:25 -04003246{
3247 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Masone5bc2452010-10-26 13:37:56 -04003248 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04003249
3250 if (sinfo->bytes_used + sinfo->bytes_reserved +
3251 alloc_bytes + 256 * 1024 * 1024 < num_bytes)
3252 return 0;
3253
3254 if (sinfo->bytes_used + sinfo->bytes_reserved +
3255 alloc_bytes < div_factor(num_bytes, 8))
3256 return 0;
3257
Chris Masone5bc2452010-10-26 13:37:56 -04003258 thresh = btrfs_super_total_bytes(&root->fs_info->super_copy);
3259 thresh = max_t(u64, 256 * 1024 * 1024, div_factor_fine(thresh, 5));
3260
3261 if (num_bytes > thresh && sinfo->bytes_used < div_factor(num_bytes, 3))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04003262 return 0;
3263
Yan, Zheng424499d2010-05-16 10:46:25 -04003264 return 1;
3265}
3266
Chris Mason6324fbf2008-03-24 15:01:59 -04003267static int do_chunk_alloc(struct btrfs_trans_handle *trans,
3268 struct btrfs_root *extent_root, u64 alloc_bytes,
Chris Mason0ef3e662008-05-24 14:04:53 -04003269 u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04003270{
3271 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04003272 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Yan Zhengc146afa2008-11-12 14:34:12 -05003273 int ret = 0;
3274
Josef Bacik97e728d2009-04-21 17:40:57 -04003275 mutex_lock(&fs_info->chunk_mutex);
Chris Mason6324fbf2008-03-24 15:01:59 -04003276
Yan Zheng2b820322008-11-17 21:11:30 -05003277 flags = btrfs_reduce_alloc_profile(extent_root, flags);
Chris Masonec44a352008-04-28 15:29:52 -04003278
Chris Mason6324fbf2008-03-24 15:01:59 -04003279 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04003280 if (!space_info) {
3281 ret = update_space_info(extent_root->fs_info, flags,
3282 0, 0, &space_info);
3283 BUG_ON(ret);
3284 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003285 BUG_ON(!space_info);
3286
Josef Bacik25179202008-10-29 14:49:05 -04003287 spin_lock(&space_info->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003288 if (space_info->force_alloc)
Chris Mason0ef3e662008-05-24 14:04:53 -04003289 force = 1;
Josef Bacik25179202008-10-29 14:49:05 -04003290 if (space_info->full) {
3291 spin_unlock(&space_info->lock);
Chris Mason925baed2008-06-25 16:01:30 -04003292 goto out;
Josef Bacik25179202008-10-29 14:49:05 -04003293 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003294
Chris Masone5bc2452010-10-26 13:37:56 -04003295 if (!force && !should_alloc_chunk(extent_root, space_info,
3296 alloc_bytes)) {
Josef Bacik25179202008-10-29 14:49:05 -04003297 spin_unlock(&space_info->lock);
Chris Mason925baed2008-06-25 16:01:30 -04003298 goto out;
Josef Bacik25179202008-10-29 14:49:05 -04003299 }
Josef Bacik25179202008-10-29 14:49:05 -04003300 spin_unlock(&space_info->lock);
3301
Josef Bacik97e728d2009-04-21 17:40:57 -04003302 /*
Josef Bacik67377732010-09-16 16:19:09 -04003303 * If we have mixed data/metadata chunks we want to make sure we keep
3304 * allocating mixed chunks instead of individual chunks.
3305 */
3306 if (btrfs_mixed_space_info(space_info))
3307 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
3308
3309 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04003310 * if we're doing a data chunk, go ahead and make sure that
3311 * we keep a reasonable number of metadata chunks allocated in the
3312 * FS as well.
3313 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04003314 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04003315 fs_info->data_chunk_allocations++;
3316 if (!(fs_info->data_chunk_allocations %
3317 fs_info->metadata_ratio))
3318 force_metadata_allocation(fs_info);
3319 }
3320
Yan Zheng2b820322008-11-17 21:11:30 -05003321 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003322 spin_lock(&space_info->lock);
Chris Masond3977122009-01-05 21:25:51 -05003323 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04003324 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04003325 else
3326 ret = 1;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003327 space_info->force_alloc = 0;
3328 spin_unlock(&space_info->lock);
Chris Masona74a4b92008-06-25 16:01:31 -04003329out:
Yan Zhengc146afa2008-11-12 14:34:12 -05003330 mutex_unlock(&extent_root->fs_info->chunk_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003331 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04003332}
3333
Yan, Zheng5da9d012010-05-16 10:46:25 -04003334/*
3335 * shrink metadata reservation for delalloc
3336 */
3337static int shrink_delalloc(struct btrfs_trans_handle *trans,
Josef Bacik0019f102010-10-15 15:18:40 -04003338 struct btrfs_root *root, u64 to_reclaim, int sync)
Yan, Zheng5da9d012010-05-16 10:46:25 -04003339{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003340 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04003341 struct btrfs_space_info *space_info;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003342 u64 reserved;
3343 u64 max_reclaim;
3344 u64 reclaimed = 0;
Josef Bacikb1953bc2011-01-21 21:10:01 +00003345 long time_left;
Chris Masonbf9022e2010-10-26 13:40:45 -04003346 int nr_pages = (2 * 1024 * 1024) >> PAGE_CACHE_SHIFT;
Josef Bacikb1953bc2011-01-21 21:10:01 +00003347 int loops = 0;
Chris Mason36e39c42011-03-12 07:08:42 -05003348 unsigned long progress;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003349
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003350 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04003351 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04003352
3353 smp_mb();
Josef Bacik0019f102010-10-15 15:18:40 -04003354 reserved = space_info->bytes_reserved;
Chris Mason36e39c42011-03-12 07:08:42 -05003355 progress = space_info->reservation_progress;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003356
3357 if (reserved == 0)
3358 return 0;
3359
3360 max_reclaim = min(reserved, to_reclaim);
3361
Josef Bacikb1953bc2011-01-21 21:10:01 +00003362 while (loops < 1024) {
Chris Masonbf9022e2010-10-26 13:40:45 -04003363 /* have the flusher threads jump in and do some IO */
3364 smp_mb();
3365 nr_pages = min_t(unsigned long, nr_pages,
3366 root->fs_info->delalloc_bytes >> PAGE_CACHE_SHIFT);
3367 writeback_inodes_sb_nr_if_idle(root->fs_info->sb, nr_pages);
Yan, Zheng5da9d012010-05-16 10:46:25 -04003368
Josef Bacik0019f102010-10-15 15:18:40 -04003369 spin_lock(&space_info->lock);
Chris Mason36e39c42011-03-12 07:08:42 -05003370 if (reserved > space_info->bytes_reserved)
Josef Bacik0019f102010-10-15 15:18:40 -04003371 reclaimed += reserved - space_info->bytes_reserved;
3372 reserved = space_info->bytes_reserved;
3373 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04003374
Chris Mason36e39c42011-03-12 07:08:42 -05003375 loops++;
3376
Yan, Zheng5da9d012010-05-16 10:46:25 -04003377 if (reserved == 0 || reclaimed >= max_reclaim)
3378 break;
3379
3380 if (trans && trans->transaction->blocked)
3381 return -EAGAIN;
Chris Masonbf9022e2010-10-26 13:40:45 -04003382
Chris Mason36e39c42011-03-12 07:08:42 -05003383 time_left = schedule_timeout_interruptible(1);
Josef Bacikb1953bc2011-01-21 21:10:01 +00003384
3385 /* We were interrupted, exit */
3386 if (time_left)
3387 break;
3388
Chris Mason36e39c42011-03-12 07:08:42 -05003389 /* we've kicked the IO a few times, if anything has been freed,
3390 * exit. There is no sense in looping here for a long time
3391 * when we really need to commit the transaction, or there are
3392 * just too many writers without enough free space
3393 */
3394
3395 if (loops > 3) {
3396 smp_mb();
3397 if (progress != space_info->reservation_progress)
3398 break;
3399 }
Chris Masonbf9022e2010-10-26 13:40:45 -04003400
Yan, Zheng5da9d012010-05-16 10:46:25 -04003401 }
3402 return reclaimed >= to_reclaim;
3403}
3404
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003405/*
3406 * Retries tells us how many times we've called reserve_metadata_bytes. The
3407 * idea is if this is the first call (retries == 0) then we will add to our
3408 * reserved count if we can't make the allocation in order to hold our place
3409 * while we go and try and free up space. That way for retries > 1 we don't try
3410 * and add space, we just check to see if the amount of unused space is >= the
3411 * total space, meaning that our reservation is valid.
3412 *
3413 * However if we don't intend to retry this reservation, pass -1 as retries so
3414 * that it short circuits this logic.
3415 */
3416static int reserve_metadata_bytes(struct btrfs_trans_handle *trans,
3417 struct btrfs_root *root,
3418 struct btrfs_block_rsv *block_rsv,
3419 u64 orig_bytes, int flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003420{
3421 struct btrfs_space_info *space_info = block_rsv->space_info;
3422 u64 unused;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003423 u64 num_bytes = orig_bytes;
3424 int retries = 0;
3425 int ret = 0;
3426 bool reserved = false;
Josef Bacik38227932010-10-26 12:52:53 -04003427 bool committed = false;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003428
3429again:
3430 ret = -ENOSPC;
3431 if (reserved)
3432 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003433
3434 spin_lock(&space_info->lock);
3435 unused = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik6d487552010-10-15 15:13:32 -04003436 space_info->bytes_pinned + space_info->bytes_readonly +
3437 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003438
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003439 /*
3440 * The idea here is that we've not already over-reserved the block group
3441 * then we can go ahead and save our reservation first and then start
3442 * flushing if we need to. Otherwise if we've already overcommitted
3443 * lets start flushing stuff first and then come back and try to make
3444 * our reservation.
3445 */
3446 if (unused <= space_info->total_bytes) {
Arne Jansen6f334342010-11-12 23:17:56 +00003447 unused = space_info->total_bytes - unused;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003448 if (unused >= num_bytes) {
3449 if (!reserved)
3450 space_info->bytes_reserved += orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003451 ret = 0;
3452 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003453 /*
3454 * Ok set num_bytes to orig_bytes since we aren't
3455 * overocmmitted, this way we only try and reclaim what
3456 * we need.
3457 */
3458 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003459 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003460 } else {
3461 /*
3462 * Ok we're over committed, set num_bytes to the overcommitted
3463 * amount plus the amount of bytes that we need for this
3464 * reservation.
3465 */
3466 num_bytes = unused - space_info->total_bytes +
3467 (orig_bytes * (retries + 1));
Yan, Zhengf0486c62010-05-16 10:46:25 -04003468 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003469
3470 /*
3471 * Couldn't make our reservation, save our place so while we're trying
3472 * to reclaim space we can actually use it instead of somebody else
3473 * stealing it from us.
3474 */
3475 if (ret && !reserved) {
3476 space_info->bytes_reserved += orig_bytes;
3477 reserved = true;
3478 }
3479
Yan, Zhengf0486c62010-05-16 10:46:25 -04003480 spin_unlock(&space_info->lock);
3481
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003482 if (!ret)
3483 return 0;
3484
3485 if (!flush)
3486 goto out;
3487
3488 /*
3489 * We do synchronous shrinking since we don't actually unreserve
3490 * metadata until after the IO is completed.
3491 */
3492 ret = shrink_delalloc(trans, root, num_bytes, 1);
3493 if (ret > 0)
3494 return 0;
3495 else if (ret < 0)
3496 goto out;
3497
3498 /*
3499 * So if we were overcommitted it's possible that somebody else flushed
3500 * out enough space and we simply didn't have enough space to reclaim,
3501 * so go back around and try again.
3502 */
3503 if (retries < 2) {
3504 retries++;
3505 goto again;
3506 }
3507
3508 spin_lock(&space_info->lock);
3509 /*
3510 * Not enough space to be reclaimed, don't bother committing the
3511 * transaction.
3512 */
3513 if (space_info->bytes_pinned < orig_bytes)
3514 ret = -ENOSPC;
3515 spin_unlock(&space_info->lock);
3516 if (ret)
3517 goto out;
3518
3519 ret = -EAGAIN;
Josef Bacik38227932010-10-26 12:52:53 -04003520 if (trans || committed)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003521 goto out;
3522
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003523 ret = -ENOSPC;
3524 trans = btrfs_join_transaction(root, 1);
3525 if (IS_ERR(trans))
3526 goto out;
3527 ret = btrfs_commit_transaction(trans, root);
Josef Bacik38227932010-10-26 12:52:53 -04003528 if (!ret) {
3529 trans = NULL;
3530 committed = true;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003531 goto again;
Josef Bacik38227932010-10-26 12:52:53 -04003532 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003533
3534out:
3535 if (reserved) {
3536 spin_lock(&space_info->lock);
3537 space_info->bytes_reserved -= orig_bytes;
3538 spin_unlock(&space_info->lock);
3539 }
3540
Yan, Zhengf0486c62010-05-16 10:46:25 -04003541 return ret;
3542}
3543
3544static struct btrfs_block_rsv *get_block_rsv(struct btrfs_trans_handle *trans,
3545 struct btrfs_root *root)
3546{
3547 struct btrfs_block_rsv *block_rsv;
3548 if (root->ref_cows)
3549 block_rsv = trans->block_rsv;
3550 else
3551 block_rsv = root->block_rsv;
3552
3553 if (!block_rsv)
3554 block_rsv = &root->fs_info->empty_block_rsv;
3555
3556 return block_rsv;
3557}
3558
3559static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
3560 u64 num_bytes)
3561{
3562 int ret = -ENOSPC;
3563 spin_lock(&block_rsv->lock);
3564 if (block_rsv->reserved >= num_bytes) {
3565 block_rsv->reserved -= num_bytes;
3566 if (block_rsv->reserved < block_rsv->size)
3567 block_rsv->full = 0;
3568 ret = 0;
3569 }
3570 spin_unlock(&block_rsv->lock);
3571 return ret;
3572}
3573
3574static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
3575 u64 num_bytes, int update_size)
3576{
3577 spin_lock(&block_rsv->lock);
3578 block_rsv->reserved += num_bytes;
3579 if (update_size)
3580 block_rsv->size += num_bytes;
3581 else if (block_rsv->reserved >= block_rsv->size)
3582 block_rsv->full = 1;
3583 spin_unlock(&block_rsv->lock);
3584}
3585
3586void block_rsv_release_bytes(struct btrfs_block_rsv *block_rsv,
3587 struct btrfs_block_rsv *dest, u64 num_bytes)
3588{
3589 struct btrfs_space_info *space_info = block_rsv->space_info;
3590
3591 spin_lock(&block_rsv->lock);
3592 if (num_bytes == (u64)-1)
3593 num_bytes = block_rsv->size;
3594 block_rsv->size -= num_bytes;
3595 if (block_rsv->reserved >= block_rsv->size) {
3596 num_bytes = block_rsv->reserved - block_rsv->size;
3597 block_rsv->reserved = block_rsv->size;
3598 block_rsv->full = 1;
3599 } else {
3600 num_bytes = 0;
3601 }
3602 spin_unlock(&block_rsv->lock);
3603
3604 if (num_bytes > 0) {
3605 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00003606 spin_lock(&dest->lock);
3607 if (!dest->full) {
3608 u64 bytes_to_add;
3609
3610 bytes_to_add = dest->size - dest->reserved;
3611 bytes_to_add = min(num_bytes, bytes_to_add);
3612 dest->reserved += bytes_to_add;
3613 if (dest->reserved >= dest->size)
3614 dest->full = 1;
3615 num_bytes -= bytes_to_add;
3616 }
3617 spin_unlock(&dest->lock);
3618 }
3619 if (num_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04003620 spin_lock(&space_info->lock);
3621 space_info->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05003622 space_info->reservation_progress++;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003623 spin_unlock(&space_info->lock);
3624 }
3625 }
3626}
3627
3628static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
3629 struct btrfs_block_rsv *dst, u64 num_bytes)
3630{
3631 int ret;
3632
3633 ret = block_rsv_use_bytes(src, num_bytes);
3634 if (ret)
3635 return ret;
3636
3637 block_rsv_add_bytes(dst, num_bytes, 1);
3638 return 0;
3639}
3640
3641void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv)
3642{
3643 memset(rsv, 0, sizeof(*rsv));
3644 spin_lock_init(&rsv->lock);
3645 atomic_set(&rsv->usage, 1);
3646 rsv->priority = 6;
3647 INIT_LIST_HEAD(&rsv->list);
3648}
3649
3650struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root)
3651{
3652 struct btrfs_block_rsv *block_rsv;
3653 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003654
3655 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
3656 if (!block_rsv)
3657 return NULL;
3658
3659 btrfs_init_block_rsv(block_rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003660 block_rsv->space_info = __find_space_info(fs_info,
3661 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003662 return block_rsv;
3663}
3664
3665void btrfs_free_block_rsv(struct btrfs_root *root,
3666 struct btrfs_block_rsv *rsv)
3667{
3668 if (rsv && atomic_dec_and_test(&rsv->usage)) {
3669 btrfs_block_rsv_release(root, rsv, (u64)-1);
3670 if (!rsv->durable)
3671 kfree(rsv);
3672 }
3673}
3674
3675/*
3676 * make the block_rsv struct be able to capture freed space.
3677 * the captured space will re-add to the the block_rsv struct
3678 * after transaction commit
3679 */
3680void btrfs_add_durable_block_rsv(struct btrfs_fs_info *fs_info,
3681 struct btrfs_block_rsv *block_rsv)
3682{
3683 block_rsv->durable = 1;
3684 mutex_lock(&fs_info->durable_block_rsv_mutex);
3685 list_add_tail(&block_rsv->list, &fs_info->durable_block_rsv_list);
3686 mutex_unlock(&fs_info->durable_block_rsv_mutex);
3687}
3688
3689int btrfs_block_rsv_add(struct btrfs_trans_handle *trans,
3690 struct btrfs_root *root,
3691 struct btrfs_block_rsv *block_rsv,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003692 u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003693{
3694 int ret;
3695
3696 if (num_bytes == 0)
3697 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003698
3699 ret = reserve_metadata_bytes(trans, root, block_rsv, num_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003700 if (!ret) {
3701 block_rsv_add_bytes(block_rsv, num_bytes, 1);
3702 return 0;
3703 }
3704
Yan, Zhengf0486c62010-05-16 10:46:25 -04003705 return ret;
3706}
3707
3708int btrfs_block_rsv_check(struct btrfs_trans_handle *trans,
3709 struct btrfs_root *root,
3710 struct btrfs_block_rsv *block_rsv,
3711 u64 min_reserved, int min_factor)
3712{
3713 u64 num_bytes = 0;
3714 int commit_trans = 0;
3715 int ret = -ENOSPC;
3716
3717 if (!block_rsv)
3718 return 0;
3719
3720 spin_lock(&block_rsv->lock);
3721 if (min_factor > 0)
3722 num_bytes = div_factor(block_rsv->size, min_factor);
3723 if (min_reserved > num_bytes)
3724 num_bytes = min_reserved;
3725
3726 if (block_rsv->reserved >= num_bytes) {
3727 ret = 0;
3728 } else {
3729 num_bytes -= block_rsv->reserved;
3730 if (block_rsv->durable &&
3731 block_rsv->freed[0] + block_rsv->freed[1] >= num_bytes)
3732 commit_trans = 1;
3733 }
3734 spin_unlock(&block_rsv->lock);
3735 if (!ret)
3736 return 0;
3737
3738 if (block_rsv->refill_used) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003739 ret = reserve_metadata_bytes(trans, root, block_rsv,
3740 num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003741 if (!ret) {
3742 block_rsv_add_bytes(block_rsv, num_bytes, 0);
3743 return 0;
3744 }
3745 }
3746
3747 if (commit_trans) {
3748 if (trans)
3749 return -EAGAIN;
3750
3751 trans = btrfs_join_transaction(root, 1);
3752 BUG_ON(IS_ERR(trans));
3753 ret = btrfs_commit_transaction(trans, root);
3754 return 0;
3755 }
3756
Yan, Zhengf0486c62010-05-16 10:46:25 -04003757 return -ENOSPC;
3758}
3759
3760int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
3761 struct btrfs_block_rsv *dst_rsv,
3762 u64 num_bytes)
3763{
3764 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3765}
3766
3767void btrfs_block_rsv_release(struct btrfs_root *root,
3768 struct btrfs_block_rsv *block_rsv,
3769 u64 num_bytes)
3770{
3771 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
3772 if (global_rsv->full || global_rsv == block_rsv ||
3773 block_rsv->space_info != global_rsv->space_info)
3774 global_rsv = NULL;
3775 block_rsv_release_bytes(block_rsv, global_rsv, num_bytes);
3776}
3777
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003778/*
3779 * helper to calculate size of global block reservation.
3780 * the desired value is sum of space used by extent tree,
3781 * checksum tree and root tree
3782 */
3783static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
3784{
3785 struct btrfs_space_info *sinfo;
3786 u64 num_bytes;
3787 u64 meta_used;
3788 u64 data_used;
3789 int csum_size = btrfs_super_csum_size(&fs_info->super_copy);
3790#if 0
3791 /*
3792 * per tree used space accounting can be inaccuracy, so we
3793 * can't rely on it.
3794 */
3795 spin_lock(&fs_info->extent_root->accounting_lock);
3796 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item);
3797 spin_unlock(&fs_info->extent_root->accounting_lock);
3798
3799 spin_lock(&fs_info->csum_root->accounting_lock);
3800 num_bytes += btrfs_root_used(&fs_info->csum_root->root_item);
3801 spin_unlock(&fs_info->csum_root->accounting_lock);
3802
3803 spin_lock(&fs_info->tree_root->accounting_lock);
3804 num_bytes += btrfs_root_used(&fs_info->tree_root->root_item);
3805 spin_unlock(&fs_info->tree_root->accounting_lock);
3806#endif
3807 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
3808 spin_lock(&sinfo->lock);
3809 data_used = sinfo->bytes_used;
3810 spin_unlock(&sinfo->lock);
3811
3812 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
3813 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04003814 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
3815 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003816 meta_used = sinfo->bytes_used;
3817 spin_unlock(&sinfo->lock);
3818
3819 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
3820 csum_size * 2;
3821 num_bytes += div64_u64(data_used + meta_used, 50);
3822
3823 if (num_bytes * 3 > meta_used)
3824 num_bytes = div64_u64(meta_used, 3);
3825
3826 return ALIGN(num_bytes, fs_info->extent_root->leafsize << 10);
3827}
3828
3829static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
3830{
3831 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
3832 struct btrfs_space_info *sinfo = block_rsv->space_info;
3833 u64 num_bytes;
3834
3835 num_bytes = calc_global_metadata_size(fs_info);
3836
3837 spin_lock(&block_rsv->lock);
3838 spin_lock(&sinfo->lock);
3839
3840 block_rsv->size = num_bytes;
3841
3842 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04003843 sinfo->bytes_reserved + sinfo->bytes_readonly +
3844 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003845
3846 if (sinfo->total_bytes > num_bytes) {
3847 num_bytes = sinfo->total_bytes - num_bytes;
3848 block_rsv->reserved += num_bytes;
3849 sinfo->bytes_reserved += num_bytes;
3850 }
3851
3852 if (block_rsv->reserved >= block_rsv->size) {
3853 num_bytes = block_rsv->reserved - block_rsv->size;
3854 sinfo->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05003855 sinfo->reservation_progress++;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003856 block_rsv->reserved = block_rsv->size;
3857 block_rsv->full = 1;
3858 }
3859#if 0
3860 printk(KERN_INFO"global block rsv size %llu reserved %llu\n",
3861 block_rsv->size, block_rsv->reserved);
3862#endif
3863 spin_unlock(&sinfo->lock);
3864 spin_unlock(&block_rsv->lock);
3865}
3866
Yan, Zhengf0486c62010-05-16 10:46:25 -04003867static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
3868{
3869 struct btrfs_space_info *space_info;
3870
3871 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
3872 fs_info->chunk_block_rsv.space_info = space_info;
3873 fs_info->chunk_block_rsv.priority = 10;
3874
3875 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003876 fs_info->global_block_rsv.space_info = space_info;
3877 fs_info->global_block_rsv.priority = 10;
3878 fs_info->global_block_rsv.refill_used = 1;
3879 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003880 fs_info->trans_block_rsv.space_info = space_info;
3881 fs_info->empty_block_rsv.space_info = space_info;
3882 fs_info->empty_block_rsv.priority = 10;
3883
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003884 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
3885 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
3886 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
3887 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003888 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003889
3890 btrfs_add_durable_block_rsv(fs_info, &fs_info->global_block_rsv);
3891
3892 btrfs_add_durable_block_rsv(fs_info, &fs_info->delalloc_block_rsv);
3893
3894 update_global_block_rsv(fs_info);
3895}
3896
3897static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
3898{
3899 block_rsv_release_bytes(&fs_info->global_block_rsv, NULL, (u64)-1);
3900 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
3901 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
3902 WARN_ON(fs_info->trans_block_rsv.size > 0);
3903 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
3904 WARN_ON(fs_info->chunk_block_rsv.size > 0);
3905 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003906}
3907
Yan, Zhenga22285a2010-05-16 10:48:46 -04003908static u64 calc_trans_metadata_size(struct btrfs_root *root, int num_items)
3909{
3910 return (root->leafsize + root->nodesize * (BTRFS_MAX_LEVEL - 1)) *
3911 3 * num_items;
3912}
3913
3914int btrfs_trans_reserve_metadata(struct btrfs_trans_handle *trans,
3915 struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003916 int num_items)
Yan, Zhenga22285a2010-05-16 10:48:46 -04003917{
3918 u64 num_bytes;
3919 int ret;
3920
3921 if (num_items == 0 || root->fs_info->chunk_root == root)
3922 return 0;
3923
3924 num_bytes = calc_trans_metadata_size(root, num_items);
3925 ret = btrfs_block_rsv_add(trans, root, &root->fs_info->trans_block_rsv,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003926 num_bytes);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003927 if (!ret) {
3928 trans->bytes_reserved += num_bytes;
3929 trans->block_rsv = &root->fs_info->trans_block_rsv;
3930 }
3931 return ret;
3932}
3933
3934void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
3935 struct btrfs_root *root)
3936{
3937 if (!trans->bytes_reserved)
3938 return;
3939
3940 BUG_ON(trans->block_rsv != &root->fs_info->trans_block_rsv);
3941 btrfs_block_rsv_release(root, trans->block_rsv,
3942 trans->bytes_reserved);
3943 trans->bytes_reserved = 0;
3944}
3945
Yan, Zhengd68fc572010-05-16 10:49:58 -04003946int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
3947 struct inode *inode)
3948{
3949 struct btrfs_root *root = BTRFS_I(inode)->root;
3950 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
3951 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
3952
3953 /*
3954 * one for deleting orphan item, one for updating inode and
3955 * two for calling btrfs_truncate_inode_items.
3956 *
3957 * btrfs_truncate_inode_items is a delete operation, it frees
3958 * more space than it uses in most cases. So two units of
3959 * metadata space should be enough for calling it many times.
3960 * If all of the metadata space is used, we can commit
3961 * transaction and use space it freed.
3962 */
3963 u64 num_bytes = calc_trans_metadata_size(root, 4);
3964 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3965}
3966
3967void btrfs_orphan_release_metadata(struct inode *inode)
3968{
3969 struct btrfs_root *root = BTRFS_I(inode)->root;
3970 u64 num_bytes = calc_trans_metadata_size(root, 4);
3971 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
3972}
3973
Yan, Zhenga22285a2010-05-16 10:48:46 -04003974int btrfs_snap_reserve_metadata(struct btrfs_trans_handle *trans,
3975 struct btrfs_pending_snapshot *pending)
3976{
3977 struct btrfs_root *root = pending->root;
3978 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
3979 struct btrfs_block_rsv *dst_rsv = &pending->block_rsv;
3980 /*
3981 * two for root back/forward refs, two for directory entries
3982 * and one for root of the snapshot.
3983 */
3984 u64 num_bytes = calc_trans_metadata_size(root, 5);
3985 dst_rsv->space_info = src_rsv->space_info;
3986 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3987}
3988
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003989static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes)
3990{
3991 return num_bytes >>= 3;
3992}
3993
3994int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
3995{
3996 struct btrfs_root *root = BTRFS_I(inode)->root;
3997 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
3998 u64 to_reserve;
3999 int nr_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 spin_lock(&BTRFS_I(inode)->accounting_lock);
4008 nr_extents = atomic_read(&BTRFS_I(inode)->outstanding_extents) + 1;
4009 if (nr_extents > BTRFS_I(inode)->reserved_extents) {
4010 nr_extents -= BTRFS_I(inode)->reserved_extents;
4011 to_reserve = calc_trans_metadata_size(root, nr_extents);
4012 } else {
4013 nr_extents = 0;
4014 to_reserve = 0;
4015 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004016 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004017 to_reserve += calc_csum_metadata_size(inode, num_bytes);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004018 ret = reserve_metadata_bytes(NULL, root, block_rsv, to_reserve, 1);
4019 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004020 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004021
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004022 spin_lock(&BTRFS_I(inode)->accounting_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004023 BTRFS_I(inode)->reserved_extents += nr_extents;
4024 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
4025 spin_unlock(&BTRFS_I(inode)->accounting_lock);
4026
4027 block_rsv_add_bytes(block_rsv, to_reserve, 1);
4028
4029 if (block_rsv->size > 512 * 1024 * 1024)
Josef Bacik0019f102010-10-15 15:18:40 -04004030 shrink_delalloc(NULL, root, to_reserve, 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004031
4032 return 0;
4033}
4034
4035void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
4036{
4037 struct btrfs_root *root = BTRFS_I(inode)->root;
4038 u64 to_free;
4039 int nr_extents;
4040
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
4045 spin_lock(&BTRFS_I(inode)->accounting_lock);
4046 nr_extents = atomic_read(&BTRFS_I(inode)->outstanding_extents);
4047 if (nr_extents < BTRFS_I(inode)->reserved_extents) {
4048 nr_extents = BTRFS_I(inode)->reserved_extents - nr_extents;
4049 BTRFS_I(inode)->reserved_extents -= nr_extents;
4050 } else {
4051 nr_extents = 0;
4052 }
4053 spin_unlock(&BTRFS_I(inode)->accounting_lock);
4054
4055 to_free = calc_csum_metadata_size(inode, num_bytes);
4056 if (nr_extents > 0)
4057 to_free += calc_trans_metadata_size(root, nr_extents);
4058
4059 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
4060 to_free);
4061}
4062
4063int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
4064{
4065 int ret;
4066
4067 ret = btrfs_check_data_free_space(inode, num_bytes);
4068 if (ret)
4069 return ret;
4070
4071 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
4072 if (ret) {
4073 btrfs_free_reserved_data_space(inode, num_bytes);
4074 return ret;
4075 }
4076
4077 return 0;
4078}
4079
4080void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
4081{
4082 btrfs_delalloc_release_metadata(inode, num_bytes);
4083 btrfs_free_reserved_data_space(inode, num_bytes);
4084}
4085
Chris Mason9078a3e2007-04-26 16:46:15 -04004086static int update_block_group(struct btrfs_trans_handle *trans,
4087 struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04004088 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04004089{
Josef Bacik0af3d002010-06-21 14:48:16 -04004090 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04004091 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04004092 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004093 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04004094 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04004095 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04004096
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004097 /* block accounting for super block */
4098 spin_lock(&info->delalloc_lock);
4099 old_val = btrfs_super_bytes_used(&info->super_copy);
4100 if (alloc)
4101 old_val += num_bytes;
4102 else
4103 old_val -= num_bytes;
4104 btrfs_set_super_bytes_used(&info->super_copy, old_val);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004105 spin_unlock(&info->delalloc_lock);
4106
Chris Masond3977122009-01-05 21:25:51 -05004107 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04004108 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004109 if (!cache)
Chris Mason9078a3e2007-04-26 16:46:15 -04004110 return -1;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004111 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
4112 BTRFS_BLOCK_GROUP_RAID1 |
4113 BTRFS_BLOCK_GROUP_RAID10))
4114 factor = 2;
4115 else
4116 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04004117 /*
4118 * If this block group has free space cache written out, we
4119 * need to make sure to load it if we are removing space. This
4120 * is because we need the unpinning stage to actually add the
4121 * space back to the block group, otherwise we will leak space.
4122 */
4123 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Josef Bacikb8399de2010-12-08 09:15:11 -05004124 cache_block_group(cache, trans, NULL, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04004125
Chris Masondb945352007-10-15 16:15:53 -04004126 byte_in_group = bytenr - cache->key.objectid;
4127 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04004128
Josef Bacik25179202008-10-29 14:49:05 -04004129 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04004130 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04004131
4132 if (btrfs_super_cache_generation(&info->super_copy) != 0 &&
4133 cache->disk_cache_state < BTRFS_DC_CLEAR)
4134 cache->disk_cache_state = BTRFS_DC_CLEAR;
4135
Josef Bacik0f9dd462008-09-23 13:14:11 -04004136 cache->dirty = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04004137 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04004138 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04004139 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04004140 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04004141 btrfs_set_block_group_used(&cache->item, old_val);
4142 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04004143 cache->space_info->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05004144 cache->space_info->reservation_progress++;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004145 cache->space_info->bytes_used += num_bytes;
4146 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04004147 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04004148 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04004149 } else {
Chris Masondb945352007-10-15 16:15:53 -04004150 old_val -= num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04004151 btrfs_set_block_group_used(&cache->item, old_val);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004152 cache->pinned += num_bytes;
4153 cache->space_info->bytes_pinned += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004154 cache->space_info->bytes_used -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004155 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);
Liu Hui1f3c79a2009-01-05 15:57:51 -05004158
Yan, Zhengf0486c62010-05-16 10:46:25 -04004159 set_extent_dirty(info->pinned_extents,
4160 bytenr, bytenr + num_bytes - 1,
4161 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04004162 }
Chris Masonfa9c0d72009-04-03 09:47:43 -04004163 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04004164 total -= num_bytes;
4165 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004166 }
4167 return 0;
4168}
Chris Mason6324fbf2008-03-24 15:01:59 -04004169
Chris Masona061fc82008-05-07 11:43:44 -04004170static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
4171{
Josef Bacik0f9dd462008-09-23 13:14:11 -04004172 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004173 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004174
4175 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
4176 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04004177 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004178
Yan Zhengd2fb3432008-12-11 16:30:39 -05004179 bytenr = cache->key.objectid;
Chris Masonfa9c0d72009-04-03 09:47:43 -04004180 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05004181
4182 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04004183}
4184
Yan, Zhengf0486c62010-05-16 10:46:25 -04004185static int pin_down_extent(struct btrfs_root *root,
4186 struct btrfs_block_group_cache *cache,
4187 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05004188{
Yan Zheng11833d62009-09-11 16:11:19 -04004189 spin_lock(&cache->space_info->lock);
4190 spin_lock(&cache->lock);
4191 cache->pinned += num_bytes;
4192 cache->space_info->bytes_pinned += num_bytes;
4193 if (reserved) {
4194 cache->reserved -= num_bytes;
4195 cache->space_info->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05004196 cache->space_info->reservation_progress++;
Yan324ae4d2007-11-16 14:57:08 -05004197 }
Yan Zheng11833d62009-09-11 16:11:19 -04004198 spin_unlock(&cache->lock);
4199 spin_unlock(&cache->space_info->lock);
4200
Yan, Zhengf0486c62010-05-16 10:46:25 -04004201 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
4202 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05004203 return 0;
4204}
Chris Mason9078a3e2007-04-26 16:46:15 -04004205
Yan, Zhengf0486c62010-05-16 10:46:25 -04004206/*
4207 * this function must be called within transaction
4208 */
4209int btrfs_pin_extent(struct btrfs_root *root,
4210 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04004211{
Yan, Zhengf0486c62010-05-16 10:46:25 -04004212 struct btrfs_block_group_cache *cache;
4213
4214 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
4215 BUG_ON(!cache);
4216
4217 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
4218
4219 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04004220 return 0;
4221}
Zheng Yane8569812008-09-26 10:05:48 -04004222
Yan, Zhengf0486c62010-05-16 10:46:25 -04004223/*
4224 * update size of reserved extents. this function may return -EAGAIN
4225 * if 'reserve' is true or 'sinfo' is false.
4226 */
4227static int update_reserved_bytes(struct btrfs_block_group_cache *cache,
4228 u64 num_bytes, int reserve, int sinfo)
4229{
4230 int ret = 0;
4231 if (sinfo) {
4232 struct btrfs_space_info *space_info = cache->space_info;
4233 spin_lock(&space_info->lock);
4234 spin_lock(&cache->lock);
4235 if (reserve) {
4236 if (cache->ro) {
4237 ret = -EAGAIN;
4238 } else {
4239 cache->reserved += num_bytes;
4240 space_info->bytes_reserved += num_bytes;
4241 }
4242 } else {
4243 if (cache->ro)
4244 space_info->bytes_readonly += num_bytes;
4245 cache->reserved -= num_bytes;
4246 space_info->bytes_reserved -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05004247 space_info->reservation_progress++;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004248 }
4249 spin_unlock(&cache->lock);
4250 spin_unlock(&space_info->lock);
4251 } else {
4252 spin_lock(&cache->lock);
4253 if (cache->ro) {
4254 ret = -EAGAIN;
4255 } else {
4256 if (reserve)
4257 cache->reserved += num_bytes;
4258 else
4259 cache->reserved -= num_bytes;
4260 }
4261 spin_unlock(&cache->lock);
4262 }
4263 return ret;
4264}
4265
Yan Zheng11833d62009-09-11 16:11:19 -04004266int btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
4267 struct btrfs_root *root)
4268{
4269 struct btrfs_fs_info *fs_info = root->fs_info;
4270 struct btrfs_caching_control *next;
4271 struct btrfs_caching_control *caching_ctl;
4272 struct btrfs_block_group_cache *cache;
4273
4274 down_write(&fs_info->extent_commit_sem);
4275
4276 list_for_each_entry_safe(caching_ctl, next,
4277 &fs_info->caching_block_groups, list) {
4278 cache = caching_ctl->block_group;
4279 if (block_group_cache_done(cache)) {
4280 cache->last_byte_to_unpin = (u64)-1;
4281 list_del_init(&caching_ctl->list);
4282 put_caching_control(caching_ctl);
4283 } else {
4284 cache->last_byte_to_unpin = caching_ctl->progress;
4285 }
4286 }
4287
4288 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
4289 fs_info->pinned_extents = &fs_info->freed_extents[1];
4290 else
4291 fs_info->pinned_extents = &fs_info->freed_extents[0];
4292
4293 up_write(&fs_info->extent_commit_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004294
4295 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04004296 return 0;
4297}
4298
4299static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
4300{
4301 struct btrfs_fs_info *fs_info = root->fs_info;
4302 struct btrfs_block_group_cache *cache = NULL;
4303 u64 len;
4304
4305 while (start <= end) {
4306 if (!cache ||
4307 start >= cache->key.objectid + cache->key.offset) {
4308 if (cache)
4309 btrfs_put_block_group(cache);
4310 cache = btrfs_lookup_block_group(fs_info, start);
4311 BUG_ON(!cache);
4312 }
4313
4314 len = cache->key.objectid + cache->key.offset - start;
4315 len = min(len, end + 1 - start);
4316
4317 if (start < cache->last_byte_to_unpin) {
4318 len = min(len, cache->last_byte_to_unpin - start);
4319 btrfs_add_free_space(cache, start, len);
4320 }
Josef Bacik25179202008-10-29 14:49:05 -04004321
Yan, Zhengf0486c62010-05-16 10:46:25 -04004322 start += len;
4323
Josef Bacik25179202008-10-29 14:49:05 -04004324 spin_lock(&cache->space_info->lock);
4325 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04004326 cache->pinned -= len;
4327 cache->space_info->bytes_pinned -= len;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004328 if (cache->ro) {
4329 cache->space_info->bytes_readonly += len;
4330 } else if (cache->reserved_pinned > 0) {
4331 len = min(len, cache->reserved_pinned);
4332 cache->reserved_pinned -= len;
4333 cache->space_info->bytes_reserved += len;
4334 }
Josef Bacik25179202008-10-29 14:49:05 -04004335 spin_unlock(&cache->lock);
4336 spin_unlock(&cache->space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04004337 }
4338
4339 if (cache)
Chris Masonfa9c0d72009-04-03 09:47:43 -04004340 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04004341 return 0;
4342}
4343
4344int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04004345 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05004346{
Yan Zheng11833d62009-09-11 16:11:19 -04004347 struct btrfs_fs_info *fs_info = root->fs_info;
4348 struct extent_io_tree *unpin;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004349 struct btrfs_block_rsv *block_rsv;
4350 struct btrfs_block_rsv *next_rsv;
Chris Mason1a5bc162007-10-15 16:15:26 -04004351 u64 start;
4352 u64 end;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004353 int idx;
Chris Masona28ec192007-03-06 20:08:01 -05004354 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05004355
Yan Zheng11833d62009-09-11 16:11:19 -04004356 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
4357 unpin = &fs_info->freed_extents[1];
4358 else
4359 unpin = &fs_info->freed_extents[0];
4360
Chris Masond3977122009-01-05 21:25:51 -05004361 while (1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04004362 ret = find_first_extent_bit(unpin, 0, &start, &end,
4363 EXTENT_DIRTY);
4364 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05004365 break;
Liu Hui1f3c79a2009-01-05 15:57:51 -05004366
4367 ret = btrfs_discard_extent(root, start, end + 1 - start);
4368
Chris Mason1a5bc162007-10-15 16:15:26 -04004369 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Yan Zheng11833d62009-09-11 16:11:19 -04004370 unpin_extent_range(root, start, end);
Chris Masonb9473432009-03-13 11:00:37 -04004371 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05004372 }
Josef Bacik817d52f2009-07-13 21:29:25 -04004373
Yan, Zhengf0486c62010-05-16 10:46:25 -04004374 mutex_lock(&fs_info->durable_block_rsv_mutex);
4375 list_for_each_entry_safe(block_rsv, next_rsv,
4376 &fs_info->durable_block_rsv_list, list) {
Chris Masona28ec192007-03-06 20:08:01 -05004377
Yan, Zhengf0486c62010-05-16 10:46:25 -04004378 idx = trans->transid & 0x1;
4379 if (block_rsv->freed[idx] > 0) {
4380 block_rsv_add_bytes(block_rsv,
4381 block_rsv->freed[idx], 0);
4382 block_rsv->freed[idx] = 0;
Chris Mason8ef97622007-03-26 10:15:30 -04004383 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004384 if (atomic_read(&block_rsv->usage) == 0) {
4385 btrfs_block_rsv_release(root, block_rsv, (u64)-1);
Zheng Yan31840ae2008-09-23 13:14:14 -04004386
Yan, Zhengf0486c62010-05-16 10:46:25 -04004387 if (block_rsv->freed[0] == 0 &&
4388 block_rsv->freed[1] == 0) {
4389 list_del_init(&block_rsv->list);
4390 kfree(block_rsv);
4391 }
4392 } else {
4393 btrfs_block_rsv_release(root, block_rsv, 0);
4394 }
4395 }
4396 mutex_unlock(&fs_info->durable_block_rsv_mutex);
4397
Chris Masone20d96d2007-03-22 12:13:20 -04004398 return 0;
4399}
4400
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004401static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
4402 struct btrfs_root *root,
4403 u64 bytenr, u64 num_bytes, u64 parent,
4404 u64 root_objectid, u64 owner_objectid,
4405 u64 owner_offset, int refs_to_drop,
4406 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05004407{
Chris Masone2fa7222007-03-12 16:22:34 -04004408 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004409 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04004410 struct btrfs_fs_info *info = root->fs_info;
4411 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04004412 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004413 struct btrfs_extent_item *ei;
4414 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05004415 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004416 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05004417 int extent_slot = 0;
4418 int found_extent = 0;
4419 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004420 u32 item_size;
4421 u64 refs;
Chris Mason037e6392007-03-07 11:50:24 -05004422
Chris Mason5caf2a02007-04-02 11:20:42 -04004423 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04004424 if (!path)
4425 return -ENOMEM;
4426
Chris Mason3c12ac72008-04-21 12:01:38 -04004427 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04004428 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004429
4430 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
4431 BUG_ON(!is_data && refs_to_drop != 1);
4432
4433 ret = lookup_extent_backref(trans, extent_root, path, &iref,
4434 bytenr, num_bytes, parent,
4435 root_objectid, owner_objectid,
4436 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05004437 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05004438 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004439 while (extent_slot >= 0) {
4440 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05004441 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004442 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05004443 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004444 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
4445 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05004446 found_extent = 1;
4447 break;
4448 }
4449 if (path->slots[0] - extent_slot > 5)
4450 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004451 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05004452 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004453#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4454 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
4455 if (found_extent && item_size < sizeof(*ei))
4456 found_extent = 0;
4457#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04004458 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004459 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04004460 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004461 NULL, refs_to_drop,
4462 is_data);
Zheng Yan31840ae2008-09-23 13:14:14 -04004463 BUG_ON(ret);
4464 btrfs_release_path(extent_root, path);
Chris Masonb9473432009-03-13 11:00:37 -04004465 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004466
4467 key.objectid = bytenr;
4468 key.type = BTRFS_EXTENT_ITEM_KEY;
4469 key.offset = num_bytes;
4470
Zheng Yan31840ae2008-09-23 13:14:14 -04004471 ret = btrfs_search_slot(trans, extent_root,
4472 &key, path, -1, 1);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004473 if (ret) {
4474 printk(KERN_ERR "umm, got %d back from search"
Chris Masond3977122009-01-05 21:25:51 -05004475 ", was looking for %llu\n", ret,
4476 (unsigned long long)bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004477 btrfs_print_leaf(extent_root, path->nodes[0]);
4478 }
Zheng Yan31840ae2008-09-23 13:14:14 -04004479 BUG_ON(ret);
4480 extent_slot = path->slots[0];
4481 }
Chris Mason7bb86312007-12-11 09:25:06 -05004482 } else {
4483 btrfs_print_leaf(extent_root, path->nodes[0]);
4484 WARN_ON(1);
Chris Masond3977122009-01-05 21:25:51 -05004485 printk(KERN_ERR "btrfs unable to find ref byte nr %llu "
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004486 "parent %llu root %llu owner %llu offset %llu\n",
Chris Masond3977122009-01-05 21:25:51 -05004487 (unsigned long long)bytenr,
Chris Mason56bec292009-03-13 10:10:06 -04004488 (unsigned long long)parent,
Chris Masond3977122009-01-05 21:25:51 -05004489 (unsigned long long)root_objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004490 (unsigned long long)owner_objectid,
4491 (unsigned long long)owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05004492 }
Chris Mason5f39d392007-10-15 16:14:19 -04004493
4494 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004495 item_size = btrfs_item_size_nr(leaf, extent_slot);
4496#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4497 if (item_size < sizeof(*ei)) {
4498 BUG_ON(found_extent || extent_slot != path->slots[0]);
4499 ret = convert_extent_item_v0(trans, extent_root, path,
4500 owner_objectid, 0);
4501 BUG_ON(ret < 0);
4502
4503 btrfs_release_path(extent_root, path);
4504 path->leave_spinning = 1;
4505
4506 key.objectid = bytenr;
4507 key.type = BTRFS_EXTENT_ITEM_KEY;
4508 key.offset = num_bytes;
4509
4510 ret = btrfs_search_slot(trans, extent_root, &key, path,
4511 -1, 1);
4512 if (ret) {
4513 printk(KERN_ERR "umm, got %d back from search"
4514 ", was looking for %llu\n", ret,
4515 (unsigned long long)bytenr);
4516 btrfs_print_leaf(extent_root, path->nodes[0]);
4517 }
4518 BUG_ON(ret);
4519 extent_slot = path->slots[0];
4520 leaf = path->nodes[0];
4521 item_size = btrfs_item_size_nr(leaf, extent_slot);
4522 }
4523#endif
4524 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05004525 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04004526 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004527 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID) {
4528 struct btrfs_tree_block_info *bi;
4529 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
4530 bi = (struct btrfs_tree_block_info *)(ei + 1);
4531 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05004532 }
4533
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004534 refs = btrfs_extent_refs(leaf, ei);
4535 BUG_ON(refs < refs_to_drop);
4536 refs -= refs_to_drop;
4537
4538 if (refs > 0) {
4539 if (extent_op)
4540 __run_delayed_extent_op(extent_op, leaf, ei);
4541 /*
4542 * In the case of inline back ref, reference count will
4543 * be updated by remove_extent_backref
4544 */
4545 if (iref) {
4546 BUG_ON(!found_extent);
4547 } else {
4548 btrfs_set_extent_refs(leaf, ei, refs);
4549 btrfs_mark_buffer_dirty(leaf);
4550 }
4551 if (found_extent) {
4552 ret = remove_extent_backref(trans, extent_root, path,
4553 iref, refs_to_drop,
4554 is_data);
4555 BUG_ON(ret);
4556 }
4557 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004558 if (found_extent) {
4559 BUG_ON(is_data && refs_to_drop !=
4560 extent_data_ref_count(root, path, iref));
4561 if (iref) {
4562 BUG_ON(path->slots[0] != extent_slot);
4563 } else {
4564 BUG_ON(path->slots[0] != extent_slot + 1);
4565 path->slots[0] = extent_slot;
4566 num_to_del = 2;
4567 }
Chris Mason78fae272007-03-25 11:35:08 -04004568 }
Chris Masonb9473432009-03-13 11:00:37 -04004569
Chris Mason952fcca2008-02-18 16:33:44 -05004570 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
4571 num_to_del);
Zheng Yan31840ae2008-09-23 13:14:14 -04004572 BUG_ON(ret);
Josef Bacik25179202008-10-29 14:49:05 -04004573 btrfs_release_path(extent_root, path);
David Woodhouse21af8042008-08-12 14:13:26 +01004574
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004575 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05004576 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
4577 BUG_ON(ret);
Chris Masond57e62b2009-03-31 13:47:50 -04004578 } else {
4579 invalidate_mapping_pages(info->btree_inode->i_mapping,
4580 bytenr >> PAGE_CACHE_SHIFT,
4581 (bytenr + num_bytes - 1) >> PAGE_CACHE_SHIFT);
Chris Mason459931e2008-12-10 09:10:46 -05004582 }
4583
Yan, Zhengf0486c62010-05-16 10:46:25 -04004584 ret = update_block_group(trans, root, bytenr, num_bytes, 0);
Chris Masondcbdd4d2008-12-16 13:51:01 -05004585 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05004586 }
Chris Mason5caf2a02007-04-02 11:20:42 -04004587 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05004588 return ret;
4589}
4590
4591/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04004592 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04004593 * delayed ref for that extent as well. This searches the delayed ref tree for
4594 * a given extent, and if there are no other delayed refs to be processed, it
4595 * removes it from the tree.
4596 */
4597static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
4598 struct btrfs_root *root, u64 bytenr)
4599{
4600 struct btrfs_delayed_ref_head *head;
4601 struct btrfs_delayed_ref_root *delayed_refs;
4602 struct btrfs_delayed_ref_node *ref;
4603 struct rb_node *node;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004604 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04004605
4606 delayed_refs = &trans->transaction->delayed_refs;
4607 spin_lock(&delayed_refs->lock);
4608 head = btrfs_find_delayed_ref_head(trans, bytenr);
4609 if (!head)
4610 goto out;
4611
4612 node = rb_prev(&head->node.rb_node);
4613 if (!node)
4614 goto out;
4615
4616 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
4617
4618 /* there are still entries for this ref, we can't drop it */
4619 if (ref->bytenr == bytenr)
4620 goto out;
4621
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004622 if (head->extent_op) {
4623 if (!head->must_insert_reserved)
4624 goto out;
4625 kfree(head->extent_op);
4626 head->extent_op = NULL;
4627 }
4628
Chris Mason1887be62009-03-13 10:11:24 -04004629 /*
4630 * waiting for the lock here would deadlock. If someone else has it
4631 * locked they are already in the process of dropping it anyway
4632 */
4633 if (!mutex_trylock(&head->mutex))
4634 goto out;
4635
4636 /*
4637 * at this point we have a head with no other entries. Go
4638 * ahead and process it.
4639 */
4640 head->node.in_tree = 0;
4641 rb_erase(&head->node.rb_node, &delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04004642
Chris Mason1887be62009-03-13 10:11:24 -04004643 delayed_refs->num_entries--;
4644
4645 /*
4646 * we don't take a ref on the node because we're removing it from the
4647 * tree, so we just steal the ref the tree was holding.
4648 */
Chris Masonc3e69d52009-03-13 10:17:05 -04004649 delayed_refs->num_heads--;
4650 if (list_empty(&head->cluster))
4651 delayed_refs->num_heads_ready--;
4652
4653 list_del_init(&head->cluster);
Chris Mason1887be62009-03-13 10:11:24 -04004654 spin_unlock(&delayed_refs->lock);
4655
Yan, Zhengf0486c62010-05-16 10:46:25 -04004656 BUG_ON(head->extent_op);
4657 if (head->must_insert_reserved)
4658 ret = 1;
4659
4660 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04004661 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004662 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04004663out:
4664 spin_unlock(&delayed_refs->lock);
4665 return 0;
4666}
4667
Yan, Zhengf0486c62010-05-16 10:46:25 -04004668void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
4669 struct btrfs_root *root,
4670 struct extent_buffer *buf,
4671 u64 parent, int last_ref)
4672{
4673 struct btrfs_block_rsv *block_rsv;
4674 struct btrfs_block_group_cache *cache = NULL;
4675 int ret;
4676
4677 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4678 ret = btrfs_add_delayed_tree_ref(trans, buf->start, buf->len,
4679 parent, root->root_key.objectid,
4680 btrfs_header_level(buf),
4681 BTRFS_DROP_DELAYED_REF, NULL);
4682 BUG_ON(ret);
4683 }
4684
4685 if (!last_ref)
4686 return;
4687
4688 block_rsv = get_block_rsv(trans, root);
4689 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
Yan, Zheng3bf84a52010-05-31 09:04:46 +00004690 if (block_rsv->space_info != cache->space_info)
4691 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004692
4693 if (btrfs_header_generation(buf) == trans->transid) {
4694 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4695 ret = check_ref_cleanup(trans, root, buf->start);
4696 if (!ret)
4697 goto pin;
4698 }
4699
4700 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
4701 pin_down_extent(root, cache, buf->start, buf->len, 1);
4702 goto pin;
4703 }
4704
4705 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
4706
4707 btrfs_add_free_space(cache, buf->start, buf->len);
4708 ret = update_reserved_bytes(cache, buf->len, 0, 0);
4709 if (ret == -EAGAIN) {
4710 /* block group became read-only */
4711 update_reserved_bytes(cache, buf->len, 0, 1);
4712 goto out;
4713 }
4714
4715 ret = 1;
4716 spin_lock(&block_rsv->lock);
4717 if (block_rsv->reserved < block_rsv->size) {
4718 block_rsv->reserved += buf->len;
4719 ret = 0;
4720 }
4721 spin_unlock(&block_rsv->lock);
4722
4723 if (ret) {
4724 spin_lock(&cache->space_info->lock);
4725 cache->space_info->bytes_reserved -= buf->len;
Chris Mason36e39c42011-03-12 07:08:42 -05004726 cache->space_info->reservation_progress++;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004727 spin_unlock(&cache->space_info->lock);
4728 }
4729 goto out;
4730 }
4731pin:
4732 if (block_rsv->durable && !cache->ro) {
4733 ret = 0;
4734 spin_lock(&cache->lock);
4735 if (!cache->ro) {
4736 cache->reserved_pinned += buf->len;
4737 ret = 1;
4738 }
4739 spin_unlock(&cache->lock);
4740
4741 if (ret) {
4742 spin_lock(&block_rsv->lock);
4743 block_rsv->freed[trans->transid & 0x1] += buf->len;
4744 spin_unlock(&block_rsv->lock);
4745 }
4746 }
4747out:
4748 btrfs_put_block_group(cache);
4749}
4750
Chris Mason925baed2008-06-25 16:01:30 -04004751int btrfs_free_extent(struct btrfs_trans_handle *trans,
Zheng Yan31840ae2008-09-23 13:14:14 -04004752 struct btrfs_root *root,
4753 u64 bytenr, u64 num_bytes, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004754 u64 root_objectid, u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04004755{
4756 int ret;
4757
Chris Mason56bec292009-03-13 10:10:06 -04004758 /*
4759 * tree log blocks never actually go into the extent allocation
4760 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04004761 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004762 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
4763 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04004764 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04004765 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04004766 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004767 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
4768 ret = btrfs_add_delayed_tree_ref(trans, bytenr, num_bytes,
4769 parent, root_objectid, (int)owner,
4770 BTRFS_DROP_DELAYED_REF, NULL);
Chris Mason1887be62009-03-13 10:11:24 -04004771 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004772 } else {
4773 ret = btrfs_add_delayed_data_ref(trans, bytenr, num_bytes,
4774 parent, root_objectid, owner,
4775 offset, BTRFS_DROP_DELAYED_REF, NULL);
4776 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04004777 }
Chris Mason925baed2008-06-25 16:01:30 -04004778 return ret;
4779}
4780
Chris Mason87ee04e2007-11-30 11:30:34 -05004781static u64 stripe_align(struct btrfs_root *root, u64 val)
4782{
4783 u64 mask = ((u64)root->stripesize - 1);
4784 u64 ret = (val + mask) & ~mask;
4785 return ret;
4786}
4787
Chris Masonfec577f2007-02-26 10:40:21 -05004788/*
Josef Bacik817d52f2009-07-13 21:29:25 -04004789 * when we wait for progress in the block group caching, its because
4790 * our allocation attempt failed at least once. So, we must sleep
4791 * and let some progress happen before we try again.
4792 *
4793 * This function will sleep at least once waiting for new free space to
4794 * show up, and then it will check the block group free space numbers
4795 * for our min num_bytes. Another option is to have it go ahead
4796 * and look in the rbtree for a free extent of a given size, but this
4797 * is a good start.
4798 */
4799static noinline int
4800wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
4801 u64 num_bytes)
4802{
Yan Zheng11833d62009-09-11 16:11:19 -04004803 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04004804 DEFINE_WAIT(wait);
4805
Yan Zheng11833d62009-09-11 16:11:19 -04004806 caching_ctl = get_caching_control(cache);
4807 if (!caching_ctl)
Josef Bacik817d52f2009-07-13 21:29:25 -04004808 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -04004809
Yan Zheng11833d62009-09-11 16:11:19 -04004810 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Josef Bacik817d52f2009-07-13 21:29:25 -04004811 (cache->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04004812
4813 put_caching_control(caching_ctl);
4814 return 0;
4815}
4816
4817static noinline int
4818wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
4819{
4820 struct btrfs_caching_control *caching_ctl;
4821 DEFINE_WAIT(wait);
4822
4823 caching_ctl = get_caching_control(cache);
4824 if (!caching_ctl)
4825 return 0;
4826
4827 wait_event(caching_ctl->wait, block_group_cache_done(cache));
4828
4829 put_caching_control(caching_ctl);
Josef Bacik817d52f2009-07-13 21:29:25 -04004830 return 0;
4831}
4832
Yan, Zhengb742bb82010-05-16 10:46:24 -04004833static int get_block_group_index(struct btrfs_block_group_cache *cache)
4834{
4835 int index;
4836 if (cache->flags & BTRFS_BLOCK_GROUP_RAID10)
4837 index = 0;
4838 else if (cache->flags & BTRFS_BLOCK_GROUP_RAID1)
4839 index = 1;
4840 else if (cache->flags & BTRFS_BLOCK_GROUP_DUP)
4841 index = 2;
4842 else if (cache->flags & BTRFS_BLOCK_GROUP_RAID0)
4843 index = 3;
4844 else
4845 index = 4;
4846 return index;
4847}
4848
Josef Bacik817d52f2009-07-13 21:29:25 -04004849enum btrfs_loop_type {
Josef Bacikccf0e722009-11-10 21:23:48 -05004850 LOOP_FIND_IDEAL = 0,
Josef Bacik817d52f2009-07-13 21:29:25 -04004851 LOOP_CACHING_NOWAIT = 1,
4852 LOOP_CACHING_WAIT = 2,
4853 LOOP_ALLOC_CHUNK = 3,
4854 LOOP_NO_EMPTY_SIZE = 4,
4855};
4856
4857/*
Chris Masonfec577f2007-02-26 10:40:21 -05004858 * walks the btree of allocated extents and find a hole of a given size.
4859 * The key ins is changed to record the hole:
4860 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04004861 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05004862 * ins->offset == number of blocks
4863 * Any available blocks before search_start are skipped.
4864 */
Chris Masond3977122009-01-05 21:25:51 -05004865static noinline int find_free_extent(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05004866 struct btrfs_root *orig_root,
4867 u64 num_bytes, u64 empty_size,
4868 u64 search_start, u64 search_end,
4869 u64 hint_byte, struct btrfs_key *ins,
Chris Mason98ed5172008-01-03 10:01:48 -05004870 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05004871{
Josef Bacik80eb2342008-10-29 14:49:05 -04004872 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05004873 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d72009-04-03 09:47:43 -04004874 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04004875 struct btrfs_block_group_cache *block_group = NULL;
Chris Mason239b14b2008-03-24 15:02:07 -04004876 int empty_cluster = 2 * 1024 * 1024;
Chris Mason0ef3e662008-05-24 14:04:53 -04004877 int allowed_chunk_alloc = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05004878 int done_chunk_alloc = 0;
Josef Bacik80eb2342008-10-29 14:49:05 -04004879 struct btrfs_space_info *space_info;
Chris Masonfa9c0d72009-04-03 09:47:43 -04004880 int last_ptr_loop = 0;
4881 int loop = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004882 int index = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -04004883 bool found_uncached_bg = false;
Josef Bacik0a243252009-09-11 16:11:20 -04004884 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04004885 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04004886 bool use_cluster = true;
Josef Bacikccf0e722009-11-10 21:23:48 -05004887 u64 ideal_cache_percent = 0;
4888 u64 ideal_cache_offset = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05004889
Chris Masondb945352007-10-15 16:15:53 -04004890 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04004891 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
Josef Bacik80eb2342008-10-29 14:49:05 -04004892 ins->objectid = 0;
4893 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04004894
Josef Bacik2552d172009-04-03 10:14:19 -04004895 space_info = __find_space_info(root->fs_info, data);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00004896 if (!space_info) {
4897 printk(KERN_ERR "No space info for %d\n", data);
4898 return -ENOSPC;
4899 }
Josef Bacik2552d172009-04-03 10:14:19 -04004900
Josef Bacik67377732010-09-16 16:19:09 -04004901 /*
4902 * If the space info is for both data and metadata it means we have a
4903 * small filesystem and we can't use the clustering stuff.
4904 */
4905 if (btrfs_mixed_space_info(space_info))
4906 use_cluster = false;
4907
Chris Mason0ef3e662008-05-24 14:04:53 -04004908 if (orig_root->ref_cows || empty_size)
4909 allowed_chunk_alloc = 1;
4910
Josef Bacik67377732010-09-16 16:19:09 -04004911 if (data & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04004912 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05004913 if (!btrfs_test_opt(root, SSD))
4914 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04004915 }
4916
Josef Bacik67377732010-09-16 16:19:09 -04004917 if ((data & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
4918 btrfs_test_opt(root, SSD)) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04004919 last_ptr = &root->fs_info->data_alloc_cluster;
4920 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04004921
Chris Mason239b14b2008-03-24 15:02:07 -04004922 if (last_ptr) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04004923 spin_lock(&last_ptr->lock);
4924 if (last_ptr->block_group)
4925 hint_byte = last_ptr->window_start;
4926 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04004927 }
Chris Masonfa9c0d72009-04-03 09:47:43 -04004928
Chris Masona061fc82008-05-07 11:43:44 -04004929 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04004930 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04004931
Josef Bacik817d52f2009-07-13 21:29:25 -04004932 if (!last_ptr)
Chris Masonfa9c0d72009-04-03 09:47:43 -04004933 empty_cluster = 0;
Chris Masonfa9c0d72009-04-03 09:47:43 -04004934
Josef Bacik2552d172009-04-03 10:14:19 -04004935 if (search_start == hint_byte) {
Josef Bacikccf0e722009-11-10 21:23:48 -05004936ideal_cache:
Josef Bacik2552d172009-04-03 10:14:19 -04004937 block_group = btrfs_lookup_block_group(root->fs_info,
4938 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04004939 /*
4940 * we don't want to use the block group if it doesn't match our
4941 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05004942 *
4943 * However if we are re-searching with an ideal block group
4944 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04004945 */
4946 if (block_group && block_group_bits(block_group, data) &&
Josef Bacikccf0e722009-11-10 21:23:48 -05004947 (block_group->cached != BTRFS_CACHE_NO ||
4948 search_start == ideal_cache_offset)) {
Josef Bacik2552d172009-04-03 10:14:19 -04004949 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04004950 if (list_empty(&block_group->list) ||
4951 block_group->ro) {
4952 /*
4953 * someone is removing this block group,
4954 * we can't jump into the have_block_group
4955 * target because our list pointers are not
4956 * valid
4957 */
4958 btrfs_put_block_group(block_group);
4959 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05004960 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04004961 index = get_block_group_index(block_group);
Chris Mason44fb5512009-06-04 15:34:51 -04004962 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05004963 }
Josef Bacik2552d172009-04-03 10:14:19 -04004964 } else if (block_group) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04004965 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04004966 }
Chris Mason42e70e72008-11-07 18:17:11 -05004967 }
Josef Bacik2552d172009-04-03 10:14:19 -04004968search:
Josef Bacik80eb2342008-10-29 14:49:05 -04004969 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04004970 list_for_each_entry(block_group, &space_info->block_groups[index],
4971 list) {
Josef Bacik6226cb02009-04-03 10:14:18 -04004972 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04004973 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05004974
Josef Bacik11dfe352009-11-13 20:12:59 +00004975 btrfs_get_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04004976 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05004977
Chris Mason83a50de2010-12-13 15:06:46 -05004978 /*
4979 * this can happen if we end up cycling through all the
4980 * raid types, but we want to make sure we only allocate
4981 * for the proper type.
4982 */
4983 if (!block_group_bits(block_group, data)) {
4984 u64 extra = BTRFS_BLOCK_GROUP_DUP |
4985 BTRFS_BLOCK_GROUP_RAID1 |
4986 BTRFS_BLOCK_GROUP_RAID10;
4987
4988 /*
4989 * if they asked for extra copies and this block group
4990 * doesn't provide them, bail. This does allow us to
4991 * fill raid0 from raid1.
4992 */
4993 if ((data & extra) && !(block_group->flags & extra))
4994 goto loop;
4995 }
4996
Josef Bacik2552d172009-04-03 10:14:19 -04004997have_block_group:
Josef Bacik817d52f2009-07-13 21:29:25 -04004998 if (unlikely(block_group->cached == BTRFS_CACHE_NO)) {
Josef Bacikccf0e722009-11-10 21:23:48 -05004999 u64 free_percent;
5000
Josef Bacikb8399de2010-12-08 09:15:11 -05005001 ret = cache_block_group(block_group, trans,
5002 orig_root, 1);
Josef Bacik9d66e232010-08-25 16:54:15 -04005003 if (block_group->cached == BTRFS_CACHE_FINISHED)
5004 goto have_block_group;
5005
Josef Bacikccf0e722009-11-10 21:23:48 -05005006 free_percent = btrfs_block_group_used(&block_group->item);
5007 free_percent *= 100;
5008 free_percent = div64_u64(free_percent,
5009 block_group->key.offset);
5010 free_percent = 100 - free_percent;
5011 if (free_percent > ideal_cache_percent &&
5012 likely(!block_group->ro)) {
5013 ideal_cache_offset = block_group->key.objectid;
5014 ideal_cache_percent = free_percent;
5015 }
5016
Josef Bacik817d52f2009-07-13 21:29:25 -04005017 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05005018 * We only want to start kthread caching if we are at
5019 * the point where we will wait for caching to make
5020 * progress, or if our ideal search is over and we've
5021 * found somebody to start caching.
Josef Bacik817d52f2009-07-13 21:29:25 -04005022 */
5023 if (loop > LOOP_CACHING_NOWAIT ||
Josef Bacikccf0e722009-11-10 21:23:48 -05005024 (loop > LOOP_FIND_IDEAL &&
5025 atomic_read(&space_info->caching_threads) < 2)) {
Josef Bacikb8399de2010-12-08 09:15:11 -05005026 ret = cache_block_group(block_group, trans,
5027 orig_root, 0);
Josef Bacik817d52f2009-07-13 21:29:25 -04005028 BUG_ON(ret);
Josef Bacik2552d172009-04-03 10:14:19 -04005029 }
Josef Bacikccf0e722009-11-10 21:23:48 -05005030 found_uncached_bg = true;
5031
5032 /*
5033 * If loop is set for cached only, try the next block
5034 * group.
5035 */
5036 if (loop == LOOP_FIND_IDEAL)
5037 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05005038 }
5039
Josef Bacik817d52f2009-07-13 21:29:25 -04005040 cached = block_group_cache_done(block_group);
Josef Bacikccf0e722009-11-10 21:23:48 -05005041 if (unlikely(!cached))
Josef Bacik817d52f2009-07-13 21:29:25 -04005042 found_uncached_bg = true;
5043
Josef Bacikea6a4782008-11-20 12:16:16 -05005044 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04005045 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005046
Josef Bacik0a243252009-09-11 16:11:20 -04005047 /*
5048 * Ok we want to try and use the cluster allocator, so lets look
5049 * there, unless we are on LOOP_NO_EMPTY_SIZE, since we will
5050 * have tried the cluster allocator plenty of times at this
5051 * point and not have found anything, so we are likely way too
5052 * fragmented for the clustering stuff to find anything, so lets
5053 * just skip it and let the allocator find whatever block it can
5054 * find
5055 */
5056 if (last_ptr && loop < LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04005057 /*
5058 * the refill lock keeps out other
5059 * people trying to start a new cluster
5060 */
5061 spin_lock(&last_ptr->refill_lock);
Chris Mason44fb5512009-06-04 15:34:51 -04005062 if (last_ptr->block_group &&
5063 (last_ptr->block_group->ro ||
5064 !block_group_bits(last_ptr->block_group, data))) {
5065 offset = 0;
5066 goto refill_cluster;
5067 }
5068
Chris Masonfa9c0d72009-04-03 09:47:43 -04005069 offset = btrfs_alloc_from_cluster(block_group, last_ptr,
5070 num_bytes, search_start);
5071 if (offset) {
5072 /* we have a block, we're done */
5073 spin_unlock(&last_ptr->refill_lock);
5074 goto checks;
5075 }
5076
5077 spin_lock(&last_ptr->lock);
5078 /*
5079 * whoops, this cluster doesn't actually point to
5080 * this block group. Get a ref on the block
5081 * group is does point to and try again
5082 */
5083 if (!last_ptr_loop && last_ptr->block_group &&
5084 last_ptr->block_group != block_group) {
5085
5086 btrfs_put_block_group(block_group);
5087 block_group = last_ptr->block_group;
Josef Bacik11dfe352009-11-13 20:12:59 +00005088 btrfs_get_block_group(block_group);
Chris Masonfa9c0d72009-04-03 09:47:43 -04005089 spin_unlock(&last_ptr->lock);
5090 spin_unlock(&last_ptr->refill_lock);
5091
5092 last_ptr_loop = 1;
5093 search_start = block_group->key.objectid;
Chris Mason44fb5512009-06-04 15:34:51 -04005094 /*
5095 * we know this block group is properly
5096 * in the list because
5097 * btrfs_remove_block_group, drops the
5098 * cluster before it removes the block
5099 * group from the list
5100 */
Chris Masonfa9c0d72009-04-03 09:47:43 -04005101 goto have_block_group;
5102 }
5103 spin_unlock(&last_ptr->lock);
Chris Mason44fb5512009-06-04 15:34:51 -04005104refill_cluster:
Chris Masonfa9c0d72009-04-03 09:47:43 -04005105 /*
5106 * this cluster didn't work out, free it and
5107 * start over
5108 */
5109 btrfs_return_cluster_to_free_space(NULL, last_ptr);
5110
5111 last_ptr_loop = 0;
5112
5113 /* allocate a cluster in this block group */
Chris Mason451d7582009-06-09 20:28:34 -04005114 ret = btrfs_find_space_cluster(trans, root,
Chris Masonfa9c0d72009-04-03 09:47:43 -04005115 block_group, last_ptr,
5116 offset, num_bytes,
5117 empty_cluster + empty_size);
5118 if (ret == 0) {
5119 /*
5120 * now pull our allocation out of this
5121 * cluster
5122 */
5123 offset = btrfs_alloc_from_cluster(block_group,
5124 last_ptr, num_bytes,
5125 search_start);
5126 if (offset) {
5127 /* we found one, proceed */
5128 spin_unlock(&last_ptr->refill_lock);
5129 goto checks;
5130 }
Josef Bacik0a243252009-09-11 16:11:20 -04005131 } else if (!cached && loop > LOOP_CACHING_NOWAIT
5132 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005133 spin_unlock(&last_ptr->refill_lock);
5134
Josef Bacik0a243252009-09-11 16:11:20 -04005135 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04005136 wait_block_group_cache_progress(block_group,
5137 num_bytes + empty_cluster + empty_size);
5138 goto have_block_group;
Chris Masonfa9c0d72009-04-03 09:47:43 -04005139 }
Josef Bacik817d52f2009-07-13 21:29:25 -04005140
Chris Masonfa9c0d72009-04-03 09:47:43 -04005141 /*
5142 * at this point we either didn't find a cluster
5143 * or we weren't able to allocate a block from our
5144 * cluster. Free the cluster we've been trying
5145 * to use, and go to the next block group
5146 */
Josef Bacik0a243252009-09-11 16:11:20 -04005147 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d72009-04-03 09:47:43 -04005148 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04005149 goto loop;
Chris Masonfa9c0d72009-04-03 09:47:43 -04005150 }
5151
Josef Bacik6226cb02009-04-03 10:14:18 -04005152 offset = btrfs_find_space_for_alloc(block_group, search_start,
5153 num_bytes, empty_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005154 /*
5155 * If we didn't find a chunk, and we haven't failed on this
5156 * block group before, and this block group is in the middle of
5157 * caching and we are ok with waiting, then go ahead and wait
5158 * for progress to be made, and set failed_alloc to true.
5159 *
5160 * If failed_alloc is true then we've already waited on this
5161 * block group once and should move on to the next block group.
5162 */
5163 if (!offset && !failed_alloc && !cached &&
5164 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005165 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005166 num_bytes + empty_size);
5167 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04005168 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005169 } else if (!offset) {
5170 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04005171 }
Chris Masonfa9c0d72009-04-03 09:47:43 -04005172checks:
Josef Bacik6226cb02009-04-03 10:14:18 -04005173 search_start = stripe_align(root, offset);
Josef Bacik2552d172009-04-03 10:14:19 -04005174 /* move on to the next group */
Josef Bacik6226cb02009-04-03 10:14:18 -04005175 if (search_start + num_bytes >= search_end) {
5176 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04005177 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04005178 }
Chris Masone37c9e62007-05-09 20:13:14 -04005179
Josef Bacik2552d172009-04-03 10:14:19 -04005180 /* move on to the next group */
5181 if (search_start + num_bytes >
Josef Bacik6226cb02009-04-03 10:14:18 -04005182 block_group->key.objectid + block_group->key.offset) {
5183 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04005184 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04005185 }
Josef Bacik80eb2342008-10-29 14:49:05 -04005186
Josef Bacik2552d172009-04-03 10:14:19 -04005187 ins->objectid = search_start;
5188 ins->offset = num_bytes;
5189
Josef Bacik6226cb02009-04-03 10:14:18 -04005190 if (offset < search_start)
5191 btrfs_add_free_space(block_group, offset,
5192 search_start - offset);
5193 BUG_ON(offset > search_start);
5194
Yan, Zhengf0486c62010-05-16 10:46:25 -04005195 ret = update_reserved_bytes(block_group, num_bytes, 1,
5196 (data & BTRFS_BLOCK_GROUP_DATA));
5197 if (ret == -EAGAIN) {
5198 btrfs_add_free_space(block_group, offset, num_bytes);
5199 goto loop;
5200 }
Yan Zheng11833d62009-09-11 16:11:19 -04005201
Josef Bacik2552d172009-04-03 10:14:19 -04005202 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005203 ins->objectid = search_start;
5204 ins->offset = num_bytes;
5205
5206 if (offset < search_start)
5207 btrfs_add_free_space(block_group, offset,
5208 search_start - offset);
5209 BUG_ON(offset > search_start);
Josef Bacik2552d172009-04-03 10:14:19 -04005210 break;
5211loop:
Josef Bacik0a243252009-09-11 16:11:20 -04005212 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005213 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005214 BUG_ON(index != get_block_group_index(block_group));
Chris Masonfa9c0d72009-04-03 09:47:43 -04005215 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04005216 }
5217 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05005218
Yan, Zhengb742bb82010-05-16 10:46:24 -04005219 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
5220 goto search;
5221
Josef Bacikccf0e722009-11-10 21:23:48 -05005222 /* LOOP_FIND_IDEAL, only search caching/cached bg's, and don't wait for
5223 * for them to make caching progress. Also
5224 * determine the best possible bg to cache
5225 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
5226 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04005227 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
5228 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
5229 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
5230 * again
Chris Masonfa9c0d72009-04-03 09:47:43 -04005231 */
Josef Bacik817d52f2009-07-13 21:29:25 -04005232 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE &&
5233 (found_uncached_bg || empty_size || empty_cluster ||
5234 allowed_chunk_alloc)) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04005235 index = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05005236 if (loop == LOOP_FIND_IDEAL && found_uncached_bg) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005237 found_uncached_bg = false;
Josef Bacikccf0e722009-11-10 21:23:48 -05005238 loop++;
5239 if (!ideal_cache_percent &&
5240 atomic_read(&space_info->caching_threads))
Josef Bacik817d52f2009-07-13 21:29:25 -04005241 goto search;
Josef Bacikccf0e722009-11-10 21:23:48 -05005242
5243 /*
5244 * 1 of the following 2 things have happened so far
5245 *
5246 * 1) We found an ideal block group for caching that
5247 * is mostly full and will cache quickly, so we might
5248 * as well wait for it.
5249 *
5250 * 2) We searched for cached only and we didn't find
5251 * anything, and we didn't start any caching kthreads
5252 * either, so chances are we will loop through and
5253 * start a couple caching kthreads, and then come back
5254 * around and just wait for them. This will be slower
5255 * because we will have 2 caching kthreads reading at
5256 * the same time when we could have just started one
5257 * and waited for it to get far enough to give us an
5258 * allocation, so go ahead and go to the wait caching
5259 * loop.
5260 */
5261 loop = LOOP_CACHING_WAIT;
5262 search_start = ideal_cache_offset;
5263 ideal_cache_percent = 0;
5264 goto ideal_cache;
5265 } else if (loop == LOOP_FIND_IDEAL) {
5266 /*
5267 * Didn't find a uncached bg, wait on anything we find
5268 * next.
5269 */
5270 loop = LOOP_CACHING_WAIT;
5271 goto search;
5272 }
5273
5274 if (loop < LOOP_CACHING_WAIT) {
5275 loop++;
5276 goto search;
Josef Bacik817d52f2009-07-13 21:29:25 -04005277 }
5278
5279 if (loop == LOOP_ALLOC_CHUNK) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04005280 empty_size = 0;
5281 empty_cluster = 0;
5282 }
Chris Mason42e70e72008-11-07 18:17:11 -05005283
Josef Bacik2552d172009-04-03 10:14:19 -04005284 if (allowed_chunk_alloc) {
5285 ret = do_chunk_alloc(trans, root, num_bytes +
5286 2 * 1024 * 1024, data, 1);
Josef Bacik2552d172009-04-03 10:14:19 -04005287 allowed_chunk_alloc = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05005288 done_chunk_alloc = 1;
5289 } else if (!done_chunk_alloc) {
Josef Bacik2552d172009-04-03 10:14:19 -04005290 space_info->force_alloc = 1;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005291 }
Josef Bacik80eb2342008-10-29 14:49:05 -04005292
Josef Bacik817d52f2009-07-13 21:29:25 -04005293 if (loop < LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04005294 loop++;
Josef Bacik2552d172009-04-03 10:14:19 -04005295 goto search;
Chris Masonfa9c0d72009-04-03 09:47:43 -04005296 }
Josef Bacik2552d172009-04-03 10:14:19 -04005297 ret = -ENOSPC;
5298 } else if (!ins->objectid) {
5299 ret = -ENOSPC;
Chris Masone19caa52007-10-15 16:17:44 -04005300 }
Chris Mason0b86a832008-03-24 15:01:56 -04005301
Josef Bacik80eb2342008-10-29 14:49:05 -04005302 /* we found what we needed */
5303 if (ins->objectid) {
5304 if (!(data & BTRFS_BLOCK_GROUP_DATA))
Yan Zhengd2fb3432008-12-11 16:30:39 -05005305 trans->block_group = block_group->key.objectid;
Josef Bacik80eb2342008-10-29 14:49:05 -04005306
Chris Masonfa9c0d72009-04-03 09:47:43 -04005307 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04005308 ret = 0;
5309 }
Chris Mason0b86a832008-03-24 15:01:56 -04005310
Chris Mason0f70abe2007-02-28 16:46:22 -05005311 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05005312}
Chris Masonec44a352008-04-28 15:29:52 -04005313
Josef Bacik9ed74f22009-09-11 16:12:44 -04005314static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
5315 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04005316{
5317 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005318 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005319
Josef Bacik9ed74f22009-09-11 16:12:44 -04005320 spin_lock(&info->lock);
Chris Masond3977122009-01-05 21:25:51 -05005321 printk(KERN_INFO "space_info has %llu free, is %sfull\n",
5322 (unsigned long long)(info->total_bytes - info->bytes_used -
Josef Bacik9ed74f22009-09-11 16:12:44 -04005323 info->bytes_pinned - info->bytes_reserved -
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005324 info->bytes_readonly),
Chris Masond3977122009-01-05 21:25:51 -05005325 (info->full) ? "" : "not ");
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005326 printk(KERN_INFO "space_info total=%llu, used=%llu, pinned=%llu, "
5327 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Joel Becker21380932009-04-21 12:38:29 -07005328 (unsigned long long)info->total_bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -04005329 (unsigned long long)info->bytes_used,
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005330 (unsigned long long)info->bytes_pinned,
5331 (unsigned long long)info->bytes_reserved,
5332 (unsigned long long)info->bytes_may_use,
5333 (unsigned long long)info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005334 spin_unlock(&info->lock);
5335
5336 if (!dump_block_groups)
5337 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005338
Josef Bacik80eb2342008-10-29 14:49:05 -04005339 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04005340again:
5341 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04005342 spin_lock(&cache->lock);
Chris Masond3977122009-01-05 21:25:51 -05005343 printk(KERN_INFO "block group %llu has %llu bytes, %llu used "
5344 "%llu pinned %llu reserved\n",
5345 (unsigned long long)cache->key.objectid,
5346 (unsigned long long)cache->key.offset,
5347 (unsigned long long)btrfs_block_group_used(&cache->item),
5348 (unsigned long long)cache->pinned,
5349 (unsigned long long)cache->reserved);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005350 btrfs_dump_free_space(cache, bytes);
5351 spin_unlock(&cache->lock);
5352 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04005353 if (++index < BTRFS_NR_RAID_TYPES)
5354 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04005355 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005356}
Zheng Yane8569812008-09-26 10:05:48 -04005357
Yan Zheng11833d62009-09-11 16:11:19 -04005358int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
5359 struct btrfs_root *root,
5360 u64 num_bytes, u64 min_alloc_size,
5361 u64 empty_size, u64 hint_byte,
5362 u64 search_end, struct btrfs_key *ins,
5363 u64 data)
Chris Masonfec577f2007-02-26 10:40:21 -05005364{
5365 int ret;
Chris Masonfbdc7622007-05-30 10:22:12 -04005366 u64 search_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005367
Josef Bacik6a632092009-02-20 11:00:09 -05005368 data = btrfs_get_alloc_profile(root, data);
Chris Mason98d20f62008-04-14 09:46:10 -04005369again:
Chris Mason0ef3e662008-05-24 14:04:53 -04005370 /*
5371 * the only place that sets empty_size is btrfs_realloc_node, which
5372 * is not called recursively on allocations
5373 */
Josef Bacik83d3c962009-12-07 21:45:59 +00005374 if (empty_size || root->ref_cows)
Chris Mason6324fbf2008-03-24 15:01:59 -04005375 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0ef3e662008-05-24 14:04:53 -04005376 num_bytes + 2 * 1024 * 1024, data, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04005377
Chris Masondb945352007-10-15 16:15:53 -04005378 WARN_ON(num_bytes < root->sectorsize);
5379 ret = find_free_extent(trans, root, num_bytes, empty_size,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005380 search_start, search_end, hint_byte,
5381 ins, data);
Chris Mason3b951512008-04-17 11:29:12 -04005382
Chris Mason98d20f62008-04-14 09:46:10 -04005383 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
5384 num_bytes = num_bytes >> 1;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005385 num_bytes = num_bytes & ~(root->sectorsize - 1);
Chris Mason98d20f62008-04-14 09:46:10 -04005386 num_bytes = max(num_bytes, min_alloc_size);
Chris Mason0ef3e662008-05-24 14:04:53 -04005387 do_chunk_alloc(trans, root->fs_info->extent_root,
5388 num_bytes, data, 1);
Chris Mason98d20f62008-04-14 09:46:10 -04005389 goto again;
5390 }
Chris Mason91435652011-02-16 13:10:41 -05005391 if (ret == -ENOSPC && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04005392 struct btrfs_space_info *sinfo;
5393
5394 sinfo = __find_space_info(root->fs_info, data);
Chris Masond3977122009-01-05 21:25:51 -05005395 printk(KERN_ERR "btrfs allocation failed flags %llu, "
5396 "wanted %llu\n", (unsigned long long)data,
5397 (unsigned long long)num_bytes);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005398 dump_space_info(sinfo, num_bytes, 1);
Chris Mason925baed2008-06-25 16:01:30 -04005399 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04005400
5401 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005402}
5403
Chris Mason65b51a02008-08-01 15:11:20 -04005404int btrfs_free_reserved_extent(struct btrfs_root *root, u64 start, u64 len)
5405{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005406 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05005407 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005408
Josef Bacik0f9dd462008-09-23 13:14:11 -04005409 cache = btrfs_lookup_block_group(root->fs_info, start);
5410 if (!cache) {
Chris Masond3977122009-01-05 21:25:51 -05005411 printk(KERN_ERR "Unable to find block group for %llu\n",
5412 (unsigned long long)start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005413 return -ENOSPC;
5414 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05005415
5416 ret = btrfs_discard_extent(root, start, len);
5417
Josef Bacik0f9dd462008-09-23 13:14:11 -04005418 btrfs_add_free_space(cache, start, len);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005419 update_reserved_bytes(cache, len, 0, 1);
Chris Masonfa9c0d72009-04-03 09:47:43 -04005420 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04005421
Chris Masone6dcd2d2008-07-17 12:53:50 -04005422 return ret;
5423}
5424
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005425static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5426 struct btrfs_root *root,
5427 u64 parent, u64 root_objectid,
5428 u64 flags, u64 owner, u64 offset,
5429 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04005430{
5431 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005432 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005433 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005434 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005435 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005436 struct extent_buffer *leaf;
5437 int type;
5438 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04005439
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005440 if (parent > 0)
5441 type = BTRFS_SHARED_DATA_REF_KEY;
5442 else
5443 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04005444
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005445 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05005446
5447 path = btrfs_alloc_path();
5448 BUG_ON(!path);
Chris Mason47e4bb92008-02-01 14:51:59 -05005449
Chris Masonb9473432009-03-13 11:00:37 -04005450 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005451 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
5452 ins, size);
Chris Masonccd467d2007-06-28 15:57:36 -04005453 BUG_ON(ret);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005454
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005455 leaf = path->nodes[0];
5456 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05005457 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005458 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
5459 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
5460 btrfs_set_extent_flags(leaf, extent_item,
5461 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05005462
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005463 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
5464 btrfs_set_extent_inline_ref_type(leaf, iref, type);
5465 if (parent > 0) {
5466 struct btrfs_shared_data_ref *ref;
5467 ref = (struct btrfs_shared_data_ref *)(iref + 1);
5468 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
5469 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
5470 } else {
5471 struct btrfs_extent_data_ref *ref;
5472 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
5473 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
5474 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
5475 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
5476 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
5477 }
Chris Mason47e4bb92008-02-01 14:51:59 -05005478
5479 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05005480 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04005481
Yan, Zhengf0486c62010-05-16 10:46:25 -04005482 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Chris Masonf5947062008-02-04 10:10:13 -05005483 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05005484 printk(KERN_ERR "btrfs update block group failed for %llu "
5485 "%llu\n", (unsigned long long)ins->objectid,
5486 (unsigned long long)ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05005487 BUG();
5488 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005489 return ret;
5490}
5491
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005492static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
5493 struct btrfs_root *root,
5494 u64 parent, u64 root_objectid,
5495 u64 flags, struct btrfs_disk_key *key,
5496 int level, struct btrfs_key *ins)
5497{
5498 int ret;
5499 struct btrfs_fs_info *fs_info = root->fs_info;
5500 struct btrfs_extent_item *extent_item;
5501 struct btrfs_tree_block_info *block_info;
5502 struct btrfs_extent_inline_ref *iref;
5503 struct btrfs_path *path;
5504 struct extent_buffer *leaf;
5505 u32 size = sizeof(*extent_item) + sizeof(*block_info) + sizeof(*iref);
5506
5507 path = btrfs_alloc_path();
5508 BUG_ON(!path);
5509
5510 path->leave_spinning = 1;
5511 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
5512 ins, size);
5513 BUG_ON(ret);
5514
5515 leaf = path->nodes[0];
5516 extent_item = btrfs_item_ptr(leaf, path->slots[0],
5517 struct btrfs_extent_item);
5518 btrfs_set_extent_refs(leaf, extent_item, 1);
5519 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
5520 btrfs_set_extent_flags(leaf, extent_item,
5521 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
5522 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
5523
5524 btrfs_set_tree_block_key(leaf, block_info, key);
5525 btrfs_set_tree_block_level(leaf, block_info, level);
5526
5527 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
5528 if (parent > 0) {
5529 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
5530 btrfs_set_extent_inline_ref_type(leaf, iref,
5531 BTRFS_SHARED_BLOCK_REF_KEY);
5532 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
5533 } else {
5534 btrfs_set_extent_inline_ref_type(leaf, iref,
5535 BTRFS_TREE_BLOCK_REF_KEY);
5536 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
5537 }
5538
5539 btrfs_mark_buffer_dirty(leaf);
5540 btrfs_free_path(path);
5541
Yan, Zhengf0486c62010-05-16 10:46:25 -04005542 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005543 if (ret) {
5544 printk(KERN_ERR "btrfs update block group failed for %llu "
5545 "%llu\n", (unsigned long long)ins->objectid,
5546 (unsigned long long)ins->offset);
5547 BUG();
5548 }
5549 return ret;
5550}
5551
5552int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5553 struct btrfs_root *root,
5554 u64 root_objectid, u64 owner,
5555 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04005556{
5557 int ret;
Chris Mason1c2308f2008-09-23 13:14:13 -04005558
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005559 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04005560
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005561 ret = btrfs_add_delayed_data_ref(trans, ins->objectid, ins->offset,
5562 0, root_objectid, owner, offset,
5563 BTRFS_ADD_DELAYED_EXTENT, NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005564 return ret;
5565}
Chris Masone02119d2008-09-05 16:13:11 -04005566
5567/*
5568 * this is used by the tree logging recovery code. It records that
5569 * an extent has been allocated and makes sure to clear the free
5570 * space cache bits as well
5571 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005572int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
5573 struct btrfs_root *root,
5574 u64 root_objectid, u64 owner, u64 offset,
5575 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04005576{
5577 int ret;
5578 struct btrfs_block_group_cache *block_group;
Yan Zheng11833d62009-09-11 16:11:19 -04005579 struct btrfs_caching_control *caching_ctl;
5580 u64 start = ins->objectid;
5581 u64 num_bytes = ins->offset;
Chris Masone02119d2008-09-05 16:13:11 -04005582
Chris Masone02119d2008-09-05 16:13:11 -04005583 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacikb8399de2010-12-08 09:15:11 -05005584 cache_block_group(block_group, trans, NULL, 0);
Yan Zheng11833d62009-09-11 16:11:19 -04005585 caching_ctl = get_caching_control(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04005586
Yan Zheng11833d62009-09-11 16:11:19 -04005587 if (!caching_ctl) {
5588 BUG_ON(!block_group_cache_done(block_group));
5589 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5590 BUG_ON(ret);
5591 } else {
5592 mutex_lock(&caching_ctl->mutex);
5593
5594 if (start >= caching_ctl->progress) {
5595 ret = add_excluded_extent(root, start, num_bytes);
5596 BUG_ON(ret);
5597 } else if (start + num_bytes <= caching_ctl->progress) {
5598 ret = btrfs_remove_free_space(block_group,
5599 start, num_bytes);
5600 BUG_ON(ret);
5601 } else {
5602 num_bytes = caching_ctl->progress - start;
5603 ret = btrfs_remove_free_space(block_group,
5604 start, num_bytes);
5605 BUG_ON(ret);
5606
5607 start = caching_ctl->progress;
5608 num_bytes = ins->objectid + ins->offset -
5609 caching_ctl->progress;
5610 ret = add_excluded_extent(root, start, num_bytes);
5611 BUG_ON(ret);
5612 }
5613
5614 mutex_unlock(&caching_ctl->mutex);
5615 put_caching_control(caching_ctl);
5616 }
5617
Yan, Zhengf0486c62010-05-16 10:46:25 -04005618 ret = update_reserved_bytes(block_group, ins->offset, 1, 1);
5619 BUG_ON(ret);
Chris Masonfa9c0d72009-04-03 09:47:43 -04005620 btrfs_put_block_group(block_group);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005621 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
5622 0, owner, offset, ins, 1);
Chris Masone02119d2008-09-05 16:13:11 -04005623 return ret;
5624}
5625
Chris Mason65b51a02008-08-01 15:11:20 -04005626struct extent_buffer *btrfs_init_new_buffer(struct btrfs_trans_handle *trans,
5627 struct btrfs_root *root,
Chris Mason4008c042009-02-12 14:09:45 -05005628 u64 bytenr, u32 blocksize,
5629 int level)
Chris Mason65b51a02008-08-01 15:11:20 -04005630{
5631 struct extent_buffer *buf;
5632
5633 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
5634 if (!buf)
5635 return ERR_PTR(-ENOMEM);
5636 btrfs_set_header_generation(buf, trans->transid);
Chris Mason4008c042009-02-12 14:09:45 -05005637 btrfs_set_buffer_lockdep_class(buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04005638 btrfs_tree_lock(buf);
5639 clean_tree_block(trans, root, buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005640
5641 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04005642 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005643
Chris Masond0c803c2008-09-11 16:17:57 -04005644 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00005645 /*
5646 * we allow two log transactions at a time, use different
5647 * EXENT bit to differentiate dirty pages.
5648 */
5649 if (root->log_transid % 2 == 0)
5650 set_extent_dirty(&root->dirty_log_pages, buf->start,
5651 buf->start + buf->len - 1, GFP_NOFS);
5652 else
5653 set_extent_new(&root->dirty_log_pages, buf->start,
5654 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04005655 } else {
5656 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
5657 buf->start + buf->len - 1, GFP_NOFS);
5658 }
Chris Mason65b51a02008-08-01 15:11:20 -04005659 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005660 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04005661 return buf;
5662}
5663
Yan, Zhengf0486c62010-05-16 10:46:25 -04005664static struct btrfs_block_rsv *
5665use_block_rsv(struct btrfs_trans_handle *trans,
5666 struct btrfs_root *root, u32 blocksize)
5667{
5668 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00005669 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005670 int ret;
5671
5672 block_rsv = get_block_rsv(trans, root);
5673
5674 if (block_rsv->size == 0) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005675 ret = reserve_metadata_bytes(trans, root, block_rsv,
5676 blocksize, 0);
Josef Bacik68a82272011-01-24 21:43:20 +00005677 /*
5678 * If we couldn't reserve metadata bytes try and use some from
5679 * the global reserve.
5680 */
5681 if (ret && block_rsv != global_rsv) {
5682 ret = block_rsv_use_bytes(global_rsv, blocksize);
5683 if (!ret)
5684 return global_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005685 return ERR_PTR(ret);
Josef Bacik68a82272011-01-24 21:43:20 +00005686 } else if (ret) {
5687 return ERR_PTR(ret);
5688 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005689 return block_rsv;
5690 }
5691
5692 ret = block_rsv_use_bytes(block_rsv, blocksize);
5693 if (!ret)
5694 return block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00005695 if (ret) {
5696 WARN_ON(1);
5697 ret = reserve_metadata_bytes(trans, root, block_rsv, blocksize,
5698 0);
5699 if (!ret) {
5700 spin_lock(&block_rsv->lock);
5701 block_rsv->size += blocksize;
5702 spin_unlock(&block_rsv->lock);
5703 return block_rsv;
5704 } else if (ret && block_rsv != global_rsv) {
5705 ret = block_rsv_use_bytes(global_rsv, blocksize);
5706 if (!ret)
5707 return global_rsv;
5708 }
5709 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005710
Yan, Zhengf0486c62010-05-16 10:46:25 -04005711 return ERR_PTR(-ENOSPC);
5712}
5713
5714static void unuse_block_rsv(struct btrfs_block_rsv *block_rsv, u32 blocksize)
5715{
5716 block_rsv_add_bytes(block_rsv, blocksize, 0);
5717 block_rsv_release_bytes(block_rsv, NULL, 0);
5718}
5719
Chris Masonfec577f2007-02-26 10:40:21 -05005720/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04005721 * finds a free extent and does all the dirty work required for allocation
5722 * returns the key for the extent through ins, and a tree buffer for
5723 * the first block of the extent through buf.
5724 *
Chris Masonfec577f2007-02-26 10:40:21 -05005725 * returns the tree buffer or NULL.
5726 */
Chris Mason5f39d392007-10-15 16:14:19 -04005727struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005728 struct btrfs_root *root, u32 blocksize,
5729 u64 parent, u64 root_objectid,
5730 struct btrfs_disk_key *key, int level,
5731 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05005732{
Chris Masone2fa7222007-03-12 16:22:34 -04005733 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005734 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04005735 struct extent_buffer *buf;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005736 u64 flags = 0;
5737 int ret;
Chris Masonfec577f2007-02-26 10:40:21 -05005738
Yan, Zhengf0486c62010-05-16 10:46:25 -04005739
5740 block_rsv = use_block_rsv(trans, root, blocksize);
5741 if (IS_ERR(block_rsv))
5742 return ERR_CAST(block_rsv);
5743
5744 ret = btrfs_reserve_extent(trans, root, blocksize, blocksize,
5745 empty_size, hint, (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05005746 if (ret) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005747 unuse_block_rsv(block_rsv, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04005748 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05005749 }
Chris Mason55c69072008-01-09 15:55:33 -05005750
Chris Mason4008c042009-02-12 14:09:45 -05005751 buf = btrfs_init_new_buffer(trans, root, ins.objectid,
5752 blocksize, level);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005753 BUG_ON(IS_ERR(buf));
5754
5755 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
5756 if (parent == 0)
5757 parent = ins.objectid;
5758 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
5759 } else
5760 BUG_ON(parent > 0);
5761
5762 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
5763 struct btrfs_delayed_extent_op *extent_op;
5764 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
5765 BUG_ON(!extent_op);
5766 if (key)
5767 memcpy(&extent_op->key, key, sizeof(extent_op->key));
5768 else
5769 memset(&extent_op->key, 0, sizeof(extent_op->key));
5770 extent_op->flags_to_set = flags;
5771 extent_op->update_key = 1;
5772 extent_op->update_flags = 1;
5773 extent_op->is_data = 0;
5774
5775 ret = btrfs_add_delayed_tree_ref(trans, ins.objectid,
5776 ins.offset, parent, root_objectid,
5777 level, BTRFS_ADD_DELAYED_EXTENT,
5778 extent_op);
5779 BUG_ON(ret);
5780 }
Chris Masonfec577f2007-02-26 10:40:21 -05005781 return buf;
5782}
Chris Masona28ec192007-03-06 20:08:01 -05005783
Yan Zheng2c47e6052009-06-27 21:07:35 -04005784struct walk_control {
5785 u64 refs[BTRFS_MAX_LEVEL];
5786 u64 flags[BTRFS_MAX_LEVEL];
5787 struct btrfs_key update_progress;
5788 int stage;
5789 int level;
5790 int shared_level;
5791 int update_ref;
5792 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005793 int reada_slot;
5794 int reada_count;
Yan Zheng2c47e6052009-06-27 21:07:35 -04005795};
5796
5797#define DROP_REFERENCE 1
5798#define UPDATE_BACKREF 2
5799
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005800static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
5801 struct btrfs_root *root,
5802 struct walk_control *wc,
5803 struct btrfs_path *path)
5804{
5805 u64 bytenr;
5806 u64 generation;
5807 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005808 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005809 u32 nritems;
5810 u32 blocksize;
5811 struct btrfs_key key;
5812 struct extent_buffer *eb;
5813 int ret;
5814 int slot;
5815 int nread = 0;
5816
5817 if (path->slots[wc->level] < wc->reada_slot) {
5818 wc->reada_count = wc->reada_count * 2 / 3;
5819 wc->reada_count = max(wc->reada_count, 2);
5820 } else {
5821 wc->reada_count = wc->reada_count * 3 / 2;
5822 wc->reada_count = min_t(int, wc->reada_count,
5823 BTRFS_NODEPTRS_PER_BLOCK(root));
5824 }
5825
5826 eb = path->nodes[wc->level];
5827 nritems = btrfs_header_nritems(eb);
5828 blocksize = btrfs_level_size(root, wc->level - 1);
5829
5830 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
5831 if (nread >= wc->reada_count)
5832 break;
5833
5834 cond_resched();
5835 bytenr = btrfs_node_blockptr(eb, slot);
5836 generation = btrfs_node_ptr_generation(eb, slot);
5837
5838 if (slot == path->slots[wc->level])
5839 goto reada;
5840
5841 if (wc->stage == UPDATE_BACKREF &&
5842 generation <= root->root_key.offset)
5843 continue;
5844
Yan, Zheng94fcca92009-10-09 09:25:16 -04005845 /* We don't lock the tree block, it's OK to be racy here */
5846 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
5847 &refs, &flags);
5848 BUG_ON(ret);
5849 BUG_ON(refs == 0);
5850
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005851 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005852 if (refs == 1)
5853 goto reada;
5854
Yan, Zheng94fcca92009-10-09 09:25:16 -04005855 if (wc->level == 1 &&
5856 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5857 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005858 if (!wc->update_ref ||
5859 generation <= root->root_key.offset)
5860 continue;
5861 btrfs_node_key_to_cpu(eb, &key, slot);
5862 ret = btrfs_comp_cpu_keys(&key,
5863 &wc->update_progress);
5864 if (ret < 0)
5865 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005866 } else {
5867 if (wc->level == 1 &&
5868 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5869 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005870 }
5871reada:
5872 ret = readahead_tree_block(root, bytenr, blocksize,
5873 generation);
5874 if (ret)
5875 break;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005876 nread++;
5877 }
5878 wc->reada_slot = slot;
5879}
5880
Chris Mason9aca1d52007-03-13 11:09:37 -04005881/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04005882 * hepler to process tree block while walking down the tree.
5883 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04005884 * when wc->stage == UPDATE_BACKREF, this function updates
5885 * back refs for pointers in the block.
5886 *
5887 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04005888 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04005889static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
5890 struct btrfs_root *root,
5891 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04005892 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04005893{
5894 int level = wc->level;
5895 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04005896 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
5897 int ret;
5898
5899 if (wc->stage == UPDATE_BACKREF &&
5900 btrfs_header_owner(eb) != root->root_key.objectid)
5901 return 1;
5902
5903 /*
5904 * when reference count of tree block is 1, it won't increase
5905 * again. once full backref flag is set, we never clear it.
5906 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04005907 if (lookup_info &&
5908 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
5909 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04005910 BUG_ON(!path->locks[level]);
5911 ret = btrfs_lookup_extent_info(trans, root,
5912 eb->start, eb->len,
5913 &wc->refs[level],
5914 &wc->flags[level]);
5915 BUG_ON(ret);
5916 BUG_ON(wc->refs[level] == 0);
5917 }
5918
Yan Zheng2c47e6052009-06-27 21:07:35 -04005919 if (wc->stage == DROP_REFERENCE) {
5920 if (wc->refs[level] > 1)
5921 return 1;
5922
5923 if (path->locks[level] && !wc->keep_locks) {
5924 btrfs_tree_unlock(eb);
5925 path->locks[level] = 0;
5926 }
5927 return 0;
5928 }
5929
5930 /* wc->stage == UPDATE_BACKREF */
5931 if (!(wc->flags[level] & flag)) {
5932 BUG_ON(!path->locks[level]);
5933 ret = btrfs_inc_ref(trans, root, eb, 1);
5934 BUG_ON(ret);
5935 ret = btrfs_dec_ref(trans, root, eb, 0);
5936 BUG_ON(ret);
5937 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
5938 eb->len, flag, 0);
5939 BUG_ON(ret);
5940 wc->flags[level] |= flag;
5941 }
5942
5943 /*
5944 * the block is shared by multiple trees, so it's not good to
5945 * keep the tree lock
5946 */
5947 if (path->locks[level] && level > 0) {
5948 btrfs_tree_unlock(eb);
5949 path->locks[level] = 0;
5950 }
5951 return 0;
5952}
5953
5954/*
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005955 * hepler to process tree block pointer.
5956 *
5957 * when wc->stage == DROP_REFERENCE, this function checks
5958 * reference count of the block pointed to. if the block
5959 * is shared and we need update back refs for the subtree
5960 * rooted at the block, this function changes wc->stage to
5961 * UPDATE_BACKREF. if the block is shared and there is no
5962 * need to update back, this function drops the reference
5963 * to the block.
5964 *
5965 * NOTE: return value 1 means we should stop walking down.
5966 */
5967static noinline int do_walk_down(struct btrfs_trans_handle *trans,
5968 struct btrfs_root *root,
5969 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04005970 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005971{
5972 u64 bytenr;
5973 u64 generation;
5974 u64 parent;
5975 u32 blocksize;
5976 struct btrfs_key key;
5977 struct extent_buffer *next;
5978 int level = wc->level;
5979 int reada = 0;
5980 int ret = 0;
5981
5982 generation = btrfs_node_ptr_generation(path->nodes[level],
5983 path->slots[level]);
5984 /*
5985 * if the lower level block was created before the snapshot
5986 * was created, we know there is no need to update back refs
5987 * for the subtree
5988 */
5989 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04005990 generation <= root->root_key.offset) {
5991 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005992 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005993 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005994
5995 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
5996 blocksize = btrfs_level_size(root, level - 1);
5997
5998 next = btrfs_find_tree_block(root, bytenr, blocksize);
5999 if (!next) {
6000 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
Miao Xie90d2c512010-03-25 12:37:12 +00006001 if (!next)
6002 return -ENOMEM;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006003 reada = 1;
6004 }
6005 btrfs_tree_lock(next);
6006 btrfs_set_lock_blocking(next);
6007
Yan, Zheng94fcca92009-10-09 09:25:16 -04006008 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
6009 &wc->refs[level - 1],
6010 &wc->flags[level - 1]);
6011 BUG_ON(ret);
6012 BUG_ON(wc->refs[level - 1] == 0);
6013 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006014
Yan, Zheng94fcca92009-10-09 09:25:16 -04006015 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006016 if (wc->refs[level - 1] > 1) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04006017 if (level == 1 &&
6018 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
6019 goto skip;
6020
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006021 if (!wc->update_ref ||
6022 generation <= root->root_key.offset)
6023 goto skip;
6024
6025 btrfs_node_key_to_cpu(path->nodes[level], &key,
6026 path->slots[level]);
6027 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
6028 if (ret < 0)
6029 goto skip;
6030
6031 wc->stage = UPDATE_BACKREF;
6032 wc->shared_level = level - 1;
6033 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04006034 } else {
6035 if (level == 1 &&
6036 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
6037 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006038 }
6039
6040 if (!btrfs_buffer_uptodate(next, generation)) {
6041 btrfs_tree_unlock(next);
6042 free_extent_buffer(next);
6043 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006044 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006045 }
6046
6047 if (!next) {
6048 if (reada && level == 1)
6049 reada_walk_down(trans, root, wc, path);
6050 next = read_tree_block(root, bytenr, blocksize, generation);
6051 btrfs_tree_lock(next);
6052 btrfs_set_lock_blocking(next);
6053 }
6054
6055 level--;
6056 BUG_ON(level != btrfs_header_level(next));
6057 path->nodes[level] = next;
6058 path->slots[level] = 0;
6059 path->locks[level] = 1;
6060 wc->level = level;
6061 if (wc->level == 1)
6062 wc->reada_slot = 0;
6063 return 0;
6064skip:
6065 wc->refs[level - 1] = 0;
6066 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006067 if (wc->stage == DROP_REFERENCE) {
6068 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
6069 parent = path->nodes[level]->start;
6070 } else {
6071 BUG_ON(root->root_key.objectid !=
6072 btrfs_header_owner(path->nodes[level]));
6073 parent = 0;
6074 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006075
Yan, Zheng94fcca92009-10-09 09:25:16 -04006076 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
6077 root->root_key.objectid, level - 1, 0);
6078 BUG_ON(ret);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006079 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006080 btrfs_tree_unlock(next);
6081 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04006082 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006083 return 1;
6084}
6085
6086/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04006087 * hepler to process tree block while walking up the tree.
6088 *
6089 * when wc->stage == DROP_REFERENCE, this function drops
6090 * reference count on the block.
6091 *
6092 * when wc->stage == UPDATE_BACKREF, this function changes
6093 * wc->stage back to DROP_REFERENCE if we changed wc->stage
6094 * to UPDATE_BACKREF previously while processing the block.
6095 *
6096 * NOTE: return value 1 means we should stop walking up.
6097 */
6098static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
6099 struct btrfs_root *root,
6100 struct btrfs_path *path,
6101 struct walk_control *wc)
6102{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006103 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006104 int level = wc->level;
6105 struct extent_buffer *eb = path->nodes[level];
6106 u64 parent = 0;
6107
6108 if (wc->stage == UPDATE_BACKREF) {
6109 BUG_ON(wc->shared_level < level);
6110 if (level < wc->shared_level)
6111 goto out;
6112
Yan Zheng2c47e6052009-06-27 21:07:35 -04006113 ret = find_next_key(path, level + 1, &wc->update_progress);
6114 if (ret > 0)
6115 wc->update_ref = 0;
6116
6117 wc->stage = DROP_REFERENCE;
6118 wc->shared_level = -1;
6119 path->slots[level] = 0;
6120
6121 /*
6122 * check reference count again if the block isn't locked.
6123 * we should start walking down the tree again if reference
6124 * count is one.
6125 */
6126 if (!path->locks[level]) {
6127 BUG_ON(level == 0);
6128 btrfs_tree_lock(eb);
6129 btrfs_set_lock_blocking(eb);
6130 path->locks[level] = 1;
6131
6132 ret = btrfs_lookup_extent_info(trans, root,
6133 eb->start, eb->len,
6134 &wc->refs[level],
6135 &wc->flags[level]);
6136 BUG_ON(ret);
6137 BUG_ON(wc->refs[level] == 0);
6138 if (wc->refs[level] == 1) {
6139 btrfs_tree_unlock(eb);
6140 path->locks[level] = 0;
6141 return 1;
6142 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006143 }
6144 }
6145
6146 /* wc->stage == DROP_REFERENCE */
6147 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
6148
6149 if (wc->refs[level] == 1) {
6150 if (level == 0) {
6151 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6152 ret = btrfs_dec_ref(trans, root, eb, 1);
6153 else
6154 ret = btrfs_dec_ref(trans, root, eb, 0);
6155 BUG_ON(ret);
6156 }
6157 /* make block locked assertion in clean_tree_block happy */
6158 if (!path->locks[level] &&
6159 btrfs_header_generation(eb) == trans->transid) {
6160 btrfs_tree_lock(eb);
6161 btrfs_set_lock_blocking(eb);
6162 path->locks[level] = 1;
6163 }
6164 clean_tree_block(trans, root, eb);
6165 }
6166
6167 if (eb == root->node) {
6168 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6169 parent = eb->start;
6170 else
6171 BUG_ON(root->root_key.objectid !=
6172 btrfs_header_owner(eb));
6173 } else {
6174 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6175 parent = path->nodes[level + 1]->start;
6176 else
6177 BUG_ON(root->root_key.objectid !=
6178 btrfs_header_owner(path->nodes[level + 1]));
6179 }
6180
Yan, Zhengf0486c62010-05-16 10:46:25 -04006181 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006182out:
6183 wc->refs[level] = 0;
6184 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006185 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006186}
6187
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006188static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
6189 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04006190 struct btrfs_path *path,
6191 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04006192{
Yan Zheng2c47e6052009-06-27 21:07:35 -04006193 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006194 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006195 int ret;
6196
Yan Zheng2c47e6052009-06-27 21:07:35 -04006197 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04006198 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006199 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04006200 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006201
Yan Zheng2c47e6052009-06-27 21:07:35 -04006202 if (level == 0)
6203 break;
6204
Yan, Zheng7a7965f2010-02-01 02:41:17 +00006205 if (path->slots[level] >=
6206 btrfs_header_nritems(path->nodes[level]))
6207 break;
6208
Yan, Zheng94fcca92009-10-09 09:25:16 -04006209 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006210 if (ret > 0) {
6211 path->slots[level]++;
6212 continue;
Miao Xie90d2c512010-03-25 12:37:12 +00006213 } else if (ret < 0)
6214 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006215 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006216 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04006217 return 0;
6218}
6219
Chris Masond3977122009-01-05 21:25:51 -05006220static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05006221 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04006222 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04006223 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05006224{
Yan Zheng2c47e6052009-06-27 21:07:35 -04006225 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05006226 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04006227
Yan Zheng2c47e6052009-06-27 21:07:35 -04006228 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
6229 while (level < max_level && path->nodes[level]) {
6230 wc->level = level;
6231 if (path->slots[level] + 1 <
6232 btrfs_header_nritems(path->nodes[level])) {
6233 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05006234 return 0;
6235 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006236 ret = walk_up_proc(trans, root, path, wc);
6237 if (ret > 0)
6238 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05006239
Yan Zheng2c47e6052009-06-27 21:07:35 -04006240 if (path->locks[level]) {
6241 btrfs_tree_unlock(path->nodes[level]);
6242 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006243 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006244 free_extent_buffer(path->nodes[level]);
6245 path->nodes[level] = NULL;
6246 level++;
Chris Mason20524f02007-03-10 06:35:47 -05006247 }
6248 }
6249 return 1;
6250}
6251
Chris Mason9aca1d52007-03-13 11:09:37 -04006252/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04006253 * drop a subvolume tree.
6254 *
6255 * this function traverses the tree freeing any blocks that only
6256 * referenced by the tree.
6257 *
6258 * when a shared tree block is found. this function decreases its
6259 * reference count by one. if update_ref is true, this function
6260 * also make sure backrefs for the shared block and all lower level
6261 * blocks are properly updated.
Chris Mason9aca1d52007-03-13 11:09:37 -04006262 */
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006263int btrfs_drop_snapshot(struct btrfs_root *root,
6264 struct btrfs_block_rsv *block_rsv, int update_ref)
Chris Mason20524f02007-03-10 06:35:47 -05006265{
Chris Mason5caf2a02007-04-02 11:20:42 -04006266 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006267 struct btrfs_trans_handle *trans;
6268 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04006269 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006270 struct walk_control *wc;
6271 struct btrfs_key key;
6272 int err = 0;
6273 int ret;
6274 int level;
Chris Mason20524f02007-03-10 06:35:47 -05006275
Chris Mason5caf2a02007-04-02 11:20:42 -04006276 path = btrfs_alloc_path();
6277 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05006278
Yan Zheng2c47e6052009-06-27 21:07:35 -04006279 wc = kzalloc(sizeof(*wc), GFP_NOFS);
6280 BUG_ON(!wc);
6281
Yan, Zhenga22285a2010-05-16 10:48:46 -04006282 trans = btrfs_start_transaction(tree_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00006283 BUG_ON(IS_ERR(trans));
6284
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006285 if (block_rsv)
6286 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006287
Chris Mason9f3a7422007-08-07 15:52:19 -04006288 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006289 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006290 path->nodes[level] = btrfs_lock_root_node(root);
6291 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04006292 path->slots[level] = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006293 path->locks[level] = 1;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006294 memset(&wc->update_progress, 0,
6295 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04006296 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04006297 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006298 memcpy(&wc->update_progress, &key,
6299 sizeof(wc->update_progress));
6300
Chris Mason6702ed42007-08-07 16:15:09 -04006301 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006302 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04006303 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006304 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6305 path->lowest_level = 0;
6306 if (ret < 0) {
6307 err = ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04006308 goto out;
6309 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006310 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006311
Chris Mason7d9eb122008-07-08 14:19:17 -04006312 /*
6313 * unlock our path, this is safe because only this
6314 * function is allowed to delete this snapshot
6315 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006316 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04006317
Yan Zheng2c47e6052009-06-27 21:07:35 -04006318 level = btrfs_header_level(root->node);
6319 while (1) {
6320 btrfs_tree_lock(path->nodes[level]);
6321 btrfs_set_lock_blocking(path->nodes[level]);
6322
6323 ret = btrfs_lookup_extent_info(trans, root,
6324 path->nodes[level]->start,
6325 path->nodes[level]->len,
6326 &wc->refs[level],
6327 &wc->flags[level]);
6328 BUG_ON(ret);
6329 BUG_ON(wc->refs[level] == 0);
6330
6331 if (level == root_item->drop_level)
6332 break;
6333
6334 btrfs_tree_unlock(path->nodes[level]);
6335 WARN_ON(wc->refs[level] != 1);
6336 level--;
6337 }
6338 }
6339
6340 wc->level = level;
6341 wc->shared_level = -1;
6342 wc->stage = DROP_REFERENCE;
6343 wc->update_ref = update_ref;
6344 wc->keep_locks = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006345 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006346
6347 while (1) {
6348 ret = walk_down_tree(trans, root, path, wc);
6349 if (ret < 0) {
6350 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04006351 break;
6352 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006353
6354 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
6355 if (ret < 0) {
6356 err = ret;
6357 break;
6358 }
6359
6360 if (ret > 0) {
6361 BUG_ON(wc->stage != DROP_REFERENCE);
6362 break;
6363 }
6364
6365 if (wc->stage == DROP_REFERENCE) {
6366 level = wc->level;
6367 btrfs_node_key(path->nodes[level],
6368 &root_item->drop_progress,
6369 path->slots[level]);
6370 root_item->drop_level = level;
6371 }
6372
6373 BUG_ON(wc->level == 0);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006374 if (btrfs_should_end_transaction(trans, tree_root)) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006375 ret = btrfs_update_root(trans, tree_root,
6376 &root->root_key,
6377 root_item);
6378 BUG_ON(ret);
6379
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006380 btrfs_end_transaction_throttle(trans, tree_root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006381 trans = btrfs_start_transaction(tree_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00006382 BUG_ON(IS_ERR(trans));
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006383 if (block_rsv)
6384 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04006385 }
Chris Mason20524f02007-03-10 06:35:47 -05006386 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006387 btrfs_release_path(root, path);
6388 BUG_ON(err);
6389
6390 ret = btrfs_del_root(trans, tree_root, &root->root_key);
6391 BUG_ON(ret);
6392
Yan, Zheng76dda932009-09-21 16:00:26 -04006393 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
6394 ret = btrfs_find_last_root(tree_root, root->root_key.objectid,
6395 NULL, NULL);
6396 BUG_ON(ret < 0);
6397 if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05006398 /* if we fail to delete the orphan item this time
6399 * around, it'll get picked up the next time.
6400 *
6401 * The most common failure here is just -ENOENT.
6402 */
6403 btrfs_del_orphan_item(trans, tree_root,
6404 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04006405 }
6406 }
6407
6408 if (root->in_radix) {
6409 btrfs_free_fs_root(tree_root->fs_info, root);
6410 } else {
6411 free_extent_buffer(root->node);
6412 free_extent_buffer(root->commit_root);
6413 kfree(root);
6414 }
Chris Mason9f3a7422007-08-07 15:52:19 -04006415out:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006416 btrfs_end_transaction_throttle(trans, tree_root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006417 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04006418 btrfs_free_path(path);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006419 return err;
Chris Mason20524f02007-03-10 06:35:47 -05006420}
Chris Mason9078a3e2007-04-26 16:46:15 -04006421
Yan Zheng2c47e6052009-06-27 21:07:35 -04006422/*
6423 * drop subtree rooted at tree block 'node'.
6424 *
6425 * NOTE: this function will unlock and release tree block 'node'
6426 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04006427int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
6428 struct btrfs_root *root,
6429 struct extent_buffer *node,
6430 struct extent_buffer *parent)
6431{
6432 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006433 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006434 int level;
6435 int parent_level;
6436 int ret = 0;
6437 int wret;
6438
Yan Zheng2c47e6052009-06-27 21:07:35 -04006439 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
6440
Yan Zhengf82d02d2008-10-29 14:49:05 -04006441 path = btrfs_alloc_path();
6442 BUG_ON(!path);
6443
Yan Zheng2c47e6052009-06-27 21:07:35 -04006444 wc = kzalloc(sizeof(*wc), GFP_NOFS);
6445 BUG_ON(!wc);
6446
Chris Masonb9447ef2009-03-09 11:45:38 -04006447 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006448 parent_level = btrfs_header_level(parent);
6449 extent_buffer_get(parent);
6450 path->nodes[parent_level] = parent;
6451 path->slots[parent_level] = btrfs_header_nritems(parent);
6452
Chris Masonb9447ef2009-03-09 11:45:38 -04006453 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006454 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006455 path->nodes[level] = node;
6456 path->slots[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006457 path->locks[level] = 1;
6458
6459 wc->refs[parent_level] = 1;
6460 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
6461 wc->level = level;
6462 wc->shared_level = -1;
6463 wc->stage = DROP_REFERENCE;
6464 wc->update_ref = 0;
6465 wc->keep_locks = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006466 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006467
6468 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006469 wret = walk_down_tree(trans, root, path, wc);
6470 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04006471 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006472 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006473 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04006474
Yan Zheng2c47e6052009-06-27 21:07:35 -04006475 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006476 if (wret < 0)
6477 ret = wret;
6478 if (wret != 0)
6479 break;
6480 }
6481
Yan Zheng2c47e6052009-06-27 21:07:35 -04006482 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006483 btrfs_free_path(path);
6484 return ret;
6485}
6486
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006487#if 0
Chris Mason8e7bf942008-04-28 09:02:36 -04006488static unsigned long calc_ra(unsigned long start, unsigned long last,
6489 unsigned long nr)
6490{
6491 return min(last, start + nr - 1);
6492}
6493
Chris Masond3977122009-01-05 21:25:51 -05006494static noinline int relocate_inode_pages(struct inode *inode, u64 start,
Chris Mason98ed5172008-01-03 10:01:48 -05006495 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05006496{
6497 u64 page_start;
6498 u64 page_end;
Zheng Yan1a40e232008-09-26 10:09:34 -04006499 unsigned long first_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05006500 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05006501 unsigned long i;
6502 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05006503 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05006504 struct file_ra_state *ra;
Chris Mason3eaa2882008-07-24 11:57:52 -04006505 struct btrfs_ordered_extent *ordered;
Zheng Yan1a40e232008-09-26 10:09:34 -04006506 unsigned int total_read = 0;
6507 unsigned int total_dirty = 0;
6508 int ret = 0;
Chris Mason4313b392008-01-03 09:08:48 -05006509
6510 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00006511 if (!ra)
6512 return -ENOMEM;
Chris Masonedbd8d42007-12-21 16:27:24 -05006513
6514 mutex_lock(&inode->i_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04006515 first_index = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05006516 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
6517
Zheng Yan1a40e232008-09-26 10:09:34 -04006518 /* make sure the dirty trick played by the caller work */
6519 ret = invalidate_inode_pages2_range(inode->i_mapping,
6520 first_index, last_index);
6521 if (ret)
6522 goto out_unlock;
Chris Mason8e7bf942008-04-28 09:02:36 -04006523
Chris Mason4313b392008-01-03 09:08:48 -05006524 file_ra_state_init(ra, inode->i_mapping);
Chris Masonedbd8d42007-12-21 16:27:24 -05006525
Zheng Yan1a40e232008-09-26 10:09:34 -04006526 for (i = first_index ; i <= last_index; i++) {
6527 if (total_read % ra->ra_pages == 0) {
Chris Mason8e7bf942008-04-28 09:02:36 -04006528 btrfs_force_ra(inode->i_mapping, ra, NULL, i,
Zheng Yan1a40e232008-09-26 10:09:34 -04006529 calc_ra(i, last_index, ra->ra_pages));
Chris Mason8e7bf942008-04-28 09:02:36 -04006530 }
6531 total_read++;
Chris Mason3eaa2882008-07-24 11:57:52 -04006532again:
6533 if (((u64)i << PAGE_CACHE_SHIFT) > i_size_read(inode))
Zheng Yan1a40e232008-09-26 10:09:34 -04006534 BUG_ON(1);
Chris Masonedbd8d42007-12-21 16:27:24 -05006535 page = grab_cache_page(inode->i_mapping, i);
Chris Masona061fc82008-05-07 11:43:44 -04006536 if (!page) {
Zheng Yan1a40e232008-09-26 10:09:34 -04006537 ret = -ENOMEM;
Chris Masonedbd8d42007-12-21 16:27:24 -05006538 goto out_unlock;
Chris Masona061fc82008-05-07 11:43:44 -04006539 }
Chris Masonedbd8d42007-12-21 16:27:24 -05006540 if (!PageUptodate(page)) {
6541 btrfs_readpage(NULL, page);
6542 lock_page(page);
6543 if (!PageUptodate(page)) {
6544 unlock_page(page);
6545 page_cache_release(page);
Zheng Yan1a40e232008-09-26 10:09:34 -04006546 ret = -EIO;
Chris Masonedbd8d42007-12-21 16:27:24 -05006547 goto out_unlock;
6548 }
6549 }
Chris Masonec44a352008-04-28 15:29:52 -04006550 wait_on_page_writeback(page);
Chris Mason3eaa2882008-07-24 11:57:52 -04006551
Chris Masonedbd8d42007-12-21 16:27:24 -05006552 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
6553 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05006554 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05006555
Chris Mason3eaa2882008-07-24 11:57:52 -04006556 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6557 if (ordered) {
6558 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
6559 unlock_page(page);
6560 page_cache_release(page);
6561 btrfs_start_ordered_extent(inode, ordered, 1);
6562 btrfs_put_ordered_extent(ordered);
6563 goto again;
6564 }
6565 set_page_extent_mapped(page);
6566
Zheng Yan1a40e232008-09-26 10:09:34 -04006567 if (i == first_index)
6568 set_extent_bits(io_tree, page_start, page_end,
6569 EXTENT_BOUNDARY, GFP_NOFS);
Yan Zheng1f80e4d2008-12-19 10:59:04 -05006570 btrfs_set_extent_delalloc(inode, page_start, page_end);
Zheng Yan1a40e232008-09-26 10:09:34 -04006571
Chris Masona061fc82008-05-07 11:43:44 -04006572 set_page_dirty(page);
Zheng Yan1a40e232008-09-26 10:09:34 -04006573 total_dirty++;
Chris Masonedbd8d42007-12-21 16:27:24 -05006574
Chris Masond1310b22008-01-24 16:13:08 -05006575 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05006576 unlock_page(page);
6577 page_cache_release(page);
6578 }
6579
6580out_unlock:
Chris Masonec44a352008-04-28 15:29:52 -04006581 kfree(ra);
Chris Masonedbd8d42007-12-21 16:27:24 -05006582 mutex_unlock(&inode->i_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04006583 balance_dirty_pages_ratelimited_nr(inode->i_mapping, total_dirty);
Chris Masonbf4ef672008-05-08 13:26:18 -04006584 return ret;
6585}
6586
Chris Masond3977122009-01-05 21:25:51 -05006587static noinline int relocate_data_extent(struct inode *reloc_inode,
Zheng Yan1a40e232008-09-26 10:09:34 -04006588 struct btrfs_key *extent_key,
6589 u64 offset)
Chris Masonedbd8d42007-12-21 16:27:24 -05006590{
Zheng Yan1a40e232008-09-26 10:09:34 -04006591 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
6592 struct extent_map_tree *em_tree = &BTRFS_I(reloc_inode)->extent_tree;
6593 struct extent_map *em;
Yan Zheng66435582008-10-30 14:19:50 -04006594 u64 start = extent_key->objectid - offset;
6595 u64 end = start + extent_key->offset - 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04006596
6597 em = alloc_extent_map(GFP_NOFS);
Tsutomu Itohc26a9202011-02-14 00:45:29 +00006598 BUG_ON(!em);
Zheng Yan1a40e232008-09-26 10:09:34 -04006599
Yan Zheng66435582008-10-30 14:19:50 -04006600 em->start = start;
Zheng Yan1a40e232008-09-26 10:09:34 -04006601 em->len = extent_key->offset;
Chris Masonc8b97812008-10-29 14:49:59 -04006602 em->block_len = extent_key->offset;
Zheng Yan1a40e232008-09-26 10:09:34 -04006603 em->block_start = extent_key->objectid;
6604 em->bdev = root->fs_info->fs_devices->latest_bdev;
6605 set_bit(EXTENT_FLAG_PINNED, &em->flags);
6606
6607 /* setup extent map to cheat btrfs_readpage */
Yan Zheng66435582008-10-30 14:19:50 -04006608 lock_extent(&BTRFS_I(reloc_inode)->io_tree, start, end, GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04006609 while (1) {
6610 int ret;
Chris Mason890871b2009-09-02 16:24:52 -04006611 write_lock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04006612 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04006613 write_unlock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04006614 if (ret != -EEXIST) {
6615 free_extent_map(em);
6616 break;
6617 }
Yan Zheng66435582008-10-30 14:19:50 -04006618 btrfs_drop_extent_cache(reloc_inode, start, end, 0);
Zheng Yan1a40e232008-09-26 10:09:34 -04006619 }
Yan Zheng66435582008-10-30 14:19:50 -04006620 unlock_extent(&BTRFS_I(reloc_inode)->io_tree, start, end, GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04006621
Yan Zheng66435582008-10-30 14:19:50 -04006622 return relocate_inode_pages(reloc_inode, start, extent_key->offset);
Zheng Yan1a40e232008-09-26 10:09:34 -04006623}
6624
6625struct btrfs_ref_path {
6626 u64 extent_start;
6627 u64 nodes[BTRFS_MAX_LEVEL];
6628 u64 root_objectid;
6629 u64 root_generation;
6630 u64 owner_objectid;
Zheng Yan1a40e232008-09-26 10:09:34 -04006631 u32 num_refs;
6632 int lowest_level;
6633 int current_level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006634 int shared_level;
6635
6636 struct btrfs_key node_keys[BTRFS_MAX_LEVEL];
6637 u64 new_nodes[BTRFS_MAX_LEVEL];
Zheng Yan1a40e232008-09-26 10:09:34 -04006638};
6639
6640struct disk_extent {
Chris Masonc8b97812008-10-29 14:49:59 -04006641 u64 ram_bytes;
Zheng Yan1a40e232008-09-26 10:09:34 -04006642 u64 disk_bytenr;
6643 u64 disk_num_bytes;
6644 u64 offset;
6645 u64 num_bytes;
Chris Masonc8b97812008-10-29 14:49:59 -04006646 u8 compression;
6647 u8 encryption;
6648 u16 other_encoding;
Zheng Yan1a40e232008-09-26 10:09:34 -04006649};
6650
6651static int is_cowonly_root(u64 root_objectid)
6652{
6653 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID ||
6654 root_objectid == BTRFS_EXTENT_TREE_OBJECTID ||
6655 root_objectid == BTRFS_CHUNK_TREE_OBJECTID ||
6656 root_objectid == BTRFS_DEV_TREE_OBJECTID ||
Yan Zheng0403e472008-12-10 20:32:51 -05006657 root_objectid == BTRFS_TREE_LOG_OBJECTID ||
6658 root_objectid == BTRFS_CSUM_TREE_OBJECTID)
Zheng Yan1a40e232008-09-26 10:09:34 -04006659 return 1;
6660 return 0;
6661}
6662
Chris Masond3977122009-01-05 21:25:51 -05006663static noinline int __next_ref_path(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04006664 struct btrfs_root *extent_root,
6665 struct btrfs_ref_path *ref_path,
6666 int first_time)
6667{
6668 struct extent_buffer *leaf;
6669 struct btrfs_path *path;
Chris Mason4313b392008-01-03 09:08:48 -05006670 struct btrfs_extent_ref *ref;
Chris Masonedbd8d42007-12-21 16:27:24 -05006671 struct btrfs_key key;
6672 struct btrfs_key found_key;
Zheng Yan1a40e232008-09-26 10:09:34 -04006673 u64 bytenr;
Chris Masonedbd8d42007-12-21 16:27:24 -05006674 u32 nritems;
Zheng Yan1a40e232008-09-26 10:09:34 -04006675 int level;
6676 int ret = 1;
Chris Masonedbd8d42007-12-21 16:27:24 -05006677
Zheng Yan1a40e232008-09-26 10:09:34 -04006678 path = btrfs_alloc_path();
6679 if (!path)
6680 return -ENOMEM;
6681
Zheng Yan1a40e232008-09-26 10:09:34 -04006682 if (first_time) {
6683 ref_path->lowest_level = -1;
6684 ref_path->current_level = -1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006685 ref_path->shared_level = -1;
Zheng Yan1a40e232008-09-26 10:09:34 -04006686 goto walk_up;
Chris Masona061fc82008-05-07 11:43:44 -04006687 }
Zheng Yan1a40e232008-09-26 10:09:34 -04006688walk_down:
6689 level = ref_path->current_level - 1;
6690 while (level >= -1) {
6691 u64 parent;
6692 if (level < ref_path->lowest_level)
6693 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05006694
Chris Masond3977122009-01-05 21:25:51 -05006695 if (level >= 0)
Zheng Yan1a40e232008-09-26 10:09:34 -04006696 bytenr = ref_path->nodes[level];
Chris Masond3977122009-01-05 21:25:51 -05006697 else
Zheng Yan1a40e232008-09-26 10:09:34 -04006698 bytenr = ref_path->extent_start;
Zheng Yan1a40e232008-09-26 10:09:34 -04006699 BUG_ON(bytenr == 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006700
Zheng Yan1a40e232008-09-26 10:09:34 -04006701 parent = ref_path->nodes[level + 1];
6702 ref_path->nodes[level + 1] = 0;
6703 ref_path->current_level = level;
6704 BUG_ON(parent == 0);
6705
6706 key.objectid = bytenr;
6707 key.offset = parent + 1;
6708 key.type = BTRFS_EXTENT_REF_KEY;
6709
6710 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006711 if (ret < 0)
6712 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04006713 BUG_ON(ret == 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006714
Chris Masonedbd8d42007-12-21 16:27:24 -05006715 leaf = path->nodes[0];
6716 nritems = btrfs_header_nritems(leaf);
Zheng Yan1a40e232008-09-26 10:09:34 -04006717 if (path->slots[0] >= nritems) {
Chris Masona061fc82008-05-07 11:43:44 -04006718 ret = btrfs_next_leaf(extent_root, path);
Chris Masona061fc82008-05-07 11:43:44 -04006719 if (ret < 0)
6720 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04006721 if (ret > 0)
6722 goto next;
Chris Masonbf4ef672008-05-08 13:26:18 -04006723 leaf = path->nodes[0];
Chris Masona061fc82008-05-07 11:43:44 -04006724 }
Chris Masonedbd8d42007-12-21 16:27:24 -05006725
6726 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Zheng Yan1a40e232008-09-26 10:09:34 -04006727 if (found_key.objectid == bytenr &&
Yan Zhengf82d02d2008-10-29 14:49:05 -04006728 found_key.type == BTRFS_EXTENT_REF_KEY) {
6729 if (level < ref_path->shared_level)
6730 ref_path->shared_level = level;
Zheng Yan1a40e232008-09-26 10:09:34 -04006731 goto found;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006732 }
Zheng Yan1a40e232008-09-26 10:09:34 -04006733next:
6734 level--;
6735 btrfs_release_path(extent_root, path);
Yan Zhengd899e052008-10-30 14:25:28 -04006736 cond_resched();
Zheng Yan1a40e232008-09-26 10:09:34 -04006737 }
6738 /* reached lowest level */
6739 ret = 1;
6740 goto out;
6741walk_up:
6742 level = ref_path->current_level;
6743 while (level < BTRFS_MAX_LEVEL - 1) {
6744 u64 ref_objectid;
Chris Masond3977122009-01-05 21:25:51 -05006745
6746 if (level >= 0)
Zheng Yan1a40e232008-09-26 10:09:34 -04006747 bytenr = ref_path->nodes[level];
Chris Masond3977122009-01-05 21:25:51 -05006748 else
Zheng Yan1a40e232008-09-26 10:09:34 -04006749 bytenr = ref_path->extent_start;
Chris Masond3977122009-01-05 21:25:51 -05006750
Zheng Yan1a40e232008-09-26 10:09:34 -04006751 BUG_ON(bytenr == 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006752
Zheng Yan1a40e232008-09-26 10:09:34 -04006753 key.objectid = bytenr;
6754 key.offset = 0;
6755 key.type = BTRFS_EXTENT_REF_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05006756
Zheng Yan1a40e232008-09-26 10:09:34 -04006757 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 0);
6758 if (ret < 0)
Chris Masonedbd8d42007-12-21 16:27:24 -05006759 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04006760
6761 leaf = path->nodes[0];
6762 nritems = btrfs_header_nritems(leaf);
6763 if (path->slots[0] >= nritems) {
6764 ret = btrfs_next_leaf(extent_root, path);
6765 if (ret < 0)
6766 goto out;
6767 if (ret > 0) {
6768 /* the extent was freed by someone */
6769 if (ref_path->lowest_level == level)
6770 goto out;
6771 btrfs_release_path(extent_root, path);
6772 goto walk_down;
6773 }
6774 leaf = path->nodes[0];
6775 }
6776
6777 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6778 if (found_key.objectid != bytenr ||
6779 found_key.type != BTRFS_EXTENT_REF_KEY) {
6780 /* the extent was freed by someone */
6781 if (ref_path->lowest_level == level) {
6782 ret = 1;
6783 goto out;
6784 }
6785 btrfs_release_path(extent_root, path);
6786 goto walk_down;
6787 }
6788found:
6789 ref = btrfs_item_ptr(leaf, path->slots[0],
6790 struct btrfs_extent_ref);
6791 ref_objectid = btrfs_ref_objectid(leaf, ref);
6792 if (ref_objectid < BTRFS_FIRST_FREE_OBJECTID) {
6793 if (first_time) {
6794 level = (int)ref_objectid;
6795 BUG_ON(level >= BTRFS_MAX_LEVEL);
6796 ref_path->lowest_level = level;
6797 ref_path->current_level = level;
6798 ref_path->nodes[level] = bytenr;
6799 } else {
6800 WARN_ON(ref_objectid != level);
6801 }
6802 } else {
6803 WARN_ON(level != -1);
6804 }
6805 first_time = 0;
6806
6807 if (ref_path->lowest_level == level) {
6808 ref_path->owner_objectid = ref_objectid;
Zheng Yan1a40e232008-09-26 10:09:34 -04006809 ref_path->num_refs = btrfs_ref_num_refs(leaf, ref);
6810 }
6811
6812 /*
6813 * the block is tree root or the block isn't in reference
6814 * counted tree.
6815 */
6816 if (found_key.objectid == found_key.offset ||
6817 is_cowonly_root(btrfs_ref_root(leaf, ref))) {
6818 ref_path->root_objectid = btrfs_ref_root(leaf, ref);
6819 ref_path->root_generation =
6820 btrfs_ref_generation(leaf, ref);
6821 if (level < 0) {
6822 /* special reference from the tree log */
6823 ref_path->nodes[0] = found_key.offset;
6824 ref_path->current_level = 0;
6825 }
6826 ret = 0;
6827 goto out;
6828 }
6829
6830 level++;
6831 BUG_ON(ref_path->nodes[level] != 0);
6832 ref_path->nodes[level] = found_key.offset;
6833 ref_path->current_level = level;
6834
6835 /*
6836 * the reference was created in the running transaction,
6837 * no need to continue walking up.
6838 */
6839 if (btrfs_ref_generation(leaf, ref) == trans->transid) {
6840 ref_path->root_objectid = btrfs_ref_root(leaf, ref);
6841 ref_path->root_generation =
6842 btrfs_ref_generation(leaf, ref);
6843 ret = 0;
6844 goto out;
6845 }
6846
6847 btrfs_release_path(extent_root, path);
Yan Zhengd899e052008-10-30 14:25:28 -04006848 cond_resched();
Zheng Yan1a40e232008-09-26 10:09:34 -04006849 }
6850 /* reached max tree level, but no tree root found. */
6851 BUG();
6852out:
Zheng Yan1a40e232008-09-26 10:09:34 -04006853 btrfs_free_path(path);
6854 return ret;
6855}
6856
6857static int btrfs_first_ref_path(struct btrfs_trans_handle *trans,
6858 struct btrfs_root *extent_root,
6859 struct btrfs_ref_path *ref_path,
6860 u64 extent_start)
6861{
6862 memset(ref_path, 0, sizeof(*ref_path));
6863 ref_path->extent_start = extent_start;
6864
6865 return __next_ref_path(trans, extent_root, ref_path, 1);
6866}
6867
6868static int btrfs_next_ref_path(struct btrfs_trans_handle *trans,
6869 struct btrfs_root *extent_root,
6870 struct btrfs_ref_path *ref_path)
6871{
6872 return __next_ref_path(trans, extent_root, ref_path, 0);
6873}
6874
Chris Masond3977122009-01-05 21:25:51 -05006875static noinline int get_new_locations(struct inode *reloc_inode,
Zheng Yan1a40e232008-09-26 10:09:34 -04006876 struct btrfs_key *extent_key,
6877 u64 offset, int no_fragment,
6878 struct disk_extent **extents,
6879 int *nr_extents)
6880{
6881 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
6882 struct btrfs_path *path;
6883 struct btrfs_file_extent_item *fi;
6884 struct extent_buffer *leaf;
6885 struct disk_extent *exts = *extents;
6886 struct btrfs_key found_key;
6887 u64 cur_pos;
6888 u64 last_byte;
6889 u32 nritems;
6890 int nr = 0;
6891 int max = *nr_extents;
6892 int ret;
6893
6894 WARN_ON(!no_fragment && *extents);
6895 if (!exts) {
6896 max = 1;
6897 exts = kmalloc(sizeof(*exts) * max, GFP_NOFS);
6898 if (!exts)
6899 return -ENOMEM;
6900 }
6901
6902 path = btrfs_alloc_path();
6903 BUG_ON(!path);
6904
6905 cur_pos = extent_key->objectid - offset;
6906 last_byte = extent_key->objectid + extent_key->offset;
6907 ret = btrfs_lookup_file_extent(NULL, root, path, reloc_inode->i_ino,
6908 cur_pos, 0);
6909 if (ret < 0)
6910 goto out;
6911 if (ret > 0) {
6912 ret = -ENOENT;
6913 goto out;
6914 }
6915
6916 while (1) {
6917 leaf = path->nodes[0];
6918 nritems = btrfs_header_nritems(leaf);
6919 if (path->slots[0] >= nritems) {
6920 ret = btrfs_next_leaf(root, path);
6921 if (ret < 0)
6922 goto out;
6923 if (ret > 0)
6924 break;
6925 leaf = path->nodes[0];
6926 }
6927
6928 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6929 if (found_key.offset != cur_pos ||
6930 found_key.type != BTRFS_EXTENT_DATA_KEY ||
6931 found_key.objectid != reloc_inode->i_ino)
6932 break;
6933
6934 fi = btrfs_item_ptr(leaf, path->slots[0],
6935 struct btrfs_file_extent_item);
6936 if (btrfs_file_extent_type(leaf, fi) !=
6937 BTRFS_FILE_EXTENT_REG ||
6938 btrfs_file_extent_disk_bytenr(leaf, fi) == 0)
6939 break;
6940
6941 if (nr == max) {
6942 struct disk_extent *old = exts;
6943 max *= 2;
6944 exts = kzalloc(sizeof(*exts) * max, GFP_NOFS);
6945 memcpy(exts, old, sizeof(*exts) * nr);
6946 if (old != *extents)
6947 kfree(old);
6948 }
6949
6950 exts[nr].disk_bytenr =
6951 btrfs_file_extent_disk_bytenr(leaf, fi);
6952 exts[nr].disk_num_bytes =
6953 btrfs_file_extent_disk_num_bytes(leaf, fi);
6954 exts[nr].offset = btrfs_file_extent_offset(leaf, fi);
6955 exts[nr].num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
Chris Masonc8b97812008-10-29 14:49:59 -04006956 exts[nr].ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
6957 exts[nr].compression = btrfs_file_extent_compression(leaf, fi);
6958 exts[nr].encryption = btrfs_file_extent_encryption(leaf, fi);
6959 exts[nr].other_encoding = btrfs_file_extent_other_encoding(leaf,
6960 fi);
Yan Zhengd899e052008-10-30 14:25:28 -04006961 BUG_ON(exts[nr].offset > 0);
6962 BUG_ON(exts[nr].compression || exts[nr].encryption);
6963 BUG_ON(exts[nr].num_bytes != exts[nr].disk_num_bytes);
Zheng Yan1a40e232008-09-26 10:09:34 -04006964
6965 cur_pos += exts[nr].num_bytes;
6966 nr++;
6967
6968 if (cur_pos + offset >= last_byte)
6969 break;
6970
6971 if (no_fragment) {
6972 ret = 1;
6973 goto out;
6974 }
6975 path->slots[0]++;
6976 }
6977
Yan Zheng1f80e4d2008-12-19 10:59:04 -05006978 BUG_ON(cur_pos + offset > last_byte);
Zheng Yan1a40e232008-09-26 10:09:34 -04006979 if (cur_pos + offset < last_byte) {
6980 ret = -ENOENT;
6981 goto out;
Chris Masonedbd8d42007-12-21 16:27:24 -05006982 }
6983 ret = 0;
6984out:
Zheng Yan1a40e232008-09-26 10:09:34 -04006985 btrfs_free_path(path);
6986 if (ret) {
6987 if (exts != *extents)
6988 kfree(exts);
6989 } else {
6990 *extents = exts;
6991 *nr_extents = nr;
6992 }
6993 return ret;
6994}
6995
Chris Masond3977122009-01-05 21:25:51 -05006996static noinline int replace_one_extent(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04006997 struct btrfs_root *root,
6998 struct btrfs_path *path,
6999 struct btrfs_key *extent_key,
7000 struct btrfs_key *leaf_key,
7001 struct btrfs_ref_path *ref_path,
7002 struct disk_extent *new_extents,
7003 int nr_extents)
7004{
7005 struct extent_buffer *leaf;
7006 struct btrfs_file_extent_item *fi;
7007 struct inode *inode = NULL;
7008 struct btrfs_key key;
7009 u64 lock_start = 0;
7010 u64 lock_end = 0;
7011 u64 num_bytes;
7012 u64 ext_offset;
Yan Zheng86288a12009-01-21 10:49:16 -05007013 u64 search_end = (u64)-1;
Zheng Yan1a40e232008-09-26 10:09:34 -04007014 u32 nritems;
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007015 int nr_scaned = 0;
Zheng Yan1a40e232008-09-26 10:09:34 -04007016 int extent_locked = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04007017 int extent_type;
Zheng Yan1a40e232008-09-26 10:09:34 -04007018 int ret;
7019
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007020 memcpy(&key, leaf_key, sizeof(key));
Zheng Yan1a40e232008-09-26 10:09:34 -04007021 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS) {
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007022 if (key.objectid < ref_path->owner_objectid ||
7023 (key.objectid == ref_path->owner_objectid &&
7024 key.type < BTRFS_EXTENT_DATA_KEY)) {
7025 key.objectid = ref_path->owner_objectid;
7026 key.type = BTRFS_EXTENT_DATA_KEY;
7027 key.offset = 0;
7028 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007029 }
7030
7031 while (1) {
7032 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
7033 if (ret < 0)
7034 goto out;
7035
7036 leaf = path->nodes[0];
7037 nritems = btrfs_header_nritems(leaf);
7038next:
7039 if (extent_locked && ret > 0) {
7040 /*
7041 * the file extent item was modified by someone
7042 * before the extent got locked.
7043 */
Zheng Yan1a40e232008-09-26 10:09:34 -04007044 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7045 lock_end, GFP_NOFS);
7046 extent_locked = 0;
7047 }
7048
7049 if (path->slots[0] >= nritems) {
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007050 if (++nr_scaned > 2)
Zheng Yan1a40e232008-09-26 10:09:34 -04007051 break;
7052
7053 BUG_ON(extent_locked);
7054 ret = btrfs_next_leaf(root, path);
7055 if (ret < 0)
7056 goto out;
7057 if (ret > 0)
7058 break;
7059 leaf = path->nodes[0];
7060 nritems = btrfs_header_nritems(leaf);
7061 }
7062
7063 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
7064
7065 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS) {
7066 if ((key.objectid > ref_path->owner_objectid) ||
7067 (key.objectid == ref_path->owner_objectid &&
7068 key.type > BTRFS_EXTENT_DATA_KEY) ||
Yan Zheng86288a12009-01-21 10:49:16 -05007069 key.offset >= search_end)
Zheng Yan1a40e232008-09-26 10:09:34 -04007070 break;
7071 }
7072
7073 if (inode && key.objectid != inode->i_ino) {
7074 BUG_ON(extent_locked);
7075 btrfs_release_path(root, path);
7076 mutex_unlock(&inode->i_mutex);
7077 iput(inode);
7078 inode = NULL;
7079 continue;
7080 }
7081
7082 if (key.type != BTRFS_EXTENT_DATA_KEY) {
7083 path->slots[0]++;
7084 ret = 1;
7085 goto next;
7086 }
7087 fi = btrfs_item_ptr(leaf, path->slots[0],
7088 struct btrfs_file_extent_item);
Yan Zhengd899e052008-10-30 14:25:28 -04007089 extent_type = btrfs_file_extent_type(leaf, fi);
7090 if ((extent_type != BTRFS_FILE_EXTENT_REG &&
7091 extent_type != BTRFS_FILE_EXTENT_PREALLOC) ||
Zheng Yan1a40e232008-09-26 10:09:34 -04007092 (btrfs_file_extent_disk_bytenr(leaf, fi) !=
7093 extent_key->objectid)) {
7094 path->slots[0]++;
7095 ret = 1;
7096 goto next;
7097 }
7098
7099 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
7100 ext_offset = btrfs_file_extent_offset(leaf, fi);
7101
Yan Zheng86288a12009-01-21 10:49:16 -05007102 if (search_end == (u64)-1) {
7103 search_end = key.offset - ext_offset +
7104 btrfs_file_extent_ram_bytes(leaf, fi);
7105 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007106
7107 if (!extent_locked) {
7108 lock_start = key.offset;
7109 lock_end = lock_start + num_bytes - 1;
7110 } else {
Yan Zheng66435582008-10-30 14:19:50 -04007111 if (lock_start > key.offset ||
7112 lock_end + 1 < key.offset + num_bytes) {
7113 unlock_extent(&BTRFS_I(inode)->io_tree,
7114 lock_start, lock_end, GFP_NOFS);
7115 extent_locked = 0;
7116 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007117 }
7118
7119 if (!inode) {
7120 btrfs_release_path(root, path);
7121
7122 inode = btrfs_iget_locked(root->fs_info->sb,
7123 key.objectid, root);
7124 if (inode->i_state & I_NEW) {
7125 BTRFS_I(inode)->root = root;
7126 BTRFS_I(inode)->location.objectid =
7127 key.objectid;
7128 BTRFS_I(inode)->location.type =
7129 BTRFS_INODE_ITEM_KEY;
7130 BTRFS_I(inode)->location.offset = 0;
7131 btrfs_read_locked_inode(inode);
7132 unlock_new_inode(inode);
7133 }
7134 /*
7135 * some code call btrfs_commit_transaction while
7136 * holding the i_mutex, so we can't use mutex_lock
7137 * here.
7138 */
7139 if (is_bad_inode(inode) ||
7140 !mutex_trylock(&inode->i_mutex)) {
7141 iput(inode);
7142 inode = NULL;
7143 key.offset = (u64)-1;
7144 goto skip;
7145 }
7146 }
7147
7148 if (!extent_locked) {
7149 struct btrfs_ordered_extent *ordered;
7150
7151 btrfs_release_path(root, path);
7152
7153 lock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7154 lock_end, GFP_NOFS);
7155 ordered = btrfs_lookup_first_ordered_extent(inode,
7156 lock_end);
7157 if (ordered &&
7158 ordered->file_offset <= lock_end &&
7159 ordered->file_offset + ordered->len > lock_start) {
7160 unlock_extent(&BTRFS_I(inode)->io_tree,
7161 lock_start, lock_end, GFP_NOFS);
7162 btrfs_start_ordered_extent(inode, ordered, 1);
7163 btrfs_put_ordered_extent(ordered);
7164 key.offset += num_bytes;
7165 goto skip;
7166 }
7167 if (ordered)
7168 btrfs_put_ordered_extent(ordered);
7169
Zheng Yan1a40e232008-09-26 10:09:34 -04007170 extent_locked = 1;
7171 continue;
7172 }
7173
7174 if (nr_extents == 1) {
7175 /* update extent pointer in place */
Zheng Yan1a40e232008-09-26 10:09:34 -04007176 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7177 new_extents[0].disk_bytenr);
7178 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7179 new_extents[0].disk_num_bytes);
Zheng Yan1a40e232008-09-26 10:09:34 -04007180 btrfs_mark_buffer_dirty(leaf);
7181
7182 btrfs_drop_extent_cache(inode, key.offset,
7183 key.offset + num_bytes - 1, 0);
7184
7185 ret = btrfs_inc_extent_ref(trans, root,
7186 new_extents[0].disk_bytenr,
7187 new_extents[0].disk_num_bytes,
7188 leaf->start,
7189 root->root_key.objectid,
7190 trans->transid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007191 key.objectid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007192 BUG_ON(ret);
7193
7194 ret = btrfs_free_extent(trans, root,
7195 extent_key->objectid,
7196 extent_key->offset,
7197 leaf->start,
7198 btrfs_header_owner(leaf),
7199 btrfs_header_generation(leaf),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007200 key.objectid, 0);
Zheng Yan1a40e232008-09-26 10:09:34 -04007201 BUG_ON(ret);
7202
7203 btrfs_release_path(root, path);
7204 key.offset += num_bytes;
7205 } else {
Yan Zhengd899e052008-10-30 14:25:28 -04007206 BUG_ON(1);
7207#if 0
Zheng Yan1a40e232008-09-26 10:09:34 -04007208 u64 alloc_hint;
7209 u64 extent_len;
7210 int i;
7211 /*
7212 * drop old extent pointer at first, then insert the
7213 * new pointers one bye one
7214 */
7215 btrfs_release_path(root, path);
7216 ret = btrfs_drop_extents(trans, root, inode, key.offset,
7217 key.offset + num_bytes,
7218 key.offset, &alloc_hint);
7219 BUG_ON(ret);
7220
7221 for (i = 0; i < nr_extents; i++) {
7222 if (ext_offset >= new_extents[i].num_bytes) {
7223 ext_offset -= new_extents[i].num_bytes;
7224 continue;
7225 }
7226 extent_len = min(new_extents[i].num_bytes -
7227 ext_offset, num_bytes);
7228
7229 ret = btrfs_insert_empty_item(trans, root,
7230 path, &key,
7231 sizeof(*fi));
7232 BUG_ON(ret);
7233
7234 leaf = path->nodes[0];
7235 fi = btrfs_item_ptr(leaf, path->slots[0],
7236 struct btrfs_file_extent_item);
7237 btrfs_set_file_extent_generation(leaf, fi,
7238 trans->transid);
7239 btrfs_set_file_extent_type(leaf, fi,
7240 BTRFS_FILE_EXTENT_REG);
7241 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7242 new_extents[i].disk_bytenr);
7243 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7244 new_extents[i].disk_num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -04007245 btrfs_set_file_extent_ram_bytes(leaf, fi,
7246 new_extents[i].ram_bytes);
7247
7248 btrfs_set_file_extent_compression(leaf, fi,
7249 new_extents[i].compression);
7250 btrfs_set_file_extent_encryption(leaf, fi,
7251 new_extents[i].encryption);
7252 btrfs_set_file_extent_other_encoding(leaf, fi,
7253 new_extents[i].other_encoding);
7254
Zheng Yan1a40e232008-09-26 10:09:34 -04007255 btrfs_set_file_extent_num_bytes(leaf, fi,
7256 extent_len);
7257 ext_offset += new_extents[i].offset;
7258 btrfs_set_file_extent_offset(leaf, fi,
7259 ext_offset);
7260 btrfs_mark_buffer_dirty(leaf);
7261
7262 btrfs_drop_extent_cache(inode, key.offset,
7263 key.offset + extent_len - 1, 0);
7264
7265 ret = btrfs_inc_extent_ref(trans, root,
7266 new_extents[i].disk_bytenr,
7267 new_extents[i].disk_num_bytes,
7268 leaf->start,
7269 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007270 trans->transid, key.objectid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007271 BUG_ON(ret);
7272 btrfs_release_path(root, path);
7273
Yan Zhenga76a3cd2008-10-09 11:46:29 -04007274 inode_add_bytes(inode, extent_len);
Zheng Yan1a40e232008-09-26 10:09:34 -04007275
7276 ext_offset = 0;
7277 num_bytes -= extent_len;
7278 key.offset += extent_len;
7279
7280 if (num_bytes == 0)
7281 break;
7282 }
7283 BUG_ON(i >= nr_extents);
Yan Zhengd899e052008-10-30 14:25:28 -04007284#endif
Zheng Yan1a40e232008-09-26 10:09:34 -04007285 }
7286
7287 if (extent_locked) {
Zheng Yan1a40e232008-09-26 10:09:34 -04007288 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7289 lock_end, GFP_NOFS);
7290 extent_locked = 0;
7291 }
7292skip:
7293 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS &&
Yan Zheng86288a12009-01-21 10:49:16 -05007294 key.offset >= search_end)
Zheng Yan1a40e232008-09-26 10:09:34 -04007295 break;
7296
7297 cond_resched();
7298 }
7299 ret = 0;
7300out:
7301 btrfs_release_path(root, path);
7302 if (inode) {
7303 mutex_unlock(&inode->i_mutex);
7304 if (extent_locked) {
Zheng Yan1a40e232008-09-26 10:09:34 -04007305 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7306 lock_end, GFP_NOFS);
7307 }
7308 iput(inode);
7309 }
7310 return ret;
7311}
7312
Zheng Yan1a40e232008-09-26 10:09:34 -04007313int btrfs_reloc_tree_cache_ref(struct btrfs_trans_handle *trans,
7314 struct btrfs_root *root,
7315 struct extent_buffer *buf, u64 orig_start)
7316{
7317 int level;
7318 int ret;
7319
7320 BUG_ON(btrfs_header_generation(buf) != trans->transid);
7321 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
7322
7323 level = btrfs_header_level(buf);
7324 if (level == 0) {
7325 struct btrfs_leaf_ref *ref;
7326 struct btrfs_leaf_ref *orig_ref;
7327
7328 orig_ref = btrfs_lookup_leaf_ref(root, orig_start);
7329 if (!orig_ref)
7330 return -ENOENT;
7331
7332 ref = btrfs_alloc_leaf_ref(root, orig_ref->nritems);
7333 if (!ref) {
7334 btrfs_free_leaf_ref(root, orig_ref);
7335 return -ENOMEM;
7336 }
7337
7338 ref->nritems = orig_ref->nritems;
7339 memcpy(ref->extents, orig_ref->extents,
7340 sizeof(ref->extents[0]) * ref->nritems);
7341
7342 btrfs_free_leaf_ref(root, orig_ref);
7343
7344 ref->root_gen = trans->transid;
7345 ref->bytenr = buf->start;
7346 ref->owner = btrfs_header_owner(buf);
7347 ref->generation = btrfs_header_generation(buf);
Chris Masonbd56b302009-02-04 09:27:02 -05007348
Zheng Yan1a40e232008-09-26 10:09:34 -04007349 ret = btrfs_add_leaf_ref(root, ref, 0);
7350 WARN_ON(ret);
7351 btrfs_free_leaf_ref(root, ref);
7352 }
7353 return 0;
7354}
7355
Chris Masond3977122009-01-05 21:25:51 -05007356static noinline int invalidate_extent_cache(struct btrfs_root *root,
Zheng Yan1a40e232008-09-26 10:09:34 -04007357 struct extent_buffer *leaf,
7358 struct btrfs_block_group_cache *group,
7359 struct btrfs_root *target_root)
7360{
7361 struct btrfs_key key;
7362 struct inode *inode = NULL;
7363 struct btrfs_file_extent_item *fi;
Josef Bacik2ac55d42010-02-03 19:33:23 +00007364 struct extent_state *cached_state = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -04007365 u64 num_bytes;
7366 u64 skip_objectid = 0;
7367 u32 nritems;
7368 u32 i;
7369
7370 nritems = btrfs_header_nritems(leaf);
7371 for (i = 0; i < nritems; i++) {
7372 btrfs_item_key_to_cpu(leaf, &key, i);
7373 if (key.objectid == skip_objectid ||
7374 key.type != BTRFS_EXTENT_DATA_KEY)
7375 continue;
7376 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
7377 if (btrfs_file_extent_type(leaf, fi) ==
7378 BTRFS_FILE_EXTENT_INLINE)
7379 continue;
7380 if (btrfs_file_extent_disk_bytenr(leaf, fi) == 0)
7381 continue;
7382 if (!inode || inode->i_ino != key.objectid) {
7383 iput(inode);
7384 inode = btrfs_ilookup(target_root->fs_info->sb,
7385 key.objectid, target_root, 1);
7386 }
7387 if (!inode) {
7388 skip_objectid = key.objectid;
7389 continue;
7390 }
7391 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
7392
Josef Bacik2ac55d42010-02-03 19:33:23 +00007393 lock_extent_bits(&BTRFS_I(inode)->io_tree, key.offset,
7394 key.offset + num_bytes - 1, 0, &cached_state,
7395 GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04007396 btrfs_drop_extent_cache(inode, key.offset,
7397 key.offset + num_bytes - 1, 1);
Josef Bacik2ac55d42010-02-03 19:33:23 +00007398 unlock_extent_cached(&BTRFS_I(inode)->io_tree, key.offset,
7399 key.offset + num_bytes - 1, &cached_state,
7400 GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04007401 cond_resched();
7402 }
7403 iput(inode);
7404 return 0;
7405}
7406
Chris Masond3977122009-01-05 21:25:51 -05007407static noinline int replace_extents_in_leaf(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007408 struct btrfs_root *root,
7409 struct extent_buffer *leaf,
7410 struct btrfs_block_group_cache *group,
7411 struct inode *reloc_inode)
7412{
7413 struct btrfs_key key;
7414 struct btrfs_key extent_key;
7415 struct btrfs_file_extent_item *fi;
7416 struct btrfs_leaf_ref *ref;
7417 struct disk_extent *new_extent;
7418 u64 bytenr;
7419 u64 num_bytes;
7420 u32 nritems;
7421 u32 i;
7422 int ext_index;
7423 int nr_extent;
7424 int ret;
7425
7426 new_extent = kmalloc(sizeof(*new_extent), GFP_NOFS);
7427 BUG_ON(!new_extent);
7428
7429 ref = btrfs_lookup_leaf_ref(root, leaf->start);
7430 BUG_ON(!ref);
7431
7432 ext_index = -1;
7433 nritems = btrfs_header_nritems(leaf);
7434 for (i = 0; i < nritems; i++) {
7435 btrfs_item_key_to_cpu(leaf, &key, i);
7436 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
7437 continue;
7438 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
7439 if (btrfs_file_extent_type(leaf, fi) ==
7440 BTRFS_FILE_EXTENT_INLINE)
7441 continue;
7442 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
7443 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
7444 if (bytenr == 0)
7445 continue;
7446
7447 ext_index++;
7448 if (bytenr >= group->key.objectid + group->key.offset ||
7449 bytenr + num_bytes <= group->key.objectid)
7450 continue;
7451
7452 extent_key.objectid = bytenr;
7453 extent_key.offset = num_bytes;
7454 extent_key.type = BTRFS_EXTENT_ITEM_KEY;
7455 nr_extent = 1;
7456 ret = get_new_locations(reloc_inode, &extent_key,
7457 group->key.objectid, 1,
7458 &new_extent, &nr_extent);
7459 if (ret > 0)
7460 continue;
7461 BUG_ON(ret < 0);
7462
7463 BUG_ON(ref->extents[ext_index].bytenr != bytenr);
7464 BUG_ON(ref->extents[ext_index].num_bytes != num_bytes);
7465 ref->extents[ext_index].bytenr = new_extent->disk_bytenr;
7466 ref->extents[ext_index].num_bytes = new_extent->disk_num_bytes;
7467
Zheng Yan1a40e232008-09-26 10:09:34 -04007468 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7469 new_extent->disk_bytenr);
7470 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7471 new_extent->disk_num_bytes);
Zheng Yan1a40e232008-09-26 10:09:34 -04007472 btrfs_mark_buffer_dirty(leaf);
7473
7474 ret = btrfs_inc_extent_ref(trans, root,
7475 new_extent->disk_bytenr,
7476 new_extent->disk_num_bytes,
7477 leaf->start,
7478 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007479 trans->transid, key.objectid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007480 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04007481
Zheng Yan1a40e232008-09-26 10:09:34 -04007482 ret = btrfs_free_extent(trans, root,
7483 bytenr, num_bytes, leaf->start,
7484 btrfs_header_owner(leaf),
7485 btrfs_header_generation(leaf),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007486 key.objectid, 0);
Zheng Yan1a40e232008-09-26 10:09:34 -04007487 BUG_ON(ret);
7488 cond_resched();
7489 }
7490 kfree(new_extent);
7491 BUG_ON(ext_index + 1 != ref->nritems);
7492 btrfs_free_leaf_ref(root, ref);
7493 return 0;
7494}
7495
Yan Zhengf82d02d2008-10-29 14:49:05 -04007496int btrfs_free_reloc_root(struct btrfs_trans_handle *trans,
7497 struct btrfs_root *root)
Zheng Yan1a40e232008-09-26 10:09:34 -04007498{
7499 struct btrfs_root *reloc_root;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007500 int ret;
Zheng Yan1a40e232008-09-26 10:09:34 -04007501
7502 if (root->reloc_root) {
7503 reloc_root = root->reloc_root;
7504 root->reloc_root = NULL;
7505 list_add(&reloc_root->dead_list,
7506 &root->fs_info->dead_reloc_roots);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007507
7508 btrfs_set_root_bytenr(&reloc_root->root_item,
7509 reloc_root->node->start);
7510 btrfs_set_root_level(&root->root_item,
7511 btrfs_header_level(reloc_root->node));
7512 memset(&reloc_root->root_item.drop_progress, 0,
7513 sizeof(struct btrfs_disk_key));
7514 reloc_root->root_item.drop_level = 0;
7515
7516 ret = btrfs_update_root(trans, root->fs_info->tree_root,
7517 &reloc_root->root_key,
7518 &reloc_root->root_item);
7519 BUG_ON(ret);
Zheng Yan1a40e232008-09-26 10:09:34 -04007520 }
7521 return 0;
7522}
7523
7524int btrfs_drop_dead_reloc_roots(struct btrfs_root *root)
7525{
7526 struct btrfs_trans_handle *trans;
7527 struct btrfs_root *reloc_root;
7528 struct btrfs_root *prev_root = NULL;
7529 struct list_head dead_roots;
7530 int ret;
7531 unsigned long nr;
7532
7533 INIT_LIST_HEAD(&dead_roots);
7534 list_splice_init(&root->fs_info->dead_reloc_roots, &dead_roots);
7535
7536 while (!list_empty(&dead_roots)) {
7537 reloc_root = list_entry(dead_roots.prev,
7538 struct btrfs_root, dead_list);
7539 list_del_init(&reloc_root->dead_list);
7540
7541 BUG_ON(reloc_root->commit_root != NULL);
7542 while (1) {
7543 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00007544 BUG_ON(IS_ERR(trans));
Zheng Yan1a40e232008-09-26 10:09:34 -04007545
7546 mutex_lock(&root->fs_info->drop_mutex);
7547 ret = btrfs_drop_snapshot(trans, reloc_root);
7548 if (ret != -EAGAIN)
7549 break;
7550 mutex_unlock(&root->fs_info->drop_mutex);
7551
7552 nr = trans->blocks_used;
7553 ret = btrfs_end_transaction(trans, root);
7554 BUG_ON(ret);
7555 btrfs_btree_balance_dirty(root, nr);
7556 }
7557
7558 free_extent_buffer(reloc_root->node);
7559
7560 ret = btrfs_del_root(trans, root->fs_info->tree_root,
7561 &reloc_root->root_key);
7562 BUG_ON(ret);
7563 mutex_unlock(&root->fs_info->drop_mutex);
7564
7565 nr = trans->blocks_used;
7566 ret = btrfs_end_transaction(trans, root);
7567 BUG_ON(ret);
7568 btrfs_btree_balance_dirty(root, nr);
7569
7570 kfree(prev_root);
7571 prev_root = reloc_root;
7572 }
7573 if (prev_root) {
7574 btrfs_remove_leaf_refs(prev_root, (u64)-1, 0);
7575 kfree(prev_root);
7576 }
7577 return 0;
7578}
7579
7580int btrfs_add_dead_reloc_root(struct btrfs_root *root)
7581{
7582 list_add(&root->dead_list, &root->fs_info->dead_reloc_roots);
7583 return 0;
7584}
7585
7586int btrfs_cleanup_reloc_trees(struct btrfs_root *root)
7587{
7588 struct btrfs_root *reloc_root;
7589 struct btrfs_trans_handle *trans;
7590 struct btrfs_key location;
7591 int found;
7592 int ret;
7593
7594 mutex_lock(&root->fs_info->tree_reloc_mutex);
7595 ret = btrfs_find_dead_roots(root, BTRFS_TREE_RELOC_OBJECTID, NULL);
7596 BUG_ON(ret);
7597 found = !list_empty(&root->fs_info->dead_reloc_roots);
7598 mutex_unlock(&root->fs_info->tree_reloc_mutex);
7599
7600 if (found) {
7601 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00007602 BUG_ON(IS_ERR(trans));
Zheng Yan1a40e232008-09-26 10:09:34 -04007603 ret = btrfs_commit_transaction(trans, root);
7604 BUG_ON(ret);
7605 }
7606
7607 location.objectid = BTRFS_DATA_RELOC_TREE_OBJECTID;
7608 location.offset = (u64)-1;
7609 location.type = BTRFS_ROOT_ITEM_KEY;
7610
7611 reloc_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
7612 BUG_ON(!reloc_root);
7613 btrfs_orphan_cleanup(reloc_root);
7614 return 0;
7615}
7616
Chris Masond3977122009-01-05 21:25:51 -05007617static noinline int init_reloc_tree(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007618 struct btrfs_root *root)
7619{
7620 struct btrfs_root *reloc_root;
7621 struct extent_buffer *eb;
7622 struct btrfs_root_item *root_item;
7623 struct btrfs_key root_key;
7624 int ret;
7625
7626 BUG_ON(!root->ref_cows);
7627 if (root->reloc_root)
7628 return 0;
7629
7630 root_item = kmalloc(sizeof(*root_item), GFP_NOFS);
7631 BUG_ON(!root_item);
7632
7633 ret = btrfs_copy_root(trans, root, root->commit_root,
7634 &eb, BTRFS_TREE_RELOC_OBJECTID);
7635 BUG_ON(ret);
7636
7637 root_key.objectid = BTRFS_TREE_RELOC_OBJECTID;
7638 root_key.offset = root->root_key.objectid;
7639 root_key.type = BTRFS_ROOT_ITEM_KEY;
7640
7641 memcpy(root_item, &root->root_item, sizeof(root_item));
7642 btrfs_set_root_refs(root_item, 0);
7643 btrfs_set_root_bytenr(root_item, eb->start);
7644 btrfs_set_root_level(root_item, btrfs_header_level(eb));
Yan Zheng84234f32008-10-29 14:49:05 -04007645 btrfs_set_root_generation(root_item, trans->transid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007646
7647 btrfs_tree_unlock(eb);
7648 free_extent_buffer(eb);
7649
7650 ret = btrfs_insert_root(trans, root->fs_info->tree_root,
7651 &root_key, root_item);
7652 BUG_ON(ret);
7653 kfree(root_item);
7654
7655 reloc_root = btrfs_read_fs_root_no_radix(root->fs_info->tree_root,
7656 &root_key);
7657 BUG_ON(!reloc_root);
7658 reloc_root->last_trans = trans->transid;
7659 reloc_root->commit_root = NULL;
7660 reloc_root->ref_tree = &root->fs_info->reloc_ref_tree;
7661
7662 root->reloc_root = reloc_root;
7663 return 0;
7664}
7665
7666/*
7667 * Core function of space balance.
7668 *
7669 * The idea is using reloc trees to relocate tree blocks in reference
Yan Zhengf82d02d2008-10-29 14:49:05 -04007670 * counted roots. There is one reloc tree for each subvol, and all
7671 * reloc trees share same root key objectid. Reloc trees are snapshots
7672 * of the latest committed roots of subvols (root->commit_root).
7673 *
7674 * To relocate a tree block referenced by a subvol, there are two steps.
7675 * COW the block through subvol's reloc tree, then update block pointer
7676 * in the subvol to point to the new block. Since all reloc trees share
7677 * same root key objectid, doing special handing for tree blocks owned
7678 * by them is easy. Once a tree block has been COWed in one reloc tree,
7679 * we can use the resulting new block directly when the same block is
7680 * required to COW again through other reloc trees. By this way, relocated
7681 * tree blocks are shared between reloc trees, so they are also shared
7682 * between subvols.
Zheng Yan1a40e232008-09-26 10:09:34 -04007683 */
Chris Masond3977122009-01-05 21:25:51 -05007684static noinline int relocate_one_path(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007685 struct btrfs_root *root,
7686 struct btrfs_path *path,
7687 struct btrfs_key *first_key,
7688 struct btrfs_ref_path *ref_path,
7689 struct btrfs_block_group_cache *group,
7690 struct inode *reloc_inode)
7691{
7692 struct btrfs_root *reloc_root;
7693 struct extent_buffer *eb = NULL;
7694 struct btrfs_key *keys;
7695 u64 *nodes;
7696 int level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007697 int shared_level;
Zheng Yan1a40e232008-09-26 10:09:34 -04007698 int lowest_level = 0;
Zheng Yan1a40e232008-09-26 10:09:34 -04007699 int ret;
7700
7701 if (ref_path->owner_objectid < BTRFS_FIRST_FREE_OBJECTID)
7702 lowest_level = ref_path->owner_objectid;
7703
Yan Zhengf82d02d2008-10-29 14:49:05 -04007704 if (!root->ref_cows) {
Zheng Yan1a40e232008-09-26 10:09:34 -04007705 path->lowest_level = lowest_level;
7706 ret = btrfs_search_slot(trans, root, first_key, path, 0, 1);
7707 BUG_ON(ret < 0);
7708 path->lowest_level = 0;
7709 btrfs_release_path(root, path);
7710 return 0;
7711 }
7712
Zheng Yan1a40e232008-09-26 10:09:34 -04007713 mutex_lock(&root->fs_info->tree_reloc_mutex);
7714 ret = init_reloc_tree(trans, root);
7715 BUG_ON(ret);
7716 reloc_root = root->reloc_root;
7717
Yan Zhengf82d02d2008-10-29 14:49:05 -04007718 shared_level = ref_path->shared_level;
7719 ref_path->shared_level = BTRFS_MAX_LEVEL - 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04007720
Yan Zhengf82d02d2008-10-29 14:49:05 -04007721 keys = ref_path->node_keys;
7722 nodes = ref_path->new_nodes;
7723 memset(&keys[shared_level + 1], 0,
7724 sizeof(*keys) * (BTRFS_MAX_LEVEL - shared_level - 1));
7725 memset(&nodes[shared_level + 1], 0,
7726 sizeof(*nodes) * (BTRFS_MAX_LEVEL - shared_level - 1));
Zheng Yan1a40e232008-09-26 10:09:34 -04007727
Yan Zhengf82d02d2008-10-29 14:49:05 -04007728 if (nodes[lowest_level] == 0) {
7729 path->lowest_level = lowest_level;
7730 ret = btrfs_search_slot(trans, reloc_root, first_key, path,
7731 0, 1);
7732 BUG_ON(ret);
7733 for (level = lowest_level; level < BTRFS_MAX_LEVEL; level++) {
7734 eb = path->nodes[level];
7735 if (!eb || eb == reloc_root->node)
7736 break;
7737 nodes[level] = eb->start;
7738 if (level == 0)
7739 btrfs_item_key_to_cpu(eb, &keys[level], 0);
7740 else
7741 btrfs_node_key_to_cpu(eb, &keys[level], 0);
7742 }
Yan Zheng2b820322008-11-17 21:11:30 -05007743 if (nodes[0] &&
7744 ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04007745 eb = path->nodes[0];
7746 ret = replace_extents_in_leaf(trans, reloc_root, eb,
7747 group, reloc_inode);
7748 BUG_ON(ret);
7749 }
7750 btrfs_release_path(reloc_root, path);
7751 } else {
Zheng Yan1a40e232008-09-26 10:09:34 -04007752 ret = btrfs_merge_path(trans, reloc_root, keys, nodes,
Yan Zhengf82d02d2008-10-29 14:49:05 -04007753 lowest_level);
Zheng Yan1a40e232008-09-26 10:09:34 -04007754 BUG_ON(ret);
7755 }
7756
Zheng Yan1a40e232008-09-26 10:09:34 -04007757 /*
7758 * replace tree blocks in the fs tree with tree blocks in
7759 * the reloc tree.
7760 */
7761 ret = btrfs_merge_path(trans, root, keys, nodes, lowest_level);
7762 BUG_ON(ret < 0);
7763
7764 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04007765 ret = btrfs_search_slot(trans, reloc_root, first_key, path,
7766 0, 0);
7767 BUG_ON(ret);
7768 extent_buffer_get(path->nodes[0]);
7769 eb = path->nodes[0];
7770 btrfs_release_path(reloc_root, path);
Zheng Yan1a40e232008-09-26 10:09:34 -04007771 ret = invalidate_extent_cache(reloc_root, eb, group, root);
7772 BUG_ON(ret);
7773 free_extent_buffer(eb);
7774 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007775
Yan Zhengf82d02d2008-10-29 14:49:05 -04007776 mutex_unlock(&root->fs_info->tree_reloc_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04007777 path->lowest_level = 0;
Zheng Yan1a40e232008-09-26 10:09:34 -04007778 return 0;
7779}
7780
Chris Masond3977122009-01-05 21:25:51 -05007781static noinline int relocate_tree_block(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007782 struct btrfs_root *root,
7783 struct btrfs_path *path,
7784 struct btrfs_key *first_key,
7785 struct btrfs_ref_path *ref_path)
7786{
7787 int ret;
Zheng Yan1a40e232008-09-26 10:09:34 -04007788
7789 ret = relocate_one_path(trans, root, path, first_key,
7790 ref_path, NULL, NULL);
7791 BUG_ON(ret);
7792
Zheng Yan1a40e232008-09-26 10:09:34 -04007793 return 0;
7794}
7795
Chris Masond3977122009-01-05 21:25:51 -05007796static noinline int del_extent_zero(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007797 struct btrfs_root *extent_root,
7798 struct btrfs_path *path,
7799 struct btrfs_key *extent_key)
7800{
7801 int ret;
7802
Zheng Yan1a40e232008-09-26 10:09:34 -04007803 ret = btrfs_search_slot(trans, extent_root, extent_key, path, -1, 1);
7804 if (ret)
7805 goto out;
7806 ret = btrfs_del_item(trans, extent_root, path);
7807out:
Chris Masonedbd8d42007-12-21 16:27:24 -05007808 btrfs_release_path(extent_root, path);
Zheng Yan1a40e232008-09-26 10:09:34 -04007809 return ret;
7810}
7811
Chris Masond3977122009-01-05 21:25:51 -05007812static noinline struct btrfs_root *read_ref_root(struct btrfs_fs_info *fs_info,
Zheng Yan1a40e232008-09-26 10:09:34 -04007813 struct btrfs_ref_path *ref_path)
7814{
7815 struct btrfs_key root_key;
7816
7817 root_key.objectid = ref_path->root_objectid;
7818 root_key.type = BTRFS_ROOT_ITEM_KEY;
7819 if (is_cowonly_root(ref_path->root_objectid))
7820 root_key.offset = 0;
7821 else
7822 root_key.offset = (u64)-1;
7823
7824 return btrfs_read_fs_root_no_name(fs_info, &root_key);
7825}
7826
Chris Masond3977122009-01-05 21:25:51 -05007827static noinline int relocate_one_extent(struct btrfs_root *extent_root,
Zheng Yan1a40e232008-09-26 10:09:34 -04007828 struct btrfs_path *path,
7829 struct btrfs_key *extent_key,
7830 struct btrfs_block_group_cache *group,
7831 struct inode *reloc_inode, int pass)
7832{
7833 struct btrfs_trans_handle *trans;
7834 struct btrfs_root *found_root;
7835 struct btrfs_ref_path *ref_path = NULL;
7836 struct disk_extent *new_extents = NULL;
7837 int nr_extents = 0;
7838 int loops;
7839 int ret;
7840 int level;
7841 struct btrfs_key first_key;
7842 u64 prev_block = 0;
7843
Zheng Yan1a40e232008-09-26 10:09:34 -04007844
7845 trans = btrfs_start_transaction(extent_root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00007846 BUG_ON(IS_ERR(trans));
Zheng Yan1a40e232008-09-26 10:09:34 -04007847
7848 if (extent_key->objectid == 0) {
7849 ret = del_extent_zero(trans, extent_root, path, extent_key);
7850 goto out;
7851 }
7852
7853 ref_path = kmalloc(sizeof(*ref_path), GFP_NOFS);
7854 if (!ref_path) {
Chris Masond3977122009-01-05 21:25:51 -05007855 ret = -ENOMEM;
7856 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04007857 }
7858
7859 for (loops = 0; ; loops++) {
7860 if (loops == 0) {
7861 ret = btrfs_first_ref_path(trans, extent_root, ref_path,
7862 extent_key->objectid);
7863 } else {
7864 ret = btrfs_next_ref_path(trans, extent_root, ref_path);
7865 }
7866 if (ret < 0)
7867 goto out;
7868 if (ret > 0)
7869 break;
7870
7871 if (ref_path->root_objectid == BTRFS_TREE_LOG_OBJECTID ||
7872 ref_path->root_objectid == BTRFS_TREE_RELOC_OBJECTID)
7873 continue;
7874
7875 found_root = read_ref_root(extent_root->fs_info, ref_path);
7876 BUG_ON(!found_root);
7877 /*
7878 * for reference counted tree, only process reference paths
7879 * rooted at the latest committed root.
7880 */
7881 if (found_root->ref_cows &&
7882 ref_path->root_generation != found_root->root_key.offset)
7883 continue;
7884
7885 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
7886 if (pass == 0) {
7887 /*
7888 * copy data extents to new locations
7889 */
7890 u64 group_start = group->key.objectid;
7891 ret = relocate_data_extent(reloc_inode,
7892 extent_key,
7893 group_start);
7894 if (ret < 0)
7895 goto out;
7896 break;
7897 }
7898 level = 0;
7899 } else {
7900 level = ref_path->owner_objectid;
7901 }
7902
7903 if (prev_block != ref_path->nodes[level]) {
7904 struct extent_buffer *eb;
7905 u64 block_start = ref_path->nodes[level];
7906 u64 block_size = btrfs_level_size(found_root, level);
7907
7908 eb = read_tree_block(found_root, block_start,
7909 block_size, 0);
7910 btrfs_tree_lock(eb);
7911 BUG_ON(level != btrfs_header_level(eb));
7912
7913 if (level == 0)
7914 btrfs_item_key_to_cpu(eb, &first_key, 0);
7915 else
7916 btrfs_node_key_to_cpu(eb, &first_key, 0);
7917
7918 btrfs_tree_unlock(eb);
7919 free_extent_buffer(eb);
7920 prev_block = block_start;
7921 }
7922
Yan Zheng24562422009-02-12 14:14:53 -05007923 mutex_lock(&extent_root->fs_info->trans_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05007924 btrfs_record_root_in_trans(found_root);
Yan Zheng24562422009-02-12 14:14:53 -05007925 mutex_unlock(&extent_root->fs_info->trans_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05007926 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
7927 /*
7928 * try to update data extent references while
7929 * keeping metadata shared between snapshots.
7930 */
7931 if (pass == 1) {
7932 ret = relocate_one_path(trans, found_root,
7933 path, &first_key, ref_path,
7934 group, reloc_inode);
7935 if (ret < 0)
7936 goto out;
7937 continue;
7938 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007939 /*
7940 * use fallback method to process the remaining
7941 * references.
7942 */
7943 if (!new_extents) {
7944 u64 group_start = group->key.objectid;
Yan Zhengd899e052008-10-30 14:25:28 -04007945 new_extents = kmalloc(sizeof(*new_extents),
7946 GFP_NOFS);
7947 nr_extents = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04007948 ret = get_new_locations(reloc_inode,
7949 extent_key,
Yan Zhengd899e052008-10-30 14:25:28 -04007950 group_start, 1,
Zheng Yan1a40e232008-09-26 10:09:34 -04007951 &new_extents,
7952 &nr_extents);
Yan Zhengd899e052008-10-30 14:25:28 -04007953 if (ret)
Zheng Yan1a40e232008-09-26 10:09:34 -04007954 goto out;
7955 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007956 ret = replace_one_extent(trans, found_root,
7957 path, extent_key,
7958 &first_key, ref_path,
7959 new_extents, nr_extents);
Yan Zhenge4404d62008-12-12 10:03:26 -05007960 } else {
Zheng Yan1a40e232008-09-26 10:09:34 -04007961 ret = relocate_tree_block(trans, found_root, path,
7962 &first_key, ref_path);
Zheng Yan1a40e232008-09-26 10:09:34 -04007963 }
7964 if (ret < 0)
7965 goto out;
7966 }
7967 ret = 0;
7968out:
7969 btrfs_end_transaction(trans, extent_root);
7970 kfree(new_extents);
7971 kfree(ref_path);
Chris Masonedbd8d42007-12-21 16:27:24 -05007972 return ret;
7973}
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007974#endif
Chris Masonedbd8d42007-12-21 16:27:24 -05007975
Chris Masonec44a352008-04-28 15:29:52 -04007976static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
7977{
7978 u64 num_devices;
7979 u64 stripped = BTRFS_BLOCK_GROUP_RAID0 |
7980 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
7981
Chris Masoncd02dca2010-12-13 14:56:23 -05007982 /*
7983 * we add in the count of missing devices because we want
7984 * to make sure that any RAID levels on a degraded FS
7985 * continue to be honored.
7986 */
7987 num_devices = root->fs_info->fs_devices->rw_devices +
7988 root->fs_info->fs_devices->missing_devices;
7989
Chris Masonec44a352008-04-28 15:29:52 -04007990 if (num_devices == 1) {
7991 stripped |= BTRFS_BLOCK_GROUP_DUP;
7992 stripped = flags & ~stripped;
7993
7994 /* turn raid0 into single device chunks */
7995 if (flags & BTRFS_BLOCK_GROUP_RAID0)
7996 return stripped;
7997
7998 /* turn mirroring into duplication */
7999 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
8000 BTRFS_BLOCK_GROUP_RAID10))
8001 return stripped | BTRFS_BLOCK_GROUP_DUP;
8002 return flags;
8003 } else {
8004 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04008005 if (flags & stripped)
8006 return flags;
8007
8008 stripped |= BTRFS_BLOCK_GROUP_DUP;
8009 stripped = flags & ~stripped;
8010
8011 /* switch duplicated blocks with raid1 */
8012 if (flags & BTRFS_BLOCK_GROUP_DUP)
8013 return stripped | BTRFS_BLOCK_GROUP_RAID1;
8014
8015 /* turn single device chunks into raid0 */
8016 return stripped | BTRFS_BLOCK_GROUP_RAID0;
8017 }
8018 return flags;
8019}
8020
Yan, Zhengf0486c62010-05-16 10:46:25 -04008021static int set_block_group_ro(struct btrfs_block_group_cache *cache)
Chris Mason0ef3e662008-05-24 14:04:53 -04008022{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008023 struct btrfs_space_info *sinfo = cache->space_info;
8024 u64 num_bytes;
8025 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04008026
Yan, Zhengf0486c62010-05-16 10:46:25 -04008027 if (cache->ro)
8028 return 0;
Chris Masonc286ac42008-07-22 23:06:41 -04008029
Yan, Zhengf0486c62010-05-16 10:46:25 -04008030 spin_lock(&sinfo->lock);
8031 spin_lock(&cache->lock);
8032 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8033 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04008034
Yan, Zhengf0486c62010-05-16 10:46:25 -04008035 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
8036 sinfo->bytes_may_use + sinfo->bytes_readonly +
Chris Mason65e53412010-12-24 06:41:52 -05008037 cache->reserved_pinned + num_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04008038 sinfo->bytes_readonly += num_bytes;
8039 sinfo->bytes_reserved += cache->reserved_pinned;
8040 cache->reserved_pinned = 0;
8041 cache->ro = 1;
8042 ret = 0;
8043 }
Chris Mason65e53412010-12-24 06:41:52 -05008044
Yan, Zhengf0486c62010-05-16 10:46:25 -04008045 spin_unlock(&cache->lock);
8046 spin_unlock(&sinfo->lock);
8047 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04008048}
8049
Yan, Zhengf0486c62010-05-16 10:46:25 -04008050int btrfs_set_block_group_ro(struct btrfs_root *root,
8051 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008052
8053{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008054 struct btrfs_trans_handle *trans;
8055 u64 alloc_flags;
8056 int ret;
8057
8058 BUG_ON(cache->ro);
8059
8060 trans = btrfs_join_transaction(root, 1);
8061 BUG_ON(IS_ERR(trans));
8062
8063 alloc_flags = update_block_group_flags(root, cache->flags);
8064 if (alloc_flags != cache->flags)
8065 do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags, 1);
8066
8067 ret = set_block_group_ro(cache);
8068 if (!ret)
8069 goto out;
8070 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
8071 ret = do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags, 1);
8072 if (ret < 0)
8073 goto out;
8074 ret = set_block_group_ro(cache);
8075out:
8076 btrfs_end_transaction(trans, root);
8077 return ret;
8078}
8079
Chris Masonc87f08c2011-02-16 13:57:04 -05008080int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
8081 struct btrfs_root *root, u64 type)
8082{
8083 u64 alloc_flags = get_alloc_profile(root, type);
8084 return do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags, 1);
8085}
8086
Miao Xie6d07bce2011-01-05 10:07:31 +00008087/*
8088 * helper to account the unused space of all the readonly block group in the
8089 * list. takes mirrors into account.
8090 */
8091static u64 __btrfs_get_ro_block_group_free_space(struct list_head *groups_list)
8092{
8093 struct btrfs_block_group_cache *block_group;
8094 u64 free_bytes = 0;
8095 int factor;
8096
8097 list_for_each_entry(block_group, groups_list, list) {
8098 spin_lock(&block_group->lock);
8099
8100 if (!block_group->ro) {
8101 spin_unlock(&block_group->lock);
8102 continue;
8103 }
8104
8105 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
8106 BTRFS_BLOCK_GROUP_RAID10 |
8107 BTRFS_BLOCK_GROUP_DUP))
8108 factor = 2;
8109 else
8110 factor = 1;
8111
8112 free_bytes += (block_group->key.offset -
8113 btrfs_block_group_used(&block_group->item)) *
8114 factor;
8115
8116 spin_unlock(&block_group->lock);
8117 }
8118
8119 return free_bytes;
8120}
8121
8122/*
8123 * helper to account the unused space of all the readonly block group in the
8124 * space_info. takes mirrors into account.
8125 */
8126u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
8127{
8128 int i;
8129 u64 free_bytes = 0;
8130
8131 spin_lock(&sinfo->lock);
8132
8133 for(i = 0; i < BTRFS_NR_RAID_TYPES; i++)
8134 if (!list_empty(&sinfo->block_groups[i]))
8135 free_bytes += __btrfs_get_ro_block_group_free_space(
8136 &sinfo->block_groups[i]);
8137
8138 spin_unlock(&sinfo->lock);
8139
8140 return free_bytes;
8141}
8142
Yan, Zhengf0486c62010-05-16 10:46:25 -04008143int btrfs_set_block_group_rw(struct btrfs_root *root,
8144 struct btrfs_block_group_cache *cache)
8145{
8146 struct btrfs_space_info *sinfo = cache->space_info;
8147 u64 num_bytes;
8148
8149 BUG_ON(!cache->ro);
8150
8151 spin_lock(&sinfo->lock);
8152 spin_lock(&cache->lock);
8153 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8154 cache->bytes_super - btrfs_block_group_used(&cache->item);
8155 sinfo->bytes_readonly -= num_bytes;
8156 cache->ro = 0;
8157 spin_unlock(&cache->lock);
8158 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008159 return 0;
8160}
8161
Josef Bacikba1bf482009-09-11 16:11:19 -04008162/*
8163 * checks to see if its even possible to relocate this block group.
8164 *
8165 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
8166 * ok to go ahead and try.
8167 */
8168int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04008169{
Zheng Yan1a40e232008-09-26 10:09:34 -04008170 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04008171 struct btrfs_space_info *space_info;
8172 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
8173 struct btrfs_device *device;
8174 int full = 0;
8175 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05008176
Josef Bacikba1bf482009-09-11 16:11:19 -04008177 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04008178
Josef Bacikba1bf482009-09-11 16:11:19 -04008179 /* odd, couldn't find the block group, leave it alone */
8180 if (!block_group)
8181 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05008182
Josef Bacikba1bf482009-09-11 16:11:19 -04008183 /* no bytes used, we're good */
8184 if (!btrfs_block_group_used(&block_group->item))
8185 goto out;
Chris Mason323da792008-05-09 11:46:48 -04008186
Josef Bacikba1bf482009-09-11 16:11:19 -04008187 space_info = block_group->space_info;
8188 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04008189
Josef Bacikba1bf482009-09-11 16:11:19 -04008190 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04008191
Josef Bacikba1bf482009-09-11 16:11:19 -04008192 /*
8193 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04008194 * relocate it unless we're able to allocate a new chunk below.
8195 *
8196 * Otherwise, we need to make sure we have room in the space to handle
8197 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04008198 */
Chris Mason7ce618d2009-09-22 14:48:44 -04008199 if ((space_info->total_bytes != block_group->key.offset) &&
8200 (space_info->bytes_used + space_info->bytes_reserved +
Josef Bacikba1bf482009-09-11 16:11:19 -04008201 space_info->bytes_pinned + space_info->bytes_readonly +
8202 btrfs_block_group_used(&block_group->item) <
Chris Mason7ce618d2009-09-22 14:48:44 -04008203 space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04008204 spin_unlock(&space_info->lock);
8205 goto out;
8206 }
8207 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008208
Josef Bacikba1bf482009-09-11 16:11:19 -04008209 /*
8210 * ok we don't have enough space, but maybe we have free space on our
8211 * devices to allocate new chunks for relocation, so loop through our
8212 * alloc devices and guess if we have enough space. However, if we
8213 * were marked as full, then we know there aren't enough chunks, and we
8214 * can just return.
8215 */
8216 ret = -1;
8217 if (full)
8218 goto out;
Chris Mason4313b392008-01-03 09:08:48 -05008219
Josef Bacikba1bf482009-09-11 16:11:19 -04008220 mutex_lock(&root->fs_info->chunk_mutex);
8221 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
8222 u64 min_free = btrfs_block_group_used(&block_group->item);
Miao Xie7bfc8372011-01-05 10:07:26 +00008223 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04008224
Josef Bacikba1bf482009-09-11 16:11:19 -04008225 /*
8226 * check to make sure we can actually find a chunk with enough
8227 * space to fit our block group in.
8228 */
8229 if (device->total_bytes > device->bytes_used + min_free) {
8230 ret = find_free_dev_extent(NULL, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00008231 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04008232 if (!ret)
Yan73e48b22008-01-03 14:14:39 -05008233 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04008234 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05008235 }
Chris Masonedbd8d42007-12-21 16:27:24 -05008236 }
Josef Bacikba1bf482009-09-11 16:11:19 -04008237 mutex_unlock(&root->fs_info->chunk_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05008238out:
Josef Bacikba1bf482009-09-11 16:11:19 -04008239 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05008240 return ret;
8241}
8242
Christoph Hellwigb2950862008-12-02 09:54:17 -05008243static int find_first_block_group(struct btrfs_root *root,
8244 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04008245{
Chris Mason925baed2008-06-25 16:01:30 -04008246 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008247 struct btrfs_key found_key;
8248 struct extent_buffer *leaf;
8249 int slot;
8250
8251 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
8252 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008253 goto out;
8254
Chris Masond3977122009-01-05 21:25:51 -05008255 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008256 slot = path->slots[0];
8257 leaf = path->nodes[0];
8258 if (slot >= btrfs_header_nritems(leaf)) {
8259 ret = btrfs_next_leaf(root, path);
8260 if (ret == 0)
8261 continue;
8262 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008263 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04008264 break;
8265 }
8266 btrfs_item_key_to_cpu(leaf, &found_key, slot);
8267
8268 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04008269 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
8270 ret = 0;
8271 goto out;
8272 }
Chris Mason0b86a832008-03-24 15:01:56 -04008273 path->slots[0]++;
8274 }
Chris Mason925baed2008-06-25 16:01:30 -04008275out:
Chris Mason0b86a832008-03-24 15:01:56 -04008276 return ret;
8277}
8278
Josef Bacik0af3d002010-06-21 14:48:16 -04008279void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
8280{
8281 struct btrfs_block_group_cache *block_group;
8282 u64 last = 0;
8283
8284 while (1) {
8285 struct inode *inode;
8286
8287 block_group = btrfs_lookup_first_block_group(info, last);
8288 while (block_group) {
8289 spin_lock(&block_group->lock);
8290 if (block_group->iref)
8291 break;
8292 spin_unlock(&block_group->lock);
8293 block_group = next_block_group(info->tree_root,
8294 block_group);
8295 }
8296 if (!block_group) {
8297 if (last == 0)
8298 break;
8299 last = 0;
8300 continue;
8301 }
8302
8303 inode = block_group->inode;
8304 block_group->iref = 0;
8305 block_group->inode = NULL;
8306 spin_unlock(&block_group->lock);
8307 iput(inode);
8308 last = block_group->key.objectid + block_group->key.offset;
8309 btrfs_put_block_group(block_group);
8310 }
8311}
8312
Zheng Yan1a40e232008-09-26 10:09:34 -04008313int btrfs_free_block_groups(struct btrfs_fs_info *info)
8314{
8315 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04008316 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04008317 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04008318 struct rb_node *n;
8319
Yan Zheng11833d62009-09-11 16:11:19 -04008320 down_write(&info->extent_commit_sem);
8321 while (!list_empty(&info->caching_block_groups)) {
8322 caching_ctl = list_entry(info->caching_block_groups.next,
8323 struct btrfs_caching_control, list);
8324 list_del(&caching_ctl->list);
8325 put_caching_control(caching_ctl);
8326 }
8327 up_write(&info->extent_commit_sem);
8328
Zheng Yan1a40e232008-09-26 10:09:34 -04008329 spin_lock(&info->block_group_cache_lock);
8330 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
8331 block_group = rb_entry(n, struct btrfs_block_group_cache,
8332 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04008333 rb_erase(&block_group->cache_node,
8334 &info->block_group_cache_tree);
Yan Zhengd899e052008-10-30 14:25:28 -04008335 spin_unlock(&info->block_group_cache_lock);
8336
Josef Bacik80eb2342008-10-29 14:49:05 -04008337 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008338 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04008339 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05008340
Josef Bacik817d52f2009-07-13 21:29:25 -04008341 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008342 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008343
Josef Bacik3c148742011-02-02 15:53:47 +00008344 /*
8345 * We haven't cached this block group, which means we could
8346 * possibly have excluded extents on this block group.
8347 */
8348 if (block_group->cached == BTRFS_CACHE_NO)
8349 free_excluded_extents(info->extent_root, block_group);
8350
Josef Bacik817d52f2009-07-13 21:29:25 -04008351 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00008352 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04008353
8354 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008355 }
8356 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04008357
8358 /* now that all the block groups are freed, go through and
8359 * free all the space_info structs. This is only called during
8360 * the final stages of unmount, and so we know nobody is
8361 * using them. We call synchronize_rcu() once before we start,
8362 * just to be on the safe side.
8363 */
8364 synchronize_rcu();
8365
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04008366 release_global_block_rsv(info);
8367
Chris Mason4184ea72009-03-10 12:39:20 -04008368 while(!list_empty(&info->space_info)) {
8369 space_info = list_entry(info->space_info.next,
8370 struct btrfs_space_info,
8371 list);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008372 if (space_info->bytes_pinned > 0 ||
8373 space_info->bytes_reserved > 0) {
8374 WARN_ON(1);
8375 dump_space_info(space_info, 0, 0);
8376 }
Chris Mason4184ea72009-03-10 12:39:20 -04008377 list_del(&space_info->list);
8378 kfree(space_info);
8379 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008380 return 0;
8381}
8382
Yan, Zhengb742bb82010-05-16 10:46:24 -04008383static void __link_block_group(struct btrfs_space_info *space_info,
8384 struct btrfs_block_group_cache *cache)
8385{
8386 int index = get_block_group_index(cache);
8387
8388 down_write(&space_info->groups_sem);
8389 list_add_tail(&cache->list, &space_info->block_groups[index]);
8390 up_write(&space_info->groups_sem);
8391}
8392
Chris Mason9078a3e2007-04-26 16:46:15 -04008393int btrfs_read_block_groups(struct btrfs_root *root)
8394{
8395 struct btrfs_path *path;
8396 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008397 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04008398 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04008399 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04008400 struct btrfs_key key;
8401 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04008402 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04008403 int need_clear = 0;
8404 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04008405
Chris Masonbe744172007-05-06 10:15:01 -04008406 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04008407 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008408 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04008409 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04008410 path = btrfs_alloc_path();
8411 if (!path)
8412 return -ENOMEM;
8413
Josef Bacik0af3d002010-06-21 14:48:16 -04008414 cache_gen = btrfs_super_cache_generation(&root->fs_info->super_copy);
8415 if (cache_gen != 0 &&
8416 btrfs_super_generation(&root->fs_info->super_copy) != cache_gen)
8417 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04008418 if (btrfs_test_opt(root, CLEAR_CACHE))
8419 need_clear = 1;
Josef Bacik8216ef82010-10-28 16:55:47 -04008420 if (!btrfs_test_opt(root, SPACE_CACHE) && cache_gen)
8421 printk(KERN_INFO "btrfs: disk space caching is enabled\n");
Josef Bacik0af3d002010-06-21 14:48:16 -04008422
Chris Masond3977122009-01-05 21:25:51 -05008423 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008424 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008425 if (ret > 0)
8426 break;
Chris Mason0b86a832008-03-24 15:01:56 -04008427 if (ret != 0)
8428 goto error;
Chris Mason5f39d392007-10-15 16:14:19 -04008429 leaf = path->nodes[0];
8430 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04008431 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04008432 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04008433 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008434 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04008435 }
Chris Mason3e1ad542007-05-07 20:03:49 -04008436
Yan Zhengd2fb3432008-12-11 16:30:39 -05008437 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04008438 spin_lock_init(&cache->lock);
Josef Bacik6226cb02009-04-03 10:14:18 -04008439 spin_lock_init(&cache->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008440 cache->fs_info = info;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008441 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d72009-04-03 09:47:43 -04008442 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik96303082009-07-13 21:29:25 -04008443
Josef Bacik0af3d002010-06-21 14:48:16 -04008444 if (need_clear)
8445 cache->disk_cache_state = BTRFS_DC_CLEAR;
8446
Josef Bacik96303082009-07-13 21:29:25 -04008447 /*
8448 * we only want to have 32k of ram per block group for keeping
8449 * track of free space, and if we pass 1/2 of that we want to
8450 * start converting things over to using bitmaps
8451 */
8452 cache->extents_thresh = ((1024 * 32) / 2) /
8453 sizeof(struct btrfs_free_space);
8454
Chris Mason5f39d392007-10-15 16:14:19 -04008455 read_extent_buffer(leaf, &cache->item,
8456 btrfs_item_ptr_offset(leaf, path->slots[0]),
8457 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04008458 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason0b86a832008-03-24 15:01:56 -04008459
Chris Mason9078a3e2007-04-26 16:46:15 -04008460 key.objectid = found_key.objectid + found_key.offset;
8461 btrfs_release_path(root, path);
Chris Mason0b86a832008-03-24 15:01:56 -04008462 cache->flags = btrfs_block_group_flags(&cache->item);
Josef Bacik817d52f2009-07-13 21:29:25 -04008463 cache->sectorsize = root->sectorsize;
8464
Josef Bacik817d52f2009-07-13 21:29:25 -04008465 /*
Josef Bacik3c148742011-02-02 15:53:47 +00008466 * We need to exclude the super stripes now so that the space
8467 * info has super bytes accounted for, otherwise we'll think
8468 * we have more space than we actually do.
8469 */
8470 exclude_super_stripes(root, cache);
8471
8472 /*
Josef Bacik817d52f2009-07-13 21:29:25 -04008473 * check for two cases, either we are full, and therefore
8474 * don't need to bother with the caching work since we won't
8475 * find any space, or we are empty, and we can just add all
8476 * the space in and be done with it. This saves us _alot_ of
8477 * time, particularly in the full case.
8478 */
8479 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -04008480 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008481 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04008482 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008483 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04008484 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008485 cache->cached = BTRFS_CACHE_FINISHED;
8486 add_new_free_space(cache, root->fs_info,
8487 found_key.objectid,
8488 found_key.objectid +
8489 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04008490 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008491 }
Chris Mason96b51792007-10-15 16:15:19 -04008492
Chris Mason6324fbf2008-03-24 15:01:59 -04008493 ret = update_space_info(info, cache->flags, found_key.offset,
8494 btrfs_block_group_used(&cache->item),
8495 &space_info);
8496 BUG_ON(ret);
8497 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04008498 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008499 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008500 spin_unlock(&cache->space_info->lock);
8501
Yan, Zhengb742bb82010-05-16 10:46:24 -04008502 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008503
Josef Bacik0f9dd462008-09-23 13:14:11 -04008504 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8505 BUG_ON(ret);
Chris Mason75ccf472008-09-30 19:24:06 -04008506
8507 set_avail_alloc_bits(root->fs_info, cache->flags);
Yan Zheng2b820322008-11-17 21:11:30 -05008508 if (btrfs_chunk_readonly(root, cache->key.objectid))
Yan, Zhengf0486c62010-05-16 10:46:25 -04008509 set_block_group_ro(cache);
Chris Mason9078a3e2007-04-26 16:46:15 -04008510 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04008511
8512 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
8513 if (!(get_alloc_profile(root, space_info->flags) &
8514 (BTRFS_BLOCK_GROUP_RAID10 |
8515 BTRFS_BLOCK_GROUP_RAID1 |
8516 BTRFS_BLOCK_GROUP_DUP)))
8517 continue;
8518 /*
8519 * avoid allocating from un-mirrored block group if there are
8520 * mirrored block groups.
8521 */
8522 list_for_each_entry(cache, &space_info->block_groups[3], list)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008523 set_block_group_ro(cache);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008524 list_for_each_entry(cache, &space_info->block_groups[4], list)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008525 set_block_group_ro(cache);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008526 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008527
8528 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04008529 ret = 0;
8530error:
Chris Mason9078a3e2007-04-26 16:46:15 -04008531 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04008532 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008533}
Chris Mason6324fbf2008-03-24 15:01:59 -04008534
8535int btrfs_make_block_group(struct btrfs_trans_handle *trans,
8536 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04008537 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04008538 u64 size)
8539{
8540 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04008541 struct btrfs_root *extent_root;
8542 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04008543
8544 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04008545
Chris Mason12fcfd22009-03-24 10:24:20 -04008546 root->fs_info->last_trans_log_full_commit = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04008547
Chris Mason8f18cf12008-04-25 16:53:30 -04008548 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008549 if (!cache)
8550 return -ENOMEM;
8551
Chris Masone17cade2008-04-15 15:41:47 -04008552 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04008553 cache->key.offset = size;
Yan Zhengd2fb3432008-12-11 16:30:39 -05008554 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Josef Bacik96303082009-07-13 21:29:25 -04008555 cache->sectorsize = root->sectorsize;
Josef Bacik0af3d002010-06-21 14:48:16 -04008556 cache->fs_info = root->fs_info;
Josef Bacik96303082009-07-13 21:29:25 -04008557
8558 /*
8559 * we only want to have 32k of ram per block group for keeping track
8560 * of free space, and if we pass 1/2 of that we want to start
8561 * converting things over to using bitmaps
8562 */
8563 cache->extents_thresh = ((1024 * 32) / 2) /
8564 sizeof(struct btrfs_free_space);
Yan Zhengd2fb3432008-12-11 16:30:39 -05008565 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04008566 spin_lock_init(&cache->lock);
Josef Bacik6226cb02009-04-03 10:14:18 -04008567 spin_lock_init(&cache->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008568 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d72009-04-03 09:47:43 -04008569 INIT_LIST_HEAD(&cache->cluster_list);
Chris Mason0ef3e662008-05-24 14:04:53 -04008570
Chris Mason6324fbf2008-03-24 15:01:59 -04008571 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04008572 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
8573 cache->flags = type;
8574 btrfs_set_block_group_flags(&cache->item, type);
8575
Yan Zheng11833d62009-09-11 16:11:19 -04008576 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008577 cache->cached = BTRFS_CACHE_FINISHED;
Yan Zheng11833d62009-09-11 16:11:19 -04008578 exclude_super_stripes(root, cache);
Josef Bacik96303082009-07-13 21:29:25 -04008579
Josef Bacik817d52f2009-07-13 21:29:25 -04008580 add_new_free_space(cache, root->fs_info, chunk_offset,
8581 chunk_offset + size);
8582
Yan Zheng11833d62009-09-11 16:11:19 -04008583 free_excluded_extents(root, cache);
8584
Chris Mason6324fbf2008-03-24 15:01:59 -04008585 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
8586 &cache->space_info);
8587 BUG_ON(ret);
Josef Bacik1b2da372009-09-11 16:11:20 -04008588
8589 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008590 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008591 spin_unlock(&cache->space_info->lock);
8592
Yan, Zhengb742bb82010-05-16 10:46:24 -04008593 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008594
Josef Bacik0f9dd462008-09-23 13:14:11 -04008595 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8596 BUG_ON(ret);
Chris Masonc286ac42008-07-22 23:06:41 -04008597
Chris Mason6324fbf2008-03-24 15:01:59 -04008598 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
8599 sizeof(cache->item));
8600 BUG_ON(ret);
8601
Chris Masond18a2c42008-04-04 15:40:00 -04008602 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04008603
Chris Mason6324fbf2008-03-24 15:01:59 -04008604 return 0;
8605}
Zheng Yan1a40e232008-09-26 10:09:34 -04008606
8607int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
8608 struct btrfs_root *root, u64 group_start)
8609{
8610 struct btrfs_path *path;
8611 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04008612 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -04008613 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04008614 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04008615 struct inode *inode;
Zheng Yan1a40e232008-09-26 10:09:34 -04008616 int ret;
Josef Bacik89a55892010-10-14 14:52:27 -04008617 int factor;
Zheng Yan1a40e232008-09-26 10:09:34 -04008618
Zheng Yan1a40e232008-09-26 10:09:34 -04008619 root = root->fs_info->extent_root;
8620
8621 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
8622 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05008623 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04008624
8625 memcpy(&key, &block_group->key, sizeof(key));
Josef Bacik89a55892010-10-14 14:52:27 -04008626 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
8627 BTRFS_BLOCK_GROUP_RAID1 |
8628 BTRFS_BLOCK_GROUP_RAID10))
8629 factor = 2;
8630 else
8631 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04008632
Chris Mason44fb5512009-06-04 15:34:51 -04008633 /* make sure this block group isn't part of an allocation cluster */
8634 cluster = &root->fs_info->data_alloc_cluster;
8635 spin_lock(&cluster->refill_lock);
8636 btrfs_return_cluster_to_free_space(block_group, cluster);
8637 spin_unlock(&cluster->refill_lock);
8638
8639 /*
8640 * make sure this block group isn't part of a metadata
8641 * allocation cluster
8642 */
8643 cluster = &root->fs_info->meta_alloc_cluster;
8644 spin_lock(&cluster->refill_lock);
8645 btrfs_return_cluster_to_free_space(block_group, cluster);
8646 spin_unlock(&cluster->refill_lock);
8647
Zheng Yan1a40e232008-09-26 10:09:34 -04008648 path = btrfs_alloc_path();
8649 BUG_ON(!path);
8650
Josef Bacik0af3d002010-06-21 14:48:16 -04008651 inode = lookup_free_space_inode(root, block_group, path);
8652 if (!IS_ERR(inode)) {
8653 btrfs_orphan_add(trans, inode);
8654 clear_nlink(inode);
8655 /* One for the block groups ref */
8656 spin_lock(&block_group->lock);
8657 if (block_group->iref) {
8658 block_group->iref = 0;
8659 block_group->inode = NULL;
8660 spin_unlock(&block_group->lock);
8661 iput(inode);
8662 } else {
8663 spin_unlock(&block_group->lock);
8664 }
8665 /* One for our lookup ref */
8666 iput(inode);
8667 }
8668
8669 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
8670 key.offset = block_group->key.objectid;
8671 key.type = 0;
8672
8673 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
8674 if (ret < 0)
8675 goto out;
8676 if (ret > 0)
8677 btrfs_release_path(tree_root, path);
8678 if (ret == 0) {
8679 ret = btrfs_del_item(trans, tree_root, path);
8680 if (ret)
8681 goto out;
8682 btrfs_release_path(tree_root, path);
8683 }
8684
Yan Zheng3dfdb932009-01-21 10:49:16 -05008685 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008686 rb_erase(&block_group->cache_node,
8687 &root->fs_info->block_group_cache_tree);
Yan Zheng3dfdb932009-01-21 10:49:16 -05008688 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008689
Josef Bacik80eb2342008-10-29 14:49:05 -04008690 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04008691 /*
8692 * we must use list_del_init so people can check to see if they
8693 * are still on the list after taking the semaphore
8694 */
8695 list_del_init(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04008696 up_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008697
Josef Bacik817d52f2009-07-13 21:29:25 -04008698 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008699 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008700
8701 btrfs_remove_free_space_cache(block_group);
8702
Yan Zhengc146afa2008-11-12 14:34:12 -05008703 spin_lock(&block_group->space_info->lock);
8704 block_group->space_info->total_bytes -= block_group->key.offset;
8705 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -04008706 block_group->space_info->disk_total -= block_group->key.offset * factor;
Yan Zhengc146afa2008-11-12 14:34:12 -05008707 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04008708
Josef Bacik0af3d002010-06-21 14:48:16 -04008709 memcpy(&key, &block_group->key, sizeof(key));
8710
Chris Mason283bb192009-07-24 16:30:55 -04008711 btrfs_clear_space_info_full(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05008712
Chris Masonfa9c0d72009-04-03 09:47:43 -04008713 btrfs_put_block_group(block_group);
8714 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04008715
8716 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
8717 if (ret > 0)
8718 ret = -EIO;
8719 if (ret < 0)
8720 goto out;
8721
8722 ret = btrfs_del_item(trans, root, path);
8723out:
8724 btrfs_free_path(path);
8725 return ret;
8726}
liuboacce9522011-01-06 19:30:25 +08008727
8728int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
8729{
8730 return unpin_extent_range(root, start, end);
8731}
8732
8733int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr,
8734 u64 num_bytes)
8735{
8736 return btrfs_discard_extent(root, bytenr, num_bytes);
8737}