blob: 100e409e9053410cdf3ac0f2a5d1fcb15e3a31d0 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
Zach Brownec6b9102007-07-11 10:00:37 -040018#include <linux/sched.h>
Chris Masonedbd8d42007-12-21 16:27:24 -050019#include <linux/pagemap.h>
Chris Masonec44a352008-04-28 15:29:52 -040020#include <linux/writeback.h>
David Woodhouse21af8042008-08-12 14:13:26 +010021#include <linux/blkdev.h>
Chris Masonb7a9f292009-02-04 09:23:45 -050022#include <linux/sort.h>
Chris Mason4184ea72009-03-10 12:39:20 -040023#include <linux/rcupdate.h>
Josef Bacik817d52f2009-07-13 21:29:25 -040024#include <linux/kthread.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050026#include "compat.h"
Chris Mason74493f72007-12-11 09:25:06 -050027#include "hash.h"
Chris Masonfec577f2007-02-26 10:40:21 -050028#include "ctree.h"
29#include "disk-io.h"
30#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040031#include "transaction.h"
Chris Mason0b86a832008-03-24 15:01:56 -040032#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040033#include "locking.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040034#include "free-space-cache.h"
Chris Masonfec577f2007-02-26 10:40:21 -050035
Josef Bacikf3465ca2008-11-12 14:19:50 -050036static int update_block_group(struct btrfs_trans_handle *trans,
37 struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -040038 u64 bytenr, u64 num_bytes, int alloc);
39static int update_reserved_bytes(struct btrfs_block_group_cache *cache,
40 u64 num_bytes, int reserve, int sinfo);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040041static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
42 struct btrfs_root *root,
43 u64 bytenr, u64 num_bytes, u64 parent,
44 u64 root_objectid, u64 owner_objectid,
45 u64 owner_offset, int refs_to_drop,
46 struct btrfs_delayed_extent_op *extra_op);
47static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
48 struct extent_buffer *leaf,
49 struct btrfs_extent_item *ei);
50static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
51 struct btrfs_root *root,
52 u64 parent, u64 root_objectid,
53 u64 flags, u64 owner, u64 offset,
54 struct btrfs_key *ins, int ref_mod);
55static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
56 struct btrfs_root *root,
57 u64 parent, u64 root_objectid,
58 u64 flags, struct btrfs_disk_key *key,
59 int level, struct btrfs_key *ins);
Josef Bacik6a632092009-02-20 11:00:09 -050060static int do_chunk_alloc(struct btrfs_trans_handle *trans,
61 struct btrfs_root *extent_root, u64 alloc_bytes,
62 u64 flags, int force);
Yan Zheng11833d62009-09-11 16:11:19 -040063static int find_next_key(struct btrfs_path *path, int level,
64 struct btrfs_key *key);
Josef Bacik9ed74f22009-09-11 16:12:44 -040065static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
66 int dump_block_groups);
Josef Bacik6a632092009-02-20 11:00:09 -050067
Josef Bacik817d52f2009-07-13 21:29:25 -040068static noinline int
69block_group_cache_done(struct btrfs_block_group_cache *cache)
70{
71 smp_mb();
72 return cache->cached == BTRFS_CACHE_FINISHED;
73}
74
Josef Bacik0f9dd462008-09-23 13:14:11 -040075static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
76{
77 return (cache->flags & bits) == bits;
78}
79
Josef Bacik11dfe352009-11-13 20:12:59 +000080void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
81{
82 atomic_inc(&cache->count);
83}
84
85void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
86{
Yan, Zhengf0486c62010-05-16 10:46:25 -040087 if (atomic_dec_and_test(&cache->count)) {
88 WARN_ON(cache->pinned > 0);
89 WARN_ON(cache->reserved > 0);
90 WARN_ON(cache->reserved_pinned > 0);
Josef Bacik11dfe352009-11-13 20:12:59 +000091 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -040092 }
Josef Bacik11dfe352009-11-13 20:12:59 +000093}
94
Josef Bacik0f9dd462008-09-23 13:14:11 -040095/*
96 * this adds the block group to the fs_info rb tree for the block group
97 * cache
98 */
Christoph Hellwigb2950862008-12-02 09:54:17 -050099static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400100 struct btrfs_block_group_cache *block_group)
101{
102 struct rb_node **p;
103 struct rb_node *parent = NULL;
104 struct btrfs_block_group_cache *cache;
105
106 spin_lock(&info->block_group_cache_lock);
107 p = &info->block_group_cache_tree.rb_node;
108
109 while (*p) {
110 parent = *p;
111 cache = rb_entry(parent, struct btrfs_block_group_cache,
112 cache_node);
113 if (block_group->key.objectid < cache->key.objectid) {
114 p = &(*p)->rb_left;
115 } else if (block_group->key.objectid > cache->key.objectid) {
116 p = &(*p)->rb_right;
117 } else {
118 spin_unlock(&info->block_group_cache_lock);
119 return -EEXIST;
120 }
121 }
122
123 rb_link_node(&block_group->cache_node, parent, p);
124 rb_insert_color(&block_group->cache_node,
125 &info->block_group_cache_tree);
126 spin_unlock(&info->block_group_cache_lock);
127
128 return 0;
129}
130
131/*
132 * This will return the block group at or after bytenr if contains is 0, else
133 * it will return the block group that contains the bytenr
134 */
135static struct btrfs_block_group_cache *
136block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
137 int contains)
138{
139 struct btrfs_block_group_cache *cache, *ret = NULL;
140 struct rb_node *n;
141 u64 end, start;
142
143 spin_lock(&info->block_group_cache_lock);
144 n = info->block_group_cache_tree.rb_node;
145
146 while (n) {
147 cache = rb_entry(n, struct btrfs_block_group_cache,
148 cache_node);
149 end = cache->key.objectid + cache->key.offset - 1;
150 start = cache->key.objectid;
151
152 if (bytenr < start) {
153 if (!contains && (!ret || start < ret->key.objectid))
154 ret = cache;
155 n = n->rb_left;
156 } else if (bytenr > start) {
157 if (contains && bytenr <= end) {
158 ret = cache;
159 break;
160 }
161 n = n->rb_right;
162 } else {
163 ret = cache;
164 break;
165 }
166 }
Yan Zhengd2fb3432008-12-11 16:30:39 -0500167 if (ret)
Josef Bacik11dfe352009-11-13 20:12:59 +0000168 btrfs_get_block_group(ret);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400169 spin_unlock(&info->block_group_cache_lock);
170
171 return ret;
172}
173
Yan Zheng11833d62009-09-11 16:11:19 -0400174static int add_excluded_extent(struct btrfs_root *root,
175 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400176{
Yan Zheng11833d62009-09-11 16:11:19 -0400177 u64 end = start + num_bytes - 1;
178 set_extent_bits(&root->fs_info->freed_extents[0],
179 start, end, EXTENT_UPTODATE, GFP_NOFS);
180 set_extent_bits(&root->fs_info->freed_extents[1],
181 start, end, EXTENT_UPTODATE, GFP_NOFS);
182 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400183}
184
Yan Zheng11833d62009-09-11 16:11:19 -0400185static void free_excluded_extents(struct btrfs_root *root,
186 struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400187{
Yan Zheng11833d62009-09-11 16:11:19 -0400188 u64 start, end;
189
190 start = cache->key.objectid;
191 end = start + cache->key.offset - 1;
192
193 clear_extent_bits(&root->fs_info->freed_extents[0],
194 start, end, EXTENT_UPTODATE, GFP_NOFS);
195 clear_extent_bits(&root->fs_info->freed_extents[1],
196 start, end, EXTENT_UPTODATE, GFP_NOFS);
197}
198
199static int exclude_super_stripes(struct btrfs_root *root,
200 struct btrfs_block_group_cache *cache)
201{
Josef Bacik817d52f2009-07-13 21:29:25 -0400202 u64 bytenr;
203 u64 *logical;
204 int stripe_len;
205 int i, nr, ret;
206
Yan, Zheng06b23312009-11-26 09:31:11 +0000207 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
208 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
209 cache->bytes_super += stripe_len;
210 ret = add_excluded_extent(root, cache->key.objectid,
211 stripe_len);
212 BUG_ON(ret);
213 }
214
Josef Bacik817d52f2009-07-13 21:29:25 -0400215 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
216 bytenr = btrfs_sb_offset(i);
217 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
218 cache->key.objectid, bytenr,
219 0, &logical, &nr, &stripe_len);
220 BUG_ON(ret);
Yan Zheng11833d62009-09-11 16:11:19 -0400221
Josef Bacik817d52f2009-07-13 21:29:25 -0400222 while (nr--) {
Josef Bacik1b2da372009-09-11 16:11:20 -0400223 cache->bytes_super += stripe_len;
Yan Zheng11833d62009-09-11 16:11:19 -0400224 ret = add_excluded_extent(root, logical[nr],
225 stripe_len);
226 BUG_ON(ret);
Josef Bacik817d52f2009-07-13 21:29:25 -0400227 }
Yan Zheng11833d62009-09-11 16:11:19 -0400228
Josef Bacik817d52f2009-07-13 21:29:25 -0400229 kfree(logical);
230 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400231 return 0;
232}
233
Yan Zheng11833d62009-09-11 16:11:19 -0400234static struct btrfs_caching_control *
235get_caching_control(struct btrfs_block_group_cache *cache)
236{
237 struct btrfs_caching_control *ctl;
238
239 spin_lock(&cache->lock);
240 if (cache->cached != BTRFS_CACHE_STARTED) {
241 spin_unlock(&cache->lock);
242 return NULL;
243 }
244
Josef Bacikdde5abe2010-09-16 16:17:03 -0400245 /* We're loading it the fast way, so we don't have a caching_ctl. */
246 if (!cache->caching_ctl) {
247 spin_unlock(&cache->lock);
248 return NULL;
249 }
250
Yan Zheng11833d62009-09-11 16:11:19 -0400251 ctl = cache->caching_ctl;
252 atomic_inc(&ctl->count);
253 spin_unlock(&cache->lock);
254 return ctl;
255}
256
257static void put_caching_control(struct btrfs_caching_control *ctl)
258{
259 if (atomic_dec_and_test(&ctl->count))
260 kfree(ctl);
261}
262
Josef Bacik0f9dd462008-09-23 13:14:11 -0400263/*
264 * this is only called by cache_block_group, since we could have freed extents
265 * we need to check the pinned_extents for any extents that can't be used yet
266 * since their free space will be released as soon as the transaction commits.
267 */
Josef Bacik817d52f2009-07-13 21:29:25 -0400268static u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400269 struct btrfs_fs_info *info, u64 start, u64 end)
270{
Josef Bacik817d52f2009-07-13 21:29:25 -0400271 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400272 int ret;
273
274 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400275 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400276 &extent_start, &extent_end,
Yan Zheng11833d62009-09-11 16:11:19 -0400277 EXTENT_DIRTY | EXTENT_UPTODATE);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400278 if (ret)
279 break;
280
Yan, Zheng06b23312009-11-26 09:31:11 +0000281 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400282 start = extent_end + 1;
283 } else if (extent_start > start && extent_start < end) {
284 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400285 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500286 ret = btrfs_add_free_space(block_group, start,
287 size);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400288 BUG_ON(ret);
289 start = extent_end + 1;
290 } else {
291 break;
292 }
293 }
294
295 if (start < end) {
296 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400297 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500298 ret = btrfs_add_free_space(block_group, start, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400299 BUG_ON(ret);
300 }
301
Josef Bacik817d52f2009-07-13 21:29:25 -0400302 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400303}
304
Josef Bacik817d52f2009-07-13 21:29:25 -0400305static int caching_kthread(void *data)
Chris Masone37c9e62007-05-09 20:13:14 -0400306{
Josef Bacik817d52f2009-07-13 21:29:25 -0400307 struct btrfs_block_group_cache *block_group = data;
308 struct btrfs_fs_info *fs_info = block_group->fs_info;
Yan Zheng11833d62009-09-11 16:11:19 -0400309 struct btrfs_caching_control *caching_ctl = block_group->caching_ctl;
310 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400311 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400312 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400313 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400314 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400315 u64 last = 0;
316 u32 nritems;
317 int ret = 0;
Chris Masonf510cfe2007-10-15 16:14:48 -0400318
Chris Masone37c9e62007-05-09 20:13:14 -0400319 path = btrfs_alloc_path();
320 if (!path)
321 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -0400322
Josef Bacik817d52f2009-07-13 21:29:25 -0400323 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400324
Chris Mason5cd57b22008-06-25 16:01:30 -0400325 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400326 * We don't want to deadlock with somebody trying to allocate a new
327 * extent for the extent root while also trying to search the extent
328 * root to add free space. So we skip locking and search the commit
329 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400330 */
331 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400332 path->search_commit_root = 1;
333 path->reada = 2;
334
Yan Zhenge4404d62008-12-12 10:03:26 -0500335 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400336 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400337 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400338again:
Yan Zheng11833d62009-09-11 16:11:19 -0400339 mutex_lock(&caching_ctl->mutex);
Chris Mason013f1b12009-07-31 14:57:55 -0400340 /* need to make sure the commit_root doesn't disappear */
341 down_read(&fs_info->extent_commit_sem);
342
Yan Zheng11833d62009-09-11 16:11:19 -0400343 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400344 if (ret < 0)
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400345 goto err;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500346
Yan Zheng11833d62009-09-11 16:11:19 -0400347 leaf = path->nodes[0];
348 nritems = btrfs_header_nritems(leaf);
349
Chris Masond3977122009-01-05 21:25:51 -0500350 while (1) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400351 smp_mb();
Yan Zheng11833d62009-09-11 16:11:19 -0400352 if (fs_info->closing > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400353 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400354 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400355 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400356
Yan Zheng11833d62009-09-11 16:11:19 -0400357 if (path->slots[0] < nritems) {
358 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
359 } else {
360 ret = find_next_key(path, 0, &key);
361 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400362 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400363
Yan Zheng11833d62009-09-11 16:11:19 -0400364 caching_ctl->progress = last;
365 btrfs_release_path(extent_root, path);
366 up_read(&fs_info->extent_commit_sem);
367 mutex_unlock(&caching_ctl->mutex);
368 if (btrfs_transaction_in_commit(fs_info))
Chris Masonf36f3042009-07-30 10:04:48 -0400369 schedule_timeout(1);
Yan Zheng11833d62009-09-11 16:11:19 -0400370 else
371 cond_resched();
372 goto again;
373 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400374
Yan Zheng11833d62009-09-11 16:11:19 -0400375 if (key.objectid < block_group->key.objectid) {
376 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400377 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400378 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400379
Chris Masone37c9e62007-05-09 20:13:14 -0400380 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400381 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400382 break;
Yan7d7d6062007-09-14 16:15:28 -0400383
Yan Zheng11833d62009-09-11 16:11:19 -0400384 if (key.type == BTRFS_EXTENT_ITEM_KEY) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400385 total_found += add_new_free_space(block_group,
386 fs_info, last,
387 key.objectid);
Yan7d7d6062007-09-14 16:15:28 -0400388 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400389
Yan Zheng11833d62009-09-11 16:11:19 -0400390 if (total_found > (1024 * 1024 * 2)) {
391 total_found = 0;
392 wake_up(&caching_ctl->wait);
393 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400394 }
Chris Masone37c9e62007-05-09 20:13:14 -0400395 path->slots[0]++;
396 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400397 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400398
399 total_found += add_new_free_space(block_group, fs_info, last,
400 block_group->key.objectid +
401 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400402 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400403
404 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400405 block_group->caching_ctl = NULL;
Josef Bacik817d52f2009-07-13 21:29:25 -0400406 block_group->cached = BTRFS_CACHE_FINISHED;
407 spin_unlock(&block_group->lock);
408
Chris Mason54aa1f42007-06-22 14:16:25 -0400409err:
Chris Masone37c9e62007-05-09 20:13:14 -0400410 btrfs_free_path(path);
Yan Zheng276e6802009-07-30 09:40:40 -0400411 up_read(&fs_info->extent_commit_sem);
Josef Bacik817d52f2009-07-13 21:29:25 -0400412
Yan Zheng11833d62009-09-11 16:11:19 -0400413 free_excluded_extents(extent_root, block_group);
414
415 mutex_unlock(&caching_ctl->mutex);
416 wake_up(&caching_ctl->wait);
417
418 put_caching_control(caching_ctl);
419 atomic_dec(&block_group->space_info->caching_threads);
Josef Bacik11dfe352009-11-13 20:12:59 +0000420 btrfs_put_block_group(block_group);
421
Josef Bacik817d52f2009-07-13 21:29:25 -0400422 return 0;
423}
424
Josef Bacik9d66e232010-08-25 16:54:15 -0400425static int cache_block_group(struct btrfs_block_group_cache *cache,
426 struct btrfs_trans_handle *trans,
Josef Bacikb8399de2010-12-08 09:15:11 -0500427 struct btrfs_root *root,
Josef Bacik9d66e232010-08-25 16:54:15 -0400428 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400429{
Yan Zheng11833d62009-09-11 16:11:19 -0400430 struct btrfs_fs_info *fs_info = cache->fs_info;
431 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400432 struct task_struct *tsk;
433 int ret = 0;
434
Yan Zheng11833d62009-09-11 16:11:19 -0400435 smp_mb();
436 if (cache->cached != BTRFS_CACHE_NO)
437 return 0;
438
Josef Bacik9d66e232010-08-25 16:54:15 -0400439 /*
440 * We can't do the read from on-disk cache during a commit since we need
Josef Bacikb8399de2010-12-08 09:15:11 -0500441 * to have the normal tree locking. Also if we are currently trying to
442 * allocate blocks for the tree root we can't do the fast caching since
443 * we likely hold important locks.
Josef Bacik9d66e232010-08-25 16:54:15 -0400444 */
Josef Bacikb8399de2010-12-08 09:15:11 -0500445 if (!trans->transaction->in_commit &&
446 (root && root != root->fs_info->tree_root)) {
Josef Bacik9d66e232010-08-25 16:54:15 -0400447 spin_lock(&cache->lock);
448 if (cache->cached != BTRFS_CACHE_NO) {
449 spin_unlock(&cache->lock);
450 return 0;
451 }
452 cache->cached = BTRFS_CACHE_STARTED;
453 spin_unlock(&cache->lock);
454
455 ret = load_free_space_cache(fs_info, cache);
456
457 spin_lock(&cache->lock);
458 if (ret == 1) {
459 cache->cached = BTRFS_CACHE_FINISHED;
460 cache->last_byte_to_unpin = (u64)-1;
461 } else {
462 cache->cached = BTRFS_CACHE_NO;
463 }
464 spin_unlock(&cache->lock);
Josef Bacik3c148742011-02-02 15:53:47 +0000465 if (ret == 1) {
466 free_excluded_extents(fs_info->extent_root, cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400467 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000468 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400469 }
470
471 if (load_cache_only)
472 return 0;
473
Yan Zheng11833d62009-09-11 16:11:19 -0400474 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_KERNEL);
475 BUG_ON(!caching_ctl);
476
477 INIT_LIST_HEAD(&caching_ctl->list);
478 mutex_init(&caching_ctl->mutex);
479 init_waitqueue_head(&caching_ctl->wait);
480 caching_ctl->block_group = cache;
481 caching_ctl->progress = cache->key.objectid;
482 /* one for caching kthread, one for caching block group list */
483 atomic_set(&caching_ctl->count, 2);
484
Josef Bacik817d52f2009-07-13 21:29:25 -0400485 spin_lock(&cache->lock);
486 if (cache->cached != BTRFS_CACHE_NO) {
487 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400488 kfree(caching_ctl);
489 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400490 }
Yan Zheng11833d62009-09-11 16:11:19 -0400491 cache->caching_ctl = caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400492 cache->cached = BTRFS_CACHE_STARTED;
493 spin_unlock(&cache->lock);
494
Yan Zheng11833d62009-09-11 16:11:19 -0400495 down_write(&fs_info->extent_commit_sem);
496 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
497 up_write(&fs_info->extent_commit_sem);
498
499 atomic_inc(&cache->space_info->caching_threads);
Josef Bacik11dfe352009-11-13 20:12:59 +0000500 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400501
Josef Bacik817d52f2009-07-13 21:29:25 -0400502 tsk = kthread_run(caching_kthread, cache, "btrfs-cache-%llu\n",
503 cache->key.objectid);
504 if (IS_ERR(tsk)) {
505 ret = PTR_ERR(tsk);
506 printk(KERN_ERR "error running thread %d\n", ret);
507 BUG();
508 }
509
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400510 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400511}
512
Josef Bacik0f9dd462008-09-23 13:14:11 -0400513/*
514 * return the block group that starts at or after bytenr
515 */
Chris Masond3977122009-01-05 21:25:51 -0500516static struct btrfs_block_group_cache *
517btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400518{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400519 struct btrfs_block_group_cache *cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400520
Josef Bacik0f9dd462008-09-23 13:14:11 -0400521 cache = block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400522
Josef Bacik0f9dd462008-09-23 13:14:11 -0400523 return cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400524}
525
Josef Bacik0f9dd462008-09-23 13:14:11 -0400526/*
Sankar P9f556842009-05-14 13:52:22 -0400527 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400528 */
Chris Masond3977122009-01-05 21:25:51 -0500529struct btrfs_block_group_cache *btrfs_lookup_block_group(
530 struct btrfs_fs_info *info,
531 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400532{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400533 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -0400534
Josef Bacik0f9dd462008-09-23 13:14:11 -0400535 cache = block_group_cache_tree_search(info, bytenr, 1);
Chris Mason96b51792007-10-15 16:15:19 -0400536
Josef Bacik0f9dd462008-09-23 13:14:11 -0400537 return cache;
Chris Masonbe744172007-05-06 10:15:01 -0400538}
Chris Mason0b86a832008-03-24 15:01:56 -0400539
Josef Bacik0f9dd462008-09-23 13:14:11 -0400540static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
541 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400542{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400543 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400544 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400545
Yan, Zhengb742bb822010-05-16 10:46:24 -0400546 flags &= BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_SYSTEM |
547 BTRFS_BLOCK_GROUP_METADATA;
548
Chris Mason4184ea72009-03-10 12:39:20 -0400549 rcu_read_lock();
550 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400551 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400552 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400553 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400554 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400555 }
Chris Mason4184ea72009-03-10 12:39:20 -0400556 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400557 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400558}
559
Chris Mason4184ea72009-03-10 12:39:20 -0400560/*
561 * after adding space to the filesystem, we need to clear the full flags
562 * on all the space infos.
563 */
564void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
565{
566 struct list_head *head = &info->space_info;
567 struct btrfs_space_info *found;
568
569 rcu_read_lock();
570 list_for_each_entry_rcu(found, head, list)
571 found->full = 0;
572 rcu_read_unlock();
573}
574
Josef Bacik80eb2342008-10-29 14:49:05 -0400575static u64 div_factor(u64 num, int factor)
576{
577 if (factor == 10)
578 return num;
579 num *= factor;
580 do_div(num, 10);
581 return num;
582}
583
Chris Masone5bc2452010-10-26 13:37:56 -0400584static u64 div_factor_fine(u64 num, int factor)
585{
586 if (factor == 100)
587 return num;
588 num *= factor;
589 do_div(num, 100);
590 return num;
591}
592
Yan Zhengd2fb3432008-12-11 16:30:39 -0500593u64 btrfs_find_block_group(struct btrfs_root *root,
594 u64 search_start, u64 search_hint, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400595{
Chris Mason96b51792007-10-15 16:15:19 -0400596 struct btrfs_block_group_cache *cache;
Chris Masoncd1bc462007-04-27 10:08:34 -0400597 u64 used;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500598 u64 last = max(search_hint, search_start);
599 u64 group_start = 0;
Chris Mason31f3c992007-04-30 15:25:45 -0400600 int full_search = 0;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500601 int factor = 9;
Chris Mason0ef3e662008-05-24 14:04:53 -0400602 int wrapped = 0;
Chris Mason31f3c992007-04-30 15:25:45 -0400603again:
Zheng Yane8569812008-09-26 10:05:48 -0400604 while (1) {
605 cache = btrfs_lookup_first_block_group(root->fs_info, last);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400606 if (!cache)
Chris Masoncd1bc462007-04-27 10:08:34 -0400607 break;
Chris Mason96b51792007-10-15 16:15:19 -0400608
Chris Masonc286ac42008-07-22 23:06:41 -0400609 spin_lock(&cache->lock);
Chris Mason96b51792007-10-15 16:15:19 -0400610 last = cache->key.objectid + cache->key.offset;
611 used = btrfs_block_group_used(&cache->item);
612
Yan Zhengd2fb3432008-12-11 16:30:39 -0500613 if ((full_search || !cache->ro) &&
614 block_group_bits(cache, BTRFS_BLOCK_GROUP_METADATA)) {
Zheng Yane8569812008-09-26 10:05:48 -0400615 if (used + cache->pinned + cache->reserved <
Yan Zhengd2fb3432008-12-11 16:30:39 -0500616 div_factor(cache->key.offset, factor)) {
617 group_start = cache->key.objectid;
Chris Masonc286ac42008-07-22 23:06:41 -0400618 spin_unlock(&cache->lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -0400619 btrfs_put_block_group(cache);
Chris Mason8790d502008-04-03 16:29:03 -0400620 goto found;
621 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400622 }
Chris Masonc286ac42008-07-22 23:06:41 -0400623 spin_unlock(&cache->lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -0400624 btrfs_put_block_group(cache);
Chris Masonde428b62007-05-18 13:28:27 -0400625 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400626 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400627 if (!wrapped) {
628 last = search_start;
629 wrapped = 1;
630 goto again;
631 }
632 if (!full_search && factor < 10) {
Chris Masonbe744172007-05-06 10:15:01 -0400633 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400634 full_search = 1;
Chris Mason0ef3e662008-05-24 14:04:53 -0400635 factor = 10;
Chris Mason31f3c992007-04-30 15:25:45 -0400636 goto again;
637 }
Chris Masonbe744172007-05-06 10:15:01 -0400638found:
Yan Zhengd2fb3432008-12-11 16:30:39 -0500639 return group_start;
Chris Mason925baed2008-06-25 16:01:30 -0400640}
Josef Bacik0f9dd462008-09-23 13:14:11 -0400641
Chris Masone02119d2008-09-05 16:13:11 -0400642/* simple helper to search for an existing extent at a given offset */
Zheng Yan31840ae2008-09-23 13:14:14 -0400643int btrfs_lookup_extent(struct btrfs_root *root, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400644{
645 int ret;
646 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400647 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400648
Zheng Yan31840ae2008-09-23 13:14:14 -0400649 path = btrfs_alloc_path();
650 BUG_ON(!path);
Chris Masone02119d2008-09-05 16:13:11 -0400651 key.objectid = start;
652 key.offset = len;
653 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
654 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
655 0, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400656 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500657 return ret;
658}
659
Chris Masond8d5f3e2007-12-11 12:42:00 -0500660/*
Yan, Zhenga22285a2010-05-16 10:48:46 -0400661 * helper function to lookup reference count and flags of extent.
662 *
663 * the head node for delayed ref is used to store the sum of all the
664 * reference count modifications queued up in the rbtree. the head
665 * node may also store the extent flags to set. This way you can check
666 * to see what the reference count and extent flags would be if all of
667 * the delayed refs are not processed.
668 */
669int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
670 struct btrfs_root *root, u64 bytenr,
671 u64 num_bytes, u64 *refs, u64 *flags)
672{
673 struct btrfs_delayed_ref_head *head;
674 struct btrfs_delayed_ref_root *delayed_refs;
675 struct btrfs_path *path;
676 struct btrfs_extent_item *ei;
677 struct extent_buffer *leaf;
678 struct btrfs_key key;
679 u32 item_size;
680 u64 num_refs;
681 u64 extent_flags;
682 int ret;
683
684 path = btrfs_alloc_path();
685 if (!path)
686 return -ENOMEM;
687
688 key.objectid = bytenr;
689 key.type = BTRFS_EXTENT_ITEM_KEY;
690 key.offset = num_bytes;
691 if (!trans) {
692 path->skip_locking = 1;
693 path->search_commit_root = 1;
694 }
695again:
696 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
697 &key, path, 0, 0);
698 if (ret < 0)
699 goto out_free;
700
701 if (ret == 0) {
702 leaf = path->nodes[0];
703 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
704 if (item_size >= sizeof(*ei)) {
705 ei = btrfs_item_ptr(leaf, path->slots[0],
706 struct btrfs_extent_item);
707 num_refs = btrfs_extent_refs(leaf, ei);
708 extent_flags = btrfs_extent_flags(leaf, ei);
709 } else {
710#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
711 struct btrfs_extent_item_v0 *ei0;
712 BUG_ON(item_size != sizeof(*ei0));
713 ei0 = btrfs_item_ptr(leaf, path->slots[0],
714 struct btrfs_extent_item_v0);
715 num_refs = btrfs_extent_refs_v0(leaf, ei0);
716 /* FIXME: this isn't correct for data */
717 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
718#else
719 BUG();
720#endif
721 }
722 BUG_ON(num_refs == 0);
723 } else {
724 num_refs = 0;
725 extent_flags = 0;
726 ret = 0;
727 }
728
729 if (!trans)
730 goto out;
731
732 delayed_refs = &trans->transaction->delayed_refs;
733 spin_lock(&delayed_refs->lock);
734 head = btrfs_find_delayed_ref_head(trans, bytenr);
735 if (head) {
736 if (!mutex_trylock(&head->mutex)) {
737 atomic_inc(&head->node.refs);
738 spin_unlock(&delayed_refs->lock);
739
740 btrfs_release_path(root->fs_info->extent_root, path);
741
742 mutex_lock(&head->mutex);
743 mutex_unlock(&head->mutex);
744 btrfs_put_delayed_ref(&head->node);
745 goto again;
746 }
747 if (head->extent_op && head->extent_op->update_flags)
748 extent_flags |= head->extent_op->flags_to_set;
749 else
750 BUG_ON(num_refs == 0);
751
752 num_refs += head->node.ref_mod;
753 mutex_unlock(&head->mutex);
754 }
755 spin_unlock(&delayed_refs->lock);
756out:
757 WARN_ON(num_refs == 0);
758 if (refs)
759 *refs = num_refs;
760 if (flags)
761 *flags = extent_flags;
762out_free:
763 btrfs_free_path(path);
764 return ret;
765}
766
767/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500768 * Back reference rules. Back refs have three main goals:
769 *
770 * 1) differentiate between all holders of references to an extent so that
771 * when a reference is dropped we can make sure it was a valid reference
772 * before freeing the extent.
773 *
774 * 2) Provide enough information to quickly find the holders of an extent
775 * if we notice a given block is corrupted or bad.
776 *
777 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
778 * maintenance. This is actually the same as #2, but with a slightly
779 * different use case.
780 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400781 * There are two kinds of back refs. The implicit back refs is optimized
782 * for pointers in non-shared tree blocks. For a given pointer in a block,
783 * back refs of this kind provide information about the block's owner tree
784 * and the pointer's key. These information allow us to find the block by
785 * b-tree searching. The full back refs is for pointers in tree blocks not
786 * referenced by their owner trees. The location of tree block is recorded
787 * in the back refs. Actually the full back refs is generic, and can be
788 * used in all cases the implicit back refs is used. The major shortcoming
789 * of the full back refs is its overhead. Every time a tree block gets
790 * COWed, we have to update back refs entry for all pointers in it.
791 *
792 * For a newly allocated tree block, we use implicit back refs for
793 * pointers in it. This means most tree related operations only involve
794 * implicit back refs. For a tree block created in old transaction, the
795 * only way to drop a reference to it is COW it. So we can detect the
796 * event that tree block loses its owner tree's reference and do the
797 * back refs conversion.
798 *
799 * When a tree block is COW'd through a tree, there are four cases:
800 *
801 * The reference count of the block is one and the tree is the block's
802 * owner tree. Nothing to do in this case.
803 *
804 * The reference count of the block is one and the tree is not the
805 * block's owner tree. In this case, full back refs is used for pointers
806 * in the block. Remove these full back refs, add implicit back refs for
807 * every pointers in the new block.
808 *
809 * The reference count of the block is greater than one and the tree is
810 * the block's owner tree. In this case, implicit back refs is used for
811 * pointers in the block. Add full back refs for every pointers in the
812 * block, increase lower level extents' reference counts. The original
813 * implicit back refs are entailed to the new block.
814 *
815 * The reference count of the block is greater than one and the tree is
816 * not the block's owner tree. Add implicit back refs for every pointer in
817 * the new block, increase lower level extents' reference count.
818 *
819 * Back Reference Key composing:
820 *
821 * The key objectid corresponds to the first byte in the extent,
822 * The key type is used to differentiate between types of back refs.
823 * There are different meanings of the key offset for different types
824 * of back refs.
825 *
Chris Masond8d5f3e2007-12-11 12:42:00 -0500826 * File extents can be referenced by:
827 *
828 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -0400829 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -0500830 * - different offsets inside a file (bookend extents in file.c)
831 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400832 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500833 *
834 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -0500835 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400836 * - original offset in the file
837 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -0400838 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400839 * The key offset for the implicit back refs is hash of the first
840 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500841 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400842 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500843 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400844 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500845 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400846 * The key offset for the implicit back refs is the first byte of
847 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500848 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400849 * When a file extent is allocated, The implicit back refs is used.
850 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500851 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400852 * (root_key.objectid, inode objectid, offset in file, 1)
853 *
854 * When a file extent is removed file truncation, we find the
855 * corresponding implicit back refs and check the following fields:
856 *
857 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500858 *
859 * Btree extents can be referenced by:
860 *
861 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -0500862 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400863 * Both the implicit back refs and the full back refs for tree blocks
864 * only consist of key. The key offset for the implicit back refs is
865 * objectid of block's owner tree. The key offset for the full back refs
866 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500867 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400868 * When implicit back refs is used, information about the lowest key and
869 * level of the tree block are required. These information are stored in
870 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500871 */
Zheng Yan31840ae2008-09-23 13:14:14 -0400872
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400873#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
874static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
875 struct btrfs_root *root,
876 struct btrfs_path *path,
877 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -0500878{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400879 struct btrfs_extent_item *item;
880 struct btrfs_extent_item_v0 *ei0;
881 struct btrfs_extent_ref_v0 *ref0;
882 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -0400883 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400884 struct btrfs_key key;
885 struct btrfs_key found_key;
886 u32 new_size = sizeof(*item);
887 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -0500888 int ret;
889
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400890 leaf = path->nodes[0];
891 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -0500892
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400893 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
894 ei0 = btrfs_item_ptr(leaf, path->slots[0],
895 struct btrfs_extent_item_v0);
896 refs = btrfs_extent_refs_v0(leaf, ei0);
897
898 if (owner == (u64)-1) {
899 while (1) {
900 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
901 ret = btrfs_next_leaf(root, path);
902 if (ret < 0)
903 return ret;
904 BUG_ON(ret > 0);
905 leaf = path->nodes[0];
906 }
907 btrfs_item_key_to_cpu(leaf, &found_key,
908 path->slots[0]);
909 BUG_ON(key.objectid != found_key.objectid);
910 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
911 path->slots[0]++;
912 continue;
913 }
914 ref0 = btrfs_item_ptr(leaf, path->slots[0],
915 struct btrfs_extent_ref_v0);
916 owner = btrfs_ref_objectid_v0(leaf, ref0);
917 break;
918 }
919 }
920 btrfs_release_path(root, path);
921
922 if (owner < BTRFS_FIRST_FREE_OBJECTID)
923 new_size += sizeof(*bi);
924
925 new_size -= sizeof(*ei0);
926 ret = btrfs_search_slot(trans, root, &key, path,
927 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -0400928 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400929 return ret;
930 BUG_ON(ret);
931
932 ret = btrfs_extend_item(trans, root, path, new_size);
933 BUG_ON(ret);
934
935 leaf = path->nodes[0];
936 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
937 btrfs_set_extent_refs(leaf, item, refs);
938 /* FIXME: get real generation */
939 btrfs_set_extent_generation(leaf, item, 0);
940 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
941 btrfs_set_extent_flags(leaf, item,
942 BTRFS_EXTENT_FLAG_TREE_BLOCK |
943 BTRFS_BLOCK_FLAG_FULL_BACKREF);
944 bi = (struct btrfs_tree_block_info *)(item + 1);
945 /* FIXME: get first key of the block */
946 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
947 btrfs_set_tree_block_level(leaf, bi, (int)owner);
948 } else {
949 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
950 }
951 btrfs_mark_buffer_dirty(leaf);
952 return 0;
953}
954#endif
955
956static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
957{
958 u32 high_crc = ~(u32)0;
959 u32 low_crc = ~(u32)0;
960 __le64 lenum;
961
962 lenum = cpu_to_le64(root_objectid);
David Woodhouse163e7832009-04-19 13:02:41 +0100963 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400964 lenum = cpu_to_le64(owner);
David Woodhouse163e7832009-04-19 13:02:41 +0100965 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400966 lenum = cpu_to_le64(offset);
David Woodhouse163e7832009-04-19 13:02:41 +0100967 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400968
969 return ((u64)high_crc << 31) ^ (u64)low_crc;
970}
971
972static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
973 struct btrfs_extent_data_ref *ref)
974{
975 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
976 btrfs_extent_data_ref_objectid(leaf, ref),
977 btrfs_extent_data_ref_offset(leaf, ref));
978}
979
980static int match_extent_data_ref(struct extent_buffer *leaf,
981 struct btrfs_extent_data_ref *ref,
982 u64 root_objectid, u64 owner, u64 offset)
983{
984 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
985 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
986 btrfs_extent_data_ref_offset(leaf, ref) != offset)
987 return 0;
988 return 1;
989}
990
991static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
992 struct btrfs_root *root,
993 struct btrfs_path *path,
994 u64 bytenr, u64 parent,
995 u64 root_objectid,
996 u64 owner, u64 offset)
997{
998 struct btrfs_key key;
999 struct btrfs_extent_data_ref *ref;
1000 struct extent_buffer *leaf;
1001 u32 nritems;
1002 int ret;
1003 int recow;
1004 int err = -ENOENT;
1005
1006 key.objectid = bytenr;
1007 if (parent) {
1008 key.type = BTRFS_SHARED_DATA_REF_KEY;
1009 key.offset = parent;
1010 } else {
1011 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1012 key.offset = hash_extent_data_ref(root_objectid,
1013 owner, offset);
1014 }
1015again:
1016 recow = 0;
1017 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1018 if (ret < 0) {
1019 err = ret;
1020 goto fail;
1021 }
1022
1023 if (parent) {
1024 if (!ret)
1025 return 0;
1026#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1027 key.type = BTRFS_EXTENT_REF_V0_KEY;
1028 btrfs_release_path(root, path);
1029 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1030 if (ret < 0) {
1031 err = ret;
1032 goto fail;
1033 }
1034 if (!ret)
1035 return 0;
1036#endif
1037 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001038 }
1039
1040 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001041 nritems = btrfs_header_nritems(leaf);
1042 while (1) {
1043 if (path->slots[0] >= nritems) {
1044 ret = btrfs_next_leaf(root, path);
1045 if (ret < 0)
1046 err = ret;
1047 if (ret)
1048 goto fail;
1049
1050 leaf = path->nodes[0];
1051 nritems = btrfs_header_nritems(leaf);
1052 recow = 1;
1053 }
1054
1055 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1056 if (key.objectid != bytenr ||
1057 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1058 goto fail;
1059
1060 ref = btrfs_item_ptr(leaf, path->slots[0],
1061 struct btrfs_extent_data_ref);
1062
1063 if (match_extent_data_ref(leaf, ref, root_objectid,
1064 owner, offset)) {
1065 if (recow) {
1066 btrfs_release_path(root, path);
1067 goto again;
1068 }
1069 err = 0;
1070 break;
1071 }
1072 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001073 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001074fail:
1075 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001076}
1077
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001078static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1079 struct btrfs_root *root,
1080 struct btrfs_path *path,
1081 u64 bytenr, u64 parent,
1082 u64 root_objectid, u64 owner,
1083 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001084{
1085 struct btrfs_key key;
1086 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001087 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001088 u32 num_refs;
1089 int ret;
1090
1091 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001092 if (parent) {
1093 key.type = BTRFS_SHARED_DATA_REF_KEY;
1094 key.offset = parent;
1095 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001096 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001097 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1098 key.offset = hash_extent_data_ref(root_objectid,
1099 owner, offset);
1100 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001101 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001102
1103 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1104 if (ret && ret != -EEXIST)
1105 goto fail;
1106
1107 leaf = path->nodes[0];
1108 if (parent) {
1109 struct btrfs_shared_data_ref *ref;
1110 ref = btrfs_item_ptr(leaf, path->slots[0],
1111 struct btrfs_shared_data_ref);
1112 if (ret == 0) {
1113 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1114 } else {
1115 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1116 num_refs += refs_to_add;
1117 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1118 }
1119 } else {
1120 struct btrfs_extent_data_ref *ref;
1121 while (ret == -EEXIST) {
1122 ref = btrfs_item_ptr(leaf, path->slots[0],
1123 struct btrfs_extent_data_ref);
1124 if (match_extent_data_ref(leaf, ref, root_objectid,
1125 owner, offset))
1126 break;
1127 btrfs_release_path(root, path);
1128 key.offset++;
1129 ret = btrfs_insert_empty_item(trans, root, path, &key,
1130 size);
1131 if (ret && ret != -EEXIST)
1132 goto fail;
1133
1134 leaf = path->nodes[0];
1135 }
1136 ref = btrfs_item_ptr(leaf, path->slots[0],
1137 struct btrfs_extent_data_ref);
1138 if (ret == 0) {
1139 btrfs_set_extent_data_ref_root(leaf, ref,
1140 root_objectid);
1141 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1142 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1143 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1144 } else {
1145 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1146 num_refs += refs_to_add;
1147 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1148 }
1149 }
1150 btrfs_mark_buffer_dirty(leaf);
1151 ret = 0;
1152fail:
Chris Mason7bb86312007-12-11 09:25:06 -05001153 btrfs_release_path(root, path);
1154 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001155}
1156
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001157static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1158 struct btrfs_root *root,
1159 struct btrfs_path *path,
1160 int refs_to_drop)
Zheng Yan31840ae2008-09-23 13:14:14 -04001161{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001162 struct btrfs_key key;
1163 struct btrfs_extent_data_ref *ref1 = NULL;
1164 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001165 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001166 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001167 int ret = 0;
1168
1169 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001170 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1171
1172 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1173 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1174 struct btrfs_extent_data_ref);
1175 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1176 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1177 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1178 struct btrfs_shared_data_ref);
1179 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1180#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1181 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1182 struct btrfs_extent_ref_v0 *ref0;
1183 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1184 struct btrfs_extent_ref_v0);
1185 num_refs = btrfs_ref_count_v0(leaf, ref0);
1186#endif
1187 } else {
1188 BUG();
1189 }
1190
Chris Mason56bec292009-03-13 10:10:06 -04001191 BUG_ON(num_refs < refs_to_drop);
1192 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001193
Zheng Yan31840ae2008-09-23 13:14:14 -04001194 if (num_refs == 0) {
1195 ret = btrfs_del_item(trans, root, path);
1196 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001197 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1198 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1199 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1200 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1201#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1202 else {
1203 struct btrfs_extent_ref_v0 *ref0;
1204 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1205 struct btrfs_extent_ref_v0);
1206 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1207 }
1208#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001209 btrfs_mark_buffer_dirty(leaf);
1210 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001211 return ret;
1212}
1213
1214static noinline u32 extent_data_ref_count(struct btrfs_root *root,
1215 struct btrfs_path *path,
1216 struct btrfs_extent_inline_ref *iref)
1217{
1218 struct btrfs_key key;
1219 struct extent_buffer *leaf;
1220 struct btrfs_extent_data_ref *ref1;
1221 struct btrfs_shared_data_ref *ref2;
1222 u32 num_refs = 0;
1223
1224 leaf = path->nodes[0];
1225 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1226 if (iref) {
1227 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1228 BTRFS_EXTENT_DATA_REF_KEY) {
1229 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1230 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1231 } else {
1232 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1233 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1234 }
1235 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1236 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1237 struct btrfs_extent_data_ref);
1238 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1239 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1240 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1241 struct btrfs_shared_data_ref);
1242 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1243#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1244 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1245 struct btrfs_extent_ref_v0 *ref0;
1246 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1247 struct btrfs_extent_ref_v0);
1248 num_refs = btrfs_ref_count_v0(leaf, ref0);
1249#endif
1250 } else {
1251 WARN_ON(1);
1252 }
1253 return num_refs;
1254}
1255
1256static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1257 struct btrfs_root *root,
1258 struct btrfs_path *path,
1259 u64 bytenr, u64 parent,
1260 u64 root_objectid)
1261{
1262 struct btrfs_key key;
1263 int ret;
1264
1265 key.objectid = bytenr;
1266 if (parent) {
1267 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1268 key.offset = parent;
1269 } else {
1270 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1271 key.offset = root_objectid;
1272 }
1273
1274 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1275 if (ret > 0)
1276 ret = -ENOENT;
1277#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1278 if (ret == -ENOENT && parent) {
1279 btrfs_release_path(root, path);
1280 key.type = BTRFS_EXTENT_REF_V0_KEY;
1281 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1282 if (ret > 0)
1283 ret = -ENOENT;
1284 }
1285#endif
1286 return ret;
1287}
1288
1289static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1290 struct btrfs_root *root,
1291 struct btrfs_path *path,
1292 u64 bytenr, u64 parent,
1293 u64 root_objectid)
1294{
1295 struct btrfs_key key;
1296 int ret;
1297
1298 key.objectid = bytenr;
1299 if (parent) {
1300 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1301 key.offset = parent;
1302 } else {
1303 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1304 key.offset = root_objectid;
1305 }
1306
1307 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04001308 btrfs_release_path(root, path);
1309 return ret;
1310}
1311
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001312static inline int extent_ref_type(u64 parent, u64 owner)
1313{
1314 int type;
1315 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1316 if (parent > 0)
1317 type = BTRFS_SHARED_BLOCK_REF_KEY;
1318 else
1319 type = BTRFS_TREE_BLOCK_REF_KEY;
1320 } else {
1321 if (parent > 0)
1322 type = BTRFS_SHARED_DATA_REF_KEY;
1323 else
1324 type = BTRFS_EXTENT_DATA_REF_KEY;
1325 }
1326 return type;
1327}
1328
Yan Zheng2c47e6052009-06-27 21:07:35 -04001329static int find_next_key(struct btrfs_path *path, int level,
1330 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001331
1332{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001333 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001334 if (!path->nodes[level])
1335 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001336 if (path->slots[level] + 1 >=
1337 btrfs_header_nritems(path->nodes[level]))
1338 continue;
1339 if (level == 0)
1340 btrfs_item_key_to_cpu(path->nodes[level], key,
1341 path->slots[level] + 1);
1342 else
1343 btrfs_node_key_to_cpu(path->nodes[level], key,
1344 path->slots[level] + 1);
1345 return 0;
1346 }
1347 return 1;
1348}
1349
1350/*
1351 * look for inline back ref. if back ref is found, *ref_ret is set
1352 * to the address of inline back ref, and 0 is returned.
1353 *
1354 * if back ref isn't found, *ref_ret is set to the address where it
1355 * should be inserted, and -ENOENT is returned.
1356 *
1357 * if insert is true and there are too many inline back refs, the path
1358 * points to the extent item, and -EAGAIN is returned.
1359 *
1360 * NOTE: inline back refs are ordered in the same way that back ref
1361 * items in the tree are ordered.
1362 */
1363static noinline_for_stack
1364int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1365 struct btrfs_root *root,
1366 struct btrfs_path *path,
1367 struct btrfs_extent_inline_ref **ref_ret,
1368 u64 bytenr, u64 num_bytes,
1369 u64 parent, u64 root_objectid,
1370 u64 owner, u64 offset, int insert)
1371{
1372 struct btrfs_key key;
1373 struct extent_buffer *leaf;
1374 struct btrfs_extent_item *ei;
1375 struct btrfs_extent_inline_ref *iref;
1376 u64 flags;
1377 u64 item_size;
1378 unsigned long ptr;
1379 unsigned long end;
1380 int extra_size;
1381 int type;
1382 int want;
1383 int ret;
1384 int err = 0;
1385
1386 key.objectid = bytenr;
1387 key.type = BTRFS_EXTENT_ITEM_KEY;
1388 key.offset = num_bytes;
1389
1390 want = extent_ref_type(parent, owner);
1391 if (insert) {
1392 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001393 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001394 } else
1395 extra_size = -1;
1396 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1397 if (ret < 0) {
1398 err = ret;
1399 goto out;
1400 }
1401 BUG_ON(ret);
1402
1403 leaf = path->nodes[0];
1404 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1405#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1406 if (item_size < sizeof(*ei)) {
1407 if (!insert) {
1408 err = -ENOENT;
1409 goto out;
1410 }
1411 ret = convert_extent_item_v0(trans, root, path, owner,
1412 extra_size);
1413 if (ret < 0) {
1414 err = ret;
1415 goto out;
1416 }
1417 leaf = path->nodes[0];
1418 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1419 }
1420#endif
1421 BUG_ON(item_size < sizeof(*ei));
1422
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001423 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1424 flags = btrfs_extent_flags(leaf, ei);
1425
1426 ptr = (unsigned long)(ei + 1);
1427 end = (unsigned long)ei + item_size;
1428
1429 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
1430 ptr += sizeof(struct btrfs_tree_block_info);
1431 BUG_ON(ptr > end);
1432 } else {
1433 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_DATA));
1434 }
1435
1436 err = -ENOENT;
1437 while (1) {
1438 if (ptr >= end) {
1439 WARN_ON(ptr > end);
1440 break;
1441 }
1442 iref = (struct btrfs_extent_inline_ref *)ptr;
1443 type = btrfs_extent_inline_ref_type(leaf, iref);
1444 if (want < type)
1445 break;
1446 if (want > type) {
1447 ptr += btrfs_extent_inline_ref_size(type);
1448 continue;
1449 }
1450
1451 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1452 struct btrfs_extent_data_ref *dref;
1453 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1454 if (match_extent_data_ref(leaf, dref, root_objectid,
1455 owner, offset)) {
1456 err = 0;
1457 break;
1458 }
1459 if (hash_extent_data_ref_item(leaf, dref) <
1460 hash_extent_data_ref(root_objectid, owner, offset))
1461 break;
1462 } else {
1463 u64 ref_offset;
1464 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1465 if (parent > 0) {
1466 if (parent == ref_offset) {
1467 err = 0;
1468 break;
1469 }
1470 if (ref_offset < parent)
1471 break;
1472 } else {
1473 if (root_objectid == ref_offset) {
1474 err = 0;
1475 break;
1476 }
1477 if (ref_offset < root_objectid)
1478 break;
1479 }
1480 }
1481 ptr += btrfs_extent_inline_ref_size(type);
1482 }
1483 if (err == -ENOENT && insert) {
1484 if (item_size + extra_size >=
1485 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1486 err = -EAGAIN;
1487 goto out;
1488 }
1489 /*
1490 * To add new inline back ref, we have to make sure
1491 * there is no corresponding back ref item.
1492 * For simplicity, we just do not add new inline back
1493 * ref if there is any kind of item for this block
1494 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001495 if (find_next_key(path, 0, &key) == 0 &&
1496 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001497 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001498 err = -EAGAIN;
1499 goto out;
1500 }
1501 }
1502 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1503out:
Yan Zheng85d41982009-06-11 08:51:10 -04001504 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001505 path->keep_locks = 0;
1506 btrfs_unlock_up_safe(path, 1);
1507 }
1508 return err;
1509}
1510
1511/*
1512 * helper to add new inline back ref
1513 */
1514static noinline_for_stack
1515int setup_inline_extent_backref(struct btrfs_trans_handle *trans,
1516 struct btrfs_root *root,
1517 struct btrfs_path *path,
1518 struct btrfs_extent_inline_ref *iref,
1519 u64 parent, u64 root_objectid,
1520 u64 owner, u64 offset, int refs_to_add,
1521 struct btrfs_delayed_extent_op *extent_op)
1522{
1523 struct extent_buffer *leaf;
1524 struct btrfs_extent_item *ei;
1525 unsigned long ptr;
1526 unsigned long end;
1527 unsigned long item_offset;
1528 u64 refs;
1529 int size;
1530 int type;
1531 int ret;
1532
1533 leaf = path->nodes[0];
1534 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1535 item_offset = (unsigned long)iref - (unsigned long)ei;
1536
1537 type = extent_ref_type(parent, owner);
1538 size = btrfs_extent_inline_ref_size(type);
1539
1540 ret = btrfs_extend_item(trans, root, path, size);
1541 BUG_ON(ret);
1542
1543 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1544 refs = btrfs_extent_refs(leaf, ei);
1545 refs += refs_to_add;
1546 btrfs_set_extent_refs(leaf, ei, refs);
1547 if (extent_op)
1548 __run_delayed_extent_op(extent_op, leaf, ei);
1549
1550 ptr = (unsigned long)ei + item_offset;
1551 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1552 if (ptr < end - size)
1553 memmove_extent_buffer(leaf, ptr + size, ptr,
1554 end - size - ptr);
1555
1556 iref = (struct btrfs_extent_inline_ref *)ptr;
1557 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1558 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1559 struct btrfs_extent_data_ref *dref;
1560 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1561 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1562 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1563 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1564 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1565 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1566 struct btrfs_shared_data_ref *sref;
1567 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1568 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1569 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1570 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1571 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1572 } else {
1573 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1574 }
1575 btrfs_mark_buffer_dirty(leaf);
1576 return 0;
1577}
1578
1579static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1580 struct btrfs_root *root,
1581 struct btrfs_path *path,
1582 struct btrfs_extent_inline_ref **ref_ret,
1583 u64 bytenr, u64 num_bytes, u64 parent,
1584 u64 root_objectid, u64 owner, u64 offset)
1585{
1586 int ret;
1587
1588 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1589 bytenr, num_bytes, parent,
1590 root_objectid, owner, offset, 0);
1591 if (ret != -ENOENT)
1592 return ret;
1593
1594 btrfs_release_path(root, path);
1595 *ref_ret = NULL;
1596
1597 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1598 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1599 root_objectid);
1600 } else {
1601 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1602 root_objectid, owner, offset);
1603 }
1604 return ret;
1605}
1606
1607/*
1608 * helper to update/remove inline back ref
1609 */
1610static noinline_for_stack
1611int update_inline_extent_backref(struct btrfs_trans_handle *trans,
1612 struct btrfs_root *root,
1613 struct btrfs_path *path,
1614 struct btrfs_extent_inline_ref *iref,
1615 int refs_to_mod,
1616 struct btrfs_delayed_extent_op *extent_op)
1617{
1618 struct extent_buffer *leaf;
1619 struct btrfs_extent_item *ei;
1620 struct btrfs_extent_data_ref *dref = NULL;
1621 struct btrfs_shared_data_ref *sref = NULL;
1622 unsigned long ptr;
1623 unsigned long end;
1624 u32 item_size;
1625 int size;
1626 int type;
1627 int ret;
1628 u64 refs;
1629
1630 leaf = path->nodes[0];
1631 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1632 refs = btrfs_extent_refs(leaf, ei);
1633 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1634 refs += refs_to_mod;
1635 btrfs_set_extent_refs(leaf, ei, refs);
1636 if (extent_op)
1637 __run_delayed_extent_op(extent_op, leaf, ei);
1638
1639 type = btrfs_extent_inline_ref_type(leaf, iref);
1640
1641 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1642 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1643 refs = btrfs_extent_data_ref_count(leaf, dref);
1644 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1645 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1646 refs = btrfs_shared_data_ref_count(leaf, sref);
1647 } else {
1648 refs = 1;
1649 BUG_ON(refs_to_mod != -1);
1650 }
1651
1652 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1653 refs += refs_to_mod;
1654
1655 if (refs > 0) {
1656 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1657 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1658 else
1659 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1660 } else {
1661 size = btrfs_extent_inline_ref_size(type);
1662 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1663 ptr = (unsigned long)iref;
1664 end = (unsigned long)ei + item_size;
1665 if (ptr + size < end)
1666 memmove_extent_buffer(leaf, ptr, ptr + size,
1667 end - ptr - size);
1668 item_size -= size;
1669 ret = btrfs_truncate_item(trans, root, path, item_size, 1);
1670 BUG_ON(ret);
1671 }
1672 btrfs_mark_buffer_dirty(leaf);
1673 return 0;
1674}
1675
1676static noinline_for_stack
1677int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1678 struct btrfs_root *root,
1679 struct btrfs_path *path,
1680 u64 bytenr, u64 num_bytes, u64 parent,
1681 u64 root_objectid, u64 owner,
1682 u64 offset, int refs_to_add,
1683 struct btrfs_delayed_extent_op *extent_op)
1684{
1685 struct btrfs_extent_inline_ref *iref;
1686 int ret;
1687
1688 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1689 bytenr, num_bytes, parent,
1690 root_objectid, owner, offset, 1);
1691 if (ret == 0) {
1692 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
1693 ret = update_inline_extent_backref(trans, root, path, iref,
1694 refs_to_add, extent_op);
1695 } else if (ret == -ENOENT) {
1696 ret = setup_inline_extent_backref(trans, root, path, iref,
1697 parent, root_objectid,
1698 owner, offset, refs_to_add,
1699 extent_op);
1700 }
1701 return ret;
1702}
1703
1704static int insert_extent_backref(struct btrfs_trans_handle *trans,
1705 struct btrfs_root *root,
1706 struct btrfs_path *path,
1707 u64 bytenr, u64 parent, u64 root_objectid,
1708 u64 owner, u64 offset, int refs_to_add)
1709{
1710 int ret;
1711 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1712 BUG_ON(refs_to_add != 1);
1713 ret = insert_tree_block_ref(trans, root, path, bytenr,
1714 parent, root_objectid);
1715 } else {
1716 ret = insert_extent_data_ref(trans, root, path, bytenr,
1717 parent, root_objectid,
1718 owner, offset, refs_to_add);
1719 }
1720 return ret;
1721}
1722
1723static int remove_extent_backref(struct btrfs_trans_handle *trans,
1724 struct btrfs_root *root,
1725 struct btrfs_path *path,
1726 struct btrfs_extent_inline_ref *iref,
1727 int refs_to_drop, int is_data)
1728{
1729 int ret;
1730
1731 BUG_ON(!is_data && refs_to_drop != 1);
1732 if (iref) {
1733 ret = update_inline_extent_backref(trans, root, path, iref,
1734 -refs_to_drop, NULL);
1735 } else if (is_data) {
1736 ret = remove_extent_data_ref(trans, root, path, refs_to_drop);
1737 } else {
1738 ret = btrfs_del_item(trans, root, path);
1739 }
1740 return ret;
1741}
1742
Chris Mason15916de2008-11-19 21:17:22 -05001743static void btrfs_issue_discard(struct block_device *bdev,
1744 u64 start, u64 len)
1745{
Christoph 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 Masonfa9c0d792009-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, Zhengb742bb822010-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, Zhengb742bb822010-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, Zhengb742bb822010-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, Zhengb742bb822010-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, Zhengb742bb822010-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, Zhengb742bb822010-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, Zhengb742bb822010-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, Zhengb742bb822010-05-16 10:46:24 -04003091{
3092 u64 flags;
Josef Bacik6a632092009-02-20 11:00:09 -05003093
Yan, Zhengb742bb822010-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 Bacikab6e24102010-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 Bacikab6e24102010-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;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003346 int pause = 1;
Chris Masonbf9022e2010-10-26 13:40:45 -04003347 int nr_pages = (2 * 1024 * 1024) >> PAGE_CACHE_SHIFT;
Josef Bacikb1953bc2011-01-21 21:10:01 +00003348 int loops = 0;
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;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003355
3356 if (reserved == 0)
3357 return 0;
3358
3359 max_reclaim = min(reserved, to_reclaim);
3360
Josef Bacikb1953bc2011-01-21 21:10:01 +00003361 while (loops < 1024) {
Chris Masonbf9022e2010-10-26 13:40:45 -04003362 /* have the flusher threads jump in and do some IO */
3363 smp_mb();
3364 nr_pages = min_t(unsigned long, nr_pages,
3365 root->fs_info->delalloc_bytes >> PAGE_CACHE_SHIFT);
3366 writeback_inodes_sb_nr_if_idle(root->fs_info->sb, nr_pages);
Yan, Zheng5da9d012010-05-16 10:46:25 -04003367
Josef Bacik0019f102010-10-15 15:18:40 -04003368 spin_lock(&space_info->lock);
Josef Bacikb1953bc2011-01-21 21:10:01 +00003369 if (reserved > space_info->bytes_reserved) {
3370 loops = 0;
Josef Bacik0019f102010-10-15 15:18:40 -04003371 reclaimed += reserved - space_info->bytes_reserved;
Josef Bacikb1953bc2011-01-21 21:10:01 +00003372 } else {
3373 loops++;
3374 }
Josef Bacik0019f102010-10-15 15:18:40 -04003375 reserved = space_info->bytes_reserved;
3376 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04003377
3378 if (reserved == 0 || reclaimed >= max_reclaim)
3379 break;
3380
3381 if (trans && trans->transaction->blocked)
3382 return -EAGAIN;
Chris Masonbf9022e2010-10-26 13:40:45 -04003383
3384 __set_current_state(TASK_INTERRUPTIBLE);
Josef Bacikb1953bc2011-01-21 21:10:01 +00003385 time_left = schedule_timeout(pause);
3386
3387 /* We were interrupted, exit */
3388 if (time_left)
3389 break;
3390
Chris Masonbf9022e2010-10-26 13:40:45 -04003391 pause <<= 1;
3392 if (pause > HZ / 10)
3393 pause = HZ / 10;
3394
Yan, Zheng5da9d012010-05-16 10:46:25 -04003395 }
3396 return reclaimed >= to_reclaim;
3397}
3398
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003399/*
3400 * Retries tells us how many times we've called reserve_metadata_bytes. The
3401 * idea is if this is the first call (retries == 0) then we will add to our
3402 * reserved count if we can't make the allocation in order to hold our place
3403 * while we go and try and free up space. That way for retries > 1 we don't try
3404 * and add space, we just check to see if the amount of unused space is >= the
3405 * total space, meaning that our reservation is valid.
3406 *
3407 * However if we don't intend to retry this reservation, pass -1 as retries so
3408 * that it short circuits this logic.
3409 */
3410static int reserve_metadata_bytes(struct btrfs_trans_handle *trans,
3411 struct btrfs_root *root,
3412 struct btrfs_block_rsv *block_rsv,
3413 u64 orig_bytes, int flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003414{
3415 struct btrfs_space_info *space_info = block_rsv->space_info;
3416 u64 unused;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003417 u64 num_bytes = orig_bytes;
3418 int retries = 0;
3419 int ret = 0;
3420 bool reserved = false;
Josef Bacik38227932010-10-26 12:52:53 -04003421 bool committed = false;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003422
3423again:
3424 ret = -ENOSPC;
3425 if (reserved)
3426 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003427
3428 spin_lock(&space_info->lock);
3429 unused = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik6d487552010-10-15 15:13:32 -04003430 space_info->bytes_pinned + space_info->bytes_readonly +
3431 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003432
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003433 /*
3434 * The idea here is that we've not already over-reserved the block group
3435 * then we can go ahead and save our reservation first and then start
3436 * flushing if we need to. Otherwise if we've already overcommitted
3437 * lets start flushing stuff first and then come back and try to make
3438 * our reservation.
3439 */
3440 if (unused <= space_info->total_bytes) {
Arne Jansen6f334342010-11-12 23:17:56 +00003441 unused = space_info->total_bytes - unused;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003442 if (unused >= num_bytes) {
3443 if (!reserved)
3444 space_info->bytes_reserved += orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003445 ret = 0;
3446 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003447 /*
3448 * Ok set num_bytes to orig_bytes since we aren't
3449 * overocmmitted, this way we only try and reclaim what
3450 * we need.
3451 */
3452 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003453 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003454 } else {
3455 /*
3456 * Ok we're over committed, set num_bytes to the overcommitted
3457 * amount plus the amount of bytes that we need for this
3458 * reservation.
3459 */
3460 num_bytes = unused - space_info->total_bytes +
3461 (orig_bytes * (retries + 1));
Yan, Zhengf0486c62010-05-16 10:46:25 -04003462 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003463
3464 /*
3465 * Couldn't make our reservation, save our place so while we're trying
3466 * to reclaim space we can actually use it instead of somebody else
3467 * stealing it from us.
3468 */
3469 if (ret && !reserved) {
3470 space_info->bytes_reserved += orig_bytes;
3471 reserved = true;
3472 }
3473
Yan, Zhengf0486c62010-05-16 10:46:25 -04003474 spin_unlock(&space_info->lock);
3475
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003476 if (!ret)
3477 return 0;
3478
3479 if (!flush)
3480 goto out;
3481
3482 /*
3483 * We do synchronous shrinking since we don't actually unreserve
3484 * metadata until after the IO is completed.
3485 */
3486 ret = shrink_delalloc(trans, root, num_bytes, 1);
3487 if (ret > 0)
3488 return 0;
3489 else if (ret < 0)
3490 goto out;
3491
3492 /*
3493 * So if we were overcommitted it's possible that somebody else flushed
3494 * out enough space and we simply didn't have enough space to reclaim,
3495 * so go back around and try again.
3496 */
3497 if (retries < 2) {
3498 retries++;
3499 goto again;
3500 }
3501
3502 spin_lock(&space_info->lock);
3503 /*
3504 * Not enough space to be reclaimed, don't bother committing the
3505 * transaction.
3506 */
3507 if (space_info->bytes_pinned < orig_bytes)
3508 ret = -ENOSPC;
3509 spin_unlock(&space_info->lock);
3510 if (ret)
3511 goto out;
3512
3513 ret = -EAGAIN;
Josef Bacik38227932010-10-26 12:52:53 -04003514 if (trans || committed)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003515 goto out;
3516
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003517 ret = -ENOSPC;
3518 trans = btrfs_join_transaction(root, 1);
3519 if (IS_ERR(trans))
3520 goto out;
3521 ret = btrfs_commit_transaction(trans, root);
Josef Bacik38227932010-10-26 12:52:53 -04003522 if (!ret) {
3523 trans = NULL;
3524 committed = true;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003525 goto again;
Josef Bacik38227932010-10-26 12:52:53 -04003526 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003527
3528out:
3529 if (reserved) {
3530 spin_lock(&space_info->lock);
3531 space_info->bytes_reserved -= orig_bytes;
3532 spin_unlock(&space_info->lock);
3533 }
3534
Yan, Zhengf0486c62010-05-16 10:46:25 -04003535 return ret;
3536}
3537
3538static struct btrfs_block_rsv *get_block_rsv(struct btrfs_trans_handle *trans,
3539 struct btrfs_root *root)
3540{
3541 struct btrfs_block_rsv *block_rsv;
3542 if (root->ref_cows)
3543 block_rsv = trans->block_rsv;
3544 else
3545 block_rsv = root->block_rsv;
3546
3547 if (!block_rsv)
3548 block_rsv = &root->fs_info->empty_block_rsv;
3549
3550 return block_rsv;
3551}
3552
3553static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
3554 u64 num_bytes)
3555{
3556 int ret = -ENOSPC;
3557 spin_lock(&block_rsv->lock);
3558 if (block_rsv->reserved >= num_bytes) {
3559 block_rsv->reserved -= num_bytes;
3560 if (block_rsv->reserved < block_rsv->size)
3561 block_rsv->full = 0;
3562 ret = 0;
3563 }
3564 spin_unlock(&block_rsv->lock);
3565 return ret;
3566}
3567
3568static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
3569 u64 num_bytes, int update_size)
3570{
3571 spin_lock(&block_rsv->lock);
3572 block_rsv->reserved += num_bytes;
3573 if (update_size)
3574 block_rsv->size += num_bytes;
3575 else if (block_rsv->reserved >= block_rsv->size)
3576 block_rsv->full = 1;
3577 spin_unlock(&block_rsv->lock);
3578}
3579
3580void block_rsv_release_bytes(struct btrfs_block_rsv *block_rsv,
3581 struct btrfs_block_rsv *dest, u64 num_bytes)
3582{
3583 struct btrfs_space_info *space_info = block_rsv->space_info;
3584
3585 spin_lock(&block_rsv->lock);
3586 if (num_bytes == (u64)-1)
3587 num_bytes = block_rsv->size;
3588 block_rsv->size -= num_bytes;
3589 if (block_rsv->reserved >= block_rsv->size) {
3590 num_bytes = block_rsv->reserved - block_rsv->size;
3591 block_rsv->reserved = block_rsv->size;
3592 block_rsv->full = 1;
3593 } else {
3594 num_bytes = 0;
3595 }
3596 spin_unlock(&block_rsv->lock);
3597
3598 if (num_bytes > 0) {
3599 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00003600 spin_lock(&dest->lock);
3601 if (!dest->full) {
3602 u64 bytes_to_add;
3603
3604 bytes_to_add = dest->size - dest->reserved;
3605 bytes_to_add = min(num_bytes, bytes_to_add);
3606 dest->reserved += bytes_to_add;
3607 if (dest->reserved >= dest->size)
3608 dest->full = 1;
3609 num_bytes -= bytes_to_add;
3610 }
3611 spin_unlock(&dest->lock);
3612 }
3613 if (num_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04003614 spin_lock(&space_info->lock);
3615 space_info->bytes_reserved -= num_bytes;
3616 spin_unlock(&space_info->lock);
3617 }
3618 }
3619}
3620
3621static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
3622 struct btrfs_block_rsv *dst, u64 num_bytes)
3623{
3624 int ret;
3625
3626 ret = block_rsv_use_bytes(src, num_bytes);
3627 if (ret)
3628 return ret;
3629
3630 block_rsv_add_bytes(dst, num_bytes, 1);
3631 return 0;
3632}
3633
3634void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv)
3635{
3636 memset(rsv, 0, sizeof(*rsv));
3637 spin_lock_init(&rsv->lock);
3638 atomic_set(&rsv->usage, 1);
3639 rsv->priority = 6;
3640 INIT_LIST_HEAD(&rsv->list);
3641}
3642
3643struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root)
3644{
3645 struct btrfs_block_rsv *block_rsv;
3646 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003647
3648 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
3649 if (!block_rsv)
3650 return NULL;
3651
3652 btrfs_init_block_rsv(block_rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003653 block_rsv->space_info = __find_space_info(fs_info,
3654 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003655 return block_rsv;
3656}
3657
3658void btrfs_free_block_rsv(struct btrfs_root *root,
3659 struct btrfs_block_rsv *rsv)
3660{
3661 if (rsv && atomic_dec_and_test(&rsv->usage)) {
3662 btrfs_block_rsv_release(root, rsv, (u64)-1);
3663 if (!rsv->durable)
3664 kfree(rsv);
3665 }
3666}
3667
3668/*
3669 * make the block_rsv struct be able to capture freed space.
3670 * the captured space will re-add to the the block_rsv struct
3671 * after transaction commit
3672 */
3673void btrfs_add_durable_block_rsv(struct btrfs_fs_info *fs_info,
3674 struct btrfs_block_rsv *block_rsv)
3675{
3676 block_rsv->durable = 1;
3677 mutex_lock(&fs_info->durable_block_rsv_mutex);
3678 list_add_tail(&block_rsv->list, &fs_info->durable_block_rsv_list);
3679 mutex_unlock(&fs_info->durable_block_rsv_mutex);
3680}
3681
3682int btrfs_block_rsv_add(struct btrfs_trans_handle *trans,
3683 struct btrfs_root *root,
3684 struct btrfs_block_rsv *block_rsv,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003685 u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003686{
3687 int ret;
3688
3689 if (num_bytes == 0)
3690 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003691
3692 ret = reserve_metadata_bytes(trans, root, block_rsv, num_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003693 if (!ret) {
3694 block_rsv_add_bytes(block_rsv, num_bytes, 1);
3695 return 0;
3696 }
3697
Yan, Zhengf0486c62010-05-16 10:46:25 -04003698 return ret;
3699}
3700
3701int btrfs_block_rsv_check(struct btrfs_trans_handle *trans,
3702 struct btrfs_root *root,
3703 struct btrfs_block_rsv *block_rsv,
3704 u64 min_reserved, int min_factor)
3705{
3706 u64 num_bytes = 0;
3707 int commit_trans = 0;
3708 int ret = -ENOSPC;
3709
3710 if (!block_rsv)
3711 return 0;
3712
3713 spin_lock(&block_rsv->lock);
3714 if (min_factor > 0)
3715 num_bytes = div_factor(block_rsv->size, min_factor);
3716 if (min_reserved > num_bytes)
3717 num_bytes = min_reserved;
3718
3719 if (block_rsv->reserved >= num_bytes) {
3720 ret = 0;
3721 } else {
3722 num_bytes -= block_rsv->reserved;
3723 if (block_rsv->durable &&
3724 block_rsv->freed[0] + block_rsv->freed[1] >= num_bytes)
3725 commit_trans = 1;
3726 }
3727 spin_unlock(&block_rsv->lock);
3728 if (!ret)
3729 return 0;
3730
3731 if (block_rsv->refill_used) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003732 ret = reserve_metadata_bytes(trans, root, block_rsv,
3733 num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003734 if (!ret) {
3735 block_rsv_add_bytes(block_rsv, num_bytes, 0);
3736 return 0;
3737 }
3738 }
3739
3740 if (commit_trans) {
3741 if (trans)
3742 return -EAGAIN;
3743
3744 trans = btrfs_join_transaction(root, 1);
3745 BUG_ON(IS_ERR(trans));
3746 ret = btrfs_commit_transaction(trans, root);
3747 return 0;
3748 }
3749
Yan, Zhengf0486c62010-05-16 10:46:25 -04003750 return -ENOSPC;
3751}
3752
3753int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
3754 struct btrfs_block_rsv *dst_rsv,
3755 u64 num_bytes)
3756{
3757 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3758}
3759
3760void btrfs_block_rsv_release(struct btrfs_root *root,
3761 struct btrfs_block_rsv *block_rsv,
3762 u64 num_bytes)
3763{
3764 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
3765 if (global_rsv->full || global_rsv == block_rsv ||
3766 block_rsv->space_info != global_rsv->space_info)
3767 global_rsv = NULL;
3768 block_rsv_release_bytes(block_rsv, global_rsv, num_bytes);
3769}
3770
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003771/*
3772 * helper to calculate size of global block reservation.
3773 * the desired value is sum of space used by extent tree,
3774 * checksum tree and root tree
3775 */
3776static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
3777{
3778 struct btrfs_space_info *sinfo;
3779 u64 num_bytes;
3780 u64 meta_used;
3781 u64 data_used;
3782 int csum_size = btrfs_super_csum_size(&fs_info->super_copy);
3783#if 0
3784 /*
3785 * per tree used space accounting can be inaccuracy, so we
3786 * can't rely on it.
3787 */
3788 spin_lock(&fs_info->extent_root->accounting_lock);
3789 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item);
3790 spin_unlock(&fs_info->extent_root->accounting_lock);
3791
3792 spin_lock(&fs_info->csum_root->accounting_lock);
3793 num_bytes += btrfs_root_used(&fs_info->csum_root->root_item);
3794 spin_unlock(&fs_info->csum_root->accounting_lock);
3795
3796 spin_lock(&fs_info->tree_root->accounting_lock);
3797 num_bytes += btrfs_root_used(&fs_info->tree_root->root_item);
3798 spin_unlock(&fs_info->tree_root->accounting_lock);
3799#endif
3800 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
3801 spin_lock(&sinfo->lock);
3802 data_used = sinfo->bytes_used;
3803 spin_unlock(&sinfo->lock);
3804
3805 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
3806 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04003807 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
3808 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003809 meta_used = sinfo->bytes_used;
3810 spin_unlock(&sinfo->lock);
3811
3812 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
3813 csum_size * 2;
3814 num_bytes += div64_u64(data_used + meta_used, 50);
3815
3816 if (num_bytes * 3 > meta_used)
3817 num_bytes = div64_u64(meta_used, 3);
3818
3819 return ALIGN(num_bytes, fs_info->extent_root->leafsize << 10);
3820}
3821
3822static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
3823{
3824 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
3825 struct btrfs_space_info *sinfo = block_rsv->space_info;
3826 u64 num_bytes;
3827
3828 num_bytes = calc_global_metadata_size(fs_info);
3829
3830 spin_lock(&block_rsv->lock);
3831 spin_lock(&sinfo->lock);
3832
3833 block_rsv->size = num_bytes;
3834
3835 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04003836 sinfo->bytes_reserved + sinfo->bytes_readonly +
3837 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003838
3839 if (sinfo->total_bytes > num_bytes) {
3840 num_bytes = sinfo->total_bytes - num_bytes;
3841 block_rsv->reserved += num_bytes;
3842 sinfo->bytes_reserved += num_bytes;
3843 }
3844
3845 if (block_rsv->reserved >= block_rsv->size) {
3846 num_bytes = block_rsv->reserved - block_rsv->size;
3847 sinfo->bytes_reserved -= num_bytes;
3848 block_rsv->reserved = block_rsv->size;
3849 block_rsv->full = 1;
3850 }
3851#if 0
3852 printk(KERN_INFO"global block rsv size %llu reserved %llu\n",
3853 block_rsv->size, block_rsv->reserved);
3854#endif
3855 spin_unlock(&sinfo->lock);
3856 spin_unlock(&block_rsv->lock);
3857}
3858
Yan, Zhengf0486c62010-05-16 10:46:25 -04003859static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
3860{
3861 struct btrfs_space_info *space_info;
3862
3863 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
3864 fs_info->chunk_block_rsv.space_info = space_info;
3865 fs_info->chunk_block_rsv.priority = 10;
3866
3867 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003868 fs_info->global_block_rsv.space_info = space_info;
3869 fs_info->global_block_rsv.priority = 10;
3870 fs_info->global_block_rsv.refill_used = 1;
3871 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003872 fs_info->trans_block_rsv.space_info = space_info;
3873 fs_info->empty_block_rsv.space_info = space_info;
3874 fs_info->empty_block_rsv.priority = 10;
3875
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003876 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
3877 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
3878 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
3879 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003880 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003881
3882 btrfs_add_durable_block_rsv(fs_info, &fs_info->global_block_rsv);
3883
3884 btrfs_add_durable_block_rsv(fs_info, &fs_info->delalloc_block_rsv);
3885
3886 update_global_block_rsv(fs_info);
3887}
3888
3889static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
3890{
3891 block_rsv_release_bytes(&fs_info->global_block_rsv, NULL, (u64)-1);
3892 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
3893 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
3894 WARN_ON(fs_info->trans_block_rsv.size > 0);
3895 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
3896 WARN_ON(fs_info->chunk_block_rsv.size > 0);
3897 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003898}
3899
Yan, Zhenga22285a2010-05-16 10:48:46 -04003900static u64 calc_trans_metadata_size(struct btrfs_root *root, int num_items)
3901{
3902 return (root->leafsize + root->nodesize * (BTRFS_MAX_LEVEL - 1)) *
3903 3 * num_items;
3904}
3905
3906int btrfs_trans_reserve_metadata(struct btrfs_trans_handle *trans,
3907 struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003908 int num_items)
Yan, Zhenga22285a2010-05-16 10:48:46 -04003909{
3910 u64 num_bytes;
3911 int ret;
3912
3913 if (num_items == 0 || root->fs_info->chunk_root == root)
3914 return 0;
3915
3916 num_bytes = calc_trans_metadata_size(root, num_items);
3917 ret = btrfs_block_rsv_add(trans, root, &root->fs_info->trans_block_rsv,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003918 num_bytes);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003919 if (!ret) {
3920 trans->bytes_reserved += num_bytes;
3921 trans->block_rsv = &root->fs_info->trans_block_rsv;
3922 }
3923 return ret;
3924}
3925
3926void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
3927 struct btrfs_root *root)
3928{
3929 if (!trans->bytes_reserved)
3930 return;
3931
3932 BUG_ON(trans->block_rsv != &root->fs_info->trans_block_rsv);
3933 btrfs_block_rsv_release(root, trans->block_rsv,
3934 trans->bytes_reserved);
3935 trans->bytes_reserved = 0;
3936}
3937
Yan, Zhengd68fc572010-05-16 10:49:58 -04003938int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
3939 struct inode *inode)
3940{
3941 struct btrfs_root *root = BTRFS_I(inode)->root;
3942 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
3943 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
3944
3945 /*
3946 * one for deleting orphan item, one for updating inode and
3947 * two for calling btrfs_truncate_inode_items.
3948 *
3949 * btrfs_truncate_inode_items is a delete operation, it frees
3950 * more space than it uses in most cases. So two units of
3951 * metadata space should be enough for calling it many times.
3952 * If all of the metadata space is used, we can commit
3953 * transaction and use space it freed.
3954 */
3955 u64 num_bytes = calc_trans_metadata_size(root, 4);
3956 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3957}
3958
3959void btrfs_orphan_release_metadata(struct inode *inode)
3960{
3961 struct btrfs_root *root = BTRFS_I(inode)->root;
3962 u64 num_bytes = calc_trans_metadata_size(root, 4);
3963 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
3964}
3965
Yan, Zhenga22285a2010-05-16 10:48:46 -04003966int btrfs_snap_reserve_metadata(struct btrfs_trans_handle *trans,
3967 struct btrfs_pending_snapshot *pending)
3968{
3969 struct btrfs_root *root = pending->root;
3970 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
3971 struct btrfs_block_rsv *dst_rsv = &pending->block_rsv;
3972 /*
3973 * two for root back/forward refs, two for directory entries
3974 * and one for root of the snapshot.
3975 */
3976 u64 num_bytes = calc_trans_metadata_size(root, 5);
3977 dst_rsv->space_info = src_rsv->space_info;
3978 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3979}
3980
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003981static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes)
3982{
3983 return num_bytes >>= 3;
3984}
3985
3986int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
3987{
3988 struct btrfs_root *root = BTRFS_I(inode)->root;
3989 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
3990 u64 to_reserve;
3991 int nr_extents;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003992 int ret;
3993
3994 if (btrfs_transaction_in_commit(root->fs_info))
3995 schedule_timeout(1);
3996
3997 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003998
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003999 spin_lock(&BTRFS_I(inode)->accounting_lock);
4000 nr_extents = atomic_read(&BTRFS_I(inode)->outstanding_extents) + 1;
4001 if (nr_extents > BTRFS_I(inode)->reserved_extents) {
4002 nr_extents -= BTRFS_I(inode)->reserved_extents;
4003 to_reserve = calc_trans_metadata_size(root, nr_extents);
4004 } else {
4005 nr_extents = 0;
4006 to_reserve = 0;
4007 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004008 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004009
4010 to_reserve += calc_csum_metadata_size(inode, num_bytes);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004011 ret = reserve_metadata_bytes(NULL, root, block_rsv, to_reserve, 1);
4012 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004013 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004014
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004015 spin_lock(&BTRFS_I(inode)->accounting_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004016 BTRFS_I(inode)->reserved_extents += nr_extents;
4017 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
4018 spin_unlock(&BTRFS_I(inode)->accounting_lock);
4019
4020 block_rsv_add_bytes(block_rsv, to_reserve, 1);
4021
4022 if (block_rsv->size > 512 * 1024 * 1024)
Josef Bacik0019f102010-10-15 15:18:40 -04004023 shrink_delalloc(NULL, root, to_reserve, 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004024
4025 return 0;
4026}
4027
4028void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
4029{
4030 struct btrfs_root *root = BTRFS_I(inode)->root;
4031 u64 to_free;
4032 int nr_extents;
4033
4034 num_bytes = ALIGN(num_bytes, root->sectorsize);
4035 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik3c148742011-02-02 15:53:47 +00004036 WARN_ON(atomic_read(&BTRFS_I(inode)->outstanding_extents) < 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004037
4038 spin_lock(&BTRFS_I(inode)->accounting_lock);
4039 nr_extents = atomic_read(&BTRFS_I(inode)->outstanding_extents);
4040 if (nr_extents < BTRFS_I(inode)->reserved_extents) {
4041 nr_extents = BTRFS_I(inode)->reserved_extents - nr_extents;
4042 BTRFS_I(inode)->reserved_extents -= nr_extents;
4043 } else {
4044 nr_extents = 0;
4045 }
4046 spin_unlock(&BTRFS_I(inode)->accounting_lock);
4047
4048 to_free = calc_csum_metadata_size(inode, num_bytes);
4049 if (nr_extents > 0)
4050 to_free += calc_trans_metadata_size(root, nr_extents);
4051
4052 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
4053 to_free);
4054}
4055
4056int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
4057{
4058 int ret;
4059
4060 ret = btrfs_check_data_free_space(inode, num_bytes);
4061 if (ret)
4062 return ret;
4063
4064 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
4065 if (ret) {
4066 btrfs_free_reserved_data_space(inode, num_bytes);
4067 return ret;
4068 }
4069
4070 return 0;
4071}
4072
4073void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
4074{
4075 btrfs_delalloc_release_metadata(inode, num_bytes);
4076 btrfs_free_reserved_data_space(inode, num_bytes);
4077}
4078
Chris Mason9078a3e2007-04-26 16:46:15 -04004079static int update_block_group(struct btrfs_trans_handle *trans,
4080 struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04004081 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04004082{
Josef Bacik0af3d002010-06-21 14:48:16 -04004083 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04004084 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04004085 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004086 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04004087 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04004088 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04004089
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004090 /* block accounting for super block */
4091 spin_lock(&info->delalloc_lock);
4092 old_val = btrfs_super_bytes_used(&info->super_copy);
4093 if (alloc)
4094 old_val += num_bytes;
4095 else
4096 old_val -= num_bytes;
4097 btrfs_set_super_bytes_used(&info->super_copy, old_val);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004098 spin_unlock(&info->delalloc_lock);
4099
Chris Masond3977122009-01-05 21:25:51 -05004100 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04004101 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004102 if (!cache)
Chris Mason9078a3e2007-04-26 16:46:15 -04004103 return -1;
Yan, Zhengb742bb822010-05-16 10:46:24 -04004104 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
4105 BTRFS_BLOCK_GROUP_RAID1 |
4106 BTRFS_BLOCK_GROUP_RAID10))
4107 factor = 2;
4108 else
4109 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04004110 /*
4111 * If this block group has free space cache written out, we
4112 * need to make sure to load it if we are removing space. This
4113 * is because we need the unpinning stage to actually add the
4114 * space back to the block group, otherwise we will leak space.
4115 */
4116 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Josef Bacikb8399de2010-12-08 09:15:11 -05004117 cache_block_group(cache, trans, NULL, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04004118
Chris Masondb945352007-10-15 16:15:53 -04004119 byte_in_group = bytenr - cache->key.objectid;
4120 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04004121
Josef Bacik25179202008-10-29 14:49:05 -04004122 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04004123 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04004124
4125 if (btrfs_super_cache_generation(&info->super_copy) != 0 &&
4126 cache->disk_cache_state < BTRFS_DC_CLEAR)
4127 cache->disk_cache_state = BTRFS_DC_CLEAR;
4128
Josef Bacik0f9dd462008-09-23 13:14:11 -04004129 cache->dirty = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04004130 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04004131 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04004132 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04004133 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04004134 btrfs_set_block_group_used(&cache->item, old_val);
4135 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04004136 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb822010-05-16 10:46:24 -04004137 cache->space_info->bytes_used += num_bytes;
4138 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04004139 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04004140 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04004141 } else {
Chris Masondb945352007-10-15 16:15:53 -04004142 old_val -= num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04004143 btrfs_set_block_group_used(&cache->item, old_val);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004144 cache->pinned += num_bytes;
4145 cache->space_info->bytes_pinned += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004146 cache->space_info->bytes_used -= num_bytes;
Yan, Zhengb742bb822010-05-16 10:46:24 -04004147 cache->space_info->disk_used -= num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04004148 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04004149 spin_unlock(&cache->space_info->lock);
Liu Hui1f3c79a2009-01-05 15:57:51 -05004150
Yan, Zhengf0486c62010-05-16 10:46:25 -04004151 set_extent_dirty(info->pinned_extents,
4152 bytenr, bytenr + num_bytes - 1,
4153 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04004154 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04004155 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04004156 total -= num_bytes;
4157 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004158 }
4159 return 0;
4160}
Chris Mason6324fbf2008-03-24 15:01:59 -04004161
Chris Masona061fc82008-05-07 11:43:44 -04004162static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
4163{
Josef Bacik0f9dd462008-09-23 13:14:11 -04004164 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004165 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004166
4167 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
4168 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04004169 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004170
Yan Zhengd2fb3432008-12-11 16:30:39 -05004171 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04004172 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05004173
4174 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04004175}
4176
Yan, Zhengf0486c62010-05-16 10:46:25 -04004177static int pin_down_extent(struct btrfs_root *root,
4178 struct btrfs_block_group_cache *cache,
4179 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05004180{
Yan Zheng11833d62009-09-11 16:11:19 -04004181 spin_lock(&cache->space_info->lock);
4182 spin_lock(&cache->lock);
4183 cache->pinned += num_bytes;
4184 cache->space_info->bytes_pinned += num_bytes;
4185 if (reserved) {
4186 cache->reserved -= num_bytes;
4187 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05004188 }
Yan Zheng11833d62009-09-11 16:11:19 -04004189 spin_unlock(&cache->lock);
4190 spin_unlock(&cache->space_info->lock);
4191
Yan, Zhengf0486c62010-05-16 10:46:25 -04004192 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
4193 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05004194 return 0;
4195}
Chris Mason9078a3e2007-04-26 16:46:15 -04004196
Yan, Zhengf0486c62010-05-16 10:46:25 -04004197/*
4198 * this function must be called within transaction
4199 */
4200int btrfs_pin_extent(struct btrfs_root *root,
4201 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04004202{
Yan, Zhengf0486c62010-05-16 10:46:25 -04004203 struct btrfs_block_group_cache *cache;
4204
4205 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
4206 BUG_ON(!cache);
4207
4208 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
4209
4210 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04004211 return 0;
4212}
Zheng Yane8569812008-09-26 10:05:48 -04004213
Yan, Zhengf0486c62010-05-16 10:46:25 -04004214/*
4215 * update size of reserved extents. this function may return -EAGAIN
4216 * if 'reserve' is true or 'sinfo' is false.
4217 */
4218static int update_reserved_bytes(struct btrfs_block_group_cache *cache,
4219 u64 num_bytes, int reserve, int sinfo)
4220{
4221 int ret = 0;
4222 if (sinfo) {
4223 struct btrfs_space_info *space_info = cache->space_info;
4224 spin_lock(&space_info->lock);
4225 spin_lock(&cache->lock);
4226 if (reserve) {
4227 if (cache->ro) {
4228 ret = -EAGAIN;
4229 } else {
4230 cache->reserved += num_bytes;
4231 space_info->bytes_reserved += num_bytes;
4232 }
4233 } else {
4234 if (cache->ro)
4235 space_info->bytes_readonly += num_bytes;
4236 cache->reserved -= num_bytes;
4237 space_info->bytes_reserved -= num_bytes;
4238 }
4239 spin_unlock(&cache->lock);
4240 spin_unlock(&space_info->lock);
4241 } else {
4242 spin_lock(&cache->lock);
4243 if (cache->ro) {
4244 ret = -EAGAIN;
4245 } else {
4246 if (reserve)
4247 cache->reserved += num_bytes;
4248 else
4249 cache->reserved -= num_bytes;
4250 }
4251 spin_unlock(&cache->lock);
4252 }
4253 return ret;
4254}
4255
Yan Zheng11833d62009-09-11 16:11:19 -04004256int btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
4257 struct btrfs_root *root)
4258{
4259 struct btrfs_fs_info *fs_info = root->fs_info;
4260 struct btrfs_caching_control *next;
4261 struct btrfs_caching_control *caching_ctl;
4262 struct btrfs_block_group_cache *cache;
4263
4264 down_write(&fs_info->extent_commit_sem);
4265
4266 list_for_each_entry_safe(caching_ctl, next,
4267 &fs_info->caching_block_groups, list) {
4268 cache = caching_ctl->block_group;
4269 if (block_group_cache_done(cache)) {
4270 cache->last_byte_to_unpin = (u64)-1;
4271 list_del_init(&caching_ctl->list);
4272 put_caching_control(caching_ctl);
4273 } else {
4274 cache->last_byte_to_unpin = caching_ctl->progress;
4275 }
4276 }
4277
4278 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
4279 fs_info->pinned_extents = &fs_info->freed_extents[1];
4280 else
4281 fs_info->pinned_extents = &fs_info->freed_extents[0];
4282
4283 up_write(&fs_info->extent_commit_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004284
4285 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04004286 return 0;
4287}
4288
4289static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
4290{
4291 struct btrfs_fs_info *fs_info = root->fs_info;
4292 struct btrfs_block_group_cache *cache = NULL;
4293 u64 len;
4294
4295 while (start <= end) {
4296 if (!cache ||
4297 start >= cache->key.objectid + cache->key.offset) {
4298 if (cache)
4299 btrfs_put_block_group(cache);
4300 cache = btrfs_lookup_block_group(fs_info, start);
4301 BUG_ON(!cache);
4302 }
4303
4304 len = cache->key.objectid + cache->key.offset - start;
4305 len = min(len, end + 1 - start);
4306
4307 if (start < cache->last_byte_to_unpin) {
4308 len = min(len, cache->last_byte_to_unpin - start);
4309 btrfs_add_free_space(cache, start, len);
4310 }
Josef Bacik25179202008-10-29 14:49:05 -04004311
Yan, Zhengf0486c62010-05-16 10:46:25 -04004312 start += len;
4313
Josef Bacik25179202008-10-29 14:49:05 -04004314 spin_lock(&cache->space_info->lock);
4315 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04004316 cache->pinned -= len;
4317 cache->space_info->bytes_pinned -= len;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004318 if (cache->ro) {
4319 cache->space_info->bytes_readonly += len;
4320 } else if (cache->reserved_pinned > 0) {
4321 len = min(len, cache->reserved_pinned);
4322 cache->reserved_pinned -= len;
4323 cache->space_info->bytes_reserved += len;
4324 }
Josef Bacik25179202008-10-29 14:49:05 -04004325 spin_unlock(&cache->lock);
4326 spin_unlock(&cache->space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04004327 }
4328
4329 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04004330 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04004331 return 0;
4332}
4333
4334int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04004335 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05004336{
Yan Zheng11833d62009-09-11 16:11:19 -04004337 struct btrfs_fs_info *fs_info = root->fs_info;
4338 struct extent_io_tree *unpin;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004339 struct btrfs_block_rsv *block_rsv;
4340 struct btrfs_block_rsv *next_rsv;
Chris Mason1a5bc162007-10-15 16:15:26 -04004341 u64 start;
4342 u64 end;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004343 int idx;
Chris Masona28ec192007-03-06 20:08:01 -05004344 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05004345
Yan Zheng11833d62009-09-11 16:11:19 -04004346 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
4347 unpin = &fs_info->freed_extents[1];
4348 else
4349 unpin = &fs_info->freed_extents[0];
4350
Chris Masond3977122009-01-05 21:25:51 -05004351 while (1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04004352 ret = find_first_extent_bit(unpin, 0, &start, &end,
4353 EXTENT_DIRTY);
4354 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05004355 break;
Liu Hui1f3c79a2009-01-05 15:57:51 -05004356
4357 ret = btrfs_discard_extent(root, start, end + 1 - start);
4358
Chris Mason1a5bc162007-10-15 16:15:26 -04004359 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Yan Zheng11833d62009-09-11 16:11:19 -04004360 unpin_extent_range(root, start, end);
Chris Masonb9473432009-03-13 11:00:37 -04004361 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05004362 }
Josef Bacik817d52f2009-07-13 21:29:25 -04004363
Yan, Zhengf0486c62010-05-16 10:46:25 -04004364 mutex_lock(&fs_info->durable_block_rsv_mutex);
4365 list_for_each_entry_safe(block_rsv, next_rsv,
4366 &fs_info->durable_block_rsv_list, list) {
Chris Masona28ec192007-03-06 20:08:01 -05004367
Yan, Zhengf0486c62010-05-16 10:46:25 -04004368 idx = trans->transid & 0x1;
4369 if (block_rsv->freed[idx] > 0) {
4370 block_rsv_add_bytes(block_rsv,
4371 block_rsv->freed[idx], 0);
4372 block_rsv->freed[idx] = 0;
Chris Mason8ef97622007-03-26 10:15:30 -04004373 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004374 if (atomic_read(&block_rsv->usage) == 0) {
4375 btrfs_block_rsv_release(root, block_rsv, (u64)-1);
Zheng Yan31840ae2008-09-23 13:14:14 -04004376
Yan, Zhengf0486c62010-05-16 10:46:25 -04004377 if (block_rsv->freed[0] == 0 &&
4378 block_rsv->freed[1] == 0) {
4379 list_del_init(&block_rsv->list);
4380 kfree(block_rsv);
4381 }
4382 } else {
4383 btrfs_block_rsv_release(root, block_rsv, 0);
4384 }
4385 }
4386 mutex_unlock(&fs_info->durable_block_rsv_mutex);
4387
Chris Masone20d96d2007-03-22 12:13:20 -04004388 return 0;
4389}
4390
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004391static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
4392 struct btrfs_root *root,
4393 u64 bytenr, u64 num_bytes, u64 parent,
4394 u64 root_objectid, u64 owner_objectid,
4395 u64 owner_offset, int refs_to_drop,
4396 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05004397{
Chris Masone2fa7222007-03-12 16:22:34 -04004398 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004399 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04004400 struct btrfs_fs_info *info = root->fs_info;
4401 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04004402 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004403 struct btrfs_extent_item *ei;
4404 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05004405 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004406 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05004407 int extent_slot = 0;
4408 int found_extent = 0;
4409 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004410 u32 item_size;
4411 u64 refs;
Chris Mason037e6392007-03-07 11:50:24 -05004412
Chris Mason5caf2a02007-04-02 11:20:42 -04004413 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04004414 if (!path)
4415 return -ENOMEM;
4416
Chris Mason3c12ac72008-04-21 12:01:38 -04004417 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04004418 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004419
4420 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
4421 BUG_ON(!is_data && refs_to_drop != 1);
4422
4423 ret = lookup_extent_backref(trans, extent_root, path, &iref,
4424 bytenr, num_bytes, parent,
4425 root_objectid, owner_objectid,
4426 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05004427 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05004428 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004429 while (extent_slot >= 0) {
4430 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05004431 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004432 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05004433 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004434 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
4435 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05004436 found_extent = 1;
4437 break;
4438 }
4439 if (path->slots[0] - extent_slot > 5)
4440 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004441 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05004442 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004443#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4444 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
4445 if (found_extent && item_size < sizeof(*ei))
4446 found_extent = 0;
4447#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04004448 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004449 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04004450 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004451 NULL, refs_to_drop,
4452 is_data);
Zheng Yan31840ae2008-09-23 13:14:14 -04004453 BUG_ON(ret);
4454 btrfs_release_path(extent_root, path);
Chris Masonb9473432009-03-13 11:00:37 -04004455 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004456
4457 key.objectid = bytenr;
4458 key.type = BTRFS_EXTENT_ITEM_KEY;
4459 key.offset = num_bytes;
4460
Zheng Yan31840ae2008-09-23 13:14:14 -04004461 ret = btrfs_search_slot(trans, extent_root,
4462 &key, path, -1, 1);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004463 if (ret) {
4464 printk(KERN_ERR "umm, got %d back from search"
Chris Masond3977122009-01-05 21:25:51 -05004465 ", was looking for %llu\n", ret,
4466 (unsigned long long)bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004467 btrfs_print_leaf(extent_root, path->nodes[0]);
4468 }
Zheng Yan31840ae2008-09-23 13:14:14 -04004469 BUG_ON(ret);
4470 extent_slot = path->slots[0];
4471 }
Chris Mason7bb86312007-12-11 09:25:06 -05004472 } else {
4473 btrfs_print_leaf(extent_root, path->nodes[0]);
4474 WARN_ON(1);
Chris Masond3977122009-01-05 21:25:51 -05004475 printk(KERN_ERR "btrfs unable to find ref byte nr %llu "
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004476 "parent %llu root %llu owner %llu offset %llu\n",
Chris Masond3977122009-01-05 21:25:51 -05004477 (unsigned long long)bytenr,
Chris Mason56bec292009-03-13 10:10:06 -04004478 (unsigned long long)parent,
Chris Masond3977122009-01-05 21:25:51 -05004479 (unsigned long long)root_objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004480 (unsigned long long)owner_objectid,
4481 (unsigned long long)owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05004482 }
Chris Mason5f39d392007-10-15 16:14:19 -04004483
4484 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004485 item_size = btrfs_item_size_nr(leaf, extent_slot);
4486#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4487 if (item_size < sizeof(*ei)) {
4488 BUG_ON(found_extent || extent_slot != path->slots[0]);
4489 ret = convert_extent_item_v0(trans, extent_root, path,
4490 owner_objectid, 0);
4491 BUG_ON(ret < 0);
4492
4493 btrfs_release_path(extent_root, path);
4494 path->leave_spinning = 1;
4495
4496 key.objectid = bytenr;
4497 key.type = BTRFS_EXTENT_ITEM_KEY;
4498 key.offset = num_bytes;
4499
4500 ret = btrfs_search_slot(trans, extent_root, &key, path,
4501 -1, 1);
4502 if (ret) {
4503 printk(KERN_ERR "umm, got %d back from search"
4504 ", was looking for %llu\n", ret,
4505 (unsigned long long)bytenr);
4506 btrfs_print_leaf(extent_root, path->nodes[0]);
4507 }
4508 BUG_ON(ret);
4509 extent_slot = path->slots[0];
4510 leaf = path->nodes[0];
4511 item_size = btrfs_item_size_nr(leaf, extent_slot);
4512 }
4513#endif
4514 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05004515 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04004516 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004517 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID) {
4518 struct btrfs_tree_block_info *bi;
4519 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
4520 bi = (struct btrfs_tree_block_info *)(ei + 1);
4521 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05004522 }
4523
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004524 refs = btrfs_extent_refs(leaf, ei);
4525 BUG_ON(refs < refs_to_drop);
4526 refs -= refs_to_drop;
4527
4528 if (refs > 0) {
4529 if (extent_op)
4530 __run_delayed_extent_op(extent_op, leaf, ei);
4531 /*
4532 * In the case of inline back ref, reference count will
4533 * be updated by remove_extent_backref
4534 */
4535 if (iref) {
4536 BUG_ON(!found_extent);
4537 } else {
4538 btrfs_set_extent_refs(leaf, ei, refs);
4539 btrfs_mark_buffer_dirty(leaf);
4540 }
4541 if (found_extent) {
4542 ret = remove_extent_backref(trans, extent_root, path,
4543 iref, refs_to_drop,
4544 is_data);
4545 BUG_ON(ret);
4546 }
4547 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004548 if (found_extent) {
4549 BUG_ON(is_data && refs_to_drop !=
4550 extent_data_ref_count(root, path, iref));
4551 if (iref) {
4552 BUG_ON(path->slots[0] != extent_slot);
4553 } else {
4554 BUG_ON(path->slots[0] != extent_slot + 1);
4555 path->slots[0] = extent_slot;
4556 num_to_del = 2;
4557 }
Chris Mason78fae272007-03-25 11:35:08 -04004558 }
Chris Masonb9473432009-03-13 11:00:37 -04004559
Chris Mason952fcca2008-02-18 16:33:44 -05004560 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
4561 num_to_del);
Zheng Yan31840ae2008-09-23 13:14:14 -04004562 BUG_ON(ret);
Josef Bacik25179202008-10-29 14:49:05 -04004563 btrfs_release_path(extent_root, path);
David Woodhouse21af8042008-08-12 14:13:26 +01004564
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004565 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05004566 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
4567 BUG_ON(ret);
Chris Masond57e62b2009-03-31 13:47:50 -04004568 } else {
4569 invalidate_mapping_pages(info->btree_inode->i_mapping,
4570 bytenr >> PAGE_CACHE_SHIFT,
4571 (bytenr + num_bytes - 1) >> PAGE_CACHE_SHIFT);
Chris Mason459931e2008-12-10 09:10:46 -05004572 }
4573
Yan, Zhengf0486c62010-05-16 10:46:25 -04004574 ret = update_block_group(trans, root, bytenr, num_bytes, 0);
Chris Masondcbdd4d2008-12-16 13:51:01 -05004575 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05004576 }
Chris Mason5caf2a02007-04-02 11:20:42 -04004577 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05004578 return ret;
4579}
4580
4581/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04004582 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04004583 * delayed ref for that extent as well. This searches the delayed ref tree for
4584 * a given extent, and if there are no other delayed refs to be processed, it
4585 * removes it from the tree.
4586 */
4587static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
4588 struct btrfs_root *root, u64 bytenr)
4589{
4590 struct btrfs_delayed_ref_head *head;
4591 struct btrfs_delayed_ref_root *delayed_refs;
4592 struct btrfs_delayed_ref_node *ref;
4593 struct rb_node *node;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004594 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04004595
4596 delayed_refs = &trans->transaction->delayed_refs;
4597 spin_lock(&delayed_refs->lock);
4598 head = btrfs_find_delayed_ref_head(trans, bytenr);
4599 if (!head)
4600 goto out;
4601
4602 node = rb_prev(&head->node.rb_node);
4603 if (!node)
4604 goto out;
4605
4606 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
4607
4608 /* there are still entries for this ref, we can't drop it */
4609 if (ref->bytenr == bytenr)
4610 goto out;
4611
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004612 if (head->extent_op) {
4613 if (!head->must_insert_reserved)
4614 goto out;
4615 kfree(head->extent_op);
4616 head->extent_op = NULL;
4617 }
4618
Chris Mason1887be62009-03-13 10:11:24 -04004619 /*
4620 * waiting for the lock here would deadlock. If someone else has it
4621 * locked they are already in the process of dropping it anyway
4622 */
4623 if (!mutex_trylock(&head->mutex))
4624 goto out;
4625
4626 /*
4627 * at this point we have a head with no other entries. Go
4628 * ahead and process it.
4629 */
4630 head->node.in_tree = 0;
4631 rb_erase(&head->node.rb_node, &delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04004632
Chris Mason1887be62009-03-13 10:11:24 -04004633 delayed_refs->num_entries--;
4634
4635 /*
4636 * we don't take a ref on the node because we're removing it from the
4637 * tree, so we just steal the ref the tree was holding.
4638 */
Chris Masonc3e69d52009-03-13 10:17:05 -04004639 delayed_refs->num_heads--;
4640 if (list_empty(&head->cluster))
4641 delayed_refs->num_heads_ready--;
4642
4643 list_del_init(&head->cluster);
Chris Mason1887be62009-03-13 10:11:24 -04004644 spin_unlock(&delayed_refs->lock);
4645
Yan, Zhengf0486c62010-05-16 10:46:25 -04004646 BUG_ON(head->extent_op);
4647 if (head->must_insert_reserved)
4648 ret = 1;
4649
4650 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04004651 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004652 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04004653out:
4654 spin_unlock(&delayed_refs->lock);
4655 return 0;
4656}
4657
Yan, Zhengf0486c62010-05-16 10:46:25 -04004658void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
4659 struct btrfs_root *root,
4660 struct extent_buffer *buf,
4661 u64 parent, int last_ref)
4662{
4663 struct btrfs_block_rsv *block_rsv;
4664 struct btrfs_block_group_cache *cache = NULL;
4665 int ret;
4666
4667 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4668 ret = btrfs_add_delayed_tree_ref(trans, buf->start, buf->len,
4669 parent, root->root_key.objectid,
4670 btrfs_header_level(buf),
4671 BTRFS_DROP_DELAYED_REF, NULL);
4672 BUG_ON(ret);
4673 }
4674
4675 if (!last_ref)
4676 return;
4677
4678 block_rsv = get_block_rsv(trans, root);
4679 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
Yan, Zheng3bf84a52010-05-31 09:04:46 +00004680 if (block_rsv->space_info != cache->space_info)
4681 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004682
4683 if (btrfs_header_generation(buf) == trans->transid) {
4684 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4685 ret = check_ref_cleanup(trans, root, buf->start);
4686 if (!ret)
4687 goto pin;
4688 }
4689
4690 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
4691 pin_down_extent(root, cache, buf->start, buf->len, 1);
4692 goto pin;
4693 }
4694
4695 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
4696
4697 btrfs_add_free_space(cache, buf->start, buf->len);
4698 ret = update_reserved_bytes(cache, buf->len, 0, 0);
4699 if (ret == -EAGAIN) {
4700 /* block group became read-only */
4701 update_reserved_bytes(cache, buf->len, 0, 1);
4702 goto out;
4703 }
4704
4705 ret = 1;
4706 spin_lock(&block_rsv->lock);
4707 if (block_rsv->reserved < block_rsv->size) {
4708 block_rsv->reserved += buf->len;
4709 ret = 0;
4710 }
4711 spin_unlock(&block_rsv->lock);
4712
4713 if (ret) {
4714 spin_lock(&cache->space_info->lock);
4715 cache->space_info->bytes_reserved -= buf->len;
4716 spin_unlock(&cache->space_info->lock);
4717 }
4718 goto out;
4719 }
4720pin:
4721 if (block_rsv->durable && !cache->ro) {
4722 ret = 0;
4723 spin_lock(&cache->lock);
4724 if (!cache->ro) {
4725 cache->reserved_pinned += buf->len;
4726 ret = 1;
4727 }
4728 spin_unlock(&cache->lock);
4729
4730 if (ret) {
4731 spin_lock(&block_rsv->lock);
4732 block_rsv->freed[trans->transid & 0x1] += buf->len;
4733 spin_unlock(&block_rsv->lock);
4734 }
4735 }
4736out:
4737 btrfs_put_block_group(cache);
4738}
4739
Chris Mason925baed2008-06-25 16:01:30 -04004740int btrfs_free_extent(struct btrfs_trans_handle *trans,
Zheng Yan31840ae2008-09-23 13:14:14 -04004741 struct btrfs_root *root,
4742 u64 bytenr, u64 num_bytes, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004743 u64 root_objectid, u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04004744{
4745 int ret;
4746
Chris Mason56bec292009-03-13 10:10:06 -04004747 /*
4748 * tree log blocks never actually go into the extent allocation
4749 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04004750 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004751 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
4752 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04004753 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04004754 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04004755 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004756 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
4757 ret = btrfs_add_delayed_tree_ref(trans, bytenr, num_bytes,
4758 parent, root_objectid, (int)owner,
4759 BTRFS_DROP_DELAYED_REF, NULL);
Chris Mason1887be62009-03-13 10:11:24 -04004760 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004761 } else {
4762 ret = btrfs_add_delayed_data_ref(trans, bytenr, num_bytes,
4763 parent, root_objectid, owner,
4764 offset, BTRFS_DROP_DELAYED_REF, NULL);
4765 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04004766 }
Chris Mason925baed2008-06-25 16:01:30 -04004767 return ret;
4768}
4769
Chris Mason87ee04e2007-11-30 11:30:34 -05004770static u64 stripe_align(struct btrfs_root *root, u64 val)
4771{
4772 u64 mask = ((u64)root->stripesize - 1);
4773 u64 ret = (val + mask) & ~mask;
4774 return ret;
4775}
4776
Chris Masonfec577f2007-02-26 10:40:21 -05004777/*
Josef Bacik817d52f2009-07-13 21:29:25 -04004778 * when we wait for progress in the block group caching, its because
4779 * our allocation attempt failed at least once. So, we must sleep
4780 * and let some progress happen before we try again.
4781 *
4782 * This function will sleep at least once waiting for new free space to
4783 * show up, and then it will check the block group free space numbers
4784 * for our min num_bytes. Another option is to have it go ahead
4785 * and look in the rbtree for a free extent of a given size, but this
4786 * is a good start.
4787 */
4788static noinline int
4789wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
4790 u64 num_bytes)
4791{
Yan Zheng11833d62009-09-11 16:11:19 -04004792 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04004793 DEFINE_WAIT(wait);
4794
Yan Zheng11833d62009-09-11 16:11:19 -04004795 caching_ctl = get_caching_control(cache);
4796 if (!caching_ctl)
Josef Bacik817d52f2009-07-13 21:29:25 -04004797 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -04004798
Yan Zheng11833d62009-09-11 16:11:19 -04004799 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Josef Bacik817d52f2009-07-13 21:29:25 -04004800 (cache->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04004801
4802 put_caching_control(caching_ctl);
4803 return 0;
4804}
4805
4806static noinline int
4807wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
4808{
4809 struct btrfs_caching_control *caching_ctl;
4810 DEFINE_WAIT(wait);
4811
4812 caching_ctl = get_caching_control(cache);
4813 if (!caching_ctl)
4814 return 0;
4815
4816 wait_event(caching_ctl->wait, block_group_cache_done(cache));
4817
4818 put_caching_control(caching_ctl);
Josef Bacik817d52f2009-07-13 21:29:25 -04004819 return 0;
4820}
4821
Yan, Zhengb742bb822010-05-16 10:46:24 -04004822static int get_block_group_index(struct btrfs_block_group_cache *cache)
4823{
4824 int index;
4825 if (cache->flags & BTRFS_BLOCK_GROUP_RAID10)
4826 index = 0;
4827 else if (cache->flags & BTRFS_BLOCK_GROUP_RAID1)
4828 index = 1;
4829 else if (cache->flags & BTRFS_BLOCK_GROUP_DUP)
4830 index = 2;
4831 else if (cache->flags & BTRFS_BLOCK_GROUP_RAID0)
4832 index = 3;
4833 else
4834 index = 4;
4835 return index;
4836}
4837
Josef Bacik817d52f2009-07-13 21:29:25 -04004838enum btrfs_loop_type {
Josef Bacikccf0e722009-11-10 21:23:48 -05004839 LOOP_FIND_IDEAL = 0,
Josef Bacik817d52f2009-07-13 21:29:25 -04004840 LOOP_CACHING_NOWAIT = 1,
4841 LOOP_CACHING_WAIT = 2,
4842 LOOP_ALLOC_CHUNK = 3,
4843 LOOP_NO_EMPTY_SIZE = 4,
4844};
4845
4846/*
Chris Masonfec577f2007-02-26 10:40:21 -05004847 * walks the btree of allocated extents and find a hole of a given size.
4848 * The key ins is changed to record the hole:
4849 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04004850 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05004851 * ins->offset == number of blocks
4852 * Any available blocks before search_start are skipped.
4853 */
Chris Masond3977122009-01-05 21:25:51 -05004854static noinline int find_free_extent(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05004855 struct btrfs_root *orig_root,
4856 u64 num_bytes, u64 empty_size,
4857 u64 search_start, u64 search_end,
4858 u64 hint_byte, struct btrfs_key *ins,
Chris Mason98ed5172008-01-03 10:01:48 -05004859 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05004860{
Josef Bacik80eb2342008-10-29 14:49:05 -04004861 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05004862 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04004863 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04004864 struct btrfs_block_group_cache *block_group = NULL;
Chris Mason239b14b2008-03-24 15:02:07 -04004865 int empty_cluster = 2 * 1024 * 1024;
Chris Mason0ef3e662008-05-24 14:04:53 -04004866 int allowed_chunk_alloc = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05004867 int done_chunk_alloc = 0;
Josef Bacik80eb2342008-10-29 14:49:05 -04004868 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04004869 int last_ptr_loop = 0;
4870 int loop = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004871 int index = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -04004872 bool found_uncached_bg = false;
Josef Bacik0a243252009-09-11 16:11:20 -04004873 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04004874 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04004875 bool use_cluster = true;
Josef Bacikccf0e722009-11-10 21:23:48 -05004876 u64 ideal_cache_percent = 0;
4877 u64 ideal_cache_offset = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05004878
Chris Masondb945352007-10-15 16:15:53 -04004879 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04004880 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
Josef Bacik80eb2342008-10-29 14:49:05 -04004881 ins->objectid = 0;
4882 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04004883
Josef Bacik2552d172009-04-03 10:14:19 -04004884 space_info = __find_space_info(root->fs_info, data);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00004885 if (!space_info) {
4886 printk(KERN_ERR "No space info for %d\n", data);
4887 return -ENOSPC;
4888 }
Josef Bacik2552d172009-04-03 10:14:19 -04004889
Josef Bacik67377732010-09-16 16:19:09 -04004890 /*
4891 * If the space info is for both data and metadata it means we have a
4892 * small filesystem and we can't use the clustering stuff.
4893 */
4894 if (btrfs_mixed_space_info(space_info))
4895 use_cluster = false;
4896
Chris Mason0ef3e662008-05-24 14:04:53 -04004897 if (orig_root->ref_cows || empty_size)
4898 allowed_chunk_alloc = 1;
4899
Josef Bacik67377732010-09-16 16:19:09 -04004900 if (data & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04004901 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05004902 if (!btrfs_test_opt(root, SSD))
4903 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04004904 }
4905
Josef Bacik67377732010-09-16 16:19:09 -04004906 if ((data & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
4907 btrfs_test_opt(root, SSD)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04004908 last_ptr = &root->fs_info->data_alloc_cluster;
4909 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04004910
Chris Mason239b14b2008-03-24 15:02:07 -04004911 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04004912 spin_lock(&last_ptr->lock);
4913 if (last_ptr->block_group)
4914 hint_byte = last_ptr->window_start;
4915 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04004916 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04004917
Chris Masona061fc82008-05-07 11:43:44 -04004918 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04004919 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04004920
Josef Bacik817d52f2009-07-13 21:29:25 -04004921 if (!last_ptr)
Chris Masonfa9c0d792009-04-03 09:47:43 -04004922 empty_cluster = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04004923
Josef Bacik2552d172009-04-03 10:14:19 -04004924 if (search_start == hint_byte) {
Josef Bacikccf0e722009-11-10 21:23:48 -05004925ideal_cache:
Josef Bacik2552d172009-04-03 10:14:19 -04004926 block_group = btrfs_lookup_block_group(root->fs_info,
4927 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04004928 /*
4929 * we don't want to use the block group if it doesn't match our
4930 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05004931 *
4932 * However if we are re-searching with an ideal block group
4933 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04004934 */
4935 if (block_group && block_group_bits(block_group, data) &&
Josef Bacikccf0e722009-11-10 21:23:48 -05004936 (block_group->cached != BTRFS_CACHE_NO ||
4937 search_start == ideal_cache_offset)) {
Josef Bacik2552d172009-04-03 10:14:19 -04004938 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04004939 if (list_empty(&block_group->list) ||
4940 block_group->ro) {
4941 /*
4942 * someone is removing this block group,
4943 * we can't jump into the have_block_group
4944 * target because our list pointers are not
4945 * valid
4946 */
4947 btrfs_put_block_group(block_group);
4948 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05004949 } else {
Yan, Zhengb742bb822010-05-16 10:46:24 -04004950 index = get_block_group_index(block_group);
Chris Mason44fb5512009-06-04 15:34:51 -04004951 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05004952 }
Josef Bacik2552d172009-04-03 10:14:19 -04004953 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04004954 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04004955 }
Chris Mason42e70e72008-11-07 18:17:11 -05004956 }
Josef Bacik2552d172009-04-03 10:14:19 -04004957search:
Josef Bacik80eb2342008-10-29 14:49:05 -04004958 down_read(&space_info->groups_sem);
Yan, Zhengb742bb822010-05-16 10:46:24 -04004959 list_for_each_entry(block_group, &space_info->block_groups[index],
4960 list) {
Josef Bacik6226cb02009-04-03 10:14:18 -04004961 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04004962 int cached;
Chris Mason8a1413a22008-11-10 16:13:54 -05004963
Josef Bacik11dfe352009-11-13 20:12:59 +00004964 btrfs_get_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04004965 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05004966
Chris Mason83a50de2010-12-13 15:06:46 -05004967 /*
4968 * this can happen if we end up cycling through all the
4969 * raid types, but we want to make sure we only allocate
4970 * for the proper type.
4971 */
4972 if (!block_group_bits(block_group, data)) {
4973 u64 extra = BTRFS_BLOCK_GROUP_DUP |
4974 BTRFS_BLOCK_GROUP_RAID1 |
4975 BTRFS_BLOCK_GROUP_RAID10;
4976
4977 /*
4978 * if they asked for extra copies and this block group
4979 * doesn't provide them, bail. This does allow us to
4980 * fill raid0 from raid1.
4981 */
4982 if ((data & extra) && !(block_group->flags & extra))
4983 goto loop;
4984 }
4985
Josef Bacik2552d172009-04-03 10:14:19 -04004986have_block_group:
Josef Bacik817d52f2009-07-13 21:29:25 -04004987 if (unlikely(block_group->cached == BTRFS_CACHE_NO)) {
Josef Bacikccf0e722009-11-10 21:23:48 -05004988 u64 free_percent;
4989
Josef Bacikb8399de2010-12-08 09:15:11 -05004990 ret = cache_block_group(block_group, trans,
4991 orig_root, 1);
Josef Bacik9d66e232010-08-25 16:54:15 -04004992 if (block_group->cached == BTRFS_CACHE_FINISHED)
4993 goto have_block_group;
4994
Josef Bacikccf0e722009-11-10 21:23:48 -05004995 free_percent = btrfs_block_group_used(&block_group->item);
4996 free_percent *= 100;
4997 free_percent = div64_u64(free_percent,
4998 block_group->key.offset);
4999 free_percent = 100 - free_percent;
5000 if (free_percent > ideal_cache_percent &&
5001 likely(!block_group->ro)) {
5002 ideal_cache_offset = block_group->key.objectid;
5003 ideal_cache_percent = free_percent;
5004 }
5005
Josef Bacik817d52f2009-07-13 21:29:25 -04005006 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05005007 * We only want to start kthread caching if we are at
5008 * the point where we will wait for caching to make
5009 * progress, or if our ideal search is over and we've
5010 * found somebody to start caching.
Josef Bacik817d52f2009-07-13 21:29:25 -04005011 */
5012 if (loop > LOOP_CACHING_NOWAIT ||
Josef Bacikccf0e722009-11-10 21:23:48 -05005013 (loop > LOOP_FIND_IDEAL &&
5014 atomic_read(&space_info->caching_threads) < 2)) {
Josef Bacikb8399de2010-12-08 09:15:11 -05005015 ret = cache_block_group(block_group, trans,
5016 orig_root, 0);
Josef Bacik817d52f2009-07-13 21:29:25 -04005017 BUG_ON(ret);
Josef Bacik2552d172009-04-03 10:14:19 -04005018 }
Josef Bacikccf0e722009-11-10 21:23:48 -05005019 found_uncached_bg = true;
5020
5021 /*
5022 * If loop is set for cached only, try the next block
5023 * group.
5024 */
5025 if (loop == LOOP_FIND_IDEAL)
5026 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05005027 }
5028
Josef Bacik817d52f2009-07-13 21:29:25 -04005029 cached = block_group_cache_done(block_group);
Josef Bacikccf0e722009-11-10 21:23:48 -05005030 if (unlikely(!cached))
Josef Bacik817d52f2009-07-13 21:29:25 -04005031 found_uncached_bg = true;
5032
Josef Bacikea6a4782008-11-20 12:16:16 -05005033 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04005034 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005035
Josef Bacik0a243252009-09-11 16:11:20 -04005036 /*
5037 * Ok we want to try and use the cluster allocator, so lets look
5038 * there, unless we are on LOOP_NO_EMPTY_SIZE, since we will
5039 * have tried the cluster allocator plenty of times at this
5040 * point and not have found anything, so we are likely way too
5041 * fragmented for the clustering stuff to find anything, so lets
5042 * just skip it and let the allocator find whatever block it can
5043 * find
5044 */
5045 if (last_ptr && loop < LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005046 /*
5047 * the refill lock keeps out other
5048 * people trying to start a new cluster
5049 */
5050 spin_lock(&last_ptr->refill_lock);
Chris Mason44fb5512009-06-04 15:34:51 -04005051 if (last_ptr->block_group &&
5052 (last_ptr->block_group->ro ||
5053 !block_group_bits(last_ptr->block_group, data))) {
5054 offset = 0;
5055 goto refill_cluster;
5056 }
5057
Chris Masonfa9c0d792009-04-03 09:47:43 -04005058 offset = btrfs_alloc_from_cluster(block_group, last_ptr,
5059 num_bytes, search_start);
5060 if (offset) {
5061 /* we have a block, we're done */
5062 spin_unlock(&last_ptr->refill_lock);
5063 goto checks;
5064 }
5065
5066 spin_lock(&last_ptr->lock);
5067 /*
5068 * whoops, this cluster doesn't actually point to
5069 * this block group. Get a ref on the block
5070 * group is does point to and try again
5071 */
5072 if (!last_ptr_loop && last_ptr->block_group &&
5073 last_ptr->block_group != block_group) {
5074
5075 btrfs_put_block_group(block_group);
5076 block_group = last_ptr->block_group;
Josef Bacik11dfe352009-11-13 20:12:59 +00005077 btrfs_get_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005078 spin_unlock(&last_ptr->lock);
5079 spin_unlock(&last_ptr->refill_lock);
5080
5081 last_ptr_loop = 1;
5082 search_start = block_group->key.objectid;
Chris Mason44fb5512009-06-04 15:34:51 -04005083 /*
5084 * we know this block group is properly
5085 * in the list because
5086 * btrfs_remove_block_group, drops the
5087 * cluster before it removes the block
5088 * group from the list
5089 */
Chris Masonfa9c0d792009-04-03 09:47:43 -04005090 goto have_block_group;
5091 }
5092 spin_unlock(&last_ptr->lock);
Chris Mason44fb5512009-06-04 15:34:51 -04005093refill_cluster:
Chris Masonfa9c0d792009-04-03 09:47:43 -04005094 /*
5095 * this cluster didn't work out, free it and
5096 * start over
5097 */
5098 btrfs_return_cluster_to_free_space(NULL, last_ptr);
5099
5100 last_ptr_loop = 0;
5101
5102 /* allocate a cluster in this block group */
Chris Mason451d7582009-06-09 20:28:34 -04005103 ret = btrfs_find_space_cluster(trans, root,
Chris Masonfa9c0d792009-04-03 09:47:43 -04005104 block_group, last_ptr,
5105 offset, num_bytes,
5106 empty_cluster + empty_size);
5107 if (ret == 0) {
5108 /*
5109 * now pull our allocation out of this
5110 * cluster
5111 */
5112 offset = btrfs_alloc_from_cluster(block_group,
5113 last_ptr, num_bytes,
5114 search_start);
5115 if (offset) {
5116 /* we found one, proceed */
5117 spin_unlock(&last_ptr->refill_lock);
5118 goto checks;
5119 }
Josef Bacik0a243252009-09-11 16:11:20 -04005120 } else if (!cached && loop > LOOP_CACHING_NOWAIT
5121 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005122 spin_unlock(&last_ptr->refill_lock);
5123
Josef Bacik0a243252009-09-11 16:11:20 -04005124 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04005125 wait_block_group_cache_progress(block_group,
5126 num_bytes + empty_cluster + empty_size);
5127 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005128 }
Josef Bacik817d52f2009-07-13 21:29:25 -04005129
Chris Masonfa9c0d792009-04-03 09:47:43 -04005130 /*
5131 * at this point we either didn't find a cluster
5132 * or we weren't able to allocate a block from our
5133 * cluster. Free the cluster we've been trying
5134 * to use, and go to the next block group
5135 */
Josef Bacik0a243252009-09-11 16:11:20 -04005136 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005137 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04005138 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005139 }
5140
Josef Bacik6226cb02009-04-03 10:14:18 -04005141 offset = btrfs_find_space_for_alloc(block_group, search_start,
5142 num_bytes, empty_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005143 /*
5144 * If we didn't find a chunk, and we haven't failed on this
5145 * block group before, and this block group is in the middle of
5146 * caching and we are ok with waiting, then go ahead and wait
5147 * for progress to be made, and set failed_alloc to true.
5148 *
5149 * If failed_alloc is true then we've already waited on this
5150 * block group once and should move on to the next block group.
5151 */
5152 if (!offset && !failed_alloc && !cached &&
5153 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005154 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005155 num_bytes + empty_size);
5156 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04005157 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005158 } else if (!offset) {
5159 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04005160 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04005161checks:
Josef Bacik6226cb02009-04-03 10:14:18 -04005162 search_start = stripe_align(root, offset);
Josef Bacik2552d172009-04-03 10:14:19 -04005163 /* move on to the next group */
Josef Bacik6226cb02009-04-03 10:14:18 -04005164 if (search_start + num_bytes >= search_end) {
5165 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04005166 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04005167 }
Chris Masone37c9e62007-05-09 20:13:14 -04005168
Josef Bacik2552d172009-04-03 10:14:19 -04005169 /* move on to the next group */
5170 if (search_start + num_bytes >
Josef Bacik6226cb02009-04-03 10:14:18 -04005171 block_group->key.objectid + block_group->key.offset) {
5172 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04005173 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04005174 }
Josef Bacik80eb2342008-10-29 14:49:05 -04005175
Josef Bacik2552d172009-04-03 10:14:19 -04005176 ins->objectid = search_start;
5177 ins->offset = num_bytes;
5178
Josef Bacik6226cb02009-04-03 10:14:18 -04005179 if (offset < search_start)
5180 btrfs_add_free_space(block_group, offset,
5181 search_start - offset);
5182 BUG_ON(offset > search_start);
5183
Yan, Zhengf0486c62010-05-16 10:46:25 -04005184 ret = update_reserved_bytes(block_group, num_bytes, 1,
5185 (data & BTRFS_BLOCK_GROUP_DATA));
5186 if (ret == -EAGAIN) {
5187 btrfs_add_free_space(block_group, offset, num_bytes);
5188 goto loop;
5189 }
Yan Zheng11833d62009-09-11 16:11:19 -04005190
Josef Bacik2552d172009-04-03 10:14:19 -04005191 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005192 ins->objectid = search_start;
5193 ins->offset = num_bytes;
5194
5195 if (offset < search_start)
5196 btrfs_add_free_space(block_group, offset,
5197 search_start - offset);
5198 BUG_ON(offset > search_start);
Josef Bacik2552d172009-04-03 10:14:19 -04005199 break;
5200loop:
Josef Bacik0a243252009-09-11 16:11:20 -04005201 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005202 failed_alloc = false;
Yan, Zhengb742bb822010-05-16 10:46:24 -04005203 BUG_ON(index != get_block_group_index(block_group));
Chris Masonfa9c0d792009-04-03 09:47:43 -04005204 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04005205 }
5206 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05005207
Yan, Zhengb742bb822010-05-16 10:46:24 -04005208 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
5209 goto search;
5210
Josef Bacikccf0e722009-11-10 21:23:48 -05005211 /* LOOP_FIND_IDEAL, only search caching/cached bg's, and don't wait for
5212 * for them to make caching progress. Also
5213 * determine the best possible bg to cache
5214 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
5215 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04005216 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
5217 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
5218 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
5219 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04005220 */
Josef Bacik817d52f2009-07-13 21:29:25 -04005221 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE &&
5222 (found_uncached_bg || empty_size || empty_cluster ||
5223 allowed_chunk_alloc)) {
Yan, Zhengb742bb822010-05-16 10:46:24 -04005224 index = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05005225 if (loop == LOOP_FIND_IDEAL && found_uncached_bg) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005226 found_uncached_bg = false;
Josef Bacikccf0e722009-11-10 21:23:48 -05005227 loop++;
5228 if (!ideal_cache_percent &&
5229 atomic_read(&space_info->caching_threads))
Josef Bacik817d52f2009-07-13 21:29:25 -04005230 goto search;
Josef Bacikccf0e722009-11-10 21:23:48 -05005231
5232 /*
5233 * 1 of the following 2 things have happened so far
5234 *
5235 * 1) We found an ideal block group for caching that
5236 * is mostly full and will cache quickly, so we might
5237 * as well wait for it.
5238 *
5239 * 2) We searched for cached only and we didn't find
5240 * anything, and we didn't start any caching kthreads
5241 * either, so chances are we will loop through and
5242 * start a couple caching kthreads, and then come back
5243 * around and just wait for them. This will be slower
5244 * because we will have 2 caching kthreads reading at
5245 * the same time when we could have just started one
5246 * and waited for it to get far enough to give us an
5247 * allocation, so go ahead and go to the wait caching
5248 * loop.
5249 */
5250 loop = LOOP_CACHING_WAIT;
5251 search_start = ideal_cache_offset;
5252 ideal_cache_percent = 0;
5253 goto ideal_cache;
5254 } else if (loop == LOOP_FIND_IDEAL) {
5255 /*
5256 * Didn't find a uncached bg, wait on anything we find
5257 * next.
5258 */
5259 loop = LOOP_CACHING_WAIT;
5260 goto search;
5261 }
5262
5263 if (loop < LOOP_CACHING_WAIT) {
5264 loop++;
5265 goto search;
Josef Bacik817d52f2009-07-13 21:29:25 -04005266 }
5267
5268 if (loop == LOOP_ALLOC_CHUNK) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005269 empty_size = 0;
5270 empty_cluster = 0;
5271 }
Chris Mason42e70e72008-11-07 18:17:11 -05005272
Josef Bacik2552d172009-04-03 10:14:19 -04005273 if (allowed_chunk_alloc) {
5274 ret = do_chunk_alloc(trans, root, num_bytes +
5275 2 * 1024 * 1024, data, 1);
Josef Bacik2552d172009-04-03 10:14:19 -04005276 allowed_chunk_alloc = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05005277 done_chunk_alloc = 1;
5278 } else if (!done_chunk_alloc) {
Josef Bacik2552d172009-04-03 10:14:19 -04005279 space_info->force_alloc = 1;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005280 }
Josef Bacik80eb2342008-10-29 14:49:05 -04005281
Josef Bacik817d52f2009-07-13 21:29:25 -04005282 if (loop < LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005283 loop++;
Josef Bacik2552d172009-04-03 10:14:19 -04005284 goto search;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005285 }
Josef Bacik2552d172009-04-03 10:14:19 -04005286 ret = -ENOSPC;
5287 } else if (!ins->objectid) {
5288 ret = -ENOSPC;
Chris Masone19caa52007-10-15 16:17:44 -04005289 }
Chris Mason0b86a832008-03-24 15:01:56 -04005290
Josef Bacik80eb2342008-10-29 14:49:05 -04005291 /* we found what we needed */
5292 if (ins->objectid) {
5293 if (!(data & BTRFS_BLOCK_GROUP_DATA))
Yan Zhengd2fb3432008-12-11 16:30:39 -05005294 trans->block_group = block_group->key.objectid;
Josef Bacik80eb2342008-10-29 14:49:05 -04005295
Chris Masonfa9c0d792009-04-03 09:47:43 -04005296 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04005297 ret = 0;
5298 }
Chris Mason0b86a832008-03-24 15:01:56 -04005299
Chris Mason0f70abe2007-02-28 16:46:22 -05005300 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05005301}
Chris Masonec44a352008-04-28 15:29:52 -04005302
Josef Bacik9ed74f22009-09-11 16:12:44 -04005303static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
5304 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04005305{
5306 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb822010-05-16 10:46:24 -04005307 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005308
Josef Bacik9ed74f22009-09-11 16:12:44 -04005309 spin_lock(&info->lock);
Chris Masond3977122009-01-05 21:25:51 -05005310 printk(KERN_INFO "space_info has %llu free, is %sfull\n",
5311 (unsigned long long)(info->total_bytes - info->bytes_used -
Josef Bacik9ed74f22009-09-11 16:12:44 -04005312 info->bytes_pinned - info->bytes_reserved -
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005313 info->bytes_readonly),
Chris Masond3977122009-01-05 21:25:51 -05005314 (info->full) ? "" : "not ");
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005315 printk(KERN_INFO "space_info total=%llu, used=%llu, pinned=%llu, "
5316 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Joel Becker21380932009-04-21 12:38:29 -07005317 (unsigned long long)info->total_bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -04005318 (unsigned long long)info->bytes_used,
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005319 (unsigned long long)info->bytes_pinned,
5320 (unsigned long long)info->bytes_reserved,
5321 (unsigned long long)info->bytes_may_use,
5322 (unsigned long long)info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005323 spin_unlock(&info->lock);
5324
5325 if (!dump_block_groups)
5326 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005327
Josef Bacik80eb2342008-10-29 14:49:05 -04005328 down_read(&info->groups_sem);
Yan, Zhengb742bb822010-05-16 10:46:24 -04005329again:
5330 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04005331 spin_lock(&cache->lock);
Chris Masond3977122009-01-05 21:25:51 -05005332 printk(KERN_INFO "block group %llu has %llu bytes, %llu used "
5333 "%llu pinned %llu reserved\n",
5334 (unsigned long long)cache->key.objectid,
5335 (unsigned long long)cache->key.offset,
5336 (unsigned long long)btrfs_block_group_used(&cache->item),
5337 (unsigned long long)cache->pinned,
5338 (unsigned long long)cache->reserved);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005339 btrfs_dump_free_space(cache, bytes);
5340 spin_unlock(&cache->lock);
5341 }
Yan, Zhengb742bb822010-05-16 10:46:24 -04005342 if (++index < BTRFS_NR_RAID_TYPES)
5343 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04005344 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005345}
Zheng Yane8569812008-09-26 10:05:48 -04005346
Yan Zheng11833d62009-09-11 16:11:19 -04005347int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
5348 struct btrfs_root *root,
5349 u64 num_bytes, u64 min_alloc_size,
5350 u64 empty_size, u64 hint_byte,
5351 u64 search_end, struct btrfs_key *ins,
5352 u64 data)
Chris Masonfec577f2007-02-26 10:40:21 -05005353{
5354 int ret;
Chris Masonfbdc7622007-05-30 10:22:12 -04005355 u64 search_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005356
Josef Bacik6a632092009-02-20 11:00:09 -05005357 data = btrfs_get_alloc_profile(root, data);
Chris Mason98d20f62008-04-14 09:46:10 -04005358again:
Chris Mason0ef3e662008-05-24 14:04:53 -04005359 /*
5360 * the only place that sets empty_size is btrfs_realloc_node, which
5361 * is not called recursively on allocations
5362 */
Josef Bacik83d3c962009-12-07 21:45:59 +00005363 if (empty_size || root->ref_cows)
Chris Mason6324fbf2008-03-24 15:01:59 -04005364 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0ef3e662008-05-24 14:04:53 -04005365 num_bytes + 2 * 1024 * 1024, data, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04005366
Chris Masondb945352007-10-15 16:15:53 -04005367 WARN_ON(num_bytes < root->sectorsize);
5368 ret = find_free_extent(trans, root, num_bytes, empty_size,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005369 search_start, search_end, hint_byte,
5370 ins, data);
Chris Mason3b951512008-04-17 11:29:12 -04005371
Chris Mason98d20f62008-04-14 09:46:10 -04005372 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
5373 num_bytes = num_bytes >> 1;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005374 num_bytes = num_bytes & ~(root->sectorsize - 1);
Chris Mason98d20f62008-04-14 09:46:10 -04005375 num_bytes = max(num_bytes, min_alloc_size);
Chris Mason0ef3e662008-05-24 14:04:53 -04005376 do_chunk_alloc(trans, root->fs_info->extent_root,
5377 num_bytes, data, 1);
Chris Mason98d20f62008-04-14 09:46:10 -04005378 goto again;
5379 }
Chris Mason91435652011-02-16 13:10:41 -05005380 if (ret == -ENOSPC && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04005381 struct btrfs_space_info *sinfo;
5382
5383 sinfo = __find_space_info(root->fs_info, data);
Chris Masond3977122009-01-05 21:25:51 -05005384 printk(KERN_ERR "btrfs allocation failed flags %llu, "
5385 "wanted %llu\n", (unsigned long long)data,
5386 (unsigned long long)num_bytes);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005387 dump_space_info(sinfo, num_bytes, 1);
Chris Mason925baed2008-06-25 16:01:30 -04005388 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04005389
5390 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005391}
5392
Chris Mason65b51a02008-08-01 15:11:20 -04005393int btrfs_free_reserved_extent(struct btrfs_root *root, u64 start, u64 len)
5394{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005395 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05005396 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005397
Josef Bacik0f9dd462008-09-23 13:14:11 -04005398 cache = btrfs_lookup_block_group(root->fs_info, start);
5399 if (!cache) {
Chris Masond3977122009-01-05 21:25:51 -05005400 printk(KERN_ERR "Unable to find block group for %llu\n",
5401 (unsigned long long)start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005402 return -ENOSPC;
5403 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05005404
5405 ret = btrfs_discard_extent(root, start, len);
5406
Josef Bacik0f9dd462008-09-23 13:14:11 -04005407 btrfs_add_free_space(cache, start, len);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005408 update_reserved_bytes(cache, len, 0, 1);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005409 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04005410
Chris Masone6dcd2d2008-07-17 12:53:50 -04005411 return ret;
5412}
5413
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005414static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5415 struct btrfs_root *root,
5416 u64 parent, u64 root_objectid,
5417 u64 flags, u64 owner, u64 offset,
5418 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04005419{
5420 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005421 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005422 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005423 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005424 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005425 struct extent_buffer *leaf;
5426 int type;
5427 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04005428
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005429 if (parent > 0)
5430 type = BTRFS_SHARED_DATA_REF_KEY;
5431 else
5432 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04005433
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005434 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05005435
5436 path = btrfs_alloc_path();
5437 BUG_ON(!path);
Chris Mason47e4bb92008-02-01 14:51:59 -05005438
Chris Masonb9473432009-03-13 11:00:37 -04005439 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005440 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
5441 ins, size);
Chris Masonccd467d2007-06-28 15:57:36 -04005442 BUG_ON(ret);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005443
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005444 leaf = path->nodes[0];
5445 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05005446 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005447 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
5448 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
5449 btrfs_set_extent_flags(leaf, extent_item,
5450 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05005451
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005452 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
5453 btrfs_set_extent_inline_ref_type(leaf, iref, type);
5454 if (parent > 0) {
5455 struct btrfs_shared_data_ref *ref;
5456 ref = (struct btrfs_shared_data_ref *)(iref + 1);
5457 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
5458 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
5459 } else {
5460 struct btrfs_extent_data_ref *ref;
5461 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
5462 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
5463 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
5464 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
5465 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
5466 }
Chris Mason47e4bb92008-02-01 14:51:59 -05005467
5468 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05005469 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04005470
Yan, Zhengf0486c62010-05-16 10:46:25 -04005471 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Chris Masonf5947062008-02-04 10:10:13 -05005472 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05005473 printk(KERN_ERR "btrfs update block group failed for %llu "
5474 "%llu\n", (unsigned long long)ins->objectid,
5475 (unsigned long long)ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05005476 BUG();
5477 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005478 return ret;
5479}
5480
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005481static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
5482 struct btrfs_root *root,
5483 u64 parent, u64 root_objectid,
5484 u64 flags, struct btrfs_disk_key *key,
5485 int level, struct btrfs_key *ins)
5486{
5487 int ret;
5488 struct btrfs_fs_info *fs_info = root->fs_info;
5489 struct btrfs_extent_item *extent_item;
5490 struct btrfs_tree_block_info *block_info;
5491 struct btrfs_extent_inline_ref *iref;
5492 struct btrfs_path *path;
5493 struct extent_buffer *leaf;
5494 u32 size = sizeof(*extent_item) + sizeof(*block_info) + sizeof(*iref);
5495
5496 path = btrfs_alloc_path();
5497 BUG_ON(!path);
5498
5499 path->leave_spinning = 1;
5500 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
5501 ins, size);
5502 BUG_ON(ret);
5503
5504 leaf = path->nodes[0];
5505 extent_item = btrfs_item_ptr(leaf, path->slots[0],
5506 struct btrfs_extent_item);
5507 btrfs_set_extent_refs(leaf, extent_item, 1);
5508 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
5509 btrfs_set_extent_flags(leaf, extent_item,
5510 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
5511 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
5512
5513 btrfs_set_tree_block_key(leaf, block_info, key);
5514 btrfs_set_tree_block_level(leaf, block_info, level);
5515
5516 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
5517 if (parent > 0) {
5518 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
5519 btrfs_set_extent_inline_ref_type(leaf, iref,
5520 BTRFS_SHARED_BLOCK_REF_KEY);
5521 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
5522 } else {
5523 btrfs_set_extent_inline_ref_type(leaf, iref,
5524 BTRFS_TREE_BLOCK_REF_KEY);
5525 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
5526 }
5527
5528 btrfs_mark_buffer_dirty(leaf);
5529 btrfs_free_path(path);
5530
Yan, Zhengf0486c62010-05-16 10:46:25 -04005531 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005532 if (ret) {
5533 printk(KERN_ERR "btrfs update block group failed for %llu "
5534 "%llu\n", (unsigned long long)ins->objectid,
5535 (unsigned long long)ins->offset);
5536 BUG();
5537 }
5538 return ret;
5539}
5540
5541int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5542 struct btrfs_root *root,
5543 u64 root_objectid, u64 owner,
5544 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04005545{
5546 int ret;
Chris Mason1c2308f82008-09-23 13:14:13 -04005547
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005548 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04005549
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005550 ret = btrfs_add_delayed_data_ref(trans, ins->objectid, ins->offset,
5551 0, root_objectid, owner, offset,
5552 BTRFS_ADD_DELAYED_EXTENT, NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005553 return ret;
5554}
Chris Masone02119d2008-09-05 16:13:11 -04005555
5556/*
5557 * this is used by the tree logging recovery code. It records that
5558 * an extent has been allocated and makes sure to clear the free
5559 * space cache bits as well
5560 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005561int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
5562 struct btrfs_root *root,
5563 u64 root_objectid, u64 owner, u64 offset,
5564 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04005565{
5566 int ret;
5567 struct btrfs_block_group_cache *block_group;
Yan Zheng11833d62009-09-11 16:11:19 -04005568 struct btrfs_caching_control *caching_ctl;
5569 u64 start = ins->objectid;
5570 u64 num_bytes = ins->offset;
Chris Masone02119d2008-09-05 16:13:11 -04005571
Chris Masone02119d2008-09-05 16:13:11 -04005572 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacikb8399de2010-12-08 09:15:11 -05005573 cache_block_group(block_group, trans, NULL, 0);
Yan Zheng11833d62009-09-11 16:11:19 -04005574 caching_ctl = get_caching_control(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04005575
Yan Zheng11833d62009-09-11 16:11:19 -04005576 if (!caching_ctl) {
5577 BUG_ON(!block_group_cache_done(block_group));
5578 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5579 BUG_ON(ret);
5580 } else {
5581 mutex_lock(&caching_ctl->mutex);
5582
5583 if (start >= caching_ctl->progress) {
5584 ret = add_excluded_extent(root, start, num_bytes);
5585 BUG_ON(ret);
5586 } else if (start + num_bytes <= caching_ctl->progress) {
5587 ret = btrfs_remove_free_space(block_group,
5588 start, num_bytes);
5589 BUG_ON(ret);
5590 } else {
5591 num_bytes = caching_ctl->progress - start;
5592 ret = btrfs_remove_free_space(block_group,
5593 start, num_bytes);
5594 BUG_ON(ret);
5595
5596 start = caching_ctl->progress;
5597 num_bytes = ins->objectid + ins->offset -
5598 caching_ctl->progress;
5599 ret = add_excluded_extent(root, start, num_bytes);
5600 BUG_ON(ret);
5601 }
5602
5603 mutex_unlock(&caching_ctl->mutex);
5604 put_caching_control(caching_ctl);
5605 }
5606
Yan, Zhengf0486c62010-05-16 10:46:25 -04005607 ret = update_reserved_bytes(block_group, ins->offset, 1, 1);
5608 BUG_ON(ret);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005609 btrfs_put_block_group(block_group);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005610 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
5611 0, owner, offset, ins, 1);
Chris Masone02119d2008-09-05 16:13:11 -04005612 return ret;
5613}
5614
Chris Mason65b51a02008-08-01 15:11:20 -04005615struct extent_buffer *btrfs_init_new_buffer(struct btrfs_trans_handle *trans,
5616 struct btrfs_root *root,
Chris Mason4008c042009-02-12 14:09:45 -05005617 u64 bytenr, u32 blocksize,
5618 int level)
Chris Mason65b51a02008-08-01 15:11:20 -04005619{
5620 struct extent_buffer *buf;
5621
5622 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
5623 if (!buf)
5624 return ERR_PTR(-ENOMEM);
5625 btrfs_set_header_generation(buf, trans->transid);
Chris Mason4008c042009-02-12 14:09:45 -05005626 btrfs_set_buffer_lockdep_class(buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04005627 btrfs_tree_lock(buf);
5628 clean_tree_block(trans, root, buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005629
5630 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04005631 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005632
Chris Masond0c803c2008-09-11 16:17:57 -04005633 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00005634 /*
5635 * we allow two log transactions at a time, use different
5636 * EXENT bit to differentiate dirty pages.
5637 */
5638 if (root->log_transid % 2 == 0)
5639 set_extent_dirty(&root->dirty_log_pages, buf->start,
5640 buf->start + buf->len - 1, GFP_NOFS);
5641 else
5642 set_extent_new(&root->dirty_log_pages, buf->start,
5643 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04005644 } else {
5645 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
5646 buf->start + buf->len - 1, GFP_NOFS);
5647 }
Chris Mason65b51a02008-08-01 15:11:20 -04005648 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005649 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04005650 return buf;
5651}
5652
Yan, Zhengf0486c62010-05-16 10:46:25 -04005653static struct btrfs_block_rsv *
5654use_block_rsv(struct btrfs_trans_handle *trans,
5655 struct btrfs_root *root, u32 blocksize)
5656{
5657 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00005658 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005659 int ret;
5660
5661 block_rsv = get_block_rsv(trans, root);
5662
5663 if (block_rsv->size == 0) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005664 ret = reserve_metadata_bytes(trans, root, block_rsv,
5665 blocksize, 0);
Josef Bacik68a82272011-01-24 21:43:20 +00005666 /*
5667 * If we couldn't reserve metadata bytes try and use some from
5668 * the global reserve.
5669 */
5670 if (ret && block_rsv != global_rsv) {
5671 ret = block_rsv_use_bytes(global_rsv, blocksize);
5672 if (!ret)
5673 return global_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005674 return ERR_PTR(ret);
Josef Bacik68a82272011-01-24 21:43:20 +00005675 } else if (ret) {
5676 return ERR_PTR(ret);
5677 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005678 return block_rsv;
5679 }
5680
5681 ret = block_rsv_use_bytes(block_rsv, blocksize);
5682 if (!ret)
5683 return block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00005684 if (ret) {
5685 WARN_ON(1);
5686 ret = reserve_metadata_bytes(trans, root, block_rsv, blocksize,
5687 0);
5688 if (!ret) {
5689 spin_lock(&block_rsv->lock);
5690 block_rsv->size += blocksize;
5691 spin_unlock(&block_rsv->lock);
5692 return block_rsv;
5693 } else if (ret && block_rsv != global_rsv) {
5694 ret = block_rsv_use_bytes(global_rsv, blocksize);
5695 if (!ret)
5696 return global_rsv;
5697 }
5698 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005699
Yan, Zhengf0486c62010-05-16 10:46:25 -04005700 return ERR_PTR(-ENOSPC);
5701}
5702
5703static void unuse_block_rsv(struct btrfs_block_rsv *block_rsv, u32 blocksize)
5704{
5705 block_rsv_add_bytes(block_rsv, blocksize, 0);
5706 block_rsv_release_bytes(block_rsv, NULL, 0);
5707}
5708
Chris Masonfec577f2007-02-26 10:40:21 -05005709/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04005710 * finds a free extent and does all the dirty work required for allocation
5711 * returns the key for the extent through ins, and a tree buffer for
5712 * the first block of the extent through buf.
5713 *
Chris Masonfec577f2007-02-26 10:40:21 -05005714 * returns the tree buffer or NULL.
5715 */
Chris Mason5f39d392007-10-15 16:14:19 -04005716struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005717 struct btrfs_root *root, u32 blocksize,
5718 u64 parent, u64 root_objectid,
5719 struct btrfs_disk_key *key, int level,
5720 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05005721{
Chris Masone2fa7222007-03-12 16:22:34 -04005722 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005723 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04005724 struct extent_buffer *buf;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005725 u64 flags = 0;
5726 int ret;
Chris Masonfec577f2007-02-26 10:40:21 -05005727
Yan, Zhengf0486c62010-05-16 10:46:25 -04005728
5729 block_rsv = use_block_rsv(trans, root, blocksize);
5730 if (IS_ERR(block_rsv))
5731 return ERR_CAST(block_rsv);
5732
5733 ret = btrfs_reserve_extent(trans, root, blocksize, blocksize,
5734 empty_size, hint, (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05005735 if (ret) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005736 unuse_block_rsv(block_rsv, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04005737 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05005738 }
Chris Mason55c69072008-01-09 15:55:33 -05005739
Chris Mason4008c042009-02-12 14:09:45 -05005740 buf = btrfs_init_new_buffer(trans, root, ins.objectid,
5741 blocksize, level);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005742 BUG_ON(IS_ERR(buf));
5743
5744 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
5745 if (parent == 0)
5746 parent = ins.objectid;
5747 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
5748 } else
5749 BUG_ON(parent > 0);
5750
5751 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
5752 struct btrfs_delayed_extent_op *extent_op;
5753 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
5754 BUG_ON(!extent_op);
5755 if (key)
5756 memcpy(&extent_op->key, key, sizeof(extent_op->key));
5757 else
5758 memset(&extent_op->key, 0, sizeof(extent_op->key));
5759 extent_op->flags_to_set = flags;
5760 extent_op->update_key = 1;
5761 extent_op->update_flags = 1;
5762 extent_op->is_data = 0;
5763
5764 ret = btrfs_add_delayed_tree_ref(trans, ins.objectid,
5765 ins.offset, parent, root_objectid,
5766 level, BTRFS_ADD_DELAYED_EXTENT,
5767 extent_op);
5768 BUG_ON(ret);
5769 }
Chris Masonfec577f2007-02-26 10:40:21 -05005770 return buf;
5771}
Chris Masona28ec192007-03-06 20:08:01 -05005772
Yan Zheng2c47e6052009-06-27 21:07:35 -04005773struct walk_control {
5774 u64 refs[BTRFS_MAX_LEVEL];
5775 u64 flags[BTRFS_MAX_LEVEL];
5776 struct btrfs_key update_progress;
5777 int stage;
5778 int level;
5779 int shared_level;
5780 int update_ref;
5781 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005782 int reada_slot;
5783 int reada_count;
Yan Zheng2c47e6052009-06-27 21:07:35 -04005784};
5785
5786#define DROP_REFERENCE 1
5787#define UPDATE_BACKREF 2
5788
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005789static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
5790 struct btrfs_root *root,
5791 struct walk_control *wc,
5792 struct btrfs_path *path)
5793{
5794 u64 bytenr;
5795 u64 generation;
5796 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005797 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005798 u32 nritems;
5799 u32 blocksize;
5800 struct btrfs_key key;
5801 struct extent_buffer *eb;
5802 int ret;
5803 int slot;
5804 int nread = 0;
5805
5806 if (path->slots[wc->level] < wc->reada_slot) {
5807 wc->reada_count = wc->reada_count * 2 / 3;
5808 wc->reada_count = max(wc->reada_count, 2);
5809 } else {
5810 wc->reada_count = wc->reada_count * 3 / 2;
5811 wc->reada_count = min_t(int, wc->reada_count,
5812 BTRFS_NODEPTRS_PER_BLOCK(root));
5813 }
5814
5815 eb = path->nodes[wc->level];
5816 nritems = btrfs_header_nritems(eb);
5817 blocksize = btrfs_level_size(root, wc->level - 1);
5818
5819 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
5820 if (nread >= wc->reada_count)
5821 break;
5822
5823 cond_resched();
5824 bytenr = btrfs_node_blockptr(eb, slot);
5825 generation = btrfs_node_ptr_generation(eb, slot);
5826
5827 if (slot == path->slots[wc->level])
5828 goto reada;
5829
5830 if (wc->stage == UPDATE_BACKREF &&
5831 generation <= root->root_key.offset)
5832 continue;
5833
Yan, Zheng94fcca92009-10-09 09:25:16 -04005834 /* We don't lock the tree block, it's OK to be racy here */
5835 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
5836 &refs, &flags);
5837 BUG_ON(ret);
5838 BUG_ON(refs == 0);
5839
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005840 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005841 if (refs == 1)
5842 goto reada;
5843
Yan, Zheng94fcca92009-10-09 09:25:16 -04005844 if (wc->level == 1 &&
5845 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5846 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005847 if (!wc->update_ref ||
5848 generation <= root->root_key.offset)
5849 continue;
5850 btrfs_node_key_to_cpu(eb, &key, slot);
5851 ret = btrfs_comp_cpu_keys(&key,
5852 &wc->update_progress);
5853 if (ret < 0)
5854 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005855 } else {
5856 if (wc->level == 1 &&
5857 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5858 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005859 }
5860reada:
5861 ret = readahead_tree_block(root, bytenr, blocksize,
5862 generation);
5863 if (ret)
5864 break;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005865 nread++;
5866 }
5867 wc->reada_slot = slot;
5868}
5869
Chris Mason9aca1d52007-03-13 11:09:37 -04005870/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04005871 * hepler to process tree block while walking down the tree.
5872 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04005873 * when wc->stage == UPDATE_BACKREF, this function updates
5874 * back refs for pointers in the block.
5875 *
5876 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04005877 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04005878static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
5879 struct btrfs_root *root,
5880 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04005881 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04005882{
5883 int level = wc->level;
5884 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04005885 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
5886 int ret;
5887
5888 if (wc->stage == UPDATE_BACKREF &&
5889 btrfs_header_owner(eb) != root->root_key.objectid)
5890 return 1;
5891
5892 /*
5893 * when reference count of tree block is 1, it won't increase
5894 * again. once full backref flag is set, we never clear it.
5895 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04005896 if (lookup_info &&
5897 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
5898 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04005899 BUG_ON(!path->locks[level]);
5900 ret = btrfs_lookup_extent_info(trans, root,
5901 eb->start, eb->len,
5902 &wc->refs[level],
5903 &wc->flags[level]);
5904 BUG_ON(ret);
5905 BUG_ON(wc->refs[level] == 0);
5906 }
5907
Yan Zheng2c47e6052009-06-27 21:07:35 -04005908 if (wc->stage == DROP_REFERENCE) {
5909 if (wc->refs[level] > 1)
5910 return 1;
5911
5912 if (path->locks[level] && !wc->keep_locks) {
5913 btrfs_tree_unlock(eb);
5914 path->locks[level] = 0;
5915 }
5916 return 0;
5917 }
5918
5919 /* wc->stage == UPDATE_BACKREF */
5920 if (!(wc->flags[level] & flag)) {
5921 BUG_ON(!path->locks[level]);
5922 ret = btrfs_inc_ref(trans, root, eb, 1);
5923 BUG_ON(ret);
5924 ret = btrfs_dec_ref(trans, root, eb, 0);
5925 BUG_ON(ret);
5926 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
5927 eb->len, flag, 0);
5928 BUG_ON(ret);
5929 wc->flags[level] |= flag;
5930 }
5931
5932 /*
5933 * the block is shared by multiple trees, so it's not good to
5934 * keep the tree lock
5935 */
5936 if (path->locks[level] && level > 0) {
5937 btrfs_tree_unlock(eb);
5938 path->locks[level] = 0;
5939 }
5940 return 0;
5941}
5942
5943/*
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005944 * hepler to process tree block pointer.
5945 *
5946 * when wc->stage == DROP_REFERENCE, this function checks
5947 * reference count of the block pointed to. if the block
5948 * is shared and we need update back refs for the subtree
5949 * rooted at the block, this function changes wc->stage to
5950 * UPDATE_BACKREF. if the block is shared and there is no
5951 * need to update back, this function drops the reference
5952 * to the block.
5953 *
5954 * NOTE: return value 1 means we should stop walking down.
5955 */
5956static noinline int do_walk_down(struct btrfs_trans_handle *trans,
5957 struct btrfs_root *root,
5958 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04005959 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005960{
5961 u64 bytenr;
5962 u64 generation;
5963 u64 parent;
5964 u32 blocksize;
5965 struct btrfs_key key;
5966 struct extent_buffer *next;
5967 int level = wc->level;
5968 int reada = 0;
5969 int ret = 0;
5970
5971 generation = btrfs_node_ptr_generation(path->nodes[level],
5972 path->slots[level]);
5973 /*
5974 * if the lower level block was created before the snapshot
5975 * was created, we know there is no need to update back refs
5976 * for the subtree
5977 */
5978 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04005979 generation <= root->root_key.offset) {
5980 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005981 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005982 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005983
5984 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
5985 blocksize = btrfs_level_size(root, level - 1);
5986
5987 next = btrfs_find_tree_block(root, bytenr, blocksize);
5988 if (!next) {
5989 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
Miao Xie90d2c51d2010-03-25 12:37:12 +00005990 if (!next)
5991 return -ENOMEM;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005992 reada = 1;
5993 }
5994 btrfs_tree_lock(next);
5995 btrfs_set_lock_blocking(next);
5996
Yan, Zheng94fcca92009-10-09 09:25:16 -04005997 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
5998 &wc->refs[level - 1],
5999 &wc->flags[level - 1]);
6000 BUG_ON(ret);
6001 BUG_ON(wc->refs[level - 1] == 0);
6002 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006003
Yan, Zheng94fcca92009-10-09 09:25:16 -04006004 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006005 if (wc->refs[level - 1] > 1) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04006006 if (level == 1 &&
6007 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
6008 goto skip;
6009
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006010 if (!wc->update_ref ||
6011 generation <= root->root_key.offset)
6012 goto skip;
6013
6014 btrfs_node_key_to_cpu(path->nodes[level], &key,
6015 path->slots[level]);
6016 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
6017 if (ret < 0)
6018 goto skip;
6019
6020 wc->stage = UPDATE_BACKREF;
6021 wc->shared_level = level - 1;
6022 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04006023 } else {
6024 if (level == 1 &&
6025 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
6026 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006027 }
6028
6029 if (!btrfs_buffer_uptodate(next, generation)) {
6030 btrfs_tree_unlock(next);
6031 free_extent_buffer(next);
6032 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006033 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006034 }
6035
6036 if (!next) {
6037 if (reada && level == 1)
6038 reada_walk_down(trans, root, wc, path);
6039 next = read_tree_block(root, bytenr, blocksize, generation);
6040 btrfs_tree_lock(next);
6041 btrfs_set_lock_blocking(next);
6042 }
6043
6044 level--;
6045 BUG_ON(level != btrfs_header_level(next));
6046 path->nodes[level] = next;
6047 path->slots[level] = 0;
6048 path->locks[level] = 1;
6049 wc->level = level;
6050 if (wc->level == 1)
6051 wc->reada_slot = 0;
6052 return 0;
6053skip:
6054 wc->refs[level - 1] = 0;
6055 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006056 if (wc->stage == DROP_REFERENCE) {
6057 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
6058 parent = path->nodes[level]->start;
6059 } else {
6060 BUG_ON(root->root_key.objectid !=
6061 btrfs_header_owner(path->nodes[level]));
6062 parent = 0;
6063 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006064
Yan, Zheng94fcca92009-10-09 09:25:16 -04006065 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
6066 root->root_key.objectid, level - 1, 0);
6067 BUG_ON(ret);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006068 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006069 btrfs_tree_unlock(next);
6070 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04006071 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006072 return 1;
6073}
6074
6075/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04006076 * hepler to process tree block while walking up the tree.
6077 *
6078 * when wc->stage == DROP_REFERENCE, this function drops
6079 * reference count on the block.
6080 *
6081 * when wc->stage == UPDATE_BACKREF, this function changes
6082 * wc->stage back to DROP_REFERENCE if we changed wc->stage
6083 * to UPDATE_BACKREF previously while processing the block.
6084 *
6085 * NOTE: return value 1 means we should stop walking up.
6086 */
6087static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
6088 struct btrfs_root *root,
6089 struct btrfs_path *path,
6090 struct walk_control *wc)
6091{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006092 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006093 int level = wc->level;
6094 struct extent_buffer *eb = path->nodes[level];
6095 u64 parent = 0;
6096
6097 if (wc->stage == UPDATE_BACKREF) {
6098 BUG_ON(wc->shared_level < level);
6099 if (level < wc->shared_level)
6100 goto out;
6101
Yan Zheng2c47e6052009-06-27 21:07:35 -04006102 ret = find_next_key(path, level + 1, &wc->update_progress);
6103 if (ret > 0)
6104 wc->update_ref = 0;
6105
6106 wc->stage = DROP_REFERENCE;
6107 wc->shared_level = -1;
6108 path->slots[level] = 0;
6109
6110 /*
6111 * check reference count again if the block isn't locked.
6112 * we should start walking down the tree again if reference
6113 * count is one.
6114 */
6115 if (!path->locks[level]) {
6116 BUG_ON(level == 0);
6117 btrfs_tree_lock(eb);
6118 btrfs_set_lock_blocking(eb);
6119 path->locks[level] = 1;
6120
6121 ret = btrfs_lookup_extent_info(trans, root,
6122 eb->start, eb->len,
6123 &wc->refs[level],
6124 &wc->flags[level]);
6125 BUG_ON(ret);
6126 BUG_ON(wc->refs[level] == 0);
6127 if (wc->refs[level] == 1) {
6128 btrfs_tree_unlock(eb);
6129 path->locks[level] = 0;
6130 return 1;
6131 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006132 }
6133 }
6134
6135 /* wc->stage == DROP_REFERENCE */
6136 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
6137
6138 if (wc->refs[level] == 1) {
6139 if (level == 0) {
6140 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6141 ret = btrfs_dec_ref(trans, root, eb, 1);
6142 else
6143 ret = btrfs_dec_ref(trans, root, eb, 0);
6144 BUG_ON(ret);
6145 }
6146 /* make block locked assertion in clean_tree_block happy */
6147 if (!path->locks[level] &&
6148 btrfs_header_generation(eb) == trans->transid) {
6149 btrfs_tree_lock(eb);
6150 btrfs_set_lock_blocking(eb);
6151 path->locks[level] = 1;
6152 }
6153 clean_tree_block(trans, root, eb);
6154 }
6155
6156 if (eb == root->node) {
6157 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6158 parent = eb->start;
6159 else
6160 BUG_ON(root->root_key.objectid !=
6161 btrfs_header_owner(eb));
6162 } else {
6163 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6164 parent = path->nodes[level + 1]->start;
6165 else
6166 BUG_ON(root->root_key.objectid !=
6167 btrfs_header_owner(path->nodes[level + 1]));
6168 }
6169
Yan, Zhengf0486c62010-05-16 10:46:25 -04006170 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006171out:
6172 wc->refs[level] = 0;
6173 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006174 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006175}
6176
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006177static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
6178 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04006179 struct btrfs_path *path,
6180 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04006181{
Yan Zheng2c47e6052009-06-27 21:07:35 -04006182 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006183 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006184 int ret;
6185
Yan Zheng2c47e6052009-06-27 21:07:35 -04006186 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04006187 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006188 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04006189 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006190
Yan Zheng2c47e6052009-06-27 21:07:35 -04006191 if (level == 0)
6192 break;
6193
Yan, Zheng7a7965f2010-02-01 02:41:17 +00006194 if (path->slots[level] >=
6195 btrfs_header_nritems(path->nodes[level]))
6196 break;
6197
Yan, Zheng94fcca92009-10-09 09:25:16 -04006198 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006199 if (ret > 0) {
6200 path->slots[level]++;
6201 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00006202 } else if (ret < 0)
6203 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006204 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006205 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04006206 return 0;
6207}
6208
Chris Masond3977122009-01-05 21:25:51 -05006209static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05006210 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04006211 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04006212 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05006213{
Yan Zheng2c47e6052009-06-27 21:07:35 -04006214 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05006215 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04006216
Yan Zheng2c47e6052009-06-27 21:07:35 -04006217 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
6218 while (level < max_level && path->nodes[level]) {
6219 wc->level = level;
6220 if (path->slots[level] + 1 <
6221 btrfs_header_nritems(path->nodes[level])) {
6222 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05006223 return 0;
6224 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006225 ret = walk_up_proc(trans, root, path, wc);
6226 if (ret > 0)
6227 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05006228
Yan Zheng2c47e6052009-06-27 21:07:35 -04006229 if (path->locks[level]) {
6230 btrfs_tree_unlock(path->nodes[level]);
6231 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006232 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006233 free_extent_buffer(path->nodes[level]);
6234 path->nodes[level] = NULL;
6235 level++;
Chris Mason20524f02007-03-10 06:35:47 -05006236 }
6237 }
6238 return 1;
6239}
6240
Chris Mason9aca1d52007-03-13 11:09:37 -04006241/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04006242 * drop a subvolume tree.
6243 *
6244 * this function traverses the tree freeing any blocks that only
6245 * referenced by the tree.
6246 *
6247 * when a shared tree block is found. this function decreases its
6248 * reference count by one. if update_ref is true, this function
6249 * also make sure backrefs for the shared block and all lower level
6250 * blocks are properly updated.
Chris Mason9aca1d52007-03-13 11:09:37 -04006251 */
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006252int btrfs_drop_snapshot(struct btrfs_root *root,
6253 struct btrfs_block_rsv *block_rsv, int update_ref)
Chris Mason20524f02007-03-10 06:35:47 -05006254{
Chris Mason5caf2a02007-04-02 11:20:42 -04006255 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006256 struct btrfs_trans_handle *trans;
6257 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04006258 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006259 struct walk_control *wc;
6260 struct btrfs_key key;
6261 int err = 0;
6262 int ret;
6263 int level;
Chris Mason20524f02007-03-10 06:35:47 -05006264
Chris Mason5caf2a02007-04-02 11:20:42 -04006265 path = btrfs_alloc_path();
6266 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05006267
Yan Zheng2c47e6052009-06-27 21:07:35 -04006268 wc = kzalloc(sizeof(*wc), GFP_NOFS);
6269 BUG_ON(!wc);
6270
Yan, Zhenga22285a2010-05-16 10:48:46 -04006271 trans = btrfs_start_transaction(tree_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00006272 BUG_ON(IS_ERR(trans));
6273
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006274 if (block_rsv)
6275 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006276
Chris Mason9f3a7422007-08-07 15:52:19 -04006277 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006278 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006279 path->nodes[level] = btrfs_lock_root_node(root);
6280 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04006281 path->slots[level] = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006282 path->locks[level] = 1;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006283 memset(&wc->update_progress, 0,
6284 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04006285 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04006286 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006287 memcpy(&wc->update_progress, &key,
6288 sizeof(wc->update_progress));
6289
Chris Mason6702ed42007-08-07 16:15:09 -04006290 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006291 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04006292 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006293 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6294 path->lowest_level = 0;
6295 if (ret < 0) {
6296 err = ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04006297 goto out;
6298 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006299 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006300
Chris Mason7d9eb122008-07-08 14:19:17 -04006301 /*
6302 * unlock our path, this is safe because only this
6303 * function is allowed to delete this snapshot
6304 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006305 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04006306
Yan Zheng2c47e6052009-06-27 21:07:35 -04006307 level = btrfs_header_level(root->node);
6308 while (1) {
6309 btrfs_tree_lock(path->nodes[level]);
6310 btrfs_set_lock_blocking(path->nodes[level]);
6311
6312 ret = btrfs_lookup_extent_info(trans, root,
6313 path->nodes[level]->start,
6314 path->nodes[level]->len,
6315 &wc->refs[level],
6316 &wc->flags[level]);
6317 BUG_ON(ret);
6318 BUG_ON(wc->refs[level] == 0);
6319
6320 if (level == root_item->drop_level)
6321 break;
6322
6323 btrfs_tree_unlock(path->nodes[level]);
6324 WARN_ON(wc->refs[level] != 1);
6325 level--;
6326 }
6327 }
6328
6329 wc->level = level;
6330 wc->shared_level = -1;
6331 wc->stage = DROP_REFERENCE;
6332 wc->update_ref = update_ref;
6333 wc->keep_locks = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006334 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006335
6336 while (1) {
6337 ret = walk_down_tree(trans, root, path, wc);
6338 if (ret < 0) {
6339 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04006340 break;
6341 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006342
6343 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
6344 if (ret < 0) {
6345 err = ret;
6346 break;
6347 }
6348
6349 if (ret > 0) {
6350 BUG_ON(wc->stage != DROP_REFERENCE);
6351 break;
6352 }
6353
6354 if (wc->stage == DROP_REFERENCE) {
6355 level = wc->level;
6356 btrfs_node_key(path->nodes[level],
6357 &root_item->drop_progress,
6358 path->slots[level]);
6359 root_item->drop_level = level;
6360 }
6361
6362 BUG_ON(wc->level == 0);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006363 if (btrfs_should_end_transaction(trans, tree_root)) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006364 ret = btrfs_update_root(trans, tree_root,
6365 &root->root_key,
6366 root_item);
6367 BUG_ON(ret);
6368
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006369 btrfs_end_transaction_throttle(trans, tree_root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006370 trans = btrfs_start_transaction(tree_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00006371 BUG_ON(IS_ERR(trans));
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006372 if (block_rsv)
6373 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04006374 }
Chris Mason20524f02007-03-10 06:35:47 -05006375 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006376 btrfs_release_path(root, path);
6377 BUG_ON(err);
6378
6379 ret = btrfs_del_root(trans, tree_root, &root->root_key);
6380 BUG_ON(ret);
6381
Yan, Zheng76dda932009-09-21 16:00:26 -04006382 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
6383 ret = btrfs_find_last_root(tree_root, root->root_key.objectid,
6384 NULL, NULL);
6385 BUG_ON(ret < 0);
6386 if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05006387 /* if we fail to delete the orphan item this time
6388 * around, it'll get picked up the next time.
6389 *
6390 * The most common failure here is just -ENOENT.
6391 */
6392 btrfs_del_orphan_item(trans, tree_root,
6393 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04006394 }
6395 }
6396
6397 if (root->in_radix) {
6398 btrfs_free_fs_root(tree_root->fs_info, root);
6399 } else {
6400 free_extent_buffer(root->node);
6401 free_extent_buffer(root->commit_root);
6402 kfree(root);
6403 }
Chris Mason9f3a7422007-08-07 15:52:19 -04006404out:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006405 btrfs_end_transaction_throttle(trans, tree_root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006406 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04006407 btrfs_free_path(path);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006408 return err;
Chris Mason20524f02007-03-10 06:35:47 -05006409}
Chris Mason9078a3e2007-04-26 16:46:15 -04006410
Yan Zheng2c47e6052009-06-27 21:07:35 -04006411/*
6412 * drop subtree rooted at tree block 'node'.
6413 *
6414 * NOTE: this function will unlock and release tree block 'node'
6415 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04006416int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
6417 struct btrfs_root *root,
6418 struct extent_buffer *node,
6419 struct extent_buffer *parent)
6420{
6421 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006422 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006423 int level;
6424 int parent_level;
6425 int ret = 0;
6426 int wret;
6427
Yan Zheng2c47e6052009-06-27 21:07:35 -04006428 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
6429
Yan Zhengf82d02d2008-10-29 14:49:05 -04006430 path = btrfs_alloc_path();
6431 BUG_ON(!path);
6432
Yan Zheng2c47e6052009-06-27 21:07:35 -04006433 wc = kzalloc(sizeof(*wc), GFP_NOFS);
6434 BUG_ON(!wc);
6435
Chris Masonb9447ef82009-03-09 11:45:38 -04006436 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006437 parent_level = btrfs_header_level(parent);
6438 extent_buffer_get(parent);
6439 path->nodes[parent_level] = parent;
6440 path->slots[parent_level] = btrfs_header_nritems(parent);
6441
Chris Masonb9447ef82009-03-09 11:45:38 -04006442 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006443 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006444 path->nodes[level] = node;
6445 path->slots[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006446 path->locks[level] = 1;
6447
6448 wc->refs[parent_level] = 1;
6449 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
6450 wc->level = level;
6451 wc->shared_level = -1;
6452 wc->stage = DROP_REFERENCE;
6453 wc->update_ref = 0;
6454 wc->keep_locks = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006455 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006456
6457 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006458 wret = walk_down_tree(trans, root, path, wc);
6459 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04006460 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006461 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006462 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04006463
Yan Zheng2c47e6052009-06-27 21:07:35 -04006464 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006465 if (wret < 0)
6466 ret = wret;
6467 if (wret != 0)
6468 break;
6469 }
6470
Yan Zheng2c47e6052009-06-27 21:07:35 -04006471 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006472 btrfs_free_path(path);
6473 return ret;
6474}
6475
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006476#if 0
Chris Mason8e7bf942008-04-28 09:02:36 -04006477static unsigned long calc_ra(unsigned long start, unsigned long last,
6478 unsigned long nr)
6479{
6480 return min(last, start + nr - 1);
6481}
6482
Chris Masond3977122009-01-05 21:25:51 -05006483static noinline int relocate_inode_pages(struct inode *inode, u64 start,
Chris Mason98ed5172008-01-03 10:01:48 -05006484 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05006485{
6486 u64 page_start;
6487 u64 page_end;
Zheng Yan1a40e232008-09-26 10:09:34 -04006488 unsigned long first_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05006489 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05006490 unsigned long i;
6491 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05006492 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05006493 struct file_ra_state *ra;
Chris Mason3eaa2882008-07-24 11:57:52 -04006494 struct btrfs_ordered_extent *ordered;
Zheng Yan1a40e232008-09-26 10:09:34 -04006495 unsigned int total_read = 0;
6496 unsigned int total_dirty = 0;
6497 int ret = 0;
Chris Mason4313b392008-01-03 09:08:48 -05006498
6499 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00006500 if (!ra)
6501 return -ENOMEM;
Chris Masonedbd8d42007-12-21 16:27:24 -05006502
6503 mutex_lock(&inode->i_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04006504 first_index = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05006505 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
6506
Zheng Yan1a40e232008-09-26 10:09:34 -04006507 /* make sure the dirty trick played by the caller work */
6508 ret = invalidate_inode_pages2_range(inode->i_mapping,
6509 first_index, last_index);
6510 if (ret)
6511 goto out_unlock;
Chris Mason8e7bf942008-04-28 09:02:36 -04006512
Chris Mason4313b392008-01-03 09:08:48 -05006513 file_ra_state_init(ra, inode->i_mapping);
Chris Masonedbd8d42007-12-21 16:27:24 -05006514
Zheng Yan1a40e232008-09-26 10:09:34 -04006515 for (i = first_index ; i <= last_index; i++) {
6516 if (total_read % ra->ra_pages == 0) {
Chris Mason8e7bf942008-04-28 09:02:36 -04006517 btrfs_force_ra(inode->i_mapping, ra, NULL, i,
Zheng Yan1a40e232008-09-26 10:09:34 -04006518 calc_ra(i, last_index, ra->ra_pages));
Chris Mason8e7bf942008-04-28 09:02:36 -04006519 }
6520 total_read++;
Chris Mason3eaa2882008-07-24 11:57:52 -04006521again:
6522 if (((u64)i << PAGE_CACHE_SHIFT) > i_size_read(inode))
Zheng Yan1a40e232008-09-26 10:09:34 -04006523 BUG_ON(1);
Chris Masonedbd8d42007-12-21 16:27:24 -05006524 page = grab_cache_page(inode->i_mapping, i);
Chris Masona061fc82008-05-07 11:43:44 -04006525 if (!page) {
Zheng Yan1a40e232008-09-26 10:09:34 -04006526 ret = -ENOMEM;
Chris Masonedbd8d42007-12-21 16:27:24 -05006527 goto out_unlock;
Chris Masona061fc82008-05-07 11:43:44 -04006528 }
Chris Masonedbd8d42007-12-21 16:27:24 -05006529 if (!PageUptodate(page)) {
6530 btrfs_readpage(NULL, page);
6531 lock_page(page);
6532 if (!PageUptodate(page)) {
6533 unlock_page(page);
6534 page_cache_release(page);
Zheng Yan1a40e232008-09-26 10:09:34 -04006535 ret = -EIO;
Chris Masonedbd8d42007-12-21 16:27:24 -05006536 goto out_unlock;
6537 }
6538 }
Chris Masonec44a352008-04-28 15:29:52 -04006539 wait_on_page_writeback(page);
Chris Mason3eaa2882008-07-24 11:57:52 -04006540
Chris Masonedbd8d42007-12-21 16:27:24 -05006541 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
6542 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05006543 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05006544
Chris Mason3eaa2882008-07-24 11:57:52 -04006545 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6546 if (ordered) {
6547 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
6548 unlock_page(page);
6549 page_cache_release(page);
6550 btrfs_start_ordered_extent(inode, ordered, 1);
6551 btrfs_put_ordered_extent(ordered);
6552 goto again;
6553 }
6554 set_page_extent_mapped(page);
6555
Zheng Yan1a40e232008-09-26 10:09:34 -04006556 if (i == first_index)
6557 set_extent_bits(io_tree, page_start, page_end,
6558 EXTENT_BOUNDARY, GFP_NOFS);
Yan Zheng1f80e4d2008-12-19 10:59:04 -05006559 btrfs_set_extent_delalloc(inode, page_start, page_end);
Zheng Yan1a40e232008-09-26 10:09:34 -04006560
Chris Masona061fc82008-05-07 11:43:44 -04006561 set_page_dirty(page);
Zheng Yan1a40e232008-09-26 10:09:34 -04006562 total_dirty++;
Chris Masonedbd8d42007-12-21 16:27:24 -05006563
Chris Masond1310b22008-01-24 16:13:08 -05006564 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05006565 unlock_page(page);
6566 page_cache_release(page);
6567 }
6568
6569out_unlock:
Chris Masonec44a352008-04-28 15:29:52 -04006570 kfree(ra);
Chris Masonedbd8d42007-12-21 16:27:24 -05006571 mutex_unlock(&inode->i_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04006572 balance_dirty_pages_ratelimited_nr(inode->i_mapping, total_dirty);
Chris Masonbf4ef672008-05-08 13:26:18 -04006573 return ret;
6574}
6575
Chris Masond3977122009-01-05 21:25:51 -05006576static noinline int relocate_data_extent(struct inode *reloc_inode,
Zheng Yan1a40e232008-09-26 10:09:34 -04006577 struct btrfs_key *extent_key,
6578 u64 offset)
Chris Masonedbd8d42007-12-21 16:27:24 -05006579{
Zheng Yan1a40e232008-09-26 10:09:34 -04006580 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
6581 struct extent_map_tree *em_tree = &BTRFS_I(reloc_inode)->extent_tree;
6582 struct extent_map *em;
Yan Zheng66435582008-10-30 14:19:50 -04006583 u64 start = extent_key->objectid - offset;
6584 u64 end = start + extent_key->offset - 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04006585
6586 em = alloc_extent_map(GFP_NOFS);
Tsutomu Itohc26a9202011-02-14 00:45:29 +00006587 BUG_ON(!em);
Zheng Yan1a40e232008-09-26 10:09:34 -04006588
Yan Zheng66435582008-10-30 14:19:50 -04006589 em->start = start;
Zheng Yan1a40e232008-09-26 10:09:34 -04006590 em->len = extent_key->offset;
Chris Masonc8b97812008-10-29 14:49:59 -04006591 em->block_len = extent_key->offset;
Zheng Yan1a40e232008-09-26 10:09:34 -04006592 em->block_start = extent_key->objectid;
6593 em->bdev = root->fs_info->fs_devices->latest_bdev;
6594 set_bit(EXTENT_FLAG_PINNED, &em->flags);
6595
6596 /* setup extent map to cheat btrfs_readpage */
Yan Zheng66435582008-10-30 14:19:50 -04006597 lock_extent(&BTRFS_I(reloc_inode)->io_tree, start, end, GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04006598 while (1) {
6599 int ret;
Chris Mason890871b2009-09-02 16:24:52 -04006600 write_lock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04006601 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04006602 write_unlock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04006603 if (ret != -EEXIST) {
6604 free_extent_map(em);
6605 break;
6606 }
Yan Zheng66435582008-10-30 14:19:50 -04006607 btrfs_drop_extent_cache(reloc_inode, start, end, 0);
Zheng Yan1a40e232008-09-26 10:09:34 -04006608 }
Yan Zheng66435582008-10-30 14:19:50 -04006609 unlock_extent(&BTRFS_I(reloc_inode)->io_tree, start, end, GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04006610
Yan Zheng66435582008-10-30 14:19:50 -04006611 return relocate_inode_pages(reloc_inode, start, extent_key->offset);
Zheng Yan1a40e232008-09-26 10:09:34 -04006612}
6613
6614struct btrfs_ref_path {
6615 u64 extent_start;
6616 u64 nodes[BTRFS_MAX_LEVEL];
6617 u64 root_objectid;
6618 u64 root_generation;
6619 u64 owner_objectid;
Zheng Yan1a40e232008-09-26 10:09:34 -04006620 u32 num_refs;
6621 int lowest_level;
6622 int current_level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006623 int shared_level;
6624
6625 struct btrfs_key node_keys[BTRFS_MAX_LEVEL];
6626 u64 new_nodes[BTRFS_MAX_LEVEL];
Zheng Yan1a40e232008-09-26 10:09:34 -04006627};
6628
6629struct disk_extent {
Chris Masonc8b97812008-10-29 14:49:59 -04006630 u64 ram_bytes;
Zheng Yan1a40e232008-09-26 10:09:34 -04006631 u64 disk_bytenr;
6632 u64 disk_num_bytes;
6633 u64 offset;
6634 u64 num_bytes;
Chris Masonc8b97812008-10-29 14:49:59 -04006635 u8 compression;
6636 u8 encryption;
6637 u16 other_encoding;
Zheng Yan1a40e232008-09-26 10:09:34 -04006638};
6639
6640static int is_cowonly_root(u64 root_objectid)
6641{
6642 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID ||
6643 root_objectid == BTRFS_EXTENT_TREE_OBJECTID ||
6644 root_objectid == BTRFS_CHUNK_TREE_OBJECTID ||
6645 root_objectid == BTRFS_DEV_TREE_OBJECTID ||
Yan Zheng0403e472008-12-10 20:32:51 -05006646 root_objectid == BTRFS_TREE_LOG_OBJECTID ||
6647 root_objectid == BTRFS_CSUM_TREE_OBJECTID)
Zheng Yan1a40e232008-09-26 10:09:34 -04006648 return 1;
6649 return 0;
6650}
6651
Chris Masond3977122009-01-05 21:25:51 -05006652static noinline int __next_ref_path(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04006653 struct btrfs_root *extent_root,
6654 struct btrfs_ref_path *ref_path,
6655 int first_time)
6656{
6657 struct extent_buffer *leaf;
6658 struct btrfs_path *path;
Chris Mason4313b392008-01-03 09:08:48 -05006659 struct btrfs_extent_ref *ref;
Chris Masonedbd8d42007-12-21 16:27:24 -05006660 struct btrfs_key key;
6661 struct btrfs_key found_key;
Zheng Yan1a40e232008-09-26 10:09:34 -04006662 u64 bytenr;
Chris Masonedbd8d42007-12-21 16:27:24 -05006663 u32 nritems;
Zheng Yan1a40e232008-09-26 10:09:34 -04006664 int level;
6665 int ret = 1;
Chris Masonedbd8d42007-12-21 16:27:24 -05006666
Zheng Yan1a40e232008-09-26 10:09:34 -04006667 path = btrfs_alloc_path();
6668 if (!path)
6669 return -ENOMEM;
6670
Zheng Yan1a40e232008-09-26 10:09:34 -04006671 if (first_time) {
6672 ref_path->lowest_level = -1;
6673 ref_path->current_level = -1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006674 ref_path->shared_level = -1;
Zheng Yan1a40e232008-09-26 10:09:34 -04006675 goto walk_up;
Chris Masona061fc82008-05-07 11:43:44 -04006676 }
Zheng Yan1a40e232008-09-26 10:09:34 -04006677walk_down:
6678 level = ref_path->current_level - 1;
6679 while (level >= -1) {
6680 u64 parent;
6681 if (level < ref_path->lowest_level)
6682 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05006683
Chris Masond3977122009-01-05 21:25:51 -05006684 if (level >= 0)
Zheng Yan1a40e232008-09-26 10:09:34 -04006685 bytenr = ref_path->nodes[level];
Chris Masond3977122009-01-05 21:25:51 -05006686 else
Zheng Yan1a40e232008-09-26 10:09:34 -04006687 bytenr = ref_path->extent_start;
Zheng Yan1a40e232008-09-26 10:09:34 -04006688 BUG_ON(bytenr == 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006689
Zheng Yan1a40e232008-09-26 10:09:34 -04006690 parent = ref_path->nodes[level + 1];
6691 ref_path->nodes[level + 1] = 0;
6692 ref_path->current_level = level;
6693 BUG_ON(parent == 0);
6694
6695 key.objectid = bytenr;
6696 key.offset = parent + 1;
6697 key.type = BTRFS_EXTENT_REF_KEY;
6698
6699 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006700 if (ret < 0)
6701 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04006702 BUG_ON(ret == 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006703
Chris Masonedbd8d42007-12-21 16:27:24 -05006704 leaf = path->nodes[0];
6705 nritems = btrfs_header_nritems(leaf);
Zheng Yan1a40e232008-09-26 10:09:34 -04006706 if (path->slots[0] >= nritems) {
Chris Masona061fc82008-05-07 11:43:44 -04006707 ret = btrfs_next_leaf(extent_root, path);
Chris Masona061fc82008-05-07 11:43:44 -04006708 if (ret < 0)
6709 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04006710 if (ret > 0)
6711 goto next;
Chris Masonbf4ef672008-05-08 13:26:18 -04006712 leaf = path->nodes[0];
Chris Masona061fc82008-05-07 11:43:44 -04006713 }
Chris Masonedbd8d42007-12-21 16:27:24 -05006714
6715 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Zheng Yan1a40e232008-09-26 10:09:34 -04006716 if (found_key.objectid == bytenr &&
Yan Zhengf82d02d2008-10-29 14:49:05 -04006717 found_key.type == BTRFS_EXTENT_REF_KEY) {
6718 if (level < ref_path->shared_level)
6719 ref_path->shared_level = level;
Zheng Yan1a40e232008-09-26 10:09:34 -04006720 goto found;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006721 }
Zheng Yan1a40e232008-09-26 10:09:34 -04006722next:
6723 level--;
6724 btrfs_release_path(extent_root, path);
Yan Zhengd899e052008-10-30 14:25:28 -04006725 cond_resched();
Zheng Yan1a40e232008-09-26 10:09:34 -04006726 }
6727 /* reached lowest level */
6728 ret = 1;
6729 goto out;
6730walk_up:
6731 level = ref_path->current_level;
6732 while (level < BTRFS_MAX_LEVEL - 1) {
6733 u64 ref_objectid;
Chris Masond3977122009-01-05 21:25:51 -05006734
6735 if (level >= 0)
Zheng Yan1a40e232008-09-26 10:09:34 -04006736 bytenr = ref_path->nodes[level];
Chris Masond3977122009-01-05 21:25:51 -05006737 else
Zheng Yan1a40e232008-09-26 10:09:34 -04006738 bytenr = ref_path->extent_start;
Chris Masond3977122009-01-05 21:25:51 -05006739
Zheng Yan1a40e232008-09-26 10:09:34 -04006740 BUG_ON(bytenr == 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05006741
Zheng Yan1a40e232008-09-26 10:09:34 -04006742 key.objectid = bytenr;
6743 key.offset = 0;
6744 key.type = BTRFS_EXTENT_REF_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05006745
Zheng Yan1a40e232008-09-26 10:09:34 -04006746 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 0);
6747 if (ret < 0)
Chris Masonedbd8d42007-12-21 16:27:24 -05006748 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04006749
6750 leaf = path->nodes[0];
6751 nritems = btrfs_header_nritems(leaf);
6752 if (path->slots[0] >= nritems) {
6753 ret = btrfs_next_leaf(extent_root, path);
6754 if (ret < 0)
6755 goto out;
6756 if (ret > 0) {
6757 /* the extent was freed by someone */
6758 if (ref_path->lowest_level == level)
6759 goto out;
6760 btrfs_release_path(extent_root, path);
6761 goto walk_down;
6762 }
6763 leaf = path->nodes[0];
6764 }
6765
6766 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6767 if (found_key.objectid != bytenr ||
6768 found_key.type != BTRFS_EXTENT_REF_KEY) {
6769 /* the extent was freed by someone */
6770 if (ref_path->lowest_level == level) {
6771 ret = 1;
6772 goto out;
6773 }
6774 btrfs_release_path(extent_root, path);
6775 goto walk_down;
6776 }
6777found:
6778 ref = btrfs_item_ptr(leaf, path->slots[0],
6779 struct btrfs_extent_ref);
6780 ref_objectid = btrfs_ref_objectid(leaf, ref);
6781 if (ref_objectid < BTRFS_FIRST_FREE_OBJECTID) {
6782 if (first_time) {
6783 level = (int)ref_objectid;
6784 BUG_ON(level >= BTRFS_MAX_LEVEL);
6785 ref_path->lowest_level = level;
6786 ref_path->current_level = level;
6787 ref_path->nodes[level] = bytenr;
6788 } else {
6789 WARN_ON(ref_objectid != level);
6790 }
6791 } else {
6792 WARN_ON(level != -1);
6793 }
6794 first_time = 0;
6795
6796 if (ref_path->lowest_level == level) {
6797 ref_path->owner_objectid = ref_objectid;
Zheng Yan1a40e232008-09-26 10:09:34 -04006798 ref_path->num_refs = btrfs_ref_num_refs(leaf, ref);
6799 }
6800
6801 /*
6802 * the block is tree root or the block isn't in reference
6803 * counted tree.
6804 */
6805 if (found_key.objectid == found_key.offset ||
6806 is_cowonly_root(btrfs_ref_root(leaf, ref))) {
6807 ref_path->root_objectid = btrfs_ref_root(leaf, ref);
6808 ref_path->root_generation =
6809 btrfs_ref_generation(leaf, ref);
6810 if (level < 0) {
6811 /* special reference from the tree log */
6812 ref_path->nodes[0] = found_key.offset;
6813 ref_path->current_level = 0;
6814 }
6815 ret = 0;
6816 goto out;
6817 }
6818
6819 level++;
6820 BUG_ON(ref_path->nodes[level] != 0);
6821 ref_path->nodes[level] = found_key.offset;
6822 ref_path->current_level = level;
6823
6824 /*
6825 * the reference was created in the running transaction,
6826 * no need to continue walking up.
6827 */
6828 if (btrfs_ref_generation(leaf, ref) == trans->transid) {
6829 ref_path->root_objectid = btrfs_ref_root(leaf, ref);
6830 ref_path->root_generation =
6831 btrfs_ref_generation(leaf, ref);
6832 ret = 0;
6833 goto out;
6834 }
6835
6836 btrfs_release_path(extent_root, path);
Yan Zhengd899e052008-10-30 14:25:28 -04006837 cond_resched();
Zheng Yan1a40e232008-09-26 10:09:34 -04006838 }
6839 /* reached max tree level, but no tree root found. */
6840 BUG();
6841out:
Zheng Yan1a40e232008-09-26 10:09:34 -04006842 btrfs_free_path(path);
6843 return ret;
6844}
6845
6846static int btrfs_first_ref_path(struct btrfs_trans_handle *trans,
6847 struct btrfs_root *extent_root,
6848 struct btrfs_ref_path *ref_path,
6849 u64 extent_start)
6850{
6851 memset(ref_path, 0, sizeof(*ref_path));
6852 ref_path->extent_start = extent_start;
6853
6854 return __next_ref_path(trans, extent_root, ref_path, 1);
6855}
6856
6857static int btrfs_next_ref_path(struct btrfs_trans_handle *trans,
6858 struct btrfs_root *extent_root,
6859 struct btrfs_ref_path *ref_path)
6860{
6861 return __next_ref_path(trans, extent_root, ref_path, 0);
6862}
6863
Chris Masond3977122009-01-05 21:25:51 -05006864static noinline int get_new_locations(struct inode *reloc_inode,
Zheng Yan1a40e232008-09-26 10:09:34 -04006865 struct btrfs_key *extent_key,
6866 u64 offset, int no_fragment,
6867 struct disk_extent **extents,
6868 int *nr_extents)
6869{
6870 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
6871 struct btrfs_path *path;
6872 struct btrfs_file_extent_item *fi;
6873 struct extent_buffer *leaf;
6874 struct disk_extent *exts = *extents;
6875 struct btrfs_key found_key;
6876 u64 cur_pos;
6877 u64 last_byte;
6878 u32 nritems;
6879 int nr = 0;
6880 int max = *nr_extents;
6881 int ret;
6882
6883 WARN_ON(!no_fragment && *extents);
6884 if (!exts) {
6885 max = 1;
6886 exts = kmalloc(sizeof(*exts) * max, GFP_NOFS);
6887 if (!exts)
6888 return -ENOMEM;
6889 }
6890
6891 path = btrfs_alloc_path();
6892 BUG_ON(!path);
6893
6894 cur_pos = extent_key->objectid - offset;
6895 last_byte = extent_key->objectid + extent_key->offset;
6896 ret = btrfs_lookup_file_extent(NULL, root, path, reloc_inode->i_ino,
6897 cur_pos, 0);
6898 if (ret < 0)
6899 goto out;
6900 if (ret > 0) {
6901 ret = -ENOENT;
6902 goto out;
6903 }
6904
6905 while (1) {
6906 leaf = path->nodes[0];
6907 nritems = btrfs_header_nritems(leaf);
6908 if (path->slots[0] >= nritems) {
6909 ret = btrfs_next_leaf(root, path);
6910 if (ret < 0)
6911 goto out;
6912 if (ret > 0)
6913 break;
6914 leaf = path->nodes[0];
6915 }
6916
6917 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6918 if (found_key.offset != cur_pos ||
6919 found_key.type != BTRFS_EXTENT_DATA_KEY ||
6920 found_key.objectid != reloc_inode->i_ino)
6921 break;
6922
6923 fi = btrfs_item_ptr(leaf, path->slots[0],
6924 struct btrfs_file_extent_item);
6925 if (btrfs_file_extent_type(leaf, fi) !=
6926 BTRFS_FILE_EXTENT_REG ||
6927 btrfs_file_extent_disk_bytenr(leaf, fi) == 0)
6928 break;
6929
6930 if (nr == max) {
6931 struct disk_extent *old = exts;
6932 max *= 2;
6933 exts = kzalloc(sizeof(*exts) * max, GFP_NOFS);
6934 memcpy(exts, old, sizeof(*exts) * nr);
6935 if (old != *extents)
6936 kfree(old);
6937 }
6938
6939 exts[nr].disk_bytenr =
6940 btrfs_file_extent_disk_bytenr(leaf, fi);
6941 exts[nr].disk_num_bytes =
6942 btrfs_file_extent_disk_num_bytes(leaf, fi);
6943 exts[nr].offset = btrfs_file_extent_offset(leaf, fi);
6944 exts[nr].num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
Chris Masonc8b97812008-10-29 14:49:59 -04006945 exts[nr].ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
6946 exts[nr].compression = btrfs_file_extent_compression(leaf, fi);
6947 exts[nr].encryption = btrfs_file_extent_encryption(leaf, fi);
6948 exts[nr].other_encoding = btrfs_file_extent_other_encoding(leaf,
6949 fi);
Yan Zhengd899e052008-10-30 14:25:28 -04006950 BUG_ON(exts[nr].offset > 0);
6951 BUG_ON(exts[nr].compression || exts[nr].encryption);
6952 BUG_ON(exts[nr].num_bytes != exts[nr].disk_num_bytes);
Zheng Yan1a40e232008-09-26 10:09:34 -04006953
6954 cur_pos += exts[nr].num_bytes;
6955 nr++;
6956
6957 if (cur_pos + offset >= last_byte)
6958 break;
6959
6960 if (no_fragment) {
6961 ret = 1;
6962 goto out;
6963 }
6964 path->slots[0]++;
6965 }
6966
Yan Zheng1f80e4d2008-12-19 10:59:04 -05006967 BUG_ON(cur_pos + offset > last_byte);
Zheng Yan1a40e232008-09-26 10:09:34 -04006968 if (cur_pos + offset < last_byte) {
6969 ret = -ENOENT;
6970 goto out;
Chris Masonedbd8d42007-12-21 16:27:24 -05006971 }
6972 ret = 0;
6973out:
Zheng Yan1a40e232008-09-26 10:09:34 -04006974 btrfs_free_path(path);
6975 if (ret) {
6976 if (exts != *extents)
6977 kfree(exts);
6978 } else {
6979 *extents = exts;
6980 *nr_extents = nr;
6981 }
6982 return ret;
6983}
6984
Chris Masond3977122009-01-05 21:25:51 -05006985static noinline int replace_one_extent(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04006986 struct btrfs_root *root,
6987 struct btrfs_path *path,
6988 struct btrfs_key *extent_key,
6989 struct btrfs_key *leaf_key,
6990 struct btrfs_ref_path *ref_path,
6991 struct disk_extent *new_extents,
6992 int nr_extents)
6993{
6994 struct extent_buffer *leaf;
6995 struct btrfs_file_extent_item *fi;
6996 struct inode *inode = NULL;
6997 struct btrfs_key key;
6998 u64 lock_start = 0;
6999 u64 lock_end = 0;
7000 u64 num_bytes;
7001 u64 ext_offset;
Yan Zheng86288a12009-01-21 10:49:16 -05007002 u64 search_end = (u64)-1;
Zheng Yan1a40e232008-09-26 10:09:34 -04007003 u32 nritems;
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007004 int nr_scaned = 0;
Zheng Yan1a40e232008-09-26 10:09:34 -04007005 int extent_locked = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04007006 int extent_type;
Zheng Yan1a40e232008-09-26 10:09:34 -04007007 int ret;
7008
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007009 memcpy(&key, leaf_key, sizeof(key));
Zheng Yan1a40e232008-09-26 10:09:34 -04007010 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS) {
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007011 if (key.objectid < ref_path->owner_objectid ||
7012 (key.objectid == ref_path->owner_objectid &&
7013 key.type < BTRFS_EXTENT_DATA_KEY)) {
7014 key.objectid = ref_path->owner_objectid;
7015 key.type = BTRFS_EXTENT_DATA_KEY;
7016 key.offset = 0;
7017 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007018 }
7019
7020 while (1) {
7021 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
7022 if (ret < 0)
7023 goto out;
7024
7025 leaf = path->nodes[0];
7026 nritems = btrfs_header_nritems(leaf);
7027next:
7028 if (extent_locked && ret > 0) {
7029 /*
7030 * the file extent item was modified by someone
7031 * before the extent got locked.
7032 */
Zheng Yan1a40e232008-09-26 10:09:34 -04007033 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7034 lock_end, GFP_NOFS);
7035 extent_locked = 0;
7036 }
7037
7038 if (path->slots[0] >= nritems) {
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007039 if (++nr_scaned > 2)
Zheng Yan1a40e232008-09-26 10:09:34 -04007040 break;
7041
7042 BUG_ON(extent_locked);
7043 ret = btrfs_next_leaf(root, path);
7044 if (ret < 0)
7045 goto out;
7046 if (ret > 0)
7047 break;
7048 leaf = path->nodes[0];
7049 nritems = btrfs_header_nritems(leaf);
7050 }
7051
7052 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
7053
7054 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS) {
7055 if ((key.objectid > ref_path->owner_objectid) ||
7056 (key.objectid == ref_path->owner_objectid &&
7057 key.type > BTRFS_EXTENT_DATA_KEY) ||
Yan Zheng86288a12009-01-21 10:49:16 -05007058 key.offset >= search_end)
Zheng Yan1a40e232008-09-26 10:09:34 -04007059 break;
7060 }
7061
7062 if (inode && key.objectid != inode->i_ino) {
7063 BUG_ON(extent_locked);
7064 btrfs_release_path(root, path);
7065 mutex_unlock(&inode->i_mutex);
7066 iput(inode);
7067 inode = NULL;
7068 continue;
7069 }
7070
7071 if (key.type != BTRFS_EXTENT_DATA_KEY) {
7072 path->slots[0]++;
7073 ret = 1;
7074 goto next;
7075 }
7076 fi = btrfs_item_ptr(leaf, path->slots[0],
7077 struct btrfs_file_extent_item);
Yan Zhengd899e052008-10-30 14:25:28 -04007078 extent_type = btrfs_file_extent_type(leaf, fi);
7079 if ((extent_type != BTRFS_FILE_EXTENT_REG &&
7080 extent_type != BTRFS_FILE_EXTENT_PREALLOC) ||
Zheng Yan1a40e232008-09-26 10:09:34 -04007081 (btrfs_file_extent_disk_bytenr(leaf, fi) !=
7082 extent_key->objectid)) {
7083 path->slots[0]++;
7084 ret = 1;
7085 goto next;
7086 }
7087
7088 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
7089 ext_offset = btrfs_file_extent_offset(leaf, fi);
7090
Yan Zheng86288a12009-01-21 10:49:16 -05007091 if (search_end == (u64)-1) {
7092 search_end = key.offset - ext_offset +
7093 btrfs_file_extent_ram_bytes(leaf, fi);
7094 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007095
7096 if (!extent_locked) {
7097 lock_start = key.offset;
7098 lock_end = lock_start + num_bytes - 1;
7099 } else {
Yan Zheng66435582008-10-30 14:19:50 -04007100 if (lock_start > key.offset ||
7101 lock_end + 1 < key.offset + num_bytes) {
7102 unlock_extent(&BTRFS_I(inode)->io_tree,
7103 lock_start, lock_end, GFP_NOFS);
7104 extent_locked = 0;
7105 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007106 }
7107
7108 if (!inode) {
7109 btrfs_release_path(root, path);
7110
7111 inode = btrfs_iget_locked(root->fs_info->sb,
7112 key.objectid, root);
7113 if (inode->i_state & I_NEW) {
7114 BTRFS_I(inode)->root = root;
7115 BTRFS_I(inode)->location.objectid =
7116 key.objectid;
7117 BTRFS_I(inode)->location.type =
7118 BTRFS_INODE_ITEM_KEY;
7119 BTRFS_I(inode)->location.offset = 0;
7120 btrfs_read_locked_inode(inode);
7121 unlock_new_inode(inode);
7122 }
7123 /*
7124 * some code call btrfs_commit_transaction while
7125 * holding the i_mutex, so we can't use mutex_lock
7126 * here.
7127 */
7128 if (is_bad_inode(inode) ||
7129 !mutex_trylock(&inode->i_mutex)) {
7130 iput(inode);
7131 inode = NULL;
7132 key.offset = (u64)-1;
7133 goto skip;
7134 }
7135 }
7136
7137 if (!extent_locked) {
7138 struct btrfs_ordered_extent *ordered;
7139
7140 btrfs_release_path(root, path);
7141
7142 lock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7143 lock_end, GFP_NOFS);
7144 ordered = btrfs_lookup_first_ordered_extent(inode,
7145 lock_end);
7146 if (ordered &&
7147 ordered->file_offset <= lock_end &&
7148 ordered->file_offset + ordered->len > lock_start) {
7149 unlock_extent(&BTRFS_I(inode)->io_tree,
7150 lock_start, lock_end, GFP_NOFS);
7151 btrfs_start_ordered_extent(inode, ordered, 1);
7152 btrfs_put_ordered_extent(ordered);
7153 key.offset += num_bytes;
7154 goto skip;
7155 }
7156 if (ordered)
7157 btrfs_put_ordered_extent(ordered);
7158
Zheng Yan1a40e232008-09-26 10:09:34 -04007159 extent_locked = 1;
7160 continue;
7161 }
7162
7163 if (nr_extents == 1) {
7164 /* update extent pointer in place */
Zheng Yan1a40e232008-09-26 10:09:34 -04007165 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7166 new_extents[0].disk_bytenr);
7167 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7168 new_extents[0].disk_num_bytes);
Zheng Yan1a40e232008-09-26 10:09:34 -04007169 btrfs_mark_buffer_dirty(leaf);
7170
7171 btrfs_drop_extent_cache(inode, key.offset,
7172 key.offset + num_bytes - 1, 0);
7173
7174 ret = btrfs_inc_extent_ref(trans, root,
7175 new_extents[0].disk_bytenr,
7176 new_extents[0].disk_num_bytes,
7177 leaf->start,
7178 root->root_key.objectid,
7179 trans->transid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007180 key.objectid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007181 BUG_ON(ret);
7182
7183 ret = btrfs_free_extent(trans, root,
7184 extent_key->objectid,
7185 extent_key->offset,
7186 leaf->start,
7187 btrfs_header_owner(leaf),
7188 btrfs_header_generation(leaf),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007189 key.objectid, 0);
Zheng Yan1a40e232008-09-26 10:09:34 -04007190 BUG_ON(ret);
7191
7192 btrfs_release_path(root, path);
7193 key.offset += num_bytes;
7194 } else {
Yan Zhengd899e052008-10-30 14:25:28 -04007195 BUG_ON(1);
7196#if 0
Zheng Yan1a40e232008-09-26 10:09:34 -04007197 u64 alloc_hint;
7198 u64 extent_len;
7199 int i;
7200 /*
7201 * drop old extent pointer at first, then insert the
7202 * new pointers one bye one
7203 */
7204 btrfs_release_path(root, path);
7205 ret = btrfs_drop_extents(trans, root, inode, key.offset,
7206 key.offset + num_bytes,
7207 key.offset, &alloc_hint);
7208 BUG_ON(ret);
7209
7210 for (i = 0; i < nr_extents; i++) {
7211 if (ext_offset >= new_extents[i].num_bytes) {
7212 ext_offset -= new_extents[i].num_bytes;
7213 continue;
7214 }
7215 extent_len = min(new_extents[i].num_bytes -
7216 ext_offset, num_bytes);
7217
7218 ret = btrfs_insert_empty_item(trans, root,
7219 path, &key,
7220 sizeof(*fi));
7221 BUG_ON(ret);
7222
7223 leaf = path->nodes[0];
7224 fi = btrfs_item_ptr(leaf, path->slots[0],
7225 struct btrfs_file_extent_item);
7226 btrfs_set_file_extent_generation(leaf, fi,
7227 trans->transid);
7228 btrfs_set_file_extent_type(leaf, fi,
7229 BTRFS_FILE_EXTENT_REG);
7230 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7231 new_extents[i].disk_bytenr);
7232 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7233 new_extents[i].disk_num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -04007234 btrfs_set_file_extent_ram_bytes(leaf, fi,
7235 new_extents[i].ram_bytes);
7236
7237 btrfs_set_file_extent_compression(leaf, fi,
7238 new_extents[i].compression);
7239 btrfs_set_file_extent_encryption(leaf, fi,
7240 new_extents[i].encryption);
7241 btrfs_set_file_extent_other_encoding(leaf, fi,
7242 new_extents[i].other_encoding);
7243
Zheng Yan1a40e232008-09-26 10:09:34 -04007244 btrfs_set_file_extent_num_bytes(leaf, fi,
7245 extent_len);
7246 ext_offset += new_extents[i].offset;
7247 btrfs_set_file_extent_offset(leaf, fi,
7248 ext_offset);
7249 btrfs_mark_buffer_dirty(leaf);
7250
7251 btrfs_drop_extent_cache(inode, key.offset,
7252 key.offset + extent_len - 1, 0);
7253
7254 ret = btrfs_inc_extent_ref(trans, root,
7255 new_extents[i].disk_bytenr,
7256 new_extents[i].disk_num_bytes,
7257 leaf->start,
7258 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007259 trans->transid, key.objectid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007260 BUG_ON(ret);
7261 btrfs_release_path(root, path);
7262
Yan Zhenga76a3cd2008-10-09 11:46:29 -04007263 inode_add_bytes(inode, extent_len);
Zheng Yan1a40e232008-09-26 10:09:34 -04007264
7265 ext_offset = 0;
7266 num_bytes -= extent_len;
7267 key.offset += extent_len;
7268
7269 if (num_bytes == 0)
7270 break;
7271 }
7272 BUG_ON(i >= nr_extents);
Yan Zhengd899e052008-10-30 14:25:28 -04007273#endif
Zheng Yan1a40e232008-09-26 10:09:34 -04007274 }
7275
7276 if (extent_locked) {
Zheng Yan1a40e232008-09-26 10:09:34 -04007277 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7278 lock_end, GFP_NOFS);
7279 extent_locked = 0;
7280 }
7281skip:
7282 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS &&
Yan Zheng86288a12009-01-21 10:49:16 -05007283 key.offset >= search_end)
Zheng Yan1a40e232008-09-26 10:09:34 -04007284 break;
7285
7286 cond_resched();
7287 }
7288 ret = 0;
7289out:
7290 btrfs_release_path(root, path);
7291 if (inode) {
7292 mutex_unlock(&inode->i_mutex);
7293 if (extent_locked) {
Zheng Yan1a40e232008-09-26 10:09:34 -04007294 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
7295 lock_end, GFP_NOFS);
7296 }
7297 iput(inode);
7298 }
7299 return ret;
7300}
7301
Zheng Yan1a40e232008-09-26 10:09:34 -04007302int btrfs_reloc_tree_cache_ref(struct btrfs_trans_handle *trans,
7303 struct btrfs_root *root,
7304 struct extent_buffer *buf, u64 orig_start)
7305{
7306 int level;
7307 int ret;
7308
7309 BUG_ON(btrfs_header_generation(buf) != trans->transid);
7310 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
7311
7312 level = btrfs_header_level(buf);
7313 if (level == 0) {
7314 struct btrfs_leaf_ref *ref;
7315 struct btrfs_leaf_ref *orig_ref;
7316
7317 orig_ref = btrfs_lookup_leaf_ref(root, orig_start);
7318 if (!orig_ref)
7319 return -ENOENT;
7320
7321 ref = btrfs_alloc_leaf_ref(root, orig_ref->nritems);
7322 if (!ref) {
7323 btrfs_free_leaf_ref(root, orig_ref);
7324 return -ENOMEM;
7325 }
7326
7327 ref->nritems = orig_ref->nritems;
7328 memcpy(ref->extents, orig_ref->extents,
7329 sizeof(ref->extents[0]) * ref->nritems);
7330
7331 btrfs_free_leaf_ref(root, orig_ref);
7332
7333 ref->root_gen = trans->transid;
7334 ref->bytenr = buf->start;
7335 ref->owner = btrfs_header_owner(buf);
7336 ref->generation = btrfs_header_generation(buf);
Chris Masonbd56b302009-02-04 09:27:02 -05007337
Zheng Yan1a40e232008-09-26 10:09:34 -04007338 ret = btrfs_add_leaf_ref(root, ref, 0);
7339 WARN_ON(ret);
7340 btrfs_free_leaf_ref(root, ref);
7341 }
7342 return 0;
7343}
7344
Chris Masond3977122009-01-05 21:25:51 -05007345static noinline int invalidate_extent_cache(struct btrfs_root *root,
Zheng Yan1a40e232008-09-26 10:09:34 -04007346 struct extent_buffer *leaf,
7347 struct btrfs_block_group_cache *group,
7348 struct btrfs_root *target_root)
7349{
7350 struct btrfs_key key;
7351 struct inode *inode = NULL;
7352 struct btrfs_file_extent_item *fi;
Josef Bacik2ac55d42010-02-03 19:33:23 +00007353 struct extent_state *cached_state = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -04007354 u64 num_bytes;
7355 u64 skip_objectid = 0;
7356 u32 nritems;
7357 u32 i;
7358
7359 nritems = btrfs_header_nritems(leaf);
7360 for (i = 0; i < nritems; i++) {
7361 btrfs_item_key_to_cpu(leaf, &key, i);
7362 if (key.objectid == skip_objectid ||
7363 key.type != BTRFS_EXTENT_DATA_KEY)
7364 continue;
7365 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
7366 if (btrfs_file_extent_type(leaf, fi) ==
7367 BTRFS_FILE_EXTENT_INLINE)
7368 continue;
7369 if (btrfs_file_extent_disk_bytenr(leaf, fi) == 0)
7370 continue;
7371 if (!inode || inode->i_ino != key.objectid) {
7372 iput(inode);
7373 inode = btrfs_ilookup(target_root->fs_info->sb,
7374 key.objectid, target_root, 1);
7375 }
7376 if (!inode) {
7377 skip_objectid = key.objectid;
7378 continue;
7379 }
7380 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
7381
Josef Bacik2ac55d42010-02-03 19:33:23 +00007382 lock_extent_bits(&BTRFS_I(inode)->io_tree, key.offset,
7383 key.offset + num_bytes - 1, 0, &cached_state,
7384 GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04007385 btrfs_drop_extent_cache(inode, key.offset,
7386 key.offset + num_bytes - 1, 1);
Josef Bacik2ac55d42010-02-03 19:33:23 +00007387 unlock_extent_cached(&BTRFS_I(inode)->io_tree, key.offset,
7388 key.offset + num_bytes - 1, &cached_state,
7389 GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04007390 cond_resched();
7391 }
7392 iput(inode);
7393 return 0;
7394}
7395
Chris Masond3977122009-01-05 21:25:51 -05007396static noinline int replace_extents_in_leaf(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007397 struct btrfs_root *root,
7398 struct extent_buffer *leaf,
7399 struct btrfs_block_group_cache *group,
7400 struct inode *reloc_inode)
7401{
7402 struct btrfs_key key;
7403 struct btrfs_key extent_key;
7404 struct btrfs_file_extent_item *fi;
7405 struct btrfs_leaf_ref *ref;
7406 struct disk_extent *new_extent;
7407 u64 bytenr;
7408 u64 num_bytes;
7409 u32 nritems;
7410 u32 i;
7411 int ext_index;
7412 int nr_extent;
7413 int ret;
7414
7415 new_extent = kmalloc(sizeof(*new_extent), GFP_NOFS);
7416 BUG_ON(!new_extent);
7417
7418 ref = btrfs_lookup_leaf_ref(root, leaf->start);
7419 BUG_ON(!ref);
7420
7421 ext_index = -1;
7422 nritems = btrfs_header_nritems(leaf);
7423 for (i = 0; i < nritems; i++) {
7424 btrfs_item_key_to_cpu(leaf, &key, i);
7425 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
7426 continue;
7427 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
7428 if (btrfs_file_extent_type(leaf, fi) ==
7429 BTRFS_FILE_EXTENT_INLINE)
7430 continue;
7431 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
7432 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
7433 if (bytenr == 0)
7434 continue;
7435
7436 ext_index++;
7437 if (bytenr >= group->key.objectid + group->key.offset ||
7438 bytenr + num_bytes <= group->key.objectid)
7439 continue;
7440
7441 extent_key.objectid = bytenr;
7442 extent_key.offset = num_bytes;
7443 extent_key.type = BTRFS_EXTENT_ITEM_KEY;
7444 nr_extent = 1;
7445 ret = get_new_locations(reloc_inode, &extent_key,
7446 group->key.objectid, 1,
7447 &new_extent, &nr_extent);
7448 if (ret > 0)
7449 continue;
7450 BUG_ON(ret < 0);
7451
7452 BUG_ON(ref->extents[ext_index].bytenr != bytenr);
7453 BUG_ON(ref->extents[ext_index].num_bytes != num_bytes);
7454 ref->extents[ext_index].bytenr = new_extent->disk_bytenr;
7455 ref->extents[ext_index].num_bytes = new_extent->disk_num_bytes;
7456
Zheng Yan1a40e232008-09-26 10:09:34 -04007457 btrfs_set_file_extent_disk_bytenr(leaf, fi,
7458 new_extent->disk_bytenr);
7459 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
7460 new_extent->disk_num_bytes);
Zheng Yan1a40e232008-09-26 10:09:34 -04007461 btrfs_mark_buffer_dirty(leaf);
7462
7463 ret = btrfs_inc_extent_ref(trans, root,
7464 new_extent->disk_bytenr,
7465 new_extent->disk_num_bytes,
7466 leaf->start,
7467 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007468 trans->transid, key.objectid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007469 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04007470
Zheng Yan1a40e232008-09-26 10:09:34 -04007471 ret = btrfs_free_extent(trans, root,
7472 bytenr, num_bytes, leaf->start,
7473 btrfs_header_owner(leaf),
7474 btrfs_header_generation(leaf),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04007475 key.objectid, 0);
Zheng Yan1a40e232008-09-26 10:09:34 -04007476 BUG_ON(ret);
7477 cond_resched();
7478 }
7479 kfree(new_extent);
7480 BUG_ON(ext_index + 1 != ref->nritems);
7481 btrfs_free_leaf_ref(root, ref);
7482 return 0;
7483}
7484
Yan Zhengf82d02d2008-10-29 14:49:05 -04007485int btrfs_free_reloc_root(struct btrfs_trans_handle *trans,
7486 struct btrfs_root *root)
Zheng Yan1a40e232008-09-26 10:09:34 -04007487{
7488 struct btrfs_root *reloc_root;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007489 int ret;
Zheng Yan1a40e232008-09-26 10:09:34 -04007490
7491 if (root->reloc_root) {
7492 reloc_root = root->reloc_root;
7493 root->reloc_root = NULL;
7494 list_add(&reloc_root->dead_list,
7495 &root->fs_info->dead_reloc_roots);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007496
7497 btrfs_set_root_bytenr(&reloc_root->root_item,
7498 reloc_root->node->start);
7499 btrfs_set_root_level(&root->root_item,
7500 btrfs_header_level(reloc_root->node));
7501 memset(&reloc_root->root_item.drop_progress, 0,
7502 sizeof(struct btrfs_disk_key));
7503 reloc_root->root_item.drop_level = 0;
7504
7505 ret = btrfs_update_root(trans, root->fs_info->tree_root,
7506 &reloc_root->root_key,
7507 &reloc_root->root_item);
7508 BUG_ON(ret);
Zheng Yan1a40e232008-09-26 10:09:34 -04007509 }
7510 return 0;
7511}
7512
7513int btrfs_drop_dead_reloc_roots(struct btrfs_root *root)
7514{
7515 struct btrfs_trans_handle *trans;
7516 struct btrfs_root *reloc_root;
7517 struct btrfs_root *prev_root = NULL;
7518 struct list_head dead_roots;
7519 int ret;
7520 unsigned long nr;
7521
7522 INIT_LIST_HEAD(&dead_roots);
7523 list_splice_init(&root->fs_info->dead_reloc_roots, &dead_roots);
7524
7525 while (!list_empty(&dead_roots)) {
7526 reloc_root = list_entry(dead_roots.prev,
7527 struct btrfs_root, dead_list);
7528 list_del_init(&reloc_root->dead_list);
7529
7530 BUG_ON(reloc_root->commit_root != NULL);
7531 while (1) {
7532 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00007533 BUG_ON(IS_ERR(trans));
Zheng Yan1a40e232008-09-26 10:09:34 -04007534
7535 mutex_lock(&root->fs_info->drop_mutex);
7536 ret = btrfs_drop_snapshot(trans, reloc_root);
7537 if (ret != -EAGAIN)
7538 break;
7539 mutex_unlock(&root->fs_info->drop_mutex);
7540
7541 nr = trans->blocks_used;
7542 ret = btrfs_end_transaction(trans, root);
7543 BUG_ON(ret);
7544 btrfs_btree_balance_dirty(root, nr);
7545 }
7546
7547 free_extent_buffer(reloc_root->node);
7548
7549 ret = btrfs_del_root(trans, root->fs_info->tree_root,
7550 &reloc_root->root_key);
7551 BUG_ON(ret);
7552 mutex_unlock(&root->fs_info->drop_mutex);
7553
7554 nr = trans->blocks_used;
7555 ret = btrfs_end_transaction(trans, root);
7556 BUG_ON(ret);
7557 btrfs_btree_balance_dirty(root, nr);
7558
7559 kfree(prev_root);
7560 prev_root = reloc_root;
7561 }
7562 if (prev_root) {
7563 btrfs_remove_leaf_refs(prev_root, (u64)-1, 0);
7564 kfree(prev_root);
7565 }
7566 return 0;
7567}
7568
7569int btrfs_add_dead_reloc_root(struct btrfs_root *root)
7570{
7571 list_add(&root->dead_list, &root->fs_info->dead_reloc_roots);
7572 return 0;
7573}
7574
7575int btrfs_cleanup_reloc_trees(struct btrfs_root *root)
7576{
7577 struct btrfs_root *reloc_root;
7578 struct btrfs_trans_handle *trans;
7579 struct btrfs_key location;
7580 int found;
7581 int ret;
7582
7583 mutex_lock(&root->fs_info->tree_reloc_mutex);
7584 ret = btrfs_find_dead_roots(root, BTRFS_TREE_RELOC_OBJECTID, NULL);
7585 BUG_ON(ret);
7586 found = !list_empty(&root->fs_info->dead_reloc_roots);
7587 mutex_unlock(&root->fs_info->tree_reloc_mutex);
7588
7589 if (found) {
7590 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00007591 BUG_ON(IS_ERR(trans));
Zheng Yan1a40e232008-09-26 10:09:34 -04007592 ret = btrfs_commit_transaction(trans, root);
7593 BUG_ON(ret);
7594 }
7595
7596 location.objectid = BTRFS_DATA_RELOC_TREE_OBJECTID;
7597 location.offset = (u64)-1;
7598 location.type = BTRFS_ROOT_ITEM_KEY;
7599
7600 reloc_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
7601 BUG_ON(!reloc_root);
7602 btrfs_orphan_cleanup(reloc_root);
7603 return 0;
7604}
7605
Chris Masond3977122009-01-05 21:25:51 -05007606static noinline int init_reloc_tree(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007607 struct btrfs_root *root)
7608{
7609 struct btrfs_root *reloc_root;
7610 struct extent_buffer *eb;
7611 struct btrfs_root_item *root_item;
7612 struct btrfs_key root_key;
7613 int ret;
7614
7615 BUG_ON(!root->ref_cows);
7616 if (root->reloc_root)
7617 return 0;
7618
7619 root_item = kmalloc(sizeof(*root_item), GFP_NOFS);
7620 BUG_ON(!root_item);
7621
7622 ret = btrfs_copy_root(trans, root, root->commit_root,
7623 &eb, BTRFS_TREE_RELOC_OBJECTID);
7624 BUG_ON(ret);
7625
7626 root_key.objectid = BTRFS_TREE_RELOC_OBJECTID;
7627 root_key.offset = root->root_key.objectid;
7628 root_key.type = BTRFS_ROOT_ITEM_KEY;
7629
7630 memcpy(root_item, &root->root_item, sizeof(root_item));
7631 btrfs_set_root_refs(root_item, 0);
7632 btrfs_set_root_bytenr(root_item, eb->start);
7633 btrfs_set_root_level(root_item, btrfs_header_level(eb));
Yan Zheng84234f32008-10-29 14:49:05 -04007634 btrfs_set_root_generation(root_item, trans->transid);
Zheng Yan1a40e232008-09-26 10:09:34 -04007635
7636 btrfs_tree_unlock(eb);
7637 free_extent_buffer(eb);
7638
7639 ret = btrfs_insert_root(trans, root->fs_info->tree_root,
7640 &root_key, root_item);
7641 BUG_ON(ret);
7642 kfree(root_item);
7643
7644 reloc_root = btrfs_read_fs_root_no_radix(root->fs_info->tree_root,
7645 &root_key);
7646 BUG_ON(!reloc_root);
7647 reloc_root->last_trans = trans->transid;
7648 reloc_root->commit_root = NULL;
7649 reloc_root->ref_tree = &root->fs_info->reloc_ref_tree;
7650
7651 root->reloc_root = reloc_root;
7652 return 0;
7653}
7654
7655/*
7656 * Core function of space balance.
7657 *
7658 * The idea is using reloc trees to relocate tree blocks in reference
Yan Zhengf82d02d2008-10-29 14:49:05 -04007659 * counted roots. There is one reloc tree for each subvol, and all
7660 * reloc trees share same root key objectid. Reloc trees are snapshots
7661 * of the latest committed roots of subvols (root->commit_root).
7662 *
7663 * To relocate a tree block referenced by a subvol, there are two steps.
7664 * COW the block through subvol's reloc tree, then update block pointer
7665 * in the subvol to point to the new block. Since all reloc trees share
7666 * same root key objectid, doing special handing for tree blocks owned
7667 * by them is easy. Once a tree block has been COWed in one reloc tree,
7668 * we can use the resulting new block directly when the same block is
7669 * required to COW again through other reloc trees. By this way, relocated
7670 * tree blocks are shared between reloc trees, so they are also shared
7671 * between subvols.
Zheng Yan1a40e232008-09-26 10:09:34 -04007672 */
Chris Masond3977122009-01-05 21:25:51 -05007673static noinline int relocate_one_path(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007674 struct btrfs_root *root,
7675 struct btrfs_path *path,
7676 struct btrfs_key *first_key,
7677 struct btrfs_ref_path *ref_path,
7678 struct btrfs_block_group_cache *group,
7679 struct inode *reloc_inode)
7680{
7681 struct btrfs_root *reloc_root;
7682 struct extent_buffer *eb = NULL;
7683 struct btrfs_key *keys;
7684 u64 *nodes;
7685 int level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007686 int shared_level;
Zheng Yan1a40e232008-09-26 10:09:34 -04007687 int lowest_level = 0;
Zheng Yan1a40e232008-09-26 10:09:34 -04007688 int ret;
7689
7690 if (ref_path->owner_objectid < BTRFS_FIRST_FREE_OBJECTID)
7691 lowest_level = ref_path->owner_objectid;
7692
Yan Zhengf82d02d2008-10-29 14:49:05 -04007693 if (!root->ref_cows) {
Zheng Yan1a40e232008-09-26 10:09:34 -04007694 path->lowest_level = lowest_level;
7695 ret = btrfs_search_slot(trans, root, first_key, path, 0, 1);
7696 BUG_ON(ret < 0);
7697 path->lowest_level = 0;
7698 btrfs_release_path(root, path);
7699 return 0;
7700 }
7701
Zheng Yan1a40e232008-09-26 10:09:34 -04007702 mutex_lock(&root->fs_info->tree_reloc_mutex);
7703 ret = init_reloc_tree(trans, root);
7704 BUG_ON(ret);
7705 reloc_root = root->reloc_root;
7706
Yan Zhengf82d02d2008-10-29 14:49:05 -04007707 shared_level = ref_path->shared_level;
7708 ref_path->shared_level = BTRFS_MAX_LEVEL - 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04007709
Yan Zhengf82d02d2008-10-29 14:49:05 -04007710 keys = ref_path->node_keys;
7711 nodes = ref_path->new_nodes;
7712 memset(&keys[shared_level + 1], 0,
7713 sizeof(*keys) * (BTRFS_MAX_LEVEL - shared_level - 1));
7714 memset(&nodes[shared_level + 1], 0,
7715 sizeof(*nodes) * (BTRFS_MAX_LEVEL - shared_level - 1));
Zheng Yan1a40e232008-09-26 10:09:34 -04007716
Yan Zhengf82d02d2008-10-29 14:49:05 -04007717 if (nodes[lowest_level] == 0) {
7718 path->lowest_level = lowest_level;
7719 ret = btrfs_search_slot(trans, reloc_root, first_key, path,
7720 0, 1);
7721 BUG_ON(ret);
7722 for (level = lowest_level; level < BTRFS_MAX_LEVEL; level++) {
7723 eb = path->nodes[level];
7724 if (!eb || eb == reloc_root->node)
7725 break;
7726 nodes[level] = eb->start;
7727 if (level == 0)
7728 btrfs_item_key_to_cpu(eb, &keys[level], 0);
7729 else
7730 btrfs_node_key_to_cpu(eb, &keys[level], 0);
7731 }
Yan Zheng2b820322008-11-17 21:11:30 -05007732 if (nodes[0] &&
7733 ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04007734 eb = path->nodes[0];
7735 ret = replace_extents_in_leaf(trans, reloc_root, eb,
7736 group, reloc_inode);
7737 BUG_ON(ret);
7738 }
7739 btrfs_release_path(reloc_root, path);
7740 } else {
Zheng Yan1a40e232008-09-26 10:09:34 -04007741 ret = btrfs_merge_path(trans, reloc_root, keys, nodes,
Yan Zhengf82d02d2008-10-29 14:49:05 -04007742 lowest_level);
Zheng Yan1a40e232008-09-26 10:09:34 -04007743 BUG_ON(ret);
7744 }
7745
Zheng Yan1a40e232008-09-26 10:09:34 -04007746 /*
7747 * replace tree blocks in the fs tree with tree blocks in
7748 * the reloc tree.
7749 */
7750 ret = btrfs_merge_path(trans, root, keys, nodes, lowest_level);
7751 BUG_ON(ret < 0);
7752
7753 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04007754 ret = btrfs_search_slot(trans, reloc_root, first_key, path,
7755 0, 0);
7756 BUG_ON(ret);
7757 extent_buffer_get(path->nodes[0]);
7758 eb = path->nodes[0];
7759 btrfs_release_path(reloc_root, path);
Zheng Yan1a40e232008-09-26 10:09:34 -04007760 ret = invalidate_extent_cache(reloc_root, eb, group, root);
7761 BUG_ON(ret);
7762 free_extent_buffer(eb);
7763 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007764
Yan Zhengf82d02d2008-10-29 14:49:05 -04007765 mutex_unlock(&root->fs_info->tree_reloc_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04007766 path->lowest_level = 0;
Zheng Yan1a40e232008-09-26 10:09:34 -04007767 return 0;
7768}
7769
Chris Masond3977122009-01-05 21:25:51 -05007770static noinline int relocate_tree_block(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007771 struct btrfs_root *root,
7772 struct btrfs_path *path,
7773 struct btrfs_key *first_key,
7774 struct btrfs_ref_path *ref_path)
7775{
7776 int ret;
Zheng Yan1a40e232008-09-26 10:09:34 -04007777
7778 ret = relocate_one_path(trans, root, path, first_key,
7779 ref_path, NULL, NULL);
7780 BUG_ON(ret);
7781
Zheng Yan1a40e232008-09-26 10:09:34 -04007782 return 0;
7783}
7784
Chris Masond3977122009-01-05 21:25:51 -05007785static noinline int del_extent_zero(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007786 struct btrfs_root *extent_root,
7787 struct btrfs_path *path,
7788 struct btrfs_key *extent_key)
7789{
7790 int ret;
7791
Zheng Yan1a40e232008-09-26 10:09:34 -04007792 ret = btrfs_search_slot(trans, extent_root, extent_key, path, -1, 1);
7793 if (ret)
7794 goto out;
7795 ret = btrfs_del_item(trans, extent_root, path);
7796out:
Chris Masonedbd8d42007-12-21 16:27:24 -05007797 btrfs_release_path(extent_root, path);
Zheng Yan1a40e232008-09-26 10:09:34 -04007798 return ret;
7799}
7800
Chris Masond3977122009-01-05 21:25:51 -05007801static noinline struct btrfs_root *read_ref_root(struct btrfs_fs_info *fs_info,
Zheng Yan1a40e232008-09-26 10:09:34 -04007802 struct btrfs_ref_path *ref_path)
7803{
7804 struct btrfs_key root_key;
7805
7806 root_key.objectid = ref_path->root_objectid;
7807 root_key.type = BTRFS_ROOT_ITEM_KEY;
7808 if (is_cowonly_root(ref_path->root_objectid))
7809 root_key.offset = 0;
7810 else
7811 root_key.offset = (u64)-1;
7812
7813 return btrfs_read_fs_root_no_name(fs_info, &root_key);
7814}
7815
Chris Masond3977122009-01-05 21:25:51 -05007816static noinline int relocate_one_extent(struct btrfs_root *extent_root,
Zheng Yan1a40e232008-09-26 10:09:34 -04007817 struct btrfs_path *path,
7818 struct btrfs_key *extent_key,
7819 struct btrfs_block_group_cache *group,
7820 struct inode *reloc_inode, int pass)
7821{
7822 struct btrfs_trans_handle *trans;
7823 struct btrfs_root *found_root;
7824 struct btrfs_ref_path *ref_path = NULL;
7825 struct disk_extent *new_extents = NULL;
7826 int nr_extents = 0;
7827 int loops;
7828 int ret;
7829 int level;
7830 struct btrfs_key first_key;
7831 u64 prev_block = 0;
7832
Zheng Yan1a40e232008-09-26 10:09:34 -04007833
7834 trans = btrfs_start_transaction(extent_root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00007835 BUG_ON(IS_ERR(trans));
Zheng Yan1a40e232008-09-26 10:09:34 -04007836
7837 if (extent_key->objectid == 0) {
7838 ret = del_extent_zero(trans, extent_root, path, extent_key);
7839 goto out;
7840 }
7841
7842 ref_path = kmalloc(sizeof(*ref_path), GFP_NOFS);
7843 if (!ref_path) {
Chris Masond3977122009-01-05 21:25:51 -05007844 ret = -ENOMEM;
7845 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04007846 }
7847
7848 for (loops = 0; ; loops++) {
7849 if (loops == 0) {
7850 ret = btrfs_first_ref_path(trans, extent_root, ref_path,
7851 extent_key->objectid);
7852 } else {
7853 ret = btrfs_next_ref_path(trans, extent_root, ref_path);
7854 }
7855 if (ret < 0)
7856 goto out;
7857 if (ret > 0)
7858 break;
7859
7860 if (ref_path->root_objectid == BTRFS_TREE_LOG_OBJECTID ||
7861 ref_path->root_objectid == BTRFS_TREE_RELOC_OBJECTID)
7862 continue;
7863
7864 found_root = read_ref_root(extent_root->fs_info, ref_path);
7865 BUG_ON(!found_root);
7866 /*
7867 * for reference counted tree, only process reference paths
7868 * rooted at the latest committed root.
7869 */
7870 if (found_root->ref_cows &&
7871 ref_path->root_generation != found_root->root_key.offset)
7872 continue;
7873
7874 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
7875 if (pass == 0) {
7876 /*
7877 * copy data extents to new locations
7878 */
7879 u64 group_start = group->key.objectid;
7880 ret = relocate_data_extent(reloc_inode,
7881 extent_key,
7882 group_start);
7883 if (ret < 0)
7884 goto out;
7885 break;
7886 }
7887 level = 0;
7888 } else {
7889 level = ref_path->owner_objectid;
7890 }
7891
7892 if (prev_block != ref_path->nodes[level]) {
7893 struct extent_buffer *eb;
7894 u64 block_start = ref_path->nodes[level];
7895 u64 block_size = btrfs_level_size(found_root, level);
7896
7897 eb = read_tree_block(found_root, block_start,
7898 block_size, 0);
7899 btrfs_tree_lock(eb);
7900 BUG_ON(level != btrfs_header_level(eb));
7901
7902 if (level == 0)
7903 btrfs_item_key_to_cpu(eb, &first_key, 0);
7904 else
7905 btrfs_node_key_to_cpu(eb, &first_key, 0);
7906
7907 btrfs_tree_unlock(eb);
7908 free_extent_buffer(eb);
7909 prev_block = block_start;
7910 }
7911
Yan Zheng24562422009-02-12 14:14:53 -05007912 mutex_lock(&extent_root->fs_info->trans_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05007913 btrfs_record_root_in_trans(found_root);
Yan Zheng24562422009-02-12 14:14:53 -05007914 mutex_unlock(&extent_root->fs_info->trans_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05007915 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
7916 /*
7917 * try to update data extent references while
7918 * keeping metadata shared between snapshots.
7919 */
7920 if (pass == 1) {
7921 ret = relocate_one_path(trans, found_root,
7922 path, &first_key, ref_path,
7923 group, reloc_inode);
7924 if (ret < 0)
7925 goto out;
7926 continue;
7927 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007928 /*
7929 * use fallback method to process the remaining
7930 * references.
7931 */
7932 if (!new_extents) {
7933 u64 group_start = group->key.objectid;
Yan Zhengd899e052008-10-30 14:25:28 -04007934 new_extents = kmalloc(sizeof(*new_extents),
7935 GFP_NOFS);
7936 nr_extents = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04007937 ret = get_new_locations(reloc_inode,
7938 extent_key,
Yan Zhengd899e052008-10-30 14:25:28 -04007939 group_start, 1,
Zheng Yan1a40e232008-09-26 10:09:34 -04007940 &new_extents,
7941 &nr_extents);
Yan Zhengd899e052008-10-30 14:25:28 -04007942 if (ret)
Zheng Yan1a40e232008-09-26 10:09:34 -04007943 goto out;
7944 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007945 ret = replace_one_extent(trans, found_root,
7946 path, extent_key,
7947 &first_key, ref_path,
7948 new_extents, nr_extents);
Yan Zhenge4404d62008-12-12 10:03:26 -05007949 } else {
Zheng Yan1a40e232008-09-26 10:09:34 -04007950 ret = relocate_tree_block(trans, found_root, path,
7951 &first_key, ref_path);
Zheng Yan1a40e232008-09-26 10:09:34 -04007952 }
7953 if (ret < 0)
7954 goto out;
7955 }
7956 ret = 0;
7957out:
7958 btrfs_end_transaction(trans, extent_root);
7959 kfree(new_extents);
7960 kfree(ref_path);
Chris Masonedbd8d42007-12-21 16:27:24 -05007961 return ret;
7962}
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007963#endif
Chris Masonedbd8d42007-12-21 16:27:24 -05007964
Chris Masonec44a352008-04-28 15:29:52 -04007965static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
7966{
7967 u64 num_devices;
7968 u64 stripped = BTRFS_BLOCK_GROUP_RAID0 |
7969 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
7970
Chris Masoncd02dca2010-12-13 14:56:23 -05007971 /*
7972 * we add in the count of missing devices because we want
7973 * to make sure that any RAID levels on a degraded FS
7974 * continue to be honored.
7975 */
7976 num_devices = root->fs_info->fs_devices->rw_devices +
7977 root->fs_info->fs_devices->missing_devices;
7978
Chris Masonec44a352008-04-28 15:29:52 -04007979 if (num_devices == 1) {
7980 stripped |= BTRFS_BLOCK_GROUP_DUP;
7981 stripped = flags & ~stripped;
7982
7983 /* turn raid0 into single device chunks */
7984 if (flags & BTRFS_BLOCK_GROUP_RAID0)
7985 return stripped;
7986
7987 /* turn mirroring into duplication */
7988 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
7989 BTRFS_BLOCK_GROUP_RAID10))
7990 return stripped | BTRFS_BLOCK_GROUP_DUP;
7991 return flags;
7992 } else {
7993 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04007994 if (flags & stripped)
7995 return flags;
7996
7997 stripped |= BTRFS_BLOCK_GROUP_DUP;
7998 stripped = flags & ~stripped;
7999
8000 /* switch duplicated blocks with raid1 */
8001 if (flags & BTRFS_BLOCK_GROUP_DUP)
8002 return stripped | BTRFS_BLOCK_GROUP_RAID1;
8003
8004 /* turn single device chunks into raid0 */
8005 return stripped | BTRFS_BLOCK_GROUP_RAID0;
8006 }
8007 return flags;
8008}
8009
Yan, Zhengf0486c62010-05-16 10:46:25 -04008010static int set_block_group_ro(struct btrfs_block_group_cache *cache)
Chris Mason0ef3e662008-05-24 14:04:53 -04008011{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008012 struct btrfs_space_info *sinfo = cache->space_info;
8013 u64 num_bytes;
8014 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04008015
Yan, Zhengf0486c62010-05-16 10:46:25 -04008016 if (cache->ro)
8017 return 0;
Chris Masonc286ac42008-07-22 23:06:41 -04008018
Yan, Zhengf0486c62010-05-16 10:46:25 -04008019 spin_lock(&sinfo->lock);
8020 spin_lock(&cache->lock);
8021 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8022 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04008023
Yan, Zhengf0486c62010-05-16 10:46:25 -04008024 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
8025 sinfo->bytes_may_use + sinfo->bytes_readonly +
Chris Mason65e53412010-12-24 06:41:52 -05008026 cache->reserved_pinned + num_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04008027 sinfo->bytes_readonly += num_bytes;
8028 sinfo->bytes_reserved += cache->reserved_pinned;
8029 cache->reserved_pinned = 0;
8030 cache->ro = 1;
8031 ret = 0;
8032 }
Chris Mason65e53412010-12-24 06:41:52 -05008033
Yan, Zhengf0486c62010-05-16 10:46:25 -04008034 spin_unlock(&cache->lock);
8035 spin_unlock(&sinfo->lock);
8036 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04008037}
8038
Yan, Zhengf0486c62010-05-16 10:46:25 -04008039int btrfs_set_block_group_ro(struct btrfs_root *root,
8040 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008041
8042{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008043 struct btrfs_trans_handle *trans;
8044 u64 alloc_flags;
8045 int ret;
8046
8047 BUG_ON(cache->ro);
8048
8049 trans = btrfs_join_transaction(root, 1);
8050 BUG_ON(IS_ERR(trans));
8051
8052 alloc_flags = update_block_group_flags(root, cache->flags);
8053 if (alloc_flags != cache->flags)
8054 do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags, 1);
8055
8056 ret = set_block_group_ro(cache);
8057 if (!ret)
8058 goto out;
8059 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
8060 ret = do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags, 1);
8061 if (ret < 0)
8062 goto out;
8063 ret = set_block_group_ro(cache);
8064out:
8065 btrfs_end_transaction(trans, root);
8066 return ret;
8067}
8068
Chris Masonc87f08c2011-02-16 13:57:04 -05008069int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
8070 struct btrfs_root *root, u64 type)
8071{
8072 u64 alloc_flags = get_alloc_profile(root, type);
8073 return do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags, 1);
8074}
8075
Miao Xie6d07bce2011-01-05 10:07:31 +00008076/*
8077 * helper to account the unused space of all the readonly block group in the
8078 * list. takes mirrors into account.
8079 */
8080static u64 __btrfs_get_ro_block_group_free_space(struct list_head *groups_list)
8081{
8082 struct btrfs_block_group_cache *block_group;
8083 u64 free_bytes = 0;
8084 int factor;
8085
8086 list_for_each_entry(block_group, groups_list, list) {
8087 spin_lock(&block_group->lock);
8088
8089 if (!block_group->ro) {
8090 spin_unlock(&block_group->lock);
8091 continue;
8092 }
8093
8094 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
8095 BTRFS_BLOCK_GROUP_RAID10 |
8096 BTRFS_BLOCK_GROUP_DUP))
8097 factor = 2;
8098 else
8099 factor = 1;
8100
8101 free_bytes += (block_group->key.offset -
8102 btrfs_block_group_used(&block_group->item)) *
8103 factor;
8104
8105 spin_unlock(&block_group->lock);
8106 }
8107
8108 return free_bytes;
8109}
8110
8111/*
8112 * helper to account the unused space of all the readonly block group in the
8113 * space_info. takes mirrors into account.
8114 */
8115u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
8116{
8117 int i;
8118 u64 free_bytes = 0;
8119
8120 spin_lock(&sinfo->lock);
8121
8122 for(i = 0; i < BTRFS_NR_RAID_TYPES; i++)
8123 if (!list_empty(&sinfo->block_groups[i]))
8124 free_bytes += __btrfs_get_ro_block_group_free_space(
8125 &sinfo->block_groups[i]);
8126
8127 spin_unlock(&sinfo->lock);
8128
8129 return free_bytes;
8130}
8131
Yan, Zhengf0486c62010-05-16 10:46:25 -04008132int btrfs_set_block_group_rw(struct btrfs_root *root,
8133 struct btrfs_block_group_cache *cache)
8134{
8135 struct btrfs_space_info *sinfo = cache->space_info;
8136 u64 num_bytes;
8137
8138 BUG_ON(!cache->ro);
8139
8140 spin_lock(&sinfo->lock);
8141 spin_lock(&cache->lock);
8142 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8143 cache->bytes_super - btrfs_block_group_used(&cache->item);
8144 sinfo->bytes_readonly -= num_bytes;
8145 cache->ro = 0;
8146 spin_unlock(&cache->lock);
8147 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008148 return 0;
8149}
8150
Josef Bacikba1bf482009-09-11 16:11:19 -04008151/*
8152 * checks to see if its even possible to relocate this block group.
8153 *
8154 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
8155 * ok to go ahead and try.
8156 */
8157int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04008158{
Zheng Yan1a40e232008-09-26 10:09:34 -04008159 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04008160 struct btrfs_space_info *space_info;
8161 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
8162 struct btrfs_device *device;
8163 int full = 0;
8164 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05008165
Josef Bacikba1bf482009-09-11 16:11:19 -04008166 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04008167
Josef Bacikba1bf482009-09-11 16:11:19 -04008168 /* odd, couldn't find the block group, leave it alone */
8169 if (!block_group)
8170 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05008171
Josef Bacikba1bf482009-09-11 16:11:19 -04008172 /* no bytes used, we're good */
8173 if (!btrfs_block_group_used(&block_group->item))
8174 goto out;
Chris Mason323da792008-05-09 11:46:48 -04008175
Josef Bacikba1bf482009-09-11 16:11:19 -04008176 space_info = block_group->space_info;
8177 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04008178
Josef Bacikba1bf482009-09-11 16:11:19 -04008179 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04008180
Josef Bacikba1bf482009-09-11 16:11:19 -04008181 /*
8182 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04008183 * relocate it unless we're able to allocate a new chunk below.
8184 *
8185 * Otherwise, we need to make sure we have room in the space to handle
8186 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04008187 */
Chris Mason7ce618d2009-09-22 14:48:44 -04008188 if ((space_info->total_bytes != block_group->key.offset) &&
8189 (space_info->bytes_used + space_info->bytes_reserved +
Josef Bacikba1bf482009-09-11 16:11:19 -04008190 space_info->bytes_pinned + space_info->bytes_readonly +
8191 btrfs_block_group_used(&block_group->item) <
Chris Mason7ce618d2009-09-22 14:48:44 -04008192 space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04008193 spin_unlock(&space_info->lock);
8194 goto out;
8195 }
8196 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008197
Josef Bacikba1bf482009-09-11 16:11:19 -04008198 /*
8199 * ok we don't have enough space, but maybe we have free space on our
8200 * devices to allocate new chunks for relocation, so loop through our
8201 * alloc devices and guess if we have enough space. However, if we
8202 * were marked as full, then we know there aren't enough chunks, and we
8203 * can just return.
8204 */
8205 ret = -1;
8206 if (full)
8207 goto out;
Chris Mason4313b392008-01-03 09:08:48 -05008208
Josef Bacikba1bf482009-09-11 16:11:19 -04008209 mutex_lock(&root->fs_info->chunk_mutex);
8210 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
8211 u64 min_free = btrfs_block_group_used(&block_group->item);
Miao Xie7bfc8372011-01-05 10:07:26 +00008212 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04008213
Josef Bacikba1bf482009-09-11 16:11:19 -04008214 /*
8215 * check to make sure we can actually find a chunk with enough
8216 * space to fit our block group in.
8217 */
8218 if (device->total_bytes > device->bytes_used + min_free) {
8219 ret = find_free_dev_extent(NULL, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00008220 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04008221 if (!ret)
Yan73e48b22008-01-03 14:14:39 -05008222 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04008223 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05008224 }
Chris Masonedbd8d42007-12-21 16:27:24 -05008225 }
Josef Bacikba1bf482009-09-11 16:11:19 -04008226 mutex_unlock(&root->fs_info->chunk_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05008227out:
Josef Bacikba1bf482009-09-11 16:11:19 -04008228 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05008229 return ret;
8230}
8231
Christoph Hellwigb2950862008-12-02 09:54:17 -05008232static int find_first_block_group(struct btrfs_root *root,
8233 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04008234{
Chris Mason925baed2008-06-25 16:01:30 -04008235 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008236 struct btrfs_key found_key;
8237 struct extent_buffer *leaf;
8238 int slot;
8239
8240 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
8241 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008242 goto out;
8243
Chris Masond3977122009-01-05 21:25:51 -05008244 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008245 slot = path->slots[0];
8246 leaf = path->nodes[0];
8247 if (slot >= btrfs_header_nritems(leaf)) {
8248 ret = btrfs_next_leaf(root, path);
8249 if (ret == 0)
8250 continue;
8251 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008252 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04008253 break;
8254 }
8255 btrfs_item_key_to_cpu(leaf, &found_key, slot);
8256
8257 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04008258 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
8259 ret = 0;
8260 goto out;
8261 }
Chris Mason0b86a832008-03-24 15:01:56 -04008262 path->slots[0]++;
8263 }
Chris Mason925baed2008-06-25 16:01:30 -04008264out:
Chris Mason0b86a832008-03-24 15:01:56 -04008265 return ret;
8266}
8267
Josef Bacik0af3d002010-06-21 14:48:16 -04008268void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
8269{
8270 struct btrfs_block_group_cache *block_group;
8271 u64 last = 0;
8272
8273 while (1) {
8274 struct inode *inode;
8275
8276 block_group = btrfs_lookup_first_block_group(info, last);
8277 while (block_group) {
8278 spin_lock(&block_group->lock);
8279 if (block_group->iref)
8280 break;
8281 spin_unlock(&block_group->lock);
8282 block_group = next_block_group(info->tree_root,
8283 block_group);
8284 }
8285 if (!block_group) {
8286 if (last == 0)
8287 break;
8288 last = 0;
8289 continue;
8290 }
8291
8292 inode = block_group->inode;
8293 block_group->iref = 0;
8294 block_group->inode = NULL;
8295 spin_unlock(&block_group->lock);
8296 iput(inode);
8297 last = block_group->key.objectid + block_group->key.offset;
8298 btrfs_put_block_group(block_group);
8299 }
8300}
8301
Zheng Yan1a40e232008-09-26 10:09:34 -04008302int btrfs_free_block_groups(struct btrfs_fs_info *info)
8303{
8304 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04008305 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04008306 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04008307 struct rb_node *n;
8308
Yan Zheng11833d62009-09-11 16:11:19 -04008309 down_write(&info->extent_commit_sem);
8310 while (!list_empty(&info->caching_block_groups)) {
8311 caching_ctl = list_entry(info->caching_block_groups.next,
8312 struct btrfs_caching_control, list);
8313 list_del(&caching_ctl->list);
8314 put_caching_control(caching_ctl);
8315 }
8316 up_write(&info->extent_commit_sem);
8317
Zheng Yan1a40e232008-09-26 10:09:34 -04008318 spin_lock(&info->block_group_cache_lock);
8319 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
8320 block_group = rb_entry(n, struct btrfs_block_group_cache,
8321 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04008322 rb_erase(&block_group->cache_node,
8323 &info->block_group_cache_tree);
Yan Zhengd899e052008-10-30 14:25:28 -04008324 spin_unlock(&info->block_group_cache_lock);
8325
Josef Bacik80eb2342008-10-29 14:49:05 -04008326 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008327 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04008328 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05008329
Josef Bacik817d52f2009-07-13 21:29:25 -04008330 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008331 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008332
Josef Bacik3c148742011-02-02 15:53:47 +00008333 /*
8334 * We haven't cached this block group, which means we could
8335 * possibly have excluded extents on this block group.
8336 */
8337 if (block_group->cached == BTRFS_CACHE_NO)
8338 free_excluded_extents(info->extent_root, block_group);
8339
Josef Bacik817d52f2009-07-13 21:29:25 -04008340 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00008341 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04008342
8343 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008344 }
8345 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04008346
8347 /* now that all the block groups are freed, go through and
8348 * free all the space_info structs. This is only called during
8349 * the final stages of unmount, and so we know nobody is
8350 * using them. We call synchronize_rcu() once before we start,
8351 * just to be on the safe side.
8352 */
8353 synchronize_rcu();
8354
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04008355 release_global_block_rsv(info);
8356
Chris Mason4184ea72009-03-10 12:39:20 -04008357 while(!list_empty(&info->space_info)) {
8358 space_info = list_entry(info->space_info.next,
8359 struct btrfs_space_info,
8360 list);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008361 if (space_info->bytes_pinned > 0 ||
8362 space_info->bytes_reserved > 0) {
8363 WARN_ON(1);
8364 dump_space_info(space_info, 0, 0);
8365 }
Chris Mason4184ea72009-03-10 12:39:20 -04008366 list_del(&space_info->list);
8367 kfree(space_info);
8368 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008369 return 0;
8370}
8371
Yan, Zhengb742bb822010-05-16 10:46:24 -04008372static void __link_block_group(struct btrfs_space_info *space_info,
8373 struct btrfs_block_group_cache *cache)
8374{
8375 int index = get_block_group_index(cache);
8376
8377 down_write(&space_info->groups_sem);
8378 list_add_tail(&cache->list, &space_info->block_groups[index]);
8379 up_write(&space_info->groups_sem);
8380}
8381
Chris Mason9078a3e2007-04-26 16:46:15 -04008382int btrfs_read_block_groups(struct btrfs_root *root)
8383{
8384 struct btrfs_path *path;
8385 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008386 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04008387 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04008388 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04008389 struct btrfs_key key;
8390 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04008391 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04008392 int need_clear = 0;
8393 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04008394
Chris Masonbe744172007-05-06 10:15:01 -04008395 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04008396 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008397 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04008398 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04008399 path = btrfs_alloc_path();
8400 if (!path)
8401 return -ENOMEM;
8402
Josef Bacik0af3d002010-06-21 14:48:16 -04008403 cache_gen = btrfs_super_cache_generation(&root->fs_info->super_copy);
8404 if (cache_gen != 0 &&
8405 btrfs_super_generation(&root->fs_info->super_copy) != cache_gen)
8406 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04008407 if (btrfs_test_opt(root, CLEAR_CACHE))
8408 need_clear = 1;
Josef Bacik8216ef82010-10-28 16:55:47 -04008409 if (!btrfs_test_opt(root, SPACE_CACHE) && cache_gen)
8410 printk(KERN_INFO "btrfs: disk space caching is enabled\n");
Josef Bacik0af3d002010-06-21 14:48:16 -04008411
Chris Masond3977122009-01-05 21:25:51 -05008412 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008413 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb822010-05-16 10:46:24 -04008414 if (ret > 0)
8415 break;
Chris Mason0b86a832008-03-24 15:01:56 -04008416 if (ret != 0)
8417 goto error;
Chris Mason5f39d392007-10-15 16:14:19 -04008418 leaf = path->nodes[0];
8419 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04008420 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04008421 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04008422 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008423 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04008424 }
Chris Mason3e1ad542007-05-07 20:03:49 -04008425
Yan Zhengd2fb3432008-12-11 16:30:39 -05008426 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04008427 spin_lock_init(&cache->lock);
Josef Bacik6226cb02009-04-03 10:14:18 -04008428 spin_lock_init(&cache->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008429 cache->fs_info = info;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008430 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04008431 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik96303082009-07-13 21:29:25 -04008432
Josef Bacik0af3d002010-06-21 14:48:16 -04008433 if (need_clear)
8434 cache->disk_cache_state = BTRFS_DC_CLEAR;
8435
Josef Bacik96303082009-07-13 21:29:25 -04008436 /*
8437 * we only want to have 32k of ram per block group for keeping
8438 * track of free space, and if we pass 1/2 of that we want to
8439 * start converting things over to using bitmaps
8440 */
8441 cache->extents_thresh = ((1024 * 32) / 2) /
8442 sizeof(struct btrfs_free_space);
8443
Chris Mason5f39d392007-10-15 16:14:19 -04008444 read_extent_buffer(leaf, &cache->item,
8445 btrfs_item_ptr_offset(leaf, path->slots[0]),
8446 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04008447 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason0b86a832008-03-24 15:01:56 -04008448
Chris Mason9078a3e2007-04-26 16:46:15 -04008449 key.objectid = found_key.objectid + found_key.offset;
8450 btrfs_release_path(root, path);
Chris Mason0b86a832008-03-24 15:01:56 -04008451 cache->flags = btrfs_block_group_flags(&cache->item);
Josef Bacik817d52f2009-07-13 21:29:25 -04008452 cache->sectorsize = root->sectorsize;
8453
Josef Bacik817d52f2009-07-13 21:29:25 -04008454 /*
Josef Bacik3c148742011-02-02 15:53:47 +00008455 * We need to exclude the super stripes now so that the space
8456 * info has super bytes accounted for, otherwise we'll think
8457 * we have more space than we actually do.
8458 */
8459 exclude_super_stripes(root, cache);
8460
8461 /*
Josef Bacik817d52f2009-07-13 21:29:25 -04008462 * check for two cases, either we are full, and therefore
8463 * don't need to bother with the caching work since we won't
8464 * find any space, or we are empty, and we can just add all
8465 * the space in and be done with it. This saves us _alot_ of
8466 * time, particularly in the full case.
8467 */
8468 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -04008469 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008470 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04008471 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008472 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04008473 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008474 cache->cached = BTRFS_CACHE_FINISHED;
8475 add_new_free_space(cache, root->fs_info,
8476 found_key.objectid,
8477 found_key.objectid +
8478 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04008479 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008480 }
Chris Mason96b51792007-10-15 16:15:19 -04008481
Chris Mason6324fbf2008-03-24 15:01:59 -04008482 ret = update_space_info(info, cache->flags, found_key.offset,
8483 btrfs_block_group_used(&cache->item),
8484 &space_info);
8485 BUG_ON(ret);
8486 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04008487 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008488 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008489 spin_unlock(&cache->space_info->lock);
8490
Yan, Zhengb742bb822010-05-16 10:46:24 -04008491 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008492
Josef Bacik0f9dd462008-09-23 13:14:11 -04008493 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8494 BUG_ON(ret);
Chris Mason75ccf472008-09-30 19:24:06 -04008495
8496 set_avail_alloc_bits(root->fs_info, cache->flags);
Yan Zheng2b820322008-11-17 21:11:30 -05008497 if (btrfs_chunk_readonly(root, cache->key.objectid))
Yan, Zhengf0486c62010-05-16 10:46:25 -04008498 set_block_group_ro(cache);
Chris Mason9078a3e2007-04-26 16:46:15 -04008499 }
Yan, Zhengb742bb822010-05-16 10:46:24 -04008500
8501 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
8502 if (!(get_alloc_profile(root, space_info->flags) &
8503 (BTRFS_BLOCK_GROUP_RAID10 |
8504 BTRFS_BLOCK_GROUP_RAID1 |
8505 BTRFS_BLOCK_GROUP_DUP)))
8506 continue;
8507 /*
8508 * avoid allocating from un-mirrored block group if there are
8509 * mirrored block groups.
8510 */
8511 list_for_each_entry(cache, &space_info->block_groups[3], list)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008512 set_block_group_ro(cache);
Yan, Zhengb742bb822010-05-16 10:46:24 -04008513 list_for_each_entry(cache, &space_info->block_groups[4], list)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008514 set_block_group_ro(cache);
Yan, Zhengb742bb822010-05-16 10:46:24 -04008515 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008516
8517 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04008518 ret = 0;
8519error:
Chris Mason9078a3e2007-04-26 16:46:15 -04008520 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04008521 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008522}
Chris Mason6324fbf2008-03-24 15:01:59 -04008523
8524int btrfs_make_block_group(struct btrfs_trans_handle *trans,
8525 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04008526 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04008527 u64 size)
8528{
8529 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04008530 struct btrfs_root *extent_root;
8531 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04008532
8533 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04008534
Chris Mason12fcfd22009-03-24 10:24:20 -04008535 root->fs_info->last_trans_log_full_commit = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04008536
Chris Mason8f18cf12008-04-25 16:53:30 -04008537 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008538 if (!cache)
8539 return -ENOMEM;
8540
Chris Masone17cade2008-04-15 15:41:47 -04008541 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04008542 cache->key.offset = size;
Yan Zhengd2fb3432008-12-11 16:30:39 -05008543 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Josef Bacik96303082009-07-13 21:29:25 -04008544 cache->sectorsize = root->sectorsize;
Josef Bacik0af3d002010-06-21 14:48:16 -04008545 cache->fs_info = root->fs_info;
Josef Bacik96303082009-07-13 21:29:25 -04008546
8547 /*
8548 * we only want to have 32k of ram per block group for keeping track
8549 * of free space, and if we pass 1/2 of that we want to start
8550 * converting things over to using bitmaps
8551 */
8552 cache->extents_thresh = ((1024 * 32) / 2) /
8553 sizeof(struct btrfs_free_space);
Yan Zhengd2fb3432008-12-11 16:30:39 -05008554 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04008555 spin_lock_init(&cache->lock);
Josef Bacik6226cb02009-04-03 10:14:18 -04008556 spin_lock_init(&cache->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008557 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04008558 INIT_LIST_HEAD(&cache->cluster_list);
Chris Mason0ef3e662008-05-24 14:04:53 -04008559
Chris Mason6324fbf2008-03-24 15:01:59 -04008560 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04008561 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
8562 cache->flags = type;
8563 btrfs_set_block_group_flags(&cache->item, type);
8564
Yan Zheng11833d62009-09-11 16:11:19 -04008565 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008566 cache->cached = BTRFS_CACHE_FINISHED;
Yan Zheng11833d62009-09-11 16:11:19 -04008567 exclude_super_stripes(root, cache);
Josef Bacik96303082009-07-13 21:29:25 -04008568
Josef Bacik817d52f2009-07-13 21:29:25 -04008569 add_new_free_space(cache, root->fs_info, chunk_offset,
8570 chunk_offset + size);
8571
Yan Zheng11833d62009-09-11 16:11:19 -04008572 free_excluded_extents(root, cache);
8573
Chris Mason6324fbf2008-03-24 15:01:59 -04008574 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
8575 &cache->space_info);
8576 BUG_ON(ret);
Josef Bacik1b2da372009-09-11 16:11:20 -04008577
8578 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008579 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008580 spin_unlock(&cache->space_info->lock);
8581
Yan, Zhengb742bb822010-05-16 10:46:24 -04008582 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008583
Josef Bacik0f9dd462008-09-23 13:14:11 -04008584 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8585 BUG_ON(ret);
Chris Masonc286ac42008-07-22 23:06:41 -04008586
Chris Mason6324fbf2008-03-24 15:01:59 -04008587 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
8588 sizeof(cache->item));
8589 BUG_ON(ret);
8590
Chris Masond18a2c42008-04-04 15:40:00 -04008591 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04008592
Chris Mason6324fbf2008-03-24 15:01:59 -04008593 return 0;
8594}
Zheng Yan1a40e232008-09-26 10:09:34 -04008595
8596int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
8597 struct btrfs_root *root, u64 group_start)
8598{
8599 struct btrfs_path *path;
8600 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04008601 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -04008602 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04008603 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04008604 struct inode *inode;
Zheng Yan1a40e232008-09-26 10:09:34 -04008605 int ret;
Josef Bacik89a55892010-10-14 14:52:27 -04008606 int factor;
Zheng Yan1a40e232008-09-26 10:09:34 -04008607
Zheng Yan1a40e232008-09-26 10:09:34 -04008608 root = root->fs_info->extent_root;
8609
8610 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
8611 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05008612 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04008613
8614 memcpy(&key, &block_group->key, sizeof(key));
Josef Bacik89a55892010-10-14 14:52:27 -04008615 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
8616 BTRFS_BLOCK_GROUP_RAID1 |
8617 BTRFS_BLOCK_GROUP_RAID10))
8618 factor = 2;
8619 else
8620 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04008621
Chris Mason44fb5512009-06-04 15:34:51 -04008622 /* make sure this block group isn't part of an allocation cluster */
8623 cluster = &root->fs_info->data_alloc_cluster;
8624 spin_lock(&cluster->refill_lock);
8625 btrfs_return_cluster_to_free_space(block_group, cluster);
8626 spin_unlock(&cluster->refill_lock);
8627
8628 /*
8629 * make sure this block group isn't part of a metadata
8630 * allocation cluster
8631 */
8632 cluster = &root->fs_info->meta_alloc_cluster;
8633 spin_lock(&cluster->refill_lock);
8634 btrfs_return_cluster_to_free_space(block_group, cluster);
8635 spin_unlock(&cluster->refill_lock);
8636
Zheng Yan1a40e232008-09-26 10:09:34 -04008637 path = btrfs_alloc_path();
8638 BUG_ON(!path);
8639
Josef Bacik0af3d002010-06-21 14:48:16 -04008640 inode = lookup_free_space_inode(root, block_group, path);
8641 if (!IS_ERR(inode)) {
8642 btrfs_orphan_add(trans, inode);
8643 clear_nlink(inode);
8644 /* One for the block groups ref */
8645 spin_lock(&block_group->lock);
8646 if (block_group->iref) {
8647 block_group->iref = 0;
8648 block_group->inode = NULL;
8649 spin_unlock(&block_group->lock);
8650 iput(inode);
8651 } else {
8652 spin_unlock(&block_group->lock);
8653 }
8654 /* One for our lookup ref */
8655 iput(inode);
8656 }
8657
8658 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
8659 key.offset = block_group->key.objectid;
8660 key.type = 0;
8661
8662 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
8663 if (ret < 0)
8664 goto out;
8665 if (ret > 0)
8666 btrfs_release_path(tree_root, path);
8667 if (ret == 0) {
8668 ret = btrfs_del_item(trans, tree_root, path);
8669 if (ret)
8670 goto out;
8671 btrfs_release_path(tree_root, path);
8672 }
8673
Yan Zheng3dfdb932009-01-21 10:49:16 -05008674 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008675 rb_erase(&block_group->cache_node,
8676 &root->fs_info->block_group_cache_tree);
Yan Zheng3dfdb932009-01-21 10:49:16 -05008677 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008678
Josef Bacik80eb2342008-10-29 14:49:05 -04008679 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04008680 /*
8681 * we must use list_del_init so people can check to see if they
8682 * are still on the list after taking the semaphore
8683 */
8684 list_del_init(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04008685 up_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008686
Josef Bacik817d52f2009-07-13 21:29:25 -04008687 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008688 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008689
8690 btrfs_remove_free_space_cache(block_group);
8691
Yan Zhengc146afa2008-11-12 14:34:12 -05008692 spin_lock(&block_group->space_info->lock);
8693 block_group->space_info->total_bytes -= block_group->key.offset;
8694 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -04008695 block_group->space_info->disk_total -= block_group->key.offset * factor;
Yan Zhengc146afa2008-11-12 14:34:12 -05008696 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04008697
Josef Bacik0af3d002010-06-21 14:48:16 -04008698 memcpy(&key, &block_group->key, sizeof(key));
8699
Chris Mason283bb192009-07-24 16:30:55 -04008700 btrfs_clear_space_info_full(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05008701
Chris Masonfa9c0d792009-04-03 09:47:43 -04008702 btrfs_put_block_group(block_group);
8703 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04008704
8705 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
8706 if (ret > 0)
8707 ret = -EIO;
8708 if (ret < 0)
8709 goto out;
8710
8711 ret = btrfs_del_item(trans, root, path);
8712out:
8713 btrfs_free_path(path);
8714 return ret;
8715}
liuboacce9522011-01-06 19:30:25 +08008716
8717int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
8718{
8719 return unpin_extent_range(root, start, end);
8720}
8721
8722int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr,
8723 u64 num_bytes)
8724{
8725 return btrfs_discard_extent(root, bytenr, num_bytes);
8726}